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

html,
body {
  margin: 0;
  padding: 0;
  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 {
  font-size: 62.5%;
  /*16px×62.5%=10px*/
}

body {
  font-family: "Shippori Mincho", "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}

/* 1365pxより小さい場合 */
/* 1020pxより小さい場合 */
/* 840pxより小さい場合 */
/* 640pxより小さい場合 */
/* 1366pxより大きい場合 */
/*-------------------------
 *共通項目
 --------------------------*/
.text-center {
  text-align: center;
}

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

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

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

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

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

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

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

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

.en_title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3rem;
  padding-bottom: 60px;
  letter-spacing: 0.1em;
}
@media (max-width: 1365px) {
  .en_title {
    font-size: 2.6rem;
  }
}
@media (max-width: 1020px) {
  .en_title {
    padding-bottom: 40px;
  }
}

.text_large {
  font-size: clamp(2.4rem, 2vw, 3.2rem);
  padding-bottom: 40px;
}
@media (max-width: 1020px) {
  .text_large {
    padding-bottom: 30px;
  }
}

.text_small {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
}

.part_a {
  padding: 160px 0;
  background-color: #F6F2E8;
}
@media (max-width: 1365px) {
  .part_a {
    padding: 120px 60px;
  }
}
@media (max-width: 1020px) {
  .part_a {
    padding: 100px 40px;
  }
}
@media (max-width: 840px) {
  .part_a {
    padding: 80px 30px;
  }
}
@media (max-width: 640px) {
  .part_a {
    padding: 60px 20px;
  }
}

.part_b {
  padding: 160px 0;
  background-color: #FAF9F5;
}
@media (max-width: 1365px) {
  .part_b {
    padding: 120px 60px;
  }
}
@media (max-width: 1020px) {
  .part_b {
    padding: 100px 40px;
  }
}
@media (max-width: 840px) {
  .part_b {
    padding: 80px 30px;
  }
}
@media (max-width: 640px) {
  .part_b {
    padding: 60px 20px;
  }
}

/*-------------------------
 *リンクボタン
 --------------------------*/
.rink_wrap {
  max-width: 360px;
  background-color: #EFE4C8;
  border: #DFBF83 1px solid;
  transition: all 0.3s;
}
@media (max-width: 1020px) {
  .rink_wrap {
    max-width: 320px;
  }
}
@media (min-width: 1020px) {
  .rink_wrap:hover {
    background-color: #DFBF83;
  }
}
.rink_wrap a {
  display: block;
  width: 100%;
  padding: 13px 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.6rem;
  color: #000;
}
.rink_wrap a p::after {
  content: "";
  display: inline-block;
  width: 55.3px;
  height: 12.7px;
  margin-left: 20px;
  margin-bottom: 6px;
  background-image: url("../img/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;
  }
}

.sp_rink {
  margin: 60px auto 0;
}

@-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: #EFE4C8;
  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 {
  position: fixed;
  display: flex;
  justify-content: space-between;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #EFE4C8;
  z-index: 500;
}
@media (max-width: 1020px) {
  .menu {
    display: none;
  }
}

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

.menu_logo {
  width: 230px;
  margin: 25px 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: 140px;
  padding: 14px 0;
}
@media (min-width: 1020px) {
  .menu_item a:hover p {
    background-color: #DFBF83;
  }
}
.menu_item a p {
  border-left: 1px #262933 solid;
  font-family: "Noto Sans JP", sans-serif;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  line-height: 40px;
  transition: all 0.2s;
}
.menu_item a .text {
  border-right: #262933 1px solid;
}

.menu_contact_item {
  margin: 10px;
  z-index: 300;
}
.menu_contact_item a {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  padding: 10px;
  letter-spacing: normal;
  border: #262933 1px solid;
  transition: all 0.3s;
}
@media (min-width: 1020px) {
  .menu_contact_item a:hover {
    background-color: #DFBF83;
  }
}

#page_top {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 300;
  width: 40px;
  height: 40px;
  background-color: #EFE4C8;
}
@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: 1020px) {
  #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: #262933;
  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: #262933;
  transition: all 0.2s;
}

.navigation {
  top: 40px;
  right: 0;
  width: 100%;
}
.navigation li {
  width: 170px;
  height: 50px;
  margin: auto;
  background-color: #262933;
  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: #EFE4C8;
  padding: 220px 50px;
}
@media (max-width: 1365px) {
  .foot_contact_wrap {
    padding: 160px 50px;
  }
}
@media (max-width: 1020px) {
  .foot_contact_wrap {
    padding: 100px 50px;
  }
}
@media (max-width: 840px) {
  .foot_contact_wrap {
    padding: 80px 50px;
  }
}
@media (max-width: 640px) {
  .foot_contact_wrap {
    padding: 60px 30px;
  }
}
.foot_contact_wrap .title {
  font-family: "Shippori Mincho", serif;
  font-size: 3.2rem;
  padding-bottom: 30px;
}
@media (max-width: 1365px) {
  .foot_contact_wrap .title {
    font-size: 3rem;
  }
}
@media (max-width: 1020px) {
  .foot_contact_wrap .title {
    font-size: 2.8rem;
    padding-bottom: 20px;
  }
}
.foot_contact_wrap .text {
  font-family: "Shippori Mincho", serif;
  font-size: 2rem;
  font-weight: 500;
  padding-bottom: 50px;
  line-height: 1.5;
}
@media (max-width: 1365px) {
  .foot_contact_wrap .text {
    line-height: 1.5;
    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: #FAF9F5;
  padding: 50px 30px;
}
@media (max-width: 1020px) {
  .foot_contact_box {
    max-width: 720px;
    padding: 30px;
  }
}
@media (max-width: 840px) {
  .foot_contact_box {
    max-width: 560px;
  }
}
@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-family: "Shippori Mincho", serif;
  font-size: 4rem;
  letter-spacing: 0.1em;
}
@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;
  margin-bottom: 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-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;
  padding: 16px;
  border: #B79478 1px solid;
  transition: all 0.3s;
}
@media (max-width: 640px) {
  .foot_contact_rink a {
    padding: 12px;
  }
}
@media (min-width: 1020px) {
  .foot_contact_rink a:hover {
    background-color: #DFBF83;
  }
}
.foot_contact_rink a p {
  font-family: "Noto Sans JP", sans-serif;
}

.footer_company {
  padding: 100px 50px;
  background-color: #FAF9F5;
}
@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: 25vw;
  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-size: 2.4rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  padding-bottom: 30px;
}
@media (max-width: 640px) {
  .footer_company .text {
    padding-bottom: 20px;
  }
}
.footer_company .text2 {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}
@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;
  font-family: "Noto Sans JP", sans-serif;
}
@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 {
  border-left: #B79478 1px solid;
  padding: 0 20px;
  transition: all 0.3s;
}
@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: #B79478 1px solid;
}
@media (min-width: 1020px) {
  .footer_rink li:hover {
    background-color: #EFE4C8;
  }
}

.footer_copy {
  max-width: 1240px;
  margin: auto;
  padding-top: 30px;
  border-top: #B79478 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 */