@charset "UTF-8";
img {
  max-width: 100%;
  height: auto;
}

html {
  background: #ffffff !important;
}

body {
  background: #ffffff !important;
}

/**
 * html5doctor.com Reset Stylesheet v1.6.1 (http://html5doctor.com/html-5-reset-stylesheet/)
 * Richard Clark (http://richclarkdesign.com)
 * http://cssreset.com
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: inherit;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

.l-footer {
  padding: 100px 0 50px;
  background: #ffffff;
}
.l-footer__social-icons {
  display: flex;
}
.l-footer .logo {
  line-height: 1;
  width: clamp(15.625rem, 2.177rem + 28.02vw, 19.688rem);
}

.footer__menu li {
  font-size: 18px;
  font-weight: bold;
}
.footer__menu li:not(last-child) {
  margin-right: 60px;
}

@media (max-width: 768px) {
  .l-footer {
    padding: 30px 0 30px;
  }
}
.social-icons__item {
  list-style: none;
  line-height: 1;
}

.social-icons__item:not(:last-child) {
  margin-right: 10px;
}

small {
  font-size: 12px;
  line-height: 1;
  width: 100%;
  text-align: center;
  display: block;
  font-weight: bold;
}

.header {
  position: fixed; /* headerを追従にする */
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 25px 0;
  z-index: 999;
}
@media (max-width: 768px) {
  .header {
    padding: 15px 0;
  }
}
.header-bg {
  transition: background-color 0.3s ease, opacity 0.5s ease-in-out;
  background-color: rgba(255, 255, 255, 0); /* 初期は透明 */
  opacity: 0;
}
.header.scrolled .header-bg {
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px); /* ぼかし効果 */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* 影を追加 */
  opacity: 1; /* フェードイン */
  height: 104px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  z-index: 1;
}
@media (max-width: 768px) {
  .header.scrolled .header-bg {
    height: 70px;
  }
}
.header .logo {
  line-height: 1;
  width: clamp(15.625rem, 2.177rem + 28.02vw, 19.688rem);
}
.header__inner {
  width: calc(100% - 140px);
  margin: 0 auto;
  z-index: 2;
}
.header__right {
  display: flex;
}
.header__right-btn {
  margin-right: 20px;
}
.header__right-btn a {
  background: #48443a;
  border-radius: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

@media (min-width: 1001px) {
  .drawer__nav__menu {
    display: flex;
    align-items: center;
    line-height: 1;
  }
  .drawer__nav__item:not(:last-child) {
    margin-right: clamp(1.25rem, -1.196rem + 3.91vw, 3.5rem);
  }
  .drawer__nav__item:last-child a {
    background: #252c3d;
    color: #ffffff;
    font-weight: bold;
    padding: 12px 25px;
    border-radius: 25px;
  }
}
@media (max-width: 1000px) {
  .header__inner {
    width: calc(100% - clamp(2.5rem, -18.19rem + 43.1vw, 8.75rem));
  }
  /* ハンバーガーボタンのデザイン */
  .drawer__button {
    position: relative;
    width: 40px;
    height: 30px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 999; /* メニューを開いている時もクリックできるよう設定 */
    padding: 0;
  }
  /* ハンバーガーボタン内の線 */
  .drawer__button > span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    height: 5px;
    width: 100%;
    border-radius: 2px;
    background-color: #dccfb1;
    transform: translateX(-50%);
  }
  .drawer__button > span:first-child {
    transform: translate(-50%, calc(-50% - 0.5rem));
    transition: transform 0.3s ease;
    top: 10px;
  }
  .drawer__button > span:nth-child(2) {
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
  }
  .drawer__button > span:last-child {
    transform: translate(-50%, calc(-50% + 0.5rem));
    transition: transform 0.3s ease;
    bottom: 5px;
    top: auto;
  }
  /* 展開時のデザイン */
  .drawer__button.active span {
    background-color: #ffffff;
  }
  .drawer__button.active > span:first-child {
    transform: translate(-50%, -50%) rotate(-45deg);
    top: 16px;
  }
  .drawer__button.active > span:nth-child(2) {
    opacity: 0;
  }
  .drawer__button.active > span:last-child {
    transform: translate(-50%, -50%) rotate(45deg);
    top: 17px;
  }
  /* メニューのデザイン */
  .drawer__nav {
    position: absolute;
    width: 300px;
    height: calc(100vh - 60px);
    top: -25px;
    right: -70px;
    background-color: rgba(220, 207, 177, 0.95);
    color: #fff;
    padding: 60px 0 0 50px;
    transition: opacity 0.3s ease;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
  }
  .drawer__nav.active {
    opacity: 1;
    visibility: visible;
  }
  .drawer__nav__menu {
    list-style: none;
    padding-left: 0;
    transition: transform 0.3s ease;
  }
  .drawer__nav__item:not(:last-child) {
    margin-bottom: 30px;
  }
  .drawer__nav__link {
    display: block;
    color: #ffffff;
    text-decoration: none;
    line-height: 1;
    font-weight: 600;
    display: inline-block;
  }
  /* ハンバーガーメニュー展開時、背景を固定 */
  body.active {
    height: 100%;
    overflow: hidden;
  }
}
@media (max-width: 768px) {
  .drawer__nav {
    top: -15px;
  }
}
.l-wrapper {
  font-family: YuGothic, "Yu Gothic", YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.75;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
  overflow: hidden;
  background: url("../img/home__bg.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

@media (max-width: 1000px) {
  .l-wrapper {
    max-width: 100%;
  }
}
.p-home__fv {
  position: relative;
  z-index: 0;
  background: transparent url("../img/fv__bg.jpg") no-repeat top center/cover;
  height: 778px;
  max-height: 100vh;
  @import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400&display=swap");
}
@media (max-width: 768px) {
  .p-home__fv {
    height: 100vh;
    background: transparent url("../img/fv__bg--sp.jpg") no-repeat top center/cover;
  }
}
.p-home__fv::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: #ffffff;
  opacity: 0.95;
  height: clamp(18.125rem, -5.38rem + 37.61vw, 39.75rem);
  width: clamp(18.125rem, -5.38rem + 37.61vw, 39.75rem);
  clip-path: polygon(0% 0%, 0% 100%, 100% 0%);
}
.p-home__fv::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  background: #004860;
  height: clamp(19.625rem, -11.965rem + 50.54vw, 48.688rem);
  width: clamp(19.625rem, -11.965rem + 50.54vw, 48.688rem);
  clip-path: polygon(0% 100%, 100% 100%, 100% 0%);
}
.p-home__fv-bg {
  height: 778px;
  position: relative;
}
.p-home__fv-bg::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #0d6c83;
  height: clamp(11.875rem, -17.677rem + 47.28vw, 39.063rem);
  width: clamp(11.875rem, -17.677rem + 47.28vw, 39.063rem);
  clip-path: polygon(100% 100%, 0% 0%, 0% 100%);
}
@media (max-width: 768px) {
  .p-home__fv-bg {
    height: 100vh;
  }
}
.p-home__fv-txt {
  margin: 0 0 0 auto;
  width: 610px;
  z-index: 1;
  position: relative;
}
@media (max-width: 768px) {
  .p-home__fv-txt {
    width: 100%;
    padding-top: 55vh;
  }
  .p-home__fv-txt p {
    padding-top: 0;
  }
}
.p-home__fv .scroll_down {
  position: absolute;
  bottom: 0px;
  right: 60px;
  z-index: 2;
}
.p-home__fv .scroll_down a {
  position: absolute;
  left: 10px;
  bottom: 87px;
  color: #ffffff;
  font-size: 14px;
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: 0.2em;
  writing-mode: vertical-lr;
  text-decoration: none;
  text-transform: uppercase;
}
.p-home__fv .scroll_down:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ffffff;
  animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}
@keyframes circlemove {
  0% {
    bottom: 160px;
  }
  100% {
    bottom: 0px;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
.p-home__fv .scroll_down:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2px;
  height: 160px;
  background: #ffffff;
}
@media (max-width: 1080px) {
  .p-home__fv-img {
    width: 100%;
  }
  .p-home__fv-img img {
    width: 33.3333333333%;
    height: auto;
  }
}
.p-home__mission {
  background: #ffffff;
  z-index: 2;
}
.p-home__mission::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: #252c3d;
  height: clamp(43.438rem, 12.663rem + 49.24vw, 71.75rem);
  width: clamp(43.438rem, 12.663rem + 49.24vw, 71.75rem);
  clip-path: polygon(0% 0%, 0% 100%, 100% 0%);
}
@media (max-width: 768px) {
  .p-home__mission::before {
    height: clamp(21.875rem, 1.3rem + 87.79vw, 43.438rem);
    width: clamp(21.875rem, 1.3rem + 87.79vw, 43.438rem);
  }
}
.p-home__mission-img {
  text-align: center;
  width: 480px;
}
@media (max-width: 768px) {
  .p-home__mission-img {
    width: 100%;
  }
}
.p-home__mission-lead {
  mix-blend-mode: difference;
  color: #ffffff;
  width: calc(100% - 480px);
}
@media (max-width: 768px) {
  .p-home__mission-lead {
    width: 100%;
  }
}
.p-home__service::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: url("../img/service__bg.jpg") no-repeat top right/cover;
  height: clamp(43.438rem, 12.12rem + 50.11vw, 72.25rem);
  width: clamp(43.438rem, 12.12rem + 50.11vw, 72.25rem);
  clip-path: polygon(0% 0%, 100% 100%, 100% 0%);
}
@media (max-width: 768px) {
  .p-home__service::before {
    background: url("../img/service__bg--sp.jpg") no-repeat top right/cover;
    height: clamp(21.875rem, 1.3rem + 87.79vw, 43.438rem);
    width: clamp(21.875rem, 1.3rem + 87.79vw, 43.438rem);
  }
}
.p-home__service::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #0d6c83;
  height: clamp(15.75rem, -1.37rem + 27.39vw, 31.5rem);
  width: clamp(15.75rem, -1.37rem + 27.39vw, 31.5rem);
  clip-path: polygon(100% 100%, 0% 0%, 0% 100%);
}
@media (max-width: 768px) {
  .p-home__service::after {
    width: clamp(7.5rem, -0.372rem + 33.59vw, 15.75rem);
    height: clamp(7.5rem, -0.372rem + 33.59vw, 15.75rem);
  }
}
.p-home__service-lead {
  mix-blend-mode: difference;
  color: #ffffff;
}
.p-home__service-box {
  background: rgba(255, 255, 255, 0.95);
  padding: 60px 50px;
  border-radius: 10px;
  box-shadow: 0 0 5px #252c3d;
  z-index: 1;
  position: relative;
}
.p-home__service-box__ttl {
  line-height: 1;
  margin-bottom: 45px;
}
.p-home__service-box__ttl-nmb {
  font-size: clamp(3.125rem, -17.565rem + 43.1vw, 9.375rem);
  color: #004860;
  font-family: "Roboto";
  border-right: 2px solid #004860;
  margin-right: 50px;
  padding-right: 20px;
}
.p-home__service-box__ttl-txt {
  font-size: 24px;
}
@media (max-width: 768px) {
  .p-home__service-box {
    padding: 30px 20px;
  }
  .p-home__service-box__ttl {
    margin-bottom: 30px;
  }
  .p-home__service-box__ttl-nmb {
    margin-right: 25px;
  }
  .p-home__service-box__ttl-txt {
    font-size: 20px;
    line-height: 1.5;
  }
  .p-home__service-box__ttl-txt::before, .p-home__service-box__ttl-txt::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
  }
  .p-home__service-box__ttl-txt::before {
    margin-top: calc((1 - 1.5) * 0.5em);
  }
  .p-home__service-box__ttl-txt::after {
    margin-bottom: calc((1 - 1.5) * 0.5em);
  }
}
.p-home__athlete {
  background: #ffffff;
  z-index: 2;
}
.p-home__athlete::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: #252c3d;
  height: clamp(43.438rem, 12.12rem + 50.11vw, 72.25rem);
  width: clamp(43.438rem, 12.12rem + 50.11vw, 72.25rem);
  clip-path: polygon(0% 0%, 0% 100%, 100% 0%);
}
@media (max-width: 768px) {
  .p-home__athlete::before {
    height: clamp(21.875rem, 1.3rem + 87.79vw, 43.438rem);
    width: clamp(21.875rem, 1.3rem + 87.79vw, 43.438rem);
  }
}
.p-home__athlete-lead {
  mix-blend-mode: difference;
  color: #ffffff;
}
.p-home__athlete-lead--white {
  color: #ffffff;
}
.p-home__athlete-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.p-home__athlete-list:after {
  width: calc((100% - 60px) / 3);
  content: "";
}
@media (max-width: 768px) {
  .p-home__athlete-list:after {
    display: none;
  }
}
.p-home__athlete-list-box {
  width: calc((100% - 60px) / 3);
  line-height: 1;
}
.p-home__athlete-list-box a {
  position: relative;
  display: inline-block;
  line-height: 1;
  width: 100%;
  height: 300px;
}
.p-home__athlete-list-box a::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -1px;
  right: 0;
  background: #0d6c83;
  height: 110px;
  width: 100%;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  border-radius: 0 0 10px 15px;
}
.p-home__athlete-list-box a:hover {
  opacity: 0.9;
  -webkit-transition: opacity 0.5s ease-out;
  -moz-transition: opacity 0.5s ease-out;
  -ms-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
}
.p-home__athlete-list-box p {
  position: absolute;
  bottom: 0;
  right: 0;
  line-height: 1;
  font-size: 24px;
  color: #ffffff;
  padding: 0 20px 15px 0;
  text-align: center;
}
.p-home__athlete-list-box span {
  display: block;
  font-size: 12px;
  margin-bottom: 6px;
}
.p-home__athlete-list-box img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top;
  border-radius: 10px;
}
.p-home__athlete-list-box:not(:nth-of-type(1), :nth-of-type(2), :nth-of-type(3)) {
  margin-top: 30px;
}
@media (max-width: 768px) {
  .p-home__athlete-list-box {
    width: calc((100% - 10px) / 2);
  }
  .p-home__athlete-list-box a {
    height: 180px;
  }
  .p-home__athlete-list-box img {
    height: 180px;
  }
  .p-home__athlete-list-box p {
    font-size: 18px;
    text-align: right;
    padding: 0 15px 15px 0;
  }
  .p-home__athlete-list-box p span {
    font-size: 1;
  }
  .p-home__athlete-list-box:not(:nth-of-type(1), :nth-of-type(2)) {
    margin-top: 10px;
  }
}
.p-home__profile {
  position: relative;
}
.p-home__profile::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: #004860;
  height: clamp(43.438rem, 12.12rem + 50.11vw, 72.25rem);
  width: clamp(43.438rem, 12.12rem + 50.11vw, 72.25rem);
  clip-path: polygon(0% 0%, 100% 100%, 100% 0%);
}
@media (max-width: 768px) {
  .p-home__profile::before {
    height: clamp(21.875rem, 1.3rem + 87.79vw, 43.438rem);
    width: clamp(21.875rem, 1.3rem + 87.79vw, 43.438rem);
  }
}
.p-home__profile::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #0d6c83;
  height: clamp(15.75rem, -1.37rem + 27.39vw, 31.5rem);
  width: clamp(15.75rem, -1.37rem + 27.39vw, 31.5rem);
  clip-path: polygon(100% 100%, 0% 0%, 0% 100%);
}
@media (max-width: 768px) {
  .p-home__profile::after {
    width: clamp(7.5rem, -0.372rem + 33.59vw, 15.75rem);
    height: clamp(7.5rem, -0.372rem + 33.59vw, 15.75rem);
  }
}
.p-home__profile-history {
  display: flex;
  margin-bottom: 50px;
}
.p-home__profile-history-people {
  width: 220px;
  line-height: 1;
}
.p-home__profile-history-people p {
  font-size: 24px;
  text-align: center;
  line-height: 1;
  font-weight: bold;
  margin-top: 10px;
}
.p-home__profile-history-people p span {
  font-size: 12px;
  display: block;
  font-weight: normal;
  margin-bottom: 5px;
}
.p-home__profile-history-list {
  width: calc(99% - 240px);
  margin-left: 20px;
}
.p-home__profile-history-list-line {
  display: flex;
}
.p-home__profile-history-list-line-number {
  margin-right: 10px;
  width: 60px;
}
.p-home__profile-history-list-line-txt {
  width: calc(98% - 60px);
  mix-blend-mode: difference;
  color: #ffffff;
}
@media (max-width: 768px) {
  .p-home__profile-history {
    display: block;
    margin-bottom: 40px;
  }
  .p-home__profile-history-people {
    width: 100%;
    margin-bottom: 3%;
    text-align: center;
  }
  .p-home__profile-history-people p {
    font-size: 20px;
    text-align: center;
    line-height: 1;
    font-weight: bold;
    margin-top: 10px;
  }
  .p-home__profile-history-people p span {
    font-size: 14px;
    display: block;
    font-weight: normal;
    margin-bottom: 15px;
  }
  .p-home__profile-history-list {
    width: 100%;
    margin-left: 0;
  }
  .p-home__profile-history-list-line {
    display: block;
    margin-bottom: 10px;
  }
  .p-home__profile-history-list-line-number {
    margin-right: 0;
    width: 100%;
  }
  .p-home__profile-history-list-line-txt {
    width: 100%;
    mix-blend-mode: difference;
    color: #ffffff;
  }
}
.p-home__profile-txt {
  position: relative;
  z-index: 1;
  mix-blend-mode: difference;
  color: #ffffff;
}
.p-home__company {
  position: relative;
  background: #ffffff;
  z-index: 2;
}
.p-home__company::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: #252c3d;
  height: clamp(43.438rem, 12.12rem + 50.11vw, 72.25rem);
  width: clamp(43.438rem, 12.12rem + 50.11vw, 72.25rem);
  clip-path: polygon(0% 0%, 0% 100%, 100% 0%);
}
@media (max-width: 768px) {
  .p-home__company::before {
    height: clamp(21.875rem, 1.3rem + 87.79vw, 43.438rem);
    width: clamp(21.875rem, 1.3rem + 87.79vw, 43.438rem);
  }
}
.p-home__company-box {
  background: rgba(255, 255, 255, 0.95);
  padding: 60px 50px;
  border-radius: 10px;
  box-shadow: 0 0 5px #252c3d;
}
@media (max-width: 768px) {
  .p-home__company-box {
    padding: 30px 20px;
  }
}
.p-home__company-box-list {
  display: flex;
  font-size: 18px;
}
.p-home__company-box-list-ttl {
  width: 200px;
  font-weight: bold;
}
.p-home__company-box-list-txt {
  width: calc(100% - 200px);
}
@media (max-width: 768px) {
  .p-home__company-box-list {
    display: block;
    font-size: 16px;
  }
  .p-home__company-box-list-ttl {
    width: 100%;
  }
  .p-home__company-box-list-txt {
    width: 100%;
  }
}
.p-home__company-box-list:not(:last-child) {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .p-home__company-box-list:not(:last-child) {
    margin-bottom: 20px;
  }
}
.p-home__contact {
  position: relative;
}
.p-home__contact::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: #004860;
  height: clamp(43.438rem, 12.12rem + 50.11vw, 72.25rem);
  width: clamp(43.438rem, 12.12rem + 50.11vw, 72.25rem);
  clip-path: polygon(0% 0%, 100% 100%, 100% 0%);
}
@media (max-width: 768px) {
  .p-home__contact::before {
    height: clamp(21.875rem, 1.3rem + 87.79vw, 43.438rem);
    width: clamp(21.875rem, 1.3rem + 87.79vw, 43.438rem);
  }
}
.p-home__contact::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #0d6c83;
  height: clamp(15.75rem, -1.37rem + 27.39vw, 31.5rem);
  width: clamp(15.75rem, -1.37rem + 27.39vw, 31.5rem);
  clip-path: polygon(100% 100%, 0% 0%, 0% 100%);
}
@media (max-width: 768px) {
  .p-home__contact::after {
    width: clamp(7.5rem, -0.372rem + 33.59vw, 15.75rem);
    height: clamp(7.5rem, -0.372rem + 33.59vw, 15.75rem);
  }
}
.p-home__menu-list {
  height: auto;
  transition: 0.5s;
  margin-bottom: 20px;
}
.p-home__menu-list-ttl {
  cursor: pointer;
  border-radius: 20px;
  border: 1px solid #dccfb1;
  padding: 30px 40px;
  list-style: none;
  font-size: 20px;
  line-height: 1;
  transition: 0.5s;
  position: relative;
}
.p-home__menu-list-ttl::after {
  content: "";
  display: inline-block;
  background: url("https://cdn.shopify.com/s/files/1/0410/1783/5686/files/sangenjyaya_menu__btn--open.svg?v=1719230525") no-repeat top center/cover;
  width: 35px;
  height: 35px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.p-home__menu-list-ttl-eng {
  font-size: 14px;
  margin-bottom: 5px;
  color: #dccfb1;
}
.p-home__menu-list-ttl::-webkit-details-marker {
  display: none;
}
.p-home__menu-list-txt {
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 40px);
  padding: 30px 0;
  border-bottom: 1px solid #dccfb1;
  line-height: 1;
}
.p-home__menu-list-txt dt {
  display: flex;
  align-items: center;
}
.p-home__menu-list-txt dt img {
  width: 90px;
  margin-right: 10px;
}
.p-home__menu-list-txt dt span {
  display: block;
}
.p-home__menu-list-txt--last {
  border-bottom: none;
}
.p-home__menu-list-txt-note {
  font-size: 14px;
  margin-top: 5px;
}
.p-home__menu-list-txt-note span {
  display: inline-block !important;
}
.p-home__menu-list-txt-main {
  border: 2px solid #f9007d;
  color: #f9007d;
  box-sizing: border-box;
  font-size: 14px;
  padding: 2px 10px;
  margin-right: 10px;
  display: inline-block !important;
}
.p-home__menu-list-txt-eng {
  font-size: 12px;
  margin-bottom: 5px;
}
.p-home__menu-list-btn {
  text-align: center;
  margin-top: 20px;
}
.p-home__menu-list-btn a {
  display: inline-block;
}
@media (max-width: 768px) {
  .p-home__menu-list {
    margin-bottom: 10px;
  }
  .p-home__menu-list-ttl {
    padding: 15px;
    border-radius: 10px;
    font-size: 16px;
  }
  .p-home__menu-list-ttl::after {
    width: 20px;
    height: 20px;
    right: 15px;
  }
  .p-home__menu-list-txt {
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    width: calc(100% - 20px);
    padding: 15px 0;
    border-bottom: 1px solid #dccfb1;
    line-height: 1.5;
  }
  .p-home__menu-list-txt--last {
    border-bottom: none;
    font-size: 12px;
  }
  .p-home__menu-list-txt dt {
    max-width: 78%;
  }
  .p-home__menu-list-txt dt img {
    width: 74px;
  }
  .p-home__menu-list-txt-note {
    font-size: 12px;
  }
  .p-home__menu-list-txt-main {
    font-size: 10px;
    padding: 2px;
    margin-right: 5px;
  }
}
.p-home__menu-list[open] {
  height: auto;
}
.p-home__menu-list[open] .p-home__menu-list-ttl-eng {
  color: #ffffff;
}
.p-home__menu-list[open] > summary {
  background: #dccfb1;
}
.p-home__menu-list[open] > summary::after {
  background: url("https://cdn.shopify.com/s/files/1/0410/1783/5686/files/sangenjyaya_menu__btn--close.svg?v=1719230525") no-repeat top center/cover;
}

.p-athlete {
  position: relative;
}
.p-athlete::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: #004860;
  height: clamp(43.438rem, 12.12rem + 50.11vw, 72.25rem);
  width: clamp(43.438rem, 12.12rem + 50.11vw, 72.25rem);
  clip-path: polygon(0% 0%, 100% 100%, 100% 0%);
}
@media (max-width: 768px) {
  .p-athlete::before {
    height: clamp(21.875rem, 1.3rem + 87.79vw, 43.438rem);
    width: clamp(21.875rem, 1.3rem + 87.79vw, 43.438rem);
  }
}
.p-athlete::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #0d6c83;
  height: clamp(15.75rem, -1.37rem + 27.39vw, 31.5rem);
  width: clamp(15.75rem, -1.37rem + 27.39vw, 31.5rem);
  clip-path: polygon(100% 100%, 0% 0%, 0% 100%);
}
@media (max-width: 768px) {
  .p-athlete::after {
    width: clamp(7.5rem, -0.372rem + 33.59vw, 15.75rem);
    height: clamp(7.5rem, -0.372rem + 33.59vw, 15.75rem);
  }
}
.p-athlete-history {
  display: flex;
  margin-bottom: 65px;
}
.p-athlete-history-people {
  width: 220px;
  line-height: 1;
}
.p-athlete-history-people img {
  width: 100%;
  max-width: 400px;
  height: 220px;
  object-fit: cover;
  object-position: top;
  border-radius: 10px;
}
.p-athlete-history-people p {
  font-size: 24px;
  text-align: center;
  line-height: 1;
  font-weight: bold;
  margin-top: 10px;
}
.p-athlete-history-people p span {
  font-size: 12px;
  display: block;
  font-weight: normal;
  margin-bottom: 5px;
}
.p-athlete-history-list {
  width: calc(99% - 240px);
  margin-left: 20px;
}
.p-athlete-history-list-line {
  display: flex;
  margin-bottom: 5px;
}
.p-athlete-history-list-line-number {
  margin-right: 10px;
  width: 160px;
  font-weight: bold;
}
.p-athlete-history-list-line-txt {
  width: calc(98% - 160px);
  mix-blend-mode: difference;
  color: #ffffff;
}
@media (max-width: 768px) {
  .p-athlete-history {
    display: block;
    margin-bottom: 40px;
  }
  .p-athlete-history-people {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
  }
  .p-athlete-history-people img {
    height: 180px;
  }
  .p-athlete-history-people p {
    font-size: 20px;
    text-align: center;
    line-height: 1;
    font-weight: bold;
    margin-top: 10px;
  }
  .p-athlete-history-people p span {
    font-size: 14px;
    display: block;
    font-weight: normal;
  }
  .p-athlete-history-list {
    width: 100%;
    margin-left: 0;
  }
  .p-athlete-history-list-line {
    margin-bottom: 10px;
  }
  .p-athlete-history-list-line-number {
    margin-right: 0;
  }
  .p-athlete-history-list-line-txt {
    mix-blend-mode: difference;
    color: #ffffff;
  }
}
.p-athlete-txt {
  position: relative;
  z-index: 1;
  mix-blend-mode: difference;
  color: #ffffff;
}
.p-athlete-txt h4 {
  font-size: 20px;
}

.c-inner {
  width: calc(100% - 40px);
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

@media (max-width: 1000px) {
  .c-inner {
    width: calc(100% - 40px);
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
  }
}
.c-cnt {
  padding: 160px 0 260px;
  position: relative;
}

@media (max-width: 768px) {
  .c-cnt {
    padding: 50px 0;
  }
}
.c-cnt__txt--large {
  font-size: 60px;
  line-height: 1.3;
}
.c-cnt__txt--large::before, .c-cnt__txt--large::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.c-cnt__txt--large::before {
  margin-top: calc((1 - 1.3) * 0.5em);
}
.c-cnt__txt--large::after {
  margin-bottom: calc((1 - 1.3) * 0.5em);
}
.c-cnt__txt--middle {
  font-size: 18px;
}
.c-cnt__txt--middle::before, .c-cnt__txt--middle::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.c-cnt__txt--middle::before {
  margin-top: calc((1 - 1.75) * 0.5em);
}
.c-cnt__txt--middle::after {
  margin-bottom: calc((1 - 1.75) * 0.5em);
}
.c-cnt__txt--small {
  font-size: 16px;
}
.c-cnt__txt--small::before, .c-cnt__txt--small::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.c-cnt__txt--small::before {
  margin-top: calc((1 - 1.75) * 0.5em);
}
.c-cnt__txt--small::after {
  margin-bottom: calc((1 - 1.75) * 0.5em);
}
.c-cnt__txt--note {
  font-size: 14px;
  display: block;
}
.c-cnt__txt--beige {
  color: #dccfb1;
}
.c-cnt__txt--white {
  color: #ffffff;
}
.c-cnt__txt--black {
  color: #000000;
}
.c-cnt__txt--right {
  text-align: right;
}
.c-cnt__txt--bold {
  font-weight: bold;
}
.c-cnt__txt--lightblue {
  color: #0d6c83;
}
.c-cnt__txt--blue {
  color: #004860;
}
.c-cnt__txt--deebblue {
  color: #252c3d;
}
@media (max-width: 768px) {
  .c-cnt__txt--large {
    font-size: 30px;
  }
  .c-cnt__txt--large::before, .c-cnt__txt--large::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
  }
  .c-cnt__txt--large::before {
    margin-top: calc((1 - 1.75) * 0.5em);
  }
  .c-cnt__txt--large::after {
    margin-bottom: calc((1 - 1.75) * 0.5em);
  }
  .c-cnt__txt--middle {
    font-size: 18px;
  }
  .c-cnt__txt--middle::before, .c-cnt__txt--middle::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
  }
  .c-cnt__txt--middle::before {
    margin-top: calc((1 - 1.75) * 0.5em);
  }
  .c-cnt__txt--middle::after {
    margin-bottom: calc((1 - 1.75) * 0.5em);
  }
  .c-cnt__txt--small {
    font-size: 14px;
  }
  .c-cnt__txt--small::before, .c-cnt__txt--small::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
  }
  .c-cnt__txt--small::before {
    margin-top: calc((1 - 1.75) * 0.5em);
  }
  .c-cnt__txt--small::after {
    margin-bottom: calc((1 - 1.75) * 0.5em);
  }
}
.c-cnt__ttl {
  font-size: clamp(2.5rem, -1.638rem + 8.62vw, 3.75rem);
  margin-bottom: 130px;
}
.c-cnt__ttl::before, .c-cnt__ttl::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.c-cnt__ttl::before {
  margin-top: calc((1 - 1.75) * 0.5em);
}
.c-cnt__ttl::after {
  margin-bottom: calc((1 - 1.75) * 0.5em);
}
.c-cnt__ttl p {
  font-size: 14px;
}
@media (max-width: 768px) {
  .c-cnt__ttl {
    margin-bottom: 30px;
  }
}

.c-flex {
  display: flex;
}

.c-flex__between {
  justify-content: space-between;
}

.c-flex__top {
  align-items: flex-start;
}

.c-flex__center {
  align-items: center;
}

@media (max-width: 768px) {
  .c-flex__j-center--sp {
    justify-content: center;
  }
  .c-flex__block--sp {
    display: block;
  }
}
.c-hidden-pc {
  display: none;
}

@media (max-width: 1000px) {
  .c-hidden-pc {
    display: block;
  }
  .c-hidden-sp {
    display: none;
  }
}
@media (max-width: 768px) {
  .c-hidden-pc {
    display: block;
  }
  .c-hidden-sp {
    display: none;
  }
}
.u-color__pink {
  color: #f9007d;
}

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

.u-position--left {
  text-align: left;
}

@media (max-width: 768px) {
  .u-position--cente--sp {
    text-align: center;
  }
}
.u-mt-0 {
  margin-top: 0px;
}
.u-mt-20 {
  margin-top: 20px;
}
.u-mt-30 {
  margin-top: 30px;
}
.u-mt-40 {
  margin-top: 40px;
}
.u-mt-50 {
  margin-top: 50px;
}
.u-mt-60 {
  margin-top: 60px;
}
.u-mt-80 {
  margin-top: 80px;
}
.u-mt-100 {
  margin-top: 100px;
}
.u-mt-210 {
  margin-top: 210px;
}
.u-mr-0 {
  margin-right: 0px;
}
.u-mr-20 {
  margin-right: 20px;
}
.u-mr-30 {
  margin-right: 30px;
}
.u-mr-40 {
  margin-right: 40px;
}
.u-mr-50 {
  margin-right: 50px;
}
.u-mr-60 {
  margin-right: 60px;
}
.u-mr-80 {
  margin-right: 80px;
}
.u-mr-100 {
  margin-right: 100px;
}
.u-mr-210 {
  margin-right: 210px;
}
.u-mb-0 {
  margin-bottom: 0px;
}
.u-mb-20 {
  margin-bottom: 20px;
}
.u-mb-30 {
  margin-bottom: 30px;
}
.u-mb-40 {
  margin-bottom: 40px;
}
.u-mb-50 {
  margin-bottom: 50px;
}
.u-mb-60 {
  margin-bottom: 60px;
}
.u-mb-80 {
  margin-bottom: 80px;
}
.u-mb-100 {
  margin-bottom: 100px;
}
.u-mb-210 {
  margin-bottom: 210px;
}
.u-ml-0 {
  margin-left: 0px;
}
.u-ml-20 {
  margin-left: 20px;
}
.u-ml-30 {
  margin-left: 30px;
}
.u-ml-40 {
  margin-left: 40px;
}
.u-ml-50 {
  margin-left: 50px;
}
.u-ml-60 {
  margin-left: 60px;
}
.u-ml-80 {
  margin-left: 80px;
}
.u-ml-100 {
  margin-left: 100px;
}
.u-ml-210 {
  margin-left: 210px;
}

.u-pt-0 {
  padding-top: 0px;
}
.u-pt-20 {
  padding-top: 20px;
}
.u-pt-30 {
  padding-top: 30px;
}
.u-pt-40 {
  padding-top: 40px;
}
.u-pt-50 {
  padding-top: 50px;
}
.u-pt-60 {
  padding-top: 60px;
}
.u-pt-80 {
  padding-top: 80px;
}
.u-pt-100 {
  padding-top: 100px;
}
.u-pt-210 {
  padding-top: 210px;
}
.u-pt-340 {
  padding-top: 340px;
}
.u-pr-0 {
  padding-right: 0px;
}
.u-pr-20 {
  padding-right: 20px;
}
.u-pr-30 {
  padding-right: 30px;
}
.u-pr-40 {
  padding-right: 40px;
}
.u-pr-50 {
  padding-right: 50px;
}
.u-pr-60 {
  padding-right: 60px;
}
.u-pr-80 {
  padding-right: 80px;
}
.u-pr-100 {
  padding-right: 100px;
}
.u-pr-210 {
  padding-right: 210px;
}
.u-pr-340 {
  padding-right: 340px;
}
.u-pb-0 {
  padding-bottom: 0px;
}
.u-pb-20 {
  padding-bottom: 20px;
}
.u-pb-30 {
  padding-bottom: 30px;
}
.u-pb-40 {
  padding-bottom: 40px;
}
.u-pb-50 {
  padding-bottom: 50px;
}
.u-pb-60 {
  padding-bottom: 60px;
}
.u-pb-80 {
  padding-bottom: 80px;
}
.u-pb-100 {
  padding-bottom: 100px;
}
.u-pb-210 {
  padding-bottom: 210px;
}
.u-pb-340 {
  padding-bottom: 340px;
}
.u-pl-0 {
  padding-left: 0px;
}
.u-pl-20 {
  padding-left: 20px;
}
.u-pl-30 {
  padding-left: 30px;
}
.u-pl-40 {
  padding-left: 40px;
}
.u-pl-50 {
  padding-left: 50px;
}
.u-pl-60 {
  padding-left: 60px;
}
.u-pl-80 {
  padding-left: 80px;
}
.u-pl-100 {
  padding-left: 100px;
}
.u-pl-210 {
  padding-left: 210px;
}
.u-pl-340 {
  padding-left: 340px;
}

@media (max-width: 768px) {
  .u-mt-0--sp {
    margin-top: 0px;
  }
  .u-mt-10--sp {
    margin-top: 10px;
  }
  .u-mt-20--sp {
    margin-top: 20px;
  }
  .u-mt-30--sp {
    margin-top: 30px;
  }
  .u-mt-40--sp {
    margin-top: 40px;
  }
  .u-mt-50--sp {
    margin-top: 50px;
  }
  .u-mt-60--sp {
    margin-top: 60px;
  }
  .u-mt-80--sp {
    margin-top: 80px;
  }
  .u-mt-100--sp {
    margin-top: 100px;
  }
  .u-mr-0--sp {
    margin-right: 0px;
  }
  .u-mr-10--sp {
    margin-right: 10px;
  }
  .u-mr-20--sp {
    margin-right: 20px;
  }
  .u-mr-30--sp {
    margin-right: 30px;
  }
  .u-mr-40--sp {
    margin-right: 40px;
  }
  .u-mr-50--sp {
    margin-right: 50px;
  }
  .u-mr-60--sp {
    margin-right: 60px;
  }
  .u-mr-80--sp {
    margin-right: 80px;
  }
  .u-mr-100--sp {
    margin-right: 100px;
  }
  .u-mb-0--sp {
    margin-bottom: 0px;
  }
  .u-mb-10--sp {
    margin-bottom: 10px;
  }
  .u-mb-20--sp {
    margin-bottom: 20px;
  }
  .u-mb-30--sp {
    margin-bottom: 30px;
  }
  .u-mb-40--sp {
    margin-bottom: 40px;
  }
  .u-mb-50--sp {
    margin-bottom: 50px;
  }
  .u-mb-60--sp {
    margin-bottom: 60px;
  }
  .u-mb-80--sp {
    margin-bottom: 80px;
  }
  .u-mb-100--sp {
    margin-bottom: 100px;
  }
  .u-ml-0--sp {
    margin-left: 0px;
  }
  .u-ml-10--sp {
    margin-left: 10px;
  }
  .u-ml-20--sp {
    margin-left: 20px;
  }
  .u-ml-30--sp {
    margin-left: 30px;
  }
  .u-ml-40--sp {
    margin-left: 40px;
  }
  .u-ml-50--sp {
    margin-left: 50px;
  }
  .u-ml-60--sp {
    margin-left: 60px;
  }
  .u-ml-80--sp {
    margin-left: 80px;
  }
  .u-ml-100--sp {
    margin-left: 100px;
  }
  .u-pt-0--sp {
    padding-top: 0px;
  }
  .u-pt-20--sp {
    padding-top: 20px;
  }
  .u-pt-30--sp {
    padding-top: 30px;
  }
  .u-pt-40--sp {
    padding-top: 40px;
  }
  .u-pt-50--sp {
    padding-top: 50px;
  }
  .u-pt-60--sp {
    padding-top: 60px;
  }
  .u-pt-80--sp {
    padding-top: 80px;
  }
  .u-pt-100--sp {
    padding-top: 100px;
  }
  .u-pt-210--sp {
    padding-top: 210px;
  }
  .u-pt-340--sp {
    padding-top: 340px;
  }
}/*# sourceMappingURL=style.css.map */