@charset "UTF-8";

:root {
  --wht: #ffffff;
  --blk: #000000;
  --d-gray: #3d3d3d;
  --l-gray: #f7f7f7;
}

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');

/* =======================================================================

  athlete-jz - PC styles

======================================================================= */
body {
  font-family: "Noto Sans JP", sans-serif;
  min-width: 1260px;
}
.ff-serif { font-family: "Noto Serif JP", serif; }
.sp { display: none; }
.l-container {
  position: relative;
  width: 100%;
  overflow-x: hidden;
}
.inner {
  max-width: 1200px;
  width: calc(680 / 780 * 100%);
  margin: auto;
}

/*
  Header
======================================================================= */
.l-header {
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}
.menu-trigger {
  position: fixed;
  top: 95px;
  right: 65px;
  appearance: none;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
  transition: all .3s;
}
.menu-trigger::after {
  content: "menu";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -2em;
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: .15em;
  color: var(--wht);
}
.menu-trigger.is-active::after { content: "close"; }
.menu-trigger span {
  width: 2px;
  height: 46px;
  background-color: var(--wht);
  display: inline-block;
  margin: 0 4px;
  transition: all .3s;
}
.menu-trigger.is-active span { margin: 0; }
.menu-trigger.is-active span:first-of-type { transform: rotate(45deg) translateX(1px); }
.menu-trigger.is-active span:last-of-type { transform: rotate(-45deg) translateX(-1px); }

.menu-trigger.is-blk::after { color: var(--blk); }
.menu-trigger.is-blk span { background-color: var(--blk); }

/*
  Global Navi
======================================================================= */
.gnav {
  display: none;
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  background-color: #e90404;
}
.gnav .inner {
  position: relative;
  padding: 0 100px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.gnav ul li {
  font-size: calc(48 / 1920 * 100vw);
  font-weight: 600;
  line-height: 1.3;
}
.gnav ul li:not(:last-of-type) { margin: 0 0 30px; }
.gnav ul li small {
  font-size: calc(16 / 48 * 1em);
  letter-spacing: .05em;
  display: block;
}
.gnav ul li a {
  color: var(--wht);
  text-decoration: none;
  transition: all .3s;
}
.gnav ul li a:hover { opacity: .7; }

/*
  Main Visual
======================================================================= */
.main-visual {
  position: relative;
  display: grid;
}
.main-visual h1 {
  position: absolute;
  z-index: 1;
  right: 70px;
  bottom: 0;
  grid-area: 1 / 1;
  font-size: calc(200 / 1920 * 100vw);
  font-weight: 700;
  color: var(--wht);
  line-height: 1.0;
  text-shadow: 2px 2px 0 var(--blk);
}
.main-visual h1 span {
  /*
  font-size: calc(36 / 200 * 1em);
  font-style: oblique;
  text-align: right;
  */
  letter-spacing: -.075em;
}
.main-visual h2 {
  position: absolute;
  right: 0;
  bottom: calc(220 / 1920 * 100vw);
  width: 100%;
  grid-area: 1 / 1;
}
.main-visual figure {
  width: 100%;
  overflow: hidden;
  grid-area: 1 / 1;
}
.main-visual figure img {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}

/*
  Section
======================================================================= */
.l-container section {
  position: relative;
  width: 100%;
}

/* Section01
---------------------------------------------------------------------- */
.sec01 {
  display: grid;
  color: var(--wht);
}
.sec01 > div {
  position: relative;
  z-index: 1;
  grid-area: 1 / 1;
  padding: calc(160 * .75 / 1920 * 100%) 0 0;
}
.sec01 figure {
  width: 100%;
  overflow: hidden;
  grid-area: 1 / 1;
}
.sec01 figure img {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
.sec01 .sec-heading span {
  font-size: 36px;
  font-size: 3.6rem;
  font-weight: 500;
  letter-spacing: .05em;
  padding: 0 0 0 100px;
  margin: 0 0 1em -10px;
  display: block;
}
.sec01 p {
  font-size: calc(26 / 1920 * 100vw);
  font-weight: 600;
  letter-spacing: .1em;
  line-height: calc(60 / 26);
  padding: 0 0 0 100px;
  margin: calc(120 * .75 / 1920 * 100%) 0 0;
}

@media screen and (max-width:1260px) {
  .sec01 > div { padding: calc(160 * .7 / 1920 * 100%) 0 0; }
  .sec01 p {margin: calc(120 * .7 / 1920 * 100%) 0 0; }
}

/* Section02
---------------------------------------------------------------------- */
.sec02 {
  padding: 55px 0 140px;
  background-color: var(--l-gray);
}
.sec02 .inner { padding: 0 100px; }
.sec02 dl dt {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: .05em;
  line-height: 1.0;
  margin: 0 0 30px;
}
.sec02 dl dd {
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: .05em;
  line-height: calc(30 / 15);
}

/* Section03
---------------------------------------------------------------------- */
.sec03 {
  padding: 305px 0 90px;
  color: var(--l-gray);
  background-color: var(--d-gray);
}
.sec03 .inner {
  position: relative;
  z-index: 1;
}
.sec03 .sec-heading span {
  font-size: 36px;
  font-size: 3.6rem;
  font-weight: 500;
  letter-spacing: .05em;
  padding: 0 0 0 100px;
  margin: 0 0 1em;
  display: block;
}
.sec03 p {
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: .05em;
  line-height: calc(30 / 15);
  color: var(--wht);
  padding: 0 100px;
  margin: 60px 0 0;
}
.sec03 figure {
  position: absolute;
  right: calc(300 / 1920 * 100vw);
  bottom: 0;
}

/* Section04
---------------------------------------------------------------------- */
.sec04 { display: grid; }
.sec04 figure {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.sec04 figure img {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
.phrase {
  position: relative;
  z-index: 1;
  grid-area: 1 / 1;
  padding: calc(125 / 1920 * 100vw) 0 calc(120 / 1920 * 100vw);
}
.phrase-b { display: none; }
.bg {
  position: relative;
  grid-area: 1 / 1;
  display: none;
}

/* Section05
---------------------------------------------------------------------- */
.sec05 {
  padding: 160px 0 125px;
  background-color: var(--d-gray);
}
.sec05 .inner {
  position: relative;
  z-index: 1;
}
.sec05 .sec-heading span {
  font-size: 36px;
  font-size: 3.6rem;
  font-weight: 500;
  letter-spacing: .05em;
  padding: 0 0 0 100px;
  margin: 0 0 1em;
  display: block;
  color: var(--l-gray);
}
.book-list {
  padding: 0 100px;
  margin: 80px 0 0;
  display: flex;
  flex-direction: column;
  gap: 95px 0;
}
.book-info {
  display: grid;
  grid-template-columns: 36% 64%;
}
.book-info figure {
  overflow: hidden;
  padding: 0 0 0 50px;
}
.book-info figure img {
  width: 100%;
  height: auto;
}
.book-summary { padding: 0 55px 0 0; }
.book-summary h3 {
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: .05em;
  line-height: calc(30 / 18);
  color: var(--wht);
  margin: 0 0 .75em;
}
.book-summary dl {
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: .05em;
  line-height: calc(30 / 15);
}
.book-summary dl dt {
  margin: 0 0 1em;
  color: var(--wht);
}
.book-summary dl dd { color: var(--l-gray); }
.book-summary a {
  text-align: center;
  text-decoration: none;
  width: 360px;
  line-height: 50px;
  background-color: #494949;
  border: solid 1px #5f5f5f;
  display: block;
  margin: 35px 0 0;
  transition: all .3s;
}
.book-summary a:hover { background-color: #272727; }
.book-summary a span {
  position: relative;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: .05em;
  color: var(--wht);
  display: inline-block;
  margin: 0 0 0 -10px;
}
.book-summary a span::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url(../images/icon_link.png) no-repeat 50% 50%;
  background-size: cover;
  display: inline-block;
  margin: 0 0 0 5px;
}

/* Section06
---------------------------------------------------------------------- */
.sec06 { padding: 160px 0 175px; }
.sec06 .sec-heading { margin: 0 0 80px; }
.sec06 .sec-heading span {
  font-size: 36px;
  font-size: 3.6rem;
  font-weight: 500;
  letter-spacing: .05em;
  padding: 0 0 0 100px;
  margin: 0 0 1em;
  display: block;
}
.sec06 .sec-heading p {
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: .05em;
  color: #e90404;
  padding: 0 0 0 100px;
  margin: 25px 0 0;
}
.saying {
  position: relative;
  width: 250px;
  height: 500px;
  border: solid 1px #dddfe2;
  border-radius: 5px;
  background-color: #fafafa;
  transition: all .3s;
  cursor: pointer;
  margin: auto;
}
.s02 { top: 70px; }
.s03 { top: 30px; }
.s04 { top: 100px; }
.saying p {
  position: absolute;
  right: 2em;
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: .05em;
  line-height: calc(32 / 18);
  writing-mode: vertical-rl;
  padding: 40px 0 80px;
}
.saying p.no54 { right: 1.5em; }
.page-num {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 15px;
  font-size: 13px;
  font-size: 1.3rem;
  letter-spacing: .05em;
}

/* Swiper Slider Styles */
.swiper-unit {
  position: relative;
}
.swiper { overflow: visible; }
.swiper-wrapper { padding: 0 0 100px; }
.swiper-slide-active + .swiper-slide .saying {
  z-index: 1;
  background: linear-gradient(139deg, rgba(255,73,43,1) 0%,rgba(233,4,4,1) 34%,rgba(173,0,0,1) 100%);
  transform: scale(1.25);
  transform-origin: 50% 50%;
}
.swiper-slide-active + .swiper-slide .saying p,
.swiper-slide-active + .swiper-slide .saying .page-num { color: var(--wht); }

.swiper-ctl-unit {
  position: relative;
  left: calc(1200px - 194px);
  width: calc(120px + (24px * 2) + (13px * 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 120px 0 0;
}
.swiper-scrollbar {
  position: relative;
  max-width: 120px;
  height: 1px !important;
  background-color: #b4bbc4 !important;

}
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: relative;
  width: 120px;
  top: 16px;
  left: initial;
  right: initial;
  bottom: initial;
  margin: auto;
}
.swiper-scrollbar-drag { display: none; }
.swiper-button-prev, .swiper-button-next {
  width: 24px !important;
  height: 32px !important;
  background-color: var(--wht);
  border: solid 1px #b4bbc4 !important;
  margin: 0;
  transition: all .3s;
}
.swiper-button-prev { left: 0; }
.swiper-button-next { right: 0; }
.swiper-button-prev::after, .swiper-button-next::after {
  font-size: 12px;
  font-size: 1.2rem;
  color: var(--blk);
}
.swiper-button-prev:hover, .swiper-button-next:hover { background-color: #e90404; }
.swiper-button-prev:hover::after, .swiper-button-next:hover::after { color: var(--wht); }

@media screen and (max-width:1260px) {
  .swiper-ctl-unit {
    left: 0;
    margin: 120px auto 0;
  }
}

/* Section07
---------------------------------------------------------------------- */
.sec07 {
  padding: 150px 0;
  background-color: var(--blk);
}
.sec07 .inner { position: relative; }
.sec07 .sec-heading { margin: 0 0 65px; }
.sec07 .sec-heading span {
  font-size: 36px;
  font-size: 3.6rem;
  font-weight: 500;
  letter-spacing: .05em;
  padding: 0 0 0 100px;
  margin: 0 0 1em -10px;
  display: block;
  color: var(--l-gray);
}
.sec07 figure.rcmd-img {
  max-width: 640px;
  overflow: hidden;
  margin: 0 0 0 100px;
}
.sec07 figure.rcmd-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.rcmd-item {
  display: grid;
  grid-template-columns: 36.5% 63.5%;
  padding: 0 100px 0 0;
  margin: 60px 0 70px;
}
.rcmd-item > div { padding: 0 0 0 120px; }
.rcmd-item > div h3 {
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: .05em;
  line-height: calc(30 / 18);
  color: var(--wht);
  margin: 0 0 .75em;
}
.rcmd-item > div dl {
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: .05em;
  line-height: calc(30 / 15);
}
.rcmd-item > div dl dt {
  margin: 0 0 1em;
  color: var(--wht);
}
.rcmd-item > div dl dd { color: var(--l-gray); }
.rcmd-pict { display: inline-block; }
.rcmd-pict.rp01 { width: calc(355 / 1920 * 100vw); }
.rcmd-pict.rp02 {
  position: absolute;
  bottom: -10px;
  right: calc((90 / 1920 * 100vw) * -1);
  width: calc(488 / 1920 * 100vw);
}

@media screen and (max-width:1260px) {
  .rcmd-item {
    grid-template-columns: 30% 70%;
    padding: 0 0 0 100px;
  }
  .rcmd-item > div { padding: 0; }
}

/* Section08
---------------------------------------------------------------------- */
.sec08 { padding: 140px 0 130px; }
.sec08 .sec-heading span {
  font-size: 36px;
  font-size: 3.6rem;
  font-weight: 500;
  letter-spacing: .05em;
  padding: 0 0 0 100px;
  margin: 0 0 1em;
  display: block;
}

.news-unit .inner { padding: 0 40px 0 100px; }
.news-unit iframe {
  width: 100%;
  height: 700px;
  overflow-x: hidden;
  overflow-y: scroll;
  margin: 100px 0 0;
}
.news-unit iframe::-webkit-scrollbar-thumb {
  width: 2px;
  background-color: #bebebe;
}
.news-unit iframe::-webkit-scrollbar {
  width: 2px;
  background-color: #e6e6e6;
}

/* Section09
---------------------------------------------------------------------- */
.sec09 {
  padding: 160px 0;
  background-color: var(--l-gray);
}
.sec09 .sec-heading { margin: 0 0 115px; }
.sec09 .sec-heading span {
  font-size: 36px;
  font-size: 3.6rem;
  font-weight: 500;
  letter-spacing: .05em;
  padding: 0 0 0 100px;
  margin: 0 0 1em;
  display: block;
}
.sec09 p { text-align: center; }
.sec09 p > span {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: .05em;
  display: block;
}
.app-btn {
  width: 421px;
  height: 73px;
  display: block;
  margin: 40px auto 0;
  transition: all .3s;
  background-image: url(../images/app-btn.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.app-btn.ov { background-image: url(../images/app-btn_ov.png); }
.sec09 .inner > dl { padding: 0 100px; }
.sec09 dl dt {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: calc(30 / 18);
  margin: 0 0 15px;
}
.sec09 dl dd {
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: .05em;
  line-height: calc(30 / 15);
}

/* 転載許可申請 */
.rpr {
  padding: 0 100px;
  margin: 60px 0 70px;
}
.rpr > div {
  padding: 60px;
  background-color: var(--wht);
}
.rpr h3 {
  font-size: 30px;
  font-size: 3.0rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.0;
  margin: 0 0 40px;
}
.rpr dl:first-of-type { margin: 0 0 60px; }
.rpr dl dt {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: calc(30 / 18);
  margin: 0 0 15px;
}
.rpr dl dd {
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: .05em;
  line-height: calc(30 / 15);
}
.rpr dl dd a {
  color: #e90404;
  text-decoration: none;
}
.rpr dl dd ul { padding: 0 0 0 2.5em; }
.rpr dl dd ul li { list-style-type: disc; }
.rpr dl:last-of-type dd:last-of-type { margin: 60px 0 0; }


/*
  Footer
======================================================================= */
.l-footer {
  text-align: center;
}
.copy {
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: .1em;
  line-height: calc(36 / 16);
}

/*
  Fixed Banner
======================================================================= */
.fixed-bnr {
  position: fixed;
  z-index: 1;
  right: 2.5rem;
  bottom: 1.5rem;
}
.fixed-bnr.is-hidden { display: none; }
.fixed-bnr a, .fixed-bnr a img {
  width: 100%;
  height: auto;
  display: block;
  transition: all .3s;
}
.fixed-bnr a:hover, .fixed-bnr a:hover img { opacity: .7; }