@charset "UTF-8";
/* CSS Document */
/* base
----------------------------------------- */
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-padding-top: 0px;
}

body {
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  background-color: #fefff6;
  text-align: justify;
  letter-spacing: 0.55px;
  line-height: 150%;
  position: relative;
  text-justify: inter-ideograph; /* Edge */
  line-break: strict;
  word-break: break-word;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

h1 {
  font-size: 5.6rem;
  font-weight: 800;
  line-height: 150%;
}

h2 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 150%;
}

h3 {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 150%;
  color: #c73d7b;
}

h4 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 150%;
}

p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 200%;
}

.bold {
  font-weight: bold;
}

img {
  width: 100%;
  height: auto;
}

.mb_l {
  margin-bottom: 100px;
}

.mb_m {
  margin-bottom: 50px;
}

.mb_s {
  margin-bottom: 20px;
}

.mb_ss {
  margin-bottom: 10px;
}

.mb_unset {
  margin-bottom: unset !important;
}

.pd-b-unset {
  padding-bottom: unset !important;
}

.bg_gray {
  background-color: #F5F5F5;
}

* {
  transition: all 0.3s ease;
}

.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
}

.m_auto {
  margin-left: auto;
  margin-right: auto;
}

.t_center {
  text-align: center;
}

.br {
  display: none;
}

@media screen and (max-width: 767px) {
  .br {
    display: block;
  }
}
a:hover {
  color: #c73d7b;
}

.btn_s {
  width: 180px;
  height: 40px;
  border-radius: 20px;
  background-color: #000000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn_s:hover {
  background-color: #c73d7b;
  color: #fff;
}

.btn_m {
  width: 240px;
  height: 50px;
  border-radius: 25px;
  background-color: #000000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.btn_m:hover {
  background-color: #c73d7b;
  color: #fff;
}

.btn_m::after {
  content: url(../img/icon_page-blank.svg);
  position: absolute;
  width: 15px;
  right: 20px;
}

.btn_m-p {
  width: 240px;
  height: 50px;
  border-radius: 25px;
  background-color: #c73d7b;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.btn_m-p:hover {
  background-color: #000;
  color: #fff;
}

.btn_m-p::after {
  content: url(../img/icon_page-blank.svg);
  position: absolute;
  width: 15px;
  right: 20px;
}

.btn_l {
  max-width: 500px;
  width: 100%;
  height: 60px;
  border-radius: 30px;
  font-size: 2.4rem;
  font-weight: 600;
  background-color: #000000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.btn_l:hover {
  background-color: #c73d7b;
  color: #fff;
}

.btn_l::after {
  content: url(../img/icon_btn_blank.svg);
  position: absolute;
  width: 26px;
  right: 20px;
}

.btn_lp {
  max-width: 500px;
  width: 100%;
  height: 60px;
  border-radius: 30px;
  font-size: 2.4rem;
  font-weight: 600;
  background-color: #c73d7b;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.btn_lp:hover {
  background-color: #fff;
  color: #c73d7b;
}

.btn_lp::after {
  content: url(../img/icon_mail.svg);
  position: absolute;
  width: 26px;
  right: 20px;
}

.top_mainWrap {
  width: 100%;
  height: 100vh;
  aspect-ratio: 16/10;
  position: relative;
}

.top_main-inner-flexWrap {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
}

.top_mainWrap-left {
  max-width: 230px;
  width: 100%;
  padding-left: 30px; /* 30px / 1440px */
  padding-top: 2%; /* 30px / 900px */
}

.top_mainWrap-right {
  width: 84%;
}

.top_mainWrap_companyTitle {
  position: fixed;
  z-index: 1;
  bottom: 0;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.scrolling-logo-wrap {
  display: flex;
  gap: 50px;
  width: 200%; /* 画面幅2個分（ロゴ2つ） */
  animation: scroll-loop 50s linear infinite;
}

.scrolling-logo {
  width: 100vw; /* 1個のロゴが画面幅ピッタリになるように */
  height: auto;
  flex-shrink: 0;
}

@keyframes scroll-loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.header__logo {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.header__inner-logo {
  width: 100%;
  margin-bottom: 20px;
}

.header__inner-address {
  margin-bottom: 20px;
}

.news_list-flexWrap {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.news_date {
  color: #c73d7b;
  font-size: 1.2rem;
}

.news_category {
  width: 90px;
  height: 20px;
  border: 2px solid #000000;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
}

.news_list {
  padding-bottom: 10px;
  border-bottom: 1px dashed #000;
  font-weight: 600;
}

.header__nav {
  width: 100%;
  padding-top: 30px;
}

.header__nav-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}

.header__nav-item-child {
  width: 100%;
  margin-bottom: 5px;
  text-indent: 40px;
}

.header__nav-item::before {
  content: url(../img/icon_nav.svg);
  width: 20px;
  height: 20px;
  display: inline-block;
}

.top_mainWrap-right {
  width: 100%;
  height: 100vh;
  position: relative;
}

.hero {
  display: flex;
  flex-direction: row-reverse;
  gap: 50px;
  position: absolute;
  bottom: 15%;
  right: 10%;
}

.hero__catch {
  width: 10.42vw; /* 画面幅1440pxに対して150px相当 */
  height: 62.22vh; /* 画面高さ900pxに対して560px相当 */
}

.hero__text {
  writing-mode: vertical-rl; /* 縦書き（右→左） */
  text-orientation: mixed; /* 漢字は正立、ひらがなは回転 */
  line-height: 2; /* 行間調整（好みに応じて） */
  height: 300px;
  margin-top: auto;
  font-family: "Shippori Mincho", serif;
}

/* aタグに位置を指定（imgからは外す） */
.top_mainWrap-right-image01 {
  width: 25vw;
  position: absolute;
  top: 3%;
  left: 23%;
}

.top_mainWrap-right-image02 {
  width: 16vw;
  position: absolute;
  top: 5%;
  right: 28%;
}

.top_mainWrap-right-image03 {
  width: 15vw;
  position: absolute;
  bottom: 13%;
  left: 32%;
}

.top_mainWrap-right-image04 {
  width: 11vw;
  position: absolute;
  top: 5%;
  left: 8%;
}

.top_mainWrap-right-image05 {
  width: 13vw;
  position: absolute;
  top: 30%;
  left: 5%;
}

.top_mainWrap-right-image06 {
  width: 12vw;
  position: absolute;
  top: 55%;
  left: 15%;
}

/* オーバーレイ */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(199, 61, 123, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.3s ease;
  color: #fff;
  font-weight: bold;
  font-size: 2.8rem;
  pointer-events: none;
  z-index: 1;
  border-radius: 50%;
}

.hover-link:hover .overlay {
  opacity: 1;
}

.overlay span::after {
  content: url(../img/icon_top-link.svg);
  display: inline-block;
  width: 30px;
  height: 18px;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.overlay span {
  text-align: center;
  line-height: 180%;
}

.font-s {
  font-size: 1.8rem;
}

.font-l {
  font-size: 3.2rem;
}

.section--restaurant {
  max-width: 1000px;
  width: 100%;
  padding: 50px 30px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.section__title {
  width: 100%;
  text-align: center;
  margin-bottom: 50px;
}

.section--restaurant_subWrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.section--restaurant_subWrap-left {
  width: 100%;
  padding-right: 20px;
}

.section--restaurant_subWrap-left h3 {
  font-family: "Shippori Mincho", serif;
  white-space: nowrap;
}

.section--restaurant_subWrap-left h4 {
  font-family: "Shippori Mincho", serif;
  white-space: nowrap;
  font-weight: 700;
}

.section--restaurant_shopWrap {
  display: flex;
  gap: 30px;
  justify-content: space-around;
}

.restaurant__item {
  max-width: 400px;
  width: 100%;
  padding: 30px;
  background-color: #fff;
}

.restaurant__item01 {
  width: 100%;
  border: 3px solid #000000;
  border-radius: 20px;
}

.restaurant__item02 {
  width: 100%;
  border: 3px solid #c73d7b;
  border-radius: 20px;
}

.bg_green {
  background-color: #f3ffe3;
}

.section--tsukemono {
  max-width: 1000px;
  width: 100%;
  padding: 50px 30px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.section--tsukemono_chirdWrap {
  width: 100%;
}

.section--tsukemono_chirdWrap h3 {
  font-family: "Shippori Mincho", serif;
  white-space: nowrap;
}

.bg_pink {
  background-color: #ffebec;
}

.section--hygiene {
  max-width: 1000px;
  width: 100%;
  padding: 50px 30px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.section--hygiene_chirdWrap {
  width: 100%;
}

.section--hygiene_chirdWrap h3 {
  font-family: "Shippori Mincho", serif;
  white-space: nowrap;
}

.pdf-download {
  display: flex;
  justify-content: center;
  text-decoration: underline;
  position: relative;
  color: #c73d7b;
  font-weight: 600;
}

.pdf-download::before {
  content: url(../img/icon_pdf.svg);
  width: 23px;
  margin-right: 10px;
}

.bg_gray {
  background-color: #f0fafc;
}

.section--instrument {
  max-width: 1000px;
  width: 100%;
  padding: 50px 30px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.section--instrument_chirdWrap {
  width: 100%;
}

.section--instrument_chirdWrap h3 {
  font-family: "Shippori Mincho", serif;
  white-space: nowrap;
}

.instrument_relativeWrap {
  position: relative;
  width: 100%;
}

.instrument_relative-flexWrap {
  display: flex;
  flex-wrap: wrap;
}

.img_instrument_l {
  max-width: 600px;
  width: 100%;
}

.img_instrument_m {
  max-width: 300px;
  height: 300px;
  width: 100%;
}

.instrument_des {
  max-width: 400px;
  width: 100%;
  margin-left: auto;
  margin-top: -100px;
}

.bg_yellow {
  background-color: #fffcdc;
}

.section--ski {
  max-width: 1000px;
  width: 100%;
  padding: 50px 30px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.section--ski_chirdWrap {
  width: 100%;
}

.section--ski_chirdWrap h3 {
  font-family: "Shippori Mincho", serif;
  white-space: nowrap;
}

.ski_relativeWrap {
  position: relative;
  width: 100%;
}

.ski_relative-flexWrap {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
}

.img_ski_l {
  max-width: 600px;
  width: 100%;
}

.img_ski_m {
  max-width: 300px;
  height: 300px;
  width: 100%;
}

.ski_des {
  max-width: 400px;
  width: 100%;
  margin-right: auto;
  margin-top: -100px;
}

.footer {
  width: 100%;
  position: relative;
  height: 280px;
  padding-top: 50px;
}

.pageTop {
  position: absolute;
  right: 50px;
  top: -50px;
  display: inline-block;
  text-indent: -9999px;
  background-image: url(../img/icon_pagetop.svg);
  width: 70px;
  height: 74px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.footer__inner {
  max-width: 1440px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.footer_logo {
  width: 220px;
}

.footer__copy::before {
  content: url(../img/icon_copyright.svg);
  width: 14px;
  height: 14px;
  margin-top: 1px;
  margin-right: 2px;
}

.footer__copy {
  display: flex;
}

.footer__inner_childFlex {
  display: flex;
  gap: 30px;
  padding-left: 50px;
}

.footer__inner_childFlex a {
  color: #c73d7b;
  display: flex;
  padding-bottom: 4px;
  border-bottom: 2px solid #000000;
}

.footer_company {
  display: flex;
  align-items: center;
}

.footer_company::before {
  content: url(../img/icon_nextPage.svg);
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-right: 2px;
}

.footer_group {
  display: flex;
  align-items: center;
}

.footer_group::before {
  content: url(../img/icon_btn_blank02.svg);
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-right: 2px;
}

.postWrap {
  width: 100%;
  border-left: 0.5px solid #353636;
  border-right: 0.5px solid #353636;
  padding: 100px 30px 100px 30px;
  background-color: #fff;
  min-height: 800px;
}

.breadcrumb {
  font-size: 1.4rem;
  color: #999999;
}

.postWrap h1 {
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 180%;
  border-bottom: 0.5px solid #353636;
  padding-bottom: 10px;
}

.postWrap h2 {
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 0.3rem;
  position: relative;
  margin-bottom: 20px;
  line-height: 150%;
}

.postWrap h3 {
  font-size: 2.4rem;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 150%;
}

.postWrap h4 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 150%;
}

.postWrap p {
  font-size: 1.6rem;
  line-height: 200%;
  margin-bottom: 30px;
}

.postWrap ul, .postWrap ol {
  margin-left: 3.2rem;
  list-style-type: disc;
  list-style-position: outside;
  margin-bottom: 50px;
}

.postWrap ul > li, .postWrap ol > li {
  font-size: 1.6rem;
  line-height: 150%;
  color: #333333;
  margin-bottom: 20px;
}

.postWrap img {
  width: 100%;
  height: auto;
  margin-bottom: 50px;
}

.postWrap table {
  margin-bottom: 30px;
}

.postWrap table th {
  width: 190px;
  table-layout: fixed;
  padding: 20px;
  border: 1px solid #666666;
  font-weight: 400;
}

.postWrap table td {
  padding: 20px;
  border: 1px solid #666666;
}

figcaption.wp-element-caption {
  margin-top: -20px;
}

.wp-block-table {
  margin-bottom: 60px !important;
}

.wp-block-table table {
  width: 100%;
}

:where(figure) {
  margin: unset !important;
}

.postTitle {
  text-align: left;
}

.postWrap > p.post-upDate {
  color: #666666 !important;
} 
.wpsbc-container {
  visibility: unset !important;
}

.main_child-flex {
  display: flex;
  gap: 50px;
}

.child-main {
  flex-grow: 1;
  padding-right: 70px;
}

.post-childWrap {
  max-width: 1000px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.postTime {
  font-size: 1.2rem;
  color: #666666;
  border: 0.5px solid #c73d7b;
  padding: 2px 20px;
}

.formWrap {
  width: 100%;
}

.formTable {
  width: 100%;
}

.formTable th {
  width: 160px;
  table-layout: fixed;
  vertical-align: middle;
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: 1px;
}

.formTable td {
  width: 600px;
  padding-left: 40px;
  padding-bottom: 20px;
}

input[type=text] {
  padding: 20px 30px;
  box-sizing: border-box;
  width: 100%;
  font-size: 16px;
  border: 0.5px solid #808080;
}

select {
  padding: 16px;
  box-sizing: border-box;
  width: 100%;
  font-size: 16px;
  border: 0.5px solid #808080;
}

input[type=radio] {
  margin-bottom: 5px;
}

textarea {
  padding: 20px 30px;
  box-sizing: border-box;
  width: 100%;
  font-size: 16px;
  border: 0.5px solid #808080;
}

.require {
  color: red;
}

input::-moz-placeholder {
  color: #c6c6c6;
}

input::placeholder {
  color: #c6c6c6;
}

textarea::-moz-placeholder {
  color: #c6c6c6;
}

textarea::placeholder {
  color: #c6c6c6;
}

.formDes {
  line-height: 200%;
}

.button_m {
  display: block;
  max-width: 400px;
  width: 100%;
  height: 60px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  background-color: #c73d7b;
}

.button_m::after {
  content: url(../img/icon_btn_next.svg);
  width: 7px;
  position: absolute;
  right: 30px;
  top: 18px;
}

.button_m:hover {
  border-radius: 30px;
}/*# sourceMappingURL=style.css.map */