@charset "UTF-8";
body img,
body img a,
body video,
body video a {
  height: auto;
  width: 100%;
}

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
  counter-reset: count-step;
  word-wrap: break-word;
  color: #333;
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

* {
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

.l-Header {
  grid-area: header;
  width: 100%;
  position: fixed;
  z-index: 10;
}

.l-Main {
  grid-area: main;
}

.l-Footer {
  grid-area: footer;
  display: grid;
  background-color: #212121;
  grid-template-areas: "  Brand    " "Corp" "  Copyright";
  grid-template-columns: 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 60px 0;
  padding: 60px 18px;
}

.l-Footer_Atlete {
  grid-area: Brand;
}

.l-Footer_Corp {
  grid-area: Corp;
}

.l-Footer_Copyright {
  grid-area: Copyright;
}

.l-SideContents {
  grid-area: aside;
}

.l-Contents_Block {
  max-width: 1024px;
  margin: auto 90px 120px;
}

@media screen and (min-width: 1280px) {
  .l-Contents_Block {
    margin: auto auto 120px;
  }
}

@media screen and (max-width: 820px) {
  .l-Footer {
    grid-template-areas: "  Brand    " "Corp" "  Copyright";
    padding: 30px 18px;
  }

  .l-Contents_Block {
    margin: auto 18px 24px;
  }
}

@media screen and (max-width: 600px) {
  .l-Footer {
    padding-bottom: 100px;
  }

  .l-Contents_Block {
    margin: auto 18px 24px;
  }
}

.l-Contents_Block-S {
  max-width: 480px;
  margin: auto;
}

.l-Contents_Block-M {
  max-width: 600px;
  margin: auto;
}

.l-Contents_Block-L {
  max-width: 800px;
  margin: auto;
}

.l-Contents_Block-XL {
  max-width: 1000px;
  margin: auto;
}

.l-Contents_Block-Full {
  width: 100%;
  margin: auto auto 120px;
}

.l-Contents_Block-Half {
  width: 50%;
}

.l-Contents_Block-Third {
  width: 100%/3;
}

.l-Contents_Block-Quarter {
  width: 100%/4;
}

.l-Feed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 24px;
}

.l-Feed_Atlete_About {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.l-Feed_Atlete_Function {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 36px 24px;
  max-width: 920px;
  margin: auto;
}

@media screen and (max-width: 820px) {
  .l-Feed_Atlete_Function {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .l-Feed_Atlete_Function {
    /* grid-template-columns: repeat(3, 1fr); */
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px !important;
  }
}

@media screen and (max-width: 401px) {
  .l-Feed_Atlete_Function {
    gap: 10px !important;
  }
}

.l-Feed_Atlete_Case {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media screen and (max-width: 767px) {
  .l-Feed_Atlete_Case {
    display: flex;
  }
}

@media screen and (max-width: 820px) {
  .l-Feed_Atlete_Case {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media screen and (max-width: 600px) {
  .l-Feed_Atlete_Case {
    grid-template-columns: repeat(1, 1fr);
    gap: 18px;
  }
}

.l-Feed_Archive {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 90px 30px;
}

.l-AtletePage_Contents {
  /* padding: 60px 15%; */

  padding: 60px 0;
}

.inner.w108 {
  max-width: 1080px;
  margin: 0 auto;
}
.inner.w140 {
  max-width: 1440px;
  margin: 0 auto;
}

.l-AtletePage_Contents.-Red {
  background-color: #efefef;
  margin-bottom: 60px 15%;
}

@media screen and (max-width: 820px) {
  .l-AtletePage_Contents {
    padding: 48px 18px;
  }
  .l-AtletePage_Contents.voice-conts {
    padding-bottom: 0 !important;
  }

  .l-AtletePage_Contents.-Red {
    margin-bottom: 48px 18px;
  }
}

.l-AtletePage_Contents.-Red_Half {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(transparent),
    color-stop(50%, transparent),
    color-stop(50%, #b61c2b),
    to(#b61c2b)
  );
  background: -webkit-linear-gradient(
    top,
    transparent 0,
    transparent 50%,
    #b61c2b 50%,
    #b61c2b 100%
  );
  background: linear-gradient(
    180deg,
    transparent 0,
    transparent 50%,
    #b61c2b 50%,
    #b61c2b 100%
  );
}

.l-AtletePage_Contents.-Red_ThreeHalves {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(transparent),
    color-stop(66%, transparent),
    color-stop(66%, #b61c2b),
    to(#b61c2b)
  );
  background: -webkit-linear-gradient(
    top,
    transparent 0,
    transparent 66%,
    #b61c2b 66%,
    #b61c2b 100%
  );
  background: linear-gradient(
    180deg,
    transparent 0,
    transparent 66%,
    #b61c2b 66%,
    #b61c2b 100%
  );
}

.l-AtletePage_Contents.-Red_ThreeQuarters {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(transparent),
    color-stop(75%, transparent),
    color-stop(75%, #b61c2b),
    to(#b61c2b)
  );
  background: -webkit-linear-gradient(
    top,
    transparent 0,
    transparent 75%,
    #b61c2b 75%,
    #b61c2b 100%
  );
  background: linear-gradient(
    180deg,
    transparent 0,
    transparent 75%,
    #b61c2b 75%,
    #b61c2b 100%
  );
}

.l-AtletePage_Contents.-Red_Center {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(transparent),
    color-stop(40%, transparent),
    color-stop(40%, #b61c2b),
    color-stop(60%, #b61c2b),
    color-stop(60%, transparent),
    to(transparent)
  );
  background: -webkit-linear-gradient(
    top,
    transparent 0,
    transparent 40%,
    #b61c2b 40%,
    #b61c2b 60%,
    transparent 60%,
    transparent 100%
  );
  background: linear-gradient(
    180deg,
    transparent 0,
    transparent 40%,
    #b61c2b 40%,
    #b61c2b 60%,
    transparent 60%,
    transparent 100%
  );
}

.l-AtletePage_Contents.-Gray {
  background-color: #efefef;
}

body ::selection {
  background: #a3a3a3;
}

body ::-moz-selection {
  background: #a3a3a3;
}

body img,
body video {
  vertical-align: middle;
}

body a {
  text-decoration: none;
  color: #333;
  cursor: pointer;
}

body a:hover {
  opacity: 0.7;
  -ms-filter: "alpha( opacity=70 )";
}

.c-Drawer_Container {
  width: 100%;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background-color: #b61c2b;
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 1fr;
}

.c-Drawer_Footer_Menu,
.c-Drawer_Sab_Menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
}

.c-Drawer_Brand {
  background-color: #fff;
  padding: 30px 42px;
}

.c-Drawer_Brand-Img {
  width: 180px;
}

.c-Drawer_Wrap {
  padding: 72px 42px 60px;
}

.c-Drawer_Nav {
  position: fixed;
  z-index: 13;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background: #b61c2b;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

@media screen and (max-width: 820px) {
  .c-Drawer_Nav {
    right: -50%;
    width: 50%;
  }
}

@media screen and (max-width: 600px) {
  .c-Drawer_Nav {
    right: -80%;
    width: 80%;
  }
}

.c-Drawer_Nav.PanelActive {
  right: 0;
}

.c-Drawer_Menu {
  letter-spacing: 0.15em;
  font-size: 16px;
}

.c-Drawer_Menu._Small {
  margin-top: 30px;
  margin-bottom: 30px;
}

.c-Drawer_Menu_Item {
  position: relative;
  color: #333;
  margin-bottom: 18px;
}

.c-Drawer_Menu_Item:hover {
  cursor: pointer;
  text-decoration: none;
}

.c-Drawer_Menu_Item-Link {
  color: #fff;
  text-decoration: none;
}

.c-Drawer_Footer,
.c-Drawer_Footer_Menu_Item-Link,
.c-Drawer_Sab_Menu_Item {
  color: #333;
}

.c-Drawer_Menu_Item-Link:hover {
  text-decoration: none;
  opacity: 1;
}

.c-Drawer_Menu_Item-Link._Small {
  font-size: 0.9em;
}

.c-Drawer_Sab_Menu {
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: Marcellus, serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.c-Drawer_Sab_Menu_Item-Link:hover {
  text-decoration: none;
  opacity: 1;
}

.c-Drawer_Footer {
  background-color: #fff;
  padding: 30px 0;
  display: grid;
  gap: 18px 0;
  grid-template-rows: auto;
}

.c-Drawer_Footer_Brand-Img {
  width: 180px;
  margin: auto;
  display: block;
}

.c-Drawer_Footer_Menu {
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 60%;
  margin: auto;
}

.c-Drawer_Footer_Menu_Item,
.c-Drawer_Footer_Sns_Menu_Item {
  margin-right: 12px;
}

.c-Drawer_Footer_Sns_Menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.c-Drawer_Footer_Sns_Menu-Img {
  width: 24px;
  height: 24px;
}

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

/* buttons */
.l-Header .c-Drawer .l-climbtrPage_btns-box {
  position: absolute;
  right: 80px;
  top: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.climbtr_about-btm-box-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 20px;
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .l-Header .c-Drawer .l-climbtrPage_btns-box {
    position: static;
    justify-content: center;
    margin-top: 20px;
    margin-right: 30px;
  }

  .climbtr_about-btm-box-btns {
    margin-top: 0;
    margin-bottom: 20px;
    display: none;
  }
}

.c-Drawer_Btn {
  position: absolute;
  z-index: 14;
  top: 24px;
  right: 24px;
  cursor: pointer;
  width: 42px;
  height: 42px;
  background-color: rgba(255, 255, 255, 0.6);
  /* border-radius: 50% */
}

@media screen and (max-width: 767px) {
  .c-Drawer_Btn {
    top: 10px;
  }
}

.lp-btn:link,
.lp-btn:visited {
  text-decoration: none;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  transition: all 0.3s;
  cursor: pointer;
  line-height: 1;
}

.lp-btn:hover,
.lp-btn:focus {
  opacity: 0.7;
}

.lp-btn-sm:link,
.lp-btn-sm:visited {
  font-size: 13px;
  width: 150px;
  height: 30px;
}
.lp-btn-big:link,
.lp-btn-big:visited {
  font-size: 15px;
  width: 250px;
  height: 50px;
  border-radius: 30px;
  box-shadow: 2px 8px 10px rgba(0, 0, 0, 20%);
}

@media screen and (max-width: 767px) {
  .lp-btn-big:link,
  .lp-btn-big:visited {
    font-size: 12px;
    width: 200px;
    height: 40px;
  }
}

.lp-btn-primary {
  color: #fff;
  background-color: #fd9a00;
  border: 1px solid #fff;
}
.lp-btn-secondary {
  background-color: #fff;
  color: #000;
  border: 1px solid #efefef;
}
@media screen and (max-width: 767px) {
  .lp-btn-sm:link,
  .lp-btn-sm:visited {
    width: 30vw;
    font-size: 12px;
  }
}

.c-Drawer_Btn span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  left: 10%;
  height: 2px;
  border-radius: 2px;
  background-color: #b61c2b;
  width: 80%;
}

.c-Drawer_Btn span:nth-of-type(1) {
  top: calc(50% - (2px * 4));
}

.c-Drawer_Btn span:nth-of-type(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.c-Drawer_Btn span:nth-of-type(3) {
  top: calc(50% + (2px * 3));
}

.c-Drawer_Btn.active {
  background-color: transparent;
}

.c-Drawer_Btn.active span {
  background-color: #b61c2b;
}

.c-Drawer_Btn.active span:nth-of-type(1) {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 100%;
}

.c-Drawer_Btn.active span:nth-of-type(2) {
  opacity: 0;
}

.c-Drawer_Btn.active span:nth-of-type(3) {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  width: 100%;
}

.c-Drawer_Overlay {
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: 8;
  position: fixed;
  display: none;
  opacity: 0.8;
  left: 0;
  top: 0;
}

.c-Drawer_Overlay.PanelActive {
  display: block;
  opacity: 0.8;
}

.c-Drawer_CorpBrandBtn {
  display: block;
  background-color: #212121;
  border-radius: 12px;
  padding: 12px 24px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  margin: auto;
  text-align: center;
}

.c-Drawer_CorpBrandBtn-Img {
  width: 70%;
  margin: auto;
  display: block;
}

.c-Accordion .toggle,
.c-EventNav {
  display: none;
}

body.PanelActive {
  overflow: hidden;
}

.c-Accordion {
  margin: auto;
  max-width: 60vw;
}

.c-Accordion_Btn {
  width: 1.25em;
  height: 1.25em;
  border-radius: 20px;
  background-color: #b61c2b;
  display: block;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.c-Accordion_Block {
  position: relative;
  margin-bottom: 24px;
  border-radius: 8px;
  padding: 24px;
  background-color: #fff;
}

@media screen and (max-width: 600px) {
  .c-Accordion {
    max-width: 100%;
  }

  .c-Accordion_Block {
    padding: 12px;
  }
}

.c-Accordion_Label {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  padding-right: 1.6em;
  text-indent: -1.4em;
  padding-left: 1.6em;
  display: block;
  font-weight: 700;
}

.c-Accordion_Label::after,
.c-Accordion_Label::before {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  width: 2px;
  height: 0.75em;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 1;
}

.c-Accordion_Label::after {
  -webkit-transform: translate(50%, -50%) rotate(90deg);
  -ms-transform: translate(50%, -50%) rotate(90deg);
  transform: translate(50%, -50%) rotate(90deg);
}

.c-Accordion_Label_Heading {
  font-weight: 700;
}

.c-Accordion_Content {
  max-height: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  overflow: hidden;
}

.c-Accordion_Content_Heading {
  font-weight: 700;
  color: #b61c2b;
}

.c-Accordion_Content-p {
  padding-top: 1em;
  margin-top: 1em;
  border-top: 1px solid #b61c2b;
}

.c-Accordion .toggle:checked + .c-Accordion_Label + .c-Accordion_Content {
  max-height: 500px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.c-Accordion .toggle:checked + .c-Accordion_Label::before {
  -webkit-transform: translate(50%, -50%) rotate(90deg) !important;
  -ms-transform: translate(50%, -50%) rotate(90deg) !important;
  transform: translate(50%, -50%) rotate(90deg) !important;
}

.c-Accordion .toggle:checked + .c-Accordion_Label > .c-Accordion_Btn {
  background-color: silver;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.c-EventNav {
  width: 120px;
  position: fixed;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  background-color: #b61c2b;
  padding: 2em 0.75em;
  font-size: 12px;
  border-radius: 0 8px 8px 0;
  z-index: 7;
}

.p-Swiper-Hero_Container,
.p-Swiper-Hero_Wrap,
.p-Swiper-Strengths_Container {
  position: relative;
}

@media screen and (max-width: 820px) {
  .c-EventNav {
    display: none !important;
  }
}

.c-EventNav_Menu {
  margin-bottom: 1em;
  padding-bottom: 1em;
  border-bottom: 2px solid #212121;
}

.c-EventNav_Item {
  margin-bottom: 2em;
}

.c-EventNav_Item:last-child {
  margin-bottom: 0;
}

.c-EventNav_Item-Link {
  color: #fff;
}

.c-EventNav_Item.is-current {
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
}

.c-EventNav_CorpBtn {
  color: #fff;
}

.p-Swiper-Hero_Swiper,
.p-Swiper-Price_Swiper,
.p-Swiper-Strengths_Swiper,
.p-Swiper-Voice_Swiper {
  width: 100%;
}

.p-Swiper-Voice_Slide {
  display: inherit;
  width: 100% !important;
  max-width: 100% !important;
}

.p-Swiper-Price_Slide-Img,
.p-Swiper-Strengths_Slide-Img {
  width: 100%;
}

.p-Swiper-Hero_Swiper {
  max-width: 100vw;
  height: auto;
}

.p-Swiper-Hero_Slide {
  text-align: center;
}

.p-Swiper-Hero_Slide-Img {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 820px) {
  .p-Swiper-Strengths_Container {
    width: 580px;
    margin: auto;
  }
}

.p-Swiper-Strengths_Swiper {
  max-width: 100%;
  margin: 0;
  padding: 20px 0;
}

@media screen and (max-width: 820px) {
  .p-Swiper-Strengths_Swiper {
    max-width: calc(100vw - calc(36px));
  }
}

@media screen and (max-width: 600px) {
  .p-Swiper-Strengths_Container {
    width: 100%;
  }

  .p-Swiper-Strengths_Swiper {
    padding: 12px;
  }
}

.p-Swiper-Strengths_Swiper:not(.swiper-initialized) > .swiper-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  /* -webkit-justify-content: space-between; */
  justify-content: center;
  gap: 15px;
  -ms-flex-pack: justify;
  /* justify-content: space-between; */
}

@media screen and (max-width: 1280px) {
  .p-Swiper-Strengths_Swiper:not(.swiper-initialized) > .swiper-wrapper {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
}

.p-Swiper-Strengths_Swiper:not(.swiper-initialized) > .swiper-wrapper._Two {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  /* justify-content: space-around; */
  justify-content: center;
  gap: 20px;
}

.p-Swiper-Strengths_Swiper:not(.swiper-initialized) .swiper-button-next,
.p-Swiper-Strengths_Swiper:not(.swiper-initialized) .swiper-button-prev {
  display: none;
}

.p-Swiper-Strengths_Slide {
  /* width: 32.5%; */
  max-width: 100%;
}

@media screen and (max-width: 1080px) {
  .p-Swiper-Strengths_Slide {
    width: 48%;
  }
}

@media screen and (max-width: 820px) {
  .p-Swiper-Strengths_Slide {
    width: 100%;
  }
}

.p-Swiper-Strengths_Slide._Two {
  width: 48%;
  margin-bottom: 0;
}

.p-Swiper-Strengths_Pagination {
  position: absolute;
  z-index: 5 !important;
  right: 30px;
  bottom: 30px;
}

.p-Swiper-Strengths_Pagination > .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background-color: #b61c2b;
  opacity: 1;
  margin-right: 12px;
}

div.p-Swiper-Strengths_Navigation-Next:after,
div.p-Swiper-Strengths_Navigation-Prev:after {
  content: "";
  background-image: url(img/carousel-allow-wh.svg);
  width: 23px;
  height: 63px;
}

.p-Swiper-Strengths_Pagination > .swiper-pagination-bullet:focus {
  outline: 0;
}

.p-Swiper-Strengths_Pagination > .swiper-pagination-bullet-active {
  background-color: #b1aaaa;
}

.p-Swiper-Strengths_Navigation-Next {
  right: calc(-72px / 2);
  z-index: 6;
  display: none;
  width: 23px;
}

@media screen and (max-width: 820px) {
  .p-Swiper-Strengths_Navigation-Next {
    display: block;
    right: -15px;
  }
}

div.p-Swiper-Strengths_Navigation-Next:after {
  display: block;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.p-Atlete_Hero_labels {
  position: absolute;
  left: 50%;
  top: calc(100vh / 27);
  transform: translateX(-50%);
  z-index: 1;
  width: 900px;
}

.p-Atlete_Hero_labels li {
  /* width: 16vh; */
  /* max-width: 125px; */
  width: 100%;
  margin-right: 10px;
}

.p-Atlete_Hero_labels ul {
  display: flex;
  justify-content: flex-start;
  width: 45%;
  margin-top: 30px;
}

.p-Atlete_Hero_Catch,
.p-Swiper-Voice_Caption {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.p-Swiper-Strengths_Navigation-Next:focus {
  outline: 0;
}

.p-Swiper-Strengths_Navigation-Prev {
  left: calc(-72px / 2);
  z-index: 6;
  display: none;
  width: 23px;
}

.p-Swiper-Strengths_Navigation-Prev:after {
  display: block;
}

.p-Swiper-Strengths_Navigation-Prev:focus {
  outline: 0;
}

.p-Swiper-Voice_Container {
  position: relative;
  border: 4px solid #b61c2b;
  border-radius: 8px;
}

@media screen and (max-width: 820px) {
  .p-Swiper-Strengths_Navigation-Prev {
    display: block;
    left: -15px;
  }

  .p-Swiper-Voice_Container {
    width: 90%;
    margin: auto;
  }
}

.p-Swiper-Voice_Swiper {
  max-width: calc(100vw - calc(72px * 2));
  height: auto;
}

@media screen and (max-width: 600px) {
  .p-Swiper-Strengths_Pagination {
    bottom: 12px;
  }

  .p-Swiper-Voice_Container {
    width: 100%;
    background-color: transparent;
    border: none;
  }

  .p-Swiper-Voice_Swiper {
    width: 90%;
    max-width: calc(100vw - calc(18px * 2));
  }
}

.p-Swiper-Voice_Wrap {
  position: relative;
}

.p-Swiper-Voice_Slide {
  height: auto;
}

.p-Swiper-Voice_Slide-Img {
  width: 100%;
  height: 100%;
}

.p-Swiper-Voice_Caption {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.p-Swiper-Voice_Pagination {
  position: absolute;
  z-index: 1 !important;
  bottom: auto;
  top: -54px;
}

.p-Swiper-Voice_Pagination > .swiper-pagination-bullet {
  background-color: transparent;
  opacity: 1;
  margin-right: 24px !important;
  font-size: 20px;
  width: auto;
  height: 1em;
  border-radius: 0;
  display: inline-block;
  line-height: 0;
  text-align: center;
  font-weight: 700;
}

.p-Swiper-Voice_Navigation-Next:after,
.p-Swiper-Voice_Navigation-Prev:after {
  content: "";
  background-image: url(img/carousel-allow.svg);
  width: 23px;
  height: 63px;
}

@media screen and (max-width: 600px) {
  .p-Swiper-Voice_Pagination {
    bottom: 12px;
  }

  .p-Swiper-Voice_Pagination > .swiper-pagination-bullet {
    font-size: 14px;
    margin-right: 12px !important;
  }
}

.p-Swiper-Voice_Pagination > .swiper-pagination-bullet :hover {
  cursor: pointer;
}

.p-Swiper-Voice_Pagination > .swiper-pagination-bullet:focus {
  outline: 0;
}

.p-Swiper-Voice_Pagination > .swiper-pagination-bullet-active {
  font-size: 1.8em;
  position: relative;
  top: -0.5em;
  color: #b61c2b;
  border-bottom: 4px solid #b61c2b;
}

.p-Swiper-Voice_Navigation-Next {
  right: calc(-72px / 2);
  z-index: 6;
  width: 23px;
}

.p-Swiper-Voice_Navigation-Next:after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.p-Swiper-Voice_Navigation-Next:focus {
  outline: 0;
}

.p-Swiper-Voice_Navigation-Prev {
  left: calc(-72px / 2);
  z-index: 6;
  width: 23px;
}

.p-Swiper-Voice_Navigation-Prev:focus {
  outline: 0;
}

.p-Swiper-Price_Container {
  position: relative;
}

.p-Swiper-Price_Swiper {
  max-width: 100%;
  margin: 0;
  padding: 60px 20px 20px;
  padding-top: 0;
}

@media screen and (max-width: 600px) {
  .p-Swiper-Voice_Pagination > .swiper-pagination-bullet-active {
    font-size: 1.2em;
  }

  .p-Swiper-Voice_Navigation-Next {
    right: -15px;
  }

  .p-Swiper-Voice_Navigation-Prev {
    left: -15px;
  }

  .p-Swiper-Price_Swiper {
    padding: 0 12px 12px;
  }
}

.p-Swiper-Price_Swiper:not(.swiper-initialized) > .swiper-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 820px) {
  .p-Swiper-Price_Swiper {
    max-width: calc(100vw - calc(36px));
  }

  .p-Swiper-Price_Swiper:not(.swiper-initialized) > .swiper-wrapper {
    grid-template-columns: 1fr;
  }
}

.p-Swiper-Price_Swiper:not(.swiper-initialized) .swiper-button-next,
.p-Swiper-Price_Swiper:not(.swiper-initialized) .swiper-button-prev {
  display: none;
}

article.p-Swiper-Price_Slide {
  width: 32.5%;
  max-width: 100%;
}

.p-Atlete_Strengths {
  background-color: #b61c2b;
}

.p-Atlete_About h2.p-Atlete_Contents_Title {
  color: #b61c2b;
}

.p-Atlete_About span.p-Atlete_Contents_Subtitle {
  color: #000;
}

.p-Atlete_About_Card,
.p-Atlete_Strengths_Card {
  /* max-width: 424px; */
  -webkit-box-shadow: 0 4px 10px 0 grey;
}

@media screen and (max-width: 1080px) {
  .p-Swiper-Price_Slide {
    width: 48%;
  }
}

.p-Swiper-Price_Pagination {
  position: absolute;
  z-index: 5 !important;
  right: 30px;
  bottom: 30px;
}

.p-Swiper-Price_Pagination > .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background-color: #b61c2b;
  opacity: 1;
  margin-right: 12px;
}

div.p-Swiper-Price_Navigation-Next:after,
div.p-Swiper-Price_Navigation-Prev:after {
  background-image: url(img/carousel-allow.svg);
  width: 23px;
  height: 63px;
  content: "";
}

.p-Swiper-Price_Pagination > .swiper-pagination-bullet:focus {
  outline: 0;
}

.p-Swiper-Price_Pagination > .swiper-pagination-bullet-active {
  background-color: #b1aaaa;
}

div.p-Swiper-Price_Navigation-Next {
  right: calc(-72px / 2);
  z-index: 6;
  display: none;
  width: 23px;
}

@media screen and (max-width: 820px) {
  div.p-Swiper-Price_Navigation-Next {
    display: block;
    right: -15px;
  }
}

div.p-Swiper-Price_Navigation-Next:after {
  display: block;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

div.p-Swiper-Price_Navigation-Next:focus {
  outline: 0;
}

div.p-Swiper-Price_Navigation-Prev {
  left: calc(-72px / 2);
  z-index: 6;
  display: none;
  width: 23px;
}

@media screen and (max-width: 820px) {
  div.p-Swiper-Price_Navigation-Prev {
    display: block;
    left: -15px;
  }
}

div.p-Swiper-Price_Navigation-Prev:after {
  display: block;
}

div.p-Swiper-Price_Navigation-Prev:focus {
  outline: 0;
}

.p-Atlete_Contents_Title {
  color: #fff;
  font-weight: 700;
  text-align: center;
  font-size: 40px;
  margin-bottom: 48px;
  line-height: 1em;
}

@media screen and (max-width: 600px) {
  .p-Swiper-Price_Pagination {
    bottom: 12px;
  }

  .p-Atlete_Contents_Title {
    font-size: 34px;
    line-height: 1.2em;
  }
}

.p-Atlete_Contents_Subtitle {
  color: #000;
  font-size: 20px;
  display: block;
  margin-top: 1em;
}

.p-Atlete_About_Card {
  border-radius: 8px;
  box-shadow: 0 4px 10px 0 grey;
  padding: 24px;
  background-color: #fff;
  width: 32%;
  min-width: 300px;
  min-height: 100%;
  display: grid;
  grid-template-rows: auto auto 1fr;
}

@media screen and (max-width: 1280px) {
  .p-Swiper-Price_Swiper:not(.swiper-initialized) > .swiper-wrapper {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .p-Atlete_About_Card {
    width: 45%;
    margin-bottom: 30px;
  }

  .p-Atlete_About_Card:last-child {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 820px) {
  .p-Atlete_About_Card {
    width: 100%;
    max-width: 580px;
    height: auto;
  }
}

@media screen and (max-width: 600px) {
  .p-Atlete_Contents_Subtitle {
    font-size: 18px;
    line-height: 1.5em;
  }

  .p-Atlete_About_Card {
    display: block;
  }
}

.p-Atlete_About_Card_Title {
  font-size: 22px;
  line-height: 1.5em;
  color: #fff;
  font-weight: 700;
  text-align: center;
  border-radius: 8px;
  padding: 18px 0;
  background-color: #b61c2b;
  margin-bottom: 18px;
}

.p-Atlete_About_Card_SubTitle {
  text-align: center;
  font-weight: 700;
}

.p-Atlete_About_Card_Note {
  height: 100%;
  text-align: justify;
  border-radius: 8px;
  padding: 30px;
  background-color: #efefef;
}

.p-Atlete_FixBtn_Icon,
.p-Atlete_Footer_Brand,
.p-Atlete_LinkArea {
  text-align: center;
}

.p-Atlete_FixBtn {
  position: fixed;
  bottom: 24px;
  right: 12px;
  z-index: 7;
  font-size: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (max-width: 600px) {
  .p-Atlete_FixBtn {
    width: 85%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50px;
    padding: 12px;
    right: inherit;
    left: 50%;
    bottom: 48px;
    -webkit-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
  }
}

.p-Atlete_FixBtn_Icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  font-weight: 700;
  text-decoration: none;
}

.p-Atlete_FixBtn_Icon:hover {
  text-decoration: none;
  opacity: 0.7;
}

.p-Atlete_FixBtn_Icon-Img {
  width: 32px;
  height: 32px;
  margin: auto auto 6px;
}

.p-Atlete_FixBtn-Link {
  color: #707070;
}

.p-Atlete_FixBtn_BacktoTop {
  margin-bottom: 18px;
}

@media screen and (max-width: 600px) {
  .p-Atlete_FixBtn_BacktoTop {
    margin-bottom: 0;
  }
}

.p-Atlete_FixBtn_Download {
  margin-bottom: 18px;
}

@media screen and (max-width: 600px) {
  .p-Atlete_FixBtn_Download {
    margin-bottom: 0;
  }
}

.p-Atlete_Footer {
  width: 100%;
  background-color: #212121;
  color: #fff;
  display: grid;
  gap: 36px 0;
  padding: 0 120px;
}

.p-Atlete_Footer_Brand-Img {
  width: 160px;
}

.p-Atlete_Footer_Desc {
  width: 70%;
  max-width: 960px;
  margin: auto;
  text-align: justify;
}

@media screen and (max-width: 820px) {
  .p-Atlete_Footer {
    padding: 0;
  }

  .p-Atlete_Footer_Desc {
    width: 90%;
  }
}

.p-Atlete_Footer_Nav {
  border-bottom: 1px solid #707070;
  padding-bottom: 42px;
}

.p-Atlete_Footer_Menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 60%;
  max-width: 490px;
  margin: auto;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .p-Atlete_Footer_Menu {
    max-width: 100%;
    width: 100%;
  }
}

.p-Atlete_Footer_Menu_Item {
  margin-right: 1em;
  margin-bottom: 1.5em;
}

.p-Atlete_Footer_Menu_Item-Link {
  color: #fff;
}

.p-Atlete_Footer_Corp {
  color: #fff;
  display: grid;
  grid-template-areas: "  Brand Info Nav" "  Sns Sns Sns";
  grid-template-columns: auto auto 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px 18px;
  padding: 0 120px;
}

@media screen and (max-width: 1024px) {
  .p-Atlete_Footer_Corp {
    grid-template-areas: "  Brand  Nav" "  Info  Nav" "  Sns Sns ";
    grid-template-columns: auto 1fr;
  }
}

.p-Atlete_Footer_Corp_Brand {
  grid-area: Brand;
  margin-right: 12px;
}

.p-Atlete_Footer_Corp_Brand-Img {
  width: 160px;
}

.p-Atlete_Footer_Corp_Info {
  grid-area: Info;
}

.p-Atlete_Footer_Corp_Nav {
  grid-area: Nav;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media screen and (max-width: 820px) {
  .p-Atlete_Footer_Corp {
    grid-template-areas: "  Brand " "Nav" "  Sns" " Info";
    grid-template-columns: 1fr;
    padding: 0;
  }

  .p-Atlete_Footer_Corp_Brand,
  .p-Atlete_Footer_Corp_Info {
    margin: auto;
  }

  .p-Atlete_Footer_Corp_Nav {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.p-Atlete_Footer_Corp_Menu {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 6px 18px;
}

@media screen and (max-width: 820px) {
  .p-Atlete_Footer_Corp_Menu {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    grid-template-columns: auto auto;
  }
}

@media screen and (max-width: 767px) {
}

.p-Atlete_Footer_Corp_Menu_Item {
  margin-right: 1em;
}

.p-Atlete_Footer_Corp_Menu_Item:last-child,
.p-Atlete_Footer_Corp_Menu_Item:nth-child(2n) {
  margin-right: 0;
}

.p-Atlete_Footer_Corp_Menu_Item-Link {
  color: #fff;
}

.p-Atlete_Footer_Corp_Sns {
  grid-area: Sns;
}

.p-Atlete_Footer_Corp_Sns_Menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.p-Atlete_Footer_Corp_Sns_Menu_Item {
  margin-right: 12px;
}

.p-Atlete_Footer_Corp_Sns_Menu_Item:last-child {
  margin-right: 0;
}

.p-Atlete_Footer_Corp_Sns_Menu_Item-Img {
  width: 24px;
  height: 24px;
}

.p-Atlete_Footer_Copyright {
  color: #fff;
  text-align: center;
}

.p-Atlete_Hero {
  padding-bottom: 240px;
  /* margin-bottom: 100px; */
}

.p-Atlete_Hero-Img {
  width: 100%;
  height: 100vh;
}

.p-Atlete_Hero_Wrap {
  position: relative;
  /* height: 100vh; */
  height: 680px;
  background-image: url(../../assets/img/atleta_hero.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .p-Atlete_Hero_Wrap {
    height: 820px;
  }
}

.p-Atlete_Hero_Catch {
  width: 70%;
  max-width: 900px;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
}

.p-Atlete_Case_Team_Hero_Title,
.p-Atlete_Hero_Swiper {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 9;
}

@media screen and (max-width: 820px) {
  .p-Atlete_Footer_Corp_Sns_Menu {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .p-Atlete_Hero {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }

  .p-Atlete_Hero_Catch {
    width: 85%;
    top: 25%;
  }
}

@media screen and (max-width: 767px) {
  .p-Atlete_Hero {
    margin-bottom: 0 !important;
    padding-bottom: 8px;
  }
}

@media screen and (max-width: 767px) {
  .p-Atlete_Hero_Catch {
    margin-top: -25px;
  }
}

@media screen and (max-width: 600px) {
  .p-Atlete_Footer_Corp_Info {
    text-align: center;
  }

  .p-Atlete_Hero_Catch {
    top: 15%;
  }
}

.p-Atlete_Hero_Catch-Img {
  width: 100%;
  height: auto;
}

.p-Atlete_Hero_Swiper {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.p-Atlete_Hero_Swiper_Copy {
  font-size: 30px;
  line-height: 1.5em;
  padding: 0 0.5em;
  font-weight: 700;
  color: #fff;
  text-align: center;
  display: inline-block;
  text-shadow: 2px 2px 2px #000;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(transparent),
    color-stop(50%, transparent),
    color-stop(50%, #b61c2b),
    to(#b61c2b)
  );
  background: -webkit-linear-gradient(
    top,
    transparent 0,
    transparent 50%,
    #b61c2b 50%,
    #b61c2b 100%
  );
  background: linear-gradient(
    180deg,
    transparent 0,
    transparent 50%,
    #b61c2b 50%,
    #b61c2b 100%
  );
}

@media screen and (max-width: 820px) {
  .p-Atlete_Hero_Swiper {
    top: 40%;
  }

  .p-Atlete_Hero_Swiper_Copy {
    font-size: 26px;
  }

  .p-Atlete_Hero_labels {
    position: absolute;
    left: 50%;
    top: 33%;
    transform: translateX(-50%);
    width: 90%;
    z-index: 1;
  }

  .p-Atlete_Hero_labels li {
    width: 23%;
    margin-right: 0;
    margin: 0 8px;
  }

  .p-Atlete_Hero_labels ul {
    display: flex;
    margin-left: 0;
    justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .p-Atlete_Hero_labels {
    top: 180px;
    display: flex;
    justify-content: center;
  }

  .p-Atlete_Hero_Swiper {
    top: 165px;
  }
}

@media screen and (max-width: 600px) {
  .p-Atlete_Hero_Swiper {
    /* top: 26%; */
  }

  .p-Atlete_Hero_labels ul {
    width: 80%;
  }

  .p-Atlete_Hero_Swiper_Copy {
    width: 85%;
    font-size: 20px;
    letter-spacing: -0.07rem;
    background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(transparent),
      color-stop(30%, transparent),
      color-stop(30%, #b61c2b),
      color-stop(50%, #b61c2b),
      color-stop(50%, transparent),
      color-stop(80%, transparent),
      color-stop(80%, #b61c2b),
      to(#b61c2b)
    );
    background: -webkit-linear-gradient(
      top,
      transparent 0,
      transparent 30%,
      #b61c2b 30%,
      #b61c2b 50%,
      transparent 50%,
      transparent 80%,
      #b61c2b 80%,
      #b61c2b 100%
    );
    background: linear-gradient(
      180deg,
      transparent 0,
      transparent 30%,
      #b61c2b 30%,
      #b61c2b 50%,
      transparent 50%,
      transparent 80%,
      #b61c2b 80%,
      #b61c2b 100%
    );
  }
}

@media screen and (max-width: 375px) {
  .p-Atlete_Hero_Swiper_Copy {
    font-size: 18px;
  }
}

.p-Atlete_Hero_Sticker {
  /* width: 80%; */
  position: absolute;
  padding: 48px 30px;
  padding-bottom: 10px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
  z-index: 9;
  background-color: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 10px 0 grey;
  box-shadow: 0 4px 10px 0 grey;
  /* max-width: 1024px; */
  width: 1080px;
  max-width: 1080px;
}

@media screen and (max-width: 820px) {
  .p-Atlete_Hero_Sticker {
    bottom: inherit;
    top: 60%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}

.p-Atlete_Hero_Sticker_Header {
  font-weight: 700;
  display: flex;
  /* display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: 240px;
  padding-left: 4em; */
}

@media screen and (max-width: 1180px) {
  .p-Atlete_Hero_Sticker_Header {
    padding-left: 0;
  }
}

.p-Atlete_Hero_Sticker_Info {
  text-align: center;
  flex: 0 0 50%;
  width: 50%;
}

@media screen and (max-width: 767px) {
  .p-Atlete_Hero_Sticker_Info {
    width: 100%;
  }
}

.p-Atlete_Hero_Sticker_Caption {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  flex-direction: column;
  font-size: 22px !important;
}

@media screen and (max-width: 767px) {
  .p-Atlete_Hero_Sticker_Caption {
    margin-bottom: 0;
    font-size: 17px !important;
  }
}

.p-Atlete_Hero_Sticker_Title {
  color: #b61c2b;
  display: block;
  margin-top: 1em;
  padding: 0 1em;
  border-right: 3px solid;
  border-left: 3px solid;
  width: fit-content;
}

@media screen and (max-width: 767px) {
  .p-Atlete_Hero_Sticker {
    width: 90%;
    top: 290px !important;
    bottom: auto !important;
    padding-top: 25px !important;
  }
}

@media screen and (max-width: 600px) {
  .p-Atlete_Hero_Sticker {
    width: 90%;
    top: 400px;
    height: fit-content;
  }

  .p-Atlete_Hero_Sticker_Header {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

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

  .p-Atlete_Hero_Sticker_Title {
    border-right: 6px solid;
    border-left: 6px solid;
  }

  .p-Atlete_Hero_Sticker_Image {
    display: block;
    content: url(../../assets/img/atleta_hero-img-sp-new.png);
    margin: 20px 0;
  }
}

.p-Atlete_Hero_Sticker_Logo-Img {
  width: 200px;
  margin-bottom: 18px;
}

.p-Atlete_Hero_Sticker_Image img {
  transform: translateY(-30px);
}

.p-Atlete_Hero_Sticker .caution {
  font-size: 10px;
  /* position: relative; */
  display: block;
  text-align: right;
  transform: translateY(-5px);
}

.p-Atlete_Hero_Sticker_Image-Img {
  /* position: absolute;
  top: -50%;
  width: 500px;
  right: 0; */
  margin-top: -50px;
}

@media screen and (max-width: 1040px) {
  .p-Atlete_Hero_Sticker_Image-Img {
    width: 380px;
  }
}

@media screen and (max-width: 820px) {
  .p-Atlete_Hero_Sticker_Image-Img {
    width: 320px;
  }
}

@media screen and (max-width: 768px) {
  .p-Atlete_Hero_Sticker_Image-Img {
    width: 260px;
  }
}

.p-Atlete_Hero_Sticker_Contents {
  /* margin-left: 37px; */
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  align-items: center;
  /* justify-content: space-between; */
}

.p-Atlete_Hero_Sticker_Contents span {
  position: relative;
  /* padding-right: 20px; */
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-Atlete_Hero_Sticker_Contents span i {
  position: absolute;
  font-size: 10px;
  display: block;
  line-height: 1.5;
  max-width: 170px;
  margin: 5px auto 0;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.p-Atlete_Hero_Sticker_Contents span:last-child {
  width: 80px;
  display: block;
  padding-left: 15px;
  /* min-width: 80px; */
}

.p-Atlete_Hero_Sticker_Contents span:last-child img {
  width: 100%;
}

.p-Atlete_Hero_Sticker_Contents span:last-child:before {
  display: none;
}

.p-Atlete_Hero_Sticker_Contents span:before {
  content: "";
  display: block;
  width: 1px;
  height: 40px;
  background: #000;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.p-Atlete_Hero_Sticker_Contents-Img {
  width: 80px;
}

@media screen and (max-width: 820px) {
  .p-Atlete_Hero_Sticker_Contents-Img {
    width: 100%;
    margin-right: 0;
  }

  .p-Atlete_Strengths_Card {
    max-width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .p-Atlete_Hero_Sticker_Contents {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    display: none;
  }

  .p-Atlete_Hero_Sticker_Contents span {
    width: 33.3%;
    padding: 0 10px;
  }

  .p-Atlete_Hero_Sticker_Contents span:before {
    height: 40px;
  }

  .p-Atlete_Hero_Sticker_Contents span:nth-child(3):before {
    /* display: none; */
  }

  .p-Atlete_Hero_Sticker_Contents span:last-child {
    width: 100%;
    text-align: center;
    padding-top: 0;
  }
  .p-Atlete_Hero_Sticker_Contents span i {
    width: 180px;
    max-width: 100%;
  }
}

@media screen and (max-width: 1080px) {
  .p-Atlete_Hero_Sticker_Contents-Img._Label4 {
    width: 165px;
    height: auto;
    margin-right: 0;
  }
}

@media screen and (max-width: 600px) {
  .p-Atlete_Hero_Sticker_Contents-Img._Label4 {
    width: auto;
    height: 130px;
    margin: auto;
  }
}

.p-Atlete_Strengths_Wrap {
  padding: 60px 50px !important;
  padding-bottom: 30px !important;
  /* margin-bottom: 30px; */
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#b61c2b),
    color-stop(80%, #b61c2b),
    color-stop(80%, transparent),
    to(transparent)
  );
  background: -webkit-linear-gradient(
    top,
    #b61c2b 0,
    #b61c2b 80%,
    transparent 80%,
    transparent 100%
  );
  background: linear-gradient(
    180deg,
    #b61c2b 0,
    #b61c2b 80%,
    transparent 80%,
    transparent 100%
  );
}

.p-Atlete_Strengths_Cts {
  padding-bottom: 0;
}

.p-Atlete_Strengths_Bg {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#b61c2b),
    color-stop(29%, #b61c2b),
    color-stop(29%, transparent),
    color-stop(34%, transparent),
    color-stop(34%, #b61c2b),
    color-stop(58%, #b61c2b),
    color-stop(58%, transparent),
    color-stop(65%, transparent),
    color-stop(65%, #b61c2b),
    color-stop(93%, #b61c2b),
    color-stop(93%, transparent),
    to(transparent)
  );
  background: -webkit-linear-gradient(
    top,
    #b61c2b 0,
    #b61c2b 29%,
    transparent 29%,
    transparent 34%,
    #b61c2b 34%,
    #b61c2b 58%,
    transparent 58%,
    transparent 65%,
    #b61c2b 65%,
    #b61c2b 93%,
    transparent 93%,
    transparent 100%
  );
  background: linear-gradient(
    180deg,
    #b61c2b 0,
    #b61c2b 29%,
    transparent 29%,
    transparent 34%,
    #b61c2b 34%,
    #b61c2b 58%,
    transparent 58%,
    transparent 65%,
    #b61c2b 65%,
    #b61c2b 93%,
    transparent 93%,
    transparent 100%
  );
}

@media screen and (max-width: 600px) {
  .p-Atlete_Strengths_Wrap {
    margin-bottom: 0;
    padding: 20px !important;
  }

  .p-Atlete_Strengths_Bg {
    background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(transparent),
      color-stop(27%, transparent),
      color-stop(27%, #b61c2b),
      color-stop(32%, #b61c2b),
      color-stop(32%, transparent),
      color-stop(58%, transparent),
      color-stop(58%, #b61c2b),
      color-stop(63%, #b61c2b),
      color-stop(63%, transparent),
      color-stop(88%, transparent),
      color-stop(88%, #b61c2b),
      color-stop(93%, #b61c2b),
      color-stop(93%, transparent),
      to(transparent)
    );
    background: -webkit-linear-gradient(
      top,
      transparent 0,
      transparent 27%,
      #b61c2b 27%,
      #b61c2b 32%,
      transparent 32%,
      transparent 58%,
      #b61c2b 58%,
      #b61c2b 63%,
      transparent 63%,
      transparent 88%,
      #b61c2b 88%,
      #b61c2b 93%,
      transparent 93%,
      transparent 100%
    );
    background: linear-gradient(
      180deg,
      transparent 0,
      transparent 27%,
      #b61c2b 27%,
      #b61c2b 32%,
      transparent 32%,
      transparent 58%,
      #b61c2b 58%,
      #b61c2b 63%,
      transparent 63%,
      transparent 88%,
      #b61c2b 88%,
      #b61c2b 93%,
      transparent 93%,
      transparent 100%
    );
  }

  .p-Atlete_Strengths_Card {
    max-width: 100%;
  }
}

.p-Atlete_Strengths_CtsHeading {
  font-size: 22px;
  line-height: 1.5em;
  text-align: center;
  font-weight: 700;
  color: #fff;
  max-width: 550px;
  gap: 15px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-Atlete_Strengths .p-atleta_Contents_Title {
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 30px;
  line-height: 1em;
  letter-spacing: 0.075em;
}

.p-atleta-top-desc {
  text-align: center;
  margin-top: 30px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 2px;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .p-Atlete_Strengths .p-atleta_Contents_Title {
    line-height: 1.4em;
  }
}

.p-atleta_Strengths_Title-strong {
  font-size: 1.2em;
  border-bottom: 4px solid #ffde04;
}

.p-Atlete_Strengths_CtsHeading_Label {
  display: block;
  background-color: #fff;
  width: 170px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #b61c2b;
  text-align: center;
  border-radius: 30px;
  padding: 0.45em 0.25em;
  border: 2px solid;
}

.p-Atlete_Strengths_Card,
.p-Atlete_Strengths_Card_Footer {
  display: -webkit-flex;
  display: -ms-flexbox;
  -webkit-box-orient: vertical;
}

.p-Atlete_Strengths_Feed {
  margin: 0 90px 48px;
}

.p-Atlete_Strengths_Card {
  height: auto;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px 0 grey;
  /* padding: 36px 24px; */
  display: -webkit-box;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  flex: 1;
  z-index: 1;

  /* 高さ800pxで納める調整 */
  height: 830px;
  max-height: 930px;
  padding: 20px;

  width: 30%;
}

@media screen and (max-width: 767px) {
  .p-Atlete_Strengths_Card {
    flex: 0 0 100% !important;
  }
}

@media screen and (max-width: 1261px) {
  .p-Atlete_Strengths_Card {
    height: auto;
    max-height: 1200px;
  }
}

.l-AtletePage_Contents.p-Atlete_Strengths_Wrap:nth-child(2) {
  .p-Atlete_About_Card,
  .p-Atlete_Strengths_Card {
    max-width: 330px !important;
    flex: 0 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .l-AtletePage_Contents.p-Atlete_Strengths_Wrap:nth-child(2)
    .p-Atlete_About_Card,
  .l-AtletePage_Contents.p-Atlete_Strengths_Wrap:nth-child(2)
    .p-Atlete_Strengths_Card {
    max-width: 100% !important;
    width: 100% !important;
    flex: 0 0 100% !important;
  }
}

@media screen and (max-width: 1280px) {
  .p-Atlete_Strengths_Card {
    width: 48%;
    margin-bottom: 30px;
  }

  .p-Atlete_Strengths_Card:last-child {
    margin-bottom: 0;
  }
}

#Swiper-Strengths2 {
  justify-content: center;
  gap: 20px;
}

.p-Atlete_Strengths_Card_Header {
  margin-bottom: 12px;
  text-align: center;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  display: flex;
}

.p-Atlete_Strengths_Card_Title {
  font-size: 22px;
  line-height: 1.5em;
  font-weight: 700;
  display: inline-block;
  /* padding: 0 0.5em; */
  /* border-bottom: 4px solid #b61c2b; */
  color: #fff;
  background-color: #b61c2b;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 50px;
  position: relative;
  border-radius: 10px;
  -webkit-box-flex: 2;
  -webkit-flex-grow: 2;
  -ms-flex-positive: 2;
  flex-grow: 2;
}

@media screen and (max-width: 767px) {
  .p-Atlete_Strengths_Card_Title {
    font-size: 20px;
  }
}
@media screen and (max-width: 361px) {
  .p-Atlete_Strengths_Card_Title {
    font-size: 17px;
  }
}

.p-Atlete_Strengths_Card_Title::after {
  content: "";
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 30px solid #b61c2b;
  display: none;
}

@media screen and (max-width: 767px) {
  .p-Atlete_Strengths_Card_Title::after {
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 30px solid #b61c2b;
  }
}

.p-Atlete_Strengths_Card_Main {
  /* margin-bottom: 24px; */
  /* margin-top: 70px; */
  /* 高さ800pxで納める調整 */
  height: 250px;
  max-height: 250px;
  /* margin-top: 10px; */

  margin-top: -20px;
  margin-bottom: -10px;
}

@media screen and (max-width: 767px) {
  .p-Atlete_Strengths_Card_Main {
    margin: 0;
    margin-top: 0;
  }

  .p-Atlete_Strengths_Card_Main {
    height: 180px;
    max-height: 180px;
    margin-bottom: 15px;
  }
}

.p-Atlete_Strengths_Card_Main img {
  height: 100%;
  object-fit: contain;
}

.p-Atlete_Strengths_Card_Footer {
  -webkit-box-flex: 3;
  -webkit-flex-grow: 3;
  -ms-flex-positive: 3;
  flex-grow: 3;
  display: -webkit-box;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: -20px;
}

@media screen and (max-width: 767px) {
  .p-Atlete_Strengths_Card_Footer {
  }
}

.p-Atlete_Strengths_Card_Footer_Block {
  display: grid;
  border-bottom: 1px solid #b61c2b;
  /* margin-bottom: 12px; */
  padding-bottom: 12px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 100%;
  grid-template-rows: 2fr 3.5fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;

  /* 高さ800pxで納める調整 */
  margin-bottom: 0;
  margin-top: 5px;
}

.p-Atlete_Strengths_Card_Footer_Block:last-child {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.p-Atlete_Strengths_Card_Footer_Heading {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 5px;
}

.p-Atlete_Strengths_Card_Footer_Heading_Icon {
  margin-right: 24px;
}

.p-Atlete_Strengths_Card_Footer_Heading_Icon-Img {
  width: 54px;
}

.p-Atlete_Strengths_Card_Footer_Heading-Title {
  font-size: 18px;
  font-weight: 700;
  color: #b61c2b;
}

@media screen and (max-width: 767px) {
  .p-Atlete_Strengths_Card_Footer_Heading-Title {
    font-size: 17px;
  }
}

.p-Atlete_Strengths_Card-Desc {
  text-align: justify;
  padding: 0.75em 1.5em;
  border-radius: 8px;
  border: 1px solid grey;
  -webkit-box-shadow: 2px 2px 0 1px grey;
  box-shadow: 2px 2px 0 1px #808080;
  position: relative;
  background-color: #fff;
  /* background-image: url(../../assets/img/Atleta_fukidashi.png); */
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  /* padding: 20px; */

  /* 高さ800pxで納める調整 */
  padding: 10px 20px;
  margin-top: -10px;
}

@media screen and (max-width: 767px) {
  .p-Atlete_Strengths_Card-Desc {
    margin-top: 0;
  }
}

.p-Atlete_Strengths_Card-Desc:after {
  content: "";
  position: absolute;
  /* background-image: url(img/man.svg);
  background-repeat: no-repeat;*/
  height: 15px;
  width: 22px;
  left: 15%;
  top: 1px;
  /* border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid #fff; */
  /* box-shadow: 0 0 0 1px grey; */
  transform: translateY(-100%) skew(-30deg);
  /* background-image: url(../../assets/img/Atleta-fukidashi-arr.png); */
  background-image: url(../../assets/img/Atleta-fukidashi-arr.svg);
  /* background-image: url(../../assets/img/Atleta_fukidashi.png); */
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  fill: #fff !important ;
}

.p-Atlete_Strengths_Card-Desc > p {
  min-height: 5em;
  /* padding-top: 10px; */
  padding-top: 0;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1240px) {
  .p-Atlete_Strengths_Card-Desc > p {
    min-height: 7em;
  }
}

.p-Atlete_Function span.p-Atlete_Contents_Subtitle {
  color: #000;
}

.p-Atlete_Installation h2.p-Atlete_Contents_Title {
  color: #b61c2b;
}
.p-Atlete_Installation span.p-Atlete_Contents_Subtitle {
  color: #000;
}
.p-Atlete_Support h2.p-Atlete_Contents_Title {
  color: #b61c2b;
}
.p-Atlete_Support span.p-Atlete_Contents_Subtitle {
  color: #000;
}

.p-Atlete_Function_Item {
  display: grid;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr;
  gap: 12px 0;
}

@media screen and (max-width: 767px) {
  .p-Atlete_Function_Feed .p-Atlete_Function_Item:first-child,
  .p-Atlete_Function_Feed .p-Atlete_Function_Item:nth-child(2),
  .p-Atlete_Function_Feed .p-Atlete_Function_Item:nth-child(3),
  .p-Atlete_Function_Feed .p-Atlete_Function_Item:nth-child(4) {
    padding: 0 8px;
  }
}

@media screen and (max-width: 401px) {
  .p-Atlete_Function_Feed .p-Atlete_Function_Item:first-child,
  .p-Atlete_Function_Feed .p-Atlete_Function_Item:nth-child(2),
  .p-Atlete_Function_Feed .p-Atlete_Function_Item:nth-child(3),
  .p-Atlete_Function_Feed .p-Atlete_Function_Item:nth-child(4) {
    padding: 0 6px;
  }
}

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

.p-Atlete_Function_Item_Icon:hover {
  cursor: pointer;
  opacity: 0.8;
}

.p-Atlete_Function_Item_Icon-Img {
  width: auto;
  height: 52px;
}

@media screen and (max-width: 767px) {
  .p-Atlete_Function_Item_Icon-Img {
    width: 30px;
    height: 40px;
    object-fit: contain !important;
  }
}

.p-Atlete_Function_Item_Caption {
  text-align: center;
  font-size: 12px;
}

@media screen and (max-width: 767px) {
  .p-Atlete_Function_Item_Caption {
    text-align: center;
    font-size: 10px;
  }
}

.p-Atlete_Function_OpenBtn {
  display: none;
  text-align: center;
  background-color: #b61c2b;
  border-radius: 4px;
  color: #fff;
  font-weight: 700;
  padding: 0.75em;
}

.p-Atlete_Function_Modaal {
  padding: 90px;
}

@media screen and (max-width: 600px) {
  .p-Atlete_Function_Feed {
    margin-bottom: 42px;
  }

  .p-Atlete_Function_OpenBtn {
    display: block;
  }

  .p-Atlete_Function_Modaal {
    padding: 36px;
  }

  .p-Atlete_Function_Modaal_Header {
    margin-top: 48px;
  }
}

.p-Atlete_Function_Modaal_Close {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 13px;
  cursor: pointer;
}

.p-Atlete_Function_Modaal_Close-Icon {
  margin-bottom: 12px;
}

.p-Atlete_Function_Modaal_Close-Img {
  height: 30px;
  width: auto;
}

.p-Atlete_Function_Modaal_Title {
  color: #b61c2b;
  font-size: 26px;
  line-height: 1.5em;
  font-weight: 700;
  margin-bottom: 2em;
}

@media screen and (max-width: 600px) {
  .p-Atlete_Function_Modaal_Title {
    font-size: 24px;
  }
}

.p-Atlete_Function_Modaal_Icon {
  margin-bottom: 30px;
  display: block;
}

.p-Atlete_Function_Modaal_Icon-Img {
  width: auto;
  height: 90px;
}

.p-Atlete_Function_Modaal_Desc {
  font-size: 16px;
  line-height: 2em;
  text-align: left;
}

.p-Atlete_Installation_Wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.p-Atlete_Installation_Block {
  text-align: center;
  background-color: #efefef;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 10px 0 grey;
  box-shadow: 0 4px 10px 0 grey;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (max-width: 600px) {
  .p-Atlete_Installation_Wrap {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .p-Atlete_Installation_Block {
    padding: 30px 12px;
  }
}

.p-Atlete_Installation_Block_Title {
  font-size: 25px;
  line-height: 1.5em;
  font-weight: 700;
  color: #b61c2b;
  /* margin-bottom: 42px; */
  margin-bottom: 20px;
}

.p-Atlete_Installation_Figure {
  margin: auto;
  width: 100%;
}

.p-Atlete_Installation_Wrap
  .p-Atlete_Installation_Block:first-child
  .p-Atlete_Installation_Figure
  img {
  width: 80%;
}
.p-Atlete_Installation_Wrap
  .p-Atlete_Installation_Block:last-child
  .p-Atlete_Installation_Figure
  img {
  width: 80%;
}

.p-Atlete_Installation_Figure-Img {
  width: 30%;
}

.p-Atlete_Security h2.p-Atlete_Contents_Title {
  color: #b61c2b;
}
.p-Atlete_Security span.p-Atlete_Contents_Subtitle {
  color: #000;
}

.p-Atlete_Security_Block {
  background-color: #fff;
  padding: 60px;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 10px 0 grey;
  box-shadow: 0 4px 10px 0 grey;
  max-width: 800px;
  margin: 0 auto;
}

.p-Atlete_Security_List {
  margin: auto;
  width: 90%;
}

.p-Atlete_Security_Item {
  display: grid;
  grid-template-areas: " Icon Title  " " Icon  Desc    ";
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 6px 60px;
}

.p-Atlete_Security_Item:not(:last-child) {
  margin-bottom: 20px;
}

.p-Atlete_Security_Item_Title {
  grid-area: Title;
  color: #b61c2b;
  font-weight: 700;
  font-size: 16px !important;
  margin-bottom: 0;
}

.p-Atlete_Security_Item_Desc {
  grid-area: Desc;
}

.p-Atlete_Security_Item_Icon {
  grid-area: Icon;
}

.p-Atlete_Security_Item_Icon-Img {
  width: 90px;
  height: auto;
}

@media screen and (max-width: 600px) {
  .p-Atlete_Security_Block {
    /* padding: 40px 18px; */
    padding: 20px;
  }

  .p-Atlete_Security_Item {
    gap: 6px 12px;
  }

  .p-Atlete_Security_Item_Icon-Img {
    width: 45px;
  }
}

.p-Atlete_Voice_Title {
  margin-bottom: 120px;
  color: #b61c2b;
}

.p-Atlete_Voice_Card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  padding-bottom: 15px;
  margin-bottom: 15px;
  margin-top: -5px;
  justify-content: center;
}

@media screen and (max-width: 600px) {
  .p-Atlete_Voice_Card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #b61c2b;
    margin-bottom: 18px;
    padding: 18px 6px;
    border-radius: 8px;
    /* padding-top: 50px; */
    padding-top: 25px;
  }
}

.p-Atlete_Voice_Card._Secondary {
  -webkit-box-orient: initial;
  -webkit-box-direction: initial;
  -webkit-flex-direction: initial;
  -ms-flex-direction: initial;
  flex-direction: initial;
}

.p-Atlete_Voice_Card_Wrap {
  padding: 15px;
  padding-top: 0;
}

.p-Atlete_Voice_Card_Header {
  width: 25%;
  z-index: -1;
  transform: translateY(35px);
}

.p-Atlete_Voice_Card._Secondary .p-Atlete_Voice_Card_Header {
  /* margin-left: -10%; */
  transform: translate(50px, 35px) !important;
}

@media screen and (max-width: 767px) {
  .p-Atlete_Voice_Card._Secondary .p-Atlete_Voice_Card_Header {
    /* margin-left: -10%; */
    transform: translate(0, 36px) !important;
  }
}

@media screen and (max-width: 600px) {
  .p-Atlete_Voice_Card._Secondary {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .p-Atlete_Voice_Card_Wrap {
    padding: 0;
    height: 100%;
    display: block;
    /* display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 18px; */
    padding: 5px;
  }

  .p-Atlete_Voice_Card_Header {
    width: 100%;
    margin-bottom: 18px;
    z-index: 0;
    position: relative;
  }

  @media screen and (max-width: 767px) {
    .p-Atlete_Voice_Card_Header {
      margin-bottom: 35px;
    }
  }
  .p-Atlete_Voice_Card_Header img {
    position: absolute;
    width: 80px;
    height: 80px;
    top: -30px;
    right: 5px;
  }
}

.p-Atlete_Voice_Card_Main {
  width: 68%;
  background-color: #efefef;
  padding: 30px 60px;
  border-radius: 8px;
  -webkit-box-shadow: 20px 24px 0 0 #b61c2b;
  box-shadow: 15px 15px 0 0 #b61c2b;
  /* margin-right: -8%; */
  margin-right: -2%;
}

@media screen and (max-width: 600px) {
  .p-Atlete_Voice_Card_Main {
    width: 100%;
    margin: auto;
    padding: 30px 18px;
    -webkit-box-shadow: none;
    box-shadow: none;
    /* padding-top: 60px; */
  }
}

.p-Atlete_Voice_Card_Main._Secondary {
  /* margin-left: -10%; */
  margin-left: 0;
  margin-right: auto;
}

@media screen and (max-width: 600px) {
  .p-Atlete_Voice_Card_Main._Secondary {
    margin: auto;
    padding-top: 40px;
  }
}

.p-Atlete_Voice_Card_Title {
  font-size: 32px;
  line-height: 1.5em;
  font-weight: 700;
  color: #b61c2b;
  margin-bottom: 12px;
  line-height: 1;
}

@media screen and (max-width: 600px) {
  .p-Atlete_Voice_Card_Title {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

.p-Atlete_Voice_Card_SubTitle {
  font-size: 25px;
  display: block;
  color: #333;
  line-height: 1;
  margin-bottom: 10px;
}

@media screen and (max-width: 600px) {
  .p-Atlete_Voice_Card_SubTitle {
    font-size: 18px;
    max-width: 70%;
  }

  .p-Atlete_Voice_Card-Img {
    border-radius: 100%;
    width: 200px;
    height: 200px;
    margin: auto;
    display: block;
  }
}

.p-Atlete_Voice_Card_Desc {
  font-size: 15px;
  line-height: 1.5em;
}

.p-Atlete_Case_Feed {
  margin-bottom: 60px;
  overflow-x: scroll;
}

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

@media screen and (max-width: 767px) {
  .p-Atlete_Case_Feed-PC {
    display: none;
  }
  .p-Atlete_Case_LinkArea {
    margin-top: 20px;
  }
}

.p-Atlete_Case_ArticleCard {
  flex: 0 0 80vw !important;
  margin: 0;
  width: 100%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 5px 10px 10px rgba(0, 0, 0, 20%);
}

@media screen and (max-width: 767px) {
  .p-Atlete_Case_ArticleCard {
    /* width: 70% !important; */
    width: auto;
    flex: 0 0 auto !important;
    height: 100% !important;
  }
}

.p-Atlete_Case_ArticleCard_Header {
  grid-area: ac-header;
  position: relative;
  overflow: hidden;
}

.p-Atlete_Case_ArticleCard_Thumbnail {
  height: 0;
  padding-bottom: 61.8046971569839%;
  position: relative;
}

.p-Atlete_Case_ArticleCard_Thumbnail-Img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-position: top;
  object-position: top;
}

.p-Atlete_Case_ArticleCard_Thumbnail-Link {
  display: block;
}

.p-Atlete_Case_ArticleCard_Main {
  grid-area: ac-overview;
  position: relative;
  bottom: 0;
}

.p-Atlete_Case_ArticleCard_Acf_Team {
  margin-bottom: 6px;
  line-height: 1.2; /* Khoảng cách giữa các dòng */
  height: 20px;
  max-height: 20px; /* Chiều cao tối đa cho tiêu đề */
  overflow: hidden; /* Ẩn phần vượt quá kích thước */
  text-overflow: ellipsis; /* Thêm dấu chấm cuối nếu tiêu đề quá dài */
  white-space: nowrap; /* Ngăn tiêu đề bị tràn dòng */
}

.p-Atlete_Case_ArticleCard_Title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 18px;
}

@media screen and (max-width: 767px) {
  .p-Atlete_Case_ArticleCard_Title {
    font-size: 14px !important;
    line-height: 1.2; /* Khoảng cách giữa các dòng */
    height: 40px;
    max-height: 40px; /* Chiều cao tối đa cho tiêu đề */
    overflow: hidden; /* Ẩn phần vượt quá kích thước */
    text-overflow: ellipsis; /* Thêm dấu chấm cuối nếu tiêu đề quá dài */
    white-space: nowrap; /* Ngăn tiêu đề bị tràn dòng */
  }
}

.p-Atlete_Case_ArticleCard_Overlay {
  background-color: #212121;
  padding: 12px 30px;
  color: #fff;
}

.p-Atlete_Case_ArticleCard_Tag {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-Atlete_Case_ArticleCard_Term {
  background-color: #b61c2b;
  border-radius: 12px;
  padding: 0.2em 0.5em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-right: 6px;
}

.p-Atlete_Case_ArticleCard_Term > a {
  color: #fff;
}

.p-Atlete_Case_Team {
  background-color: #efefef;
}

.p-Atlete_Case_Team_Hero {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 48px;
  gap: 18px;
  max-width: 800px;
  width: 800px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.p-Atlete_Case h2.p-Atlete_Contents_Title {
  color: #b61c2b;
}

.p-Atlete_Function h2.p-Atlete_Contents_Title {
  color: #b61c2b;
}

.p-Atlete_Case .p-Atlete_Contents_Subtitle {
  color: #000;
}

@media screen and (max-width: 820px) {
  .p-Atlete_Strengths_Card-Desc > p {
    min-height: auto;
  }

  .p-Atlete_Case_Team_Hero {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .p-Atlete_Case_Team_Hero {
    margin: 0 auto 30px;
    width: 100%;
  }

  .p-Atlete_Case_Team_Hero .p-Atlete_Case_Team_Hero_Block {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 120px;
  }
  .p-Atlete_Case_Team_Hero .p-Atlete_Case_Team_Hero_Block:first-child {
    background-image: url(../../assets/img/atleta_case-team-sp01.jpg);
  }
  .p-Atlete_Case_Team_Hero .p-Atlete_Case_Team_Hero_Block:nth-child(2) {
    background-image: url(../../assets/img/atleta_case-team-sp02.jpg);
  }
  .p-Atlete_Case_Team_Hero .p-Atlete_Case_Team_Hero_Block:last-child {
    background-image: url(../../assets/img/atleta_case-team-sp03.jpg);
  }
}

.p-Atlete_Case_Team_Hero_Block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 2px 8px 10px rgba(0, 0, 0, 20%);
}

.p-Atlete_Case_Team_Hero_Contents,
.p-Atlete_Movie_Card_Thumb {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
}

.p-Atlete_Case_Team_Hero_Thumb {
  height: 0;
  padding-bottom: 61.8046971569839%;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-Atlete_Case_Team_Hero_Thumb {
    display: none;
  }
}

.p-Atlete_Case_Team_Hero_Thumb-Img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-Atlete_Case_Team_Hero_Title {
  width: 100%;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}

.p-Atlete_Case_Team_Hero_Contents {
  /* padding: 2em 0.75em; */
  padding: 10px;
  background-color: #212121;
  color: #fff;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 9;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .p-Atlete_Case_Team_Hero_Contents {
    background-color: rgba(33, 33, 33, 0.7);
  }
}

.p-Atlete_Case_Team_Hero_Desc {
  width: 100%;
  text-align: center;
  font-size: 12px;
}

@media screen and (max-width: 767px) {
  .p-Atlete_Case_Team_Hero_Desc {
    font-size: 14px;
  }
}

.p-Atlete_Case_Team_Feature {
  margin: 0 90px 48px;
}

.p-Atlete_Case_Team_Feature_Primary {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  margin: auto;
  gap: 12px;
}

@media screen and (max-width: 600px) {
  .p-Atlete_Case_Team_Feature {
    margin: auto;
  }

  .p-Atlete_Case_Team_Feature_Primary {
    grid-template-columns: repeat(4, 1fr);
  }
}

.p-Atlete_Case_Team_Feature_Primary_Block {
  border: 1px solid;
  height: 0;
  padding-bottom: 100%;
  position: relative;
}

.p-Atlete_Case_Team_Feature_Primary-Img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-Atlete_Case_Team_School {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin: 0 90px;
  gap: 0 12px;
}

.p-Atlete_Case_Team_School_Block {
  display: grid;
  grid-template-columns: 42px auto;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-Atlete_Faq-Accordion {
  margin: auto;
  max-width: 800px;
}

.p-Atlete_Faq .p-Atlete_Contents_Subtitle {
  color: #fff;
}

.p-Atlete_Faq-Accordion .toggle {
  display: none;
}

.p-Atlete_Faq-Accordion_Btn {
  width: 1.25em;
  height: 1.25em;
  border-radius: 20px;
  background-color: #b61c2b;
  display: block;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.p-Atlete_Faq-Accordion_Block {
  position: relative;
  margin-bottom: 24px;
  border-radius: 8px;
  padding: 24px;
  background-color: #fff;
}

.p-Atlete_Faq-Accordion_Block:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 600px) {
  .p-Atlete_Faq-Accordion {
    max-width: 100%;
  }

  .p-Atlete_Faq-Accordion_Block {
    padding: 12px;
    margin-bottom: 12px;
  }
}

.p-Atlete_Faq-Accordion_Label {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  padding-right: 1.6em;
  text-indent: -1.6em;
  padding-left: 1.6em;
  display: block;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.05em;
  text-align: justify;
}

@media screen and (max-width: 600px) {
  .p-Atlete_Faq-Accordion_Label {
    padding-right: 2em;
    text-indent: -2em;
    padding-left: 2em;
    font-size: 16px;
  }
}

.p-Atlete_Faq-Accordion_Label::after,
.p-Atlete_Faq-Accordion_Label::before {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  width: 2px;
  height: 0.75em;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 1;
}

.p-Atlete_Faq-Accordion_Label::after {
  -webkit-transform: translate(50%, -50%) rotate(90deg);
  -ms-transform: translate(50%, -50%) rotate(90deg);
  transform: translate(50%, -50%) rotate(90deg);
}

.p-Atlete_Faq-Accordion_Label_Heading {
  font-weight: 700;
}

.p-Atlete_Faq-Accordion_Content {
  max-height: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  overflow: hidden;
}

.p-Atlete_Faq-Accordion_Content_Heading {
  font-weight: 700;
  color: #b61c2b;
}

.p-Atlete_Faq-Accordion_Content-p {
  padding-top: 1em;
  margin-top: 1em;
  border-top: 1px solid #b61c2b;
  text-indent: -1.6em;
  padding-left: 1.6em;
  text-align: justify;
  font-size: 18px;
  line-height: 1.5em;
  letter-spacing: 0.1em;
}

.p-Atlete_Faq-Accordion_Content-p > a {
  color: #00f;
  text-decoration: underline;
}

.p-Atlete_Faq-Accordion
  .toggle:checked
  + .p-Atlete_Faq-Accordion_Label
  + .p-Atlete_Faq-Accordion_Content {
  max-height: 500px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.p-Atlete_Faq-Accordion
  .toggle:checked
  + .p-Atlete_Faq-Accordion_Label::before {
  -webkit-transform: translate(50%, -50%) rotate(90deg) !important;
  -ms-transform: translate(50%, -50%) rotate(90deg) !important;
  transform: translate(50%, -50%) rotate(90deg) !important;
}

.p-Atlete_Faq-Accordion
  .toggle:checked
  + .c-Accordion_Label
  > .p-Atlete_Faq-Accordion_Btn {
  background-color: silver;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.p-Atlete_News_Feed {
  display: grid;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 30px 24px;
  width: 80%;
  margin: auto auto 60px;
}

.p-Atlete_News_Block {
  display: grid;
  grid-template-areas: "  date cat title";
  grid-template-columns: auto 13em auto;
  gap: 0 24px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

@media screen and (max-width: 600px) {
  .p-Atlete_Faq-Accordion_Content-p {
    font-size: 16px;
  }

  .p-Atlete_News_Feed {
    width: 100%;
  }

  .p-Atlete_News_Block {
    grid-template-areas: "  date cat" "  title title";
    grid-template-columns: 1fr 2fr;
    gap: 24px 0;
    border-bottom: 1px solid;
    padding-bottom: 24px;
  }
}

.p-Atlete_News_Date {
  grid-area: date;
}

.p-Atlete_News_Cat {
  grid-area: cat;
  text-align: center;
}

.p-Atlete_News_Cat > a {
  display: block;
  color: #b61c2b;
  border: 1px solid;
}

.p-Atlete_News_Title {
  grid-area: title;
  font-weight: 700;
}

.p-Atlete_Movie_Feed {
  margin-bottom: 30px;
}

.p-Atlete_Movie_Card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 60px;
}

.p-Atlete_Movie_Card:last-child,
.u-Margin_B-0g {
  margin-bottom: 0;
}

.p-Atlete_Movie_Card_Title {
  font-weight: 700;
  margin-bottom: 2em;
}

.p-Atlete_Movie_Card_Thumb {
  background-color: #212121;
  padding: 30px 48px;
  height: 100%;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 600px) {
  .p-Atlete_Movie_Card {
    grid-template-columns: 1fr;
  }

  .p-Atlete_Movie_Card_Thumb {
    padding: 30px 18px;
  }

  .p-Atlete_Movie_Card_Info {
    gpadding: 30px 18px;
  }
}

.p-Atlete_Movie_Card_Info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  background-color: #b61c2b;
  height: 100%;
  padding: 30px 48px;
}

.p-Atlete_Movie_Card_Btn {
  display: block;
  background-color: #fff;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  width: 200px;
  margin-top: 1.5em;
}

@media screen and (max-width: 600px) {
  .p-Atlete_Movie_Card_Btn {
    margin: 1.5em auto auto;
  }
}

.p-Atlete_Movie_Note {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  /* -webkit-box-pack: end; */
  /* -webkit-justify-content: flex-end; */
  /* -ms-flex-pack: end; */
  /* justify-content: flex-end; */
}

.p-Atlete_Movie_Note_Title {
  margin-bottom: 0.5em;
}

.p-Atlete_Movie_Note_List > li {
  padding-left: 1em;
  text-indent: -1em;
}

.p-Atlete_Support_Feed {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

@media screen and (max-width: 767px) {
  .p-Atlete_Support_Feed {
    gap: 24px;
  }
}

.p-Atlete_Support_Card {
  background-color: #fff;
  border-radius: 8px;
  padding: 18px;
}

.p-Atlete_Support_Card_Thumb {
  margin-bottom: 24px;
  grid-area: Thumb;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-Atlete_Support_Card_Thumb {
    grid-row: 1 / span 2;
    margin-bottom: 0 !important;
  }
}

.p-Atlete_Support_Card_Thumb img {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .p-Atlete_Support_Card_Thumb img {
    width: 80%;
  }
}
.p-Atlete_Support_Card_Title {
  grid-area: Title;
  text-align: center;
  color: #b61c2b;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5em;
  margin-bottom: 24px;
  height: 2.5em;
}

@media screen and (max-width: 767px) {
  .p-Atlete_Support_Card_Title {
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 600px) {
  .p-Atlete_Support_Feed {
    grid-template-columns: 1fr;
  }

  .p-Atlete_Support_Card {
    display: grid;
    grid-template-areas: "  Thumb Title" "  Desc Desc";
    grid-template-columns: 1fr 2fr;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-Atlete_Support_Card_Title {
    height: auto;
    text-align: left;
    font-size: 15px;
  }
}

.p-Atlete_Support_Card_Desc {
  grid-area: Desc;
  font-size: 12px;
}

@media screen and (max-width: 767px) {
  .p-Atlete_Support_Card_Desc {
    grid-area: auto;
    font-size: 12px;
  }
}

.p-Atlete_Price_Feed {
  gap: 60px;
  margin-top: 90px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 1280px) {
  .p-Atlete_Price_Feed {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
}

article.p-Atlete_Price_Card {
  position: relative;
  background-color: #efefef;
  border-radius: 8px;
}

@media screen and (max-width: 1024px) {
  article.p-Atlete_Price_Card {
    width: 48%;
    margin-bottom: 30px;
  }

  .p-Atlete_Price_Card:last-child {
    margin-bottom: 0;
  }
}

.p-Atlete_Price_Card_Footer_Cts,
.p-Atlete_Price_Card_Footer_Title {
  margin-bottom: 0;
  font-weight: 700;
}

.p-Atlete_Price_Card_Label {
  width: 100%;
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  color: #b61c2b;
  position: absolute;
  top: -40px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.p-Atlete_Price_Card_Desc {
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
}

.u-Heading_Contents,
.u-Relative,
.u-Table {
  position: relative;
}

.p-Atlete_Price h2.p-Atlete_Contents_Title {
  color: #b61c2b;
}

.p-Atlete_Price span.p-Atlete_Contents_Subtitle {
  color: #000;
}

.p-Atlete_Price_Card_Label > span {
  font-size: 0.5em;
}

.p-Atlete_Price_Card_Header {
  text-align: center;
  padding: 1.5em 0.5em;
  border-radius: 8px 8px 0 0;
}

.p-Atlete_Price_Card_Header._First {
  background-color: #616161;
}

.p-Atlete_Price_Card_Header._Second {
  background-color: #e14852;
}

.p-Atlete_Price_Card_Header._Third {
  background-color: #b61c2b;
}

.p-Atlete_Price_Card_Main {
  background-color: #fff;
  margin: 18px;
  border-radius: 8px;
  text-align: center;
  padding-top: 24px;
}

@media screen and (max-width: 767px) {
  .p-Atlete_Price_Card_Main {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

.p-Atlete_Price_Card_Footer {
  margin: 18px;
  text-align: center;
}

.p-Atlete_Price_Card_Footer_Cts {
  font-size: 16px;
}

.p-Atlete_Price_Card_Title {
  font-weight: 700;
  color: #fff;
}

.p-Atlete_Price_Card_Amount {
  color: #e14852;
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 12px;
}

@media screen and (max-width: 767px) {
  .p-Atlete_Price_Card_Amount {
    font-size: 20px;
    margin-bottom: 3px;
  }
}

.p-Atlete_Price_Card_Tax {
  font-size: 0.5em;
}

.p-Atlete_Price_Card_Account {
  font-size: 20px;
  font-weight: 700;
  color: #e14852;
  margin-bottom: 24px;
}

@media screen and (max-width: 767px) {
  .p-Atlete_Price_Card_Account {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

.p-Atlete_Price_Card_Cts_Block {
  padding: 18px;
  border-bottom: 1px solid #707070;
  width: 90%;
  margin: auto auto 24px;
}

@media screen and (max-width: 767px) {
  .p-Atlete_Price_Card_Cts_Block {
    padding: 0 10px;
    margin: 0 auto;
    width: 90%;
  }
}

.p-Atlete_Price_Card_Cts_Block:last-child {
  border: none;
}

.p-Atlete_Price_Card-Dt {
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 18px;
}

@media screen and (max-width: 767px) {
  .p-Atlete_Price_Card-Dt {
    margin-bottom: 5px;
    font-size: 14px;
  }
}

.p-Atlete_Price_Card-Dd {
  font-size: 20px;
  font-weight: 700;
  color: #e14852;
  margin-bottom: 24px;
}

@media screen and (max-width: 767px) {
  .p-Atlete_Price_Card-Dd {
    margin-bottom: 12px;
    font-size: 14px;
  }
}

.p-Atlete_Price_Note {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.p-Atlete_Price_Note_Title {
  margin-bottom: 0.5em;
}

.p-Atlete_Price_Note_List > li {
  padding-left: 1em;
  text-indent: -1em;
}

html {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "Meiryo UI",
    "メイリオ", Meiryo, ＭＳＰゴシック, MS PGothic, sans-serif;
  font-size: 62.5%;
  font-smoothing: antialiased;
  -webkit-font-kerning: normal;
  font-kerning: normal;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
}

.u-Heading_Page {
  text-align: center;
  font-style: bold;
  margin-bottom: 240px;
  text-transform: uppercase;
}

.u-Heading_Contents {
  margin-bottom: 60px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  color: #333;
}

.u-Text-XXXXL {
  font-size: 40px;
  line-height: 1.5em;
}

.u-Text-XXXL {
  font-size: 36px;
  line-height: 1.58em;
}

.u-Text-L,
.u-Text-XL,
.u-Text-XXL {
  line-height: 1.5em;
}

@media screen and (max-width: 600px) {
  .u-Text-XXXXL {
    font-size: 36px;
  }

  .u-Text-XXXL {
    font-size: 32px;
  }
}

.u-Text-XXL {
  font-size: 22px;
}

@media screen and (max-width: 600px) {
  .u-Text-XXL {
    font-size: 18px;
  }

  .p-Atlete_Strengths_CtsHeading {
    flex-direction: column;
  }
}

.u-Text-XL {
  font-size: 20px;
}

.u-Text-L {
  font-size: 16px;
}

.u-Text-M {
  font-size: 16px;
  line-height: 1.8em;
}

.u-Text-Main,
.u-Text-S,
.u-Text-XS {
  line-height: 1.5em;
}

.u-Text-S {
  font-size: 12px;
}

.u-Text-XS {
  font-size: 10px;
}

.u-Text-Main {
  font-size: 14px;
}

.u-Text._Align-Center {
  text-align: center;
}

.u-Text._Align-Right {
  text-align: right;
}

.u-TextOverflow {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.u-Table {
  display: table;
  table-layout: fixed;
}

.u-Row {
  display: table-row;
}

.u-Cell {
  display: table-cell;
}

.u-Inline {
  display: inline;
}

.u-InlineBlock {
  display: inline-block;
}

.u-Block {
  display: block;
}

.u-None {
  display: none;
}

.u-PC-Only {
  display: block;
}

.u-TB-Only {
  display: none;
}

@media screen and (max-width: 820px) {
  .u-PC-Only {
    display: none;
  }

  .u-TB-Only {
    display: block;
  }
}

.u-MB-Only {
  display: none;
}

@media screen and (max-width: 600px) {
  .u-TB-Only {
    display: none;
  }

  .u-MB-Only {
    display: block;
  }
}

.u-Flex,
.u-HasLines {
  display: -webkit-box;
}

.u-Hidden {
  visibility: hidden;
}

.u-ObjectFitImg {
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

.u-Common_Dl-Dt {
  padding-top: 0;
  padding-bottom: 0;
  width: 100px;
  float: left;
  clear: both;
}

.u-Common_Dl-Dd {
  padding: 0 10px 0 0;
  margin-left: 125px;
  margin-bottom: 2em;
}

.u-Absolute {
  position: absolute;
}

.u-Absolute._abCenter {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.u-Absolute._abCenter-X {
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.u-Absolute._abCenter-Y {
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.u-Fixed {
  position: fixed;
}

.u-Sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 99px;
}

@media screen and (max-width: 600px) {
  .u-Sticky {
    position: static;
  }
}

.u-Overlay,
.u-Raster {
  position: absolute;
  z-index: 8;
}

.u-Flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.u-Flex._flWrap-True {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.u-Flex._flWrap-No {
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.u-Flex._Justify-Center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.u-Flex._Justify-Between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.u-Flex._Justify-Around {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.u-Flex._Justify-Start {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.u-Flex._Justify-End {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.u-Flex._Justify-Evenly {
  -webkit-box-pack: space-evenly;
  -webkit-justify-content: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
}

.u-Flex._AlignItem-Start {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.u-Flex._AlignItem-Center {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.u-Flex._AlignItem-Stretch {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.u-Flex._Direction-Column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.u-Flex._Direction-Column-Reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.u-Flex._Direction-Row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.u-Flex._Direction-Row-Reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.u-Flex-Vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.u-PageAnchor {
  padding-top: 100px;
  margin-top: -100px;
}

.u-Margin_T-0g {
  margin-top: 0;
}

.u-Margin_R-0g {
  margin-right: 0;
}

.u-Margin_L-0g {
  margin-left: 0;
}

.u-Margin_T-1g {
  margin-top: 6px;
}

.u-Margin_B-1g {
  margin-bottom: 6px;
}

.u-Margin_R-1g {
  margin-right: 6px;
}

.u-Margin_L-1g {
  margin-left: 6px;
}

.u-Margin_T-2g {
  margin-top: 12px;
}

.u-Margin_B-2g {
  margin-bottom: 12px;
}

.u-Margin_R-2g {
  margin-right: 12px;
}

.u-Margin_L-2g {
  margin-left: 12px;
}

.u-Margin_T-3g {
  margin-top: 18px;
}

.u-Margin_B-3g {
  margin-bottom: 18px;
}

.u-Margin_R-3g {
  margin-right: 18px;
}

.u-Margin_L-3g {
  margin-left: 18px;
}

.u-Margin_T-4g {
  margin-top: 24px;
}

.u-Margin_B-4g {
  margin-bottom: 24px;
}

.u-Margin_R-4g {
  margin-right: 24px;
}

.u-Margin_L-4g {
  margin-left: 24px;
}

.u-Margin_T-5g {
  margin-top: 30px;
}

.u-Margin_B-5g {
  margin-bottom: 30px;
}

.u-Margin_R-5g {
  margin-right: 30px;
}

.u-Margin_L-5g {
  margin-left: 30px;
}

.u-Margin_T-6g {
  margin-top: 36px;
}

.u-Margin_B-6g {
  margin-bottom: 36px;
}

.u-Margin_R-6g {
  margin-right: 36px;
}

.u-Margin_L-6g {
  margin-left: 36px;
}

.u-Margin_T-7g {
  margin-top: 42px;
}

.u-Margin_B-7g {
  margin-bottom: 42px;
}

.u-Margin_R-7g {
  margin-right: 42px;
}

.u-Margin_L-7g {
  margin-left: 42px;
}

.u-Margin_T-8g {
  margin-top: 48px;
}

.u-Margin_B-8g {
  margin-bottom: 48px;
}

.u-Margin_R-8g {
  margin-right: 48px;
}

.u-Margin_L-8g {
  margin-left: 48px;
}

.u-Margin_T-9g {
  margin-top: 54px;
}

.u-Margin_B-9g {
  margin-bottom: 54px;
}

.u-Margin_R-9g {
  margin-right: 54px;
}

.u-Margin_L-9g {
  margin-left: 54px;
}

.u-Margin_T-10g {
  margin-top: 60px;
}

.u-Margin_B-10g {
  margin-bottom: 60px;
}

.u-Margin_R-10g {
  margin-right: 60px;
}

.u-Margin_L-10g {
  margin-left: 60px;
}

.u-Margin_T-11g {
  margin-top: 66px;
}

.u-Margin_B-11g {
  margin-bottom: 66px;
}

.u-Margin_R-11g {
  margin-right: 66px;
}

.u-Margin_L-11g {
  margin-left: 66px;
}

.u-Margin_T-12g {
  margin-top: 72px;
}

.u-Margin_B-12g {
  margin-bottom: 72px;
}

.u-Margin_R-12g {
  margin-right: 72px;
}

.u-Margin_L-12g {
  margin-left: 72px;
}

.u-Margin_T-13g {
  margin-top: 78px;
}

.u-Margin_B-13g {
  margin-bottom: 78px;
}

.u-Margin_R-13g {
  margin-right: 78px;
}

.u-Margin_L-13g {
  margin-left: 78px;
}

.u-Margin_T-14g {
  margin-top: 84px;
}

.u-Margin_B-14g {
  margin-bottom: 84px;
}

.u-Margin_R-14g {
  margin-right: 84px;
}

.u-Margin_L-14g {
  margin-left: 84px;
}

.u-Margin_T-15g {
  margin-top: 90px;
}

.u-Margin_B-15g {
  margin-bottom: 90px;
}

.u-Margin_R-15g {
  margin-right: 90px;
}

.u-Margin_L-15g {
  margin-left: 90px;
}

.u-Margin_T-16g {
  margin-top: 96px;
}

.u-Margin_B-16g {
  margin-bottom: 96px;
}

.u-Margin_R-16g {
  margin-right: 96px;
}

.u-Margin_L-16g {
  margin-left: 96px;
}

.u-Margin_T-17g {
  margin-top: 102px;
}

.u-Margin_B-17g {
  margin-bottom: 102px;
}

.u-Margin_R-17g {
  margin-right: 102px;
}

.u-Margin_L-17g {
  margin-left: 102px;
}

.u-Margin_T-18g {
  margin-top: 108px;
}

.u-Margin_B-18g {
  margin-bottom: 108px;
}

.u-Margin_R-18g {
  margin-right: 108px;
}

.u-Margin_L-18g {
  margin-left: 108px;
}

.u-Margin_T-19g {
  margin-top: 114px;
}

.u-Margin_B-19g {
  margin-bottom: 114px;
}

.u-Margin-Btm_Common,
.u-Margin_B-20g {
  margin-bottom: 120px;
}

.u-Margin_R-19g {
  margin-right: 114px;
}

.u-Margin_L-19g {
  margin-left: 114px;
}

.u-Margin_T-20g {
  margin-top: 120px;
}

.u-Margin_R-20g {
  margin-right: 120px;
}

.u-Margin_L-20g {
  margin-left: 120px;
}

.u-Margin-Auto {
  margin: auto;
}

.u-ListStyle-BulletPoint > li,
.u-ListStyle-Number > li {
  margin-left: 1.5em;
}

.u-Padding_T-0g {
  padding-top: 0;
}

.u-Padding_B-0g {
  padding-bottom: 0;
}

.u-Padding_Rt-0g {
  padding-right: 0;
}

.u-Padding_Lt-0g {
  padding-left: 0;
}

.u-Padding_T-1g {
  padding-top: 6px;
}

.u-Padding_B-1g {
  padding-bottom: 6px;
}

.u-Padding_Rt-1g {
  padding-right: 6px;
}

.u-Padding_Lt-1g {
  padding-left: 6px;
}

.u-Padding_T-2g {
  padding-top: 12px;
}

.u-Padding_B-2g {
  padding-bottom: 12px;
}

.u-Padding_Rt-2g {
  padding-right: 12px;
}

.u-Padding_Lt-2g {
  padding-left: 12px;
}

.u-Padding_T-3g {
  padding-top: 18px;
}

.u-Padding_B-3g {
  padding-bottom: 18px;
}

.u-Padding_Rt-3g {
  padding-right: 18px;
}

.u-Padding_Lt-3g {
  padding-left: 18px;
}

.u-Padding_T-4g {
  padding-top: 24px;
}

.u-Padding_B-4g {
  padding-bottom: 24px;
}

.u-Padding_Rt-4g {
  padding-right: 24px;
}

.u-Padding_Lt-4g {
  padding-left: 24px;
}

.u-Padding_T-5g {
  padding-top: 30px;
}

.u-Padding_B-5g {
  padding-bottom: 30px;
}

.u-Padding_Rt-5g {
  padding-right: 30px;
}

.u-Padding_Lt-5g {
  padding-left: 30px;
}

.u-Padding_T-6g {
  padding-top: 36px;
}

.u-Padding_B-6g {
  padding-bottom: 36px;
}

.u-Padding_Rt-6g {
  padding-right: 36px;
}

.u-Padding_Lt-6g {
  padding-left: 36px;
}

.u-Padding_T-7g {
  padding-top: 42px;
}

.u-Padding_B-7g {
  padding-bottom: 42px;
}

.u-Padding_Rt-7g {
  padding-right: 42px;
}

.u-Padding_Lt-7g {
  padding-left: 42px;
}

.u-Padding_T-8g {
  padding-top: 48px;
}

.u-Padding_B-8g {
  padding-bottom: 48px;
}

.u-Padding_Rt-8g {
  padding-right: 48px;
}

.u-Padding_Lt-8g {
  padding-left: 48px;
}

.u-Padding_T-9g {
  padding-top: 54px;
}

.u-Padding_B-9g {
  padding-bottom: 54px;
}

.u-Padding_Rt-9g {
  padding-right: 54px;
}

.u-Padding_Lt-9g {
  padding-left: 54px;
}

.u-Padding_T-10g {
  padding-top: 60px;
}

.u-Padding_B-10g {
  padding-bottom: 60px;
}

.u-Padding_Rt-10g {
  padding-right: 60px;
}

.u-Padding_Lt-10g {
  padding-left: 60px;
}

.u-Padding-Btm_Common {
  padding-bottom: 120px;
}

.u-Fill {
  width: 100%;
}

.u-Half {
  width: 50%;
}

.u-Quarter {
  width: 25%;
}

.u-Third {
  width: 33.33%;
}

.u-TwoThirds {
  width: 66.66%;
}

.u-Form_Size-S {
  width: 25%;
}

.u-Form_Size-M {
  width: 50%;
}

.u-Form_Size-L {
  width: 80%;
}

.u-Form_Size-XL,
.u-Overlay {
  width: 100%;
}

.u-ListStyle-BulletPoint {
  list-style-type: disc;
}

.u-ListStyle-Number {
  list-style-type: decimal;
}

.u-Overlay {
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: block;
}

.u-Raster {
  width: 100vw;
  height: 100vh;
  background-image: url(img/raster.png);
  background-repeat: repeat;
  top: 0;
  left: 0;
  display: none;
}

.u-Bg_Color-Gray {
  background-color: #e1e1e1;
}

.u-Border-Btm {
  border-bottom: 1px solid;
}

.u-Border-Top {
  border-top: 1px solid;
}

.u-Border-Right {
  border-right: 1px solid;
}

.u-Border-Left {
  border-left: 1px solid;
}

.u-LinesOnSides {
  display: table;
  text-align: center;
  white-space: nowrap;
}

.u-LinesOnSides:after,
.u-LinesOnSides:before {
  content: "";
  display: table-cell;
  width: 50%;
  background: -webkit-linear-gradient(
    transparent 50%,
    currentColor 50%,
    currentColor calc(50% + 1px),
    transparent calc(50% + 1px)
  );
  background: linear-gradient(
    transparent 50%,
    currentColor 50%,
    currentColor calc(50% + 1px),
    transparent calc(50% + 1px)
  );
  background-clip: padding;
}

.u-LinesOnSides:after {
  border-left: 1em solid transparent;
}

.u-LinesOnSides:before {
  border-right: 1em solid transparent;
}

.u-HasLines {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.u-HasLines:after,
.u-HasLines:before {
  content: "";
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 1px;
  background: #333;
  min-width: 20px;
  display: inline-block;
  vertical-align: middle;
}

.u-HasLines:before {
  margin-right: 1em;
}

.u-HasLines:after {
  margin-left: 1em;
}

.u-HasLines-Right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.u-HasLines-Right:after {
  content: "";
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 1px;
  background: #333;
  min-width: 1em;
  display: inline-block;
  vertical-align: middle;
  margin-left: 1em;
}

.u-HasLines-Left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: right;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.u-HasLines-Left:before {
  content: "";
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 1px;
  background: #333;
  min-width: 1em;
  display: inline-block;
  vertical-align: middle;
  margin-right: 1em;
}

.u-Btn_LinkIcon {
  color: #fff;
  background-color: #b61c2b;
  border-radius: 30px;
  padding: 0.75em 2em;
  display: inline-block;
  font-size: 20px;
  line-height: 23px;
  font-weight: 700;
}

@media screen and (max-width: 600px) {
  .u-Btn_LinkIcon {
    font-size: 18px;
  }
}

.u-Btn_LinkIcon:after {
  display: none;
  content: "";
  background-image: url(img/link_mark.svg);
  margin-left: 1em;
  width: 28px;
  height: 23px;
}

.u-cf:after,
.u-cf:before {
  content: "";
  display: table;
}

.u-cf:after {
  clear: both;
}

.u-Clear {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

.swiper-rtl .swiper-button-prev:after,
div.swiper-button-next:after {
  content: "";
}

.p-Atlete_Faq {
  background-color: #b61c2b;
}

.p-Atlete_Faq .l-AtletePage_Contents {
  background-color: #b61c2b;
}

.p-Atlete_Faq .no-btm {
  padding-bottom: 0 !important;
}

.p-Atlete_News h2.p-Atlete_Contents_Title {
  color: #b61c2b;
}
.p-Atlete_News span.p-Atlete_Contents_Subtitle {
  color: #000;
}
.p-Atlete_Movie h2.p-Atlete_Contents_Title {
  color: #b61c2b;
}
.p-Atlete_Movie span.p-Atlete_Contents_Subtitle {
  color: #000;
}
