@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
/* デフォルトのpaddingを削除 */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
/* デフォルトのmarginを削除 */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
/* bodyのデフォルトを定義 */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
/* class属性を持つul、ol要素のリストスタイルを削除 */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
/* classを持たない要素はデフォルトのスタイルを取得 */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
/* img要素の扱いを簡単にする */
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* Inherit fonts for inputs and buttons */
/* inputやbuttonなどのフォントは継承を定義 */
input,
button,
textarea,
select {
  font: inherit;
  outline: none;
}

/* Remove all animations and transitions for people that prefer not to see them */
/* 見たくない人用に、すべてのアニメーションとトランジションを削除 */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* --------------------------------------------------
	Resetting default margin and padding
-------------------------------------------------- */
/* !HTML5 elements
---------------------------------------------------------- */
header,
footer,
nav,
section,
aside,
article {
  display: block;
}

/* !Reseting
---------------------------------------------------------- */
body {
  font-family: "IBM Plex Sans JP", sans-serif;
  color: #000;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  -webkit-text-size-adjust: none;
  font-feature-settings: "palt";
}

@media (max-width: 767px) {
  body {
    font-size: 13px;
  }
}
body,
div,
pre,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
th,
td,
input,
a,
textarea,
select,
span,
nav,
section,
header {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

input,
textarea {
  margin: 0;
  font-size: 100%;
  appearance: none;
  -webkit-appearance: none;
  border: none;
  outline: none;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 100%;
}

fieldset,
img {
  border: 0;
}

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

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

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: 500;
}

q:after,
q:before {
  content: "";
}

a,
input {
  /* outline: none; */
}

abbr,
acronym {
  border: 0;
}

/* !Clearfix
---------------------------------------------------------- */
.clearfix {
  display: block;
  min-height: 1%;
}

.clearfix:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}

* html .clearfix {
  height: 1%;
  /*\*/
  /*/
  height: auto;
  overflow: hidden;
  /**/
}

/* !Layout
---------------------------------------------------------- */
html {
  overflow-y: scroll;
}

@media print {
  html,
  html body {
    *zoom: 0.65;
  }
}
/* link
------------------------------------------------ */
a {
  color: #000;
  text-decoration: none;
  transition: all 0.3s !important;
  -moz-transition: all 0.3s !important;
  /* Firefox */
  -webkit-transition: all 0.3s !important;
  /* Chrome&Safari */
}

a:hover {
  transition: all 0.3s !important;
  -moz-transition: all 0.3s !important;
  /* Firefox */
  -webkit-transition: all 0.3s !important;
  /* Chrome&Safari */
}

.op,
.op a,
.op img,
.op input {
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -ms-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
  -webkit-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
}

.op:hover,
.op a:hover,
.op:hover img,
.op:hover input {
  opacity: 0.7;
  -webkit-opacity: 0.7;
  -moz-opacity: 0.7;
  filter: alpha(opacity=70);
  /* IE lt 8 */
  -ms-filter: "alpha(opacity=70)";
  /* IE 8 */
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -ms-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
  -webkit-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
}

@media (max-width: 767px) {
  .op:hover,
  .op a:hover,
  .op:hover img,
  .op:hover input {
    opacity: 1;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    filter: alpha(opacity=100);
    /* IE lt 8 */
    -ms-filter: "alpha(opacity=100)";
    /* IE 8 */
  }
}
/* !fs
------------------------------------------------ */
.visible-pc {
  display: block !important;
}

.visible-tab {
  display: none !important;
}

.visible-ts {
  display: none !important;
}

.visible-pc-only {
  display: block !important;
}

@media (max-width: 1024px) {
  .visible-tab {
    display: block !important;
  }
  .visible-pc-only {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .visible-pc {
    display: none !important;
  }
  .visible-ts {
    display: block !important;
  }
}
/* !fonts
------------------------------------------------ */
.fwb {
  font-weight: 700;
}

.fwm {
  font-weight: 500;
}

.vat {
  vertical-align: top !important;
}

.vam {
  vertical-align: middle !important;
}

.tal {
  text-align: left !important;
}

.tac {
  text-align: center !important;
}

.tar {
  text-align: right !important;
}

/* !ff
------------------------------------------------ */
.ff_outfit {
  font-family: "Outfit", sans-serif;
}

/* !fc
------------------------------------------------ */
.fc_red,
.color-artistic {
  color: #e61324;
}

.fc_blue,
.color-rhythmic {
  color: #243aab;
}

.fc_yellow,
.color-gymnastics {
  color: #c97716;
}

.fc_green,
.color-trampoline {
  color: #20ac19;
}

/* !bg
------------------------------------------------ */
.bg_red,
.bg-artistic {
  background: #ad101c !important;
}

.bg_blue,
.bg-rhythmic {
  background: #243aab !important;
}

.bg_green,
.bg-trampoline {
  background: #20ac19 !important;
}

.bg_yellow,
.bg-gymnastics {
  background: #c97716 !important;
}

/* html
----------------------------------------------- */
html.html-lock {
  overflow: hidden;
  touch-action: none;
}

/* wrapper
----------------------------------------------- */
#wrapper {
  overflow: hidden;
}

.inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

article {
  padding: 100px 0 0;
}

@media (max-width: 1024px) {
  article {
    padding: 85px 0 0;
  }
}
/* header
----------------------------------------------- */
#header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background: #1c1818;
  z-index: 99;
}

#header .header_logo {
  position: absolute;
  left: 0;
  top: 0;
  background: #e61324;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  -webkit-border-radius: 0 0 50px 0;
  -moz-border-radius: 0 0 50px 0;
  -ms-border-radius: 0 0 50px 0;
  -o-border-radius: 0 0 50px 0;
  border-radius: 0 0 50px 0;
  z-index: 9;
}

#header .header_logo a {
  display: block;
}

#header .header_logo a img {
  width: 74px;
}

#header .header_mess {
  background: #e61324;
  height: 40px;
  padding: 0 20px 0 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#header .header_name {
  display: flex;
  align-items: stretch;
  color: #dedede;
  font-size: 13px;
  line-height: 1;
}

#header .header_name .name_jps {
  padding: 5px 5px 2px 0;
  margin: 0 5px 0 0;
  border-right: 1px #f75764 solid;
}

#header .header_name .name_eng {
  display: flex;
  align-items: center;
  font-family: "Outfit", sans-serif;
}

#header .header_other {
  display: flex;
  align-items: center;
  gap: min(20px, 1.43vw);
}

#header .header_sns {
  display: flex;
  gap: min(20px, 1.43vw);
  align-items: center;
  margin: 0 10px 0 0;
}
#header .header_sns .search img {
  width: 20px;
}

#header .header_sns li {
  font-size: 0;
}

#header .header_sns li a {
  display: block;
}

#header .header_sns li a:hover {
  opacity: 0.7;
}

#header .header_sns .sns_insta {
  width: 18px;
}

#header .header_sns .sns_x {
  width: 18px;
}

#header .header_sns .sns_face {
  width: 19px;
}

#header .header_sns .sns_youtu {
  width: 24px;
}

#header .header_link {
  display: flex;
  align-items: center;
  gap: min(20px, 1.43vw);
  padding: 3px 0 0;
}

#header .header_link a {
  display: block;
  font-size: min(13px, 1.19vw);
  color: #fff;
  font-weight: 400;
  position: relative;
}

#header .header_link a:before {
  position: absolute;
  content: "";
  background: #fff;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  transition: all 0.3s !important;
  -moz-transition: all 0.3s !important;
  /* Firefox */
  -webkit-transition: all 0.3s !important;
  /* Chrome&Safari */
  z-index: 0;
}

#header .header_link a:hover:before {
  width: 100%;
}

#header .header_btn a {
  border: 1px #fff solid;
  width: min(140px, 12.8vw);
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: min(13px, 1.19vw);
  color: #fff;
  line-height: 1;
  padding: 2px 0 0;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
}

#header .header_btn a:hover {
  background: #fff;
  color: #e61324;
}

#header .header_in {
  height: 60px;
  padding: 0 0 0 100px;
}

#header .header_navi {
  display: flex;
  align-items: stretch;
  padding: 10px 0;
  height: 100%;
}

#header .header_navi > li {
  flex: 1;
  color: #fff;
}

#header .header_navi > li:not(:last-child) {
  border-right: 2px #3e3939 solid;
}

#header .header_navi .navi_item {
  font-size: min(16px, 1.15vw);
  color: #fff;
  line-height: 1.125;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
  padding: 0 min(25px, 1.79vw);
  position: relative;
}

#header .header_navi .toggle-trigger:before {
  position: absolute;
  content: "";
  background: #fff;
  width: 8px;
  height: 6px;
  right: min(15px, 1.08vw);
  top: 50%;
  margin-top: -3px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  z-index: 0;
}

#header .header_navi .toggle-trigger.on:before,
#header .header_navi .toggle-trigger:hover:before {
  background: #e61324;
}

#header .header_navi .toggle-trigger.on,
#header .header_navi .toggle-trigger:hover {
  opacity: 0.7;
}

#header .header_navi > li > a:hover {
  opacity: 0.7;
}

.navbar-toggle {
  display: none;
}

.navbar-collapse {
  display: none;
}

@media (max-width: 1024px) {
  #header .header_logo {
    position: static;
    background: none;
    width: auto;
    height: auto;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
  }
  #header .header_logo a {
    display: block;
  }
  #header .header_logo a img {
    width: 37px;
  }
  #header .header_mess {
    height: 30px;
    padding: 0 20px;
    justify-content: flex-start;
  }
  #header .header_name {
    font-size: 10px;
  }
  #header .header_name .name_jps {
    padding: 3px 10px 2px 0;
    margin: 0 5px 0 0;
  }
  #header .header_other {
    display: none;
  }
  #header .header_in {
    height: 55px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  #header .header_navi {
    display: none;
  }
  .navbar-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99;
  }
  .top_page .navbar-toggle {
    filter: drop-shadow(0 0 5px rgb(0, 0, 0));
  }
  .navbar-toggle .toggle_menu {
    width: 25px;
    height: 19px;
    position: relative;
  }
  .navbar-toggle.on .toggle_menu {
    width: 30px;
    height: 30px;
  }
  .navbar-toggle .toggle_menu span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 0;
    background-color: #fff;
    width: 100%;
    height: 1px;
  }
  .navbar-toggle.on .toggle_menu span {
    background-color: #000;
  }
  .navbar-toggle .toggle_menu span:nth-of-type(1) {
    top: 0;
  }
  .navbar-toggle .toggle_menu span:nth-of-type(2) {
    top: 9px;
  }
  .navbar-toggle .toggle_menu span:nth-of-type(3) {
    top: 18px;
  }
  .navbar-toggle.on .toggle_menu span:nth-of-type(1) {
    transform: translateY(14px) rotate(45deg);
  }
  .navbar-toggle.on .toggle_menu span:nth-of-type(2) {
    opacity: 0;
  }
  .navbar-toggle.on .toggle_menu span:nth-of-type(3) {
    transform: translateY(-4px) rotate(-45deg);
  }
  .navbar-collapse {
    display: none;
    position: absolute;
    left: 0;
    top: 30px;
    background: #fff;
    height: calc(100vh - 30px);
    width: 100vw;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 80;
  }
  .navbar-collapse .navbar_inner {
    padding: 10px 20px 25px;
    height: 100%;
    overflow-y: scroll;
  }
  .navbar-collapse .navbar_inner {
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
  }
  .navbar-collapse .navbar_inner::-webkit-scrollbar {
    display: none;
  }
  .navbar-collapse .navbar_inner {
    scrollbar-width: none;
  }
  .navbar-collapse .navbar_logo {
    display: flex;
    justify-content: flex-start;
    margin: 0 0 15px;
  }
  .navbar-collapse .navbar_logo a {
    display: block;
  }
  .navbar-collapse .navbar_logo img {
    width: 45px;
  }
  .navbar-collapse .navbar_cont {
    max-width: 670px;
    margin: 0 auto;
  }
  .navbar-collapse .navbar_list > li {
    border-bottom: 2px #e61324 solid;
  }
  .navbar-collapse .navbar_list > li > a,
  .navbar-collapse .navbar_list .navbar_toggle {
    display: block;
    padding: 20px 30px 20px 10px;
    font-size: 14px;
    font-weight: 700;
    position: relative;
  }
  .navbar-collapse .navbar_list > li > a {
    background-image: url("../img/common/arrow_menu.png");
    background-position: right 10px center;
    background-repeat: no-repeat;
    background-size: 12px 12px;
  }
  .navbar-collapse .navbar_list .navbar_toggle:before,
  .navbar-collapse .navbar_list .navbar_toggle:after {
    position: absolute;
    content: "";
    background: #000;
    transition: all 0.3s !important;
    -moz-transition: all 0.3s !important;
    /* Firefox */
    -webkit-transition: all 0.3s !important;
    /* Chrome&Safari */
    z-index: 0;
  }
  .navbar-collapse .navbar_list .navbar_toggle:before {
    width: 16px;
    height: 2px;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  .navbar-collapse .navbar_list .navbar_toggle:after {
    width: 2px;
    height: 16px;
    right: 17px;
    top: 50%;
    transform: translateY(-50%);
  }
  .navbar-collapse .navbar_list .navbar_toggle.on:after {
    transform: translateY(-50%) rotate(90deg);
  }
  .navbar-collapse .navbar_list .navbar_hidden {
    display: none;
    padding: 0 0 20px;
  }
  .navbar-collapse .navbar_information {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 10px 20px;
    margin: 0 0 20px;
  }
  .navbar-collapse .navbar_information li {
    width: calc((100% - 20px) / 2);
  }
  .navbar-collapse .navbar_information li a {
    display: block;
  }
  .navbar-collapse .navbar_information .infor_img img {
    width: 100%;
  }
  .navbar-collapse .navbar_information .infor_tit {
    margin: 10px 0 0;
    position: relative;
    font-size: 13px;
    padding: 0 0 0 15px;
  }
  .navbar-collapse .navbar_information .infor_tit:before {
    position: absolute;
    content: "";
    background: #b0b3bf;
    width: 8px;
    height: 2px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
  }
  .navbar-collapse .navbar_blank {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 5px 20px;
  }
  .navbar-collapse .navbar_blank li {
    width: calc((100% - 20px) / 2);
    border-bottom: 1px #b0b3bf solid;
  }
  .navbar-collapse .navbar_blank li a {
    display: block;
    font-size: 13px;
    padding: 10px 20px 10px 0;
    background-image: url("../img/common/blank_drop.png");
    background-size: 11px 11px;
    background-repeat: no-repeat;
    background-position: right 5px center;
  }
  .navbar-collapse .navbar_link {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 15px 20px;
  }
  .navbar-collapse .navbar_link li {
    width: calc((100% - 20px) / 2);
  }
  .navbar-collapse .navbar_link li a {
    display: block;
    font-size: 13px;
    padding: 0 0 0 15px;
    position: relative;
  }
  .navbar-collapse .navbar_link li a:before {
    position: absolute;
    content: "";
    background: #b0b3bf;
    width: 8px;
    height: 2px;
    left: 0;
    top: 6px;
    z-index: 0;
  }
  .navbar-collapse .navbar_btn {
    margin: 30px 0 0;
  }
  .navbar-collapse .navbar_btn a {
    background: #1c1818;
    color: #fff;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    letter-spacing: 0.02em;
    padding: 0 50px;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    -ms-border-radius: 60px;
    -o-border-radius: 60px;
    border-radius: 60px;
    position: relative;
  }
  .navbar-collapse .navbar_btn a:before {
    position: absolute;
    content: "";
    width: 26px;
    height: 26px;
    border: 1px #fff solid;
    right: 20px;
    top: 50%;
    background-image: url("../img/common/arrow_right_wh.png");
    background-size: 8px 8px;
    background-position: center center;
    background-repeat: no-repeat;
    transform: translateY(-50%);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    z-index: 0;
  }
  .navbar-collapse .navbar_other {
    margin: 25px 0 0;
    padding: 0 0 0 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  .navbar-collapse .navbar_other a {
    display: block;
    font-size: 11px;
    padding: 5px 0;
  }
  .navbar-collapse .navbar_sns {
    display: flex;
    gap: 25px;
    align-items: center;
    margin: 30px 0 0;
  }
  .navbar-collapse .navbar_sns li {
    font-size: 0;
  }
  .navbar-collapse .navbar_sns li a {
    display: block;
  }
  .navbar-collapse .navbar_sns .sns_insta {
    width: 15px;
  }
  .navbar-collapse .navbar_sns .sns_x {
    width: 14px;
  }
  .navbar-collapse .navbar_sns .sns_face {
    width: 18px;
  }
  .navbar-collapse .navbar_sns .sns_youtu {
    width: 20px;
  }
}
/* header toggle
----------------------------------------------- */
#header .header_drop {
  display: none;
  position: absolute;
  background: rgba(28, 24, 24, 0.8);
  left: 0;
  top: 100%;
  width: 100%;
  height: calc(100vh - 100px);
  padding: 40px 20px;
  z-index: 9;
}

#header .header_drop .drop_box {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  padding: 40px 20px 60px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
}

#header .header_drop .drop_inner {
  max-width: 1000px;
  margin: 0 auto;
}

#header .header_drop .drop_hd {
  display: flex;
  align-items: center;
  gap: 25px;
}

#header .header_drop .drop_hd .hd_jps {
  font-size: 36px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.02em;
}

#header .header_drop .drop_hd .hd_eng {
  font-size: 16px;
  color: #e61324;
  font-family: "Outfit", sans-serif;
}

#header .header_drop .drop_link {
  margin: 20px 0 0;
  gap: 15px 28px;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}

#header .header_drop .drop_link li {
  width: calc((100% - 84px) / 4);
  border-bottom: 1px #b0b3bf solid;
}

#header .header_drop .drop_link li a {
  display: block;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 25px 12px 10px;
  position: relative;
}

#header .header_drop .drop_link li a:hover {
  color: #e61324;
}

#header .header_drop .drop_arrow {
  position: absolute;
  display: block;
  width: 12px;
  height: 12px;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  overflow: hidden;
  z-index: 0;
}

#header .header_drop .drop_arrow:before,
#header .header_drop .drop_arrow:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 11px 11px;
  animation-fill-mode: forwards;
  animation-duration: 0.6s;
  z-index: 0;
}

#header .header_drop .drop_arrow:before {
  background-image: url("../img/common/arrow_drop.png");
}

#header .header_drop .drop_arrow:after {
  transform: translateX(-100%);
  background-image: url("../img/common/arrow_drop.png");
}

#header .header_drop a:hover .drop_arrow:before {
  animation-name: transformRightLeft;
  animation-delay: 0s;
}

#header .header_drop a:hover .drop_arrow:after {
  animation-name: transformLeftRight;
  animation-delay: 0.2s;
}

#header .header_drop .drop_blank {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 15px 28px;
  margin: 5px 0 0;
}

#header .header_drop .drop_blank li {
  width: calc((100% - 84px) / 4);
  border-bottom: 1px #b0b3bf solid;
}

#header .header_drop .drop_blank li a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 25px 12px 10px;
  background-image: url("../img/common/blank_drop.png");
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 11px 11px;
  position: relative;
}

#header .header_drop .drop_blank li a:hover {
  color: #e61324;
}

#header .header_drop .drop_information {
  margin: 30px 0 0;
  border-bottom: 2px #e5e8ec dotted;
  display: flex;
  align-items: stretch;
  gap: 28px;
}

#header .header_drop .drop_information li {
  width: calc((100% - 84px) / 4);
}

#header .header_drop .drop_information a {
  display: block;
  height: 100%;
  padding: 0 0 10px;
}

#header .header_drop .drop_information .infor_img {
  overflow: hidden;
}

#header .header_drop .drop_information .infor_img img {
  width: 100%;
  transition: all 1s !important;
  -moz-transition: all 1s !important;
  /* Firefox */
  -webkit-transition: all 1s !important;
  /* Chrome&Safari */
}

#header .header_drop .drop_information .infor_link {
  display: block;
  padding: 10px 25px 10px 10px;
  font-size: 16px;
  position: relative;
}

#header .header_drop .drop_information a:hover {
  color: #e61324;
}

#header .header_drop .drop_information a:hover .infor_img img {
  transform: scale(1.1);
}

@media (max-width: 1024px) {
  #header .header_drop {
    display: none !important;
  }
}
/* anchor
----------------------------------------------- */
.anchor {
  position: absolute;
  left: 0;
  top: 0;
  padding-top: 120px;
  margin-top: -120px;
  z-index: 0;
}

@media (max-width: 1024px) {
  .anchor {
    padding-top: 100px;
    margin-top: -100px;
  }
}
/* footer
----------------------------------------------- */
#footer {
  background: #fff;
}

#footer .footer_box {
  padding: 0 20px;
}

#footer .footer_inner {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px #b0b3bf solid;
  padding: 80px 0 70px;
}

#footer .footer_mess {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin: 0 0 50px;
}

#footer .footer_logo {
  flex-shrink: 0;
}

#footer .footer_logo a {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #1c1818;
}

#footer .footer_logo .logo_ico {
  width: 92px;
}

#footer .footer_logo .logo_cont {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

#footer .footer_logo .logo_jps {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

#footer .footer_logo .logo_eng {
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
}

#footer .footer_sns {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 0;
}

#footer .footer_sns .sns_insta {
  width: 28px;
}

#footer .footer_sns .sns_x {
  width: 25px;
}

#footer .footer_sns .sns_face {
  width: 32px;
}

#footer .footer_sns .sns_youtu {
  width: 35px;
}

#footer .footer_sns a {
  display: block;
}

#footer .footer_sns a:hover {
  opacity: 0.7;
}

#footer .footer_bnr {
  margin: 0 0 80px;
  background: url("../img/common/bg_lattice_gr.jpg") 0 0 repeat;
  padding: 20px;
  gap: 20px;
  display: flex;
  align-items: stretch;
}

#footer .footer_bnr a {
  width: calc((100% - 20px) / 2);
  border: 2px #e50012 solid;
  background: #e50012;
  height: 100px;
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  padding: 0 100px 0 40px;
  position: relative;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
}

#footer .footer_bnr a:hover {
  color: #e50012;
  background: #fff;
}

#footer .footer_bnr .bnr_arrow {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: 1px #fff solid;
  display: block;
  overflow: hidden;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}

#footer .footer_bnr a:hover .bnr_arrow {
  border: 1px #e50012 solid;
}

#footer .footer_bnr .bnr_arrow:before,
#footer .footer_bnr .bnr_arrow:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 15px 15px;
  animation-fill-mode: forwards;
  animation-duration: 0.6s;
  z-index: 0;
}

#footer .footer_bnr .bnr_arrow:before {
  background-image: url("../img/common/arrow_right_wh.png");
}

#footer .footer_bnr .bnr_arrow:after {
  transform: translateX(-100%);
  background-image: url("../img/common/arrow_right_rd.png");
}

#footer .footer_bnr a:hover .bnr_arrow:before {
  animation-name: transformRightLeft;
  animation-delay: 0s;
}

#footer .footer_bnr a:hover .bnr_arrow:after {
  animation-name: transformLeftRight;
  animation-delay: 0.2s;
}

#footer .footer_navi {
  display: flex;
  align-items: stretch;
  gap: 37px;
}

#footer .footer_navi .navi_inner {
  width: calc((100% - 150px) / 2);
}

#footer .footer_navi .navi_tit,
#footer .footer_navi .navi_tit_link a {
  display: block;
  border-bottom: 2px #e61324 solid;
  padding: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
}

#footer .footer_navi .navi_tit_link a:hover {
  opacity: 0.7;
}

#footer .footer_navi .navi_tit_sp {
  display: none;
}

#footer .footer_navi .navi_block {
  padding: 25px 0 0;
}

#footer .footer_navi .navi_link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

#footer .footer_navi .navi_link li {
  padding: 0 0 0 20px;
  position: relative;
}

#footer .footer_navi .navi_link li:before {
  position: absolute;
  content: "";
  background: #b0b3bf;
  width: 8px;
  height: 2px;
  left: 0;
  top: 50%;
  margin-top: -1px;
  z-index: 0;
}

#footer .footer_navi .navi_link li a {
  display: block;
  font-size: 14px;
  position: relative;
}

#footer .footer_navi .navi_link li a:before {
  position: absolute;
  content: "";
  background: #000;
  width: 0;
  height: 1px;
  left: 0;
  bottom: 0;
  transition: all 0.3s !important;
  -moz-transition: all 0.3s !important;
  /* Firefox */
  -webkit-transition: all 0.3s !important;
  /* Chrome&Safari */
  z-index: 0;
}

#footer .footer_navi .navi_link li a:hover:before {
  width: 100%;
}

#footer .footer_btm {
  background: #1c1818;
  padding: 30px 20px;
}

#footer .footer_btm .btm_inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}
#footer .footer_btm .btm_inner .right {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 10px;
}
@media screen and (max-width: 950px) {
  #footer .footer_btm .btm_inner .right {
    flex-direction: column;
    gap: 5px 0;
  }
}
@media screen and (max-width: 767.99px) {
  #footer .footer_btm .btm_inner .right {
    flex-direction: row-reverse;
    gap: 0 10px;
  }
}

#footer .footer_btm .btm_navi {
  display: flex;
  align-items: stretch;
}

#footer .footer_btm .btm_navi li:not(:last-child) {
  border-right: 1px #3e3939 solid;
  padding: 0 20px 0 0;
  margin: 0 15px 0 0;
}

#footer .footer_btm .btm_navi li a {
  display: block;
  position: relative;
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
}

#footer .footer_btm .btm_navi li a:before {
  position: absolute;
  content: "";
  background: #fff;
  width: 0;
  height: 1px;
  left: 0;
  bottom: 0;
  transition: all 0.3s !important;
  -moz-transition: all 0.3s !important;
  /* Firefox */
  -webkit-transition: all 0.3s !important;
  /* Chrome&Safari */
}

#footer .footer_btm .btm_navi li a:hover:before {
  width: 100%;
}

#footer .copyright {
  font-size: 14px;
}

@media (max-width: 1024px) {
  #footer .footer_mess {
    flex-direction: column;
    align-items: center;
  }
  #footer .footer_navi {
    gap: 10px;
  }
  #footer .footer_navi .navi_inner {
    width: calc((100% - 40px) / 5);
  }
  #footer .footer_navi .navi_tit,
  #footer .footer_navi .navi_tit_link a {
    font-size: 13px;
  }
  #footer .footer_navi .navi_link li a {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  #footer .footer_box {
    padding: 0;
  }
  #footer .footer_inner {
    padding: 60px 20px;
  }
  #footer .footer_mess {
    gap: 30px;
    margin: 0 0 30px;
  }
  #footer .footer_logo .logo_ico {
    width: 65px;
  }
  #footer .footer_logo .logo_cont {
    gap: 5px;
  }
  #footer .footer_logo .logo_jps {
    font-size: min(20px, 5.34vw);
  }
  #footer .footer_logo .logo_eng {
    font-size: min(14px, 3.74vw);
    letter-spacing: 0.03em;
  }
  #footer .footer_sns {
    gap: 25px;
  }
  #footer .footer_sns .sns_insta {
    width: 20px;
  }
  #footer .footer_sns .sns_x {
    width: 18px;
  }
  #footer .footer_sns .sns_face {
    width: 23px;
  }
  #footer .footer_sns .sns_youtu {
    width: 25px;
  }
  #footer .footer_sns a:hover {
    opacity: 1;
  }
  #footer .footer_bnr {
    margin: 0 0 25px;
    gap: 15px;
    flex-direction: column;
    background-size: 6px 6px;
  }
  #footer .footer_bnr a {
    width: 100%;
    height: 65px;
    font-size: 14px;
    padding: 0 50px 0 20px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
  }
  #footer .footer_bnr a:hover {
    color: #fff;
    background: #e50012;
  }
  #footer .footer_bnr .bnr_arrow {
    right: 20px;
    width: 26px;
    height: 26px;
  }
  #footer .footer_bnr a:hover .bnr_arrow {
    border: 1px #fff solid;
  }
  #footer .footer_bnr .bnr_arrow:before,
  #footer .footer_bnr .bnr_arrow:after {
    background-size: 8px 8px;
    animation-fill-mode: forwards;
    animation-duration: 0.6s;
    z-index: 0;
  }
  #footer .footer_bnr .bnr_arrow:before {
    background-image: url("../img/common/arrow_right_wh.png");
  }
  #footer .footer_bnr .bnr_arrow:after {
    display: none;
  }
  #footer .footer_bnr a:hover .bnr_arrow:before {
    animation-name: none;
  }
  #footer .footer_navi {
    flex-direction: column;
    gap: 0;
  }
  #footer .footer_navi .navi_inner {
    width: 100%;
  }
  #footer .footer_navi .navi_tit,
  #footer .footer_navi .navi_tit_link a {
    padding: 20px 25px 20px 10px;
    font-size: 14px;
  }
  #footer .footer_navi .navi_tit {
    display: none;
  }
  #footer .footer_navi .navi_tit_link a:hover {
    opacity: 1;
  }
  #footer .footer_navi .navi_tit_sp {
    display: block;
    padding: 20px 25px 20px 10px;
    font-size: 14px;
    font-weight: 700;
    border-bottom: 2px #e61324 solid;
    position: relative;
  }
  #footer .footer_navi .navi_tit_sp:before,
  #footer .footer_navi .navi_tit_sp:after {
    position: absolute;
    content: "";
    background: #000;
    z-index: 0;
  }
  #footer .footer_navi .navi_tit_sp:before {
    width: 16px;
    height: 2px;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  #footer .footer_navi .navi_tit_sp:after {
    width: 2px;
    height: 16px;
    right: 17px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s !important;
    -moz-transition: all 0.3s !important;
    /* Firefox */
    -webkit-transition: all 0.3s !important;
    /* Chrome&Safari */
  }
  #footer .footer_navi .navi_tit_sp.on:after {
    transform: translateY(-50%) rotate(90deg);
  }
  #footer .footer_navi .navi_block {
    display: none;
    padding: 25px 10px 5px;
  }
  #footer .footer_navi .navi_link {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px 0;
  }
  #footer .footer_navi .navi_link li {
    width: 50%;
    padding: 0 0 0 14px;
  }
  #footer .footer_navi .navi_link li a {
    font-size: 13px;
  }
  #footer .footer_navi .navi_link li a:before {
    display: none;
  }
  #footer .footer_btm {
    padding: 40px 20px 25px;
  }
  #footer .footer_btm .btm_inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px 0;
  }
  #footer .footer_btm .btm_navi {
    flex-direction: column;
    gap: 15px;
  }
  #footer .footer_btm .btm_navi li:not(:last-child) {
    border-right: none;
    padding: 0;
    margin: 0;
  }
  #footer .footer_btm .btm_navi li a {
    font-size: 11px;
  }
  #footer .footer_btm .btm_navi li a:before {
    display: none;
  }
  #footer .copyright {
    font-size: 10px;
  }
}
@media (min-width: 768px) {
  #footer .footer_navi .navi_block {
    display: block !important;
  }
}
/* H
----------------------------------------------- */
.section_hdmax {
  display: flex;
  flex-direction: column;
}

.section_hdmax .hdmax_jps {
  font-size: 58px;
  font-weight: 700;
  color: #e61324;
  line-height: 1.24;
}

.section_hdmax .hdmax_eng {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  font-family: "Outfit", sans-serif;
}

.section_hdmax.white .hdmax_jps,
.section_hdmax.white .hdmax_eng {
  color: #fff;
}

@media (max-width: 767px) {
  .section_hdmax {
    gap: 3px;
  }
  .section_hdmax .hdmax_jps {
    font-size: 34px;
  }
  .section_hdmax .hdmax_eng {
    font-size: 15px;
  }
}
.section_hdl {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section_hdl .hdl_eng {
  color: #dc0816;
  font-size: 14px;
  font-weight: 500;
  padding: 0 0 0 18px;
  font-family: "Outfit", sans-serif;
  position: relative;
}

.section_hdl .hdl_eng:before {
  position: absolute;
  content: "";
  background: #dc0816;
  width: 10px;
  height: 1px;
  left: 0;
  top: 50%;
  z-index: 0;
}

.section_hdl .hdl_jps {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.24;
}

.section_hdl.white .hdl_eng,
.section_hdl.white .hdl_jps {
  color: #fff;
}

.section_hdl.white .hdl_eng:before {
  background: #fff;
}

@media (max-width: 767px) {
  .section_hdl {
    gap: 10px;
  }
  .section_hdl .hdl_eng {
    font-size: 11px;
    padding: 0 0 0 15px;
  }
  .section_hdl .hdl_eng:before {
    width: 8px;
  }
  .section_hdl .hdl_jps {
    font-size: 22px;
  }
}
.section_hdm {
  padding: 16px 0 11px 30px;
  line-height: 1.37;
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 45px;
  position: relative;
}

.section_hdm:before {
  position: absolute;
  content: "";
  background: #e61324;
  width: 8px;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
  z-index: 0;
}

@media (max-width: 767px) {
  .section_hdm {
    padding: 5px 0 3px 15px;
    font-size: 19px;
    margin: 0 0 15px;
  }
  .section_hdm:before {
    width: 4px;
  }
}
.section_hds {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  padding: 0 0 13px;
  margin: 0 0 25px;
  border-bottom: 2px #e0e1e4 solid;
  position: relative;
}

.section_hds:before {
  position: absolute;
  content: "";
  background: #e61324;
  width: 80px;
  height: 2px;
  left: 0;
  bottom: -2px;
  z-index: 0;
}

@media (max-width: 767px) {
  .editor-styles-wrapper h3,
  .section_hds {
    font-size: 16px;
    padding: 0 0 8px;
    margin: 0 0 15px;
  }
  .editor-styles-wrapper h3:before,
  .section_hds:before {
    width: 50px;
  }
}
.section_hdmini {
  font-size: 20px;
  font-weight: 700;
  color: #e61324;
  line-height: 1.4;
  padding: 0 0 0 22px;
  position: relative;
}

.section_hdmini:before {
  position: absolute;
  content: "";
  background: #1c1818;
  width: 14px;
  height: 2px;
  left: 0;
  top: 50%;
  margin-top: -2px;
  z-index: 0;
}

@media (max-width: 767px) {
  .section_hdmini {
    font-size: 15px;
    padding: 0 0 0 20px;
  }
  .section_hdmini:before {
    width: 12px;
  }
}
/* breadcrumb
----------------------------------------------- */
.breadcrumb {
  padding: 35px 20px 30px 20px;
}

.breadcrumb.bread_red {
  background: #e61324;
}

.breadcrumb .bread_in {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 16px;
  color: #1c1818;
  gap: 10px 20px;
}

.breadcrumb .bread_in a {
  display: block;
  color: #e50012;
  text-decoration: underline;
}

.breadcrumb .bread_in a:hover {
  opacity: 0.7;
}

.breadcrumb .bread_line {
  font-size: 0;
  background: #1c1818;
  width: 50px;
  height: 1px;
  display: block;
}

.breadcrumb.bread_red .bread_in {
  color: #fff;
}

.breadcrumb.bread_red .bread_in a {
  color: #fff;
}

.breadcrumb.bread_red .bread_line {
  background: #fff;
}

@media (max-width: 767px) {
  .breadcrumb {
    padding: 30px 20px 20px 20px;
  }
  .breadcrumb .bread_in {
    font-size: 11px;
    gap: 10px 15px;
  }
  .breadcrumb .bread_in a:hover {
    opacity: 1;
  }
  .breadcrumb .bread_line {
    width: 35px;
  }
}
/* common
----------------------------------------------- */
@keyframes transformLeftRight {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes transformRightLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes transformTopBottom {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes transformBottomTop {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}
.com_sponsor .com_bnr_col {
  justify-content: center;
}

.com_sponsor .sponsor_hd {
  background: #1c1818;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
}

.com_sponsor .sponsor_inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 20px 120px;
}

.com_sponsor.com_sponsor_top .sponsor_inner {
  padding-top: 45px;
}

.com_sponsor .sponsor_sns {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 0 0 45px;
}

.com_sponsor .sponsor_sns li {
  width: 90px;
}

.com_sponsor .sponsor_sns li a {
  display: block;
}

.com_sponsor .sponsor_sns li a:hover {
  opacity: 0.7;
}

.com_sponsor .sponsor_box {
  display: flex;
  gap: 20px 10px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.com_sponsor .sponsor_box li {
  width: calc((100% - 40px) / 4);
}

.com_sponsor .sponsor_box li a {
  display: block;
}

.com_sponsor .sponsor_box li a:hover {
  opacity: 0.7;
}

.com_sponsor .sponsor_bnr {
  margin: 50px 0 0;
}

@media (max-width: 767px) {
  .com_sponsor .sponsor_hd {
    height: 60px;
    font-size: 17px;
  }
  .com_sponsor .sponsor_inner {
    padding: 40px 20px;
  }
  .com_sponsor.com_sponsor_top .sponsor_inner {
    padding-top: 20px;
  }
  .com_sponsor .sponsor_sns {
    justify-content: space-between;
    gap: 20px;
    margin: 0 0 50px;
  }
  .com_sponsor .sponsor_sns li {
    width: 62px;
  }
  .com_sponsor .sponsor_sns li a:hover {
    opacity: 1;
  }
  .com_sponsor .sponsor_box {
    gap: 16px 3px;
    justify-content: center;
  }
  .com_sponsor .sponsor_box li {
    width: calc((100% - 6px) / 3);
  }
  .com_sponsor .sponsor_box li a img {
    width: 100%;
  }
  .com_sponsor .sponsor_box li a:hover {
    opacity: 1;
  }
}
.com_pdf {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 20px;
}

.com_pdf li {
  width: calc((100% - 20px) / 2);
}

.com_pdf a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #fff;
  border: 2px #e61324 solid;
  height: 100%;
  min-height: 100px;
  padding: 10px 10px 10px 28px;
  gap: 20px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
}

.com_pdf a .pdf_txt {
  display: block;
  font-size: 22px;
  padding: 5px 0 0 50px;
  font-weight: 700;
  line-height: 1.27;
  background-image: url("../img/common/ico_pdf_rd.png");
  background-size: 27px 27px;
  background-repeat: no-repeat;
  background-position: 0 center;
}

.com_pdf a:hover {
  background: #e61324;
  color: #fff;
}

.com_pdf a:hover .pdf_txt {
  background-image: url("../img/common/ico_pdf_wh.png");
}

@media (max-width: 767px) {
  .com_pdf {
    flex-direction: column;
    gap: 13px;
  }
  .com_pdf li {
    width: 100%;
  }
  .com_pdf a {
    border: 1px #e61324 solid;
    min-height: 50px;
    padding: 5px 5px 5px 15px;
    gap: 10px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
  }
  .com_pdf a:hover {
    background: #fff;
    color: #000;
  }
  .com_pdf a .pdf_txt {
    font-size: 13px;
    padding: 2px 0 0 25px;
    background-size: 14px 14px;
  }
  .com_pdf a:hover .pdf_txt {
    background-image: url("../img/common/ico_pdf_rd.png");
  }
}
.com_pdf_link {
  display: flex;
  justify-content: flex-start;
}

.com_pdf_link a {
  display: flex;
  align-items: center;
  text-decoration: underline;
  color: #1c1818;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  gap: 10px;
  position: relative;
}

.com_pdf_link a:before {
  content: "";
  background-image: url("../img/common/ico_pdf_s.png");
  width: 32px;
  height: 32px;
  align-self: flex-start;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.com_pdf_link a:hover {
  opacity: 0.7;
}

@media (max-width: 767px) {
  .com_pdf_link a {
    font-size: 13px;
    letter-spacing: 0.02em;
    gap: 5px;
  }
  .com_pdf_link a:before {
    width: 25px;
    height: 25px;
    margin: 0 0 3px;
  }
  .com_pdf_link a:hover {
    opacity: 1;
  }
}
.com_excel {
  display: flex;
  justify-content: flex-start;
}

.com_excel a {
  background: #f8f8f8;
  background-image: url("../img/common/download_bk.png");
  background-size: 20px 18px;
  background-position: right 20px center;
  background-repeat: no-repeat;
  padding: 3px 50px 0 20px;
  font-size: 16px;
  font-weight: 700;
  height: 70px;
  width: 350px;
  display: flex;
  align-items: center;
  border: 1px #b0b3bf solid;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
}

.com_excel a:hover {
  opacity: 0.7;
}

@media (max-width: 767px) {
  .com_excel a {
    background-size: 14px 13px;
    padding: 3px 40px 0 15px;
    font-size: 13px;
    height: 55px;
    width: 270px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
  }
  .com_excel a:hover {
    opacity: 1;
  }
}
.com_txt {
  line-height: 1.75;
}

.com_txt a {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .com_txt {
    line-height: 1.85;
  }
}
.com_btn {
  display: flex;
  justify-content: center;
}

.com_btn a {
  border: 2px #1c1818 solid;
  background: #1c1818;
  width: 400px;
  height: 90px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1.5;
  padding: 0 70px;
  position: relative;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  -ms-border-radius: 60px;
  -o-border-radius: 60px;
  border-radius: 60px;
}

.com_btn a:hover {
  color: #1c1818;
  background: #fff;
}

.com_btn .arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: 1px #fff solid;
  display: block;
  overflow: hidden;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}

.com_btn a:hover .arrow {
  border: 1px #1c1818 solid;
}

.com_btn .arrow:before,
.com_btn .arrow:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 11px 11px;
  animation-fill-mode: forwards;
  animation-duration: 0.6s;
  z-index: 0;
}

.com_btn .arrow:before {
  background-image: url("../img/common/arrow_link_wh.png");
}

.com_btn.com_btn_b .arrow:before {
  background-image: url("../img/common/arrow_link_wh_btm.png");
}

.com_btn .arrow:after {
  transform: translateX(-100%);
  background-image: url("../img/common/arrow_link_bk.png");
}

.com_btn.com_btn_b .arrow:after {
  background-image: url("../img/common/arrow_link_bk_btm.png");
}

.com_btn a:hover .arrow:before {
  animation-name: transformRightLeft;
  animation-delay: 0s;
}

.com_btn a:hover .arrow:after {
  animation-name: transformLeftRight;
  animation-delay: 0.2s;
}

.com_btn.com_btn_b a:hover .arrow:before {
  animation-name: transformBottomTop;
  animation-delay: 0s;
}

.com_btn.com_btn_b a:hover .arrow:after {
  animation-name: transformTopBottom;
  animation-delay: 0.2s;
}

@media (max-width: 767px) {
  .com_btn a {
    width: 250px;
    max-width: 100%;
    height: 60px;
    font-size: min(14px, 3.74vw);
    letter-spacing: 0.02em;
    padding: 0 30px;
  }
  .com_btn.com_btn_l a {
    width: 295px;
  }
  .com_btn a:hover {
    color: #fff;
    background: #1c1818;
  }
  .com_btn .arrow {
    width: 26px;
    height: 26px;
  }
  .com_btn a:hover .arrow {
    border: 1px #fff solid;
  }
  .com_btn .arrow:before,
  .com_btn .arrow:after {
    background-size: 8px 8px;
  }
  .com_btn a:hover .arrow:before {
    animation-name: none;
  }
  .com_btn a:hover .arrow:after {
    display: none;
  }
}
.com_btn.com_back a {
  width: 370px;
}

.com_btn.com_back .arrow {
  right: auto;
  left: 20px;
  transform: translateY(-50%) rotate(180deg);
}

@media (max-width: 767px) {
  .com_btn.com_back a {
    width: 275px;
  }
}
.slider_navi {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: stretch;
  flex-shrink: 0;
}

.slider_navi .navi_btn {
  display: block;
  width: 60px;
  height: 30px;
  background: #1c1818;
  background-image: url("../img/common/arrow_link_wh.png");
  background-size: 11px 11px;
  background-position: center center;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: all 0.3s !important;
  -moz-transition: all 0.3s !important;
  /* Firefox */
  -webkit-transition: all 0.3s !important;
  /* Chrome&Safari */
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  border-radius: 30px;
}

.slider_navi .navi_btn:hover {
  opacity: 0.7;
}

.slider_navi .navi_btn.navi_prev {
  transform: rotate(180deg);
}

@media (max-width: 767px) {
  .slider_navi {
    gap: 7px;
  }
  .slider_navi .navi_btn {
    width: 42px;
    height: 20px;
    background-size: 8px 8px;
  }
  .slider_navi .navi_btn:hover {
    opacity: 1;
  }
}
.com_pickup .pickup_slider .slick-slide {
  margin: 0 15px;
  width: 520px;
}

.com_pickup .pickup_slider .slick-list {
  overflow: visible;
}

@media (max-width: 767px) {
  .com_pickup .pickup_slider .slick-slide {
    margin: 0 1.33vw;
    width: 78.66vw;
  }
}
.decorate_down {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 0;
}

.decorate_down img {
  width: 100%;
  object-fit: cover;
  object-position: center top;
}

.com_event_list li {
  border-bottom: 1px #b0b3bf solid;
}

.com_event_list .com_event_item {
  padding: 25px 0;
  display: block;
  color: #1c1818;
}

.com_event_list .com_event_mess {
  display: flex;
  align-items: center;
  gap: 40px;
}

.com_event_list .com_event_type {
  flex-shrink: 0;
  background: #e61324;
  width: 120px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding-top: 2px;
  font-size: 14px;
  letter-spacing: 0.05em;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
}

.com_event_list .com_event_cont {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.com_event_list .com_event_dc {
  display: flex;
  align-items: center;
  gap: 5px 35px;
  flex-wrap: wrap;
}

.com_event_list .com_event_date {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  flex-shrink: 0;
}

.com_event_list .com_event_cate {
  display: flex;
  gap: 5px 20px;
  align-items: center;
  color: #717171;
  font-size: 12px;
  line-height: 1.2;
  flex-wrap: wrap;
}

.com_event_list .com_event_tit {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
}

.com_event_list .com_event_item:hover .com_event_tit {
  text-decoration: underline;
}

.com_event_list .com_event_sp {
  display: none;
}

@media (max-width: 767px) {
  .com_event_list .com_event_item {
    padding: 20px 0 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .com_event_list .com_event_mess {
    gap: 10px;
  }
  .com_event_list .com_event_type {
    align-self: flex-start;
    width: 70px;
    height: 36px;
    font-size: min(11px, 2.94vw);
    line-height: 1.3;
    letter-spacing: 0;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
  }
  .com_event_list .com_event_dc {
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
  }
  .com_event_list .com_event_date {
    font-size: 13px;
    letter-spacing: -0.02em;
  }
  .com_event_list .com_event_cate {
    gap: 5px 10px;
    font-size: 10px;
  }
  .com_event_list .com_event_tit {
    display: none;
  }
  .com_event_list .com_event_sp {
    display: block;
    font-size: 16px;
    font-weight: 700;
  }
}
.com_news_list li {
  border-bottom: 1px #b0b3bf solid;
}

.com_news_list .com_news_item {
  display: flex;
  align-items: center;
  padding: 30px 0;
  gap: 30px;
}

.com_news_list .com_news_dt {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.com_news_list .com_news_date {
  font-size: 18px;
  font-weight: 700;
  width: 160px;
}

.com_news_list .com_news_type {
  flex-shrink: 0;
  background: #e61324;
  width: 120px;
  height: 55px;
  padding-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.05em;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
}

.com_news_list .com_news_tit {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.com_news_list .com_news_item:hover .com_news_tit {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .com_news_list .com_news_item {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0 15px;
    gap: 10px;
  }
  .com_news_list .com_news_dt {
    width: 100%;
    gap: 10px;
    justify-content: flex-end;
    flex-direction: row-reverse;
  }
  .com_news_list .com_news_date {
    font-size: 13px;
    width: auto;
  }
  .com_news_list .com_news_type {
    width: 105px;
    height: 36px;
    font-size: min(11px, 2.94vw);
    line-height: 1.3;
    letter-spacing: 0;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
  }
  .com_news_list .com_news_tit {
    font-size: 15px;
    line-height: 1.66;
  }
  .com_news_list .com_news_item:hover .com_news_tit {
    text-decoration: none;
  }
}
.com_message {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.64;
  margin: 0 0 50px;
}

@media (max-width: 767px) {
  .com_message {
    font-size: 13px;
    line-height: 1.85;
    margin: 0 0 35px;
  }
}
.com_bnr_col {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 38px;
}

.com_bnr_col li {
  width: calc((100% - 76px) / 3);
  text-align: center;
}

.com_bnr_col a {
  display: block;
  padding: 10px;
}

.com_bnr_col a img {
  width: auto;
}

.com_bnr_col a:hover {
  opacity: 0.7;
}

@media (max-width: 1024px) {
  .com_bnr_col {
    gap: 20px;
  }
  .com_bnr_col li {
    width: calc((100% - 40px) / 3);
  }
}
@media (max-width: 767px) {
  .com_bnr_col {
    flex-direction: column;
    gap: 20px;
  }
  .com_bnr_col li {
    width: 100%;
  }
  .com_bnr_col a {
    display: block;
  }
  .com_bnr_col a:hover {
    opacity: 1;
  }
}
/* filter-container
----------------------------------------------- */
.filter-container {
  position: relative;
  z-index: 1;
}

.filter_tag {
  padding: 0 20px;
  border-bottom: 2px #e61324 solid;
  position: relative;
  z-index: 1;
}

.filter_tag .tag_inner {
  max-width: 1200px;
  margin: 0 auto;
  gap: 3px;
  display: flex;
  align-items: stretch;
}

.filter_tag .tag_inner .tag_item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  padding: 5px 10px 2px;
  letter-spacing: 0.02em;
  -webkit-border-radius: 10px 10px 0 0;
  -moz-border-radius: 10px 10px 0 0;
  -ms-border-radius: 10px 10px 0 0;
  -o-border-radius: 10px 10px 0 0;
  border-radius: 10px 10px 0 0;
  height: 55px;
  background: #b0b3bf;
  transition: all 0.3s !important;
  -moz-transition: all 0.3s !important;
  /* Firefox */
  -webkit-transition: all 0.3s !important;
}
.filter_tag .tag_inner .tag_item.link {
  padding: 0;
}
.filter_tag .tag_inner .tag_item a {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%;
  padding: 5px 10px 2px;
  color: #fff;
}

.filter_tag .tag_inner .tag_item:hover {
  opacity: 0.7;
}

.filter_tag .tag_inner .tag_item.is-active {
  background: #e61324;
  text-decoration: underline;
}

.filter_tag .tag_inner .tag_item.is-active:hover {
  opacity: 1;
}

@media (max-width: 767px) {
  .filter_tag .tag_inner {
    gap: 2px;
  }
  .filter_tag .tag_inner .tag_item {
    font-size: min(13px, 3.47vw);
    line-height: 1.35;
    padding: 6px 5px 2px;
    letter-spacing: 0.02em;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    -ms-border-radius: 5px 5px 0 0;
    -o-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
    height: 50px;
  }
  .filter_tag .tag_inner .tag_item:hover {
    opacity: 1;
  }
}
.filter_category {
  position: relative;
}

.filter_category .category_item {
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.filter_category .category_item.is-show {
  opacity: 1;
  height: auto;
  overflow: visible;
}

/* animate
----------------------------------------------- */
@keyframes fadeInLeftLit {
  from {
    opacity: 0;
    transform: translate3d(-50px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeftLit {
  animation-name: fadeInLeftLit;
}

@keyframes fadeInRightLit {
  from {
    opacity: 0;
    transform: translate3d(50px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRightLit {
  animation-name: fadeInRightLit;
}

@keyframes fadeInUpLit {
  from {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUpLit {
  animation-name: fadeInUpLit;
}

/* teaser
----------------------------------------------- */
.teaser {
  overflow: hidden;
  position: relative;
}

.teaser:before {
  position: absolute;
  content: "";
  background-image: url("../img/common/bg_teaser.png");
  background-position: right bottom;
  background-repeat: no-repeat;
  width: 720px;
  height: 638px;
  right: -25px;
  bottom: 0;
  z-index: 0;
}

.teaser .teaser_inner {
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.teaser .teaser_hd {
  display: flex;
  flex-direction: column;
}

.teaser .teaser_hd .hd_jps {
  font-size: 58px;
  font-weight: 700;
  color: #e61324;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.teaser .teaser_hd .hd_eng {
  font-family: "Outfit", sans-serif;
  color: #1c1818;
  font-weight: 500;
  font-size: 22px;
}

.teaser .teaser_txt {
  font-size: 16px;
  margin: 30px 0 0;
}

@media (max-width: 1024px) {
  .teaser:before {
    background-size: 360px 319px;
    width: 360px;
    height: 319px;
    bottom: calc(100% - 190px);
  }
}
@media (max-width: 767px) {
  .teaser:before {
    background-size: 196px 174px;
    width: 196px;
    height: 174px;
    right: -15px;
    bottom: calc(100% - 105px);
  }
  .teaser .teaser_hd .hd_jps {
    font-size: 29px;
    line-height: 1.3;
    letter-spacing: 0.02em;
  }
  .teaser .teaser_hd .hd_eng {
    font-size: 14px;
  }
  .teaser .teaser_txt {
    font-size: 14px;
    margin: 15px 0 0;
  }
}
.teaser_other {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 285px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.teaser_other .teaser_hd {
  font-size: 48px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

@media (max-width: 767px) {
  .teaser_other {
    height: 142px;
  }
  .teaser_other .teaser_hd {
    font-size: 24px;
  }
}
/* related_parties
----------------------------------------------- */
.related_teaser {
  padding: 70px 0 75px;
}

@media (max-width: 767px) {
  .related_teaser {
    padding: 40px 0;
  }
}
.related_filter .tag_item {
  width: 220px;
}

@media (max-width: 767px) {
  .related_filter .tag_item {
    width: calc((100% - 4px) / 3);
  }
}
/* info-compliance
----------------------------------------------- */
.compliance_block {
  padding: 80px 0 100px;
}

.compliance_block .inner {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.compliance_block .compliance_item .file-btn-link {
  display: inline-block;
  margin-left: 10px;
  padding: 0 10px;
  border-radius: 9999px;
  text-decoration: none;
  background-color: #32373c;
  color: #fff;
}
@media screen and (max-width: 767.99px) {
  .compliance_block .compliance_item .editor-styles-wrapper h3 {
    font-size: 16px;
  }
}

.compliance_block .harassment_bnr {
  margin: 65px 0 0;
}

@media (max-width: 767px) {
  .compliance_block {
    padding: 40px 0 50px;
  }
  .compliance_block .inner {
    gap: 40px;
  }
  .compliance_block .harassment_bnr {
    margin: 25px 0 0;
  }
}
.compliance_block .seminar_mv {
  max-width: 660px;
  margin: 60px auto 50px;
}

.compliance_block .seminar_txt {
  line-height: 1.75;
}

.compliance_block .seminar_txt a {
  text-decoration: underline;
}

.compliance_block .seminar_frame {
  padding: 45px 50px;
  margin: 60px 0 55px;
  background: url("../img/common/bg_lattice_bl.jpg") 0 0 repeat;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
}

.compliance_block .seminar_frame .frame_list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.compliance_block .seminar_frame .frame_list li {
  position: relative;
  padding: 0 0 0 20px;
  font-weight: 700;
}

.compliance_block .seminar_frame .frame_list li:before {
  position: absolute;
  content: "";
  background: #e61324;
  width: 12px;
  height: 12px;
  left: 0;
  top: 5px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  z-index: 0;
}

@media (max-width: 767px) {
  .compliance_block .seminar_mv {
    margin: 25px auto 20px;
  }
  .compliance_block .seminar_txt {
    line-height: 1.85;
  }
  .compliance_block .seminar_frame {
    padding: 30px 20px;
    margin: 30px 0;
    background: url("../img/common/bg_lattice_bl.jpg") 0 0 repeat;
    background-size: 6px 6px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
  }
  .compliance_block .seminar_frame .frame_list {
    gap: 7px;
  }
  .compliance_block .seminar_frame .frame_list li {
    padding: 0 0 0 18px;
    line-height: 1.85;
  }
  .compliance_block .seminar_frame .frame_list li:before {
    width: 8px;
    height: 8px;
    top: 7px;
  }
}
.compliance_block .poster_box {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 45px 60px;
}

.compliance_block .poster_box li {
  width: calc((100% - 60px) / 2);
}

.compliance_block .poster_box .section_hds {
  margin: 0 0 40px;
}

.compliance_block .poster_img {
  text-align: center;
  margin: 0 0 40px;
}

.compliance_block .poster_img img {
  height: 403px;
  object-fit: cover;
}

.compliance_block .poster_btn {
  display: flex;
  justify-content: center;
  margin: 0 0 25px;
}

.compliance_block .poster_btn a {
  width: 310px;
  max-width: 100%;
  height: 70px;
  border: 2px #1c1818 solid;
  background-color: #1c1818;
  background-image: url("../img/common/download_wh.png");
  background-size: 20px 18px;
  background-position: 30px center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.02em;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
}

.compliance_block .poster_btn a:hover {
  background-color: #fff;
  color: #1c1818;
  background-image: url("../img/common/download_bk.png");
}

.compliance_block .poster_pdf {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.compliance_block .poster_pdf:before {
  content: "";
  width: 32px;
  height: 32px;
  background-image: url("../img/common/ico_pdf_s.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.compliance_block .poster_pdf .pdf_txt {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

.compliance_block .poster_pdf .pdf_name {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.compliance_block .poster_pdf .pdf_size {
  font-size: 12px;
  letter-spacing: 0.02em;
}

.poster_bnr {
  margin: 150px 0 0;
}

@media (max-width: 767px) {
  .compliance_block .poster_box {
    flex-direction: column;
    gap: 40px 60px;
    margin: 30px 0 0;
  }
  .compliance_block .poster_box li {
    width: 100%;
  }
  .compliance_block .poster_box .section_hds {
    margin: 0 0 25px;
  }
  .compliance_block .poster_img {
    margin: 0 0 25px;
  }
  .compliance_block .poster_img img {
    height: 240px;
  }
  .compliance_block .poster_btn {
    margin: 0 0 15px;
  }
  .compliance_block .poster_btn a {
    width: 250px;
    height: 60px;
    background-image: url("../img/common/download_wh.png");
    background-size: 20px 18px;
    background-position: 23px center;
    padding: 0 45px;
    font-size: 14px;
    letter-spacing: 0.02em;
  }
  .compliance_block .poster_btn a:hover {
    background-color: #1c1818;
    color: #fff;
    background-image: url("../img/common/download_wh.png");
  }
  .compliance_block .poster_pdf {
    gap: 5px;
  }
  .compliance_block .poster_pdf:before {
    width: 25px;
    height: 25px;
  }
  .compliance_block .poster_pdf .pdf_txt {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
    font-weight: 600;
  }
  .compliance_block .poster_pdf .pdf_size {
    font-size: 11px;
  }
  .poster_bnr {
    margin: 70px 0 0;
  }
}
/* info-registration
----------------------------------------------- */
.registr_block {
  padding: 80px 0 130px;
}

.registr_block .inner {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.registr_block .registr_note {
  margin: 25px 0 0;
}

.registr_block .registr_note li {
  font-size: 14px;
  line-height: 1.57;
  text-indent: -1em;
  padding-left: 1em;
}

.registr_block .registr_bnr {
  margin: 50px 0 0;
}

.registr_block .registr_inner {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.registr_block .guide_txt {
  margin: 0 0 30px;
}

.registr_block .section_hds {
  margin: 0 0 45px;
}

.registr_block .system_txt {
  margin: 0 0 45px;
}

.registr_block .registr_sub {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.registr_block .registr_sub .section_hdmini {
  margin: 0 0 20px;
}

.registr_block .registr_sub .com_txt {
  margin: 0 0 20px;
}

.registr_block .registr_sub .sub_pdf {
  margin: 30px 0 20px;
}

@media (max-width: 767px) {
  .registr_block {
    padding: 40px 0 65px;
  }
  .registr_block .inner {
    gap: 55px;
  }
  .registr_block .registr_note li {
    font-size: 12px;
    line-height: 2;
  }
  .registr_block .registr_bnr {
    margin: 30px 0 0;
  }
  .registr_block .registr_bnr img {
    width: 500px;
  }
  .registr_block .registr_inner {
    gap: 40px;
  }
  .registr_block .guide_txt {
    margin: 0 0 25px;
  }
  .registr_block .section_hds {
    margin: 0 0 25px;
  }
  .registr_block .system_txt {
    margin: 0 0 25px;
  }
  .registr_block .registr_sub {
    gap: 25px;
  }
  .registr_block .registr_sub .com_txt {
    margin: 0 0 15px;
  }
  .registr_block .registr_sub .sub_pdf {
    margin: 7px 0;
  }
}
/* compliance-contact
----------------------------------------------- */
.compcta_teaser {
  padding: 60px 0 10px;
  margin: 0 0 50px;
}

@media (max-width: 767px) {
  .compcta_teaser {
    padding: 40px 0;
    margin: 0;
  }
}
.compcta_block {
  border-top: 2px #e61324 solid;
  padding: 60px 0 100px;
}

.compcta_block .inner {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.compcta_block .scope_sub {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.compcta_block .consultation {
  background: #f3f6f9;
  margin: 50px 0 0;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
}

.compcta_block .consultation .consu_tit {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  padding: 37px 65px 33px 40px;
  cursor: pointer;
  position: relative;
}

.compcta_block .consultation .consu_tit:before,
.compcta_block .consultation .consu_tit:after {
  position: absolute;
  content: "";
  background: #000;
  top: 50%;
  transform: translateY(-50%);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  transition: all 0.3s !important;
  -moz-transition: all 0.3s !important;
  /* Firefox */
  -webkit-transition: all 0.3s !important;
  /* Chrome&Safari */
  z-index: 0;
}

.compcta_block .consultation .consu_tit:before {
  width: 30px;
  height: 4px;
  right: 35px;
}

.compcta_block .consultation .consu_tit:after {
  width: 4px;
  height: 30px;
  right: 48px;
}

.compcta_block .consultation .consu_tit.on:after {
  transform: translateY(-50%) rotate(90deg);
}

.compcta_block .consultation .consu_box {
  display: none;
  padding: 40px 35px 75px 45px;
}

.compcta_block .consultation .consu_det {
  font-size: 20px;
  font-weight: 700;
  margin: 50px 0 25px;
}

.compcta_block .consultation .consu_list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 700;
  margin: 25px 0 20px;
}

.compcta_block .consultation .consu_list li {
  display: flex;
  align-items: flex-start;
}

.compcta_block .consultation .consu_list .num {
  font-family: "Outfit", sans-serif;
  flex-shrink: 0;
  width: 20px;
}

.compcta_block .consultation .consu_note {
  margin: 30px 0 0;
  line-height: 1.75;
  text-indent: -1em;
  padding-left: 1em;
}

.compcta_block .consultation .consu_table {
  width: 100%;
  border-top: 1px #dbe0e7 solid;
  border-right: 1px #dbe0e7 solid;
  margin: 60px 0 0;
}

.compcta_block .consultation .consu_table th,
.compcta_block .consultation .consu_table td {
  vertical-align: middle;
  font-weight: 700;
  line-height: 1.56;
  padding: 15px 30px;
  border-bottom: 1px #dbe0e7 solid;
}

.compcta_block .consultation .consu_table th {
  width: 22%;
  text-align: center;
  background: #eaedf1;
}

.compcta_block .consultation .consu_table td {
  width: 78%;
  background: #fff;
  border-right: 1px #dbe0e7 solid;
}

@media (max-width: 767px) {
  .compcta_block {
    padding: 40px 0 50px;
  }
  .compcta_block .inner {
    gap: 40px;
  }
  .compcta_block .scope_sub {
    gap: 30px;
  }
  .compcta_block .consultation {
    margin: 30px 0 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
  }
  .compcta_block .consultation .consu_tit {
    font-size: 18px;
    padding: 20px 40px 17px 20px;
    cursor: pointer;
    position: relative;
  }
  .compcta_block .consultation .consu_tit:before {
    width: 18px;
    height: 2px;
    right: 20px;
  }
  .compcta_block .consultation .consu_tit:after {
    width: 2px;
    height: 18px;
    right: 28px;
  }
  .compcta_block .consultation .consu_box {
    padding: 20px 20px 40px;
  }
  .compcta_block .consultation .consu_det {
    font-size: 16px;
    margin: 20px 0 15px;
  }
  .compcta_block .consultation .consu_list {
    gap: 5px;
    margin: 15px 0;
  }
  .compcta_block .consultation .consu_note {
    margin: 20px 0 0;
  }
  .compcta_block .consultation .consu_table {
    margin: 30px 0 0;
    border: 1px #dbe0e7 solid;
  }
  .compcta_block .consultation .consu_table th,
  .compcta_block .consultation .consu_table td {
    padding: 15px 10px;
    display: block;
    border: none;
  }
  .compcta_block .consultation .consu_table th {
    width: auto;
    text-align: center;
    background: #eaedf1;
  }
  .compcta_block .consultation .consu_table td {
    width: auto;
  }
}
/* form
----------------------------------------------- */
.form_block {
  background: #f9f4f4;
  border-top: 2px #e61324 solid;
  padding: 80px 20px 100px;
}
.form_block:has(.snow-monkey-form[data-screen=complete]) .input-only {
  display: none;
}
.form_block:has(.snow-monkey-form[data-screen=complete]) .smf-focus-point {
  position: absolute;
  top: 0;
}
.form_block .snow-monkey-form[data-screen=complete] .complete-title {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}
.form_block .snow-monkey-form[data-screen=complete] .complete-text {
  margin-top: 40px;
  line-height: 2;
  text-align: center;
}

.form_block .form_box {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  padding: 60px 40px 80px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
}

.form_block .form_box .form_inner {
  max-width: 860px;
  margin: 0 auto;
}

.form_note {
  line-height: 1;
  margin: 0 0 20px;
}

.smf-form .smf-item.check {
  margin: 0 0 40px;
  text-align: center;
}
.smf-form .smf-item.check .smf-item__col--label {
  display: none;
}
.smf-form .smf-item.check .smf-item__col--controls {
  width: 100% !important;
}
.smf-form .smf-item.check_btm {
  margin: 70px 0 0;
}
.smf-form .smf-item.check_btm .smf-label .smf-checkbox-control .smf-checkbox-control__label {
  font-size: 16px;
}
.smf-form .smf-item.check .smf-label {
  display: flex;
  justify-content: center;
}
.smf-form .smf-item.check .smf-checkbox-control {
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
}
.smf-form .smf-item.check .smf-checkbox-control input[type=checkbox] {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: #efefef;
  border: 1px #bfbfbf solid;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  position: relative;
}
.smf-form .smf-item.check .smf-checkbox-control input[type=checkbox]:checked:before {
  position: absolute;
  content: "";
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url("../img/common/check.png");
  background-size: 24px 24px;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 0;
}
.smf-form .smf-item.check .smf-checkbox-control__label {
  padding: 3px 0 0;
  display: block;
  position: relative;
}
.smf-form .smf-item.check .smf-checkbox-control__label:after {
  content: "*";
  color: #e61324;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  z-index: 0;
}
.smf-form .smf-placeholder[data-name=agree] .smf-checkbox-control__label a {
  text-decoration: underline;
}

.smf-form + .smf-form,
.smf-form .smf-item.join {
  border-top: 1px #e0e1e4 solid;
  margin: 40px 0 0;
  padding: 40px 0 0;
}

.smf-form .smf-item.smf-lar-gap {
  margin: 0 0 40px;
}

.smf-form .smf-item.smf-mid-gap {
  margin: 0 0 30px;
}

.smf-form .smf-item {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
}

.smf-form .smf-item .smf-item__col--label {
  display: flex;
  align-items: flex-start;
  font-weight: 700;
  width: 31.5%;
  gap: 5px;
  padding-right: 5px;
  position: relative;
}

.smf-form .smf-item.must .smf-item__col--label:after {
  content: "*";
  color: #e61324;
  flex-shrink: 0;
}

.smf-form .smf-item .smf-item__label__text span {
  display: block;
  font-size: 12px;
  line-height: 1;
}

.smf-form .smf-item .smf-item__col--controls {
  width: 68.5%;
}

.smf-form input[type=text],
.smf-form input[type=email],
.smf-form input[type=tel] {
  border: 1px #bfbfbf solid;
  background: #efefef;
  width: 100%;
  height: 70px;
  padding: 10px 20px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  font-weight: 500;
  font-family: "IBM Plex Sans JP", sans-serif;
}

.smf-form input::placeholder {
  color: #b9b9b9;
  font-weight: 500;
  font-family: "IBM Plex Sans JP", sans-serif;
}

.smf-form textarea {
  border: 1px #bfbfbf solid;
  background: #efefef;
  width: 100%;
  height: 140px;
  padding: 10px 20px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  font-weight: 500;
  font-family: "IBM Plex Sans JP", sans-serif;
}

.smf-form .smf-radio-buttons-control__control {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.smf-form .smf-radio-button-control {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.smf-form .smf-radio-button-control input {
  border: 1px #bfbfbf solid;
  width: 30px;
  height: 30px;
  background: #efefef;
  flex-shrink: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  position: relative;
}

.smf-form .smf-radio-button-control input:checked:before {
  position: absolute;
  content: "";
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url("../img/common/check.png");
  background-size: 24px 24px;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 0;
}

.smf-form .smf-select-control select {
  outline: none;
  background-color: #efefef;
  background-image: url("../img/common/bg_select.png");
  background-position: right center;
  background-repeat: no-repeat;
  width: 100%;
  height: 50px;
  padding: 0 60px 0 20px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  font-family: "IBM Plex Sans JP", sans-serif;
  border: 1px #bfbfbf solid;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  overflow: hidden;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
}

.smf-form .smf-evidence-cont .smf-button-control {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
  margin: 15px 0 0;
}

.smf-form .smf-item.files .smf-item__controls .smf-placeholder:not(:nth-of-type(1)) {
  margin-top: 10px;
}
.smf-form .smf-item.files .smf-item__controls .smf-placeholder .smf-file-control label {
  flex-grow: 1;
}

.smf-form .smf-file-control__label {
  cursor: pointer !important;
  display: flex !important;
  align-items: center;
  max-width: 210px !important;
  width: 100% !important;
  height: 45px !important;
  border: 1px #bfbfbf solid !important;
  background: #efefef !important;
  color: #8c8c8c !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  text-align: left !important;
  padding: 0 30px 0 20px !important;
  font-family: "IBM Plex Sans JP", sans-serif !important;
  -webkit-border-radius: 6px !important;
  -moz-border-radius: 6px !important;
  -ms-border-radius: 6px !important;
  -o-border-radius: 6px !important;
  border-radius: 6px !important;
  position: relative !important;
}

.smf-form .smf-file-control__label:before {
  position: absolute;
  content: "+";
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #000;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  font-family: "IBM Plex Sans JP", sans-serif;
  z-index: 0;
}

.smf-form .smf-radio-box {
  align-items: stretch;
}

.smf-form .smf-radio-box .smf-item__col--label {
  padding-bottom: 3px;
  padding-top: 3px;
}

.smf-form .smf-sex .smf-radio-buttons-control__control {
  gap: 10px 60px;
}

.smf-form .smf-relation .smf-radio-buttons-control__control {
  gap: 10px 60px;
}

.smf-form .smf-victim .smf-radio-buttons-control__control {
  gap: 10px 50px;
}

.smf-form .smf-position .smf-radio-buttons-control__control {
  gap: 10px 60px;
}

.smf-form .smf-evidence .smf-radio-buttons-control__control {
  gap: 10px 50px;
}

.smf-form .smf-evidence-cont .smf-select-control {
  width: 51%;
}

.smf-form .smf-specific {
  align-items: stretch;
}

.smf-form .smf-specific .smf-item__col--label {
  padding-top: 25px;
}

.smf-action button {
  width: 370px;
  height: 90px;
  margin: 50px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: #1c1818;
  border: 2px #1c1818 solid;
  cursor: pointer;
  font-size: 18px;
  letter-spacing: 0.02em;
  font-weight: 500;
  font-family: "IBM Plex Sans JP", sans-serif;
  transition: all 0.3s !important;
  -moz-transition: all 0.3s !important;
  -webkit-transition: all 0.3s !important;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  -ms-border-radius: 60px;
  -o-border-radius: 60px;
  border-radius: 60px;
}

.smf-action button:hover {
  background: #fff;
  color: #1c1818;
}

.smf-system-error-content-ready {
  display: none;
}

.smf-error-messages {
  margin-top: 5px;
  color: #ff0000;
}

@media (max-width: 767px) {
  .form_block {
    padding: 25px 20px 50px;
  }
  .form_block .form_box {
    padding: 30px 20px 30px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
  }
  .smf-form .smf-item.check {
    margin: 0 0 20px;
  }
  .smf-form .smf-item.check .smf-label {
    display: flex;
    justify-content: center;
  }
  .smf-form .smf-item.check .smf-checkbox-control {
    font-size: 12px;
    gap: 7px;
  }
  .smf-form .smf-item.check .smf-checkbox-control input[type=checkbox] {
    width: 20px;
    height: 20px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
  }
  .smf-form .smf-item.check .smf-checkbox-control input[type=checkbox]:checked:before {
    background-size: 14px 14px;
  }
  .smf-form .smf-item.check .smf-checkbox-control__label {
    padding: 2px 0 0;
  }
  .smf-form .smf-item.check .smf-checkbox-control__label:after {
    font-size: 14px;
  }
  .smf-form + .smf-form {
    margin: 30px 0 0;
    padding: 30px 0 0;
  }
  .smf-form .smf-item.smf-lar-gap {
    margin: 0 0 25px;
  }
  .smf-form .smf-item.smf-mid-gap {
    margin: 0 0 25px;
  }
  .smf-form .smf-item {
    margin: 0 0 25px;
    flex-direction: column;
    font-size: 13px;
  }
  .smf-form .smf-item .smf-item__col--label {
    width: 100%;
    gap: 3px;
    padding-right: 0;
    margin: 0 0 8px;
  }
  .smf-form .smf-item .smf-item__label__text span {
    font-size: 10px;
  }
  .smf-form .smf-item .smf-item__col--controls {
    width: 100%;
  }
  .smf-form input[type=text],
  .smf-form input[type=email],
  .smf-form input[type=tel] {
    height: 50px;
    padding: 10px 15px;
  }
  .smf-form textarea {
    height: 150px;
    padding: 10px 15px;
  }
  .smf-form .smf-radio-buttons-control__control {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 30px;
  }
  .smf-form .smf-radio-button-control {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
  }
  .smf-form .smf-radio-button-control input {
    width: 20px;
    height: 20px;
  }
  .smf-form .smf-radio-button-control input:checked:before {
    background-size: 14px 14px;
  }
  .smf-form .smf-select-control select {
    padding: 0 60px 0 20px;
    font-size: 13px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
  }
  .smf-form .smf-radio-box .smf-item__col--label {
    padding-bottom: 0;
    padding-top: 0;
  }
  .smf-form .smf-sex .smf-radio-buttons-control__control {
    gap: 10px 30px;
  }
  .smf-form .smf-relation .smf-radio-buttons-control__control {
    gap: 10px 30px;
  }
  .smf-form .smf-victim .smf-radio-buttons-control__control {
    gap: 10px 30px;
  }
  .smf-form .smf-position .smf-radio-buttons-control__control {
    gap: 10px 30px;
  }
  .smf-form .smf-evidence .smf-radio-buttons-control__control {
    gap: 10px 30px;
  }
  .smf-form .smf-evidence-cont .smf-select-control {
    width: 100%;
  }
  .smf-form .smf-specific .smf-item__col--label {
    padding-top: 0;
  }
  .smf-action button {
    width: 250px;
    height: 60px;
    margin: 25px auto 0;
    font-size: 14px;
  }
  .smf-action button:hover {
    background: #1c1818;
    color: #fff;
  }
}
/* trial detail
----------------------------------------------- */
.trial_detail_block {
  background: #f9f4f4;
  overflow: hidden;
  padding: 60px 0 0;
  position: relative;
}

.trial_detail_block .decorate_up {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.trial_detail_block .decorate_up img {
  width: 100%;
}

.trial_detail_block .decorate_down img {
  height: 940px;
}

.trial_detail_block .detail_introduce {
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.trial_detail_block .detail_box {
  background: #fff;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
}

.trial_detail_block .detail_inner {
  max-width: 1000px;
  margin: 0 auto;
}

.trial_detail_block .detail_intro {
  display: flex;
  align-items: flex-start;
  gap: 0 8%;
  margin: 0 0 45px;
}

.trial_detail_block .detail_intro .intro_img {
  width: 30%;
  position: relative;
  background-color: transparent;
}
.trial_detail_block .detail_intro .intro_img::before {
  content: "";
  display: block;
  padding-top: 133.3333333333%;
}
.trial_detail_block .detail_intro .intro_img img,
.trial_detail_block .detail_intro .intro_img iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trial_detail_block .detail_intro .intro_cont {
  width: 62%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
}
.trial_detail_block .detail_intro .intro_cont .category-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 5px 10px;
}

.trial_detail_block .detail_intro .intro_type {
  min-width: 120px;
  height: 30px;
  padding: 1px 5px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}

.trial_detail_block .detail_intro .intro_name {
  font-size: 36px;
  color: #1c1818;
  font-weight: 700;
  line-height: 1.12;
}

.trial_detail_block .detail_intro .intro_message {
  border-top: 1px #dbe0e7 solid;
  width: 100%;
}

.trial_detail_block .detail_intro .intro_message th,
.trial_detail_block .detail_intro .intro_message td {
  border-bottom: 1px #dbe0e7 solid;
  line-height: 2;
  vertical-align: top;
  padding-bottom: 13px;
  padding-top: 17px;
  font-weight: 500;
}

.trial_detail_block .detail_intro .intro_message th {
  width: 23%;
  padding-left: 4.8%;
  padding-right: 4.8%;
}

.trial_detail_block .detail_txt {
  line-height: 2;
  margin: 0 0 70px;
}

.trial_detail_block .detail_history {
  margin: 50px 0 80px;
  width: 100%;
  border-top: 1px #dbe0e7 solid;
  border-left: 1px #dbe0e7 solid;
}

.trial_detail_block .detail_history th,
.trial_detail_block .detail_history td {
  border-right: 1px #dbe0e7 solid;
  border-bottom: 1px #dbe0e7 solid;
  vertical-align: middle;
  line-height: 1.75;
  padding: 15px 4%;
  text-align: center;
}

.trial_detail_block .detail_history th {
  font-weight: 700;
  width: 28%;
  background: #eaedf1;
}

.trial_detail_block .detail_history th:not(:last-child) {
  width: 72%;
}

.trial_detail_block .detail_history td:not(:last-child) {
  text-align: left;
}

@media (max-width: 767px) {
  .trial_detail_block {
    padding: 30px 0 0;
  }
  .trial_detail_block .decorate_up {
    top: 45px;
  }
  .trial_detail_block .decorate_down img {
    height: 550px;
  }
  .trial_detail_block .detail_box {
    padding: 30px 20px 40px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
  }
  .trial_detail_block .detail_intro {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 0 0 25px;
  }
  .trial_detail_block .detail_intro .intro_img {
    width: 175px;
  }
  .trial_detail_block .detail_intro .intro_cont {
    width: 100%;
    align-items: center;
    gap: 15px;
  }
  .trial_detail_block .detail_intro .intro_type {
    min-width: 100px;
    height: 25px;
    font-size: 12px;
  }
  .trial_detail_block .detail_intro .intro_name {
    font-size: 20px;
  }
  .trial_detail_block .detail_intro .intro_message th,
  .trial_detail_block .detail_intro .intro_message td {
    line-height: 1.85;
    padding-bottom: 11px;
    padding-top: 14px;
  }
  .trial_detail_block .detail_intro .intro_message th {
    width: 28%;
    padding-left: 13px;
    padding-right: 13px;
  }
  .trial_detail_block .detail_txt {
    line-height: 1.85;
    margin: 0 0 35px;
  }
  .trial_detail_block .detail_history {
    margin: 20px 0 40px;
  }
  .trial_detail_block .detail_history th,
  .trial_detail_block .detail_history td {
    padding: 15px 12px;
  }
  .trial_detail_block .detail_history th {
    width: 22%;
  }
  .trial_detail_block .detail_history th:not(:last-child) {
    width: 78%;
  }
}
.trial_detail_block .detail_other {
  margin: 80px 0 0;
  padding: 0 20px 40px;
  position: relative;
}

.trial_detail_block .detail_other:before {
  position: absolute;
  content: "";
  background-image: url("../img/common/wave_btm.png");
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: calc(100% + 250px);
  left: 0;
  bottom: 0;
  z-index: 0;
}

.trial_detail_block .detail_other .detail_other_box {
  max-width: 1340px;
  margin: 0 auto;
  background-image: url("../img/common/bg_lattice_wh.png");
  background-position: 0 0;
  background-repeat: repeat;
  padding: 80px 20px;
  position: relative;
  z-index: 1;
}

.trial_detail_block .detail_other .other_mess {
  margin: 0 0 40px;
}

.trial_detail_block .detail_other .slider_navi {
  display: none;
}

.trial_detail_block .other_slider {
  display: flex;
  gap: 29px;
}

.trial_detail_block .other_slider .slider_item {
  width: calc((100% - 88px) / 4);
}

.trial_detail_block .player_item {
  display: block;
  position: relative;
}

.trial_detail_block .player_item:hover {
  opacity: 0.7;
}

.trial_detail_block .player_item .player_img {
  position: relative;
  background-color: transparent;
}
.trial_detail_block .player_item .player_img::before {
  content: "";
  display: block;
  padding-top: 133.0935251799%;
}
.trial_detail_block .player_item .player_img img,
.trial_detail_block .player_item .player_img iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trial_detail_block .other_slider_sp {
  display: none;
}

@media (max-width: 1024px) {
  .trial_detail_block .other_slider {
    flex-wrap: wrap;
  }
  .trial_detail_block .other_slider .slider_item {
    width: calc((100% - 29px) / 2);
  }
  .trial_detail_block .player_item .player_type .type_in {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .trial_detail_block .detail_other {
    margin: 30px 0 0;
    padding: 0 10px 40px;
  }
  .trial_detail_block .detail_other:before {
    background-image: url("../img/common/wave_btm_sp.png");
    height: calc(100% + 85px);
  }
  .trial_detail_block .detail_other .detail_other_box {
    max-width: none;
    background-size: 6px 6px;
    padding: 35px 0 40px;
  }
  .trial_detail_block .detail_other .other_mess {
    margin: 0 0 30px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 5px;
  }
  .trial_detail_block .detail_other .other_mess .section_hdl .hdl_jps {
    font-size: 20px;
    letter-spacing: -0.02em;
  }
  .trial_detail_block .detail_other .slider_navi {
    display: flex;
  }
  .trial_detail_block .other_slider {
    display: none;
  }
  .trial_detail_block .other_slider_sp {
    display: block;
  }
  .trial_detail_block .other_slider_sp .slick-slide {
    margin: 0 2.66vw;
  }
  .trial_detail_block .other_slider_sp .slick-list {
    overflow: visible;
  }
  .trial_detail_block .player_item:hover {
    opacity: 1;
  }
}
/* coach
----------------------------------------------- */
.coach_teaser {
  background-image: url("../img/coach/bg_teaser.jpg");
}

@media (max-width: 767px) {
  .coach_teaser {
    background-image: url("../img/coach/bg_teaser_sp.jpg");
  }
}
.coach .coach_future {
  position: relative;
  overflow: hidden;
  padding: 50px 0 80px;
}

.coach .coach_future:before {
  position: absolute;
  content: "";
  background-image: url("../img/coach/dec_future.png");
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: cover;
  width: 470px;
  height: 264px;
  top: 0;
  right: 0;
  z-index: 0;
}

.coach .coach_future .inner {
  position: relative;
  z-index: 1;
}

.coach .coach_future .future_hd {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 65px;
}

.coach .coach_future .future_box {
  display: flex;
  align-items: center;
  margin: 0 0 60px;
}

.coach .coach_future .future_img {
  width: 50%;
  align-self: flex-start;
}

.coach .coach_future .future_cont {
  width: 50%;
  padding: 0 0 0 5%;
}

.coach .coach_future .future_tit {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.45;
  margin: 0 0 35px;
}

.coach .coach_future .future_txt {
  line-height: 2.125;
}

.coach .coach_anchor {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 10px 5%;
  max-width: 1000px;
  margin: 0 auto;
}

.coach .coach_anchor li {
  width: 30%;
}

.coach .coach_anchor li a {
  display: flex;
  font-size: 16px;
  line-height: 1.2;
  padding: 17px 30px 13px 0;
  font-weight: 700;
  letter-spacing: 0.02em;
  height: 100%;
  align-items: center;
  border-bottom: 2px #b0b3bf solid;
  position: relative;
}

.coach .coach_anchor li a:hover {
  color: #e50012;
}

.coach .coach_anchor .arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  width: 16px;
  height: 16px;
  display: block;
  overflow: hidden;
}

.coach .coach_anchor .arrow:before,
.coach .coach_anchor .arrow:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 15px 15px;
  animation-fill-mode: forwards;
  animation-duration: 0.6s;
  z-index: 0;
}

.coach .coach_anchor .arrow:before {
  background-image: url("../img/common/arrow_right_rd.png");
}

.coach .coach_anchor .arrow:after {
  transform: translateX(-100%);
  background-image: url("../img/common/arrow_right_rd.png");
}

.coach .coach_anchor a:hover .arrow:before {
  animation-name: transformRightLeft;
  animation-delay: 0s;
}

.coach .coach_anchor a:hover .arrow:after {
  animation-name: transformLeftRight;
  animation-delay: 0.2s;
}

@media (max-width: 1024px) {
  .coach .coach_future .future_tit {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .coach .coach_future {
    padding: 30px 0 40px;
  }
  .coach .coach_future:before {
    background-image: url("../img/coach/dec_future_sp.png");
    width: 99px;
    height: 78px;
    top: -10px;
  }
  .coach .coach_future .future_hd {
    font-size: 16px;
    line-height: 1.68;
    margin: 0 0 25px;
  }
  .coach .coach_future .future_box {
    flex-direction: column;
    margin: 0 0 20px;
    gap: 25px;
  }
  .coach .coach_future .future_img {
    width: 250px;
    align-self: center;
  }
  .coach .coach_future .future_cont {
    width: 100%;
    padding: 0;
  }
  .coach .coach_future .future_tit {
    font-size: 20px;
    line-height: 1.5;
    margin: 0 0 20px;
  }
  .coach .coach_future .future_txt {
    line-height: 1.85;
  }
  .coach .coach_anchor {
    justify-content: center;
    gap: 15px 25px;
  }
  .coach .coach_anchor li {
    width: calc((100% - 25px) / 2);
  }
  .coach .coach_anchor li:last-child {
    width: 52%;
  }
  .coach .coach_anchor li a {
    font-size: min(13px, 3.47vw);
    padding: 13px 20px 11px 0;
    letter-spacing: 0.02em;
    border-bottom: 1px #b0b3bf solid;
  }
  .coach .coach_anchor li a:hover {
    color: #000;
  }
  .coach .coach_anchor .arrow {
    width: 14px;
    height: 14px;
    right: 0;
  }
  .coach .coach_anchor .arrow:before,
  .coach .coach_anchor .arrow:after {
    background-size: 14px 14px;
  }
  .coach .coach_anchor a:hover .arrow:before {
    animation-name: none;
  }
  .coach .coach_anchor a:hover .arrow:after {
    display: none;
  }
}
.coach .coach_content {
  background: #f8f8f8;
  padding: 80px 20px;
}

.coach .coach_content .content_box {
  background: #fff;
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 40px 100px;
}

.coach .coach_content .content_inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.coach .coach_content .content_item {
  position: relative;
}

.coach .coach_content .content_sub {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.coach .coach_content .content_qual {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.coach .coach_content .content_qual .course_item .section_hdmini {
  margin: 0 0 8px;
}

.coach .coach_content .content_qual .course_lar {
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .coach .coach_content {
    padding: 30px 20px;
  }
  .coach .coach_content .content_box {
    padding: 40px 20px;
  }
  .coach .coach_content .content_inner {
    gap: 50px;
  }
  .coach .coach_content .content_sub {
    gap: 40px;
    margin: 25px 0 0;
  }
  .coach .coach_content .content_qual {
    gap: 20px;
  }
  .coach .coach_content .content_qual .course_lar {
    font-size: 13px;
  }
}
.coach .coach_faq {
  background: #fff;
  padding: 80px 0 0;
  position: relative;
}

.coach .coach_faq .section_hdl {
  margin: 0 0 40px;
}

.coach .coach_faq .faq_filter .tag_item {
  width: 100%;
}

.coach .coach_faq .faq_block {
  background-image: url("../img/common/bg_lattice_yl.jpg");
  background-position: 0 0;
  background-repeat: repeat;
  padding: 50px 20px 80px;
}

.coach .coach_faq .faq_frame {
  background: #fff;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 40px 80px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
}

.coach .coach_faq .faq_inner {
  max-width: 1000px;
  margin: 0 auto;
}

.coach .coach_faq .faq_item .faq_q {
  border-bottom: 1px #cbcccf solid;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px 60px 30px 0;
  cursor: pointer;
  position: relative;
}

.coach .coach_faq .faq_item .faq_q:before,
.coach .coach_faq .faq_item .faq_q:after {
  position: absolute;
  content: "";
  background: #1c1818;
  transition: all 0.3s !important;
  -moz-transition: all 0.3s !important;
  /* Firefox */
  -webkit-transition: all 0.3s !important;
  /* Chrome&Safari */
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  z-index: 0;
}

.coach .coach_faq .faq_item .faq_q:before {
  width: 30px;
  height: 4px;
  right: 20px;
  top: 53px;
}

.coach .coach_faq .faq_item .faq_q:after {
  width: 4px;
  height: 30px;
  right: 33px;
  top: 40px;
}

.coach .coach_faq .faq_item .faq_q.on:after {
  transform: rotate(90deg);
}

.coach .coach_faq .faq_item .faq_q.on {
  border: none;
}

.coach .coach_faq .faq_item .faq_q .q_ico {
  flex-shrink: 0;
  align-self: flex-start;
  background: #e50012;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 28px;
  color: #fff;
  line-height: 1;
  font-family: "Outfit", sans-serif;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}

.coach .coach_faq .faq_item .faq_q .q_txt {
  font-size: 22px;
  font-weight: 700;
  padding: 5px 0 0;
}

.coach .coach_faq .faq_item .faq_a {
  display: none;
  background: #f8f8f8;
  padding: 30px 40px;
}

.coach .coach_faq .faq_item .faq_a .a_txt {
  line-height: 2.125;
}

@media (max-width: 767px) {
  .coach .coach_faq {
    padding: 40px 0 0;
  }
  .coach .coach_faq .section_hdl {
    margin: 0 0 20px;
  }
  .coach .coach_faq .faq_block {
    background-size: 6px 6px;
    padding: 30px 20px;
  }
  .coach .coach_faq .faq_frame {
    padding: 10px 20px 35px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
  }
  .coach .coach_faq .faq_item .faq_q {
    gap: 15px;
    padding: 20px 40px 20px 0;
  }
  .coach .coach_faq .faq_item .faq_q:before {
    width: 16px;
    height: 2px;
    right: 0;
    top: 32px;
  }
  .coach .coach_faq .faq_item .faq_q:after {
    width: 2px;
    height: 16px;
    right: 7px;
    top: 25px;
  }
  .coach .coach_faq .faq_item .faq_q .q_ico {
    width: 25px;
    height: 25px;
    font-size: 14px;
  }
  .coach .coach_faq .faq_item .faq_q .q_txt {
    font-size: 14px;
    line-height: 1.78;
    padding: 3px 0 0;
  }
  .coach .coach_faq .faq_item .faq_a {
    padding: 15px;
  }
  .coach .coach_faq .faq_item .faq_a .a_txt {
    line-height: 1.85;
  }
}
/* event
----------------------------------------------- */
.event_teaser {
  padding: 80px 0 70px;
}

@media (max-width: 767px) {
  .event_teaser {
    padding: 40px 0 20px;
  }
}
.event_filter .tag_item {
  width: 220px;
}

@media (max-width: 767px) {
  .event_filter .tag_item {
    width: calc((100% - 2px) / 2);
  }
}
.event_block {
  padding: 60px 0 120px;
}

.event_block .event_search {
  max-width: 1000px;
  margin: 0 auto 60px;
  background: #f6f8fa;
  padding: 35px 7% 40px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
}

.event_block .event_search .search_tit {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.36;
  margin: 0 0 25px;
}

.event_block .event_search .search_genre {
  display: flex;
  align-items: center;
  margin: 0 0 25px;
}

.event_block .event_search .search_genre .genre_tit,
.event_block .event_search .search_cate .cate_tit {
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  width: 135px;
}

.event_block .event_search .search_genre .genre_cont {
  width: 100%;
  display: flex;
  gap: 14px;
}

.event_block .event_search .search_genre .genre_cont .genre_item {
  width: calc((100% - 42px) / 4);
  height: 44px;
  padding: 3px 5px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  background: #b0b3bf;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
  transition: background 0.3s;
}

.event_block .event_search .search_genre .genre_cont .genre_item:has(input:checked) {
  background: #e61324;
}

.event_block .event_search .search_cate {
  display: flex;
  align-items: center;
  margin: 0 0 25px;
}

.event_block .event_search .search_cate .cate_cont {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px 40px;
}
.event_block .event_search .search_cate .cate_cont.hide .cate_item:not(:nth-of-type(-n+5)) {
  display: none;
}

.event_block .event_search .search_cate .cate_cont .cate_item {
  font-weight: 700;
  transition: color 0.3s;
}

.event_block .event_search .search_cate .cate_cont .cate_item:has(input:checked) {
  color: #e61324;
}

.event_block .event_search .search_more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .event_block .event_search .search_more:hover {
    cursor: pointer;
  }
}

.event_block .event_search .search_more .more_tit {
  font-weight: 700;
  text-indent: -1em;
  padding-left: 1em;
}

.event_block .event_search .search_btn {
  display: flex;
  align-items: stretch;
  gap: 20px;
  flex-shrink: 0;
}

.event_block .event_search .search_btn .btn_cont {
  width: 220px;
  height: 60px;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  padding: 3px 0 0;
  font-size: 16px;
  font-family: "IBM Plex Sans JP", sans-serif;
  line-height: 1.5;
  cursor: pointer;
  transition: all 0.3s !important;
  -moz-transition: all 0.3s !important;
  /* Firefox */
  -webkit-transition: all 0.3s !important;
  /* Chrome&Safari */
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  -ms-border-radius: 60px;
  -o-border-radius: 60px;
  border-radius: 60px;
}

.event_block .event_search .search_btn .btn_cont:hover {
  opacity: 0.7;
}

.event_block .event_search .search_btn .btn_clear {
  background: #b0b3bf;
}

.event_block .event_search .search_btn .btn_go {
  background: #e61324;
}

@media (max-width: 767px) {
  .event_block {
    padding: 20px 0 50px;
  }
  .event_block .event_search {
    padding: 20px;
    margin: 0 auto 30px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
  }
  .event_block .event_search .search_tit {
    font-size: 14px;
    margin: 0 0 15px;
  }
  .event_block .event_search .search_genre {
    margin: 0 0 15px;
    gap: 10px;
    align-items: flex-start;
  }
  .event_block .event_search .search_genre .genre_tit,
  .event_block .event_search .search_cate .cate_tit {
    font-size: 13px;
    width: auto;
  }
  .event_block .event_search .search_genre .genre_tit {
    line-height: 30px;
  }
  .event_block .event_search .search_genre .genre_cont {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .event_block .event_search .search_genre .genre_cont .genre_item {
    width: calc((100% - 10px) / 2);
    height: 30px;
    padding: 2px 2px 0;
    font-size: min(12px, 3.2vw);
    line-height: 1.2;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
  }
  .event_block .event_search .search_genre .genre_cont .genre_item:has(input:checked) {
    background: #b0b3bf;
  }
  .event_block .event_search .search_cate {
    align-items: flex-start;
    margin: 0 0 15px;
    gap: 20px;
  }
  .event_block .event_search .search_cate .cate_cont {
    justify-content: flex-start;
    gap: 5px 15px;
  }
  .event_block .event_search .search_cate .cate_cont .cate_item {
    font-size: min(13px, 3.47vw);
  }
  .event_block .event_search .search_cate .cate_cont .cate_item:has(input:checked) {
    color: #000;
  }
  .event_block .event_search .search_more {
    gap: 10px;
  }
  .event_block .event_search .search_more .more_tit {
    font-size: min(12px, 3.2vw);
    line-height: 1.5;
  }
  .event_block .event_search .search_btn {
    gap: 10px;
  }
  .event_block .event_search .search_btn .btn_cont {
    width: min(95px, 25.34vw);
    height: 40px;
    padding: 2px 0 0;
    font-size: min(13px, 3.47vw);
  }
  .event_block .event_search .search_btn .btn_cont:hover {
    opacity: 1;
  }
}
.event_block .event_list {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 30px;
}

.event_block .event_list li {
  width: calc((100% - 60px) / 3);
}

.pickup_item {
  background: #fff;
  display: block;
  height: 100%;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
  position: relative;
}

.pickup_item .item_inner {
  padding: 40px 35px 30px 40px;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 1250px) {
  .pickup_item .item_inner {
    padding: 20px;
  }
}

.pickup_item:after,
.pickup_item:before,
.pickup_item .item_inner:after,
.pickup_item .item_inner:before {
  background-color: #e61324;
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.pickup_item:after {
  width: 0px;
  height: 2px;
  top: 0;
  left: 0;
}

.pickup_item:before {
  width: 0px;
  height: 2px;
  right: 0;
  bottom: 0;
}

.pickup_item .item_inner:after {
  width: 2px;
  height: 0px;
  left: 0;
  bottom: 0;
}

.pickup_item .item_inner:before {
  width: 2px;
  height: 0px;
  top: 0;
  right: 0;
}

.pickup_item:hover:after,
.pickup_item:hover:before {
  width: 100%;
}

.pickup_item:hover .item_inner:after,
.pickup_item:hover .item_inner:before {
  height: 100%;
}

.pickup_item .item_tit {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0 0 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pickup_item .item_tit img {
  width: 60px;
  flex-shrink: 0;
}

.pickup_item .item_name {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 10px;
}
@media screen and (min-width: 768px) {
  .pickup_item .item_name {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    max-height: 3.9em;
  }
}

.pickup_item .item_txt {
  font-size: 14px;
  color: #1c1818;
  line-height: 1.57;
  margin: 0 0 10px;
}

.pickup_item .item_cate {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.pickup_item .item_cate .cate_in {
  font-size: 14px;
  color: #717171;
  letter-spacing: 0.02em;
}

.pickup_item .item_date {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 0 20px;
}

.pickup_item .item_date .date_tit {
  width: 50px;
  height: 45px;
  background: #eff0f2;
  align-self: flex-start;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 16px;
  color: #787b85;
  font-weight: 700;
  line-height: 1;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}

.pickup_item .item_date .date_cont {
  display: flex;
  align-items: flex-start;
  font-weight: 700;
  gap: 10px;
}

.pickup_item .item_date .date_cont .years {
  flex-shrink: 0;
  width: 50px;
  font-size: 14px;
  flex-shrink: 0;
  padding-top: 4px;
  white-space: nowrap;
}

.pickup_item .item_date .date_cont .times {
  font-size: 24px;
  line-height: 1.46;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
@media screen and (max-width: 1250px) {
  .pickup_item .item_date .date_cont .times {
    font-size: 20px;
  }
}
@media screen and (max-width: 1090px) {
  .pickup_item .item_date .date_cont .times {
    font-size: 16px;
  }
}

@media (max-width: 1024px) {
  .event_block .event_list li {
    width: calc((100% - 30px) / 2);
  }
  .pickup_item .item_date .date_cont .years {
    padding: 5px 0 0;
  }
  .pickup_item .item_date .date_cont .times {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .event_block .event_list {
    flex-direction: row;
    gap: 20px;
  }
  .event_block .event_list li {
    width: 100%;
  }
  .pickup_item {
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
  }
  .pickup_item .date_cont_wrap {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    display: -webkit-flex;
    flex-wrap: wrap;
  }
  .pickup_item .item_inner {
    padding: 20px 20px 15px;
  }
  .pickup_item:after,
  .pickup_item:before,
  .pickup_item .item_inner:after,
  .pickup_item .item_inner:before {
    display: none;
  }
  .pickup_item .item_tit {
    margin: 0 0 13px;
  }
  .pickup_item .item_tit img {
    width: 40px;
  }
  .pickup_item .item_name {
    font-size: 17px;
  }
  .pickup_item .item_txt {
    font-size: 12px;
    line-height: 1.5;
  }
  .pickup_item .item_cate {
    gap: 2px 5px;
  }
  .pickup_item .item_cate .cate_in {
    font-size: 11px;
  }
  .pickup_item .item_date {
    gap: 10px;
    margin: 0 0 15px;
  }
  .pickup_item .item_date .date_tit {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }
  .pickup_item .item_date .date_cont {
    flex-direction: column;
    gap: 2px;
  }
  .pickup_item .item_date .date_cont .years {
    font-size: 11px;
    padding: 0;
  }
  .pickup_item .item_date .date_cont .times {
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0;
  }
}
.event_pickup {
  padding: 0 20px;
}

.event_pickup .pickup_block {
  max-width: 1340px;
  margin: 0 auto;
  background-image: url("../img/common/bg_lattice_yl.jpg");
  background-position: 0 0;
  background-repeat: repeat;
  padding: 60px 0;
}

.event_pickup .pickup_mess {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 0 0 30px;
}

.event_pickup .pickup_hd {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.event_pickup .pickup_hd .hd_jps {
  font-size: 48px;
  font-weight: 700;
  color: #e61324;
  line-height: 1.24;
}

.event_pickup .pickup_hd .hd_eng {
  font-size: 18px;
  font-weight: 700;
  color: #1c1818;
  font-family: "Outfit", sans-serif;
}

@media (max-width: 767px) {
  .event_pickup {
    padding: 0 10px;
  }
  .event_pickup .pickup_block {
    background-size: 6px 6px;
    padding: 40px 0;
  }
  .event_pickup .pickup_mess {
    margin: 0 0 20px;
  }
  .event_pickup .pickup_hd {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .event_pickup .pickup_hd .hd_jps {
    font-size: 21px;
  }
  .event_pickup .pickup_hd .hd_eng {
    font-size: 12px;
  }
}
/* wp-pagenavi
----------------------------------------------- */
.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 32px;
  margin: 80px 0 0;
}

.wp-pagenavi a,
.wp-pagenavi span {
  color: #1c1818;
  font-family: "Outfit", sans-serif;
  display: flex;
  justify-content: center;
  font-size: 26px;
  line-height: 1;
  position: relative;
}

.wp-pagenavi a:hover {
  opacity: 0.7;
}

.wp-pagenavi span:before {
  position: absolute;
  content: "";
  background: #1c1818;
  width: 30px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -4px;
  height: 1px;
  z-index: 0;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  width: 50px;
  height: 50px;
  background-color: #1c1818;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 15px 15px;
  background-image: url("../img/common/arrow_right_wh.png");
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}

.wp-pagenavi .previouspostslink {
  margin: 0 15px 0 0;
  transform: rotate(180deg);
}

.wp-pagenavi .nextpostslink {
  margin: 0 0 0 15px;
}

@media (max-width: 767px) {
  .wp-pagenavi {
    gap: 10px 20px;
    margin: 40px 0 0;
  }
  .wp-pagenavi a,
  .wp-pagenavi span {
    font-size: 15px;
  }
  .wp-pagenavi a:hover {
    opacity: 1;
  }
  .wp-pagenavi span:before {
    width: 20px;
  }
  .wp-pagenavi .previouspostslink,
  .wp-pagenavi .nextpostslink {
    width: 30px;
    height: 30px;
    background-size: 8px 8px;
  }
  .wp-pagenavi .previouspostslink {
    margin: 0 5px 0 0;
  }
  .wp-pagenavi .nextpostslink {
    margin: 0 0 0 5px;
  }
}
/* soshikizu
----------------------------------------------- */
.soshikizu_teaser {
  padding: 80px 0 70px;
}

@media (max-width: 767px) {
  .soshikizu_teaser {
    padding: 45px 0 20px;
  }
}
.officer_filter .tag_item {
  width: 180px;
}

.officer_category {
  padding: 60px 0 170px;
}

.officer_category .organi_img {
  text-align: center;
  margin: 0 0 80px;
}
@media screen and (max-width: 767.99px) {
  .officer_category .organi_img iframe {
    width: 100%;
    height: 400px;
  }
}

.officer_category .organi_img img {
  width: 1014px;
}

@media (max-width: 767px) {
  .officer_filter .tag_item {
    width: 100%;
  }
  .officer_category {
    padding: 30px 0 100px;
  }
  .officer_category .organi_img {
    margin: 0 0 40px;
  }
  .officer_category .organi_img img {
    width: 100%;
  }
}
.view_other {
  position: relative;
  padding: 0 0 75px;
}
.view_other.coach .section_hdl .hdl_jps {
  font-size: 40px;
}

.view_other:before {
  position: absolute;
  content: "";
  background-image: url("../img/common/wave_btm.png");
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: calc(100% + 120px);
  left: 0;
  bottom: 0;
  z-index: 0;
}

.view_other .other_box {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 20px 30px;
  margin: 40px 0 0;
}

.view_other .other_box li {
  width: calc((100% - 60px) / 3);
}

.view_other .other_box .more_item {
  background: #faf3f4;
  height: 100%;
  padding: 20px;
  display: flex;
  align-items: stretch;
  gap: 0 8.8%;
  color: #1c1818;
  position: relative;
}

.view_other .other_box .more_item:hover {
  opacity: 0.7;
}

.view_other .other_box .more_item .item_img {
  width: 130px;
  max-width: 38.5%;
  flex-shrink: 0;
}

.view_other .other_box .more_item .item_cont {
  width: 100%;
  gap: 10px;
  padding: 15px 0 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.view_other .other_box .more_item .item_name {
  font-size: 22px;
  line-height: 1.27;
}

.view_other .other_box .more_item .item_cap {
  font-size: 13px;
  display: block;
  margin: 3px 0 0;
}

.view_other .other_box .more_item .item_link {
  align-self: flex-end;
  padding: 0 33px 0 0;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  line-height: 22px;
  background-image: url("../img/common/arrow_more.png");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 22px 22px;
}

.view_other .other_box .more_blanks {
  background: #faf3f4;
  display: flex;
  align-items: center;
  height: 90px;
  padding: 3px 40px 0 20px;
  font-size: 22px;
  line-height: 1.3;
  color: #1c1818;
  position: relative;
}

.view_other .other_box .more_blanks:hover {
  opacity: 0.7;
}

.view_other .other_box .more_blanks:before {
  position: absolute;
  content: "";
  background-image: url("../img/common/blank_drop.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 19px;
  height: 19px;
  right: 16px;
  bottom: 16px;
  z-index: 0;
}

@media (max-width: 1024px) {
  .view_other .other_box {
    gap: 20px;
  }
  .view_other .other_box li {
    width: calc((100% - 40px) / 3);
  }
  .view_other .other_box .more_item .item_name {
    font-size: 18px;
  }
  .view_other .other_box .more_blanks {
    height: 70px;
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .view_other {
    padding: 0 0 20px;
  }
  .view_other:before {
    background-image: url("../img/common/wave_btm_sp.png");
    height: calc(100% + 45px);
  }
  .view_other .other_box {
    flex-direction: column;
    gap: 10px;
    margin: 25px 0 0;
  }
  .view_other .other_box li {
    width: 100%;
  }
  .view_other .other_box .more_item {
    padding: 10px;
    gap: 0 15px;
  }
  .view_other .other_box .more_item:hover {
    opacity: 1;
  }
  .view_other .other_box .more_item .item_img {
    width: 70px;
    max-width: none;
  }
  .view_other .other_box .more_item .item_cont {
    position: relative;
    gap: 0;
    padding: 0;
    justify-content: center;
  }
  .view_other .other_box .more_item .item_name {
    font-size: 14px;
  }
  .view_other .other_box .more_item .item_cap {
    font-size: 10px;
  }
  .view_other .other_box .more_item .item_link {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 0 20px 0 0;
    font-size: 11px;
    line-height: 15px;
    background-size: 15px 15px;
  }
  .view_other .other_box .more_blanks {
    height: 55px;
    padding: 3px 50px 0 30px;
    font-size: 14px;
  }
  .view_other .other_box .more_blanks:hover {
    opacity: 1;
  }
  .view_other .other_box .more_blanks:before {
    width: 12px;
    height: 12px;
    right: 30px;
    bottom: 50%;
    transform: translateY(50%);
  }
}
/* about-jga
----------------------------------------------- */
.about_teaser {
  background-image: url("../img/about-jga/bg_teaser.jpg");
}

@media (max-width: 767px) {
  .about_teaser {
    background-image: url("../img/about-jga/bg_teaser_sp.jpg");
  }
}
.about-jga .about_message {
  position: relative;
  padding: 55px 0 120px;
  overflow: hidden;
}

.about-jga .about_message:before {
  position: absolute;
  content: "";
  background-image: url("../img/about-jga/dec_about.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  right: 0;
  top: 0;
  width: 470px;
  height: 264px;
  z-index: 0;
}

.about-jga .about_message .message_det {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.64;
  margin: 0 0 50px;
}

.about-jga .about_message .message_box {
  margin: 40px 0 0;
  display: flex;
  align-items: flex-start;
  gap: 0 8.3%;
}

.about-jga .about_message .message_box .message_img {
  width: 30%;
  flex-shrink: 0;
}

.about-jga .about_message .message_box .message_img img {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
}

.about-jga .about_message .message_box .message_cont {
  width: 100%;
  padding-inline: 50px;
}
@media screen and (max-width: 767.99px) {
  .about-jga .about_message .message_box .message_cont {
    padding-inline: 20px;
  }
}

.about-jga .about_message .message_box .message_tit {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.45;
  margin: 0 0 35px;
}

.about-jga .about_message .message_box .message_txt {
  line-height: 2.125;
  margin: 0 0 50px;
}

.about-jga .about_message .message_box .message_name {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.about-jga .about_message .message_box .message_name .name_cap {
  letter-spacing: 0.025em;
}

.about-jga .about_message .message_box .message_name img {
  width: 125px;
}

@media (max-width: 1024px) {
  .about-jga .about_message .message_box {
    gap: 0 4.3%;
  }
  .about-jga .about_message .message_box .message_img {
    width: 34%;
  }
  .about-jga .about_message .message_box .message_tit {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .about-jga .about_message {
    padding: 25px 0 40px;
  }
  .about-jga .about_message:before {
    background-image: url("../img/about-jga/dec_about_sp.png");
    width: 99px;
    height: 78px;
    top: -10px;
  }
  .about-jga .about_message .message_det {
    font-size: 13px;
    line-height: 1.85;
    margin: 0 0 35px;
  }
  .about-jga .about_message .message_box {
    margin: 25px 0 0;
    flex-direction: column;
    align-items: center;
    gap: 25px 0;
  }
  .about-jga .about_message .message_box .message_img {
    width: 180px;
  }
  .about-jga .about_message .message_box .message_img img {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
  }
  .about-jga .about_message .message_box .message_tit {
    font-size: 19px;
    line-height: 1.58;
    margin: 0 0 20px;
  }
  .about-jga .about_message .message_box .message_txt {
    line-height: 1.85;
    margin: 0 0 20px;
  }
  .about-jga .about_message .message_box .message_name .name_cap {
    font-size: 12px;
    letter-spacing: 0.025em;
  }
  .about-jga .about_message .message_box .message_name img {
    width: 90px;
  }
}
.about-jga .about_us {
  background: #f8f8f8;
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.about-jga .about_us .us_box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.about-jga .about_us .us_box .section_hdl {
  flex-shrink: 0;
}

.about-jga .about_us .us_cont {
  width: 75%;
}

.about-jga .about_us .us_table li:not(:last-child) {
  border-bottom: 1px #dbe0e7 solid;
}

.about-jga .about_us .us_table li {
  display: flex;
  align-items: stretch;
  line-height: 1.625;
}

.about-jga .about_us .us_table .table_th {
  width: 135px;
  flex-shrink: 0;
  padding: 18px 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px #dbe0e7 solid;
}

.about-jga .about_us .us_table .table_td {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 18px 20px 16px 25px;
}

.about-jga .about_us .us_table .table_logo {
  width: 100px;
}

.about-jga .about_us .us_table .table_link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.about-jga .about_us .us_table .table_link a {
  text-decoration: underline;
}

.about-jga .about_us .us_table .table_link a:hover {
  opacity: 0.7;
}

.about-jga .about_us .us_table .table_addr {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
}

.about-jga .about_us .us_table .table_addr .addr_map {
  width: 220px;
  flex-shrink: 0;
}

.about-jga .about_us .us_table .table_addr .addr_map iframe {
  width: 100%;
  height: 165px;
}

@media (max-width: 767px) {
  .about-jga .about_us {
    padding: 40px 0;
  }
  .about-jga .about_us .us_box {
    flex-direction: column;
    gap: 25px;
  }
  .about-jga .about_us .us_cont {
    width: 100%;
  }
  .about-jga .about_us .us_table li {
    font-size: 12px;
    line-height: 1.75;
  }
  .about-jga .about_us .us_table .table_th {
    width: 80px;
    flex-shrink: 0;
    padding: 14px 5px 12px;
    font-size: 13px;
    align-items: flex-start;
  }
  .about-jga .about_us .us_table .table_td {
    padding: 14px 0 12px 20px;
  }
  .about-jga .about_us .us_table .table_logo {
    width: 70px;
  }
  .about-jga .about_us .us_table .table_link {
    gap: 10px;
  }
  .about-jga .about_us .us_table .table_link a:hover {
    opacity: 1;
  }
  .about-jga .about_us .us_table .table_addr {
    flex-direction: column;
    gap: 15px;
  }
  .about-jga .about_us .us_table .table_addr .addr_map {
    width: 100%;
  }
  .about-jga .about_us .us_table .table_addr .addr_map iframe {
    height: 180px;
  }
}
.about-jga .about_history {
  padding: 100px 0 150px;
  position: relative;
  z-index: 1;
}

.about-jga .about_history .history_box {
  display: flex;
  align-items: stretch;
  position: relative;
  margin: 55px 0 0;
}

.about-jga .about_history .history_item {
  border-top: 4px #dadfee solid;
  width: 300px;
  flex-shrink: 0;
  padding: 80px 0 0 5px;
  position: relative;
  z-index: 1;
}

.about-jga .about_history .history_item:before {
  position: absolute;
  content: "";
  background-image: url("../img/about-jga/dot.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 30px;
  height: 30px;
  left: 0;
  top: -17px;
  z-index: 1;
}

.about-jga .about_history .history_item:after {
  position: absolute;
  content: "";
  background: #d7d9df;
  width: 2px;
  height: 66px;
  left: 14px;
  top: 0;
  z-index: 0;
}

.about-jga .about_history .history_item .item_year {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 25px;
}

.about-jga .about_history .history_item .item_year .year_num {
  font-family: "Outfit", sans-serif;
  font-size: 38px;
}

.about-jga .about_history .history_item .item_month {
  padding: 0 0 0 20px;
  margin: 0 0 5px;
  position: relative;
}

.about-jga .about_history .history_item .item_month:before {
  position: absolute;
  content: "";
  background: #e61324;
  width: 10px;
  height: 2px;
  left: 0;
  top: 50%;
  margin-top: -1px;
  z-index: 0;
}

.about-jga .about_history .history_item .item_txt {
  font-size: 18px;
  line-height: 1.3;
  padding: 0 0 0 20px;
}

@media (max-width: 767px) {
  .about-jga .about_history {
    padding: 40px 0 100px;
  }
  .about-jga .about_history .history_box {
    margin: 30px 0 0;
  }
  .about-jga .about_history .history_item {
    border-top: 2px #dadfee solid;
    width: 165px;
    padding: 40px 0 0 0;
    position: relative;
    z-index: 1;
  }
  .about-jga .about_history .history_item:before {
    width: 17px;
    height: 17px;
    top: -9px;
  }
  .about-jga .about_history .history_item:after {
    width: 1px;
    height: 32px;
    left: 8px;
  }
  .about-jga .about_history .history_item .item_year {
    font-size: 13px;
    margin: 0 0 10px;
  }
  .about-jga .about_history .history_item .item_year .year_num {
    font-size: 22px;
  }
  .about-jga .about_history .history_item .item_month {
    padding: 0 0 0 15px;
    margin: 0;
  }
  .about-jga .about_history .history_item .item_month:before {
    width: 8px;
    height: 1px;
  }
  .about-jga .about_history .history_item .item_txt {
    font-size: 14px;
    padding: 0 0 0 15px;
  }
}
.scroll-container {
  padding: 0;
  overflow: hidden;
  position: relative;
}

.scroll-container .scrollbar-container {
  height: 32px;
  width: 500px;
  max-width: 80%;
  margin: 45px auto 0;
  position: relative;
}

.scroll-container .scrollbar-container:before {
  position: absolute;
  content: "";
  background: #b0b3bf;
  width: 100%;
  height: 2px;
  left: 0;
  top: 50%;
  margin-top: -1px;
  z-index: 0;
}

.scroll-container .scrollbar-thumb {
  position: absolute;
  background-image: url("../img/common/arrow_scroll.png");
  background-size: 77px 32px;
  background-position: center center;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
  width: 77px;
  height: 32px;
  z-index: 1;
}

@media (max-width: 767px) {
  .scroll-container .scrollbar-container {
    height: 30px;
    width: 66.66vw;
    max-width: none;
    margin: 35px auto 0;
  }
  .scroll-container .scrollbar-thumb {
    background-size: 75px 30px;
    width: 75px;
    height: 30px;
  }
}
/* top
----------------------------------------------- */
.top_main {
  position: relative;
  z-index: 2;
}

.top_main .main_item {
  display: block;
  position: relative;
}

.top_main .main_item:hover {
  opacity: 0.7;
}

.top_main .main_item:after {
  position: absolute;
  content: "";
  background-image: url("../img/top/shadow_main.png");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.top_main .main_img {
  position: relative;
  background-color: transparent;
}
.top_main .main_img::before {
  content: "";
  display: block;
  padding-top: 57.7751196172%;
}
.top_main .main_img img,
.top_main .main_img iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top_main .slick-slide {
  margin: 0 5px;
}

.top_main .main_report {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0 min(40px, 2.86vw) min(30px, 2.14vw);
  color: #fff;
  z-index: 1;
}

.top_main .main_report .report_date {
  display: flex;
  align-items: center;
  margin: 0 0 10px;
  gap: 20px;
}

.top_main .main_report .report_date .date_cap {
  padding: 3px 0 0 15px;
  font-size: min(14px, 1vw);
  line-height: 1;
  flex-shrink: 0;
  position: relative;
}

.top_main .main_report .report_date .date_cap:before {
  position: absolute;
  content: "";
  background: #e50012;
  width: 6px;
  height: 6px;
  left: 0;
  top: 50%;
  margin-top: -2px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  z-index: 0;
}

.top_main .main_report .report_date .date_num {
  font-size: min(26px, 1.86vw);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  font-family: "Outfit", sans-serif;
}

.top_main .main_report .report_tit {
  font-size: min(26px, 1.86vw);
  line-height: 1.3;
  font-weight: 700;
}

.top_main .slick-dots {
  position: absolute;
  left: 0;
  top: calc(100% + 20px);
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.top_main .slick-dots li {
  font-size: 0;
  margin: 0;
  padding: 0;
}

.top_main .slick-dots li button {
  width: 26px;
  height: 26px;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(229, 0, 18, 0);
  background: none;
  font-size: 0;
  padding: 0;
  cursor: pointer;
  outline: none;
  text-indent: -9999px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

.top_main .slick-dots li button:before {
  position: absolute;
  content: "";
  background: #b0b3bf;
  width: 6px;
  height: 6px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  z-index: 0;
}

.top_main .slick-dots li.slick-active button {
  border-color: rgb(229, 0, 18);
}

.top_main .slick-dots li.slick-active button:before {
  background: rgb(229, 0, 18);
}

@media (max-width: 767px) {
  .top_main .main_item:hover {
    opacity: 1;
  }
  .top_main .slick-slide {
    margin: 0;
  }
  .top_main .main_report {
    padding: 0 20px 15px;
  }
  .top_main .main_report .report_date {
    gap: 8px;
  }
  .top_main .main_report .report_date .date_cap {
    padding: 2px 0 0 10px;
    font-size: min(11px, 2.94vw);
  }
  .top_main .main_report .report_date .date_cap:before {
    margin-top: -1px;
  }
  .top_main .main_report .report_date .date_num {
    font-size: min(17px, 4.54vw);
    letter-spacing: 0.05em;
  }
  .top_main .main_report .report_tit {
    font-size: min(17px, 4.54vw);
  }
  .top_main .slick-dots {
    top: calc(100% + 10px);
    gap: 10px;
  }
  .top_main .slick-dots li button {
    width: 18px;
    height: 18px;
  }
  .top_main .slick-arrow {
    text-indent: -9999px;
    width: 16px;
    height: 16px;
    top: 50%;
    background: none;
    position: absolute;
    transform: translateY(-50%);
    background-image: url("../img/top/next_main.png");
    background-size: 14px 16px;
    background-position: center center;
    background-repeat: no-repeat;
    border: none;
    z-index: 1;
  }
  .top_main .slick-arrow.slick-next {
    right: 12px;
  }
  .top_main .slick-arrow.slick-prev {
    left: 12px;
    transform: rotate(180deg);
  }
}
.top_post {
  padding: 66px 0 110px;
  background-image: url("../img/top/dec_top.png");
  background-position: right top;
  background-repeat: no-repeat;
  background-size: 480px 264px;
  position: relative;
  z-index: 1;
}

.top_post .top_filter .tag_item {
  width: 220px;
}

.top_post .top_category {
  padding: 30px 20px 0;
}

.top_post .post_box {
  background-image: url("../img/common/bg_lattice_trans.png");
  background-repeat: repeat;
  background-position: 0 0;
  max-width: 1340px;
  margin: 0 auto;
  padding: 30px 0 80px;
}

.top_post .post_pick_mess {
  padding: 20px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin: 0 0 30px;
}

.top_post .post_pick_hd {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}

.top_post .post_event {
  max-width: 1000px;
  margin: 70px auto 40px;
}

.top_post .post_news {
  margin: 0 0 45px;
}

@media (max-width: 767px) {
  .top_post {
    padding: 55px 0;
    background-image: url("../img/top/dec_top_sp.png");
    background-size: 187px 205px;
    background-position: right 10px;
  }
  .top_post .top_filter .tag_item {
    width: 100%;
  }
  .top_post .top_category {
    padding: 15px 10px 0;
  }
  .top_post .post_box {
    background-size: 6px 6px;
    padding: 15px 10px 55px;
  }
  .top_post .post_pick_mess {
    padding: 15px 0 0;
    margin: 0 0 20px;
  }
  .top_post .post_pick_hd {
    font-size: 25px;
  }
  .top_post .post_event {
    margin: 20px auto 35px;
  }
  .top_post .post_news {
    margin: 0 0 15px;
  }
}
.top_information {
  padding: 0 0 100px;
  position: relative;
}

.top_information:before {
  position: absolute;
  content: "";
  background-image: url("../img/top/bg_infor.png");
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: calc(100% + 380px);
  left: 0;
  bottom: 0;
  z-index: 0;
}

.top_information .information_box {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 55px 0 0;
}

.top_information .information_box li {
  width: calc((100% - 4px) / 2);
}

.top_information .information_item {
  display: block;
  position: relative;
}

.top_information .information_item:before {
  position: absolute;
  content: "";
  background: url("../img/top/shadow_infor.png") center bottom no-repeat;
  background-size: cover;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.top_information .information_img {
  overflow: hidden;
}

.top_information .information_img img {
  width: 100%;
  transition: all 0.6s !important;
  -moz-transition: all 0.6s !important;
  /* Firefox */
  -webkit-transition: all 0.6s !important;
  /* Chrome&Safari */
}

.top_information .information_item:hover .information_img img {
  transform: scale(1.05);
}

.top_information .information_cont {
  position: absolute;
  color: #fff;
  left: min(40px, 2.86vw);
  bottom: min(30px, 2.15vw);
  display: flex;
  flex-direction: column;
  gap: 3px;
  z-index: 1;
}

.top_information .information_cont .cont_jps {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.top_information .information_cont .cont_eng {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  font-family: "Outfit", sans-serif;
}

.top_information .information_item .arrow {
  position: absolute;
  right: min(40px, 2.86vw);
  bottom: min(35px, 2.5vw);
  width: 50px;
  height: 50px;
  border: 1px #fff solid;
  display: block;
  overflow: hidden;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  z-index: 1;
}

.top_information .information_item .arrow:before,
.top_information .information_item .arrow:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 15px 15px;
  animation-fill-mode: forwards;
  animation-duration: 0.6s;
  z-index: 0;
}

.top_information .information_item .arrow:before {
  background-image: url("../img/common/arrow_right_wh.png");
}

.top_information .information_item .arrow:after {
  transform: translateX(-100%);
  background-image: url("../img/common/arrow_right_wh.png");
}

.top_information .information_item:hover .arrow:before {
  animation-name: transformRightLeft;
  animation-delay: 0s;
}

.top_information .information_item:hover .arrow:after {
  animation-name: transformLeftRight;
  animation-delay: 0.2s;
}

.top_information .information_other {
  max-width: 1280px;
  margin: 55px auto 0;
  padding: 0 20px;
  display: flex;
  gap: 30px;
}

.top_information .information_other li {
  width: calc((100% - 60px) / 3);
}

.top_information .information_other .other_item {
  display: block;
  color: #fff;
  position: relative;
}

.top_information .information_other .other_item:before {
  position: absolute;
  content: "";
  background: url("../img/top/shadow_infor02.png") center bottom no-repeat;
  background-size: cover;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.top_information .information_other .other_img {
  overflow: hidden;
}

.top_information .information_other .other_img img {
  width: 100%;
  transition: all 0.6s !important;
  -moz-transition: all 0.6s !important;
  /* Firefox */
  -webkit-transition: all 0.6s !important;
  /* Chrome&Safari */
}

.top_information .information_other .other_item:hover .other_img img {
  transform: scale(1.05);
}

.top_information .information_other .other_cont {
  position: absolute;
  left: min(30px, 2.15vw);
  bottom: min(15px, 1.08vw);
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 1;
}

.top_information .information_other .other_cont .cont_jps {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.05em;
}

.top_information .information_other .other_cont .cont_eng {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  font-family: "Outfit", sans-serif;
}

@media (max-width: 1024px) {
  .top_information .information_other {
    gap: 20px;
  }
  .top_information .information_other li {
    width: calc((100% - 40px) / 3);
  }
}
@media (max-width: 767px) {
  .top_information {
    padding: 0 0 30px;
  }
  .top_information:before {
    background-image: url("../img/top/bg_infor_sp.png");
    height: calc(100% + 130px);
  }
  .top_information .information_box {
    flex-direction: column;
    gap: 5px;
    margin: 30px 0 0;
  }
  .top_information .information_box li {
    width: 100%;
  }
  .top_information .information_item:hover .information_img img {
    transform: scale(1);
  }
  .top_information .information_cont {
    left: 20px;
    bottom: 20px;
    gap: 3px;
  }
  .top_information .information_cont .cont_jps {
    font-size: 19px;
  }
  .top_information .information_cont .cont_eng {
    font-size: 12px;
  }
  .top_information .information_item .arrow {
    position: absolute;
    right: 20px;
    bottom: 25px;
    width: 26px;
    height: 26px;
  }
  .top_information .information_item .arrow:before,
  .top_information .information_item .arrow:after {
    background-size: 8px 8px;
  }
  .top_information .information_item .arrow:before {
    background-image: url("../img/common/arrow_right_wh.png");
  }
  .top_information .information_item .arrow:after {
    display: none;
  }
  .top_information .information_item:hover .arrow:before {
    animation-name: none;
  }
  .top_information .information_other {
    max-width: 1280px;
    margin: 30px auto 0;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .top_information .information_other li {
    width: 100%;
  }
  .top_information .information_other .other_item:hover .other_img img {
    transform: scale(1);
  }
  .top_information .information_other .other_cont {
    left: 10px;
    bottom: 15px;
  }
  .top_information .information_other .other_cont .cont_jps {
    font-size: 16px;
  }
  .top_information .information_other .other_cont .cont_eng {
    font-size: 11px;
  }
}
.top_enjoy {
  background-image: url("../img/top/bg_enjoy.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

.top_enjoy .inner {
  display: flex;
  justify-content: flex-end;
}

.top_enjoy .enjoy_box {
  width: 57%;
  border-top: 1px #fff solid;
}

.top_enjoy .enjoy_box li {
  border-bottom: 1px #fff solid;
}

.top_enjoy .enjoy_box a {
  height: 195px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  padding: 20px 90px 20px 20px;
  color: #fff;
  position: relative;
}

.top_enjoy .enjoy_box a:before {
  position: absolute;
  content: "";
  background: #fff;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 0;
  transform: translate(-50%, -50%);
  transition: all 0.3s !important;
  -moz-transition: all 0.3s !important;
  -webkit-transition: all 0.3s !important;
  z-index: 0;
}

.top_enjoy .enjoy_box a:after {
  position: absolute;
  content: "";
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px #fff solid;
  background-image: url("../img/common/arrow_right_wh.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 15px 15px;
  width: 50px;
  height: 50px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  z-index: 0;
}

.top_enjoy .enjoy_box a:hover {
  color: #1c1818;
}

.top_enjoy .enjoy_box a:hover:before {
  height: 100%;
}

.top_enjoy .enjoy_box a:hover:after {
  background-image: url("../img/common/arrow_right_bk.png");
  border: 1px #1c1818 solid;
}

.top_enjoy .enjoy_box .enjoy_tit {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}

.top_enjoy .enjoy_box .enjoy_txt {
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .top_enjoy .enjoy_box {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .top_enjoy {
    background-image: url("../img/top/bg_enjoy_sp.jpg");
    background-position: center bottom;
    padding: 35px 0 150px;
  }
  .top_enjoy .inner {
    display: block;
  }
  .top_enjoy .enjoy_box {
    width: 100%;
  }
  .top_enjoy .enjoy_box a {
    height: auto;
    gap: 12px;
    padding: 30px 50px 30px 0;
  }
  .top_enjoy .enjoy_box a:before {
    display: none;
  }
  .top_enjoy .enjoy_box a:after {
    right: 0;
    background-size: 8px 8px;
    width: 26px;
    height: 26px;
  }
  .top_enjoy .enjoy_box a:hover {
    color: #fff;
  }
  .top_enjoy .enjoy_box a:hover:after {
    background-image: url("../img/common/arrow_right_wh.png");
    border: 1px #fff solid;
  }
  .top_enjoy .enjoy_box .enjoy_tit {
    font-size: 18px;
    letter-spacing: 0.02em;
  }
  .top_enjoy .enjoy_box .enjoy_txt {
    line-height: 1.6;
  }
}
.top_video {
  padding: 120px 0 80px;
  position: relative;
}

.top_video:before {
  position: absolute;
  content: "";
  background-image: url(../img/top/bg_infor.png);
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: calc(100% - 557px);
  left: 0;
  bottom: 0;
  z-index: 0;
}

.top_video #sbi_images {
  margin: 60px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 5px !important;
  padding: 0 !important;
}
.top_video #sbi_images .sbi_item {
  width: initial !important;
  zoom: initial !important;
  display: block !important;
  max-height: initial !important;
}

.top_video #sbi_images .sbi_item:nth-child(3) {
  grid-row: 1/3 !important;
  grid-column: 1/3 !important;
}

.top_video #sbi_images .sbi_item:nth-child(6) {
  grid-row: 2/4 !important;
  grid-column: 3/5 !important;
}

@media (max-width: 767px) {
  .top_video {
    padding: 70px 0 60px !important;
  }
  .top_video:before {
    background-image: url("../img/top/bg_infor_sp.png");
    height: calc(100% - 365px);
  }
  .top_video #sbi_images {
    margin: 25px -20px 0 !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 5px !important;
  }
  .top_video #sbi_images .sbi_item {
    width: calc((100% - 5px) / 2) !important;
  }
}
/* news detail
----------------------------------------------- */
.news_detail_block {
  background: #f9f4f4;
  border-top: 2px #e61324 solid;
}
.news_detail_block:not(:has(.news_other)) {
  padding-bottom: 80px;
}
@media screen and (max-width: 767.99px) {
  .news_detail_block:not(:has(.news_other)) {
    padding-bottom: 30px;
  }
}

.news_other {
  padding: 0 20px 40px;
  position: relative;
}

.news_other:before {
  position: absolute;
  content: "";
  background-image: url(../img/common/wave_btm.png);
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: calc(100% + 250px);
  left: 0;
  bottom: 0;
  z-index: 0;
}

.news_other .news_other_box {
  max-width: 1340px;
  margin: 0 auto;
  background-image: url(../img/common/bg_lattice_wh.png);
  background-position: 0 0;
  background-repeat: repeat;
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.news_other .news_other_hd {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.news_other .news_other_hd .hd_eng {
  font-size: 58px;
  line-height: 1;
  color: #1c1818;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
}

.news_other .news_other_hd .hd_jps {
  font-size: 18px;
  font-weight: 700;
  color: #e61324;
  letter-spacing: 0.02em;
}

.news_other .news_other_in {
  max-width: 1000px;
  margin: 40px auto 0;
}

@media (max-width: 767px) {
  .news_other {
    padding: 0 10px 40px;
  }
  .news_other:before {
    background-image: url("../img/common/wave_btm_sp.png");
    height: calc(100% + 85px);
  }
  .news_other .news_other_box {
    background-size: 6px 6px;
    padding: 40px 0;
  }
  .news_other .news_other_hd {
    gap: 10px;
  }
  .news_other .news_other_hd .hd_eng {
    font-size: 30px;
  }
  .news_other .news_other_hd .hd_jps {
    font-size: 12px;
  }
  .news_other .news_other_in {
    margin: 5px auto 0;
  }
}
.news_detail_teaser {
  padding: 80px 0 85px;
  overflow: hidden;
  position: relative;
}

.news_detail_teaser:before {
  position: absolute;
  content: "";
  background-image: url(../img/common/bg_teaser.png);
  background-position: right bottom;
  background-repeat: no-repeat;
  width: 720px;
  height: 638px;
  right: -25px;
  bottom: calc(100% - 250px);
  z-index: 0;
}

.news_detail_teaser .teaser_dt {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0 0 30px;
}

.news_detail_teaser .teaser_date {
  color: #645759;
  display: flex;
  align-items: center;
  gap: 5px;
}

.news_detail_teaser .teaser_date .date_tit {
  font-weight: 500;
}

.news_detail_teaser .teaser_date .date_txt {
  font-weight: 600;
}

.news_detail_teaser .teaser_type {
  flex-shrink: 0;
  background: #e61324;
  min-width: 120px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  padding: 5px 10px 2px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
}

.news_detail_teaser .teaser_hd {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.33;
}

@media (max-width: 1024px) {
  .news_detail_teaser:before {
    background-size: 360px 319px;
    width: 360px;
    height: 319px;
    bottom: calc(100% - 190px);
  }
}
@media (max-width: 767px) {
  .news_detail_teaser:before {
    background-size: 196px 174px;
    width: 196px;
    height: 174px;
    right: -15px;
    bottom: calc(100% - 60px);
  }
  .news_detail_teaser {
    padding: 30px 0 20px;
  }
  .news_detail_teaser .teaser_dt {
    gap: 10px;
    margin: 0 0 10px;
  }
  .news_detail_teaser .teaser_date {
    gap: 3px;
  }
  .news_detail_teaser .teaser_type {
    min-width: 90px;
    height: 25px;
    font-size: 11px;
    padding: 5px 10px 2px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
  }
  .news_detail_teaser .teaser_hd {
    font-size: 20px;
    line-height: 1.5;
  }
}
.news_detail_box {
  padding: 60px 20px 0;
  position: relative;
  z-index: 1;
}

.news_detail_box .news_detail_in {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  padding: 50px 40px 80px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
}

.news_detail_box .news_detail_cont {
  max-width: 1000px;
  margin: 0 auto;
}

.editor-styles-wrapper {
  line-height: 1.75;
  margin: 0 0 60px;
}

@media (max-width: 767px) {
  .news_detail_box {
    padding: 20px 20px 0;
  }
  .news_detail_box .news_detail_in {
    padding: 30px 20px 40px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
  }
  .editor-styles-wrapper {
    line-height: 1.85;
    margin: 0 0 40px;
  }
}
/* info-news
----------------------------------------------- */
.infonews_block {
  padding: 80px 0 65px;
}
.infonews_block:has(.comingsoon) .infonews_box {
  justify-content: center;
}

.infonews_block .infonews_box {
  display: flex;
  align-items: flex-start;
  gap: 0 5%;
}

.infonews_main {
  width: 100%;
}

@media (max-width: 1024px) {
  .infonews_block .infonews_box {
    flex-direction: column;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .infonews_block {
    padding: 30px 0 20px;
  }
  .infonews_block .infonews_box {
    gap: 15px;
  }
}
.infonews_side {
  width: 280px;
  flex-shrink: 0;
  position: relative;
}

.infonews_side .side_menu {
  background: #f6f8fa;
  border: 1px #e8ecef solid;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
}
.infonews_side .side_menu li {
  position: relative;
}

.infonews_side .side_menu li:not(:last-child) {
  border-bottom: 1px #e8ecef solid;
}

.infonews_side .side_menu .side_item {
  display: flex;
  align-items: center;
  height: 90px;
  padding: 10px 60px 10px 20px;
  font-size: 18px;
  font-weight: 700;
  position: relative;
}

.infonews_side .side_menu .side_item:hover {
  background: #dde1e6;
}

.infonews_side .side_menu .side_item:before {
  position: absolute;
  content: "";
  background-color: #e61324;
  background-image: url("../img/common/arrow_link_wh.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 11px 11px;
  width: 30px;
  height: 30px;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  z-index: 0;
}

.infonews_side .side_menu .side_item.side_sub:before {
  display: none;
}

.infonews_side .side_menu .side_item .sub_plus {
  position: absolute;
  display: block;
  background-color: #e61324;
  width: 30px;
  height: 30px;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  z-index: 0;
}

.infonews_side .side_menu .side_item .sub_plus:before,
.infonews_side .side_menu .side_item .sub_plus:after {
  position: absolute;
  content: "";
  background: #fff;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s !important;
  -moz-transition: all 0.3s !important;
  /* Firefox */
  -webkit-transition: all 0.3s !important;
  /* Chrome&Safari */
  z-index: 0;
}

.infonews_side .side_menu .side_item .sub_plus:before {
  width: 12px;
  height: 2px;
}

.infonews_side .side_menu .side_item .sub_plus:after {
  width: 2px;
  height: 12px;
}

.infonews_side .side_menu .side_item.current .sub_plus:after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.infonews_side .side_menu .side_item.current {
  background: #dde1e6;
}

.infonews_side .side_pop {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  padding: 20px 20px 15px;
  color: #fff;
  background: #e61324;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
  z-index: 2;
}

.infonews_side .side_pop:before {
  position: absolute;
  content: "";
  background: #e61324;
  width: 10px;
  height: 12px;
  right: calc(100% - 1px);
  top: 45px;
  margin-top: -6px;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
  z-index: 0;
}

.infonews_side .side_pop .side_pop_list {
  min-width: 170px;
}

.infonews_side .side_pop .side_pop_list li:not(:last-child) {
  border-bottom: 1px #bf101f solid;
}

.infonews_side .side_pop .side_pop_list a {
  display: block;
  padding: 15px 20px 15px 0;
  color: #fff;
  background-image: url("../img/common/arrow_link_wh.png");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 11px 11px;
}

.infonews_side .side_pop .side_pop_list a:hover {
  opacity: 0.7;
}

@media (max-width: 1024px) {
  .infonews_side {
    display: none;
  }
}
/* infonews_select
----------------------------------------------- */
.infonews_select {
  display: none;
}

@media (max-width: 1024px) {
  .infonews_select {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }
  .infonews_select .select_position {
    width: 185px;
    height: 50px;
    position: relative;
  }
  .infonews_select .select_box {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: #dde1e6;
    border: 1px #e8ecef solid;
    overflow: hidden;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    z-index: 1;
  }
  .infonews_select .select_trigger {
    width: 100%;
    height: 48px;
    padding: 2px 40px 0 20px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
  }
  .infonews_select .select_trigger:before {
    position: absolute;
    content: "";
    background-color: #e61324;
    background-image: url("../img/common/arrow_right_wh.png");
    background-size: 8px 8px;
    background-position: center center;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    right: 15px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    transition: all 0.3s !important;
    -moz-transition: all 0.3s !important;
    /* Firefox */
    -webkit-transition: all 0.3s !important;
    /* Chrome&Safari */
    z-index: 0;
  }
  .infonews_select .select_trigger.active:before {
    transform: translateY(-50%) rotate(-90deg);
  }
  .infonews_select .select_list {
    display: none;
    background: #f6f8fa;
    width: 100%;
  }
  .infonews_select .select_list > li:not(:last-child) {
    border-bottom: 1px #e8ecef solid;
  }
  .infonews_select .select_list > li > a {
    display: block;
    padding: 15px 20px;
    font-weight: 700;
    font-size: 13px;
  }
  .infonews_select .select_drop {
    display: block;
    padding: 15px 20px;
    font-weight: 700;
    font-size: 13px;
    position: relative;
  }
  .infonews_select .select_drop .sub_plus {
    position: absolute;
    display: block;
    background-color: #e61324;
    width: 20px;
    height: 20px;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    z-index: 0;
  }
  .infonews_select .select_drop .sub_plus:before,
  .infonews_select .select_drop .sub_plus:after {
    position: absolute;
    content: "";
    background: #fff;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s !important;
    -moz-transition: all 0.3s !important;
    /* Firefox */
    -webkit-transition: all 0.3s !important;
    /* Chrome&Safari */
    z-index: 0;
  }
  .infonews_select .select_drop .sub_plus:before {
    width: 8px;
    height: 2px;
  }
  .infonews_select .select_drop .sub_plus:after {
    width: 2px;
    height: 8px;
  }
  .infonews_select .select_drop.on .sub_plus:after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .infonews_select .drop_list {
    display: none;
    margin: 0 20px;
  }
  .infonews_select .drop_list li {
    border-top: 1px #e8ecef solid;
  }
  .infonews_select .drop_list li a {
    display: block;
    padding: 15px;
    font-size: 13px;
    font-weight: 500;
  }
}
/* artistic
----------------------------------------------- */
.artistic_teaser {
  background-image: url("../img/artistic/bg_teaser.jpg");
}

@media (max-width: 767px) {
  .artistic_teaser {
    background-image: url("../img/artistic/bg_teaser_sp.jpg");
  }
}
.rhythmic_teaser {
  background-image: url("../img/rhythmic/bg_teaser.jpg");
}

@media (max-width: 767px) {
  .rhythmic_teaser {
    background-image: url("../img/rhythmic/bg_teaser_sp.jpg");
  }
}
.trampoline_teaser {
  background-image: url("../img/trampoline/bg_teaser.jpg");
}

@media (max-width: 767px) {
  .trampoline_teaser {
    background-image: url("../img/trampoline/bg_teaser_sp.jpg");
  }
}
.gymnastics_teaser {
  background-image: url("../img/gymnastics/bg_teaser.jpg");
}

@media (max-width: 767px) {
  .gymnastics_teaser {
    background-image: url("../img/gymnastics/bg_teaser_sp.jpg");
  }
}
.artistic_what {
  padding: 90px 0 40px;
  background-image: url("../img/artistic/bg_what.png");
  background-position: right top;
  background-repeat: no-repeat;
  position: relative;
}

.artistic_what:before {
  position: absolute;
  content: "";
  background-image: url("../img/artistic/bg_what02.png");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 55.5vw;
  left: 0;
  bottom: 0;
  z-index: 0;
}

.artistic_what .what_box {
  display: flex;
  align-items: flex-start;
}

.artistic_what .what_img {
  width: 50%;
  flex-shrink: 0;
}

.artistic_what .what_cont {
  padding: 15px 0 0 5%;
  width: 50%;
}

.artistic_what .what_hd {
  font-size: 36px;
  color: #e61324;
  font-weight: 700;
  margin: 0 0 35px;
}

.artistic_what .what_txt {
  line-height: 2.125;
}

.artistic_what .what_show {
  margin: 85px 0 0;
  height: 35.22vw;
  position: relative;
  z-index: 1;
}

.artistic_what .what_show .show_img01 {
  position: absolute;
  left: 0;
  bottom: 2.64vw;
  width: 32.65vw;
  z-index: 1;
}

.artistic_what .what_show .show_img02 {
  position: absolute;
  left: 35.715vw;
  bottom: 0;
  width: 20.643vw;
  z-index: 1;
}

.artistic_what .what_show .show_img03 {
  position: absolute;
  left: 47.86vw;
  top: 0;
  width: 16.786vw;
  z-index: 1;
}

.artistic_what .what_show .show_img04 {
  position: absolute;
  right: 0;
  bottom: 2.64vw;
  width: 32.215vw;
  z-index: 1;
}

@media (max-width: 1024px) {
  .artistic_what {
    background-size: 200px 125px;
  }
}
@media (max-width: 767px) {
  .artistic_what {
    padding: 30px 0 0;
    background-image: url("../img/artistic/bg_what_sp.png");
    background-size: 158px 88px;
  }
  .artistic_what:before {
    background-image: url("../img/artistic/bg_what02_sp.png");
    width: 100%;
    height: 58.13vw;
    bottom: 17.33vw;
  }
  .artistic_what .what_box {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
  .artistic_what .what_img {
    width: 250px;
  }
  .artistic_what .what_cont {
    padding: 0;
    width: 100%;
  }
  .artistic_what .what_hd {
    font-size: 20px;
    margin: 0 0 15px;
  }
  .artistic_what .what_txt {
    line-height: 1.85;
  }
  .artistic_what .what_show {
    margin: 40px 0 0;
    height: 69.87vw;
  }
  .artistic_what .what_show .show_img01 {
    left: 0;
    bottom: auto;
    top: 0;
    width: 40.8vw;
  }
  .artistic_what .what_show .show_img02 {
    left: 22.4vw;
    bottom: 5.07vw;
    width: 24.8vw;
  }
  .artistic_what .what_show .show_img03 {
    left: 52.8vw;
    top: 8vw;
    width: 21.06vw;
  }
  .artistic_what .what_show .show_img04 {
    right: 0;
    bottom: 0;
    width: 40.8vw;
  }
}
.active_players {
  padding: 95px 0 100px;
}

.active_players .players_hd {
  padding: 0 20px;
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.24;
  margin: 0 0 40px;
  color: #1c1818;
}

.active_players .players_swiper {
  overflow: hidden;
}

.active_players .players_list {
  display: flex;
  align-items: stretch;
  gap: 0 30px;
  white-space: nowrap;
  width: max-content;
}

.active_players .players_list li {
  flex-shrink: 0;
  width: 285px;
}

.active_players .players_list li .player_item {
  display: block;
  position: relative;
}

.active_players .players_list li a:hover {
  opacity: 0.7;
}

.active_players .players_list .player_img {
  position: relative;
  background-color: transparent;
}
.active_players .players_list .player_img::before {
  content: "";
  display: block;
  padding-top: 133.3333333333%;
}
.active_players .players_list .player_img img,
.active_players .players_list .player_img iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.active_players .players_list .player_img img {
  width: 100%;
}

.active_players .players_btn {
  margin: 50px 0 0;
  padding: 0 20px;
}

@media (max-width: 767px) {
  .active_players {
    padding: 55px 0 50px;
  }
  .active_players .players_hd {
    font-size: 25px;
    margin: 0 0 25px;
  }
  .active_players .players_list {
    gap: 0 20px;
  }
  .active_players .players_list li {
    width: 220px;
  }
  .active_players .players_list li a:hover {
    opacity: 1;
  }
  .active_players .players_btn {
    margin: 30px 0 0;
  }
}
.artistic_record {
  background: #faf3f4;
  padding: 100px 0 40px;
}

.artistic_record .record_mess {
  margin: 0 0 50px;
  border-bottom: 1px #b0b3bf solid;
  padding: 0 0 25px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 10px;
}

.artistic_record .record_btn {
  margin: 50px 0 0;
}

@media (max-width: 767px) {
  .artistic_record {
    padding: 40px 0 20px;
  }
  .artistic_record .record_mess {
    margin: 0 0 30px;
    padding: 0 0 15px;
    gap: 5px;
  }
  .artistic_record .record_btn {
    margin: 30px 0 0;
  }
}
.artistic_event {
  background: #faf3f4;
  padding: 40px 20px 30px;
}

.artistic_event .artistic_event_box {
  background-image: url("../img/common/bg_lattice_wh.png");
  background-position: 0 0;
  background-repeat: repeat;
  max-width: 1340px;
  margin: 0 auto;
  padding: 60px 0 50px;
}
.artistic_event .artistic_event_box .tab-contents .event-wrap {
  display: none;
}
.artistic_event .artistic_event_box .tab-contents .event-wrap.active {
  display: block;
}

.artistic_event .artistic_event_mess {
  padding: 0 0 25px;
  border-bottom: 1px #b0b3bf solid;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 20px;
}

.artistic_event .artistic_event_btn {
  display: flex;
  align-items: stretch;
  gap: 10px;
  flex-shrink: 0;
}

.artistic_event .artistic_event_btn a {
  width: 200px;
  height: 50px;
  padding: 3px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
  color: #1c1818;
  border: 1px #e50012 solid;
  font-weight: 700;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
}

.artistic_event .artistic_event_btn a:hover {
  opacity: 0.7;
}

.artistic_event .artistic_event_btn .active {
  background: #e50012;
  color: #fff;
}

.artistic_event .artistic_event_link {
  margin: 50px 0 0;
  display: flex;
  justify-content: flex-end;
}

.artistic_event .artistic_event_link a {
  display: flex;
  gap: 15px;
  align-items: center;
  text-decoration: underline;
}

.artistic_event .artistic_event_link a:after {
  content: "";
  background-image: url("../img/common/arrow_more.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 22px;
  height: 22px;
}

.artistic_event .artistic_event_link a:hover {
  opacity: 0.7;
}

@media (max-width: 767px) {
  .artistic_event {
    padding: 20px 10px 40px;
  }
  .artistic_event .artistic_event_box {
    background-size: 6px 6px;
    padding: 40px 0 35px;
  }
  .artistic_event .artistic_event_mess {
    padding: 0;
    border-bottom: none;
    display: block;
    margin: 0 0 10px;
  }
  .artistic_event .artistic_event_btn {
    border-top: 1px #b0b3bf solid;
    margin: 10px 0 0;
    padding: 20px 0 0;
    gap: 5px;
  }
  .artistic_event .artistic_event_btn a {
    width: calc((100% - 5px) / 2);
    height: 40px;
    padding: 2px 0 0;
    font-size: 12px;
  }
  .artistic_event .artistic_event_btn a:hover {
    opacity: 1;
  }
  .artistic_event .artistic_event_link {
    margin: 30px 0 0;
  }
  .artistic_event .artistic_event_link a {
    gap: 10px;
  }
  .artistic_event .artistic_event_link a:after {
    width: 20px;
    height: 20px;
  }
  .artistic_event .artistic_event_link a:hover {
    opacity: 1;
  }
}
.artistic_news {
  padding: 90px 0 30px;
}

.artistic_news .artistic_news_box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.artistic_news .artistic_news_mess {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
  padding: 30px 0 0;
}

.artistic_news .artistic_news_btn a {
  width: 250px;
  height: 70px;
  padding: 0 50px 0 30px;
  justify-content: flex-start;
}

.artistic_news .artistic_news_btn .arrow {
  width: 30px;
  height: 30px;
}

.artistic_news .artistic_news_cont {
  width: 65%;
}

@media (max-width: 1024px) {
  .artistic_news .artistic_news_box {
    flex-direction: column;
    gap: 40px;
    padding: 0 0 140px;
  }
  .artistic_news .artistic_news_mess {
    padding: 0;
  }
  .artistic_news .artistic_news_btn {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
  }
  .artistic_news .artistic_news_cont {
    width: 100%;
  }
  .artistic_news .artistic_news_btn a {
    width: 400px;
    height: 90px;
    padding: 0 70px;
    justify-content: center;
  }
  .artistic_news .artistic_news_btn .arrow {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 767px) {
  .artistic_news {
    padding: 40px 0 25px;
  }
  .artistic_news .artistic_news_box {
    gap: 10px;
    padding: 0 0 90px;
  }
  .artistic_news .artistic_news_btn a {
    width: 250px;
    height: 60px;
    padding: 0 50px;
  }
  .artistic_news .artistic_news_btn .arrow {
    width: 26px;
    height: 26px;
  }
}
.artistic_ticket {
  padding: 30px 0 80px;
  position: relative;
  z-index: 1;
}

.artistic_ticket .artistic_ticket_bnr {
  margin: 40px 0 0;
}

@media (max-width: 767px) {
  .artistic_ticket {
    padding: 25px 0 100px;
  }
  .artistic_ticket .artistic_ticket_bnr {
    margin: 25px 0 0;
  }
}
@media (max-width: 767px) {
  .artistic_other .section_hdl .hdl_jps {
    font-size: min(20px, 5.34vw);
    letter-spacing: -0.05em;
  }
  .artistic_other .section_hdl .hdl_jps .visible-tab {
    display: none !important;
  }
}
.artistic_sponsor {
  padding-bottom: 200px;
}
@media screen and (max-width: 767.99px) {
  .artistic_sponsor {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 767.99px) {
  .artistic_sponsor .sponsor-imgs {
    gap: 0 2%;
  }
  .artistic_sponsor .sponsor-imgs .img {
    width: 23.5%;
  }
}

/* XXXXXX
----------------------------------------------- */
.to-top {
  position: fixed;
  z-index: 100;
  bottom: 50px;
  right: 50px;
}
@media screen and (max-width: 767.99px) {
  .to-top {
    bottom: 20px;
    right: 20px;
  }
}
.to-top img {
  width: 80px;
}
@media screen and (max-width: 767.99px) {
  .to-top img {
    width: 40px;
  }
}

#header .search-box {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -126px;
  max-width: 1000px;
  width: 100%;
  visibility: hidden;
  z-index: -1;
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  #header .search-box {
    display: none;
  }
}
#header .search-box.active {
  visibility: visible;
  z-index: 5;
  opacity: 1;
}
#header .search-box .search-inner {
  max-width: 500px;
  width: 100%;
  margin-left: auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
}
#header .search-box .search-inner .search-headline {
  margin-bottom: 15px;
  font-size: 14px;
}
#header .search-box .search-inner form .form-inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 15px;
}
#header .search-box .search-inner form .form-inner input[type=text] {
  flex-grow: 1;
  height: 40px;
  padding-inline: 20px;
  border-radius: 3px;
  border: solid 1px #bfbfbf;
  background-color: #efefef;
  font-size: 12px;
}
#header .search-box .search-inner form .form-inner input[type=text]:placeholder-shown {
  color: #b9b9b9;
}
#header .search-box .search-inner form .form-inner input[type=text]::-webkit-input-placeholder {
  color: #b9b9b9;
}
#header .search-box .search-inner form .form-inner input[type=text]:-moz-placeholder {
  color: #b9b9b9;
}
#header .search-box .search-inner form .form-inner input[type=text]::-moz-placeholder {
  color: #b9b9b9;
}
#header .search-box .search-inner form .form-inner input[type=text]:-ms-input-placeholder {
  color: #b9b9b9;
}
#header .search-box .search-inner form .form-inner input[type=submit] {
  width: 85px;
  height: 35px;
  background-color: #e61324;
  color: #fff;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  #header .search-box .search-inner form .form-inner input[type=submit]:hover {
    cursor: pointer;
  }
}
#header .navbar-collapse .search-box {
  position: static;
  transform: none;
  display: block;
  visibility: visible;
  opacity: 1;
  max-width: 100%;
  margin-block: 20px;
  display: none;
}
#header .navbar-collapse .search-box .search-inner {
  max-width: 100%;
  padding: 0;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-bold {
  font-weight: bold;
}

.text-white {
  color: #fff;
}

.lh10 {
  line-height: 1em;
}

.lh11 {
  line-height: 1.1em;
}

.lh12 {
  line-height: 1.2em;
}

.lh13 {
  line-height: 1.3em;
}

.lh14 {
  line-height: 1.4em;
}

.lh15 {
  line-height: 1.5em;
}

.lh16 {
  line-height: 1.6em;
}

.lh17 {
  line-height: 1.7em;
}

.lh18 {
  line-height: 1.8em;
}

.lh19 {
  line-height: 1.9em;
}

.lh20 {
  line-height: 2em;
}

.lh21 {
  line-height: 2.1em;
}

.lh22 {
  line-height: 2.2em;
}

.lh23 {
  line-height: 2.3em;
}

.lh24 {
  line-height: 2.4em;
}

.lh25 {
  line-height: 2.5em;
}

.lh26 {
  line-height: 2.6em;
}

.lh27 {
  line-height: 2.7em;
}

.lh28 {
  line-height: 2.8em;
}

.lh29 {
  line-height: 2.9em;
}

.lh30 {
  line-height: 3em;
}

.lh31 {
  line-height: 3.1em;
}

.lh32 {
  line-height: 3.2em;
}

.lh33 {
  line-height: 3.3em;
}

.lh34 {
  line-height: 3.4em;
}

.lh35 {
  line-height: 3.5em;
}

.lh36 {
  line-height: 3.6em;
}

.lh37 {
  line-height: 3.7em;
}

.lh38 {
  line-height: 3.8em;
}

.lh39 {
  line-height: 3.9em;
}

.lh40 {
  line-height: 4em;
}

@media screen and (max-width: 767.99px) {
  .lhs10 {
    line-height: 1em;
  }
  .lhs11 {
    line-height: 1.1em;
  }
  .lhs12 {
    line-height: 1.2em;
  }
  .lhs13 {
    line-height: 1.3em;
  }
  .lhs14 {
    line-height: 1.4em;
  }
  .lhs15 {
    line-height: 1.5em;
  }
  .lhs16 {
    line-height: 1.6em;
  }
  .lhs17 {
    line-height: 1.7em;
  }
  .lhs18 {
    line-height: 1.8em;
  }
  .lhs19 {
    line-height: 1.9em;
  }
  .lhs20 {
    line-height: 2em;
  }
  .lhs21 {
    line-height: 2.1em;
  }
  .lhs22 {
    line-height: 2.2em;
  }
  .lhs23 {
    line-height: 2.3em;
  }
  .lhs24 {
    line-height: 2.4em;
  }
  .lhs25 {
    line-height: 2.5em;
  }
  .lhs26 {
    line-height: 2.6em;
  }
  .lhs27 {
    line-height: 2.7em;
  }
  .lhs28 {
    line-height: 2.8em;
  }
  .lhs29 {
    line-height: 2.9em;
  }
  .lhs30 {
    line-height: 3em;
  }
  .lhs31 {
    line-height: 3.1em;
  }
  .lhs32 {
    line-height: 3.2em;
  }
  .lhs33 {
    line-height: 3.3em;
  }
  .lhs34 {
    line-height: 3.4em;
  }
  .lhs35 {
    line-height: 3.5em;
  }
  .lhs36 {
    line-height: 3.6em;
  }
  .lhs37 {
    line-height: 3.7em;
  }
  .lhs38 {
    line-height: 3.8em;
  }
  .lhs39 {
    line-height: 3.9em;
  }
  .lhs40 {
    line-height: 4em;
  }
}
.fs10 {
  font-size: 10px;
}

.fs11 {
  font-size: 11px;
}

.fs12 {
  font-size: 12px;
}

.fs13 {
  font-size: 13px;
}

.fs14 {
  font-size: 14px;
}

.fs15 {
  font-size: 15px;
}

.fs16 {
  font-size: 16px;
}

.fs17 {
  font-size: 17px;
}

.fs18 {
  font-size: 18px;
}

.fs19 {
  font-size: 19px;
}

.fs20 {
  font-size: 20px;
}

.fs21 {
  font-size: 21px;
}

.fs22 {
  font-size: 22px;
}

.fs23 {
  font-size: 23px;
}

.fs24 {
  font-size: 24px;
}

.fs25 {
  font-size: 25px;
}

.fs26 {
  font-size: 26px;
}

.fs27 {
  font-size: 27px;
}

.fs28 {
  font-size: 28px;
}

.fs29 {
  font-size: 29px;
}

.fs30 {
  font-size: 30px;
}

.fs31 {
  font-size: 31px;
}

.fs32 {
  font-size: 32px;
}

.fs33 {
  font-size: 33px;
}

.fs34 {
  font-size: 34px;
}

.fs35 {
  font-size: 35px;
}

.fs36 {
  font-size: 36px;
}

.fs37 {
  font-size: 37px;
}

.fs38 {
  font-size: 38px;
}

.fs39 {
  font-size: 39px;
}

.fs40 {
  font-size: 40px;
}

@media screen and (max-width: 767.99px) {
  .fss10 {
    font-size: min(calc(0.0090909091 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0111111111 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.0133333333 * 100vw));
  }
  .fss11 {
    font-size: min(calc(0.01 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0122222222 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.0146666667 * 100vw));
  }
  .fss12 {
    font-size: min(calc(0.0109090909 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0133333333 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.016 * 100vw));
  }
  .fss13 {
    font-size: min(calc(0.0118181818 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0144444444 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.0173333333 * 100vw));
  }
  .fss14 {
    font-size: min(calc(0.0127272727 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0155555556 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.0186666667 * 100vw));
  }
  .fss15 {
    font-size: min(calc(0.0136363636 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0166666667 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.02 * 100vw));
  }
  .fss16 {
    font-size: min(calc(0.0145454545 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0177777778 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.0213333333 * 100vw));
  }
  .fss17 {
    font-size: min(calc(0.0154545455 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0188888889 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.0226666667 * 100vw));
  }
  .fss18 {
    font-size: min(calc(0.0163636364 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.02 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.024 * 100vw));
  }
  .fss19 {
    font-size: min(calc(0.0172727273 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0211111111 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.0253333333 * 100vw));
  }
  .fss20 {
    font-size: min(calc(0.0181818182 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0222222222 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.0266666667 * 100vw));
  }
  .fss21 {
    font-size: min(calc(0.0190909091 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0233333333 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.028 * 100vw));
  }
  .fss22 {
    font-size: min(calc(0.02 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0244444444 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.0293333333 * 100vw));
  }
  .fss23 {
    font-size: min(calc(0.0209090909 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0255555556 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.0306666667 * 100vw));
  }
  .fss24 {
    font-size: min(calc(0.0218181818 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0266666667 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.032 * 100vw));
  }
  .fss25 {
    font-size: min(calc(0.0227272727 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0277777778 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.0333333333 * 100vw));
  }
  .fss26 {
    font-size: min(calc(0.0236363636 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0288888889 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.0346666667 * 100vw));
  }
  .fss27 {
    font-size: min(calc(0.0245454545 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.03 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.036 * 100vw));
  }
  .fss28 {
    font-size: min(calc(0.0254545455 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0311111111 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.0373333333 * 100vw));
  }
  .fss29 {
    font-size: min(calc(0.0263636364 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0322222222 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.0386666667 * 100vw));
  }
  .fss30 {
    font-size: min(calc(0.0272727273 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0333333333 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.04 * 100vw));
  }
  .fss31 {
    font-size: min(calc(0.0281818182 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0344444444 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.0413333333 * 100vw));
  }
  .fss32 {
    font-size: min(calc(0.0290909091 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0355555556 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.0426666667 * 100vw));
  }
  .fss33 {
    font-size: min(calc(0.03 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0366666667 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.044 * 100vw));
  }
  .fss34 {
    font-size: min(calc(0.0309090909 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0377777778 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.0453333333 * 100vw));
  }
  .fss35 {
    font-size: min(calc(0.0318181818 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0388888889 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.0466666667 * 100vw));
  }
  .fss36 {
    font-size: min(calc(0.0327272727 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.04 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.048 * 100vw));
  }
  .fss37 {
    font-size: min(calc(0.0336363636 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0411111111 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.0493333333 * 100vw));
  }
  .fss38 {
    font-size: min(calc(0.0345454545 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0422222222 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.0506666667 * 100vw));
  }
  .fss39 {
    font-size: min(calc(0.0354545455 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0433333333 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.052 * 100vw));
  }
  .fss40 {
    font-size: min(calc(0.0363636364 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0444444444 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.0533333333 * 100vw));
  }
}
.mt0 {
  margin-top: 0px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mt65 {
  margin-top: 65px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mt75 {
  margin-top: 75px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mt85 {
  margin-top: 85px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mt95 {
  margin-top: 95px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.mt105 {
  margin-top: 105px !important;
}

.mt110 {
  margin-top: 110px !important;
}

.mt115 {
  margin-top: 115px !important;
}

.mt120 {
  margin-top: 120px !important;
}

.mt125 {
  margin-top: 125px !important;
}

.mt130 {
  margin-top: 130px !important;
}

.mt135 {
  margin-top: 135px !important;
}

.mt140 {
  margin-top: 140px !important;
}

.mt145 {
  margin-top: 145px !important;
}

.mt150 {
  margin-top: 150px !important;
}

@media screen and (max-width: 767.99px) {
  .mts0 {
    margin-top: min(calc(0 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0 * 100vw)) !important;
  }
  .mts5 {
    margin-top: min(calc(0.0045454545 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0055555556 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.0066666667 * 100vw)) !important;
  }
  .mts10 {
    margin-top: min(calc(0.0090909091 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0111111111 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.0133333333 * 100vw)) !important;
  }
  .mts15 {
    margin-top: min(calc(0.0136363636 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0166666667 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.02 * 100vw)) !important;
  }
  .mts20 {
    margin-top: min(calc(0.0181818182 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0222222222 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.0266666667 * 100vw)) !important;
  }
  .mts25 {
    margin-top: min(calc(0.0227272727 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0277777778 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.0333333333 * 100vw)) !important;
  }
  .mts30 {
    margin-top: min(calc(0.0272727273 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0333333333 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.04 * 100vw)) !important;
  }
  .mts35 {
    margin-top: min(calc(0.0318181818 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0388888889 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.0466666667 * 100vw)) !important;
  }
  .mts40 {
    margin-top: min(calc(0.0363636364 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0444444444 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.0533333333 * 100vw)) !important;
  }
  .mts45 {
    margin-top: min(calc(0.0409090909 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.05 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.06 * 100vw)) !important;
  }
  .mts50 {
    margin-top: min(calc(0.0454545455 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0555555556 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.0666666667 * 100vw)) !important;
  }
  .mts55 {
    margin-top: min(calc(0.05 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0611111111 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.0733333333 * 100vw)) !important;
  }
  .mts60 {
    margin-top: min(calc(0.0545454545 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0666666667 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.08 * 100vw)) !important;
  }
  .mts65 {
    margin-top: min(calc(0.0590909091 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0722222222 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.0866666667 * 100vw)) !important;
  }
  .mts70 {
    margin-top: min(calc(0.0636363636 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0777777778 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.0933333333 * 100vw)) !important;
  }
  .mts75 {
    margin-top: min(calc(0.0681818182 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0833333333 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.1 * 100vw)) !important;
  }
  .mts80 {
    margin-top: min(calc(0.0727272727 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0888888889 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.1066666667 * 100vw)) !important;
  }
  .mts85 {
    margin-top: min(calc(0.0772727273 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0944444444 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.1133333333 * 100vw)) !important;
  }
  .mts90 {
    margin-top: min(calc(0.0818181818 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.1 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.12 * 100vw)) !important;
  }
  .mts95 {
    margin-top: min(calc(0.0863636364 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.1055555556 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.1266666667 * 100vw)) !important;
  }
  .mts100 {
    margin-top: min(calc(0.0909090909 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.1111111111 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.1333333333 * 100vw)) !important;
  }
  .mts105 {
    margin-top: min(calc(0.0954545455 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.1166666667 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.14 * 100vw)) !important;
  }
  .mts110 {
    margin-top: min(calc(0.1 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.1222222222 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.1466666667 * 100vw)) !important;
  }
  .mts115 {
    margin-top: min(calc(0.1045454545 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.1277777778 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.1533333333 * 100vw)) !important;
  }
  .mts120 {
    margin-top: min(calc(0.1090909091 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.1333333333 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.16 * 100vw)) !important;
  }
  .mts125 {
    margin-top: min(calc(0.1136363636 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.1388888889 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.1666666667 * 100vw)) !important;
  }
  .mts130 {
    margin-top: min(calc(0.1181818182 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.1444444444 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.1733333333 * 100vw)) !important;
  }
  .mts135 {
    margin-top: min(calc(0.1227272727 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.15 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.18 * 100vw)) !important;
  }
  .mts140 {
    margin-top: min(calc(0.1272727273 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.1555555556 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.1866666667 * 100vw)) !important;
  }
  .mts145 {
    margin-top: min(calc(0.1318181818 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.1611111111 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.1933333333 * 100vw)) !important;
  }
  .mts150 {
    margin-top: min(calc(0.1363636364 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.1666666667 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.2 * 100vw)) !important;
  }
}
.mb0 {
  margin-bottom: 0px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb85 {
  margin-bottom: 85px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb95 {
  margin-bottom: 95px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.mb105 {
  margin-bottom: 105px !important;
}

.mb110 {
  margin-bottom: 110px !important;
}

.mb115 {
  margin-bottom: 115px !important;
}

.mb120 {
  margin-bottom: 120px !important;
}

.mb125 {
  margin-bottom: 125px !important;
}

.mb130 {
  margin-bottom: 130px !important;
}

.mb135 {
  margin-bottom: 135px !important;
}

.mb140 {
  margin-bottom: 140px !important;
}

.mb145 {
  margin-bottom: 145px !important;
}

.mb150 {
  margin-bottom: 150px !important;
}

@media screen and (max-width: 767.99px) {
  .mbs0 {
    margin-bottom: min(calc(0 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0 * 100vw)) !important;
  }
  .mbs5 {
    margin-bottom: min(calc(0.0045454545 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0055555556 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.0066666667 * 100vw)) !important;
  }
  .mbs10 {
    margin-bottom: min(calc(0.0090909091 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0111111111 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.0133333333 * 100vw)) !important;
  }
  .mbs15 {
    margin-bottom: min(calc(0.0136363636 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0166666667 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.02 * 100vw)) !important;
  }
  .mbs20 {
    margin-bottom: min(calc(0.0181818182 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0222222222 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.0266666667 * 100vw)) !important;
  }
  .mbs25 {
    margin-bottom: min(calc(0.0227272727 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0277777778 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.0333333333 * 100vw)) !important;
  }
  .mbs30 {
    margin-bottom: min(calc(0.0272727273 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0333333333 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.04 * 100vw)) !important;
  }
  .mbs35 {
    margin-bottom: min(calc(0.0318181818 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0388888889 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.0466666667 * 100vw)) !important;
  }
  .mbs40 {
    margin-bottom: min(calc(0.0363636364 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0444444444 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.0533333333 * 100vw)) !important;
  }
  .mbs45 {
    margin-bottom: min(calc(0.0409090909 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.05 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.06 * 100vw)) !important;
  }
  .mbs50 {
    margin-bottom: min(calc(0.0454545455 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0555555556 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.0666666667 * 100vw)) !important;
  }
  .mbs55 {
    margin-bottom: min(calc(0.05 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0611111111 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.0733333333 * 100vw)) !important;
  }
  .mbs60 {
    margin-bottom: min(calc(0.0545454545 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0666666667 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.08 * 100vw)) !important;
  }
  .mbs65 {
    margin-bottom: min(calc(0.0590909091 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0722222222 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.0866666667 * 100vw)) !important;
  }
  .mbs70 {
    margin-bottom: min(calc(0.0636363636 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0777777778 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.0933333333 * 100vw)) !important;
  }
  .mbs75 {
    margin-bottom: min(calc(0.0681818182 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0833333333 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.1 * 100vw)) !important;
  }
  .mbs80 {
    margin-bottom: min(calc(0.0727272727 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0888888889 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.1066666667 * 100vw)) !important;
  }
  .mbs85 {
    margin-bottom: min(calc(0.0772727273 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.0944444444 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.1133333333 * 100vw)) !important;
  }
  .mbs90 {
    margin-bottom: min(calc(0.0818181818 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.1 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.12 * 100vw)) !important;
  }
  .mbs95 {
    margin-bottom: min(calc(0.0863636364 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.1055555556 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.1266666667 * 100vw)) !important;
  }
  .mbs100 {
    margin-bottom: min(calc(0.0909090909 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.1111111111 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.1333333333 * 100vw)) !important;
  }
  .mbs105 {
    margin-bottom: min(calc(0.0954545455 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.1166666667 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.14 * 100vw)) !important;
  }
  .mbs110 {
    margin-bottom: min(calc(0.1 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.1222222222 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.1466666667 * 100vw)) !important;
  }
  .mbs115 {
    margin-bottom: min(calc(0.1045454545 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.1277777778 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.1533333333 * 100vw)) !important;
  }
  .mbs120 {
    margin-bottom: min(calc(0.1090909091 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.1333333333 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.16 * 100vw)) !important;
  }
  .mbs125 {
    margin-bottom: min(calc(0.1136363636 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.1388888889 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.1666666667 * 100vw)) !important;
  }
  .mbs130 {
    margin-bottom: min(calc(0.1181818182 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.1444444444 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.1733333333 * 100vw)) !important;
  }
  .mbs135 {
    margin-bottom: min(calc(0.1227272727 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.15 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.18 * 100vw)) !important;
  }
  .mbs140 {
    margin-bottom: min(calc(0.1272727273 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.1555555556 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.1866666667 * 100vw)) !important;
  }
  .mbs145 {
    margin-bottom: min(calc(0.1318181818 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.1611111111 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.1933333333 * 100vw)) !important;
  }
  .mbs150 {
    margin-bottom: min(calc(0.1363636364 * 100vw) + calc(max(600px - 100vw, 0px) * 2000), calc(0.1666666667 * 100vw) + calc(max(450px - 100vw, 0px) * 2000), calc(0.2 * 100vw)) !important;
  }
}
.pt0 {
  padding-top: 0px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pt65 {
  padding-top: 65px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pt75 {
  padding-top: 75px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pt85 {
  padding-top: 85px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.pt95 {
  padding-top: 95px !important;
}

.pt100 {
  padding-top: 100px !important;
}

.pt105 {
  padding-top: 105px !important;
}

.pt110 {
  padding-top: 110px !important;
}

.pt115 {
  padding-top: 115px !important;
}

.pt120 {
  padding-top: 120px !important;
}

.pt125 {
  padding-top: 125px !important;
}

.pt130 {
  padding-top: 130px !important;
}

.pt135 {
  padding-top: 135px !important;
}

.pt140 {
  padding-top: 140px !important;
}

.pt145 {
  padding-top: 145px !important;
}

.pt150 {
  padding-top: 150px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pb55 {
  padding-bottom: 55px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pb65 {
  padding-bottom: 65px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pb75 {
  padding-bottom: 75px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pb85 {
  padding-bottom: 85px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.pb95 {
  padding-bottom: 95px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

.pb105 {
  padding-bottom: 105px !important;
}

.pb110 {
  padding-bottom: 110px !important;
}

.pb115 {
  padding-bottom: 115px !important;
}

.pb120 {
  padding-bottom: 120px !important;
}

.pb125 {
  padding-bottom: 125px !important;
}

.pb130 {
  padding-bottom: 130px !important;
}

.pb135 {
  padding-bottom: 135px !important;
}

.pb140 {
  padding-bottom: 140px !important;
}

.pb145 {
  padding-bottom: 145px !important;
}

.pb150 {
  padding-bottom: 150px !important;
}

.c-flex {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
}
@media screen and (max-width: 767.99px) {
  .c-flex {
    flex-direction: column;
  }
}

.c-table {
  width: 100%;
  border-left: 1px #dbe0e7 solid;
  border-top: 1px #dbe0e7 solid;
}
.c-table th,
.c-table td {
  font-weight: 500;
  border-right: 1px #dbe0e7 solid;
  border-bottom: 1px #dbe0e7 solid;
  vertical-align: top;
  background: #fff;
  line-height: 1.5;
  padding: 18px 25px;
}
@media screen and (max-width: 767.99px) {
  .c-table th,
  .c-table td {
    padding: 15px;
  }
}
.c-table th {
  background: #eaedf1;
}

.c-inner.w1100 {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1180px) {
  .c-inner.w1100 {
    max-width: 100%;
    padding-inline: 20px;
  }
}
.c-inner.w1000 {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1080px) {
  .c-inner.w1000 {
    max-width: 100%;
    padding-inline: 20px;
  }
}

.c-category-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 30px;
}
@media screen and (max-width: 767.99px) {
  .c-category-list {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 15px 0;
  }
}
.c-category-list .list-headline {
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 767.99px) {
  .c-category-list .list-headline {
    font-size: 16px;
  }
}
.c-category-list ul {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 0 15px;
}
@media screen and (max-width: 767.99px) {
  .c-category-list ul {
    width: 100%;
    gap: 10px;
  }
}
.c-category-list ul li {
  width: 170px;
}
@media screen and (max-width: 767.99px) {
  .c-category-list ul li {
    width: calc((100% - 10px) / 2);
  }
}
.c-category-list ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 100%;
  height: 45px;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  background-color: #b0b3bf;
}
@media screen and (max-width: 767.99px) {
  .c-category-list ul li a {
    font-size: 14px;
    border-radius: 4px;
  }
}
.c-category-list ul li a:hover, .c-category-list ul li a.current {
  background-color: #e61324;
  text-decoration: underline;
}

.c-teaser {
  padding-block: 100px 65px;
}

.c-contents-box {
  margin-top: 30px;
  padding-block: 60px 180px;
}
@media screen and (max-width: 767.99px) {
  .c-contents-box {
    padding-block: 30px 80px;
  }
}
.c-contents-box.border-red {
  border-top: 2px #e61324 solid;
}

.c-white-box {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-block: 50px 80px;
  background-color: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 1240px) {
  .c-white-box {
    width: calc(100% - 40px);
    margin-inline: 20px;
  }
}

.c-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 40px 0;
}
@media screen and (max-width: 767.99px) {
  .c-list {
    margin: 35px 0 25px;
  }
}
.c-list li {
  font-weight: 700;
  line-height: 1.5;
  padding: 0 0 0 22px;
  position: relative;
}
@media screen and (max-width: 767.99px) {
  .c-list li {
    line-height: 1.85;
    padding: 0 0 0 16px;
  }
}
.c-list li::before {
  position: absolute;
  content: "";
  background: #e61324;
  width: 12px;
  height: 12px;
  left: 0;
  top: 5px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  z-index: 0;
}
@media screen and (max-width: 767.99px) {
  .c-list li::before {
    width: 8px;
    height: 8px;
    top: 6px;
  }
}

.c-number-list {
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 767.99px) {
  .c-number-list {
    margin: 25px 0 30px;
  }
}
.c-number-list li {
  line-height: 1.5;
  font-weight: 700;
  counter-increment: my-counter;
  padding: 0 0 0 22px;
  position: relative;
}
@media screen and (max-width: 767.99px) {
  .c-number-list li {
    line-height: 1.85;
    padding: 0 0 0 16px;
  }
}
.c-number-list li::before {
  position: absolute;
  left: 0;
  top: -2px;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  line-height: 1.5;
  content: counter(my-counter) ".";
  color: #e61324;
}
@media screen and (max-width: 767.99px) {
  .c-number-list li::before {
    font-size: 14px;
    top: 0;
  }
}

/*--------------------------
SUB
----------------------------*/
/*--------------------------
COACH
----------------------------*/
article.coach .view_other .section_hdl {
  max-width: 200px;
}
article.coach .view_other .section_hdl .hdl_jps {
  font-size: 22px;
}
@media screen and (min-width: 768px) {
  article.coach .view_other .other_box {
    gap: 20px 2.5%;
  }
  article.coach .view_other .other_box li {
    width: 48.75%;
  }
}

article.coach_movie .con-box01 {
  padding-bottom: 150px;
}
article.coach_movie .con-box01 .list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 60px 5%;
}
@media screen and (max-width: 767.99px) {
  article.coach_movie .con-box01 .list {
    gap: 15px 0;
  }
}
article.coach_movie .con-box01 .list .list-item {
  width: 47.5%;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 16px 4px rgba(0, 0, 0, 0.08);
  background-color: #fff;
}
@media screen and (max-width: 767.99px) {
  article.coach_movie .con-box01 .list .list-item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    display: -webkit-flex;
    flex-wrap: nowrap;
    gap: 0 15px;
    width: 100%;
    padding: 20px;
  }
}
@media screen and (min-width: 768px) {
  article.coach_movie .con-box01 .list .list-item .item-movie {
    position: relative;
    background-color: transparent;
  }
  article.coach_movie .con-box01 .list .list-item .item-movie::before {
    content: "";
    display: block;
    padding-top: 56.862745098%;
  }
  article.coach_movie .con-box01 .list .list-item .item-movie img,
  article.coach_movie .con-box01 .list .list-item .item-movie iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media screen and (max-width: 767.99px) {
  article.coach_movie .con-box01 .list .list-item .item-movie {
    flex-shrink: 0;
    width: 30%;
    min-width: 150px;
  }
  article.coach_movie .con-box01 .list .list-item .item-movie iframe {
    width: 100%;
    height: 100%;
    aspect-ratio: 200/160;
  }
}
@media screen and (max-width: 500px) {
  article.coach_movie .con-box01 .list .list-item .item-movie {
    min-width: initial;
    width: 110px;
  }
}
article.coach_movie .con-box01 .list .list-item .item-title {
  margin-top: 30px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.8;
}
@media screen and (max-width: 767.99px) {
  article.coach_movie .con-box01 .list .list-item .item-title {
    margin-top: 0;
    font-size: 16px;
  }
}
article.coach_movie .con-box01 .list .list-item .item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  margin-top: 30px;
}
@media screen and (max-width: 767.99px) {
  article.coach_movie .con-box01 .list .list-item .item-footer {
    display: block;
    margin-top: 20px;
  }
}
article.coach_movie .con-box01 .list .list-item .item-footer .item-tag {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: fit-content;
  padding-inline: 15px;
  height: 40px;
  border-radius: 8px;
  background-color: #e61324;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 767.99px) {
  article.coach_movie .con-box01 .list .list-item .item-footer .item-tag {
    height: 25px;
    border-radius: 4px;
    font-size: 11px;
  }
}
article.coach_movie .con-box01 .list .list-item .item-footer .item-time {
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 767.99px) {
  article.coach_movie .con-box01 .list .list-item .item-footer .item-time {
    margin-top: 10px;
    font-size: 13px;
  }
}

article.coach_document .con-box01 {
  padding-bottom: 150px;
}
article.coach_document .con-box01 .list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 80px 5%;
}
@media screen and (max-width: 767.99px) {
  article.coach_document .con-box01 .list {
    gap: 40px 0;
  }
}
article.coach_document .con-box01 .list .list-item {
  width: 47.5%;
}
@media screen and (max-width: 767.99px) {
  article.coach_document .con-box01 .list .list-item {
    width: 100%;
  }
}
article.coach_document .con-box01 .list .list-item .thumbnail {
  margin-block: 40px;
  text-align: center;
}
@media screen and (max-width: 767.99px) {
  article.coach_document .con-box01 .list .list-item .thumbnail {
    margin-block: 20px;
  }
}
article.coach_document .con-box01 .list .list-item .thumbnail img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
article.coach_document .con-box01 .list .list-item p {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.88;
}
@media screen and (max-width: 767.99px) {
  article.coach_document .con-box01 .list .list-item p {
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.6;
  }
}
article.coach_document .con-box01 .list .list-item .poster_btn {
  margin-top: 40px;
}
@media screen and (max-width: 767.99px) {
  article.coach_document .con-box01 .list .list-item .poster_btn {
    margin-top: 30px;
  }
}

/*--------------------------
CONTACT
----------------------------*/
article.contact .con-box01 .text-box {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 60px;
}
article.contact .con-box01 .text-box p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.9;
}
article.contact .con-box01 .text-box p.small {
  font-size: 14px;
}

article.contact-info .c-teaser {
  padding-block: 60px 30px;
}
article.contact-info .con-box01 .box01 p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.67;
}
@media screen and (max-width: 767.99px) {
  article.contact-info .con-box01 .box01 p {
    font-size: 13px;
  }
}
article.contact-info .con-box01 .box01 p + p {
  margin-top: 30px;
}
article.contact-info .con-box01 .box01 p.small {
  font-size: 14px;
  line-height: 1.8;
}
@media screen and (max-width: 767.99px) {
  article.contact-info .con-box01 .box01 p.small {
    font-size: 11px;
  }
}
article.contact-info .con-box01 .box02 {
  margin-top: 90px;
}
@media screen and (max-width: 767.99px) {
  article.contact-info .con-box01 .box02 {
    margin-top: 60px;
  }
}
article.contact-info .con-box01 .box02 p + .section_hdm {
  margin-top: 90px;
}
@media screen and (max-width: 767.99px) {
  article.contact-info .con-box01 .box02 p + .section_hdm {
    margin-top: 40px;
  }
}
article.contact-info .con-box01 .box02 p a {
  text-decoration: underline;
}

article.contact-media .form_block {
  padding-top: 60px;
}
article.contact-media .form_block .box01 .text {
  margin-bottom: 60px;
}
article.contact-media .form_block .box01 .text span {
  display: block;
}
article.contact-media .form_block .box01 .text span.text01 {
  font-size: 22px;
}
article.contact-media .form_block .box01 .text span.text02 {
  margin-top: 10px;
  font-size: 18px;
}
article.contact-media .form_block .form_box .section_hds {
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
}
article.contact-media .form_block .form_box .section_hds .form_note {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

article.compliance-contact:has(.snow-monkey-form[data-screen=complete]) .compcta_block {
  display: none;
}

/*--------------------------
EVENT
----------------------------*/
article.event-detail .con-box01 {
  padding-bottom: 120px;
}
@media screen and (max-width: 767.99px) {
  article.event-detail .con-box01 {
    padding-bottom: 70px;
  }
}
article.event-detail .con-box01 .box-result {
  margin-bottom: 50px;
}
article.event-detail .con-box01 .box-result .result-headline {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  height: 80px;
  padding-left: 20px;
  background-color: #e61324;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  article.event-detail .con-box01 .box-result .result-headline:hover {
    cursor: pointer;
  }
}
@media screen and (max-width: 767.99px) {
  article.event-detail .con-box01 .box-result .result-headline {
    height: 45px;
    padding-inline: 20px 50px;
    font-size: 16px;
  }
}
article.event-detail .con-box01 .box-result .result-headline.on::after {
  transform: translateY(-50%) rotate(90deg);
}
article.event-detail .con-box01 .box-result .result-headline::before, article.event-detail .con-box01 .box-result .result-headline::after {
  position: absolute;
  content: "";
  background: #fff;
  top: 50%;
  transform: translateY(-50%);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  transition: all 0.3s !important;
  z-index: 0;
}
article.event-detail .con-box01 .box-result .result-headline::before {
  width: 30px;
  height: 2px;
  right: 35px;
}
@media screen and (max-width: 767.99px) {
  article.event-detail .con-box01 .box-result .result-headline::before {
    width: 15px;
    height: 1px;
    right: 20px;
  }
}
article.event-detail .con-box01 .box-result .result-headline::after {
  width: 2px;
  height: 30px;
  right: 48px;
}
@media screen and (max-width: 767.99px) {
  article.event-detail .con-box01 .box-result .result-headline::after {
    width: 1px;
    height: 15px;
    right: 27px;
  }
}
article.event-detail .con-box01 .box-result .result-content {
  display: none;
  padding: 40px 55px;
  background-color: #f8f8f8;
}
@media screen and (max-width: 767.99px) {
  article.event-detail .con-box01 .box-result .result-content {
    padding: 20px;
  }
}
article.event-detail .con-box01 .box-result .result-content p a {
  text-decoration: underline;
}
article.event-detail .con-box01 .box-result .result-content p + p {
  margin-top: 20px;
}
article.event-detail .con-box01 .box-result .result-content table {
  margin-top: 30px;
}
article.event-detail .con-box01 .box-result .result-content table th,
article.event-detail .con-box01 .box-result .result-content table td {
  vertical-align: middle;
}
article.event-detail .con-box01 .box-result .result-content table th {
  text-align: center;
  font-weight: bold;
}
article.event-detail .con-box01 .box-result .result-content table td:nth-of-type(1) {
  padding-inline: 40px;
}
@media screen and (max-width: 767.99px) {
  article.event-detail .con-box01 .box-result .result-content table td:nth-of-type(1) {
    padding-inline: 15px;
  }
}
article.event-detail .con-box01 .box-result .result-content table td:nth-of-type(2) {
  text-align: center;
}
@media screen and (max-width: 767.99px) {
  article.event-detail .con-box01 .box-result .result-content table td:nth-of-type(2) {
    white-space: nowrap;
  }
}
article.event-detail .con-box01 .box-result .result-content table td:nth-of-type(2) a {
  text-decoration: underline;
}
article.event-detail .con-box01 .box01 {
  margin-bottom: 60px;
}
article.event-detail .con-box01 .box01 .inner-box01 {
  gap: 0 50px;
}
@media screen and (max-width: 1000px) {
  article.event-detail .con-box01 .box01 .inner-box01 {
    gap: 0 20px;
  }
  article.event-detail .con-box01 .box01 .inner-box01 .thumbnail {
    width: 50%;
  }
}
@media screen and (max-width: 1000px) and (max-width: 767.99px) {
  article.event-detail .con-box01 .box01 .inner-box01 .thumbnail {
    width: 100%;
    text-align: center;
  }
  article.event-detail .con-box01 .box01 .inner-box01 .thumbnail img {
    width: 70%;
  }
}
@media screen and (max-width: 767.99px) {
  article.event-detail .con-box01 .box01 .inner-box01 {
    gap: 30px 0;
  }
}
article.event-detail .con-box01 .box01 .inner-box01 .content {
  flex-grow: 1;
}
@media screen and (max-width: 767.99px) {
  article.event-detail .con-box01 .box01 .inner-box01 .content {
    width: 100%;
  }
}
article.event-detail .con-box01 .box01 .inner-box01 .content table th {
  width: 135px;
  text-align: center;
}
article.event-detail .con-box01 .box01 .inner-box01 .content table td .com_btn {
  margin-top: 10px;
  justify-content: flex-start;
}
article.event-detail .con-box01 .box01 .inner-box01 .content table td .com_btn a {
  width: 180px;
  height: 33px;
  padding: 0;
  font-size: 14px;
  background-image: url("../img/common/blank_drop_white.png");
  background-repeat: no-repeat;
  background-position: calc(100% - 13px) center;
  background-size: 9px 9px;
}
article.event-detail .con-box01 .box01 .inner-box01 .content table td .com_btn a:hover {
  background-image: url("../img/common/blank_drop_black.png");
}
article.event-detail .con-box01 .box01 .inner-box01 .thumbnail {
  flex-shrink: 0;
  width: 360px;
}
@media screen and (max-width: 1000px) {
  article.event-detail .con-box01 .box01 .inner-box01 .thumbnail {
    width: 40%;
  }
}
@media screen and (max-width: 767.99px) {
  article.event-detail .con-box01 .box01 .inner-box01 .thumbnail {
    width: 100%;
  }
}
article.event-detail .con-box01 .box01 .inner-box01 .outline-btn {
  margin-top: 35px;
}
@media screen and (max-width: 767.99px) {
  article.event-detail .con-box01 .box01 .inner-box01 .outline-btn {
    width: 100%;
    margin-top: 30px;
  }
}
article.event-detail .con-box01 .box01 .inner-box01 .outline-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 380px;
  height: 90px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  background-image: url("../img/common/ico_pdf_white.png");
  background-repeat: no-repeat;
  background-position: 30px center;
  background-size: 31px 39px;
  background-color: #e61324;
}
@media screen and (max-width: 767.99px) {
  article.event-detail .con-box01 .box01 .inner-box01 .outline-btn a {
    max-width: 500px;
    width: 70%;
    height: 55px;
    margin-inline: auto;
    font-size: 13px;
    background-position: 15px center;
    background-size: 20px 24px;
  }
}
article.event-detail .con-box01 .btn01 a {
  width: 480px;
}
@media screen and (max-width: 767.99px) {
  article.event-detail .con-box01 .btn01 a {
    max-width: 100%;
  }
}

article.calendar .con-box01 {
  padding-block: 30px 100px;
}
article.calendar .con-box01 .change-year {
  text-align: right;
}
article.calendar .con-box01 .change-year select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  border-radius: 0;
  width: 185px;
  height: 60px;
  padding-left: 20px;
  border-radius: 8px;
  border: 1px solid #a8adb2;
  background-color: #f8f8f8;
  font-size: 18px;
  font-weight: 500;
  background-image: url("../img/common/ico_select.png");
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) center;
  background-size: 11px 9px;
}
article.calendar .con-box01 #calendar {
  margin-top: 40px;
}
article.calendar .con-box01 #calendar .fc-toolbar-chunk {
  outline: none;
  border: none;
}
article.calendar .con-box01 #calendar .fc-toolbar-chunk button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  border-radius: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 20px;
  font-family: Outfit;
  font-size: 22px;
  font-weight: bold;
  color: #000;
  text-decoration: underline;
}
@media screen and (max-width: 767.99px) {
  article.calendar .con-box01 #calendar .fc-toolbar-chunk button {
    gap: 0 10px;
    font-size: 12px;
  }
}
article.calendar .con-box01 #calendar .fc-toolbar-chunk button.fc-prevYm-button::before {
  content: "";
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background-image: url("../img/common/arrow_right_wh.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 15px 15px;
  background-color: #000;
  transform-origin: center center;
  transform: rotate(180deg);
}
@media screen and (max-width: 767.99px) {
  article.calendar .con-box01 #calendar .fc-toolbar-chunk button.fc-prevYm-button::before {
    width: 25px;
    height: 25px;
    border-radius: 25px;
    background-size: 7px 7px;
  }
}
article.calendar .con-box01 #calendar .fc-toolbar-chunk button.fc-nextYm-button::after {
  content: "";
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background-image: url("../img/common/arrow_right_wh.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 15px 15px;
  background-color: #000;
}
@media screen and (max-width: 767.99px) {
  article.calendar .con-box01 #calendar .fc-toolbar-chunk button.fc-nextYm-button::after {
    width: 25px;
    height: 25px;
    border-radius: 25px;
    background-size: 7px 7px;
  }
}
article.calendar .con-box01 #calendar .fc-toolbar-chunk button:focus {
  box-shadow: none;
}
article.calendar .con-box01 #calendar .fc-toolbar-title {
  font-family: Outfit;
  font-size: 48px;
  font-weight: bold;
  letter-spacing: 2.4px;
}
@media screen and (max-width: 767.99px) {
  article.calendar .con-box01 #calendar .fc-toolbar-title {
    font-size: 24px;
  }
}
article.calendar .con-box01 #calendar .fc-col-header-cell.fc-day {
  font-family: Outfit;
  font-size: 14px;
  font-weight: 400;
  background-color: #e6edf2;
  padding-left: 10px;
  text-align: left;
  text-transform: uppercase;
}
@media screen and (max-width: 767.99px) {
  article.calendar .con-box01 #calendar .fc-col-header-cell.fc-day {
    font-size: 10px;
  }
}
article.calendar .con-box01 #calendar .fc-col-header-cell.fc-day.fc-day-sat {
  background-color: #333ae7;
}
article.calendar .con-box01 #calendar .fc-col-header-cell.fc-day.fc-day-sat a {
  color: #fff;
}
article.calendar .con-box01 #calendar .fc-col-header-cell.fc-day.fc-day-sun {
  background-color: #e61324;
}
article.calendar .con-box01 #calendar .fc-col-header-cell.fc-day.fc-day-sun a {
  color: #fff;
}
article.calendar .con-box01 #calendar .fc-daygrid-day .fc-daygrid-day-top {
  flex-direction: initial;
  font-size: 32px;
  font-weight: 500;
  font-family: Outfit;
}
@media screen and (max-width: 767.99px) {
  article.calendar .con-box01 #calendar .fc-daygrid-day .fc-daygrid-day-top {
    font-size: 13px;
  }
}
article.calendar .con-box01 #calendar .fc-daygrid-day .fc-daygrid-day-top a {
  width: 30px;
  text-align: right;
}
@media screen and (max-width: 767.99px) {
  article.calendar .con-box01 #calendar .fc-daygrid-day .fc-daygrid-day-top a {
    width: 20px;
  }
}
article.calendar .con-box01 .color-information {
  margin-top: 20px;
}
article.calendar .con-box01 .color-information ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 40px;
}
@media screen and (max-width: 767.99px) {
  article.calendar .con-box01 .color-information ul {
    gap: 10px 25px;
    flex-wrap: wrap;
  }
}
article.calendar .con-box01 .color-information ul li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 10px;
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 767.99px) {
  article.calendar .con-box01 .color-information ul li {
    gap: 0 7px;
    font-size: 11px;
  }
}
article.calendar .con-box01 .color-information ul li .square {
  width: 20px;
  height: 20px;
  border-radius: 3px;
}
@media screen and (max-width: 767.99px) {
  article.calendar .con-box01 .color-information ul li .square {
    width: 13px;
    height: 13px;
  }
}

/*--------------------------
HANBAI
----------------------------*/
article.hanbai-detail .news_detail_teaser .inner .teaser_type {
  background-color: #000;
  border-radius: 0;
}
article.hanbai-detail .con-box01 {
  padding-block: 60px 80px;
}
article.hanbai-detail .con-box01 .box {
  align-items: center;
  gap: 0 40px;
}
article.hanbai-detail .con-box01 .box .col.thumbnail {
  flex-shrink: 0;
  width: 415px;
}
@media screen and (max-width: 900px) {
  article.hanbai-detail .con-box01 .box .col.thumbnail {
    width: 40%;
  }
}
@media screen and (max-width: 767.99px) {
  article.hanbai-detail .con-box01 .box .col.thumbnail {
    max-width: 500px;
    width: 100%;
    text-align: center;
  }
  article.hanbai-detail .con-box01 .box .col.thumbnail img {
    width: 70%;
  }
}
article.hanbai-detail .con-box01 .box .col.content {
  flex-grow: 1;
}
@media screen and (max-width: 767.99px) {
  article.hanbai-detail .con-box01 .box .col.content {
    margin-top: 30px;
  }
}
article.hanbai-detail .con-box01 .box .col.content .price {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 10px;
}
article.hanbai-detail .con-box01 .box .col.content .price .price-headline {
  flex-shrink: 0;
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 900px) {
  article.hanbai-detail .con-box01 .box .col.content .price .price-headline {
    font-size: 20px;
  }
}
@media screen and (max-width: 767.99px) {
  article.hanbai-detail .con-box01 .box .col.content .price .price-headline {
    font-size: 16px;
  }
}
article.hanbai-detail .con-box01 .box .col.content .price .price-text {
  font-size: 18px;
}
@media screen and (max-width: 900px) {
  article.hanbai-detail .con-box01 .box .col.content .price .price-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 767.99px) {
  article.hanbai-detail .con-box01 .box .col.content .price .price-text {
    font-size: 14px;
  }
}
article.hanbai-detail .con-box01 .box .col.content .price .price-text .value {
  font-size: 40px;
}
@media screen and (max-width: 900px) {
  article.hanbai-detail .con-box01 .box .col.content .price .price-text .value {
    font-size: 32px;
  }
}
@media screen and (max-width: 767.99px) {
  article.hanbai-detail .con-box01 .box .col.content .price .price-text .value {
    font-size: 24px;
  }
}
article.hanbai-detail .con-box01 .box .col.content .stock {
  font-size: 18px;
  font-weight: 500;
  color: #e61324;
}
article.hanbai-detail .con-box01 .box .col.content .stock.no-stock {
  color: #b0b3bf;
}
@media screen and (max-width: 900px) {
  article.hanbai-detail .con-box01 .box .col.content .stock {
    font-size: 16px;
  }
}
article.hanbai-detail .con-box01 .box .col.content .link {
  margin-top: 60px;
}
@media screen and (max-width: 900px) {
  article.hanbai-detail .con-box01 .box .col.content .link {
    margin-top: 30px;
  }
}
article.hanbai-detail .con-box01 .box .col.content .link a {
  display: inline-block;
  width: 300px;
  padding-block: 20px;
  font-size: 16px;
  font-weight: bold;
  background-image: url("../img/common/arrow_btm_rd.png");
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
  background-size: 17px 16px;
  border-bottom: 2px solid #b0b3bf;
}
@media screen and (max-width: 767.99px) {
  article.hanbai-detail .con-box01 .box .col.content .link a {
    max-width: 300px;
    width: 100%;
    padding-block: 15px;
    font-size: 14px;
    background-size: 12px 10px;
  }
}
article.hanbai-detail .con-box01 .text {
  margin-top: 40px;
}
article.hanbai-detail .con-box02 {
  padding-block: 80px 100px;
  background-color: #f9f4f4;
}
article.hanbai-detail .con-box02 .btn01 {
  justify-content: flex-start;
  margin-top: 40px;
}
article.hanbai-detail .con-box02 .section_hds {
  margin-top: 55px;
}
article.hanbai-detail .con-box02 .list01 a {
  text-decoration: underline;
}
article.hanbai-detail .con-box02 .list02 .caution {
  color: #e61324;
}
article.hanbai-detail .con-box02 .btn02 {
  margin-top: 80px;
}

article.hanbai-archive .c-teaser {
  padding-block: 80px 25px;
}
article.hanbai-archive .con-box01 {
  padding-block: 110px;
  background-color: #f9f4f4;
}
@media screen and (max-width: 767.99px) {
  article.hanbai-archive .con-box01 {
    padding-block: 50px;
  }
}
article.hanbai-archive .con-box01 .box01 p + p {
  margin-top: 30px;
}
article.hanbai-archive .con-box01 .box01 .com_pdf {
  margin-top: 40px;
}
article.hanbai-archive .con-box01 .box02 {
  margin-top: 90px;
}
article.hanbai-archive .con-box01 .box02 .btn01 {
  justify-content: flex-start;
  margin-top: 40px;
}
article.hanbai-archive .con-box01 .box02 .section_hds {
  margin-top: 55px;
}
article.hanbai-archive .con-box01 .box02 .section_hdm {
  margin-top: 90px;
}
article.hanbai-archive .con-box01 .box02 .list01 a {
  text-decoration: underline;
}
article.hanbai-archive .con-box01 .box02 .list02 .caution {
  color: #e61324;
}
article.hanbai-archive .con-box02 {
  padding-block: 140px 90px;
}
@media screen and (max-width: 1024px) {
  article.hanbai-archive .con-box02 {
    padding-top: 70px;
  }
}
article.hanbai-archive .con-box02 .box {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 60px;
}
@media screen and (max-width: 1024px) {
  article.hanbai-archive .con-box02 .box {
    display: block;
  }
}
article.hanbai-archive .con-box02 .box .list {
  flex-grow: 1;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 40px 4.6%;
}
@media screen and (max-width: 1024px) {
  article.hanbai-archive .con-box02 .box .list {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767.99px) {
  article.hanbai-archive .con-box02 .box .list {
    gap: 20px 2.6%;
  }
}
article.hanbai-archive .con-box02 .box .list .list-item {
  width: 47.6%;
}
@media screen and (max-width: 767.99px) {
  article.hanbai-archive .con-box02 .box .list .list-item {
    width: 48.7%;
  }
}
@media screen and (max-width: 550px) {
  article.hanbai-archive .con-box02 .box .list .list-item {
    width: 100%;
  }
}
article.hanbai-archive .con-box02 .box .list .list-item a {
  display: block;
  height: 100%;
  padding: 20px 20px 25px;
  border-radius: 8px;
  box-shadow: 0 0 16px 4px rgba(0, 0, 0, 0.03);
  background-color: #f9f2f3;
}
@media screen and (max-width: 1100px) {
  article.hanbai-archive .con-box02 .box .list .list-item a {
    padding: 15px;
  }
}
article.hanbai-archive .con-box02 .box .list .list-item .thumbnail {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  height: 250px;
  padding: 15px;
  background-color: #fff;
  text-align: center;
}
article.hanbai-archive .con-box02 .box .list .list-item .thumbnail img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
article.hanbai-archive .con-box02 .box .list .list-item .item-meta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 35px;
  margin-top: 20px;
  padding-inline: 10px;
}
@media screen and (max-width: 1100px) {
  article.hanbai-archive .con-box02 .box .list .list-item .item-meta {
    gap: 0 20px;
    padding-inline: 0;
  }
}
@media screen and (max-width: 767.99px) {
  article.hanbai-archive .con-box02 .box .list .list-item .item-meta {
    gap: 10px 0;
    align-items: flex-start;
    flex-direction: column;
  }
}
article.hanbai-archive .con-box02 .box .list .list-item .item-meta .item-category {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  padding-inline: 20px;
  height: 30px;
  background-color: #000;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 1100px) {
  article.hanbai-archive .con-box02 .box .list .list-item .item-meta .item-category {
    height: 25px;
    font-size: 12px;
  }
}
article.hanbai-archive .con-box02 .box .list .list-item .item-meta .item-stock {
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 1100px) {
  article.hanbai-archive .con-box02 .box .list .list-item .item-meta .item-stock {
    font-size: 14px;
  }
}
article.hanbai-archive .con-box02 .box .list .list-item .item-meta .item-stock.no-stock {
  color: #b0b3bf;
}
article.hanbai-archive .con-box02 .box .list .list-item .item-title {
  margin-top: 20px;
  padding-inline: 10px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (max-width: 1100px) {
  article.hanbai-archive .con-box02 .box .list .list-item .item-title {
    font-size: 16px;
    padding-inline: 0;
  }
}
@media screen and (max-width: 767.99px) {
  article.hanbai-archive .con-box02 .box .list .list-item .item-title {
    font-size: 14px;
  }
}
article.hanbai-archive .con-box02 .box .list .list-item .item-price {
  margin-top: 30px;
  font-size: 14px;
  font-weight: 500;
  color: #1c1818;
  text-align: right;
}
@media screen and (max-width: 1100px) {
  article.hanbai-archive .con-box02 .box .list .list-item .item-price {
    margin-top: 20px;
    font-size: 12px;
  }
}
@media screen and (max-width: 767.99px) {
  article.hanbai-archive .con-box02 .box .list .list-item .item-price {
    font-size: 11px;
  }
}

/*--------------------------
NEWS
----------------------------*/
article.news-archive .related_teaser {
  padding: 100px 0 60px;
}
@media screen and (max-width: 767.99px) {
  article.news-archive .related_teaser {
    padding: 40px 0 30px;
  }
}
@media screen and (max-width: 767.99px) {
  article.news-archive .c-contents-box {
    margin-top: 30px;
  }
}
article.news-archive .con-box01 {
  padding-bottom: 80px;
}
article.news-archive .con-box01 .box {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 60px;
}
@media screen and (max-width: 1024px) {
  article.news-archive .con-box01 .box {
    display: block;
  }
}

/*--------------------------
SPONSOR
----------------------------*/
article.sponsor .con-box01 .box + .box {
  margin-top: 110px;
}

.sponsor-imgs {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 30px 2%;
}
@media screen and (max-width: 767.99px) {
  .sponsor-imgs {
    gap: 20px 3%;
  }
}
.sponsor-imgs .img {
  width: 15%;
  padding: 10px;
  text-align: center;
}
@media screen and (max-width: 767.99px) {
  .sponsor-imgs .img {
    width: 48%;
  }
}
.sponsor-imgs .img img {
  max-width: 100%;
}
.sponsor-imgs + .section_hds {
  margin-top: 80px;
}

/*--------------------------
TRIAL
----------------------------*/
article.trial_archive .trial_teaser {
  background-image: url("../img/trial/bg_teaser.jpg");
}
article.trial_archive .trial_future {
  position: relative;
  overflow: hidden;
  padding: 50px 0 80px;
}
article.trial_archive .trial_future::before {
  position: absolute;
  content: "";
  background-image: url(../img/coach/dec_future.png);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: cover;
  width: 470px;
  height: 264px;
  top: 0;
  right: 0;
  z-index: 0;
}
@media screen and (max-width: 767.99px) {
  article.trial_archive .trial_future::before {
    width: 50%;
    height: 80px;
  }
}
article.trial_archive .trial_future .future_hd {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 65px;
}
@media screen and (max-width: 767.99px) {
  article.trial_archive .trial_future .future_hd {
    margin-bottom: 30px;
    font-size: 20px;
    text-align: left;
  }
}
article.trial_archive .trial_future .junre-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 30px;
}
@media screen and (max-width: 767.99px) {
  article.trial_archive .trial_future .junre-list {
    flex-direction: column;
    gap: 10px 0;
  }
}
article.trial_archive .trial_future .junre-list .list-headline {
  flex-shrink: 0;
  font-size: 18px;
  font-weight: bold;
}
article.trial_archive .trial_future .junre-list ul {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 10px 15px;
}
@media screen and (max-width: 767.99px) {
  article.trial_archive .trial_future .junre-list ul {
    gap: 5px 10px;
  }
}
article.trial_archive .trial_future .junre-list ul li {
  width: 170px;
}
@media screen and (max-width: 767.99px) {
  article.trial_archive .trial_future .junre-list ul li {
    width: calc((100% - 10px) / 2);
  }
}
article.trial_archive .trial_future .junre-list ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 100%;
  height: 45px;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  background-color: #b0b3bf;
}
@media screen and (max-width: 767.99px) {
  article.trial_archive .trial_future .junre-list ul li a {
    height: 35px;
    font-size: 14px;
  }
}
article.trial_archive .trial_future .junre-list ul li a:hover, article.trial_archive .trial_future .junre-list ul li a.active {
  background-color: #e61324;
  text-decoration: underline;
}
article.trial_archive .trial_future .trial-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 50px 2.453%;
  margin-top: 80px;
}
@media screen and (max-width: 767.99px) {
  article.trial_archive .trial_future .trial-list {
    gap: 30px 2.453%;
    margin-top: 40px;
  }
}
article.trial_archive .trial_future .trial-list .list-item {
  position: relative;
  width: 23.16%;
}
@media screen and (max-width: 767.99px) {
  article.trial_archive .trial_future .trial-list .list-item {
    width: 100%;
  }
}
article.trial_archive .trial_future .trial-list .btn01 {
  margin-top: 80px;
}
article.trial_archive .com_btn {
  margin-top: 50px;
}

.player_item {
  display: block;
  position: relative;
  transition: opacity 0.3s;
}
@media (hover: none) {
  .player_item:active {
    opacity: 0.7;
  }
}
@media (hover: hover) {
  .player_item:hover {
    opacity: 0.7;
  }
}
.player_item .player_img {
  position: relative;
  background-color: transparent;
}
.player_item .player_img::before {
  content: "";
  display: block;
  padding-top: 133.5740072202%;
}
.player_item .player_img img,
.player_item .player_img iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.player_item .player_message {
  position: absolute;
  width: 90%;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  background-color: #fff;
  background-image: url("../img/common/bg_player.png");
  background-position: left bottom;
  background-repeat: no-repeat;
  padding: 10px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767.99px) {
  .player_item .player_message {
    width: 95%;
  }
}
.player_item .player_message .player_type {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.player_item .player_message .player_type .type_in {
  width: calc((100% - 8px) / 2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 25px;
  background: #e1e1e1;
  color: #fff;
  font-size: min(11px, 1.08vw);
  padding: 3px 0 0;
  font-weight: 700;
  line-height: 1;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
@media screen and (max-width: 767.99px) {
  .player_item .player_message .player_type .type_in {
    width: calc((100% - 8px) / 2);
    height: 20px;
    font-size: min(10px, 3vw);
  }
}
.player_item .player_message .player_name {
  text-align: center;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 700;
  margin: 15px 0 0;
}
@media screen and (max-width: 767.99px) {
  .player_item .player_message .player_name {
    font-size: 15px;
  }
}

/*--------------------------
ABOUT
----------------------------*/
article.report .soshikizu_teaser,
article.group .soshikizu_teaser {
  padding: 100px 0 60px;
}
@media screen and (max-width: 767.99px) {
  article.report .soshikizu_teaser,
  article.group .soshikizu_teaser {
    padding: 40px 0 30px;
  }
}
@media screen and (max-width: 767.99px) {
  article.report .c-contents-box,
  article.group .c-contents-box {
    margin-top: 30px;
  }
}

article.regulation .c-teaser,
article.donation .c-teaser {
  padding: 100px 0 60px;
}
@media screen and (max-width: 767.99px) {
  article.regulation .c-teaser,
  article.donation .c-teaser {
    padding: 40px 0 30px;
  }
}
@media screen and (max-width: 767.99px) {
  article.regulation .c-contents-box,
  article.donation .c-contents-box {
    margin-top: 30px;
  }
}

@media screen and (max-width: 767.99px) {
  article.donation .c-contents-box .c-inner {
    padding-inline: 0;
  }
}

article.regulation .con-box01 .inner-box:not(:nth-of-type(1)) {
  margin-top: 90px;
}
@media screen and (max-width: 767.99px) {
  article.regulation .con-box01 .inner-box:not(:nth-of-type(1)) {
    margin-top: 50px;
  }
}
article.regulation .con-box01 .inner-box .com_pdf {
  margin-top: 50px;
}
@media screen and (max-width: 767.99px) {
  article.regulation .con-box01 .inner-box .com_pdf {
    margin-top: 30px;
  }
}
article.regulation .con-box01 .inner-box .com_pdf + .section_hds {
  margin-top: 80px;
}
@media screen and (max-width: 767.99px) {
  article.regulation .con-box01 .inner-box .com_pdf + .section_hds {
    margin-top: 40px;
  }
}

article.businessplan .filter-container .tag_item {
  min-width: 220px;
  width: auto;
}
@media screen and (max-width: 767.99px) {
  article.businessplan .filter-container .tag_item {
    min-width: 80px;
    font-size: min(11px, 3.47vw);
    line-height: 1.2;
    padding: 6px 10px 5px;
  }
}
@media screen and (max-width: 767.99px) {
  article.group .soshikizu_teaser .teaser_hd:has(.small) .hd_jps {
    line-height: 1.1;
    margin-bottom: 5px;
  }
}
article.group .soshikizu_teaser .teaser_hd .small {
  font-size: 40px;
}
@media screen and (max-width: 767.99px) {
  article.group .soshikizu_teaser .teaser_hd .small {
    font-size: 20px;
  }
}
article.group .con-box01 .organi_img {
  text-align: center;
}
article.group .con-box01 .organi_img img {
  width: 608px;
}

article.report .con-box01 .inner-box:not(:nth-of-type(1)) {
  margin-top: 100px;
}
@media screen and (max-width: 767.99px) {
  article.report .con-box01 .inner-box:not(:nth-of-type(1)) {
    margin-top: 50px;
  }
}
article.report .con-box01 .inner-box:not(:nth-of-type(-n+5)) {
  display: none;
}
article.report .con-box01 .inner-box.show {
  display: block;
}
article.report .con-box01 .btn01 {
  margin-top: 100px;
}
@media screen and (max-width: 767.99px) {
  article.report .con-box01 .btn01 {
    margin-top: 50px;
  }
}

/*--------------------------
PRESS
----------------------------*/
article.press .c-teaser {
  padding-block: 40px 30px;
}
article.press .con-box01 {
  background-color: #f9f4f4;
}
@media screen and (max-width: 767.99px) {
  article.press .con-box01 {
    margin-top: 0;
  }
}
article.press .con-box01 .notice-box {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 30px;
  padding: 50px;
  border: 2px solid #e61324;
  border-radius: 10px;
  background-color: #fff;
}
@media screen and (max-width: 767.99px) {
  article.press .con-box01 .notice-box {
    width: calc(100% - 40px);
    margin-left: 20px;
    padding: 25px 20px;
  }
}
article.press .con-box01 .notice-box .caution {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
  color: #e61324;
}
@media screen and (max-width: 767.99px) {
  article.press .con-box01 .notice-box .caution {
    font-size: 14px;
  }
}
article.press .con-box01 .notice-box .text {
  font-size: 16px;
}
@media screen and (max-width: 767.99px) {
  article.press .con-box01 .notice-box .text {
    font-size: 13px;
  }
}

.wp-block[data-type="core/widget-area"] {
  max-width: 1200px;
}

div[data-widget-area-id=sidebar] {
  max-width: 330px !important;
  margin: 0 auto !important;
}

html :where(.wp-block) {
  max-width: 880px;
}

.blocks-widgets-container .editor-styles-wrapper {
  max-width: 100%;
}

.block-editor-block-list__block:not(.is-selected) > .block-editor-block-list__block > .block-list-appender:only-child:after {
  border: 1px dashed !important;
}

.editor-styles-wrapper > *:first-child {
  margin-top: 0;
}
.editor-styles-wrapper .clearfix {
  clear: both;
}
.editor-styles-wrapper .wp-block-flexible-table-block-table {
  margin-top: 80px;
  margin-bottom: 70px;
}
@media screen and (max-width: 767.99px) {
  .editor-styles-wrapper .wp-block-flexible-table-block-table {
    margin: 45px 0 20px;
  }
}
.editor-styles-wrapper .wp-block-flexible-table-block-table table {
  width: 100% !important;
  border: 1px #dbe0e7 solid !important;
}
@media screen and (max-width: 767.99px) {
  .editor-styles-wrapper .wp-block-flexible-table-block-table table {
    width: 700px !important;
  }
}
.editor-styles-wrapper .wp-block-flexible-table-block-table table th,
.editor-styles-wrapper .wp-block-flexible-table-block-table table td {
  padding: 15px 10px !important;
  font-weight: 500 !important;
  border: 1px #dbe0e7 solid !important;
}
@media screen and (max-width: 767.99px) {
  .editor-styles-wrapper .wp-block-flexible-table-block-table table th,
  .editor-styles-wrapper .wp-block-flexible-table-block-table table td {
    font-size: 12px !important;
  }
}
.editor-styles-wrapper .wp-block-flexible-table-block-table table th {
  background: #eaedf1 !important;
  text-align: center !important;
  font-weight: bold !important;
}
.editor-styles-wrapper .wp-block-flexible-table-block-table table td {
  background: #fff !important;
}
.editor-styles-wrapper h2 {
  margin-block: 80px 45px;
  padding: 16px 0 11px 30px;
  line-height: 1.37;
  font-size: 32px;
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 767.99px) {
  .editor-styles-wrapper h2 {
    padding: 5px 0 3px 15px;
    font-size: 22px;
    margin-block: 40px 15px;
  }
}
.editor-styles-wrapper h2::before {
  position: absolute;
  content: "";
  background: #e61324;
  width: 8px;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
  z-index: 0;
}
@media screen and (max-width: 767.99px) {
  .editor-styles-wrapper h2::before {
    width: 4px;
  }
}
.editor-styles-wrapper h3 {
  margin-block: 40px 25px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  padding: 0 0 13px;
  border-bottom: 2px #e0e1e4 solid;
  position: relative;
}
@media screen and (max-width: 767.99px) {
  .editor-styles-wrapper h3 {
    font-size: 16px;
  }
}
.editor-styles-wrapper h3::before {
  position: absolute;
  content: "";
  background: #e61324;
  width: 80px;
  height: 2px;
  left: 0;
  bottom: -2px;
  z-index: 0;
}
.editor-styles-wrapper .wp-block-image:not(.block-editor-block-list__block) {
  margin-block: 80px 0;
}
.editor-styles-wrapper h4 {
  font-size: 20px;
  color: #e61324;
  font-weight: 700;
  line-height: 1.4;
  margin: 35px 0 20px;
}
.editor-styles-wrapper a {
  margin: 25px 0 0;
  display: inline-block;
  text-decoration: underline;
}
.editor-styles-wrapper a:hover {
  opacity: 0.7;
}
.editor-styles-wrapper ul:not(.block-editor-block-variation-picker__variations) {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-block: 40px;
}
.editor-styles-wrapper ul:not(.block-editor-block-variation-picker__variations) li {
  font-weight: 700;
  line-height: 1.5;
  margin-inline: 0 !important;
  padding: 0 0 0 22px;
  position: relative;
}
.editor-styles-wrapper ul:not(.block-editor-block-variation-picker__variations) li:before {
  position: absolute;
  content: "";
  background: #e61324;
  width: 12px;
  height: 12px;
  left: 0;
  top: 5px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  z-index: 0;
}
.editor-styles-wrapper ol {
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.editor-styles-wrapper ol li {
  line-height: 1.5;
  font-weight: 700;
  counter-increment: my-counter;
  padding: 0 0 0 22px;
  position: relative;
  margin-inline: 0 !important;
}
.editor-styles-wrapper ol li::before {
  position: absolute;
  left: 0;
  top: -2px;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  line-height: 1.5;
  content: counter(my-counter) ".";
  color: #e61324;
}
.editor-styles-wrapper blockquote {
  margin: 40px 0 60px;
  padding: 40px 45px;
  background-image: url("../img/common/bg_lattice_bl.jpg");
  background-position: 0 0;
  background-repeat: repeat;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
}
.editor-styles-wrapper blockquote ul,
.editor-styles-wrapper blockquote ol {
  margin-bottom: 0;
}
.editor-styles-wrapper table {
  width: 100%;
  border-left: 1px #dbe0e7 solid;
  border-top: 1px #dbe0e7 solid;
}
.editor-styles-wrapper table th,
.editor-styles-wrapper table td {
  font-weight: 500;
  border-right: 1px #dbe0e7 solid;
  border-bottom: 1px #dbe0e7 solid;
  background: #fff;
  line-height: 1.5;
  padding: 15px 10px;
}
.editor-styles-wrapper table th {
  background: #eaedf1;
}
@media screen and (max-width: 767.99px) {
  .editor-styles-wrapper h3 {
    margin-top: 20px;
  }
  .editor-styles-wrapper h4 {
    font-size: 15px;
    line-height: 1.73;
    margin: 20px 0 10px;
  }
  .editor-styles-wrapper a {
    margin: 25px 0 0;
  }
  .editor-styles-wrapper .wp-block-image:not(.block-editor-block-list__block) {
    margin-block: 40px 0;
  }
  .editor-styles-wrapper a:hover {
    opacity: 1;
  }
  .editor-styles-wrapper ul:not(.block-editor-block-variation-picker__variations) {
    margin: 35px 0 25px;
  }
  .editor-styles-wrapper ul:not(.block-editor-block-variation-picker__variations) li {
    line-height: 1.85;
    padding: 0 0 0 16px;
  }
  .editor-styles-wrapper ul:not(.block-editor-block-variation-picker__variations) li:before {
    width: 8px;
    height: 8px;
    top: 6px;
  }
  .editor-styles-wrapper ol {
    margin: 25px 0 30px;
  }
  .editor-styles-wrapper ol li {
    line-height: 1.85;
    padding: 0 0 0 16px;
  }
  .editor-styles-wrapper ol li::before {
    font-size: 14px;
    top: 0;
  }
  .editor-styles-wrapper blockquote {
    margin: 30px 0 40px;
    padding: 25px 20px;
    background-size: 6px 6px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
  }
  .editor-styles-wrapper table {
    width: 700px;
  }
  .editor-styles-wrapper table th,
  .editor-styles-wrapper table td {
    font-size: 12px;
  }
}
.editor-styles-wrapper .is-style-bk-btn a {
  border: 2px #1c1818 solid;
  background: #1c1818;
  width: 400px;
  height: 90px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1.5;
  padding: 0 70px;
  position: relative;
  margin-top: 40px;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  -ms-border-radius: 60px;
  -o-border-radius: 60px;
  border-radius: 60px;
  text-decoration: none;
}
@media screen and (max-width: 767.99px) {
  .editor-styles-wrapper .is-style-bk-btn a {
    width: 250px;
    max-width: 100%;
    height: 60px;
    font-size: min(14px, 3.74vw);
    letter-spacing: 0.02em;
    padding: 0 30px;
  }
}
.editor-styles-wrapper .is-style-bk-btn a:hover {
  color: #1c1818;
  background: #fff;
}
.editor-styles-wrapper .is-style-pdf-btn a {
  display: flex;
  align-items: center;
  text-decoration: underline;
  color: #1c1818;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  gap: 10px;
  position: relative;
}
@media screen and (max-width: 767.99px) {
  .editor-styles-wrapper .is-style-pdf-btn a {
    font-size: 13px;
    letter-spacing: 0.02em;
    gap: 5px;
  }
}
.editor-styles-wrapper .is-style-pdf-btn a::before {
  content: "";
  background-image: url("../img/common/ico_pdf_s.png");
  width: 32px;
  height: 32px;
  align-self: flex-start;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
@media screen and (max-width: 767.99px) {
  .editor-styles-wrapper .is-style-pdf-btn a::before {
    width: 25px;
    height: 25px;
    margin: 0 0 3px;
  }
}
.editor-styles-wrapper .is-style-pdf-btn a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767.99px) {
  .editor-styles-wrapper .is-style-pdf-btn a:hover {
    opacity: 1;
  }
}
