@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");
/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

			$

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
/*================================
ブレークポイント定義
=================================*/
/*================================
size()関数
=================================*/
/*================================
color
=================================*/
/*================================
animation
=================================*/
@keyframes fadein {
  0% {
    opacity: 0.1%;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes fadeUp {
  0% {
    transform: translateY(10px);
    opacity: 0.1%;
    visibility: hidden;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
}
@keyframes zoomOut {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes scroll-loop-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scroll-loop-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes progressCircle {
  from {
    stroke-dashoffset: 100;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes titleEnIn {
  0% {
    transform: scale(1.5);
    opacity: 0.1%;
    visibility: hidden;
  }
  100% {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
  }
}
@keyframes titleJaIn {
  0% {
    transform: translateX(-10px);
    opacity: 0.1%;
    visibility: hidden;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
}
@keyframes viewAllBorder {
  0%, 100% {
    left: 0;
  }
  49% {
    left: 100%;
  }
  50% {
    left: -100%;
  }
}
@keyframes viewAllarrow {
  0%, 100% {
    left: 30%;
  }
  49% {
    left: 130%;
  }
  50% {
    left: -130%;
  }
}
@keyframes contentsTitleEn {
  0% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes scale_image {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes catchImpact {
  0% {
    opacity: 0.1%;
    visibility: hidden;
    transform: scale(0.3);
  }
  35% {
    opacity: 1;
    visibility: visible;
    transform: scale(1.2);
  }
  55% {
    transform: scale(0.92);
  }
  72% {
    transform: scale(1.08);
  }
  84% {
    transform: scale(0.97);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }
}
@keyframes maskLeftFade {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    filter: blur(0);
    clip-path: inset(0 0 0 0);
  }
}
@keyframes textLeftCurtain {
  0% {
    transform: translateX(-101%);
  }
  35% {
    transform: translateX(0);
  }
  65% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(101%);
  }
}
@keyframes imageScaleFade {
  0% {
    opacity: 0.1%;
    visibility: hidden;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }
}
@keyframes leftMoveFade {
  0% {
    transform: translateX(10px);
    opacity: 0.1%;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}
.titleIn .title__en span {
  transform: scale(1.5);
  opacity: 0.1%;
  visibility: hidden;
}
.titleIn .title__ja span {
  transform: translateX(-10px);
  opacity: 0.1%;
  visibility: hidden;
}

.show#home .mv.anim_active .catch {
  animation: catchImpact 0.2s 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.show .anim_active .titleIn .title__en span {
  animation: titleEnIn 0.4s cubic-bezier(0, 1.09, 0.64, 1) forwards;
}
.show .anim_active .titleIn .title__ja span {
  animation: titleJaIn 0.4s 0.2s cubic-bezier(0, 1.09, 0.64, 1) forwards;
}
.show .anim_active .titleIn.page_title_wrap .title__en span {
  animation-delay: 1s;
}
.show .anim_active .titleIn.page_title_wrap .title__ja span {
  animation-delay: 1.4s;
}

/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

			RESET

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, legend, input, label, textarea, p, blockquote, table, caption, tbody, tfoot, thead, th, td, option, figure, figcaption {
  margin: 0;
  padding: 0;
}

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

fieldset, img, abbr, acronym {
  border: 0;
}

address, caption, cite, code, dfn, th, var, optgroup, strong, em, b, i {
  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%;
}

a, ins, del {
  text-decoration: none;
}

a {
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border: 0;
  margin: 0;
  vertical-align: bottom;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

object, embed, th, td {
  vertical-align: top;
}

input, textarea, select {
  font-size: 1em;
}

picture, figure, audio {
  display: inline-block;
}

audio {
  max-width: 100%;
}

.clf::after {
  content: "";
  display: block;
  clear: both;
}

input[type=submit],
input[type=button],
input[type=reset] {
  -webkit-appearance: none;
}

/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

			COMMON

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
* {
  box-sizing: border-box;
  outline: none;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 4.1025641026vw;
  font-weight: 500;
}
@media screen and (min-width: 960px) {
  * {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  * {
    font-size: 16px;
  }
}

body, a {
  color: #fff;
}

.black, .black * {
  color: #000;
}

.red, .red * {
  color: #950002;
}

html,
body {
  overflow-x: clip;
  overflow-y: auto;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #000;
  opacity: 0;
  padding: 0;
  position: relative;
  transition: opacity 1s ease;
}

body.show {
  opacity: 1;
}

main {
  flex: 1;
}

@media screen and (min-width: 960px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}
@media screen and (min-width: 960px) {
  .pc {
    display: block;
  }
}

.text {
  line-height: 1.6;
}

/*================================
fonts
=================================*/
.en, .en * {
  font-family: "Oswald", sans-serif;
}

/*================================
visually hidden
=================================*/
.visually-hidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  opacity: 0.1%;
  visibility: hidden;
}

/*================================
contents title
=================================*/
.contents_title_wrap {
  margin-bottom: 15.3846153846vw;
}
@media screen and (min-width: 960px) {
  .contents_title_wrap {
    margin-bottom: 4.8611111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .contents_title_wrap {
    margin-bottom: 70px;
  }
}
.contents_title_wrap .title span {
  display: inline-block;
}
.contents_title_wrap .title__en span {
  font-size: 19.4871794872vw;
  line-height: 1;
}
@media screen and (min-width: 960px) {
  .contents_title_wrap .title__en span {
    font-size: 10.4166666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .contents_title_wrap .title__en span {
    font-size: 150px;
  }
}
@media screen and (min-width: 960px) {
  .contents_title_wrap .title__ja span {
    font-size: 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .contents_title_wrap .title__ja span {
    font-size: 24px;
  }
}

/*================================
link btn arrow
=================================*/
.arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 50%;
}
.arrow svg {
  display: block;
}
.arrow svg path.white {
  fill: #fff;
}
.arrow svg path.red {
  fill: #950002;
}
.arrow svg path.brown {
  fill: #8C734B;
}

/*================================
view all link
=================================*/
.view_all_link {
  text-align: right;
  position: relative;
  z-index: 1;
}
.view_all_link.fade {
  opacity: 0.1%;
  visibility: hidden;
}
.view_all_link.fade.anim_active {
  animation: fadein 0.3s linear forwards;
}
@media screen and (min-width: 960px) {
  .view_all_link {
    width: 71.1111111111vw;
    max-width: 1024px;
    margin: 0 auto;
  }
}
.view_all_link .view_all_text {
  display: inline-block;
}
.view_all_link .view_all_text a {
  display: flex;
  align-items: center;
}
.view_all_link .view_all_text a .en {
  display: block;
  margin-right: 5.1282051282vw;
  font-size: 7.6923076923vw;
}
@media screen and (min-width: 960px) {
  .view_all_link .view_all_text a .en {
    margin-right: 1.3888888889vw;
    font-size: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .view_all_link .view_all_text a .en {
    margin-right: 20px;
    font-size: 40px;
  }
}
.view_all_link .view_all_text a .line_arrow {
  width: 39.7435897436vw;
  position: relative;
}
@media screen and (min-width: 960px) {
  .view_all_link .view_all_text a .line_arrow {
    width: 25vw;
    max-width: 360px;
  }
}
.view_all_link .view_all_text a .line_arrow .line {
  display: block;
  width: 35.3846153846vw;
  height: 3px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .view_all_link .view_all_text a .line_arrow .line {
    width: 22.3611111111vw;
    max-width: 322px;
  }
}
.view_all_link .view_all_text a .line_arrow .line span {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.view_all_link .view_all_text a .line_arrow .line span:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #8C734B;
  position: absolute;
  top: 0;
  left: 0;
}
.view_all_link .view_all_text a .line_arrow .arrow {
  width: 10.2564102564vw;
  height: 10.2564102564vw;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 960px) {
  .view_all_link .view_all_text a .line_arrow .arrow {
    width: 5.5555555556vw;
    max-width: 80px;
    height: 5.5555555556vw;
    max-height: 80px;
  }
}
.view_all_link .view_all_text a .line_arrow .arrow span {
  display: block;
  width: 2.5641025641vw;
  height: 4.358974359vw;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .view_all_link .view_all_text a .line_arrow .arrow span {
    width: 0.8333333333vw;
    max-width: 12px;
    height: 1.3888888889vw;
    max-width: 20px;
  }
}
.view_all_link .view_all_text a .line_arrow .arrow span:before {
  content: "";
  width: 0.5em;
  height: 0.5em;
  border: 3px solid #8C734B;
  border-left: 0;
  border-bottom: 0;
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%) rotate3d(0, 0, 1, 45deg);
  transition: all 0.4s;
}
@media screen and (min-width: 960px) {
  .view_all_link .view_all_text a .line_arrow .arrow span:before {
    width: 0.6em;
    height: 0.6em;
  }
}
.view_all_link .view_all_text a .line_arrow .arrow svg {
  width: 4.1025641026vw;
}
@media screen and (min-width: 960px) {
  .view_all_link .view_all_text a .line_arrow .arrow svg {
    width: 1.1111111111vw;
    max-width: 16px;
  }
}
@media screen and (min-width: 960px) {
  .view_all_link .view_all_text a:hover .line_arrow .line span:before {
    animation: viewAllBorder 1s forwards;
  }
}
@media screen and (min-width: 960px) {
  .view_all_link .view_all_text a:hover .line_arrow .arrow span:before {
    animation: viewAllarrow 0.8s 0.35s forwards;
  }
}

/*================================
contents
=================================*/
.inner {
  padding-right: 5.1282051282vw;
  padding-left: 5.1282051282vw;
}
@media screen and (min-width: 960px) {
  .inner {
    width: 91.6666666667vw;
    max-width: 1320px;
    margin: 0 auto;
    padding-right: 0;
    padding-left: 0;
  }
}

/*================================
mv
=================================*/
.mv .video:before, .mv .image:before {
  content: "";
  width: 100%;
  height: 100%;
  background: url("../images/common/mv_overlay.png") no-repeat right center;
  background-size: cover;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

/*================================
instagram
=================================*/
.instagram_wrap {
  padding: 20.5128205128vw 0;
  background: #950002;
  position: relative;
}
@media screen and (min-width: 960px) {
  .instagram_wrap {
    padding: 13.8888888889vw 0 17.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .instagram_wrap {
    padding: 200px 0 256px;
  }
}
.instagram_wrap:before {
  content: "";
  width: 100%;
  height: 100%;
  background: url("../images/home/instagram/insgagram_bg.png") no-repeat center center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.instagram_wrap .inner {
  position: relative;
  z-index: 1;
}
.instagram_wrap .inner .contents {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (min-width: 960px) {
  .instagram_wrap .inner .contents {
    width: 71.1111111111vw;
    max-width: 1024px;
    margin: 0 auto;
  }
}
.instagram_wrap .inner .contents .item {
  width: 28.2051282051vw;
  height: 37.4358974359vw;
  margin-bottom: 2%;
  clip-path: inset(0 100% 0 0);
}
@media screen and (min-width: 960px) {
  .instagram_wrap .inner .contents .item {
    width: 13.8888888889vw;
    max-width: 200px;
    height: 18.4722222222vw;
    max-height: 266px;
    margin-bottom: 0.5%;
  }
}
.instagram_wrap .inner .contents .item a, .instagram_wrap .inner .contents .item a .image, .instagram_wrap .inner .contents .item a .image img {
  width: 100%;
  height: 100%;
}
.instagram_wrap .inner .contents .item img {
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.1);
}
@media screen and (min-width: 960px) {
  .instagram_wrap .inner .contents .item:nth-last-child(1), .instagram_wrap .inner .contents .item:nth-last-child(2) {
    display: none;
  }
}
.instagram_wrap .inner.anim_active .contents .item {
  animation: maskLeftFade 0.3s 0.2s linear forwards;
}
.instagram_wrap .inner.anim_active .contents .item img {
  animation: scale_image 0.6s 0.2s linear forwards;
}

.wp-pagenavi * {
  line-height: 1;
}
.wp-pagenavi ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.wp-pagenavi ul li span {
  display: block;
}
.wp-pagenavi ul li .page {
  width: 9.2307692308vw;
  height: 9.2307692308vw;
  margin-right: 4.1025641026vw;
  padding-top: 2.0512820513vw;
  font-size: 4.6153846154vw;
  text-align: center;
  color: #8C734B;
  background: #fff;
  border-radius: 50%;
}
@media screen and (min-width: 960px) {
  .wp-pagenavi ul li .page {
    width: 2.7777777778vw;
    max-width: 40px;
    height: 2.7777777778vw;
    max-height: 40px;
    margin-right: 0.9722222222vw;
    padding-top: 0.6944444444vw;
    font-size: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .wp-pagenavi ul li .page {
    margin-right: 14px;
    padding-top: 10px;
    font-size: 20px;
  }
}
.wp-pagenavi ul li .page.current {
  color: #fff;
  background: #8C734B;
}
.wp-pagenavi ul li .extend {
  margin-right: 4.1025641026vw;
  padding: 0;
  border: none;
}
@media screen and (min-width: 960px) {
  .wp-pagenavi ul li .extend {
    margin-right: 0.9722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .wp-pagenavi ul li .extend {
    margin-right: 14px;
  }
}
.wp-pagenavi ul li:last-child {
  margin-right: 0 !important;
}

.no_archive {
  width: 100%;
  padding-top: 33.3333333333vw;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .no_archive {
    padding-top: 5.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .no_archive {
    padding-top: 80px;
  }
}

/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

			header / footer

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
/*================================
header
=================================*/
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 22.0512820513vw;
  padding: 0 5.1282051282vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
}
@media screen and (min-width: 960px) {
  header {
    height: 6.8055555556vw;
    max-height: 98px;
    padding: 0 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  header {
    padding: 0 40px;
  }
}
header .logo {
  width: 46.9230769231vw;
}
@media screen and (min-width: 960px) {
  header .logo {
    width: 14.3055555556vw;
    max-width: 206px;
  }
}
header .logo a {
  display: block;
  width: 100%;
}
@media screen and (min-width: 960px) {
  header .logo a:hover {
    opacity: 0.6;
  }
}
header nav, header ul {
  height: 100%;
}
header nav {
  display: none;
}
@media screen and (min-width: 960px) {
  header nav {
    display: block;
  }
}
header nav ul {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 960px) {
  header nav ul li {
    margin-right: 2.0833333333vw;
  }
}
@media screen and (min-width: 1440px) {
  header nav ul li {
    margin-right: 30px;
  }
}
@media screen and (min-width: 960px) {
  header nav ul li a:hover {
    opacity: 0.6;
  }
}
@media screen and (min-width: 960px) {
  header nav ul li.btn {
    width: 9.7222222222vw;
    max-width: 140px;
    margin-right: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  header nav ul li.btn {
    margin-right: 10px;
  }
}
@media screen and (min-width: 960px) {
  header nav ul li.btn a {
    width: 100%;
    padding: 0.5555555556vw 0 0.5555555556vw 2.2222222222vw;
    border-radius: 3.4722222222vw;
    position: relative;
  }
}
@media screen and (min-width: 1440px) {
  header nav ul li.btn a {
    padding: 8px 0 8px 32px;
    border-radius: 50px;
  }
}
@media screen and (min-width: 960px) {
  header nav ul li.btn a .arrow {
    width: 1.6666666667vw;
    max-width: 24px;
    height: 1.6666666667vw;
    max-height: 24px;
    position: absolute;
    top: 50%;
    right: 0.6944444444vw;
    transform: translateY(-50%);
  }
}
@media screen and (min-width: 1440px) {
  header nav ul li.btn a .arrow {
    right: 10px;
  }
}
@media screen and (min-width: 960px) {
  header nav ul li.btn a .arrow svg {
    width: 0.6944444444vw;
    max-width: 10px;
  }
}
header nav ul li.btn.contact a, header nav ul li.btn.fanClub a {
  background: #950002;
}
header nav ul li.btn.contact a .arrow svg path, header nav ul li.btn.fanClub a .arrow svg path {
  fill: #950002;
}
header nav ul li.btn.goods a {
  background: #8C734B;
}
header nav ul li.btn.goods a .arrow svg path {
  fill: #8C734B;
}
header nav ul li:last-child {
  margin-right: 0;
}

/*================================
ハンバーガーメニュー
=================================*/
.btn_trigger {
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
}

.hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}

.btn_trigger_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 7.1794871795vw;
  height: 5.641025641vw;
  position: fixed;
  top: 8.4615384615vw;
  right: 5.1282051282vw;
  transition: all 0.4s;
  cursor: pointer;
  z-index: 10000;
}
@media screen and (min-width: 960px) {
  .btn_trigger_wrap {
    display: none;
  }
}
.btn_trigger_wrap button, .btn_trigger_wrap .line {
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.btn_trigger_wrap .line {
  position: relative;
}
.btn_trigger_wrap .line span {
  display: inline-block;
  width: 100%;
  height: 0.7692307692vw;
  background: #fff;
  position: absolute;
  left: 0;
  transition: all 0.4s;
}
.btn_trigger_wrap .line span:nth-child(1) {
  top: 0;
}
.btn_trigger_wrap .line span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.btn_trigger_wrap .line span:nth-child(3) {
  bottom: 0;
}
.btn_trigger_wrap.active .line span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.btn_trigger_wrap.active .line span:nth-of-type(2) {
  opacity: 0;
}
.btn_trigger_wrap.active .line span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/*================================
グローバルナビゲーション
=================================*/
.navi_open_wrap {
  display: none;
  width: 100%;
  height: 100%;
  text-align: center;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.navi_open_wrap::-webkit-scrollbar {
  display: none;
}
.navi_open_wrap .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: unset;
  height: 100%;
  min-height: 152.0512820513vw;
  margin: 0;
  background: #2E2E2E;
}
.navi_open_wrap .inner nav ul li {
  margin-bottom: 7.6923076923vw;
}
.navi_open_wrap .inner nav ul li a {
  font-size: 6.1538461538vw;
}
.navi_open_wrap .inner nav ul li.btn {
  width: 74.358974359vw;
  margin: 0 auto;
}
.navi_open_wrap .inner nav ul li.btn a {
  width: 100%;
  padding: 3.3333333333vw 0;
  border-radius: 7.6923076923vw;
  position: relative;
}
.navi_open_wrap .inner nav ul li.btn a .arrow {
  width: 8.7179487179vw;
  height: 8.7179487179vw;
  position: absolute;
  top: 50%;
  right: 2.5641025641vw;
  transform: translateY(-50%);
}
.navi_open_wrap .inner nav ul li.btn a .arrow svg {
  width: 3.5897435897vw;
}
.navi_open_wrap .inner nav ul li.contact a, .navi_open_wrap .inner nav ul li.fanClub a {
  background: #950002;
}
.navi_open_wrap .inner nav ul li.contact a .arrow svg path, .navi_open_wrap .inner nav ul li.fanClub a .arrow svg path {
  fill: #950002;
}
.navi_open_wrap .inner nav ul li.goods a {
  background: #8C734B;
}
.navi_open_wrap .inner nav ul li.goods a .arrow svg path {
  fill: #8C734B;
}
.navi_open_wrap .inner nav ul li:last-child {
  margin-bottom: 0;
}

/*================================
footer
=================================*/
footer {
  padding: 20.5128205128vw 0 7.6923076923vw;
  background: #2E2E2E;
}
@media screen and (min-width: 960px) {
  footer {
    padding: 4.8611111111vw 2.7777777778vw 2.0833333333vw;
  }
}
@media screen and (min-width: 1440px) {
  footer {
    padding: 70px 40px 30px;
  }
}
@media screen and (min-width: 960px) {
  footer .inner {
    width: 94.4444444444vw;
    max-width: 1360px;
  }
}
footer .inner .top {
  margin-bottom: 20.5128205128vw;
}
@media screen and (min-width: 960px) {
  footer .inner .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4.8611111111vw;
  }
}
@media screen and (min-width: 1440px) {
  footer .inner .top {
    margin-bottom: 70px;
  }
}
footer .inner .top .information_wrap {
  margin-bottom: 10.2564102564vw;
}
@media screen and (min-width: 960px) {
  footer .inner .top .information_wrap {
    margin-bottom: 0;
  }
}
footer .inner .top .information_wrap .logo_wrap {
  margin-bottom: 10.2564102564vw;
}
@media screen and (min-width: 960px) {
  footer .inner .top .information_wrap .logo_wrap {
    display: flex;
    align-items: center;
    margin-bottom: 2.0833333333vw;
  }
}
@media screen and (min-width: 1440px) {
  footer .inner .top .information_wrap .logo_wrap {
    margin-bottom: 30px;
  }
}
footer .inner .top .information_wrap .logo_wrap .logo {
  width: 23.0769230769vw;
  margin: 0 auto 5.1282051282vw;
}
@media screen and (min-width: 960px) {
  footer .inner .top .information_wrap .logo_wrap .logo {
    width: 3.4722222222vw;
    max-width: 50px;
    margin: 0 1.6666666667vw 0 0;
  }
}
@media screen and (min-width: 1440px) {
  footer .inner .top .information_wrap .logo_wrap .logo {
    margin-right: 24px;
  }
}
footer .inner .top .information_wrap .logo_wrap .sns_link {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 960px) {
  footer .inner .top .information_wrap .logo_wrap .sns_link {
    justify-content: flex-start;
  }
}
footer .inner .top .information_wrap .logo_wrap .sns_link li {
  width: 6.9230769231vw;
  margin-right: 4.1025641026vw;
}
@media screen and (min-width: 960px) {
  footer .inner .top .information_wrap .logo_wrap .sns_link li {
    width: 1.875vw;
    max-width: 27px;
    margin-right: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  footer .inner .top .information_wrap .logo_wrap .sns_link li {
    margin-right: 16px;
  }
}
footer .inner .top .information_wrap .logo_wrap .sns_link li:last-child {
  margin-right: 0;
}
footer .inner .top .information_wrap .logo_wrap .sns_link li a, footer .inner .top .information_wrap .logo_wrap .sns_link li a svg {
  display: block;
}
@media screen and (min-width: 960px) {
  footer .inner .top .information_wrap .logo_wrap .sns_link li a:hover {
    opacity: 0.6;
  }
}
footer .inner .top .information_wrap .logo_wrap .sns_link li a svg path {
  fill: #fff;
}
footer .inner .top .information_wrap .address {
  text-align: center;
}
@media screen and (min-width: 960px) {
  footer .inner .top .nav {
    padding-top: 0.9722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  footer .inner .top .nav {
    padding-top: 14px;
  }
}
footer .inner .top .nav .main_link {
  margin-bottom: 10.2564102564vw;
}
@media screen and (min-width: 960px) {
  footer .inner .top .nav .main_link {
    display: flex;
    align-items: center;
    margin-bottom: 2.0833333333vw;
  }
}
@media screen and (min-width: 1440px) {
  footer .inner .top .nav .main_link {
    margin-bottom: 30px;
  }
}
footer .inner .top .nav .main_link li {
  margin-bottom: 7.6923076923vw;
  text-align: center;
}
@media screen and (min-width: 960px) {
  footer .inner .top .nav .main_link li {
    margin-right: 2.0833333333vw;
    margin-bottom: 0;
    text-align: left;
  }
}
@media screen and (min-width: 1440px) {
  footer .inner .top .nav .main_link li {
    margin-right: 30px;
  }
}
footer .inner .top .nav .main_link li a {
  font-size: 6.1538461538vw;
}
@media screen and (min-width: 960px) {
  footer .inner .top .nav .main_link li a {
    font-size: 1.1805555556vw;
  }
}
@media screen and (min-width: 1440px) {
  footer .inner .top .nav .main_link li a {
    font-size: 17px;
  }
}
@media screen and (min-width: 960px) {
  footer .inner .top .nav .main_link li a:hover {
    opacity: 0.6;
  }
}
footer .inner .top .nav .main_link li.btn {
  width: 69.2307692308vw;
  margin: 0 auto 5.1282051282vw;
  text-align: center;
}
@media screen and (min-width: 960px) {
  footer .inner .top .nav .main_link li.btn {
    width: 9.7222222222vw;
    max-width: 140px;
    margin-right: 0.6944444444vw;
    margin-bottom: 0;
    text-align: left;
  }
}
@media screen and (min-width: 1440px) {
  footer .inner .top .nav .main_link li.btn {
    margin-right: 10px;
  }
}
footer .inner .top .nav .main_link li.btn a {
  width: 100%;
  padding: 3.0769230769vw 0;
  border-radius: 7.6923076923vw;
  position: relative;
}
@media screen and (min-width: 960px) {
  footer .inner .top .nav .main_link li.btn a {
    padding: 0.5555555556vw 0 0.5555555556vw 2.2222222222vw;
    border-radius: 3.4722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  footer .inner .top .nav .main_link li.btn a {
    padding: 8px 0 8px 32px;
    border-radius: 50px;
  }
}
footer .inner .top .nav .main_link li.btn a .arrow {
  width: 8.7179487179vw;
  height: 8.7179487179vw;
  position: absolute;
  top: 50%;
  right: 2.5641025641vw;
  transform: translateY(-50%);
}
@media screen and (min-width: 960px) {
  footer .inner .top .nav .main_link li.btn a .arrow {
    width: 1.6666666667vw;
    max-width: 24px;
    height: 1.6666666667vw;
    max-height: 24px;
    right: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  footer .inner .top .nav .main_link li.btn a .arrow {
    right: 10px;
  }
}
footer .inner .top .nav .main_link li.btn a .arrow svg {
  width: 3.5897435897vw;
}
@media screen and (min-width: 960px) {
  footer .inner .top .nav .main_link li.btn a .arrow svg {
    width: 0.6944444444vw;
    max-width: 10px;
  }
}
footer .inner .top .nav .main_link li.btn.contact a, footer .inner .top .nav .main_link li.btn.fanClub a {
  background: #950002;
}
footer .inner .top .nav .main_link li.btn.goods a {
  background: #8C734B;
}
footer .inner .top .nav .main_link li:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 960px) {
  footer .inner .top .nav .main_link li:last-child {
    margin-right: 0;
  }
}
footer .inner .top .nav .sub_link {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 960px) {
  footer .inner .top .nav .sub_link {
    justify-content: flex-end;
  }
}
footer .inner .top .nav .sub_link li {
  margin-right: 8.2051282051vw;
}
@media screen and (min-width: 960px) {
  footer .inner .top .nav .sub_link li {
    margin-right: 2.0833333333vw;
  }
}
@media screen and (min-width: 1440px) {
  footer .inner .top .nav .sub_link li {
    margin-right: 30px;
  }
}
footer .inner .top .nav .sub_link li:last-child {
  margin-right: 0;
}
@media screen and (min-width: 960px) {
  footer .inner .top .nav .sub_link li a:hover {
    opacity: 0.6;
  }
}
footer .inner .copyright {
  font-size: 3.0769230769vw;
  text-align: center;
}
@media screen and (min-width: 960px) {
  footer .inner .copyright {
    font-size: 0.8333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  footer .inner .copyright {
    font-size: 12px;
  }
}

/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

			home

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
#home {
  /*================================
  mv
  =================================*/
}
#home .mv {
  width: 100%;
  height: 152.0512820513vw;
  position: relative;
}
@media screen and (min-width: 960px) {
  #home .mv {
    height: 48.125vw;
  }
}
#home .mv:before, #home .mv:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
}
#home .mv:before {
  width: 100%;
  height: 22.0512820513vw;
  background: linear-gradient(#000 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
  z-index: 2;
}
@media screen and (min-width: 960px) {
  #home .mv:before {
    height: 6.8055555556vw;
    max-height: 98px;
  }
}
#home .mv:after {
  width: 100%;
  height: 100%;
  background: url("../images/home/mv/mv_bg_sp.png") no-repeat center center;
  background-size: cover;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 960px) {
  #home .mv:after {
    width: 72.2222222222vw;
    background: url("../images/home/mv/mv_bg.png") no-repeat center center;
    background-size: cover;
  }
}
#home .mv .video {
  width: 84.6153846154vw;
  height: 100%;
  margin-left: auto;
  position: relative;
}
@media screen and (min-width: 960px) {
  #home .mv .video {
    width: 85.5555555556vw;
  }
}
#home .mv .video #mv_video, #home .mv .video img, #home .mv .video picture {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#home .mv .catch {
  width: 83.5897435897vw;
  position: absolute;
  top: 17.9487179487vw;
  left: 0;
  z-index: 1;
  opacity: 0.1%;
  visibility: hidden;
}
@media screen and (min-width: 960px) {
  #home .mv .catch {
    width: 39.0972222222vw;
    top: 10.4166666667vw;
    left: 5.1388888889vw;
  }
}
#home .mv .catch img {
  transform: translateZ(0);
  backface-visibility: hidden;
}
#home .mv .scroll_text {
  width: 100%;
  overflow: hidden;
  position: absolute;
  bottom: -8.2051282051vw;
  left: 0;
  z-index: 2;
}
@media screen and (min-width: 960px) {
  #home .mv .scroll_text {
    bottom: -3.75vw;
  }
}
#home .mv .scroll_text .scroll_inner {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: scroll-loop-left 30s linear infinite;
}
#home .mv .scroll_text .scroll_inner p {
  padding-right: 0.25em;
  font-size: 16.6666666667vw;
  line-height: 1;
  white-space: nowrap;
  color: #000;
}
@media screen and (min-width: 960px) {
  #home .mv .scroll_text .scroll_inner p {
    font-size: 7.6388888889vw;
  }
}
#home {
  /*================================
   about
   =================================*/
}
#home .about_wrap {
  padding-top: 26.6666666667vw;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 960px) {
  #home .about_wrap {
    padding-top: 16.8055555556vw;
  }
}
#home .about_wrap .top_bg, #home .about_wrap .top_scale {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: bottom center;
  overflow: hidden;
}
#home .about_wrap .top_bg div, #home .about_wrap .top_scale div {
  width: 100%;
  height: 100%;
  position: relative;
}
#home .about_wrap .top_bg div:before, #home .about_wrap .top_scale div:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#home .about_wrap .top_bg {
  height: 56.4102564103vw;
}
@media screen and (min-width: 960px) {
  #home .about_wrap .top_bg {
    height: 55.5555555556vw;
  }
}
#home .about_wrap .top_bg div:before {
  background: #950002;
}
#home .about_wrap .top_scale {
  will-change: transform;
  height: 57.1794871795vw;
}
@media screen and (min-width: 960px) {
  #home .about_wrap .top_scale {
    height: 57.0833333333vw;
  }
}
#home .about_wrap .top_scale div:before {
  background: url("../images/home/about/about_top_scale.svg") no-repeat top center;
  background-size: cover;
}
#home .about_wrap .inner {
  width: unset;
  max-width: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}
#home .about_wrap .inner .contents_title_wrap {
  text-align: center;
}
#home .about_wrap .inner .contents_title_wrap .title__en, #home .about_wrap .inner .contents_title_wrap .title__ja {
  color: rgb(255, 255, 255);
}
@media screen and (min-width: 960px) {
  #home .about_wrap .inner .fade .contents_title_wrap.titleIn .title__en span {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (min-width: 960px) {
  #home .about_wrap .inner .fade .contents_title_wrap.titleIn .title__ja span {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (min-width: 960px) {
  #home .about_wrap .inner .fade.anim_active .contents_title_wrap.titleIn .title__en span {
    animation: unset;
  }
}
@media screen and (min-width: 960px) {
  #home .about_wrap .inner .fade.anim_active .contents_title_wrap.titleIn .title__ja span {
    animation: unset;
  }
}
#home .about_wrap .inner .contents {
  width: unset;
  max-width: none;
  margin: 0 0 15.3846153846vw;
}
@media screen and (min-width: 960px) {
  #home .about_wrap .inner .contents {
    margin-bottom: 6.9444444444vw;
  }
}
@media screen and (min-width: 960px) {
  #home .about_wrap .inner .contents {
    margin-bottom: 100px;
  }
}
#home .about_wrap .inner .contents .top {
  margin-bottom: 20.5128205128vw;
  padding: 0 5.1282051282vw;
}
@media screen and (min-width: 960px) {
  #home .about_wrap .inner .contents .top {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 6.9444444444vw;
    padding: 0;
  }
}
@media screen and (min-width: 960px) {
  #home .about_wrap .inner .contents .top {
    margin-bottom: 100px;
  }
}
#home .about_wrap .inner .contents .top .text_wrap {
  margin-bottom: 7.6923076923vw;
}
@media screen and (min-width: 960px) {
  #home .about_wrap .inner .contents .top .text_wrap {
    width: 31.4583333333vw;
    max-width: 453px;
    margin-bottom: 0;
  }
}
#home .about_wrap .inner .contents .top .text_wrap .item_title_wrap {
  margin-bottom: 7.6923076923vw;
}
@media screen and (min-width: 960px) {
  #home .about_wrap .inner .contents .top .text_wrap .item_title_wrap {
    margin-bottom: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .about_wrap .inner .contents .top .text_wrap .item_title_wrap {
    margin-bottom: 40px;
  }
}
#home .about_wrap .inner .contents .top .text_wrap .item_title_wrap .title {
  width: auto;
  height: 10.7692307692vw;
  margin-bottom: 1.5384615385vw;
  clip-path: inset(0 100% 0 0);
  will-change: clip-path;
  transform: translateZ(0);
  backface-visibility: hidden;
}
@media screen and (min-width: 960px) {
  #home .about_wrap .inner .contents .top .text_wrap .item_title_wrap .title {
    height: 5vw;
    max-height: 72px;
    margin-bottom: 12px;
  }
}
#home .about_wrap .inner .contents .top .text_wrap .item_title_wrap .title span {
  display: inline-block;
  height: 100%;
  position: relative;
  transform: translateZ(0);
  backface-visibility: hidden;
}
#home .about_wrap .inner .contents .top .text_wrap .item_title_wrap .title span:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
#home .about_wrap .inner .contents .top .text_wrap .item_title_wrap .title span img {
  width: auto;
  height: 100%;
}
#home .about_wrap .inner .contents .top .text_wrap .item_title_wrap .title__001 span:before {
  background: url("../images/home/about/about_catch_top_bg.png") no-repeat center center;
  background-size: cover;
}
#home .about_wrap .inner .contents .top .text_wrap .item_title_wrap .title__002 span:before {
  background: url("../images/home/about/about_catch_bottom_bg.png") no-repeat center center;
  background-size: cover;
}
#home .about_wrap .inner .contents .top .text_wrap .text .mask {
  display: inline-block;
  position: relative;
  overflow: hidden;
}
#home .about_wrap .inner .contents .top .text_wrap .text .mask:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transform: translateX(-101%);
}
#home .about_wrap .inner .contents .top .text_wrap .text .mask span {
  opacity: 0.1%;
  visibility: hidden;
}
#home .about_wrap .inner .contents .top .text_wrap .text.sp .mask span {
  letter-spacing: -0.09em;
}
#home .about_wrap .inner .contents .top #about_slide {
  opacity: 0.1%;
  visibility: hidden;
  transform: scale(1.25);
}
@media screen and (min-width: 960px) {
  #home .about_wrap .inner .contents .top #about_slide {
    width: 50vw;
    margin-left: 4.1666666667vw;
  }
}
#home .about_wrap .inner .contents .top.anim_active .text_wrap .item_title_wrap .item_title .title {
  animation: maskLeftFade 0.35s linear forwards;
}
#home .about_wrap .inner .contents .top.anim_active .text_wrap .text .mask:before {
  animation: textLeftCurtain 0.85s linear forwards;
}
#home .about_wrap .inner .contents .top.anim_active .text_wrap .text .mask span {
  animation: fadein 0.3s 0.3s linear forwards;
}
#home .about_wrap .inner .contents .top.anim_active #about_slide {
  animation: imageScaleFade 0.6s linear forwards;
}
#home .about_wrap .inner .contents .bottom {
  padding: 15.3846153846vw 5.1282051282vw;
  position: relative;
}
@media screen and (min-width: 960px) {
  #home .about_wrap .inner .contents .bottom {
    padding: 6.9444444444vw 0;
  }
}
@media screen and (min-width: 1440px) {
  #home .about_wrap .inner .contents .bottom {
    padding: 100px 0;
  }
}
#home .about_wrap .inner .contents .bottom:before, #home .about_wrap .inner .contents .bottom:after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 0;
}
#home .about_wrap .inner .contents .bottom:before {
  width: 60.2564102564vw;
  height: 100%;
  background: #950002;
  left: 0;
}
@media screen and (min-width: 960px) {
  #home .about_wrap .inner .contents .bottom:before {
    width: 32.2222222222vw;
  }
}
#home .about_wrap .inner .contents .bottom:after {
  width: 25.3846153846vw;
  height: 431.7948717949vw;
  background: url("../images/home/about/about_bottom_right_text_sp.svg") no-repeat center center;
  background-size: 100%;
  right: 0;
}
@media screen and (min-width: 960px) {
  #home .about_wrap .inner .contents .bottom:after {
    width: 12.9166666667vw;
    max-width: 186px;
    height: 108.6111111111vw;
    max-height: 1564px;
    background: url("../images/home/about/about_bottom_right_text.svg") no-repeat center center;
    background-size: 100%;
  }
}
#home .about_wrap .inner .contents .bottom .section {
  margin-bottom: 5.1282051282vw;
  position: relative;
  z-index: 1;
  transform: translateY(10px);
  opacity: 0.1%;
  visibility: hidden;
}
@media screen and (min-width: 960px) {
  #home .about_wrap .inner .contents .bottom .section {
    width: 71.1111111111vw;
    max-width: 1024px;
    margin: 0 auto 5.5555555556vw;
    transform-origin: bottom right;
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (min-width: 1440px) {
  #home .about_wrap .inner .contents .bottom .section {
    margin-bottom: 80px;
  }
}
#home .about_wrap .inner .contents .bottom .section:last-child {
  margin-bottom: 0;
}
#home .about_wrap .inner .contents .bottom .section .item_title_wrap {
  display: flex;
  margin-bottom: 3.5897435897vw;
}
@media screen and (min-width: 960px) {
  #home .about_wrap .inner .contents .bottom .section .item_title_wrap {
    margin-bottom: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .about_wrap .inner .contents .bottom .section .item_title_wrap {
    margin-bottom: 20px;
  }
}
#home .about_wrap .inner .contents .bottom .section .item_title_wrap span {
  display: block;
  font-size: 12.3076923077vw;
}
@media screen and (min-width: 960px) {
  #home .about_wrap .inner .contents .bottom .section .item_title_wrap span {
    font-size: 4.1666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .about_wrap .inner .contents .bottom .section .item_title_wrap span {
    font-size: 60px;
  }
}
#home .about_wrap .inner .contents .bottom .section .item_title_wrap .number {
  margin-right: 5.1282051282vw;
}
@media screen and (min-width: 960px) {
  #home .about_wrap .inner .contents .bottom .section .item_title_wrap .number {
    margin-right: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .about_wrap .inner .contents .bottom .section .item_title_wrap .number {
    margin-right: 40px;
  }
}
@media screen and (min-width: 960px) {
  #home .about_wrap .inner .contents .bottom .section .item {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
#home .about_wrap .inner .contents .bottom .section .item .image {
  margin-bottom: 3.0769230769vw;
}
@media screen and (min-width: 960px) {
  #home .about_wrap .inner .contents .bottom .section .item .image {
    width: 35.5555555556vw;
    max-width: 512px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 960px) {
  #home .about_wrap .inner .contents .bottom .section .item .text_wrap {
    width: 32.7777777778vw;
    max-width: 472px;
  }
}
#home .about_wrap .inner .contents .bottom .section .item .text_wrap h4 {
  margin-bottom: 1.2820512821vw;
  font-size: 6.1538461538vw;
}
@media screen and (min-width: 960px) {
  #home .about_wrap .inner .contents .bottom .section .item .text_wrap h4 {
    margin-bottom: 0.9722222222vw;
    font-size: 1.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .about_wrap .inner .contents .bottom .section .item .text_wrap h4 {
    margin-bottom: 14px;
    font-size: 28px;
  }
}
#home .about_wrap .inner .contents .bottom .section .item .text_wrap .text {
  line-height: 1.875;
}
#home .about_wrap .inner .contents .bottom .section.anim_active {
  animation: fadeUp 0.4s forwards;
}
@media screen and (min-width: 960px) {
  #home .about_wrap .inner .contents .bottom .section.anim_active {
    animation: unset;
  }
}
#home .about_wrap .inner .view_all_link {
  padding: 0 5.1282051282vw;
}
@media screen and (min-width: 960px) {
  #home .about_wrap .inner .view_all_link {
    padding: 0;
  }
}
#home {
  /*================================
   news
   =================================*/
}
#home .news_wrap {
  margin-top: -15.3846153846vw;
  padding: 67.1794871795vw 0 23.0769230769vw;
  background: #950002;
  position: relative;
}
@media screen and (min-width: 960px) {
  #home .news_wrap {
    margin-top: -12.5vw;
    padding: 46.3888888889vw 0 27.3611111111vw;
  }
}
#home .news_wrap .top_bg, #home .news_wrap .bottom_bg {
  width: 100%;
  position: absolute;
  left: 0;
  z-index: 0;
}
#home .news_wrap .top_bg div, #home .news_wrap .bottom_bg div {
  width: 100%;
  height: 100%;
  position: relative;
}
#home .news_wrap .top_bg div:before, #home .news_wrap .bottom_bg div:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#home .news_wrap .top_bg.top_bg, #home .news_wrap .bottom_bg.top_bg {
  height: 197.4358974359vw;
  top: -1px;
}
@media screen and (min-width: 960px) {
  #home .news_wrap .top_bg.top_bg, #home .news_wrap .bottom_bg.top_bg {
    height: 124.4444444444vw;
  }
}
#home .news_wrap .top_bg.top_bg div:before, #home .news_wrap .bottom_bg.top_bg div:before {
  background: url("../images/home/news/news_top_bg_sp.png") no-repeat top center;
  background-size: 100%;
}
@media screen and (min-width: 960px) {
  #home .news_wrap .top_bg.top_bg div:before, #home .news_wrap .bottom_bg.top_bg div:before {
    background: url("../images/home/news/news_top_bg.png") no-repeat top center;
    background-size: 100%;
  }
}
#home .news_wrap .top_bg.bottom_bg, #home .news_wrap .bottom_bg.bottom_bg {
  height: 48.4615384615vw;
  bottom: -1px;
}
@media screen and (min-width: 960px) {
  #home .news_wrap .top_bg.bottom_bg, #home .news_wrap .bottom_bg.bottom_bg {
    height: 48.4027777778vw;
  }
}
#home .news_wrap .top_bg.bottom_bg div:before, #home .news_wrap .bottom_bg.bottom_bg div:before {
  background: url("../images/home/news/news_bottom_bg.png") no-repeat bottom center;
  background-size: 100%;
}
#home .news_wrap .inner {
  position: relative;
  z-index: 1;
}
#home .news_wrap .inner .contents {
  min-height: 87.1794871795vw;
  margin-bottom: 10.2564102564vw;
}
@media screen and (min-width: 960px) {
  #home .news_wrap .inner .contents {
    display: flex;
    justify-content: space-between;
    width: 71.1111111111vw;
    max-width: 1024px;
    min-height: 42.7083333333vw;
    margin: 0 auto 4.8611111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .news_wrap .inner .contents {
    min-height: 615px;
    margin-bottom: 70px;
  }
}
#home .news_wrap .inner .contents .category_list {
  margin-bottom: 5.1282051282vw;
  background: #fff;
  border-radius: 7.6923076923vw;
  position: relative;
  opacity: 0.1%;
  visibility: hidden;
}
@media screen and (min-width: 960px) {
  #home .news_wrap .inner .contents .category_list {
    margin: 0;
    padding-top: 2.0833333333vw;
    background: unset;
    border-radius: unset;
  }
}
@media screen and (min-width: 1440px) {
  #home .news_wrap .inner .contents .category_list {
    padding-top: 30px;
  }
}
#home .news_wrap .inner .contents .category_list .category_top_text {
  padding: 3.3333333333vw 7.6923076923vw;
  color: #000;
  position: relative;
  cursor: pointer;
}
#home .news_wrap .inner .contents .category_list .category_top_text:before {
  content: "";
  width: 3.5897435897vw;
  height: 2.5641025641vw;
  background: url("../images/common/accordion_arrow.svg") no-repeat center center;
  background-size: 100%;
  position: absolute;
  top: 50%;
  right: 7.6923076923vw;
  transform: translateY(-50%);
  transition: all 0.4s;
}
#home .news_wrap .inner .contents .category_list .category_top_text.open:before {
  transform: translateY(-50%) rotate3d(0, 0, 1, 180deg);
}
#home .news_wrap .inner .contents .category_list ul {
  padding: 0 7.6923076923vw 3.3333333333vw;
  display: none;
}
@media screen and (min-width: 960px) {
  #home .news_wrap .inner .contents .category_list ul {
    display: block;
    padding: 0;
  }
}
#home .news_wrap .inner .contents .category_list ul li {
  padding: 2.5641025641vw 0;
  border-bottom: 1px solid #B0B0B0;
  color: #000;
  cursor: pointer;
}
@media screen and (min-width: 960px) {
  #home .news_wrap .inner .contents .category_list ul li {
    margin-bottom: 1.3888888889vw;
    padding: 0;
    color: #fff;
    border: none;
  }
}
@media screen and (min-width: 1440px) {
  #home .news_wrap .inner .contents .category_list ul li {
    margin-bottom: 20px;
  }
}
#home .news_wrap .inner .contents .category_list ul li:first-child {
  border-top: 1px solid #B0B0B0;
}
@media screen and (min-width: 960px) {
  #home .news_wrap .inner .contents .category_list ul li:first-child {
    border: none;
  }
}
#home .news_wrap .inner .contents .category_list ul li:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 960px) {
  #home .news_wrap .inner .contents .category_list ul li.all {
    font-size: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .news_wrap .inner .contents .category_list ul li.all {
    font-size: 20px;
  }
}
#home .news_wrap .inner .contents .category_list ul li.current-cat {
  color: #8C734B;
}
@media screen and (min-width: 960px) {
  #home .news_wrap .inner .contents .archive_list_wrap .archive_list {
    width: 55.5555555556vw;
    max-width: 800px;
  }
}
#home .news_wrap .inner .contents .archive_list_wrap .archive_list .item {
  border-bottom: 1px solid #B0B0B0;
  position: relative;
  opacity: 0.1%;
  visibility: hidden;
  transform: translateX(10px);
}
#home .news_wrap .inner .contents .archive_list_wrap .archive_list .item a {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 5.1282051282vw 0;
  position: relative;
}
@media screen and (min-width: 960px) {
  #home .news_wrap .inner .contents .archive_list_wrap .archive_list .item a {
    padding: 2.0833333333vw 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .news_wrap .inner .contents .archive_list_wrap .archive_list .item a {
    padding: 30px 20px;
  }
}
@media screen and (min-width: 960px) {
  #home .news_wrap .inner .contents .archive_list_wrap .archive_list .item a:hover {
    background: #8C734B;
  }
}
#home .news_wrap .inner .contents .archive_list_wrap .archive_list .item a .image {
  width: 38.4615384615vw;
  height: 26.4102564103vw;
  margin-right: 5.1282051282vw;
  flex-shrink: 0;
}
@media screen and (min-width: 960px) {
  #home .news_wrap .inner .contents .archive_list_wrap .archive_list .item a .image {
    width: 13.1944444444vw;
    max-width: 190px;
    height: 9.0277777778vw;
    max-height: 130px;
    margin-right: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .news_wrap .inner .contents .archive_list_wrap .archive_list .item a .image {
    margin-right: 20px;
  }
}
#home .news_wrap .inner .contents .archive_list_wrap .archive_list .item a .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#home .news_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap {
  width: 100%;
}
#home .news_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap ul {
  display: flex;
  align-items: center;
  margin-bottom: 3.5897435897vw;
}
@media screen and (min-width: 960px) {
  #home .news_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap ul {
    margin-bottom: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .news_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap ul {
    margin-bottom: 20px;
  }
}
#home .news_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap ul li.date {
  margin-right: 2.5641025641vw;
  font-size: 3.5897435897vw;
}
@media screen and (min-width: 960px) {
  #home .news_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap ul li.date {
    margin-right: 0.6944444444vw;
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .news_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap ul li.date {
    margin-right: 10px;
    font-size: 16px;
  }
}
#home .news_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap ul li.category span {
  display: inline-block;
  padding: 0.5128205128vw 2.5641025641vw 0.7692307692vw;
  font-size: 2.5641025641vw;
  border: 1px solid #fff;
  border-radius: 5.1282051282vw;
}
@media screen and (min-width: 960px) {
  #home .news_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap ul li.category span {
    padding: 0.1388888889vw 0.6944444444vw 0.2083333333vw;
    font-size: 0.8333333333vw;
    border-radius: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .news_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap ul li.category span {
    padding: 2px 10px 3px;
    font-size: 12px;
    border-radius: 20px;
  }
}
#home .news_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap .title {
  padding-right: 7.6923076923vw;
}
@media screen and (min-width: 960px) {
  #home .news_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap .title {
    padding-right: 3.125vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .news_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap .title {
    padding-right: 45px;
  }
}
#home .news_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap .arrow {
  width: 6.6666666667vw;
  height: 6.6666666667vw;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 960px) {
  #home .news_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap .arrow {
    width: 2.7777777778vw;
    max-width: 40px;
    height: 2.7777777778vw;
    max-height: 40px;
    right: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .news_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap .arrow {
    right: 20px;
  }
}
#home .news_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap .arrow svg {
  width: 2.5641025641vw;
}
@media screen and (min-width: 960px) {
  #home .news_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap .arrow svg {
    width: 1.1111111111vw;
    max-width: 16px;
  }
}
#home .news_wrap .inner.anim_active .contents .category_list {
  animation: fadein 0.6s forwards;
}
#home .news_wrap .inner.anim_active .contents .archive_list_wrap .archive_list .item {
  animation: leftMoveFade 0.6s forwards;
}
#home .news_wrap .inner.anim_active .contents .archive_list_wrap .archive_list .item:nth-child(1) {
  animation-delay: 0.2s;
}
#home .news_wrap .inner.anim_active .contents .archive_list_wrap .archive_list .item:nth-child(2) {
  animation-delay: 0.35s;
}
#home .news_wrap .inner.anim_active .contents .archive_list_wrap .archive_list .item:nth-child(3) {
  animation-delay: 0.5s;
}
#home .news_wrap .inner.anim_active .contents .archive_list_wrap .archive_list .item:nth-child(4) {
  animation-delay: 0.65s;
}
#home .news_wrap .inner.anim_active .contents .archive_list_wrap .archive_list .item:nth-child(5) {
  animation-delay: 0.8s;
}
#home {
  /*================================
   teams
   =================================*/
}
#home .teams_wrap {
  padding-top: 20.5128205128vw;
  background: #000;
  position: relative;
}
@media screen and (min-width: 960px) {
  #home .teams_wrap {
    padding-top: 4.4444444444vw;
  }
}
#home .teams_wrap .inner {
  width: 100%;
  max-width: unset;
  margin: 0 0 20.5128205128vw;
  padding: 0;
}
@media screen and (min-width: 960px) {
  #home .teams_wrap .inner {
    margin-bottom: 13.8888888889vw;
  }
}
#home .teams_wrap .inner .top {
  margin-bottom: 15.3846153846vw;
  padding: 0 5.1282051282vw;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 960px) {
  #home .teams_wrap .inner .top {
    margin-bottom: 4.8611111111vw;
    padding: 0;
  }
}
@media screen and (min-width: 1440px) {
  #home .teams_wrap .inner .top {
    margin-bottom: 4.8611111111vw;
  }
}
@media screen and (min-width: 960px) {
  #home .teams_wrap .inner .top .contents_title_wrap {
    width: 94.4444444444vw;
    max-width: 1360px;
    margin-right: auto;
    margin-left: auto;
  }
}
#home .teams_wrap .inner .top .item_title_wrap {
  margin-bottom: 7.6923076923vw;
}
@media screen and (min-width: 960px) {
  #home .teams_wrap .inner .top .item_title_wrap {
    margin-bottom: 2.7777777778vw;
    text-align: center;
  }
}
@media screen and (min-width: 1440px) {
  #home .teams_wrap .inner .top .item_title_wrap {
    margin-bottom: 40px;
  }
}
#home .teams_wrap .inner .top .item_title_wrap .title {
  width: auto;
  height: 10.7692307692vw;
  margin-bottom: 1.5384615385vw;
  clip-path: inset(0 100% 0 0);
}
@media screen and (min-width: 960px) {
  #home .teams_wrap .inner .top .item_title_wrap .title {
    height: 5vw;
    max-height: 72px;
    margin-bottom: 12px;
  }
}
#home .teams_wrap .inner .top .item_title_wrap .title span {
  display: inline-block;
  height: 100%;
  position: relative;
}
#home .teams_wrap .inner .top .item_title_wrap .title span:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
#home .teams_wrap .inner .top .item_title_wrap .title span img {
  width: auto;
  height: 100%;
}
#home .teams_wrap .inner .top .item_title_wrap .title__001 span:before {
  background: url("../images/home/teams/teams_catch_top_bg.png") no-repeat center center;
  background-size: cover;
}
#home .teams_wrap .inner .top .item_title_wrap .title__002 span:before {
  background: url("../images/home/teams/teams_catch_bottom_bg.png") no-repeat center center;
  background-size: cover;
}
@media screen and (min-width: 960px) {
  #home .teams_wrap .inner .top .text {
    text-align: center;
  }
}
#home .teams_wrap .inner .top .text .mask {
  display: inline-block;
  position: relative;
  overflow: hidden;
}
#home .teams_wrap .inner .top .text .mask:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transform: translateX(-101%);
}
#home .teams_wrap .inner .top .text .mask span {
  opacity: 0.1%;
  visibility: hidden;
}
#home .teams_wrap .inner .top .text.sp .mask span {
  letter-spacing: -0.09em;
}
#home .teams_wrap .inner .top.anim_active .item_title_wrap .item_title .title {
  animation: maskLeftFade 0.35s linear forwards;
}
#home .teams_wrap .inner .top.anim_active .text .mask:before {
  animation: textLeftCurtain 0.85s linear forwards;
}
#home .teams_wrap .inner .top.anim_active .text .mask span {
  animation: fadein 0.3s 0.3s linear forwards;
}
#home .teams_wrap .inner .contents {
  margin-bottom: 15.3846153846vw;
  position: relative;
}
@media screen and (min-width: 960px) {
  #home .teams_wrap .inner .contents {
    margin-bottom: 4.8611111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .teams_wrap .inner .contents {
    margin-bottom: 70px;
  }
}
#home .teams_wrap .inner .contents:before {
  content: "";
  width: 369.2307692308vw;
  height: 205.1282051282vw;
  background: url("../images/home/teams/teams_bg.png") no-repeat top center;
  background-size: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
@media screen and (min-width: 960px) {
  #home .teams_wrap .inner .contents:before {
    width: 100%;
    height: 64.0277777778vw;
  }
}
#home .teams_wrap .inner .contents .teams_slide_wrap #teams_slide {
  margin-bottom: 10.2564102564vw;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  #home .teams_wrap .inner .contents .teams_slide_wrap #teams_slide {
    margin-left: 14.4444444444vw;
    margin-bottom: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .teams_wrap .inner .contents .teams_slide_wrap #teams_slide {
    margin-bottom: 40px;
  }
}
#home .teams_wrap .inner .contents .teams_slide_wrap #teams_slide .slide_item {
  clip-path: inset(0 100% 0 0);
}
#home .teams_wrap .inner .contents .teams_slide_wrap #teams_slide .slide_item .slide_image {
  margin-bottom: 2.5641025641vw;
}
@media screen and (min-width: 960px) {
  #home .teams_wrap .inner .contents .teams_slide_wrap #teams_slide .slide_item .slide_image {
    margin-bottom: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .teams_wrap .inner .contents .teams_slide_wrap #teams_slide .slide_item .slide_image {
    margin-bottom: 10px;
  }
}
#home .teams_wrap .inner .contents .teams_slide_wrap #teams_slide .slide_item .slide_image img {
  transform: scale(1.1);
}
#home .teams_wrap .inner .contents .teams_slide_wrap #teams_slide .slide_item .name {
  font-size: 5.1282051282vw;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 960px) {
  #home .teams_wrap .inner .contents .teams_slide_wrap #teams_slide .slide_item .name {
    font-size: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .teams_wrap .inner .contents .teams_slide_wrap #teams_slide .slide_item .name {
    font-size: 20px;
  }
}
#home .teams_wrap .inner .contents .control {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 11.5384615385vw;
}
@media screen and (min-width: 960px) {
  #home .teams_wrap .inner .contents .control {
    justify-content: flex-end;
    width: 71.1111111111vw;
    max-width: 1024px;
    margin: 0 auto;
    padding: 0;
  }
}
#home .teams_wrap .inner .contents .control .swiper-button-prev, #home .teams_wrap .inner .contents .control .swiper-button-next, #home .teams_wrap .inner .contents .control .swiper-pagination {
  margin: 0;
  padding: 0;
  position: unset;
  top: unset;
  left: unset;
  right: unset;
  bottom: unset;
}
#home .teams_wrap .inner .contents .control .swiper-button-prev, #home .teams_wrap .inner .contents .control .swiper-button-next {
  width: auto;
  height: auto;
}
#home .teams_wrap .inner .contents .control .swiper-button-prev:after, #home .teams_wrap .inner .contents .control .swiper-button-next:after {
  content: none;
}
#home .teams_wrap .inner .contents .control .swiper-button-prev .arrow, #home .teams_wrap .inner .contents .control .swiper-button-next .arrow {
  width: 10.2564102564vw;
  height: 10.2564102564vw;
}
@media screen and (min-width: 960px) {
  #home .teams_wrap .inner .contents .control .swiper-button-prev .arrow, #home .teams_wrap .inner .contents .control .swiper-button-next .arrow {
    width: 2.7777777778vw;
    max-width: 40px;
    height: 2.7777777778vw;
    max-height: 40px;
  }
}
#home .teams_wrap .inner .contents .control .swiper-button-prev .arrow svg, #home .teams_wrap .inner .contents .control .swiper-button-next .arrow svg {
  width: 4.1025641026vw;
}
@media screen and (min-width: 960px) {
  #home .teams_wrap .inner .contents .control .swiper-button-prev .arrow svg, #home .teams_wrap .inner .contents .control .swiper-button-next .arrow svg {
    width: 1.1111111111vw;
    max-width: 16px;
  }
}
#home .teams_wrap .inner .contents .control .swiper-button-prev {
  transform: scale(-1, 1);
}
@media screen and (min-width: 960px) {
  #home .teams_wrap .inner .contents .control .swiper-button-prev {
    margin-right: 0.6944444444vw;
    order: 2;
  }
}
@media screen and (min-width: 1440px) {
  #home .teams_wrap .inner .contents .control .swiper-button-prev {
    margin-right: 10px;
  }
}
@media screen and (min-width: 960px) {
  #home .teams_wrap .inner .contents .control .swiper-button-next {
    order: 3;
  }
}
#home .teams_wrap .inner .contents .control .swiper-pagination {
  display: flex;
  width: auto;
}
@media screen and (min-width: 960px) {
  #home .teams_wrap .inner .contents .control .swiper-pagination {
    margin-right: 2.0833333333vw;
    order: 1;
  }
}
@media screen and (min-width: 1440px) {
  #home .teams_wrap .inner .contents .control .swiper-pagination {
    margin-right: 30px;
  }
}
#home .teams_wrap .inner .contents .control .swiper-pagination-bullet {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.1282051282vw;
  height: 5.1282051282vw;
  background: transparent;
  opacity: 1;
}
@media screen and (min-width: 960px) {
  #home .teams_wrap .inner .contents .control .swiper-pagination-bullet {
    width: 1.3888888889vw;
    max-width: 20px;
    height: 1.3888888889vw;
    max-height: 20px;
  }
}
#home .teams_wrap .inner .contents .control .swiper-pagination-bullet:after {
  content: "";
  width: 3.0769230769vw;
  height: 3.0769230769vw;
  border-radius: 50%;
  background: #fff;
  opacity: 0.5;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 960px) {
  #home .teams_wrap .inner .contents .control .swiper-pagination-bullet:after {
    width: 0.8333333333vw;
    max-width: 12px;
    height: 0.8333333333vw;
    max-height: 12px;
  }
}
#home .teams_wrap .inner .contents .control .swiper-pagination-bullet-active:after {
  opacity: 1;
}
#home .teams_wrap .inner .contents .control .swiper-pagination-bullet svg.progress {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  position: absolute;
  top: 0;
  left: 0;
}
#home .teams_wrap .inner .contents .control .swiper-pagination-bullet circle {
  fill: none;
  stroke-width: 2;
}
#home .teams_wrap .inner .contents .control .swiper-pagination-bullet .bg {
  stroke: rgba(255, 255, 255, 0.2);
}
#home .teams_wrap .inner .contents .control .swiper-pagination-bullet .progress-circle {
  stroke: #fff;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  opacity: 0;
}
#home .teams_wrap .inner .contents .control .swiper-pagination-bullet .progress-circle.animate {
  opacity: 1;
  animation: progressCircle 4s linear forwards;
}
#home .teams_wrap .inner .contents.anim_active #teams_slide .slide_item {
  animation: maskLeftFade 0.3s 0.2s linear forwards;
}
#home .teams_wrap .inner .contents.anim_active #teams_slide .slide_item .slide_image img {
  animation: scale_image 0.6s 0.2s linear forwards;
}
#home .teams_wrap .inner .view_all_link {
  padding: 0 5.1282051282vw;
}
@media screen and (min-width: 960px) {
  #home .teams_wrap .inner .view_all_link {
    padding: 0;
  }
}
#home .teams_wrap .scroll_image_wrap {
  width: 100%;
  overflow: hidden;
  opacity: 0.1%;
  visibility: hidden;
}
#home .teams_wrap .scroll_image_wrap .scroll_image {
  margin-bottom: 3.5897435897vw;
}
@media screen and (min-width: 960px) {
  #home .teams_wrap .scroll_image_wrap .scroll_image {
    margin-bottom: 1.3888888889vw;
  }
}
#home .teams_wrap .scroll_image_wrap .scroll_image:last-child {
  margin-bottom: 0;
}
#home .teams_wrap .scroll_image_wrap .scroll_image .scroll_inner {
  display: flex;
  width: -moz-max-content;
  width: max-content;
}
#home .teams_wrap .scroll_image_wrap .scroll_image .scroll_inner .image {
  width: 48.7179487179vw;
  margin-right: 3.5897435897vw;
}
@media screen and (min-width: 960px) {
  #home .teams_wrap .scroll_image_wrap .scroll_image .scroll_inner .image {
    width: 19.4444444444vw;
    margin-right: 1.3888888889vw;
  }
}
#home .teams_wrap .scroll_image_wrap .scroll_image.top .scroll_inner {
  animation: scroll-loop-left 30s linear infinite;
}
#home .teams_wrap .scroll_image_wrap .scroll_image.bottom .scroll_inner {
  animation: scroll-loop-right 30s linear infinite;
}
#home .teams_wrap .scroll_image_wrap.anim_active {
  animation: fadein 0.3s linear forwards;
}
#home {
  /*================================
   content
   =================================*/
}
#home .content_wrap {
  padding: 20.5128205128vw 0;
  background: #950002;
  position: relative;
}
@media screen and (min-width: 960px) {
  #home .content_wrap {
    padding: 13.8888888889vw 0;
  }
}
@media screen and (min-width: 1440px) {
  #home .content_wrap {
    padding: 200px 0;
  }
}
#home .content_wrap:before {
  content: "";
  width: 100%;
  height: 100%;
  background: url("../images/home/content/content_bg.jpg") no-repeat center center;
  background-size: cover;
  mix-blend-mode: overlay;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0.2;
}
#home .content_wrap .inner {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 960px) {
  #home .content_wrap .inner .contents {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 71.1111111111vw;
    max-width: 1024px;
    margin: 0 auto;
  }
}
#home .content_wrap .inner .contents .item {
  margin-bottom: 7.6923076923vw;
  clip-path: inset(0 100% 0 0);
}
@media screen and (min-width: 960px) {
  #home .content_wrap .inner .contents .item {
    width: 32%;
    margin-bottom: 0;
  }
}
#home .content_wrap .inner .contents .item:last-child {
  margin-bottom: 0;
}
#home .content_wrap .inner .contents .item a {
  width: 100%;
  position: relative;
  overflow: hidden;
}
#home .content_wrap .inner .contents .item a:before, #home .content_wrap .inner .contents .item a:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#home .content_wrap .inner .contents .item a:before {
  background: url("../images/home/content/content_link_overlay.png") no-repeat center center;
  background-size: cover;
  mix-blend-mode: luminosity;
  z-index: 2;
  opacity: 0.4;
}
#home .content_wrap .inner .contents .item a:after {
  background: #6F4D16;
  mix-blend-mode: hard-light;
  transition: all 0.4s;
  opacity: 0;
  z-index: 1;
}
#home .content_wrap .inner .contents .item a img {
  transform: scale(1.1);
}
#home .content_wrap .inner .contents .item a .name_wrap {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
#home .content_wrap .inner .contents .item a .name_wrap .name {
  font-size: 10.2564102564vw;
  white-space: nowrap;
  color: #fff;
}
@media screen and (min-width: 960px) {
  #home .content_wrap .inner .contents .item a .name_wrap .name {
    font-size: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .content_wrap .inner .contents .item a .name_wrap .name {
    font-size: 40px;
  }
}
#home .content_wrap .inner .contents .item a .arrow {
  width: 10.2564102564vw;
  height: 10.2564102564vw;
  position: absolute;
  bottom: 5.1282051282vw;
  right: 5.1282051282vw;
  z-index: 3;
}
@media screen and (min-width: 960px) {
  #home .content_wrap .inner .contents .item a .arrow {
    width: 2.7777777778vw;
    max-width: 40px;
    height: 2.7777777778vw;
    max-height: 40px;
    bottom: 0.6944444444vw;
    right: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .content_wrap .inner .contents .item a .arrow {
    bottom: 10px;
    right: 10px;
  }
}
#home .content_wrap .inner .contents .item a .arrow svg {
  width: 4.1025641026vw;
}
@media screen and (min-width: 960px) {
  #home .content_wrap .inner .contents .item a .arrow svg {
    width: 1.1111111111vw;
    max-width: 16px;
  }
}
@media screen and (min-width: 960px) {
  #home .content_wrap .inner .contents .item a:hover:after {
    opacity: 1;
  }
}
#home .content_wrap .inner .contents .item.coming_soon a {
  pointer-events: none;
}
#home .content_wrap .inner .contents .item.coming_soon a .name_wrap .coming_soon_text {
  font-size: 6.1538461538vw;
  white-space: nowrap;
}
@media screen and (min-width: 960px) {
  #home .content_wrap .inner .contents .item.coming_soon a .name_wrap .coming_soon_text {
    font-size: 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .content_wrap .inner .contents .item.coming_soon a .name_wrap .coming_soon_text {
    font-size: 24px;
  }
}
#home .content_wrap .inner .contents .item.coming_soon a .arrow {
  z-index: 1;
}
#home .content_wrap .inner .contents .item.coming_soon a:after {
  mix-blend-mode: unset;
  background: #000;
  opacity: 0.6;
}
#home .content_wrap .inner.anim_active .contents .item {
  animation: maskLeftFade 0.3s 0.2s linear forwards;
}
#home .content_wrap .inner.anim_active .contents .item a img {
  animation: scale_image 0.6s 0.2s linear forwards;
}
#home {
  /*================================
   sponsor
   =================================*/
}
#home .sponsor_wrap {
  padding: 20.5128205128vw 0;
  background: #000;
  position: relative;
}
@media screen and (min-width: 960px) {
  #home .sponsor_wrap {
    padding: 13.8888888889vw 0;
  }
}
@media screen and (min-width: 1440px) {
  #home .sponsor_wrap {
    padding: 200px 0;
  }
}
#home .sponsor_wrap:before {
  content: "";
  width: 100%;
  height: 100%;
  background: url("../images/home/sponsor/sponsor_bg.png") no-repeat center center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
#home .sponsor_wrap .inner {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 960px) {
  #home .sponsor_wrap .inner .contents {
    width: 71.1111111111vw;
    max-width: 1024px;
    margin: 0 auto;
  }
}
#home .sponsor_wrap .inner .contents .top, #home .sponsor_wrap .inner .contents .bottom {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
#home .sponsor_wrap .inner .contents .item {
  position: relative;
  border-bottom: 1px solid #000;
}
@media screen and (min-width: 960px) {
  #home .sponsor_wrap .inner .contents .item {
    border-bottom: unset;
  }
}
@media screen and (min-width: 960px) {
  #home .sponsor_wrap .inner .contents .item:before {
    content: "";
    width: 1px;
    height: 100%;
    background: #000;
    position: absolute;
    top: 0;
    right: 0;
  }
}
#home .sponsor_wrap .inner .contents .item:nth-child(5):before, #home .sponsor_wrap .inner .contents .item:last-child:before {
  content: none;
}
@media screen and (min-width: 960px) {
  #home .sponsor_wrap .inner .contents .top {
    border-bottom: 1px solid #000;
  }
}
@media screen and (min-width: 960px) {
  #home .sponsor_wrap .inner .contents .top .item {
    width: 50%;
  }
}
@media screen and (min-width: 960px) {
  #home .sponsor_wrap .inner .contents .bottom {
    border-bottom: 1px solid #000;
  }
}
#home .sponsor_wrap .inner .contents .bottom .item {
  width: 50%;
}
@media screen and (min-width: 960px) {
  #home .sponsor_wrap .inner .contents .bottom .item {
    width: 20%;
    border-bottom: 1px solid #000;
  }
}
@media screen and (min-width: 960px) {
  #home .sponsor_wrap .inner .contents .bottom .item:nth-last-child(1), #home .sponsor_wrap .inner .contents .bottom .item:nth-last-child(2), #home .sponsor_wrap .inner .contents .bottom .item:nth-last-child(3), #home .sponsor_wrap .inner .contents .bottom .item:nth-last-child(4), #home .sponsor_wrap .inner .contents .bottom .item:nth-last-child(5) {
    border-bottom: none;
  }
}
#home .sponsor_wrap .inner .contents .bottom .item:nth-child(2n+1):after {
  content: "";
  width: 1px;
  height: 100%;
  background: #000;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (min-width: 960px) {
  #home .sponsor_wrap .inner .contents .bottom .item:nth-child(2n+1):after {
    content: none;
  }
}

/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

		under

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
.under main {
  padding-bottom: 47.6923076923vw;
  position: relative;
}
@media screen and (min-width: 960px) {
  .under main {
    padding-bottom: 45.2083333333vw;
  }
}
.under main:before {
  content: "";
  width: 100%;
  height: 45.3846153846vw;
  background: url("../images/common/under_bottom_bg.png") no-repeat bottom center;
  background-size: 100%;
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 960px) {
  .under main:before {
    height: 45.2083333333vw;
  }
}
.under {
  /*================================
  mv
  =================================*/
}
.under .mv {
  margin-bottom: 11.7948717949vw;
}
@media screen and (min-width: 960px) {
  .under .mv {
    margin-bottom: 10.8333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .under .mv {
    margin-bottom: 156px;
  }
}
.under .mv .mv_contents {
  height: 76.9230769231vw;
  margin-bottom: 2.5641025641vw;
  position: relative;
}
@media screen and (min-width: 960px) {
  .under .mv .mv_contents {
    height: 34.7222222222vw;
  }
}
@media screen and (min-width: 960px) {
  .under .mv .mv_contents {
    margin-bottom: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .under .mv .mv_contents {
    margin-bottom: 20px;
  }
}
.under .mv .mv_contents:before, .under .mv .mv_contents:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
}
.under .mv .mv_contents:before {
  width: 100%;
  height: 22.0512820513vw;
  background: linear-gradient(#000 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
  z-index: 2;
}
@media screen and (min-width: 960px) {
  .under .mv .mv_contents:before {
    height: 6.8055555556vw;
    max-height: 98px;
  }
}
.under .mv .mv_contents:after {
  width: 100%;
  height: 100%;
  background: url("../images/home/mv/mv_bg_sp.png") no-repeat center center;
  background-size: cover;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 960px) {
  .under .mv .mv_contents:after {
    width: 72.2222222222vw;
    background: url("../images/home/mv/mv_bg.png") no-repeat center center;
    background-size: cover;
  }
}
.under .mv .mv_contents .image {
  width: 84.6153846154vw;
  height: 100%;
  margin-left: auto;
  position: relative;
}
@media screen and (min-width: 960px) {
  .under .mv .mv_contents .image {
    width: 85.5555555556vw;
  }
}
.under .mv .mv_contents .image:before {
  content: "";
  width: 100%;
  height: 100%;
  background: url("../images/common/mv_overlay.png") no-repeat center center;
  background-size: cover;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.under .mv .mv_contents .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.under .mv .mv_contents .page_title_wrap {
  position: absolute;
  top: 36.9230769231vw;
  left: 2.5641025641vw;
  z-index: 1;
}
@media screen and (min-width: 960px) {
  .under .mv .mv_contents .page_title_wrap {
    top: 15vw;
    left: 5.5555555556vw;
  }
}
.under .mv .mv_contents .page_title_wrap.line2 {
  top: 25.3846153846vw;
}
@media screen and (min-width: 960px) {
  .under .mv .mv_contents .page_title_wrap.line2 {
    top: 9.4444444444vw;
  }
}
.under .mv .mv_contents .page_title_wrap * {
  color: #950002;
}
.under .mv .mv_contents .page_title_wrap .title span {
  display: inline-block;
}
.under .mv .mv_contents .page_title_wrap .title__en span {
  font-size: 19.4871794872vw;
  line-height: 1;
}
@media screen and (min-width: 960px) {
  .under .mv .mv_contents .page_title_wrap .title__en span {
    font-size: 10.4166666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .under .mv .mv_contents .page_title_wrap .title__en span {
    font-size: 150px;
  }
}
@media screen and (min-width: 960px) {
  .under .mv .mv_contents .page_title_wrap .title__ja span {
    font-size: 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .under .mv .mv_contents .page_title_wrap .title__ja span {
    font-size: 24px;
  }
}
.under .mv .breadcrumbs_wrap {
  width: 100%;
  padding: 0 5.1282051282vw;
}
@media screen and (min-width: 960px) {
  .under .mv .breadcrumbs_wrap {
    padding: 0 2.7777777778vw;
  }
}
.under .mv .breadcrumbs_wrap .breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.under .mv .breadcrumbs_wrap .breadcrumbs * {
  font-size: 3.0769230769vw;
}
@media screen and (min-width: 960px) {
  .under .mv .breadcrumbs_wrap .breadcrumbs * {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .under .mv .breadcrumbs_wrap .breadcrumbs * {
    font-size: 16px;
  }
}
.under .mv .breadcrumbs_wrap .breadcrumbs span {
  display: block;
  margin-right: 0.5em;
  color: #fff;
}
.under .mv .breadcrumbs_wrap .breadcrumbs span:last-child {
  margin-right: 0;
}
.under .mv .breadcrumbs_wrap .breadcrumbs a span {
  color: #808080;
}
.under {
  /*================================
  contents title
  =================================*/
}
.under .contents_title_wrap {
  margin-bottom: 10.2564102564vw;
}
@media screen and (min-width: 960px) {
  .under .contents_title_wrap {
    margin-bottom: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .under .contents_title_wrap {
    margin-bottom: 40px;
  }
}
.under .contents_title_wrap .title__en span {
  font-size: 12.3076923077vw;
  line-height: 1;
}
@media screen and (min-width: 960px) {
  .under .contents_title_wrap .title__en span {
    font-size: 5.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .under .contents_title_wrap .title__en span {
    font-size: 80px;
  }
}
.under {
  /*||||||||||||||||||||||||||||||||||||||||||||||||||
  ----------------------------------------------------

  		about

  ----------------------------------------------------
  ||||||||||||||||||||||||||||||||||||||||||||||||||||*/
}
.under#about main {
  padding-bottom: 0;
}
.under#about main:before {
  content: none;
}
.under#about {
  /*================================
  mv
  =================================*/
}
.under#about .mv, .under#about .mv_contents {
  margin-bottom: 0;
}
.under#about .mv {
  position: relative;
}
.under#about .mv .breadcrumbs_wrap {
  position: absolute;
  bottom: -6.9230769231vw;
  left: 0;
  z-index: 1;
}
@media screen and (min-width: 960px) {
  .under#about .mv .breadcrumbs_wrap {
    bottom: -3.0555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#about .mv .breadcrumbs_wrap {
    bottom: -44px;
  }
}
.under#about {
  /*================================
  top
  =================================*/
}
.under#about .top_wrap {
  padding: 20.5128205128vw 0;
  position: relative;
}
@media screen and (min-width: 960px) {
  .under#about .top_wrap {
    padding: 13.8888888889vw 0;
  }
}
@media screen and (min-width: 1440px) {
  .under#about .top_wrap {
    padding: 200px 0;
  }
}
.under#about .top_wrap:before {
  content: "";
  width: 100%;
  height: 100%;
  background: url("../images/about/about_top_bg_sp.png") no-repeat center center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
@media screen and (min-width: 960px) {
  .under#about .top_wrap:before {
    background: url("../images/about/about_top_bg.png") no-repeat center center;
    background-size: cover;
  }
}
.under#about .top_wrap .inner .contents .text_wrap {
  margin-bottom: 7.6923076923vw;
}
@media screen and (min-width: 960px) {
  .under#about .top_wrap .inner .contents .text_wrap {
    margin-bottom: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#about .top_wrap .inner .contents .text_wrap {
    margin-bottom: 40px;
  }
}
.under#about .top_wrap .inner .contents .text_wrap .item_title_wrap {
  margin-bottom: 7.6923076923vw;
}
@media screen and (min-width: 960px) {
  .under#about .top_wrap .inner .contents .text_wrap .item_title_wrap {
    margin-bottom: 2.7777777778vw;
    text-align: center;
  }
}
@media screen and (min-width: 1440px) {
  .under#about .top_wrap .inner .contents .text_wrap .item_title_wrap {
    margin-bottom: 40px;
  }
}
.under#about .top_wrap .inner .contents .text_wrap .item_title_wrap .title {
  width: auto;
  height: 10.7692307692vw;
  margin-bottom: 1.5384615385vw;
  clip-path: inset(0 100% 0 0);
}
@media screen and (min-width: 960px) {
  .under#about .top_wrap .inner .contents .text_wrap .item_title_wrap .title {
    height: 5vw;
    max-height: 72px;
    margin-bottom: 12px;
  }
}
.under#about .top_wrap .inner .contents .text_wrap .item_title_wrap .title span {
  display: inline-block;
  height: 100%;
  position: relative;
}
.under#about .top_wrap .inner .contents .text_wrap .item_title_wrap .title span:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.under#about .top_wrap .inner .contents .text_wrap .item_title_wrap .title span img {
  width: auto;
  height: 100%;
}
.under#about .top_wrap .inner .contents .text_wrap .item_title_wrap .title__001 span:before {
  background: url("../images/about/about_catch_top_bg_sp.png") no-repeat center center;
  background-size: cover;
}
@media screen and (min-width: 960px) {
  .under#about .top_wrap .inner .contents .text_wrap .item_title_wrap .title__001 span:before {
    background: url("../images/about/about_catch_top_bg.png") no-repeat center center;
    background-size: cover;
  }
}
.under#about .top_wrap .inner .contents .text_wrap .item_title_wrap .title__002 span:before {
  background: url("../images/about/about_catch_middle_bg_sp.png") no-repeat center center;
  background-size: cover;
}
@media screen and (min-width: 960px) {
  .under#about .top_wrap .inner .contents .text_wrap .item_title_wrap .title__002 span:before {
    background: url("../images/about/about_catch_bottom_bg.png") no-repeat center center;
    background-size: cover;
  }
}
.under#about .top_wrap .inner .contents .text_wrap .item_title_wrap .title__003 span:before {
  background: url("../images/about/about_catch_bottom_bg_sp.png") no-repeat center center;
  background-size: cover;
}
@media screen and (min-width: 960px) {
  .under#about .top_wrap .inner .contents .text_wrap .text {
    text-align: center;
  }
}
.under#about .top_wrap .inner .contents .text_wrap .text .mask {
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.under#about .top_wrap .inner .contents .text_wrap .text .mask:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transform: translateX(-101%);
}
.under#about .top_wrap .inner .contents .text_wrap .text .mask span {
  opacity: 0.1%;
  visibility: hidden;
}
.under#about .top_wrap .inner .contents .text_wrap .text.sp .mask span {
  letter-spacing: -0.09em;
}
.under#about .top_wrap .inner .contents .image {
  opacity: 0.1%;
  visibility: hidden;
  transform: scale(1.25);
}
.under#about .top_wrap .inner.anim_active .text_wrap .item_title_wrap .item_title .title {
  animation: maskLeftFade 0.35s linear forwards;
}
.under#about .top_wrap .inner.anim_active .text_wrap .text .mask:before {
  animation: textLeftCurtain 0.85s linear forwards;
}
.under#about .top_wrap .inner.anim_active .text_wrap .text .mask span {
  animation: fadein 0.3s 0.3s linear forwards;
}
.under#about .top_wrap .inner.anim_active .image {
  animation: imageScaleFade 0.6s 0.6s linear forwards;
}
.under#about {
  /*================================
  introduction
  =================================*/
}
.under#about .introduction {
  padding: 25.1282051282vw 5.1282051282vw 20.5128205128vw;
  position: relative;
}
@media screen and (min-width: 960px) {
  .under#about .introduction {
    padding: 13.8888888889vw 0 6.25vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#about .introduction {
    padding: 200px 0 90px;
  }
}
.under#about .introduction .introduction_title {
  position: absolute;
  top: 0;
  left: 0;
}
.under#about .introduction .introduction_title span {
  display: inline-block;
  font-size: 14.1025641026vw;
  -webkit-text-stroke: 0.5128205128vw #950002;
  text-stroke: 0.5128205128vw #950002;
  paint-order: stroke;
  line-height: 0.75;
  transform: scale(1.5);
  opacity: 0.1%;
  visibility: hidden;
  color: transparent;
}
@media screen and (min-width: 960px) {
  .under#about .introduction .introduction_title span {
    font-size: 11.5277777778vw;
    -webkit-text-stroke: 0.2777777778vw #950002;
    text-stroke: 0.2777777778vw #950002;
  }
}
@media screen and (min-width: 1440px) {
  .under#about .introduction .introduction_title span {
    font-size: 166px;
    -webkit-text-stroke: 4px #950002;
    text-stroke: 4px #950002;
  }
}
.under#about .introduction .inner {
  width: 100%;
  max-width: unset;
  margin: 0;
  padding: 0;
}
.under#about .introduction .inner .contents .section_title {
  margin-bottom: 10.2564102564vw;
  font-size: 8.2051282051vw;
  transform: translateX(-10px);
  opacity: 0.1%;
  visibility: hidden;
}
@media screen and (min-width: 960px) {
  .under#about .introduction .inner .contents .section_title {
    width: 71.1111111111vw;
    margin: 0 auto 3.4722222222vw;
    font-size: 3.4722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#about .introduction .inner .contents .section_title {
    margin-bottom: 50px;
    font-size: 50px;
  }
}
.under#about .introduction .inner .contents .about_slide {
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .under#about .introduction .inner .contents .about_slide {
    margin-left: 14.4444444444vw;
  }
}
.under#about .introduction .inner .contents .about_slide .swiper-wrapper {
  display: block;
}
@media screen and (min-width: 960px) {
  .under#about .introduction .inner .contents .about_slide .swiper-wrapper {
    display: flex;
  }
}
.under#about .introduction .inner .contents .about_slide .swiper-slide {
  margin-bottom: 12.8205128205vw;
}
@media screen and (min-width: 960px) {
  .under#about .introduction .inner .contents .about_slide .swiper-slide {
    margin-bottom: 0;
  }
}
.under#about .introduction .inner .contents .about_slide .swiper-slide:last-child {
  margin-bottom: 0;
}
.under#about .introduction .inner .contents .about_slide .swiper-slide .image {
  margin-bottom: 4.1025641026vw;
  clip-path: inset(0 100% 0 0);
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .under#about .introduction .inner .contents .about_slide .swiper-slide .image {
    margin-bottom: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#about .introduction .inner .contents .about_slide .swiper-slide .image {
    margin-bottom: 16px;
  }
}
.under#about .introduction .inner .contents .about_slide .swiper-slide .image img {
  transform: scale(1.1);
}
.under#about .introduction .inner .contents .about_slide .swiper-slide .item_title {
  margin-bottom: 3.5897435897vw;
  font-size: 6.1538461538vw;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 960px) {
  .under#about .introduction .inner .contents .about_slide .swiper-slide .item_title {
    margin-bottom: 0.9722222222vw;
    font-size: 1.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#about .introduction .inner .contents .about_slide .swiper-slide .item_title {
    margin-bottom: 14px;
    font-size: 28px;
  }
}
.under#about .introduction .inner .contents .control {
  display: none;
  padding: 0 11.5384615385vw;
}
@media screen and (min-width: 960px) {
  .under#about .introduction .inner .contents .control {
    display: flex;
    align-items: center;
    width: 71.1111111111vw;
    margin: 0 auto;
    padding: 2.0833333333vw 0 0 0;
  }
}
@media screen and (min-width: 1440px) {
  .under#about .introduction .inner .contents .control {
    padding-top: 30px;
  }
}
.under#about .introduction .inner .contents .control .swiper-button-prev, .under#about .introduction .inner .contents .control .swiper-button-next {
  margin: 0;
  padding: 0;
  position: unset;
  top: unset;
  left: unset;
  right: unset;
  bottom: unset;
}
.under#about .introduction .inner .contents .control .swiper-button-prev, .under#about .introduction .inner .contents .control .swiper-button-next {
  width: auto;
  height: auto;
}
.under#about .introduction .inner .contents .control .swiper-button-prev:after, .under#about .introduction .inner .contents .control .swiper-button-next:after {
  content: none;
}
.under#about .introduction .inner .contents .control .swiper-button-prev .arrow, .under#about .introduction .inner .contents .control .swiper-button-next .arrow {
  width: 10.2564102564vw;
  height: 10.2564102564vw;
}
@media screen and (min-width: 960px) {
  .under#about .introduction .inner .contents .control .swiper-button-prev .arrow, .under#about .introduction .inner .contents .control .swiper-button-next .arrow {
    width: 2.7777777778vw;
    max-width: 40px;
    height: 2.7777777778vw;
    max-height: 40px;
  }
}
.under#about .introduction .inner .contents .control .swiper-button-prev .arrow svg, .under#about .introduction .inner .contents .control .swiper-button-next .arrow svg {
  width: 4.1025641026vw;
}
@media screen and (min-width: 960px) {
  .under#about .introduction .inner .contents .control .swiper-button-prev .arrow svg, .under#about .introduction .inner .contents .control .swiper-button-next .arrow svg {
    width: 1.1111111111vw;
    max-width: 16px;
  }
}
.under#about .introduction .inner .contents .control .swiper-button-prev {
  transform: scale(-1, 1);
}
@media screen and (min-width: 960px) {
  .under#about .introduction .inner .contents .control .swiper-button-prev {
    margin-right: 0.6944444444vw;
    order: 2;
  }
}
@media screen and (min-width: 1440px) {
  .under#about .introduction .inner .contents .control .swiper-button-prev {
    margin-right: 10px;
  }
}
@media screen and (min-width: 960px) {
  .under#about .introduction .inner .contents .control .swiper-button-next {
    order: 3;
  }
}
.under#about .introduction .inner .contents .view_all_link {
  max-width: none;
  padding-top: 10.2564102564vw;
}
@media screen and (min-width: 960px) {
  .under#about .introduction .inner .contents .view_all_link {
    padding-top: 4.1666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#about .introduction .inner .contents .view_all_link {
    padding-top: 60px;
  }
}
.under#about .introduction__001 {
  background: url("../images/about/introduction001_bg.png") no-repeat center center;
  background-size: cover;
}
.under#about .introduction__002 {
  background: url("../images/about/introduction002_bg.png") no-repeat center center;
  background-size: cover;
}
.under#about .introduction__003 {
  background: url("../images/about/introduction003_bg.png") no-repeat center center;
  background-size: cover;
}
.under#about .introduction.anim_active .introduction_title span {
  animation: titleEnIn 0.4s cubic-bezier(0, 1.09, 0.64, 1) forwards;
}
.under#about .introduction.anim_active .inner .contents .section_title {
  animation: titleJaIn 0.4s 0.2s cubic-bezier(0, 1.09, 0.64, 1) forwards;
}
.under#about .introduction.anim_active .inner .contents .about_slide .swiper-wrapper .swiper-slide .image {
  animation: maskLeftFade 0.3s 0.2s linear forwards;
}
.under#about .introduction.anim_active .inner .contents .about_slide .swiper-wrapper .swiper-slide .image img {
  animation: scale_image 0.6s 0.2s linear forwards;
}
.under {
  /*||||||||||||||||||||||||||||||||||||||||||||||||||
  ----------------------------------------------------

  		news

  ----------------------------------------------------
  ||||||||||||||||||||||||||||||||||||||||||||||||||||*/
}
.under#newslist, .under#post {
  /*================================
  archive / single
  =================================*/
}
.under#newslist .archive_wrap, .under#post .archive_wrap {
  position: relative;
}
@media screen and (min-width: 960px) {
  .under#newslist .archive_wrap .inner .contents, .under#post .archive_wrap .inner .contents {
    width: 71.1111111111vw;
    max-width: 1024px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 960px) and (min-width: 960px) {
  .under#newslist .archive_wrap .inner .contents, .under#post .archive_wrap .inner .contents {
    display: flex;
    justify-content: space-between;
  }
}
.under#newslist .archive_wrap .inner .contents .archive_category_list, .under#post .archive_wrap .inner .contents .archive_category_list {
  margin-bottom: 5.1282051282vw;
  background: #fff;
  border-radius: 7.6923076923vw;
  position: relative;
}
@media screen and (min-width: 960px) {
  .under#newslist .archive_wrap .inner .contents .archive_category_list, .under#post .archive_wrap .inner .contents .archive_category_list {
    margin: 0;
    padding-top: 2.0833333333vw;
    background: unset;
    border-radius: unset;
  }
}
@media screen and (min-width: 1440px) {
  .under#newslist .archive_wrap .inner .contents .archive_category_list, .under#post .archive_wrap .inner .contents .archive_category_list {
    padding-top: 30px;
  }
}
.under#newslist .archive_wrap .inner .contents .archive_category_list .category_top_text, .under#post .archive_wrap .inner .contents .archive_category_list .category_top_text {
  padding: 3.3333333333vw 7.6923076923vw;
  color: #000;
  position: relative;
  cursor: pointer;
}
.under#newslist .archive_wrap .inner .contents .archive_category_list .category_top_text:before, .under#post .archive_wrap .inner .contents .archive_category_list .category_top_text:before {
  content: "";
  width: 3.5897435897vw;
  height: 2.5641025641vw;
  background: url("../images/common/accordion_arrow.svg") no-repeat center center;
  background-size: 100%;
  position: absolute;
  top: 50%;
  right: 7.6923076923vw;
  transform: translateY(-50%);
  transition: all 0.4s;
}
.under#newslist .archive_wrap .inner .contents .archive_category_list .category_top_text.open:before, .under#post .archive_wrap .inner .contents .archive_category_list .category_top_text.open:before {
  transform: translateY(-50%) rotate3d(0, 0, 1, 180deg);
}
.under#newslist .archive_wrap .inner .contents .archive_category_list ul, .under#post .archive_wrap .inner .contents .archive_category_list ul {
  padding: 0 7.6923076923vw 3.3333333333vw;
  display: none;
}
@media screen and (min-width: 960px) {
  .under#newslist .archive_wrap .inner .contents .archive_category_list ul, .under#post .archive_wrap .inner .contents .archive_category_list ul {
    display: block;
    padding: 0;
  }
}
@media screen and (min-width: 960px) {
  .under#newslist .archive_wrap .inner .contents .archive_category_list ul li, .under#post .archive_wrap .inner .contents .archive_category_list ul li {
    margin-bottom: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#newslist .archive_wrap .inner .contents .archive_category_list ul li, .under#post .archive_wrap .inner .contents .archive_category_list ul li {
    margin-bottom: 20px;
  }
}
.under#newslist .archive_wrap .inner .contents .archive_category_list ul li a, .under#post .archive_wrap .inner .contents .archive_category_list ul li a {
  width: 100%;
  padding: 2.5641025641vw 0;
  border-bottom: 1px solid #B0B0B0;
  color: #000;
}
@media screen and (min-width: 960px) {
  .under#newslist .archive_wrap .inner .contents .archive_category_list ul li a, .under#post .archive_wrap .inner .contents .archive_category_list ul li a {
    padding: 0;
    color: #fff;
    border: none;
  }
}
.under#newslist .archive_wrap .inner .contents .archive_category_list ul li a:before, .under#post .archive_wrap .inner .contents .archive_category_list ul li a:before {
  content: "#";
}
.under#newslist .archive_wrap .inner .contents .archive_category_list ul li:first-child, .under#post .archive_wrap .inner .contents .archive_category_list ul li:first-child {
  border-top: 1px solid #B0B0B0;
}
@media screen and (min-width: 960px) {
  .under#newslist .archive_wrap .inner .contents .archive_category_list ul li:first-child, .under#post .archive_wrap .inner .contents .archive_category_list ul li:first-child {
    border: none;
  }
}
.under#newslist .archive_wrap .inner .contents .archive_category_list ul li:last-child, .under#post .archive_wrap .inner .contents .archive_category_list ul li:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 960px) {
  .under#newslist .archive_wrap .inner .contents .archive_category_list ul li.all a, .under#post .archive_wrap .inner .contents .archive_category_list ul li.all a {
    font-size: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#newslist .archive_wrap .inner .contents .archive_category_list ul li.all a, .under#post .archive_wrap .inner .contents .archive_category_list ul li.all a {
    font-size: 20px;
  }
}
.under#newslist .archive_wrap .inner .contents .archive_category_list ul li.all a:before, .under#post .archive_wrap .inner .contents .archive_category_list ul li.all a:before {
  content: none;
}
.under#newslist .archive_wrap .inner .contents .archive_category_list ul li.current-cat a, .under#post .archive_wrap .inner .contents .archive_category_list ul li.current-cat a {
  color: #8C734B;
}
@media screen and (min-width: 960px) {
  .under#newslist .archive_wrap .inner .contents .archive_list_wrap, .under#post .archive_wrap .inner .contents .archive_list_wrap {
    width: 55.5555555556vw;
    max-width: 800px;
  }
}
.under#newslist, .under#post {
  /*||||||||||||||||||||||||||||||||||||||||||||||||||
  ----------------------------------------------------

  		archive

  ----------------------------------------------------
  ||||||||||||||||||||||||||||||||||||||||||||||||||||*/
}
.under#newslist.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list, .under#newslist.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list, .under#post.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list, .under#post.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list {
  margin-bottom: 10.2564102564vw;
}
@media screen and (min-width: 960px) {
  .under#newslist.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list, .under#newslist.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list, .under#post.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list, .under#post.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list {
    margin-bottom: 4.8611111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#newslist.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list, .under#newslist.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list, .under#post.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list, .under#post.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list {
    margin-bottom: 70px;
  }
}
.under#newslist.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list .item, .under#newslist.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list .item, .under#post.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list .item, .under#post.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list .item {
  border-bottom: 1px solid #B0B0B0;
  position: relative;
}
.under#newslist.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a, .under#newslist.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a, .under#post.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a, .under#post.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 5.1282051282vw 0;
  position: relative;
}
@media screen and (min-width: 960px) {
  .under#newslist.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a, .under#newslist.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a, .under#post.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a, .under#post.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a {
    padding: 2.0833333333vw 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#newslist.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a, .under#newslist.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a, .under#post.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a, .under#post.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a {
    padding: 30px 20px;
  }
}
@media screen and (min-width: 960px) {
  .under#newslist.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a:hover, .under#newslist.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a:hover, .under#post.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a:hover, .under#post.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a:hover {
    background: #8C734B;
  }
}
.under#newslist.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .image, .under#newslist.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .image, .under#post.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .image, .under#post.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .image {
  width: 38.4615384615vw;
  height: 26.4102564103vw;
  margin-right: 5.1282051282vw;
  flex-shrink: 0;
}
@media screen and (min-width: 960px) {
  .under#newslist.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .image, .under#newslist.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .image, .under#post.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .image, .under#post.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .image {
    width: 13.1944444444vw;
    max-width: 190px;
    height: 9.0277777778vw;
    max-height: 130px;
    margin-right: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#newslist.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .image, .under#newslist.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .image, .under#post.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .image, .under#post.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .image {
    margin-right: 20px;
  }
}
.under#newslist.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .image img, .under#newslist.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .image img, .under#post.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .image img, .under#post.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.under#newslist.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap, .under#newslist.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap, .under#post.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap, .under#post.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap {
  width: 100%;
}
.under#newslist.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap ul, .under#newslist.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap ul, .under#post.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap ul, .under#post.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap ul {
  display: flex;
  align-items: center;
  margin-bottom: 3.5897435897vw;
}
@media screen and (min-width: 960px) {
  .under#newslist.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap ul, .under#newslist.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap ul, .under#post.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap ul, .under#post.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap ul {
    margin-bottom: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#newslist.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap ul, .under#newslist.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap ul, .under#post.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap ul, .under#post.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap ul {
    margin-bottom: 20px;
  }
}
.under#newslist.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap ul li.date, .under#newslist.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap ul li.date, .under#post.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap ul li.date, .under#post.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap ul li.date {
  margin-right: 2.5641025641vw;
  font-size: 3.5897435897vw;
}
@media screen and (min-width: 960px) {
  .under#newslist.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap ul li.date, .under#newslist.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap ul li.date, .under#post.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap ul li.date, .under#post.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap ul li.date {
    margin-right: 0.6944444444vw;
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#newslist.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap ul li.date, .under#newslist.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap ul li.date, .under#post.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap ul li.date, .under#post.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap ul li.date {
    margin-right: 10px;
    font-size: 16px;
  }
}
.under#newslist.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap ul li.category span, .under#newslist.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap ul li.category span, .under#post.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap ul li.category span, .under#post.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap ul li.category span {
  display: inline-block;
  padding: 0.5128205128vw 2.5641025641vw 0.7692307692vw;
  font-size: 2.5641025641vw;
  border: 1px solid #fff;
  border-radius: 5.1282051282vw;
}
@media screen and (min-width: 960px) {
  .under#newslist.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap ul li.category span, .under#newslist.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap ul li.category span, .under#post.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap ul li.category span, .under#post.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap ul li.category span {
    padding: 0.1388888889vw 0.6944444444vw 0.2083333333vw;
    font-size: 0.8333333333vw;
    border-radius: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#newslist.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap ul li.category span, .under#newslist.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap ul li.category span, .under#post.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap ul li.category span, .under#post.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap ul li.category span {
    padding: 2px 10px 3px;
    font-size: 12px;
    border-radius: 20px;
  }
}
.under#newslist.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap .title, .under#newslist.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap .title, .under#post.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap .title, .under#post.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap .title {
  padding-right: 7.6923076923vw;
}
@media screen and (min-width: 960px) {
  .under#newslist.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap .title, .under#newslist.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap .title, .under#post.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap .title, .under#post.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap .title {
    padding-right: 3.125vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#newslist.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap .title, .under#newslist.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap .title, .under#post.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap .title, .under#post.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap .title {
    padding-right: 45px;
  }
}
.under#newslist.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap .arrow, .under#newslist.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap .arrow, .under#post.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap .arrow, .under#post.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap .arrow {
  width: 6.6666666667vw;
  height: 6.6666666667vw;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 960px) {
  .under#newslist.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap .arrow, .under#newslist.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap .arrow, .under#post.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap .arrow, .under#post.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap .arrow {
    width: 2.7777777778vw;
    max-width: 40px;
    height: 2.7777777778vw;
    max-height: 40px;
    right: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#newslist.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap .arrow, .under#newslist.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap .arrow, .under#post.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap .arrow, .under#post.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap .arrow {
    right: 20px;
  }
}
.under#newslist.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap .arrow svg, .under#newslist.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap .arrow svg, .under#post.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap .arrow svg, .under#post.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap .arrow svg {
  width: 2.5641025641vw;
}
@media screen and (min-width: 960px) {
  .under#newslist.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap .arrow svg, .under#newslist.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap .arrow svg, .under#post.newslist .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap .arrow svg, .under#post.archive .archive_wrap .inner .contents .archive_list_wrap .archive_list .item a .text_wrap .arrow svg {
    width: 1.1111111111vw;
    max-width: 16px;
  }
}
.under#newslist, .under#post {
  /*||||||||||||||||||||||||||||||||||||||||||||||||||
  ----------------------------------------------------

  		single

  ----------------------------------------------------
  ||||||||||||||||||||||||||||||||||||||||||||||||||||*/
}
.under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .post_title_wrap, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .post_title_wrap {
  margin-bottom: 7.6923076923vw;
}
@media screen and (min-width: 960px) {
  .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .post_title_wrap, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .post_title_wrap {
    margin-bottom: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .post_title_wrap, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .post_title_wrap {
    margin-bottom: 40px;
  }
}
.under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .post_title_wrap ul, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .post_title_wrap ul {
  display: flex;
  align-items: center;
  margin-bottom: 3.5897435897vw;
}
@media screen and (min-width: 960px) {
  .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .post_title_wrap ul, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .post_title_wrap ul {
    margin-bottom: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .post_title_wrap ul, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .post_title_wrap ul {
    margin-bottom: 20px;
  }
}
.under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .post_title_wrap ul li.date, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .post_title_wrap ul li.date {
  margin-right: 2.5641025641vw;
  font-size: 3.5897435897vw;
}
@media screen and (min-width: 960px) {
  .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .post_title_wrap ul li.date, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .post_title_wrap ul li.date {
    margin-right: 0.6944444444vw;
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .post_title_wrap ul li.date, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .post_title_wrap ul li.date {
    margin-right: 10px;
    font-size: 16px;
  }
}
.under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .post_title_wrap ul li.category span, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .post_title_wrap ul li.category span {
  display: inline-block;
  padding: 0.5128205128vw 2.5641025641vw 0.7692307692vw;
  font-size: 2.5641025641vw;
  border: 1px solid #fff;
  border-radius: 5.1282051282vw;
}
@media screen and (min-width: 960px) {
  .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .post_title_wrap ul li.category span, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .post_title_wrap ul li.category span {
    padding: 0.1388888889vw 0.6944444444vw 0.2083333333vw;
    font-size: 0.8333333333vw;
    border-radius: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .post_title_wrap ul li.category span, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .post_title_wrap ul li.category span {
    padding: 2px 10px 3px;
    font-size: 12px;
    border-radius: 20px;
  }
}
.under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .post_title_wrap .title, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .post_title_wrap .title {
  font-size: 6.1538461538vw;
}
@media screen and (min-width: 960px) {
  .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .post_title_wrap .title, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .post_title_wrap .title {
    font-size: 2.2222222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .post_title_wrap .title, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .post_title_wrap .title {
    font-size: 32px;
  }
}
.under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .thumbnail, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .thumbnail {
  width: 100%;
  height: 61.5384615385vw;
  margin-bottom: 14.358974359vw;
}
@media screen and (min-width: 960px) {
  .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .thumbnail, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .thumbnail {
    height: 37.9861111111vw;
    max-height: 547px;
    margin-bottom: 4.5138888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .thumbnail, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .thumbnail {
    margin-bottom: 65px;
  }
}
.under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .thumbnail img, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list #toc_container, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list #toc_container {
  width: 100%;
  margin-bottom: 10.2564102564vw;
  padding: 14.358974359vw 5.1282051282vw 10.2564102564vw;
  background: transparent;
  border: 4px solid #950002;
  border-radius: unset;
  position: relative;
}
@media screen and (min-width: 960px) {
  .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list #toc_container, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list #toc_container {
    margin-bottom: 2.7777777778vw;
    padding: 4.4444444444vw 2.7777777778vw 2.7777777778vw;
    border-width: 2px;
  }
}
@media screen and (min-width: 1440px) {
  .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list #toc_container, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list #toc_container {
    margin-bottom: 40px;
    padding: 64px 40px 40px;
  }
}
.under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list #toc_container .toc_title, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list #toc_container .toc_title {
  padding: 0 5.1282051282vw;
  font-family: "Oswald", sans-serif;
  font-size: 10.2564102564vw;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  color: #950002;
  background: #000;
  position: absolute;
  top: -6.1538461538vw;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 960px) {
  .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list #toc_container .toc_title, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list #toc_container .toc_title {
    padding: 0 1.3888888889vw;
    font-size: 4.1666666667vw;
    top: -2.3611111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list #toc_container .toc_title, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list #toc_container .toc_title {
    padding: 0 20px;
    font-size: 60px;
    top: -34px;
  }
}
.under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list #toc_container ul *, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list #toc_container ul * {
  font-size: 4.6153846154vw;
}
@media screen and (min-width: 960px) {
  .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list #toc_container ul *, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list #toc_container ul * {
    font-size: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list #toc_container ul *, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list #toc_container ul * {
    font-size: 20px;
  }
}
.under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list #toc_container ul li, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list #toc_container ul li {
  margin-bottom: 7.6923076923vw;
}
@media screen and (min-width: 960px) {
  .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list #toc_container ul li, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list #toc_container ul li {
    margin-bottom: 2.0833333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list #toc_container ul li, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list #toc_container ul li {
    margin-bottom: 30px;
  }
}
.under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list #toc_container ul li:last-child, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list #toc_container ul li:last-child {
  margin-bottom: 0;
}
.under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list #toc_container ul li a:hover, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list #toc_container ul li a:hover {
  text-decoration: none;
}
@media screen and (min-width: 960px) {
  .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list #toc_container ul li a:hover, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list #toc_container ul li a:hover {
    opacity: 0.6;
  }
}
.under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list #toc_container > ul > li a:before, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list #toc_container > ul > li a:before {
  content: "・";
  color: #950002;
}
.under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list #toc_container > ul > li > ul, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list #toc_container > ul > li > ul {
  margin-left: 1em;
  padding-top: 5.1282051282vw;
}
@media screen and (min-width: 960px) {
  .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list #toc_container > ul > li > ul, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list #toc_container > ul > li > ul {
    padding-top: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list #toc_container > ul > li > ul, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list #toc_container > ul > li > ul {
    padding-top: 10px;
  }
}
.under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list #toc_container > ul > li > ul:last-child, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list #toc_container > ul > li > ul:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 960px) {
  .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list #toc_container > ul > li > ul > li a, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list #toc_container > ul > li > ul > li a {
    font-size: 1.25vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list #toc_container > ul > li > ul > li a, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list #toc_container > ul > li > ul > li a {
    font-size: 18px;
  }
}
.under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list #toc_container > ul > li > ul > li a:before, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list #toc_container > ul > li > ul > li a:before {
  content: "ー";
  color: #950002;
}
.under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h2, .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h2 *, .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h3, .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h3 *, .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h4, .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h4 *, .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h5, .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h5 *, .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h6, .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h6 *, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h2, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h2 *, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h3, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h3 *, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h4, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h4 *, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h5, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h5 *, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h6, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h6 * {
  font-weight: 700;
}
.under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h2, .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h3, .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h4, .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h5, .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h6, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h2, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h3, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h4, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h5, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h6 {
  margin-bottom: 5.1282051282vw;
}
@media screen and (min-width: 960px) {
  .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h2, .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h3, .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h4, .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h5, .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h6, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h2, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h3, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h4, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h5, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h6 {
    margin-top: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h2, .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h3, .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h4, .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h5, .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h6, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h2, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h3, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h4, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h5, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h6 {
    margin-bottom: 20px;
  }
}
.under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h2, .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h3, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h2, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h3 {
  z-index: -1;
}
.under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h2 span, .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h3 span, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h2 span, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h3 span {
  display: inline-block;
  margin-top: -22.0512820513vw;
  padding-top: 22.0512820513vw;
}
@media screen and (min-width: 960px) {
  .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h2 span, .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h3 span, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h2 span, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h3 span {
    margin-top: -6.8055555556vw;
    padding-top: 6.8055555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h2 span, .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h3 span, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h2 span, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h3 span {
    margin-top: -98px;
    padding-top: 98px;
  }
}
.under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h2, .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h2 *, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h2, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h2 * {
  font-size: 4.6153846154vw;
}
@media screen and (min-width: 960px) {
  .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h2, .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h2 *, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h2, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h2 * {
    font-size: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h2, .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h2 *, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h2, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h2 * {
    font-size: 20px;
  }
}
@media screen and (min-width: 960px) {
  .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h3, .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h3 *, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h3, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h3 * {
    font-size: 1.25vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h3, .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h3 *, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h3, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents h3 * {
    font-size: 18px;
  }
}
.under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents p, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents p {
  margin-bottom: 10.2564102564vw;
  line-height: 1.875;
}
@media screen and (min-width: 960px) {
  .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents p, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents p {
    margin-bottom: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents p, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents p {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 960px) {
  .under#newslist.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents a:hover, .under#post.single .archive_wrap .inner .contents .archive_list_wrap .archive_list .archive_contents a:hover {
    opacity: 0.6;
  }
}
.under {
  /*||||||||||||||||||||||||||||||||||||||||||||||||||
  ----------------------------------------------------

  		games

  ----------------------------------------------------
  ||||||||||||||||||||||||||||||||||||||||||||||||||||*/
}
.under#games main {
  padding-bottom: 0;
}
.under#games main:before {
  content: none;
}
.under#games {
  /*================================
  mv
  =================================*/
}
.under#games .mv, .under#games .mv_contents {
  margin-bottom: 0;
}
.under#games .mv {
  position: relative;
}
.under#games .mv .breadcrumbs_wrap {
  position: absolute;
  bottom: -6.9230769231vw;
  left: 0;
  z-index: 1;
}
@media screen and (min-width: 960px) {
  .under#games .mv .breadcrumbs_wrap {
    bottom: -3.0555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#games .mv .breadcrumbs_wrap {
    bottom: -44px;
  }
}
.under#games {
  /*================================
  games
  =================================*/
}
.under#games .games_wrap {
  padding: 20.5128205128vw 0;
  position: relative;
}
@media screen and (min-width: 960px) {
  .under#games .games_wrap {
    padding: 13.8888888889vw 0;
  }
}
@media screen and (min-width: 1440px) {
  .under#games .games_wrap {
    padding: 200px 0;
  }
}
.under#games .games_wrap:before {
  content: "";
  width: 100%;
  height: 100%;
  background: url("../images/games/games_bg_sp.png") no-repeat center center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
@media screen and (min-width: 960px) {
  .under#games .games_wrap:before {
    background: url("../images/games/games_bg.png") no-repeat center center;
    background-size: cover;
  }
}
.under#games .games_wrap .inner {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 960px) {
  .under#games .games_wrap .inner .contents_title_wrap {
    margin-bottom: 0;
  }
}
.under#games .games_wrap .inner .top .category_list, .under#games .games_wrap .inner .contents {
  opacity: 0.1%;
}
.under#games .games_wrap .inner .top {
  margin-bottom: 10.2564102564vw;
}
@media screen and (min-width: 960px) {
  .under#games .games_wrap .inner .top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 4.8611111111vw;
    padding-right: 10.2777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#games .games_wrap .inner .top {
    margin-bottom: 70px;
    padding-right: 148px;
  }
}
.under#games .games_wrap .inner .top .category_list {
  background: #fff;
  border-radius: 7.6923076923vw;
  position: relative;
}
@media screen and (min-width: 960px) {
  .under#games .games_wrap .inner .top .category_list {
    width: 13.8888888889vw;
    max-width: 200px;
    border-radius: 2.0833333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#games .games_wrap .inner .top .category_list {
    border-radius: 30px;
  }
}
.under#games .games_wrap .inner .top .category_list * {
  color: #000;
}
.under#games .games_wrap .inner .top .category_list .category_top_text {
  padding: 3.3333333333vw 7.6923076923vw;
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 960px) {
  .under#games .games_wrap .inner .top .category_list .category_top_text {
    padding: 0.6944444444vw 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#games .games_wrap .inner .top .category_list .category_top_text {
    padding: 10px 20px;
  }
}
.under#games .games_wrap .inner .top .category_list .category_top_text:before {
  content: "";
  width: 3.5897435897vw;
  height: 2.5641025641vw;
  background: url("../images/common/accordion_arrow.svg") no-repeat center center;
  background-size: 100%;
  position: absolute;
  top: 50%;
  right: 7.6923076923vw;
  transform: translateY(-50%);
  transition: all 0.4s;
}
@media screen and (min-width: 960px) {
  .under#games .games_wrap .inner .top .category_list .category_top_text:before {
    width: 0.9722222222vw;
    max-width: 14px;
    height: 0.6944444444vw;
    max-height: 10px;
    right: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#games .games_wrap .inner .top .category_list .category_top_text:before {
    right: 20px;
  }
}
.under#games .games_wrap .inner .top .category_list .category_top_text.open:before {
  transform: translateY(-50%) rotate3d(0, 0, 1, 180deg);
}
.under#games .games_wrap .inner .top .category_list ul {
  padding: 0 7.6923076923vw 3.3333333333vw;
  display: none;
}
@media screen and (min-width: 960px) {
  .under#games .games_wrap .inner .top .category_list ul {
    padding: 0 1.3888888889vw 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#games .games_wrap .inner .top .category_list ul {
    padding: 0 20px 20px;
  }
}
.under#games .games_wrap .inner .top .category_list ul li {
  padding: 2.5641025641vw 0;
  border-bottom: 1px solid #B0B0B0;
  color: #000;
  cursor: pointer;
}
@media screen and (min-width: 960px) {
  .under#games .games_wrap .inner .top .category_list ul li {
    padding: 0.6944444444vw 0;
  }
}
@media screen and (min-width: 1440px) {
  .under#games .games_wrap .inner .top .category_list ul li {
    padding: 10px 0;
  }
}
.under#games .games_wrap .inner .top .category_list ul li:first-child {
  border-top: 1px solid #B0B0B0;
}
.under#games .games_wrap .inner .top .category_list ul li:last-child {
  margin-bottom: 0;
}
.under#games .games_wrap .inner .top .category_list ul li.current {
  color: #8C734B;
  cursor: inherit;
}
@media screen and (min-width: 960px) {
  .under#games .games_wrap .inner .contents {
    width: 71.1111111111vw;
    max-width: 1024px;
    margin: 0 auto;
  }
}
.under#games .games_wrap .inner .contents .table {
  margin-bottom: 10.2564102564vw;
}
@media screen and (min-width: 960px) {
  .under#games .games_wrap .inner .contents .table {
    margin-bottom: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#games .games_wrap .inner .contents .table {
    margin-bottom: 40px;
  }
}
.under#games .games_wrap .inner .contents .table table {
  width: 100%;
}
.under#games .games_wrap .inner .contents .table table tr {
  border-bottom: 2px solid #000;
}
@media screen and (min-width: 960px) {
  .under#games .games_wrap .inner .contents .table table tr {
    border-bottom-width: 1px;
  }
}
.under#games .games_wrap .inner .contents .table table tr th, .under#games .games_wrap .inner .contents .table table tr td {
  border-right: 2px solid #000;
  vertical-align: middle;
}
@media screen and (min-width: 960px) {
  .under#games .games_wrap .inner .contents .table table tr th, .under#games .games_wrap .inner .contents .table table tr td {
    border-right-width: 1px;
  }
}
.under#games .games_wrap .inner .contents .table table tr th:last-child, .under#games .games_wrap .inner .contents .table table tr td:last-child {
  border-right: none;
}
.under#games .games_wrap .inner .contents .table table tr th:nth-child(1), .under#games .games_wrap .inner .contents .table table tr td:nth-child(1) {
  width: 25.5%;
}
@media screen and (min-width: 960px) {
  .under#games .games_wrap .inner .contents .table table tr th:nth-child(1), .under#games .games_wrap .inner .contents .table table tr td:nth-child(1) {
    width: 17%;
  }
}
.under#games .games_wrap .inner .contents .table table tr th:nth-child(2), .under#games .games_wrap .inner .contents .table table tr td:nth-child(2) {
  width: 52.5%;
}
@media screen and (min-width: 960px) {
  .under#games .games_wrap .inner .contents .table table tr th:nth-child(2), .under#games .games_wrap .inner .contents .table table tr td:nth-child(2) {
    width: 57%;
  }
}
.under#games .games_wrap .inner .contents .table table tr th:nth-child(3), .under#games .games_wrap .inner .contents .table table tr td:nth-child(3) {
  width: 22%;
}
@media screen and (min-width: 960px) {
  .under#games .games_wrap .inner .contents .table table tr th:nth-child(3), .under#games .games_wrap .inner .contents .table table tr td:nth-child(3) {
    width: 26%;
  }
}
.under#games .games_wrap .inner .contents .table table thead tr th {
  padding: 1.5384615385vw 0;
  text-align: center;
  background: #950002;
}
@media screen and (min-width: 960px) {
  .under#games .games_wrap .inner .contents .table table thead tr th {
    padding: 1.1805555556vw 0;
    font-size: 1.25vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#games .games_wrap .inner .contents .table table thead tr th {
    padding: 17px 0;
    font-size: 18px;
  }
}
.under#games .games_wrap .inner .contents .table table tbody tr td {
  padding: 3.5897435897vw 2.5641025641vw;
  font-size: 3.5897435897vw;
  color: #000;
}
@media screen and (min-width: 960px) {
  .under#games .games_wrap .inner .contents .table table tbody tr td {
    padding: 0.6944444444vw 2.0833333333vw;
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#games .games_wrap .inner .contents .table table tbody tr td {
    padding: 10px 30px;
    font-size: 16px;
  }
}
.under#games .games_wrap .inner .contents .table table tbody tr td .category span {
  display: inline-block;
  padding: 0.5128205128vw 1.5384615385vw 0.7692307692vw;
  font-size: 2.5641025641vw;
  color: #fff;
  border-radius: 1.0256410256vw;
}
@media screen and (min-width: 960px) {
  .under#games .games_wrap .inner .contents .table table tbody tr td .category span {
    padding: 0.1388888889vw 0.5555555556vw 0.2083333333vw;
    font-size: 0.8333333333vw;
    border-radius: 0.2777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#games .games_wrap .inner .contents .table table tbody tr td .category span {
    padding: 2px 8px 3px;
    font-size: 12px;
    border-radius: 4px;
  }
}
.under#games .games_wrap .inner .contents .table table tbody tr td .category.men span {
  background: #005495;
}
.under#games .games_wrap .inner .contents .table table tbody tr td .category.wheelchair span {
  background: #2F9500;
}
.under#games .games_wrap .inner .contents .table table tbody tr:nth-child(2n+1) {
  background: #fff;
}
.under#games .games_wrap .inner .contents .table table tbody tr:nth-child(2n) {
  background: #ECECEC;
}
.under#games .games_wrap .inner .contents .page_navigation {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 960px) {
  .under#games .games_wrap .inner .contents .page_navigation {
    width: 71.1111111111vw;
    max-width: 1024px;
    margin: 0 auto;
  }
}
.under#games .games_wrap .inner .contents .page_navigation.newest {
  justify-content: flex-end;
}
.under#games .games_wrap .inner .contents .page_navigation .link a {
  display: flex;
  align-items: center;
}
.under#games .games_wrap .inner .contents .page_navigation .link a .page_navi {
  display: block;
}
.under#games .games_wrap .inner .contents .page_navigation .link a .page_navi__text {
  line-height: 1;
}
@media screen and (min-width: 960px) {
  .under#games .games_wrap .inner .contents .page_navigation .link a .page_navi__text {
    font-size: 1.25vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#games .games_wrap .inner .contents .page_navigation .link a .page_navi__text {
    font-size: 18px;
  }
}
.under#games .games_wrap .inner .contents .page_navigation .link a .page_navi__arrow {
  padding-top: 1.0256410256vw;
}
@media screen and (min-width: 960px) {
  .under#games .games_wrap .inner .contents .page_navigation .link a .page_navi__arrow {
    padding-top: 0.1388888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#games .games_wrap .inner .contents .page_navigation .link a .page_navi__arrow {
    padding-top: 2px;
  }
}
.under#games .games_wrap .inner .contents .page_navigation .link a .page_navi__arrow svg {
  display: block;
  width: 2.5641025641vw;
}
@media screen and (min-width: 960px) {
  .under#games .games_wrap .inner .contents .page_navigation .link a .page_navi__arrow svg {
    width: 1.1111111111vw;
    max-width: 16px;
  }
}
.under#games .games_wrap .inner .contents .page_navigation .link a .page_navi__arrow svg path {
  fill: #8C734B;
}
.under#games .games_wrap .inner .contents .page_navigation .link.prev a .page_navi__text {
  padding-left: 2.5641025641vw;
}
@media screen and (min-width: 960px) {
  .under#games .games_wrap .inner .contents .page_navigation .link.prev a .page_navi__text {
    padding-left: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#games .games_wrap .inner .contents .page_navigation .link.prev a .page_navi__text {
    padding-left: 20px;
  }
}
.under#games .games_wrap .inner .contents .page_navigation .link.prev a .page_navi__arrow {
  transform: scale(-1, 1);
}
.under#games .games_wrap .inner .contents .page_navigation .link.next a .page_navi__text {
  padding-right: 2.5641025641vw;
}
@media screen and (min-width: 960px) {
  .under#games .games_wrap .inner .contents .page_navigation .link.next a .page_navi__text {
    padding-right: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#games .games_wrap .inner .contents .page_navigation .link.next a .page_navi__text {
    padding-right: 20px;
  }
}
.under#games .games_wrap .inner.anim_active .top .category_list, .under#games .games_wrap .inner.anim_active .contents {
  animation: fadein 0.3s 0.2s linear forwards;
}
.under {
  /*||||||||||||||||||||||||||||||||||||||||||||||||||
  ----------------------------------------------------

  		teams

  ----------------------------------------------------
  ||||||||||||||||||||||||||||||||||||||||||||||||||||*/
}
.under#teams main {
  padding-bottom: 46.1538461538vw;
  position: relative;
}
@media screen and (min-width: 960px) {
  .under#teams main {
    padding-bottom: 37.7083333333vw;
  }
}
.under#teams main:before {
  height: 48.4615384615vw;
  background: url("../images/teams/teams_main_bottom_bg.png") no-repeat bottom center;
  background-size: 100%;
}
@media screen and (min-width: 960px) {
  .under#teams main:before {
    height: 124.4444444444vw;
  }
}
.under#teams {
  /*================================
  modal
  =================================*/
}
.under#teams .modal_wrap {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.under#teams .modal_wrap::-webkit-scrollbar {
  display: none;
}
.under#teams .modal_wrap * {
  color: #000;
}
.under#teams .modal_wrap .modal_overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
}
.under#teams .modal_wrap .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: unset;
  min-height: 394.8717948718vw;
  padding: 10.2564102564vw 5.1282051282vw;
  position: relative;
}
@media screen and (min-width: 960px) {
  .under#teams .modal_wrap .inner {
    height: 100%;
    min-height: 56.9444444444vw;
    padding: 1.3888888889vw 0;
  }
}
@media screen and (min-width: 1440px) {
  .under#teams .modal_wrap .inner {
    min-height: 820px;
    padding: 20px 0;
  }
}
.under#teams .modal_wrap .inner .box {
  padding-top: 20.5128205128vw;
  position: relative;
  z-index: 1;
  position: relative;
}
@media screen and (min-width: 960px) {
  .under#teams .modal_wrap .inner .box {
    width: 71.1111111111vw;
    max-width: 1024px;
    margin: 0 auto;
    padding-top: 7.6388888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#teams .modal_wrap .inner .box {
    padding-top: 110px;
  }
}
.under#teams .modal_wrap .inner .box .modal_close, .under#teams .modal_wrap .inner .box .contents {
  z-index: 1;
}
.under#teams .modal_wrap .inner .box .modal_close {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15.3846153846vw;
  height: 15.3846153846vw;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
@media screen and (min-width: 960px) {
  .under#teams .modal_wrap .inner .box .modal_close {
    width: 5.5555555556vw;
    max-width: 80px;
    height: 5.5555555556vw;
    max-height: 80px;
  }
}
.under#teams .modal_wrap .inner .box .modal_close .line {
  width: 5.641025641vw;
  height: 5.641025641vw;
  position: relative;
}
@media screen and (min-width: 960px) {
  .under#teams .modal_wrap .inner .box .modal_close .line {
    width: 2.0833333333vw;
    max-width: 30px;
    height: 2.0833333333vw;
    max-height: 30px;
  }
}
.under#teams .modal_wrap .inner .box .modal_close .line span {
  display: inline-block;
  width: 100%;
  height: 0.7692307692vw;
  background: #8C734B;
  position: absolute;
  left: 0;
  transition: all 0.4s;
}
@media screen and (min-width: 960px) {
  .under#teams .modal_wrap .inner .box .modal_close .line span {
    height: 0.2777777778vw;
    max-height: 4px;
  }
}
.under#teams .modal_wrap .inner .box .modal_close .line span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.under#teams .modal_wrap .inner .box .modal_close .line span:nth-child(2) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}
.under#teams .modal_wrap .inner .box .contents {
  padding: 7.6923076923vw;
  background: url("../images/common/modal_bg_sp.png") no-repeat center center;
  background-size: cover;
  position: relative;
}
@media screen and (min-width: 960px) {
  .under#teams .modal_wrap .inner .box .contents {
    display: flex;
    justify-content: space-between;
    padding: 4.1666666667vw;
    background: url("../images/common/modal_bg.png") no-repeat center center;
    background-size: cover;
  }
}
@media screen and (min-width: 960px) {
  .under#teams .modal_wrap .inner .box .contents {
    padding: 60px;
  }
}
.under#teams .modal_wrap .inner .box .contents .image {
  margin-bottom: 5.1282051282vw;
}
@media screen and (min-width: 960px) {
  .under#teams .modal_wrap .inner .box .contents .image {
    width: 20.8333333333vw;
    max-width: 300px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 960px) {
  .under#teams .modal_wrap .inner .box .contents .text_wrap {
    width: 39.1666666667vw;
    max-width: 564px;
  }
}
.under#teams .modal_wrap .inner .box .contents .text_wrap .position, .under#teams .modal_wrap .inner .box .contents .text_wrap .name, .under#teams .modal_wrap .inner .box .contents .text_wrap .name * {
  font-weight: 700;
  color: #950002;
}
@media screen and (min-width: 960px) {
  .under#teams .modal_wrap .inner .box .contents .text_wrap .position, .under#teams .modal_wrap .inner .box .contents .text_wrap .name .small {
    font-size: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#teams .modal_wrap .inner .box .contents .text_wrap .position, .under#teams .modal_wrap .inner .box .contents .text_wrap .name .small {
    font-size: 20px;
  }
}
.under#teams .modal_wrap .inner .box .contents .text_wrap .position {
  margin-bottom: 1.2820512821vw;
}
@media screen and (min-width: 960px) {
  .under#teams .modal_wrap .inner .box .contents .text_wrap .position {
    margin-bottom: 0.3472222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#teams .modal_wrap .inner .box .contents .text_wrap .position {
    margin-bottom: 5px;
  }
}
.under#teams .modal_wrap .inner .box .contents .text_wrap .name {
  margin-bottom: 5.1282051282vw;
  font-size: 6.1538461538vw;
  line-height: 1.1;
}
@media screen and (min-width: 960px) {
  .under#teams .modal_wrap .inner .box .contents .text_wrap .name {
    margin-bottom: 1.3888888889vw;
    font-size: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#teams .modal_wrap .inner .box .contents .text_wrap .name {
    margin-bottom: 20px;
    font-size: 40px;
  }
}
.under#teams .modal_wrap .inner .box .contents .text_wrap .text {
  margin-bottom: 7.6923076923vw;
  line-height: 1.625;
}
@media screen and (min-width: 960px) {
  .under#teams .modal_wrap .inner .box .contents .text_wrap .text {
    margin-bottom: 1.3888888889vw;
    line-height: 1.875;
  }
}
@media screen and (min-width: 1440px) {
  .under#teams .modal_wrap .inner .box .contents .text_wrap .text {
    margin-bottom: 20px;
  }
}
.under#teams .modal_wrap .inner .box .contents .text_wrap .list dl {
  margin-bottom: 3.8461538462vw;
  padding-bottom: 3.8461538462vw;
  border-bottom: 2px solid #B0B0B0;
}
@media screen and (min-width: 960px) {
  .under#teams .modal_wrap .inner .box .contents .text_wrap .list dl {
    display: flex;
    margin-bottom: 0.6944444444vw;
    padding-bottom: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#teams .modal_wrap .inner .box .contents .text_wrap .list dl {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}
.under#teams .modal_wrap .inner .box .contents .text_wrap .list dl:last-child {
  margin-bottom: 0;
}
.under#teams .modal_wrap .inner .box .contents .text_wrap .list dl dt {
  margin-bottom: 1.2820512821vw;
  font-weight: 700;
  color: #950002;
}
@media screen and (min-width: 960px) {
  .under#teams .modal_wrap .inner .box .contents .text_wrap .list dl dt {
    width: 6.9444444444vw;
    max-width: 100px;
    margin-bottom: 0;
    margin-right: 1.3888888889vw;
    flex-shrink: 0;
  }
}
@media screen and (min-width: 1440px) {
  .under#teams .modal_wrap .inner .box .contents .text_wrap .list dl dt {
    margin-right: 20px;
  }
}
.under#teams {
  /*================================
  top
  =================================*/
}
.under#teams .top_wrap {
  padding-bottom: 47.6923076923vw;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 960px) {
  .under#teams .top_wrap {
    padding-bottom: 30.5555555556vw;
  }
}
.under#teams .top_wrap:before {
  content: "";
  width: 100%;
  height: 45.3846153846vw;
  background: url("../images/common/under_bottom_bg.png") no-repeat bottom center;
  background-size: 100%;
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 960px) {
  .under#teams .top_wrap:before {
    height: 45.2083333333vw;
  }
}
.under#teams .top_wrap .inner {
  width: unset;
  max-width: none;
}
.under#teams .top_wrap .inner .contents {
  width: unset;
  max-width: none;
}
@media screen and (min-width: 960px) {
  .under#teams .top_wrap .inner .contents {
    display: flex;
    justify-content: flex-end;
  }
}
.under#teams .top_wrap .inner .contents .text_wrap {
  margin-bottom: 7.6923076923vw;
}
@media screen and (min-width: 960px) {
  .under#teams .top_wrap .inner .contents .text_wrap {
    width: 31.4583333333vw;
    max-width: 453px;
    margin-bottom: 0;
  }
}
.under#teams .top_wrap .inner .contents .text_wrap .item_title_wrap {
  margin-bottom: 7.6923076923vw;
}
@media screen and (min-width: 960px) {
  .under#teams .top_wrap .inner .contents .text_wrap .item_title_wrap {
    margin-bottom: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#teams .top_wrap .inner .contents .text_wrap .item_title_wrap {
    margin-bottom: 40px;
  }
}
.under#teams .top_wrap .inner .contents .text_wrap .item_title_wrap .title {
  width: auto;
  height: 10.7692307692vw;
  margin-bottom: 1.5384615385vw;
  clip-path: inset(0 100% 0 0);
}
@media screen and (min-width: 960px) {
  .under#teams .top_wrap .inner .contents .text_wrap .item_title_wrap .title {
    height: 5vw;
    max-height: 72px;
    margin-bottom: 12px;
  }
}
.under#teams .top_wrap .inner .contents .text_wrap .item_title_wrap .title span {
  display: inline-block;
  height: 100%;
  position: relative;
}
.under#teams .top_wrap .inner .contents .text_wrap .item_title_wrap .title span:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.under#teams .top_wrap .inner .contents .text_wrap .item_title_wrap .title span img {
  width: auto;
  height: 100%;
}
.under#teams .top_wrap .inner .contents .text_wrap .item_title_wrap .title__001 span:before {
  background: url("../images/teams/teams_catch_top_bg.png") no-repeat center center;
  background-size: cover;
}
.under#teams .top_wrap .inner .contents .text_wrap .item_title_wrap .title__002 span:before {
  background: url("../images/teams/teams_catch_bottom_bg.png") no-repeat center center;
  background-size: cover;
}
.under#teams .top_wrap .inner .contents .text_wrap .text .mask {
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.under#teams .top_wrap .inner .contents .text_wrap .text .mask:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transform: translateX(-101%);
}
.under#teams .top_wrap .inner .contents .text_wrap .text .mask span {
  opacity: 0.1%;
  visibility: hidden;
}
.under#teams .top_wrap .inner .contents .text_wrap .text.sp .mask span {
  letter-spacing: -0.09em;
}
.under#teams .top_wrap .inner .contents .image {
  opacity: 0.1%;
  visibility: hidden;
  transform: scale(1.25);
}
@media screen and (min-width: 960px) {
  .under#teams .top_wrap .inner .contents .image {
    width: 44.0972222222vw;
    margin-left: 4.1666666667vw;
  }
}
.under#teams .top_wrap .inner.anim_active .text_wrap .item_title_wrap .item_title .title {
  animation: maskLeftFade 0.35s linear forwards;
}
.under#teams .top_wrap .inner.anim_active .text_wrap .text .mask:before {
  animation: textLeftCurtain 0.85s linear forwards;
}
.under#teams .top_wrap .inner.anim_active .text_wrap .text .mask span {
  animation: fadein 0.3s 0.3s linear forwards;
}
.under#teams .top_wrap .inner.anim_active .image {
  animation: imageScaleFade 0.6s linear forwards;
}
.under#teams {
  /*================================
  members
  =================================*/
}
.under#teams .members_wrap {
  background: #950002;
}
.under#teams .members_wrap .inner .section {
  margin-bottom: 15.3846153846vw;
}
@media screen and (min-width: 960px) {
  .under#teams .members_wrap .inner .section {
    margin-bottom: 4.8611111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#teams .members_wrap .inner .section {
    margin-bottom: 70px;
  }
}
.under#teams .members_wrap .inner .section:last-child {
  margin-bottom: 0;
}
.under#teams .members_wrap .inner .section .contents {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (min-width: 960px) {
  .under#teams .members_wrap .inner .section .contents:before, .under#teams .members_wrap .inner .section .contents:after {
    content: "";
    width: 23.5%;
  }
}
.under#teams .members_wrap .inner .section .contents:before {
  order: 1;
}
.under#teams .members_wrap .inner .section .contents .item {
  width: 48%;
  margin-bottom: 5.1282051282vw;
  cursor: pointer;
}
@media screen and (min-width: 960px) {
  .under#teams .members_wrap .inner .section .contents .item {
    width: 23.5%;
    margin-bottom: 2.0833333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#teams .members_wrap .inner .section .contents .item {
    margin-bottom: 30px;
  }
}
.under#teams .members_wrap .inner .section .contents .item .image {
  margin-bottom: 3.0769230769vw;
  clip-path: inset(0 100% 0 0);
  position: relative;
}
@media screen and (min-width: 960px) {
  .under#teams .members_wrap .inner .section .contents .item .image {
    margin-bottom: 0.9722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#teams .members_wrap .inner .section .contents .item .image {
    margin-bottom: 14px;
  }
}
.under#teams .members_wrap .inner .section .contents .item .image:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #6F4D16;
  mix-blend-mode: hard-light;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s;
  opacity: 0;
  z-index: 1;
}
.under#teams .members_wrap .inner .section .contents .item .image img {
  transform: scale(1.1);
}
.under#teams .members_wrap .inner .section .contents .item .name {
  text-align: center;
  position: relative;
  opacity: 0.1%;
  visibility: hidden;
}
.under#teams .members_wrap .inner .section .contents .item .name .name_text {
  font-size: 5.1282051282vw;
  font-weight: 700;
}
@media screen and (min-width: 960px) {
  .under#teams .members_wrap .inner .section .contents .item .name .name_text {
    font-size: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#teams .members_wrap .inner .section .contents .item .name .name_text {
    font-size: 20px;
  }
}
.under#teams .members_wrap .inner .section .contents .item .name .arrow {
  width: 5.1282051282vw;
  height: 5.1282051282vw;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 960px) {
  .under#teams .members_wrap .inner .section .contents .item .name .arrow {
    width: 2.0833333333vw;
    max-width: 30px;
    height: 2.0833333333vw;
    max-height: 30px;
  }
}
.under#teams .members_wrap .inner .section .contents .item .name .arrow svg {
  width: 2.0512820513vw;
}
@media screen and (min-width: 960px) {
  .under#teams .members_wrap .inner .section .contents .item .name .arrow svg {
    width: 0.8333333333vw;
    max-width: 12px;
  }
}
.under#teams .members_wrap .inner .section .contents .item .name .arrow svg path {
  fill: #8C734B;
}
@media screen and (min-width: 960px) {
  .under#teams .members_wrap .inner .section .contents .item:hover .image:before {
    opacity: 1;
  }
}
.under#teams .members_wrap .inner .section .staff_contents {
  opacity: 0.1%;
  visibility: hidden;
}
@media screen and (min-width: 960px) {
  .under#teams .members_wrap .inner .section .staff_contents {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 960px) {
  .under#teams .members_wrap .inner .section .staff_contents:after {
    content: "";
    width: 23.5%;
  }
}
.under#teams .members_wrap .inner .section .staff_contents .staff_item {
  margin-bottom: 10.2564102564vw;
  padding-bottom: 10.2564102564vw;
  border-bottom: 2px solid #B0B0B0;
  position: relative;
}
@media screen and (min-width: 960px) {
  .under#teams .members_wrap .inner .section .staff_contents .staff_item {
    width: 31%;
    margin-bottom: 1.6666666667vw;
    border-bottom: none;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1440px) {
  .under#teams .members_wrap .inner .section .staff_contents .staff_item {
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 960px) {
  .under#teams .members_wrap .inner .section .staff_contents .staff_item:before {
    content: "";
    width: 1px;
    height: 100%;
    background: #B0B0B0;
    position: absolute;
    top: 0;
    right: 0;
  }
}
.under#teams .members_wrap .inner .section .staff_contents .staff_item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
@media screen and (min-width: 960px) {
  .under#teams .members_wrap .inner .section .staff_contents .staff_item:last-child {
    margin-bottom: 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#teams .members_wrap .inner .section .staff_contents .staff_item:last-child {
    margin-bottom: 24px;
  }
}
.under#teams .members_wrap .inner .section .staff_contents .staff_item:nth-child(3n):before {
  content: none;
}
.under#teams .members_wrap .inner .section .staff_contents .staff_item .position {
  margin-bottom: 1.2820512821vw;
  font-size: 3.5897435897vw;
}
@media screen and (min-width: 960px) {
  .under#teams .members_wrap .inner .section .staff_contents .staff_item .position {
    margin-bottom: 0.3472222222vw;
    font-size: 0.9722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#teams .members_wrap .inner .section .staff_contents .staff_item .position {
    margin-bottom: 5px;
    font-size: 14px;
  }
}
.under#teams .members_wrap .inner .section .staff_contents .staff_item .name {
  font-size: 5.1282051282vw;
  font-weight: 700;
}
@media screen and (min-width: 960px) {
  .under#teams .members_wrap .inner .section .staff_contents .staff_item .name {
    font-size: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#teams .members_wrap .inner .section .staff_contents .staff_item .name {
    font-size: 20px;
  }
}
.under#teams .members_wrap .inner .section .staff_contents .staff_item .name .small {
  font-size: 3.5897435897vw;
}
@media screen and (min-width: 960px) {
  .under#teams .members_wrap .inner .section .staff_contents .staff_item .name .small {
    font-size: 0.9722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#teams .members_wrap .inner .section .staff_contents .staff_item .name .small {
    font-size: 14px;
  }
}
.under#teams .members_wrap .inner .section .staff_contents .staff_item ul {
  padding-top: 3.0769230769vw;
}
@media screen and (min-width: 960px) {
  .under#teams .members_wrap .inner .section .staff_contents .staff_item ul {
    padding-top: 0.8333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#teams .members_wrap .inner .section .staff_contents .staff_item ul {
    padding-top: 12px;
  }
}
.under#teams .members_wrap .inner .section .staff_contents .staff_item ul li {
  margin-left: 1em;
  text-indent: -1em;
  line-height: 1.5;
}
.under#teams .members_wrap .inner .section .staff_contents .staff_item ul li:before {
  content: "・";
}
.under#teams .members_wrap .inner .section.anim_active .contents .item .image {
  animation: maskLeftFade 0.3s 0.2s linear forwards;
}
.under#teams .members_wrap .inner .section.anim_active .contents .item .image img {
  animation: scale_image 0.6s 0.2s linear forwards;
}
.under#teams .members_wrap .inner .section.anim_active .contents .item .name {
  animation: fadein 0.3s 0.2s linear forwards;
}
.under#teams .members_wrap .inner .section.anim_active .staff_contents {
  animation: fadein 0.3s 0.2s linear forwards;
}
.under {
  /*||||||||||||||||||||||||||||||||||||||||||||||||||
  ----------------------------------------------------

  		contact

  ----------------------------------------------------
  ||||||||||||||||||||||||||||||||||||||||||||||||||||*/
}
.under#contact ::-moz-placeholder {
  color: #D0D0D0;
  opacity: 1;
}
.under#contact ::placeholder {
  color: #D0D0D0;
  opacity: 1;
}
.under#contact main {
  padding-bottom: 58.4615384615vw;
}
@media screen and (min-width: 960px) {
  .under#contact main {
    padding-bottom: 37.9166666667vw;
  }
}
.under#contact {
  /*================================
  form
  =================================*/
}
.under#contact .form_wrap {
  padding: 0 5.1282051282vw;
}
@media screen and (min-width: 960px) {
  .under#contact .form_wrap {
    padding: 0;
  }
}
.under#contact .form_wrap .inner {
  padding: 14.358974359vw 5.1282051282vw 10.2564102564vw;
  border: 4px solid #950002;
  position: relative;
}
@media screen and (min-width: 960px) {
  .under#contact .form_wrap .inner {
    width: 71.1111111111vw;
    max-width: 1024px;
    margin: 0 auto;
    padding: 6.0416666667vw 6.9444444444vw 4.1666666667vw;
    border-width: 2px;
  }
}
@media screen and (min-width: 1440px) {
  .under#contact .form_wrap .inner {
    padding: 87px 100px 60px;
  }
}
.under#contact .form_wrap .inner .contact_title {
  padding: 0 5.1282051282vw;
  font-family: "Oswald", sans-serif;
  font-size: 10.2564102564vw;
  line-height: 1;
  text-align: center;
  color: #950002;
  background: #000;
  position: absolute;
  top: -6.1538461538vw;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 960px) {
  .under#contact .form_wrap .inner .contact_title {
    padding: 0 1.3888888889vw;
    font-size: 4.1666666667vw;
    top: -2.3611111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#contact .form_wrap .inner .contact_title {
    padding: 0 20px;
    font-size: 60px;
    top: -34px;
  }
}
.under#contact .form_wrap .inner .contents .form {
  margin-bottom: 10.2564102564vw;
}
@media screen and (min-width: 960px) {
  .under#contact .form_wrap .inner .contents .form {
    margin-bottom: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#contact .form_wrap .inner .contents .form {
    margin-bottom: 40px;
  }
}
.under#contact .form_wrap .inner .contents .form dl {
  margin-bottom: 6.1538461538vw;
}
@media screen and (min-width: 960px) {
  .under#contact .form_wrap .inner .contents .form dl {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#contact .form_wrap .inner .contents .form dl {
    margin-bottom: 40px;
  }
}
.under#contact .form_wrap .inner .contents .form dl:last-child {
  margin-bottom: 0;
}
.under#contact .form_wrap .inner .contents .form dl.textarea {
  align-items: flex-start;
}
.under#contact .form_wrap .inner .contents .form dl dt {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3.5897435897vw;
}
@media screen and (min-width: 960px) {
  .under#contact .form_wrap .inner .contents .form dl dt {
    width: 13.8888888889vw;
    max-width: 200px;
    margin-bottom: 0;
    margin-right: 6.5277777778vw;
    flex-shrink: 0;
  }
}
@media screen and (min-width: 1440px) {
  .under#contact .form_wrap .inner .contents .form dl dt {
    margin-right: 94px;
  }
}
.under#contact .form_wrap .inner .contents .form dl dt span {
  display: inline-block;
  line-height: 1;
}
@media screen and (min-width: 960px) {
  .under#contact .form_wrap .inner .contents .form dl dt span.form_title {
    padding-top: 0.0694444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#contact .form_wrap .inner .contents .form dl dt span.form_title {
    padding-top: 1px;
  }
}
.under#contact .form_wrap .inner .contents .form dl dt span.required {
  margin-left: 2.5641025641vw;
  padding: 1.0256410256vw 2.5641025641vw 1.5384615385vw;
  font-size: 2.5641025641vw;
  background: #950002;
  border-radius: 3.5897435897vw;
}
@media screen and (min-width: 960px) {
  .under#contact .form_wrap .inner .contents .form dl dt span.required {
    margin-left: 0.6944444444vw;
    padding: 0.2777777778vw 0.6944444444vw 0.4166666667vw;
    font-size: 0.8333333333vw;
    border-radius: 0.9722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#contact .form_wrap .inner .contents .form dl dt span.required {
    margin-left: 10px;
    padding: 4px 10px 6px;
    font-size: 12px;
    border-radius: 14px;
  }
}
.under#contact .form_wrap .inner .contents .form dl dd {
  width: 100%;
}
.under#contact .form_wrap .inner .contents .form dl dd .form_text, .under#contact .form_wrap .inner .contents .form dl dd textarea, .under#contact .form_wrap .inner .contents .form dl dd select {
  width: 100%;
  background: #fff;
  border: none;
  border-radius: 1.5384615385vw;
}
@media screen and (min-width: 960px) {
  .under#contact .form_wrap .inner .contents .form dl dd .form_text, .under#contact .form_wrap .inner .contents .form dl dd textarea, .under#contact .form_wrap .inner .contents .form dl dd select {
    border-radius: 0.4166666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#contact .form_wrap .inner .contents .form dl dd .form_text, .under#contact .form_wrap .inner .contents .form dl dd textarea, .under#contact .form_wrap .inner .contents .form dl dd select {
    border-radius: 6px;
  }
}
.under#contact .form_wrap .inner .contents .form dl dd .form_text, .under#contact .form_wrap .inner .contents .form dl dd select {
  height: 12.8205128205vw;
  padding: 0 5.1282051282vw;
  border-radius: 1.5384615385vw;
}
@media screen and (min-width: 960px) {
  .under#contact .form_wrap .inner .contents .form dl dd .form_text, .under#contact .form_wrap .inner .contents .form dl dd select {
    height: 4.1666666667vw;
    max-height: 60px;
    padding: 0 1.3888888889vw;
    border-radius: 0.4166666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#contact .form_wrap .inner .contents .form dl dd .form_text, .under#contact .form_wrap .inner .contents .form dl dd select {
    padding: 0 20px;
    border-radius: 6px;
  }
}
.under#contact .form_wrap .inner .contents .form dl dd textarea {
  height: 38.4615384615vw;
  padding: 3.5897435897vw 5.1282051282vw;
}
@media screen and (min-width: 960px) {
  .under#contact .form_wrap .inner .contents .form dl dd textarea {
    height: 11.1111111111vw;
    max-height: 160px;
    padding: 1.0416666667vw 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#contact .form_wrap .inner .contents .form dl dd textarea {
    padding: 15px 20px;
  }
}
.under#contact .form_wrap .inner .contents .form dl dd .select {
  position: relative;
}
.under#contact .form_wrap .inner .contents .form dl dd .select:before {
  content: "";
  width: 2.0512820513vw;
  height: 3.5897435897vw;
  background: url("../images/common/select_arrow.svg") no-repeat center center;
  background-size: 100%;
  position: absolute;
  top: 50%;
  right: 5.1282051282vw;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
}
@media screen and (min-width: 960px) {
  .under#contact .form_wrap .inner .contents .form dl dd .select:before {
    width: 0.5555555556vw;
    max-width: 8px;
    height: 0.9722222222vw;
    max-height: 14px;
    right: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#contact .form_wrap .inner .contents .form dl dd .select:before {
    right: 20px;
  }
}
.under#contact .form_wrap .inner .contents .form dl dd .select select {
  color: #000;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.under#contact .form_wrap .inner .send_btn {
  text-align: center;
}
@media screen and (min-width: 960px) {
  .under#contact .form_wrap .inner .send_btn {
    width: 13.8888888889vw;
    max-width: 200px;
    margin: 0 auto;
  }
}
.under#contact .form_wrap .inner .send_btn input {
  width: 100%;
  padding: 3.8461538462vw 0;
  color: #fff;
  background: #8C734B;
  border: none;
  border-radius: 1.5384615385vw;
  cursor: pointer;
}
@media screen and (min-width: 960px) {
  .under#contact .form_wrap .inner .send_btn input {
    padding: 1.0416666667vw 0;
    border-radius: 0.4166666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#contact .form_wrap .inner .send_btn input {
    padding: 15px 0;
    border-radius: 6px;
  }
}
.under {
  /*||||||||||||||||||||||||||||||||||||||||||||||||||
  ----------------------------------------------------

  		privacy policy

  ----------------------------------------------------
  ||||||||||||||||||||||||||||||||||||||||||||||||||||*/
}
@media screen and (min-width: 960px) {
  .under#privacy-policy main {
    padding-bottom: 42.9166666667vw;
  }
}
.under#privacy-policy {
  /*================================
  pryvacy policy
  =================================*/
}
.under#privacy-policy .privacyPolicy_wrap .mb2em {
  margin-bottom: 2em !important;
}
@media screen and (min-width: 960px) {
  .under#privacy-policy .privacyPolicy_wrap .inner .contents, .under#privacy-policy .privacyPolicy_wrap .inner .top_text {
    width: 71.1111111111vw;
    max-width: 1024px;
    margin: 0 auto;
  }
}
.under#privacy-policy .privacyPolicy_wrap .inner * {
  line-height: 1.875;
}
.under#privacy-policy .privacyPolicy_wrap .inner .contents span {
  display: block;
}
.under#privacy-policy .privacyPolicy_wrap .inner .contents dl {
  margin-bottom: 2em;
}
.under#privacy-policy .privacyPolicy_wrap .inner .contents dl:last-child {
  margin-bottom: 0;
}
.under#privacy-policy .privacyPolicy_wrap .inner .contents dl dt, .under#privacy-policy .privacyPolicy_wrap .inner .contents dl dt * {
  font-size: 4.6153846154vw;
  font-weight: 700;
}
@media screen and (min-width: 960px) {
  .under#privacy-policy .privacyPolicy_wrap .inner .contents dl dt, .under#privacy-policy .privacyPolicy_wrap .inner .contents dl dt * {
    font-size: 1.25vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#privacy-policy .privacyPolicy_wrap .inner .contents dl dt, .under#privacy-policy .privacyPolicy_wrap .inner .contents dl dt * {
    font-size: 18px;
  }
}
.under#privacy-policy .privacyPolicy_wrap .inner .contents dl dd ul li:before {
  content: "-";
  margin-right: 0.5em;
}
.under {
  /*||||||||||||||||||||||||||||||||||||||||||||||||||
  ----------------------------------------------------

  		404 error

  ----------------------------------------------------
  ||||||||||||||||||||||||||||||||||||||||||||||||||||*/
}
.under#error404 main {
  padding-bottom: 102.5641025641vw;
}
@media screen and (min-width: 960px) {
  .under#error404 main {
    padding-bottom: 41.6666666667vw;
  }
}
.under#error404 {
  /*================================
  mv
  =================================*/
}
.under#error404 .mv {
  margin-bottom: 11.7948717949vw;
}
@media screen and (min-width: 960px) {
  .under#error404 .mv {
    margin-bottom: 10.8333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#error404 .mv {
    margin-bottom: 156px;
  }
}
.under#error404 {
  /*================================
  error
  =================================*/
}
.under#error404 .error_wrap .inner .contents .text {
  margin-bottom: 9.2307692308vw;
}
@media screen and (min-width: 960px) {
  .under#error404 .error_wrap .inner .contents .text {
    margin-bottom: 2.7777777778vw;
    text-align: center;
  }
}
@media screen and (min-width: 1440px) {
  .under#error404 .error_wrap .inner .contents .text {
    margin-bottom: 40px;
  }
}
.under#error404 .error_wrap .inner .contents .top_btn {
  width: 79.4871794872vw;
  margin: 0 auto;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .under#error404 .error_wrap .inner .contents .top_btn {
    width: 13.8888888889vw;
    max-width: 200px;
  }
}
.under#error404 .error_wrap .inner .contents .top_btn a {
  width: 100%;
  padding: 3.8461538462vw 0;
  border-radius: 1.5384615385vw;
  background: #8C734B;
  position: relative;
}
@media screen and (min-width: 960px) {
  .under#error404 .error_wrap .inner .contents .top_btn a {
    padding: 0.9722222222vw 0;
    border-radius: 0.4166666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#error404 .error_wrap .inner .contents .top_btn a {
    padding: 14px 0;
    border-radius: 6px;
  }
}
.under#error404 .error_wrap .inner .contents .top_btn a .arrow {
  background: unset;
  border-radius: unset;
  position: absolute;
  top: 50%;
  right: 3.5897435897vw;
  transform: translateY(-50%);
}
@media screen and (min-width: 960px) {
  .under#error404 .error_wrap .inner .contents .top_btn a .arrow {
    right: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .under#error404 .error_wrap .inner .contents .top_btn a .arrow {
    right: 10px;
  }
}
.under#error404 .error_wrap .inner .contents .top_btn a .arrow svg {
  width: 2.5641025641vw;
}
@media screen and (min-width: 960px) {
  .under#error404 .error_wrap .inner .contents .top_btn a .arrow svg {
    width: 0.9722222222vw;
    max-width: 14px;
  }
}
.under {
  /*||||||||||||||||||||||||||||||||||||||||||||||||||
  ----------------------------------------------------

  		about

  ----------------------------------------------------
  ||||||||||||||||||||||||||||||||||||||||||||||||||||*/
}
.under#about {
  /*================================
  mv
  =================================*/
}/*# sourceMappingURL=style.css.map */