@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;600&display=swap");
/* CSS Document */
.facebook-wrapper {
  max-width: 500px; /* Facebook Page Plugin の最大幅 */
  margin: 0 auto;
}

.facebook-wrapper > .fb-page {
  width: 100%;
}

.facebook-wrapper > .fb-page > span,
.facebook-wrapper iframe {
  width: 100% !important;
}

.fadein {
  opacity: 0;
  transition-delay: 0.2s;
  transition-duration: 1s;
}

.fadein_t {
  opacity: 0;
  transition-duration: 1s;
  transform: translateY(12px);
}

.fadein_b {
  opacity: 0;
  transition-duration: 1s;
  transform: translateY(-10px);
}

.fadein_l {
  opacity: 0;
  transition-delay: 0.2s;
  transition-duration: 1s;
  transform: translateX(-10px);
}

.fadein_r {
  opacity: 0;
  transition-delay: 0.2s;
  transition-duration: 1s;
  transform: translateX(10px);
}

.blur_in {
  opacity: 0;
  transition-delay: 0.2s;
  transition-duration: 1s;
  transform: translateX(10px);
}

.fadein.on,
.fadein_t.on,
.fadein_b.on,
.fadein_l.on,
.fadein_r.on {
  opacity: 1;
  transform: translateY(0px);
  transform: translateX(0px);
}

.deco-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  pointer-events: none;
  stroke-linecap: round;
  stroke-width: 8px;
}
.deco-wrap .deco {
  position: absolute;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
.deco-wrap svg {
  position: absolute;
}
.deco-wrap .line-l {
  width: 100px;
  height: 100px;
  stroke-linejoin: round;
}
.deco-wrap .line-s {
  width: 55px;
  height: 55px;
  stroke-linejoin: round;
  stroke-width: 8px;
}
.deco-wrap .dot-l {
  stroke-width: 7px;
  stroke-dasharray: 0 15.74;
  width: 80px;
  height: 80px;
}
.deco-wrap .dot-s {
  stroke-width: 7px;
  stroke-dasharray: 0 15.74;
  width: 40px;
  height: 40px;
}
.deco-wrap .zig-l {
  stroke-width: 9px;
  width: 70px;
  height: 70px;
  fill: none;
}
.deco-wrap .zig-s {
  stroke-width: 6px;
  width: 60px;
  height: 60px;
  fill: none;
}
.deco-wrap .reverse {
  transform: scale(-1, -1);
}
.deco-wrap .blue {
  stroke: #1f8adb;
}
.deco-wrap .red {
  stroke: #f05654;
}
.deco-wrap .green {
  stroke: #09ae6f;
}
.deco-wrap .orenge {
  stroke: #f08437;
}

@-webkit-keyframes rotateleft {
  0% {
    transform: rotate(-15deg);
  }
  50% {
    transform: rotate(-15deg);
  }
  51% {
    transform: rotate(15deg);
  }
  100% {
    transform: rotate(15deg);
  }
}

@keyframes rotateleft {
  0% {
    transform: rotate(-15deg);
  }
  50% {
    transform: rotate(-15deg);
  }
  51% {
    transform: rotate(15deg);
  }
  100% {
    transform: rotate(15deg);
  }
}
@-webkit-keyframes rotateright {
  0% {
    transform: rotate(15deg);
  }
  50% {
    transform: rotate(15deg);
  }
  51% {
    transform: rotate(-15deg);
  }
  100% {
    transform: rotate(-15deg);
  }
}
@keyframes rotateright {
  0% {
    transform: rotate(15deg);
  }
  50% {
    transform: rotate(15deg);
  }
  51% {
    transform: rotate(-15deg);
  }
  100% {
    transform: rotate(-15deg);
  }
}
/* FONT size
---------------------------------------------------------------------
[ px ]	[ % ]
10px 	72  %		19px 	136 %
11px 	79  %		20px 	143 %
12px 	86 %		21px 	150 %
13px 	93 %		22px 	158 %
14px 	100 %		23px 	165 %
15px 	108 %		24px 	172 %
16px 	115 %		25px 	179 %
17px 	122 %		26px 	186 %
18px 	129 %
---------------------------------------------------------------------*/
.img-box img {
  max-width: 100%;
  max-height: 100%;
}

main a {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.btn:hover {
  cursor: pointer;
}

body {
  overflow: auto;
}

.hiddenArea {
  width: 100%;
  overflow: hidden;
}

@media screen and (min-width: 768px), print {
  body {
    min-width: 1080px;
  }
  main {
    position: relative;
  }
  main .main-border {
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  main .main-border div {
    border-radius: 13px;
  }
  main .main-border .top-border01 {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 90%;
    height: 13px;
    background-color: #f05654;
  }
  main .main-border .top-border02 {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    width: 50%;
    height: 13px;
    background-color: #1f8adb;
  }
  main .main-border .left-border {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
  }
  main .main-border .left-border div {
    width: 13px;
    height: calc(11.1111111111% + 13px);
    background-color: #09ae6f;
  }
  main .main-border .left-border div + div {
    margin-top: -13px;
  }
  main .main-border .left-border div:nth-child(3n+2) {
    background-color: #1f8adb;
  }
  main .main-border .left-border div:nth-child(3n) {
    background-color: #f08437;
  }
  main .main-border .right-border {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
  }
  main .main-border .right-border div {
    margin-right: 0;
    margin-left: auto;
    width: 13px;
    height: calc(11.1111111111% + 13px);
    background-color: #f08437;
  }
  main .main-border .right-border div + div {
    margin-top: -13px;
  }
  main .main-border .right-border div:nth-child(3n+2) {
    background-color: #09ae6f;
  }
  main .main-border .right-border div:nth-child(3n) {
    background-color: #f05654;
  }
  main .deco-wrap .deco01 {
    width: 100px;
    top: -20px;
    left: 20%;
  }
  main .deco-wrap .deco02 {
    top: 480px;
    left: -10px;
  }
  main .deco-wrap .deco03 {
    top: 400px;
    right: -10px;
  }
  main .deco-wrap .deco04 {
    top: 1275px;
    left: -10px;
  }
  main .deco-wrap .deco05 {
    top: 1600px;
    right: -5px;
  }
  main .deco-wrap .deco06 {
    top: 3400px;
    right: -10px;
  }
  main .deco-wrap .deco07 {
    top: 4450px;
    left: -10px;
  }
  main .deco-wrap .deco08 {
    top: 4200px;
    right: -7px;
  }
  main .deco-wrap .deco09 {
    top: 8580px;
    left: -7px;
  }
  main .deco-wrap .deco10 {
    top: 7275px;
    right: 8px;
  }
  main .deco-wrap .deco11 {
    top: 8800px;
    left: -7px;
  }
  main .deco-wrap .deco12 {
    top: 10065px;
    right: 8px;
  }
  main .deco-wrap .deco13 {
    top: 9800px;
    right: 40px;
  }
  main .deco-wrap .deco14 {
    top: 90px;
    left: 330px;
  }
  main .deco-wrap .deco15 {
    top: 850px;
    right: 130px;
  }
  main .deco-wrap .deco16 {
    top: 1050px;
    left: 40px;
  }
  main .deco-wrap .deco17 {
    top: 570px;
    right: 300px;
  }
  main .deco-wrap .deco18 {
    top: 400px;
    left: -20px;
  }
  main .deco-wrap .deco19 {
    top: 650px;
    right: 420px;
  }
  main .deco-wrap .deco20 {
    top: 1240px;
    left: -50px;
  }
  main .deco-wrap .deco21 {
    top: 1100px;
    right: 90px;
  }
  main .deco-wrap .deco22 {
    top: 420px;
    right: 420px;
  }
  main .deco-wrap .deco23 {
    top: 1290px;
    left: -50px;
  }
  main .deco-wrap .deco24 {
    top: 1180px;
    right: 90px;
  }
  main .deco-wrap .deco25 {
    top: 580px;
    right: 420px;
  }
  main .deco-wrap .deco26 {
    top: 1600px;
    left: -60px;
  }
  main .deco-wrap .deco27 {
    top: 2300px;
    left: 100px;
  }
  #footer {
    position: relative;
    z-index: 100;
  }
  .wrap {
    width: 1040px;
    margin: auto;
    position: relative;
  }
  .sec01 {
    background-image: url(../img/bg01.jpg);
    background-repeat: repeat;
    background-size: 21px;
    padding-bottom: 110px;
    position: relative;
    z-index: 1;
  }
  .sec02 {
    background-image: url(../img/bg02.jpg);
    background-repeat: repeat;
    background-size: 29px;
    padding: 100px 0;
    position: relative;
    z-index: 1;
  }
  .main-area {
    padding: 80px 0;
    position: relative;
  }
  .main-area .main-tit {
    width: 514px;
    height: 346px;
    margin: auto;
    position: relative;
  }
  .main-area .main-tit .txt {
    position: absolute;
    top: 90px;
    left: 90px;
    opacity: 0;
    -webkit-animation: pop 0.6s cubic-bezier(0.65, -0.06, 0.24, 1.39) forwards;
            animation: pop 0.6s cubic-bezier(0.65, -0.06, 0.24, 1.39) forwards;
  }
  @-webkit-keyframes pop {
    0% {
      transform: scale(0.7);
      opacity: 0;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }
  @keyframes pop {
    0% {
      transform: scale(0.7);
      opacity: 0;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }
  .main-area .main-tit .sp-img {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-animation: pop2 0.7s 0.5s cubic-bezier(0.42, 0, 0.21, 1.66) forwards;
            animation: pop2 0.7s 0.5s cubic-bezier(0.42, 0, 0.21, 1.66) forwards;
  }
  @-webkit-keyframes pop2 {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes pop2 {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .main-area .lead {
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    margin-top: 30px;
  }
  .main-area .wrap {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    display: flex;
    justify-content: space-between;
  }
  .main-area .wrap .per {
    width: 220px;
    position: relative;
  }
  .main-area .wrap .per.per02 {
    width: 250px;
  }
  .main-area .wrap .per .huki {
    width: 95px;
    height: 95px;
    background-size: contain;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .main-area .wrap .per .huki p {
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
    margin-left: 3px;
    color: #06007d;
  }
  .main-area .wrap .per01 .huki {
    background-image: url(../img/main_huki-l.png);
    top: -15px;
    left: -75px;
  }
  .main-area .wrap .per02 .huki {
    background-image: url(../img/main_huki-r.png);
    top: 15px;
    right: -65px;
  }
  .icons-wrap {
    pointer-events: none;
    min-width: 1300px;
    width: 100%;
    height: 100%;
    margin: auto;
    position: absolute;
    z-index: 10;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .icons-wrap .icons {
    margin: auto;
    width: calc(50% - 207px);
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
  }
  .icons-wrap .icons.icons01 {
    left: -25px;
    padding-right: 4%;
  }
  .icons-wrap .icons.icons02 {
    right: -15px;
    left: auto;
    padding-left: 4%;
  }
  .icons-wrap .icons .icon {
    width: 85px;
    height: 85px;
  }
  .icons-wrap .icons .icon:nth-child(2n+1) {
    margin-top: 110px;
    -webkit-animation: rotateleft 1.5s ease infinite;
            animation: rotateleft 1.5s ease infinite;
  }
  .icons-wrap .icons .icon:nth-child(2n) {
    margin-top: 200px;
    -webkit-animation: rotateright 1.5s ease infinite;
            animation: rotateright 1.5s ease infinite;
  }
  .sns-container + .sns-container {
    margin-top: 80px;
  }
  .sns-container .tit-area {
    width: 100%;
    height: 77px;
    background-color: #1f8adb;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    position: relative;
    z-index: 0;
    display: flex;
    flex-direction: row-reverse;
  }
  .sns-container .tit-area + .tit-area {
    margin-top: 20px;
  }
  .sns-container .tit-area .tit {
    position: absolute;
    width: 146px;
    height: 33px;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  .sns-container .tit-area .tit-en {
    position: absolute;
    width: 276px;
    height: 40px;
    top: -26px;
    right: 0;
    left: 0;
    margin: auto;
    z-index: -1;
  }
  .sns-container .tit-area .link-area {
    display: flex;
    flex-direction: row;
    height: 100%;
    align-items: center;
    gap: 13px;
    padding-right: 13px;
    flex-wrap: wrap;
  }
  .sns-container .tit-area .link-area .qr-area {
    display: flex;
    gap: 13px;
  }
  .sns-container .tit-area .link-area .qr-area > div {
    box-shadow: rgba(51, 51, 51, 0.3) 0px 0px 10px;
  }
  .sns-container .tit-area .link-area .qr-area .qr {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: 57px;
    background-color: white;
    border-radius: 6px;
    overflow: hidden;
  }
  .sns-container .tit-area .link-area .qr-area .qr a {
    display: flex;
    align-items: center;
  }
  .sns-container .tit-area .link-area .qr-area .qr span {
    margin-right: 5px;
    letter-spacing: 0.05em;
    color: #06007d;
    font-weight: 600;
    font-family: "Noto Sans", sans-serif;
  }
  .sns-container .tit-area .link-area .qr-area .qr .icon {
    display: inline-block;
    width: 25px;
    margin: auto 7px auto 8px;
  }
  .sns-container .tit-area .link-area .qr-area .qr .qr-img {
    width: 57px;
  }
  .sns-container .tit-area .link-area .site {
    width: 166px;
    height: 57px;
    background-color: #ffe84c;
    border-radius: 8px;
    box-shadow: rgba(51, 51, 51, 0.3) 0px 0px 10px;
  }
  .sns-container .tit-area .link-area .site a {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    height: inherit;
  }
  .sns-container .tit-area .link-area .site .txt {
    display: flex;
    align-items: center;
    width: 80px;
    height: inherit;
  }
  .sns-container .tit-area .link-area .site .arrow {
    display: flex;
    align-items: center;
    width: 6px;
    height: inherit;
  }
  .sns-container .sns-wrap {
    background-color: white;
    padding: 15px 0;
    box-sizing: border-box;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
  }
  .sns-container .sns-wrap .kind {
    margin: auto;
  }
  .sns-container .sns-wrap .kind.inst {
    background-image: url(../img/instagram.png);
    width: 127px;
    height: 20px;
    background-size: contain;
  }
  .sns-container .sns-wrap .kind.facebook {
    background-image: url(../img/facebook.png);
    width: 127px;
    height: 20px;
    background-size: contain;
  }
  .sns-container .sns-wrap .sns-content {
    margin: auto;
    margin-top: 15px;
    width: 100%;
    padding: 0 35px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .sns-container .sns-wrap .sns-content .fb-page {
    width: 500px;
    height: 565px;
    padding: 0;
  }
  .sns-container .sns-wrap .sns-content .iOS_image {
    display: none;
  }
  .sns-container .sns-wrap .sns-content ul {
    width: 100%;
    display: grid;
    gap: 5px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .sns-container .sns-wrap .sns-content ul li {
    width: inherit;
    aspect-ratio: 1/1;
  }
  .sns-container .sns-wrap .sns-content ul li a {
    display: block;
    width: inherit;
    height: 100%;
    position: relative;
  }
  .sns-container .sns-wrap .sns-content ul li a img {
    width: inherit;
    height: inherit;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .sns-container .sns-wrap .more {
    width: 263px;
    margin: 30px auto 35px;
    position: relative;
    z-index: 1;
  }
  .sns-container .sns-wrap .more a {
    display: block;
    transition: transform 0.4s ease;
  }
  .sns-container .sns-wrap .more::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    bottom: -2px;
    left: 0;
    background-color: rgba(33, 33, 33, 0.3);
    filter: blur(6px);
  }
  .sns-container .sns-wrap .more:hover a {
    transform: translateY(2px);
  }
  .official .tit-area {
    background-color: #1f8adb;
  }
  .dining .tit-area {
    background-color: #09ae6f;
    position: relative;
  }
  .dining .tit-area .pht {
    width: 140px;
    position: absolute;
  }
  .dining .tit-area .pht01 {
    top: 0;
    left: -70px;
  }
  .dining .tit-area .pht02 {
    top: -70px;
    left: 90px;
  }
  .dining .tit-area .pht03 {
    top: -55px;
    right: 210px;
  }
  .dining .tit-area .pht04 {
    top: 47px;
    right: -120px;
  }
  .club-area {
    position: relative;
  }
  .club-area .tit-wrap {
    display: flex;
    justify-content: space-between;
  }
  .club-area .tit-wrap h3 {
    width: 190px;
    margin: 0 63px;
    flex-shrink: 0;
  }
  .club-area .tit-wrap .icons {
    width: 100%;
    margin-bottom: -20px;
    display: flex;
    justify-content: space-between;
  }
  .club-area .tit-wrap .icons .icon {
    width: 100px;
  }
  .club-area .tit-wrap .icons .icon:nth-child(2n) {
    position: relative;
    bottom: 35px;
  }
  .club-area .tit-wrap .icons01 .icon:nth-child(2n+1) {
    -webkit-animation: rotateleft 1.6s ease infinite;
            animation: rotateleft 1.6s ease infinite;
  }
  .club-area .tit-wrap .icons01 .icon:nth-child(2n) {
    -webkit-animation: rotateright 1.6s ease infinite;
            animation: rotateright 1.6s ease infinite;
  }
  .club-area .tit-wrap .icons02 .icon:nth-child(2n+1) {
    -webkit-animation: rotateright 1.6s ease infinite;
            animation: rotateright 1.6s ease infinite;
  }
  .club-area .tit-wrap .icons02 .icon:nth-child(2n) {
    -webkit-animation: rotateleft 1.6s ease infinite;
            animation: rotateleft 1.6s ease infinite;
  }
  .club-area .blog-area {
    width: 1035px;
    height: 178px;
    margin: auto;
    margin-top: 110px;
    padding: 30px 0 40px;
    box-sizing: border-box;
    position: relative;
  }
  .club-area .blog-area span {
    position: absolute;
    height: 100%;
    top: 0;
    display: block;
  }
  .club-area .blog-area span.border-r {
    right: 0;
    width: 50%;
    height: inherit;
    overflow: hidden;
  }
  .club-area .blog-area span.border-r::after {
    content: "";
    display: block;
    box-sizing: border-box;
    width: 1035px;
    height: inherit;
    position: absolute;
    top: 0;
    right: 0;
    border: solid 3px #f08437;
    border-radius: 9px;
  }
  .club-area .blog-area span.border-r .border-half {
    width: 100%;
    height: inherit;
    position: relative;
  }
  .club-area .blog-area span.border-r .border-half::before {
    content: "";
    display: block;
    width: calc(100% - 9px);
    box-sizing: border-box;
    border-bottom: solid 3px #f05654;
    position: absolute;
    top: 0;
    right: 9px;
    z-index: 1;
  }
  .club-area .blog-area span.border-r .border-half::after {
    content: "";
    display: block;
    width: calc(100% - 9px);
    box-sizing: border-box;
    border-bottom: solid 3px #f05654;
    position: absolute;
    bottom: 0;
    right: 9px;
    z-index: 1;
  }
  .club-area .blog-area span.border-l {
    left: 0;
    width: 50%;
    height: inherit;
    overflow: hidden;
  }
  .club-area .blog-area span.border-l::after {
    content: "";
    display: block;
    box-sizing: border-box;
    width: 1035px;
    height: inherit;
    position: absolute;
    top: 0;
    left: 0;
    border: solid 3px #f05654;
    border-radius: 9px;
  }
  .club-area .blog-area span.border-l .border-half {
    width: 100%;
    height: inherit;
    position: relative;
  }
  .club-area .blog-area span.border-l .border-half::before {
    content: "";
    display: block;
    width: calc(100% - 9px);
    box-sizing: border-box;
    border-bottom: solid 3px #f08437;
    position: absolute;
    top: 0;
    left: 9px;
    z-index: 1;
  }
  .club-area .blog-area span.border-l .border-half::after {
    content: "";
    display: block;
    width: calc(100% - 9px);
    box-sizing: border-box;
    border-bottom: solid 3px #f08437;
    position: absolute;
    bottom: 0;
    left: 9px;
    z-index: 1;
  }
  .club-area .blog-area::before {
    content: "";
    display: block;
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    background-color: white;
    position: absolute;
    top: 8px;
    left: 8px;
    border-radius: 4px;
  }
  .club-area .blog-area .content {
    position: relative;
    z-index: 10;
  }
  .club-area .blog-area .content .tit {
    width: 127px;
    margin: auto;
  }
  .club-area .blog-area .content .btn-wrap {
    height: 100%;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }
  .club-area .blog-area .content .btn-wrap .btn {
    width: 250px;
    position: relative;
  }
  .club-area .blog-area .content .btn-wrap .btn a {
    display: block;
    transition: transform 0.4s ease;
  }
  .club-area .blog-area .content .btn-wrap .btn::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    bottom: -2px;
    left: 0;
    background-color: rgba(33, 33, 33, 0.3);
    filter: blur(6px);
  }
  .club-area .blog-area .content .btn-wrap .btn:hover a {
    transform: translateY(2px);
  }
  .club-area .blog-area .pht {
    width: 235px;
    position: absolute;
    z-index: 20;
    bottom: 3px;
  }
  .club-area .blog-area .pht.athletic {
    left: 30px;
  }
  .club-area .blog-area .pht.culture {
    right: -20px;
  }
  .club-area .sns-area .sns-container:nth-child(2n+1) .tit-area {
    background-color: #f08437;
  }
  .club-area .sns-area .sns-container:nth-child(2n+1) .sns-l {
    width: 800px;
    margin-left: auto;
    margin-right: 0;
  }
  .club-area .sns-area .sns-container:nth-child(2n+1) .huki p {
    color: #f08437;
  }
  .club-area .sns-area .sns-container:nth-child(2n) .tit-area {
    background-color: #f05654;
  }
  .club-area .sns-area .sns-container:nth-child(2n) .sns-l {
    width: 800px;
    margin-left: 0;
    margin-right: auto;
  }
  .club-area .sns-area .sns-container:nth-child(2n) .huki p {
    color: #f05654;
  }
  .club-area .sns-area .sns-container {
    margin-top: 75px;
    position: relative;
    z-index: 500;
  }
  .club-area .sns-area .sns-container .tit-area .tit {
    width: auto;
    height: 35px;
    margin-left: 30px;
    pointer-events: none;
  }
  .club-area .sns-area .sns-container .sns-wrap {
    position: relative;
    min-height: 678px;
  }
  .club-area .sns-area .sns-container .sns-wrap .sns-l {
    width: 800px;
  }
  .club-area .sns-area .sns-container .sns-wrap .sns-l .sns-content ul {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .club-area .sns-area .sns-container .pht {
    position: absolute;
    width: 240px;
  }
  .club-area .sns-area .sns-container .huki {
    position: absolute;
    z-index: 0;
    width: 95px;
    height: 95px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .club-area .sns-area .sns-container .huki::before {
    content: "";
    display: block;
    width: inherit;
    height: inherit;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
  }
  .club-area .sns-area .sns-container .huki p {
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    line-height: 1.6;
    margin-left: 3px;
  }
  .club-area .sns-area .sns-container.soccer .pht {
    bottom: 70px;
    left: 10px;
  }
  .club-area .sns-area .sns-container.soccer .huki {
    top: 130px;
    left: 160px;
  }
  .club-area .sns-area .sns-container.soccer .huki:before {
    background-image: url(../img/huki_o_r.png);
  }
  .club-area .sns-area .sns-container.soccer .huki p {
    padding-top: 5px;
    font-size: 11px;
  }
  .club-area .sns-area .sns-container.bsk_b .tit-area {
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
  }
  .club-area .sns-area .sns-container.bsk_b .pht {
    bottom: 80px;
    right: 45px;
  }
  .club-area .sns-area .sns-container.bsk_b .huki {
    top: 100px;
    right: 5px;
  }
  .club-area .sns-area .sns-container.bsk_b .huki:before {
    background-image: url(../img/huki_r_r.png);
  }
  .club-area .sns-area .sns-container.bsk_g .pht {
    bottom: 60px;
    right: 0;
  }
  .club-area .sns-area .sns-container.bsk_g .huki {
    top: 145px;
    right: 165px;
  }
  .club-area .sns-area .sns-container.bsk_g .huki:before {
    background-image: url(../img/huki_r_l.png);
  }
  .club-area .sns-area .sns-container.jyudo .pht {
    bottom: 60px;
    left: 10px;
  }
  .club-area .sns-area .sns-container.jyudo .huki {
    top: 130px;
    left: 170px;
  }
  .club-area .sns-area .sns-container.jyudo .huki:before {
    background-image: url(../img/huki_o_r.png);
  }
  .club-area .sns-area .sns-container.rugby .pht {
    bottom: 35px;
    right: 0px;
  }
  .club-area .sns-area .sns-container.rugby .huki {
    top: 135px;
    right: 170px;
  }
  .club-area .sns-area .sns-container.rugby .huki:before {
    background-image: url(../img/huki_r_l.png);
  }
  .club-area .sns-area .sns-container.taiko .pht {
    width: 260px;
    bottom: 150px;
    left: 8px;
  }
  .club-area .sns-area .sns-container.taiko .huki {
    top: 192px;
    left: 170px;
  }
  .club-area .sns-area .sns-container.taiko .huki:before {
    background-image: url(../img/huki_o_r.png);
  }
  .club-area .sns-area .sns-container.brass .pht {
    pointer-events: none;
    bottom: 90px;
    right: 0px;
  }
  .club-area .sns-area .sns-container.brass .huki {
    top: 140px;
    right: 160px;
  }
  .club-area .sns-area .sns-container.brass .huki:before {
    background-image: url(../img/huki_r_l.png);
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px), print {
  .main-area .wrap {
    width: 900px;
  }
  .main-area .wrap .per02 {
    right: -10px;
  }
}
@media screen and (max-width: 767px), print {
  #header_sp {
    position: relative;
    z-index: 100000;
  }
  #header_sp #MenuNav {
    width: 100%;
    padding-bottom: 35%;
    box-sizing: border-box;
  }
  main {
    position: relative;
  }
  main .main-border {
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  main .main-border div {
    border-radius: 8px;
  }
  main .main-border .top-border01 {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 90%;
    height: 8px;
    background-color: #f05654;
  }
  main .main-border .top-border02 {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    width: 50%;
    height: 8px;
    background-color: #1f8adb;
  }
  main .main-border .left-border {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
  }
  main .main-border .left-border div {
    width: 8px;
    height: calc(11.1111111111% + 8px);
    background-color: #09ae6f;
  }
  main .main-border .left-border div + div {
    margin-top: -8px;
  }
  main .main-border .left-border div:nth-child(3n+2) {
    background-color: #1f8adb;
  }
  main .main-border .left-border div:nth-child(3n) {
    background-color: #f08437;
  }
  main .main-border .right-border {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
  }
  main .main-border .right-border div {
    margin-right: 0;
    margin-left: auto;
    width: 8px;
    height: calc(11.1111111111% + 8px);
    background-color: #f08437;
  }
  main .main-border .right-border div + div {
    margin-top: -8px;
  }
  main .main-border .right-border div:nth-child(3n+2) {
    background-color: #09ae6f;
  }
  main .main-border .right-border div:nth-child(3n) {
    background-color: #f05654;
  }
  main .deco-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    pointer-events: none;
    stroke-linecap: round;
    stroke-width: 8px;
  }
  main .deco-wrap .deco {
    position: absolute;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
  }
  main .deco-wrap svg {
    position: absolute;
  }
  main .deco-wrap .line-l {
    width: 60px;
    height: 60px;
  }
  main .deco-wrap .line-s {
    width: 40px;
    height: 40px;
    stroke-width: 7px;
  }
  main .deco-wrap .dot-l {
    width: 70px;
    height: 70px;
  }
  main .deco-wrap .dot-s {
    stroke-width: 7px;
    stroke-dasharray: 0 15.74;
    width: 40px;
    height: 40px;
  }
  main .deco-wrap .zig-l {
    stroke-width: 7px;
    width: 60px;
    height: 60px;
    fill: none;
  }
  main .deco-wrap .zig-s {
    stroke-width: 4px;
    width: 60px;
    height: 60px;
    fill: none;
  }
  main .deco-wrap .blue {
    stroke: #1f8adb;
  }
  main .deco-wrap .red {
    stroke: #f05654;
  }
  main .deco-wrap .green {
    stroke: #09ae6f;
  }
  main .deco-wrap .orenge {
    stroke: #f08437;
  }
  main .deco-wrap .deco01 {
    top: -20px;
    left: 20%;
  }
  main .deco-wrap .deco02 {
    top: 12.8%;
    left: -10px;
  }
  main .deco-wrap .deco03 {
    top: 6.8%;
    right: -10px;
  }
  main .deco-wrap .deco04 {
    top: 17%;
    left: -30px;
  }
  main .deco-wrap .deco05 {
    top: 20%;
    right: -5px;
  }
  main .deco-wrap .deco06 {
    top: 36.5%;
    right: -10px;
  }
  main .deco-wrap .deco07 {
    top: 40%;
    left: -10px;
  }
  main .deco-wrap .deco08 {
    top: 44%;
    right: -7px;
  }
  main .deco-wrap .deco09 {
    top: 79%;
    right: 10px;
  }
  main .deco-wrap .deco10 {
    top: 81%;
    right: -14px;
  }
  main .deco-wrap .deco11 {
    top: 97.5%;
    left: -7px;
  }
  main .deco-wrap .deco12 {
    top: 118%;
    left: -3px;
  }
  main .deco-wrap .deco13 {
    top: 111.9%;
    right: -10px;
  }
  main .deco-wrap .deco14 {
    top: 5%;
    left: 330px;
  }
  main .deco-wrap .deco15 {
    top: 135%;
    left: 0px;
  }
  main .deco-wrap .deco16 {
    top: 167%;
    right: 40px;
  }
  main .deco-wrap .deco17 {
    top: 11%;
    left: -10px;
  }
  main .deco-wrap .deco18 {
    top: 158%;
    left: 20px;
  }
  main .deco-wrap .deco20 {
    top: 230%;
    right: 20px;
  }
  main .deco-wrap .deco21 {
    top: 190%;
    left: -20px;
  }
  main .deco-wrap .deco22 {
    top: 125%;
    right: -20px;
  }
  main .deco-wrap .deco23 {
    top: 355%;
    left: -10px;
  }
  main .deco-wrap .deco25 {
    top: 72%;
    left: 0px;
  }
  main .deco-wrap .deco26 {
    top: 310%;
    right: -8px;
    transform: scale(-1, -1);
  }
  main .deco-wrap .deco27 {
    top: 384%;
    left: 0;
  }
  #footer {
    position: relative;
    z-index: 100;
  }
  .sec01 {
    background-image: url(../img/bg01.jpg);
    background-repeat: repeat;
    background-size: 21px;
    padding-bottom: 110px;
  }
  .sec02 {
    background-image: url(../img/bg02.jpg);
    background-repeat: repeat;
    background-size: 29px;
    padding: 65px 0 80px;
  }
  .main-area {
    padding: 110px 0 140px;
    position: relative;
  }
  .main-area .main-tit {
    width: 90%;
    max-width: 514px;
    margin: auto;
    position: relative;
  }
  .main-area .main-tit .txt {
    width: 58%;
    position: absolute;
    top: 27%;
    left: 20.2%;
    opacity: 0;
    -webkit-animation: pop 0.6s cubic-bezier(0.65, -0.06, 0.24, 1.39) forwards;
            animation: pop 0.6s cubic-bezier(0.65, -0.06, 0.24, 1.39) forwards;
  }
  @-webkit-keyframes pop {
    0% {
      transform: scale(0.7);
      opacity: 0;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }
  @keyframes pop {
    0% {
      transform: scale(0.7);
      opacity: 0;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }
  .main-area .main-tit .sp-img {
    width: 17%;
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-animation: pop2 0.7s 0.5s cubic-bezier(0.42, 0, 0.21, 1.66) forwards;
            animation: pop2 0.7s 0.5s cubic-bezier(0.42, 0, 0.21, 1.66) forwards;
  }
  @-webkit-keyframes pop2 {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes pop2 {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .main-area .lead {
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    margin-top: 120px;
  }
  .main-area .wrap {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    display: flex;
    justify-content: space-between;
    padding: 0 6%;
  }
  .main-area .wrap .per {
    width: 35%;
    max-width: 100px;
    position: relative;
    bottom: -3px;
  }
  .main-area .wrap .per.per02 {
    max-width: 112px;
  }
  .main-area .wrap .per .huki {
    width: 75px;
    height: 75px;
    background-size: contain;
    position: absolute;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .main-area .wrap .per .huki p {
    text-align: center;
    font-weight: bold;
    color: #06007d;
    line-height: 1.4;
    padding-top: 2px;
    padding-left: 2px;
    font-size: 10px;
  }
  .main-area .wrap .per01 {
    left: 40px;
  }
  .main-area .wrap .per01 .huki {
    background-image: url(../img/main_huki-l.png);
    top: -60px;
    left: -65px;
  }
  .main-area .wrap .per02 {
    right: 40px;
  }
  .main-area .wrap .per02 .huki {
    background-image: url(../img/main_huki-r.png);
    top: -60px;
    right: -65px;
  }
  .icons-wrap {
    width: 100%;
    height: 100%;
    margin: auto;
    position: absolute;
    z-index: 10;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
  }
  .icons-wrap .icons {
    width: 108%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    margin: auto;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
  }
  .icons-wrap .icons.icons02 {
    margin-top: min(57%, 320px);
  }
  .icons-wrap .icons .icon {
    width: 60px;
  }
  .icons-wrap .icons .icon:nth-child(2n+1) {
    margin-top: 20px;
    -webkit-animation: rotateleft 1.5s ease infinite;
            animation: rotateleft 1.5s ease infinite;
  }
  .icons-wrap .icons .icon:nth-child(2n) {
    margin-top: 50px;
    -webkit-animation: rotateright 1.5s ease infinite;
            animation: rotateright 1.5s ease infinite;
  }
  .sns-container {
    padding: 0 5%;
    position: relative;
  }
  .sns-container + .sns-container {
    margin-top: 80px;
  }
  .sns-container .tit-area {
    width: 100%;
    background-color: #1f8adb;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    position: relative;
    z-index: 0;
    display: flex;
    justify-content: space-between;
    padding: 20px 5% 15px;
    box-sizing: border-box;
  }
  .sns-container .tit-area .tit {
    width: 167px;
    flex-shrink: 0;
  }
  .sns-container .tit-area .tit-en {
    position: absolute;
    width: 200px;
    top: -20px;
    right: 0;
    left: 0;
    margin: auto;
    z-index: -1;
  }
  .sns-container .tit-area .link-area {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
    flex-wrap: wrap;
    margin-top: -5px;
  }
  .sns-container .tit-area .link-area .qr-area {
    display: flex;
    gap: 5px;
  }
  .sns-container .tit-area .link-area .qr-area > div {
    box-shadow: rgba(51, 51, 51, 0.3) 0px 0px 10px;
  }
  .sns-container .tit-area .link-area .qr-area .qr {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    padding: 6px;
    background-color: white;
    border-radius: 6px;
  }
  .sns-container .tit-area .link-area .qr-area .qr .icon {
    width: 24px;
  }
  .sns-container .tit-area .link-area .qr-area .qr .qr {
    width: 24px;
  }
  .sns-container .tit-area .link-area .site {
    width: 118px;
    height: 36px;
    background-color: #ffe84c;
    border-radius: 8px;
    box-shadow: rgba(51, 51, 51, 0.3) 0px 0px 10px;
  }
  .sns-container .tit-area .link-area .site a {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    height: inherit;
  }
  .sns-container .tit-area .link-area .site .txt {
    display: flex;
    align-items: center;
    width: 80px;
    height: inherit;
  }
  .sns-container .tit-area .link-area .site .arrow {
    display: flex;
    align-items: center;
    width: 6px;
    height: inherit;
  }
  .sns-container .tit-area .link-area div {
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
  }
  .sns-container .sns-wrap {
    position: relative;
    background-color: white;
    padding: 15px 0;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
  }
  .sns-container .sns-wrap .kind {
    margin: auto;
  }
  .sns-container .sns-wrap .kind.inst {
    background-image: url(../img/instagram.png);
    width: 127px;
    height: 20px;
    background-size: contain;
  }
  .sns-container .sns-wrap .sns-content {
    margin-top: 15px;
    width: 100%;
    padding: 0 5%;
    margin-bottom: 15px;
    box-sizing: border-box;
  }
  .sns-container .sns-wrap .sns-content .fb-page {
    display: flex;
    justify-content: center;
    width: 100% !important;
  }
  .sns-container .sns-wrap .sns-content .fb-page.off {
    display: none;
  }
  .sns-container .sns-wrap .sns-content .iOS_image {
    display: none;
  }
  .sns-container .sns-wrap .sns-content .iOS_image.on {
    display: block;
  }
  .sns-container .sns-wrap .sns-content ul {
    width: 100%;
    display: grid;
    gap: 5px;
    grid-template-columns: 1fr 1fr;
  }
  .sns-container .sns-wrap .sns-content ul li {
    width: inherit;
    aspect-ratio: 1/1;
  }
  .sns-container .sns-wrap .sns-content ul li a {
    display: block;
    width: inherit;
    height: 100%;
    position: relative;
  }
  .sns-container .sns-wrap .sns-content ul li a img {
    width: inherit;
    height: inherit;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .sns-container .sns-wrap .more {
    width: 200px;
    margin: 12px auto;
    position: relative;
    z-index: 1;
  }
  .sns-container .sns-wrap .more a {
    display: block;
    transition: transform 0.4s ease;
  }
  .sns-container .sns-wrap .more::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    bottom: -2px;
    left: 0;
    background-color: rgba(33, 33, 33, 0.3);
    filter: blur(6px);
  }
  .sns-container .sns-wrap .more:hover a {
    transform: translateY(2px);
  }
  .official .tit-area {
    background-color: #1f8adb;
  }
  .dining .tit-area {
    background-color: #09ae6f;
    position: relative;
    z-index: 10;
  }
  .dining .tit-area .pht {
    width: 70px;
    position: absolute;
  }
  .dining .tit-area .pht01 {
    top: 93px;
    left: -25px;
  }
  .dining .tit-area .pht02 {
    top: -55px;
    left: 30px;
  }
  .dining .tit-area .pht03 {
    top: 60px;
    right: -30px;
  }
  .dining .tit-area .pht04 {
    top: -71px;
    right: 10px;
  }
  .club-area {
    position: relative;
  }
  .club-area .tit-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .club-area .tit-wrap h3 {
    width: 180px;
    margin: 40px auto 30px;
    flex-shrink: 0;
  }
  .club-area .tit-wrap .icons {
    width: 60%;
    margin: auto;
    margin-bottom: -20px;
    display: flex;
    justify-content: space-between;
  }
  .club-area .tit-wrap .icons02 .icon {
    width: 60px;
  }
  .club-area .tit-wrap .icons02 .icon:nth-child(2n) {
    position: relative;
    bottom: 10px;
    -webkit-animation: rotateright 1.6s ease infinite;
            animation: rotateright 1.6s ease infinite;
  }
  .club-area .tit-wrap .icons02 .icon:nth-child(2n+1) {
    -webkit-animation: rotateleft 1.6s ease infinite;
            animation: rotateleft 1.6s ease infinite;
  }
  .club-area .tit-wrap .icons01 .icon {
    width: 60px;
  }
  .club-area .tit-wrap .icons01 .icon:nth-child(2n+1) {
    position: relative;
    bottom: 10px;
    -webkit-animation: rotateright 1.6s ease infinite;
            animation: rotateright 1.6s ease infinite;
  }
  .club-area .tit-wrap .icons01 .icon:nth-child(2n) {
    -webkit-animation: rotateleft 1.6s ease infinite;
            animation: rotateleft 1.6s ease infinite;
  }
  .club-area h3 {
    width: 190px;
    margin: auto;
  }
  .club-area .blog-area {
    width: 90%;
    max-width: 400px;
    height: 350px;
    margin: auto;
    margin-top: 72px;
    padding: 30px 0 40px;
    box-sizing: border-box;
    position: relative;
  }
  .club-area .blog-area span {
    position: absolute;
    height: 100%;
    top: 0;
    display: block;
  }
  .club-area .blog-area span.border-r {
    right: 0;
    width: 50%;
    height: inherit;
    overflow: hidden;
  }
  .club-area .blog-area span.border-r::after {
    content: "";
    display: block;
    box-sizing: border-box;
    width: 1035px;
    height: inherit;
    position: absolute;
    top: 0;
    right: 0;
    border: solid 3px #f08437;
    border-radius: 9px;
  }
  .club-area .blog-area span.border-r .border-half {
    width: 100%;
    height: inherit;
    position: relative;
  }
  .club-area .blog-area span.border-r .border-half::before {
    content: "";
    display: block;
    width: calc(100% - 9px);
    box-sizing: border-box;
    border-bottom: solid 3px #f05654;
    position: absolute;
    top: 0;
    right: 9px;
    z-index: 1;
  }
  .club-area .blog-area span.border-r .border-half::after {
    content: "";
    display: block;
    width: calc(100% - 9px);
    box-sizing: border-box;
    border-bottom: solid 3px #f05654;
    position: absolute;
    bottom: 0;
    right: 9px;
    z-index: 1;
  }
  .club-area .blog-area span.border-l {
    left: 0;
    width: 50%;
    height: inherit;
    overflow: hidden;
  }
  .club-area .blog-area span.border-l::after {
    content: "";
    display: block;
    box-sizing: border-box;
    width: 1035px;
    height: inherit;
    position: absolute;
    top: 0;
    left: 0;
    border: solid 3px #f05654;
    border-radius: 9px;
  }
  .club-area .blog-area span.border-l .border-half {
    width: 100%;
    height: inherit;
    position: relative;
  }
  .club-area .blog-area span.border-l .border-half::before {
    content: "";
    display: block;
    width: calc(100% - 9px);
    box-sizing: border-box;
    border-bottom: solid 3px #f08437;
    position: absolute;
    top: 0;
    left: 9px;
    z-index: 1;
  }
  .club-area .blog-area span.border-l .border-half::after {
    content: "";
    display: block;
    width: calc(100% - 9px);
    box-sizing: border-box;
    border-bottom: solid 3px #f08437;
    position: absolute;
    bottom: 0;
    left: 9px;
    z-index: 1;
  }
  .club-area .blog-area::before {
    content: "";
    display: block;
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    background-color: white;
    position: absolute;
    top: 8px;
    left: 8px;
    border-radius: 4px;
  }
  .club-area .blog-area .content {
    position: relative;
    z-index: 10;
  }
  .club-area .blog-area .content .tit {
    width: 127px;
    margin: auto;
  }
  .club-area .blog-area .content .btn-wrap {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }
  .club-area .blog-area .content .btn-wrap .btn {
    width: 250px;
    position: relative;
  }
  .club-area .blog-area .content .btn-wrap .btn a {
    display: block;
    transition: transform 0.4s ease;
  }
  .club-area .blog-area .content .btn-wrap .btn::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    bottom: -2px;
    left: 0;
    background-color: rgba(33, 33, 33, 0.3);
    filter: blur(6px);
  }
  .club-area .blog-area .content .btn-wrap .btn:hover a {
    transform: translateY(2px);
  }
  .club-area .blog-area .pht {
    width: 120px;
    position: absolute;
    z-index: 20;
    bottom: 3px;
  }
  .club-area .blog-area .pht.athletic {
    left: 6%;
  }
  .club-area .blog-area .pht.culture {
    right: -8%;
  }
  .club-area .sns-area {
    padding: 0 5%;
  }
  .club-area .sns-area .sns-container:nth-child(2n+1) .tit-area {
    background-color: #f08437;
  }
  .club-area .sns-area .sns-container:nth-child(2n+1) .sns-l {
    margin-left: 0;
    margin-right: auto;
  }
  .club-area .sns-area .sns-container:nth-child(2n+1) .huki p {
    color: #f08437;
  }
  .club-area .sns-area .sns-container:nth-child(2n) .tit-area {
    background-color: #f05654;
  }
  .club-area .sns-area .sns-container:nth-child(2n) .sns-l {
    margin-left: auto;
    margin-right: 0;
  }
  .club-area .sns-area .sns-container:nth-child(2n) .huki p {
    color: #f05654;
  }
  .club-area .sns-area .sns-container {
    margin-top: 155px;
    position: relative;
    z-index: 0;
    padding: 0;
  }
  .club-area .sns-area .sns-container .tit-area {
    position: relative;
    padding: 20px 5% 15px;
    justify-content: space-between;
    align-items: flex-start;
  }
  .club-area .sns-area .sns-container .tit-area .tit {
    padding-top: 3px;
    width: 148px;
  }
  .club-area .sns-area .sns-container .sns-wrap {
    position: relative;
  }
  .club-area .sns-area .sns-container .sns-wrap .sns-l {
    width: 100%;
  }
  .club-area .sns-area .sns-container .sns-wrap .sns-l .sns-content ul {
    grid-template-columns: 1fr 1fr;
  }
  .club-area .sns-area .sns-container .pht {
    position: absolute;
    width: 140px;
    z-index: -1;
  }
  .club-area .sns-area .sns-container .huki {
    position: absolute;
    z-index: 0;
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .club-area .sns-area .sns-container .huki::before {
    content: "";
    display: block;
    width: inherit;
    height: inherit;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
  }
  .club-area .sns-area .sns-container .huki p {
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    line-height: 1.6;
    margin-left: 3px;
  }
  .club-area .sns-area .sns-container.soccer .tit {
    width: 125px;
  }
  .club-area .sns-area .sns-container.soccer .pht {
    top: -110px;
    left: 0;
  }
  .club-area .sns-area .sns-container.soccer .huki {
    top: -120px;
    left: 100px;
  }
  .club-area .sns-area .sns-container.soccer .huki:before {
    background-image: url(../img/huki_o_r.png);
  }
  .club-area .sns-area .sns-container.soccer .huki p {
    padding-top: 6px;
    padding-right: 3px;
  }
  .club-area .sns-area .sns-container.bsk_b .tit-area {
    height: auto;
  }
  .club-area .sns-area .sns-container.bsk_b .tit-area + .tit-area {
    margin-top: 15px;
  }
  .club-area .sns-area .sns-container.bsk_b .tit-area .tit {
    width: 238px;
  }
  .club-area .sns-area .sns-container.bsk_b .pht {
    top: -112px;
    left: 5px;
  }
  .club-area .sns-area .sns-container.bsk_b .huki {
    top: -111px;
    left: 120px;
  }
  .club-area .sns-area .sns-container.bsk_b .huki:before {
    background-image: url(../img/huki_r_r.png);
  }
  .club-area .sns-area .sns-container.bsk_g {
    margin-top: 60px;
  }
  .club-area .sns-area .sns-container.bsk_g .tit-area {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }
  .club-area .sns-area .sns-container.bsk_g .tit {
    width: 238px;
  }
  .club-area .sns-area .sns-container.bsk_g .pht {
    top: -105px;
    right: 0px;
  }
  .club-area .sns-area .sns-container.bsk_g .huki {
    top: -110px;
    right: 115px;
  }
  .club-area .sns-area .sns-container.bsk_g .huki:before {
    background-image: url(../img/huki_r_l.png);
  }
  .club-area .sns-area .sns-container.jyudo .pht {
    top: -100px;
    left: 0;
  }
  .club-area .sns-area .sns-container.jyudo .huki {
    top: -110px;
    left: 118px;
  }
  .club-area .sns-area .sns-container.jyudo .huki:before {
    background-image: url(../img/huki_o_r.png);
  }
  .club-area .sns-area .sns-container.rugby .pht {
    top: -108px;
    right: -15px;
  }
  .club-area .sns-area .sns-container.rugby .huki {
    top: -110px;
    right: 110px;
  }
  .club-area .sns-area .sns-container.rugby .huki:before {
    background-image: url(../img/huki_r_l.png);
  }
  .club-area .sns-area .sns-container.taiko .pht {
    width: 160px;
    top: -110px;
    left: 60px;
  }
  .club-area .sns-area .sns-container.taiko .huki {
    top: -110px;
    left: 0;
  }
  .club-area .sns-area .sns-container.taiko .huki:before {
    background-image: url(../img/huki_o_l.png);
  }
  .club-area .sns-area .sns-container.brass .pht {
    width: 160px;
    top: -105px;
    right: 0;
  }
  .club-area .sns-area .sns-container.brass .huki {
    top: -110px;
    right: 137px;
  }
  .club-area .sns-area .sns-container.brass .huki:before {
    background-image: url(../img/huki_r_l.png);
  }
}
/*# sourceMappingURL=style.css.map */