@charset "UTF-8";
/* --------------------------
   2025 My Reset CSS
---------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  font-weight: 400;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
figure,
figcaption,
dl,
dt,
dd,
ul,
ol,
li,
table,
th,
td {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
svg,
video {
  vertical-align: middle;
  border: 0;
  max-width: 100%;
  height: auto;
}

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

blockquote,
q {
  quotes: none;
}

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

article,
aside,
footer,
header,
nav,
section,
main,
figure,
figcaption {
  display: block;
}

/* ------------------------
   style.css
-------------------------- */
html {
  scroll-behavior: smooth;
  font-size: 62.5%;
  /*16px×62.5%=10px*/
}

body {
  font-family: "Noto Serif JP", "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: #131D3D;
}

/* 1365pxより小さい場合 */
/* 1020pxより小さい場合 */
/* 840pxより小さい場合 */
/* 640pxより小さい場合 */
/* 1366pxより大きい場合 */
.ssp_no {
  display: none;
}
@media (max-width: 640px) {
  .ssp_no {
    display: block;
  }
}

/*-------------------------
 *共通項目
 --------------------------*/
.text-center {
  text-align: center;
}

h1 {
  font-size: 0.8vw;
  font-weight: 400;
}

h3 {
  font-size: clamp(2.4rem, 1.6vw, 3.2rem);
  font-weight: 500;
  padding-bottom: clamp(20px, 1.6vw, 320px);
}

.sans_text {
  font-family: "Noto Sans JP", sans-serif;
  padding-bottom: 1.6vw;
}
@media (max-width: 1365px) {
  .sans_text {
    padding-bottom: 20px;
  }
}

.rink_wrap {
  max-width: 750px;
  margin: auto;
  background-color: #858CA4;
  transition: all 0.2s;
}
@media (max-width: 1365px) {
  .rink_wrap {
    max-width: 600px;
  }
}
@media (min-width: 1365px) {
  .rink_wrap:hover {
    background-color: #131D3D;
  }
}
.rink_wrap a {
  display: block;
  width: 100%;
  padding: 16px 20px;
}
@media (max-width: 1365px) {
  .rink_wrap a {
    padding: 12px 20px;
  }
}
@media (max-width: 640px) {
  .rink_wrap a {
    padding: 12px 10px;
  }
}
.rink_wrap a p {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  color: #fff;
}
@media (max-width: 1365px) {
  .rink_wrap a p {
    font-size: 1.6rem;
  }
}
.rink_wrap a p::after {
  content: "";
  display: inline-block;
  width: 55.3px;
  /* 幅 */
  height: 12.7px;
  /* 高さ */
  margin-left: 40px;
  margin-bottom: 6px;
  background-image: url("../images/arrow.png");
  background-size: contain;
  /* 画像を要素に合わせる */
  background-repeat: no-repeat;
  vertical-align: middle;
  -webkit-animation: arrowSwing 1.6s ease-in-out infinite;
          animation: arrowSwing 1.6s ease-in-out infinite;
}
@media (max-width: 640px) {
  .rink_wrap a p::after {
    margin-left: 6px;
  }
}

@-webkit-keyframes arrowSwing {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(16px);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes arrowSwing {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(16px);
  }
  100% {
    transform: translateX(0);
  }
}
/*-------------------------
 *header
 --------------------------*/
#menu {
  background-color: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  position: fixed;
  display: flex;
  justify-content: space-between;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
@media (max-width: 1020px) {
  #menu {
    display: none;
  }
}

#menu.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu_logo {
  width: 230px;
  margin: 15px 0 0 20px;
}
@media (max-width: 1365px) {
  .menu_logo {
    width: 180px;
  }
}
.menu_logo img {
  display: block;
}

.menu_inner {
  max-width: 1100px;
  margin-left: auto;
  display: flex;
  justify-content: center;
}

.menu_item a {
  display: block;
  width: 160px;
  padding: 10px 0;
}
@media (max-width: 1365px) {
  .menu_item a {
    width: 120px;
  }
}
@media (min-width: 1365px) {
  .menu_item a:hover p {
    background-color: #858CA4;
    color: #fff;
  }
}
.menu_item a p {
  border-left: 1px #131D3D solid;
  font-family: "Noto Sans JP", sans-serif;
  display: grid;
  place-items: center;
  line-height: 40px;
  color: #131D3D;
  transition: all 0.2s;
}
@media (max-width: 1365px) {
  .menu_item a p {
    font-size: 1.4rem;
    line-height: 30px;
  }
}
.menu_item a .text {
  border-right: #131D3D 1px solid;
}

.menu_contact_item {
  background-color: #131D3D;
  margin: 10px 10px;
  transition: all 0.2s;
  z-index: 300;
}
@media (min-width: 1365px) {
  .menu_contact_item:hover {
    background-color: #858CA4;
  }
}
.menu_contact_item a {
  display: block;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  padding: 8px 10px;
  letter-spacing: normal;
}
@media (max-width: 1365px) {
  .menu_contact_item a {
    font-size: 1.4rem;
    padding: 4.5px 10px;
  }
}

#page_top {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 300;
  width: 40px;
  height: 40px;
  background-color: #131D3D;
}
@media (max-width: 640px) {
  #page_top {
    right: 6px;
    bottom: 6px;
  }
}
#page_top a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: transform 0.2s;
}
@media (min-width: 1365px) {
  #page_top a:hover {
    transform: translateY(-6px);
  }
}
#page_top a img {
  display: block;
}

/*-------------------------
 *ハンバーガーメニュー
 --------------------------*/
.btn_hidden {
  display: none;
}

.hamburger_menu {
  display: none;
}
@media (max-width: 1020px) {
  .hamburger_menu {
    display: block;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 500;
  }
}

#menu_btn {
  width: 40px;
  height: 40px;
  margin-left: auto;
  background-color: #131D3D;
  display: flex;
  justify-content: center;
  align-items: center;
}
#menu_btn:hover {
  cursor: pointer;
}
#menu_btn span,
#menu_btn span:before,
#menu_btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 26px;
  background-color: #fff;
  position: absolute;
  transition: all 0.4s;
  z-index: 500;
}
#menu_btn span:before {
  bottom: 10px;
}
#menu_btn span:after {
  top: 10px;
}

#menu_btn_check:checked ~ #menu_btn span {
  background-color: rgba(255, 255, 255, 0);
}
#menu_btn_check:checked ~ #menu_btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#menu_btn_check:checked ~ #menu_btn span::after {
  top: 0;
  transform: rotate(-45deg);
}

#menu_content {
  position: absolute;
  top: 0;
  right: -240px;
  width: 220px;
  padding: 40px 20px;
  background-color: #131D3D;
  transition: all 0.2s;
}

.navigation {
  top: 40px;
  right: 0;
  width: 100%;
}
.navigation li {
  width: 170px;
  height: 50px;
  margin: auto;
  background-color: #131D3D;
  transition: all 0.2s;
  line-height: 1.2;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
  border-bottom: solid 1px #fff;
}
.navigation li a {
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  display: grid;
  place-items: center;
  transition: all 0.2s;
}

#menu_btn_check:checked ~ #menu_content {
  right: 0;
}

/*-------------------------
 *footer
 --------------------------*/
.foot_contact_wrap {
  background-color: #131D3D;
  padding: 120px 50px;
}
@media (max-width: 1365px) {
  .foot_contact_wrap {
    padding: 100px 50px;
  }
}
@media (max-width: 1020px) {
  .foot_contact_wrap {
    padding: 70px 50px;
  }
}
@media (max-width: 840px) {
  .foot_contact_wrap {
    padding: 60px 50px;
  }
}
@media (max-width: 640px) {
  .foot_contact_wrap {
    padding: 40px 30px;
  }
}
.foot_contact_wrap .title {
  font-size: 3.6rem;
  font-weight: 500;
  padding-bottom: 40px;
  color: #fff;
}
@media (max-width: 1365px) {
  .foot_contact_wrap .title {
    font-size: 3.4rem;
    padding-bottom: 30px;
  }
}
@media (max-width: 1020px) {
  .foot_contact_wrap .title {
    font-size: 3.2rem;
    padding-bottom: 20px;
  }
}
@media (max-width: 840px) {
  .foot_contact_wrap .title {
    font-size: 2.8rem;
  }
}
.foot_contact_wrap .text {
  font-size: 2rem;
  font-weight: 500;
  padding-bottom: 50px;
  color: #fff;
}
@media (max-width: 1365px) {
  .foot_contact_wrap .text {
    padding-bottom: 30px;
  }
}
@media (max-width: 1020px) {
  .foot_contact_wrap .text {
    font-size: 1.6rem;
    padding-bottom: 20px;
  }
}

.foot_contact_box {
  max-width: 830px;
  margin: auto;
  background-color: #CCD2E4;
  padding: 30px 30px 50px;
}
@media (max-width: 1020px) {
  .foot_contact_box {
    max-width: 720px;
    padding: 30px;
  }
}
@media (max-width: 640px) {
  .foot_contact_box {
    padding: 20px;
  }
}
.foot_contact_box .text3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  padding-bottom: 10px;
}
@media (max-width: 1020px) {
  .foot_contact_box .text3 {
    font-size: 1.6rem;
  }
}
.foot_contact_box .tel_text {
  font-size: 4.8rem;
  font-weight: 700;
}
@media (max-width: 1020px) {
  .foot_contact_box .tel_text {
    line-height: 1.1;
    font-size: 4.2rem;
  }
}
@media (max-width: 640px) {
  .foot_contact_box .tel_text {
    font-size: 3rem;
  }
}
.foot_contact_box .tel_text::before {
  content: "";
  display: inline-block;
  width: 48px;
  height: 48px;
  margin-right: 6px;
  background-image: url("../images/tel.png");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
@media (max-width: 640px) {
  .foot_contact_box .tel_text::before {
    width: 34px;
    height: 34px;
  }
}
.foot_contact_box .text4 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  padding-bottom: 30px;
}
@media (max-width: 1020px) {
  .foot_contact_box .text4 {
    font-size: 1.6rem;
    padding-bottom: 20px;
  }
}

.no_ssp {
  display: none;
}
@media (max-width: 640px) {
  .no_ssp {
    display: block;
  }
}

.foot_contact_rink a {
  display: block;
  max-width: 410px;
  margin: auto;
  background-color: #131D3D;
  padding: 16px;
  transition: all 0.2s;
}
@media (max-width: 640px) {
  .foot_contact_rink a {
    padding: 12px;
  }
}
@media (min-width: 1365px) {
  .foot_contact_rink a:hover {
    background-color: #858CA4;
  }
}
.foot_contact_rink a p {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
}

.footer_company {
  padding: 100px 50px;
}
@media (max-width: 1365px) {
  .footer_company {
    padding: 100px 50px 70px;
  }
}
@media (max-width: 1020px) {
  .footer_company {
    padding: 80px 50px 60px;
  }
}
@media (max-width: 640px) {
  .footer_company {
    padding: 60px 20px;
  }
}
.footer_company .footer_logo {
  width: 27vw;
  margin: auto;
}
@media (max-width: 1365px) {
  .footer_company .footer_logo {
    width: 100%;
    max-width: 350px;
  }
}
@media (max-width: 640px) {
  .footer_company .footer_logo {
    max-width: 280px;
  }
}
.footer_company .text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  padding-bottom: 30px;
}
@media (max-width: 640px) {
  .footer_company .text {
    padding-bottom: 20px;
  }
}
.footer_company .text2 {
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
}
@media (max-width: 640px) {
  .footer_company .text2 {
    max-width: 294px;
    margin: auto;
    text-align: left;
  }
}

.footer_rink {
  max-width: 490px;
  margin: auto;
  display: flex;
  justify-content: center;
  margin-top: 120px;
  margin-bottom: 50px;
}
@media (max-width: 1365px) {
  .footer_rink {
    margin-top: 100px;
  }
}
@media (max-width: 1020px) {
  .footer_rink {
    margin-top: 80px;
  }
}
@media (max-width: 640px) {
  .footer_rink {
    margin-bottom: 30px;
    margin-top: 60px;
  }
}
.footer_rink li {
  font-family: "Noto Sans JP", sans-serif;
  border-left: #131D3D 1px solid;
  padding: 0 20px;
  transition: all 0.2s;
}
@media (max-width: 640px) {
  .footer_rink li {
    padding: 4px 10px;
    font-size: 1.4rem;
    line-height: 1.1;
    letter-spacing: normal;
  }
}
.footer_rink li:last-of-type {
  border-right: #131D3D 1px solid;
}
@media (min-width: 1365px) {
  .footer_rink li:hover {
    background-color: #CCD2E4;
  }
}

.footer_copy {
  max-width: 1240px;
  margin: auto;
  padding-top: 30px;
  border-top: #131D3D 1px solid;
}
@media (max-width: 640px) {
  .footer_copy {
    padding-top: 20px;
    line-height: 1.2;
  }
}
.footer_copy p {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
}
/*# sourceMappingURL=style.css.map */