@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
/* ============= Reset (compact) ============= */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address,
big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike,
strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset,
form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, figure, figcaption, footer,
header, hgroup, menu, nav, output, ruby, section, summary, time, mark,
audio, video, main {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  background: transparent;
}

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

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%; /* 1rem = 10px */
}

body {
  line-height: 1.6;
  color: #333;
  background: #fff;
}

img, svg, video, canvas {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul, ol {
  list-style: none;
}

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

input, button, textarea, select {
  font: inherit;
}

[hidden] {
  display: none !important;
}

[disabled] {
  cursor: not-allowed;
}

:focus:not(:focus-visible) {
  outline: none;
}

address {
  font-style: inherit;
}

/* ============= Variables ============= */
/* 透過（明示定義 / 10%刻み） */
/* Breakpoints（文字列で保持：Live Sass 互換） */
/* ============= Mixins ============= */
/* ============= Typography（基本） ============= */
.sans, body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

.serif {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}

body {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}

h1 {
  font-size: 2.4rem;
}

h2 {
  font-size: 2.2rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.8rem;
}

h5 {
  font-size: 1.6rem;
}

h6 {
  font-size: 1.4rem;
}

p {
  margin-bottom: 1rem;
}

pre {
  background: #f6f6f6;
  padding: 10px;
  border: 1px solid #CCCCCC;
  border-radius: 5px;
  margin-bottom: 1rem;
}

a {
  display: inline-block;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.5;
}
a img {
  width: 100%;
  transition: opacity 0.3s;
}
a:hover img {
  opacity: 0.5;
}

/* ユーティリティ（必要最低限） */
.t-c {
  text-align: center;
}

.t-l {
  text-align: left;
}

.t-r {
  text-align: right;
}

@media screen and (max-width: 768px) {
  .pc_only {
    display: none !important;
  }
}

.sp_only {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp_only {
    display: initial !important;
  }
}

hr {
  height: 1px;
  background: #666666;
  border: none;
  margin: 50px auto;
}

/* ============= Buttons ============= */
.btn {
  margin-bottom: 50px;
  width: 110px;
}
.btn a {
  display: block;
  width: 100%;
  text-align: center;
  border: 2px solid #666666;
  border-radius: 5px;
  padding: 6px 10px;
}

/* ============= Tabs ============= */
.group ul.tab-group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.group ul.tab-group .tab {
  padding: 10px 0;
  width: 33.3333%;
  text-align: center;
  background: #F3F3F3;
  border-top: 1px solid #000000;
  border-right: 1px solid #000000;
  border-bottom: 1px solid #000000;
  cursor: pointer;
}
.group ul.tab-group .tab:first-child {
  border-left: 1px solid #000000;
}
.group ul.tab-group .tab.is-active {
  background: transparent;
  border-bottom-color: transparent !important;
  transition: 0.3s;
}
.group .panel-group {
  border-left: 1px solid #000000;
  border-right: 1px solid #000000;
  border-bottom: 1px solid #000000;
  padding: 20px;
}
.group .panel-group .panel {
  display: none;
}
.group .panel-group .panel.is-show {
  display: block;
}

/* ============= Fade (scroll-in) ============= */
.fade-in {
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
}

.fade-in-up {
  transform: translate(0, 50px);
}

.fade-in-down {
  transform: translate(0, -50px);
}

.fade-in-left {
  transform: translate(-50px, 0);
}

.fade-in-right {
  transform: translate(50px, 0);
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

/* ============= Modal ============= */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
.modal__bg {
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.modal__content {
  background: #FFFFFF;
  padding: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  max-width: 960px;
}

/* ============= Forms (基本) ============= */
.form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.form input, .form textarea, .form select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #CCCCCC;
  border-radius: 4px;
  margin-bottom: 1rem;
  background: #fff;
}
.form button {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border: 1px solid #666666;
  border-radius: 6px;
  background: #F3F3F3;
  transition: 0.3s;
}
.form button:hover {
  background: #f6f6f6;
}

/* ============= Container / Grid / Helpers ============= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.fwrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  /* 明示定義（モバイルで 100% に落とす） */
  /* between（スペース均等配置用の簡易版） */
}
.fwrap [class^=con-].dummy {
  margin: 0;
  padding: 0;
  height: 0;
  border: none;
  visibility: hidden;
}
.fwrap [class^=con-] img {
  display: block;
  width: 100%;
  margin: 0;
}
.fwrap .con-1 {
  width: 100%;
}
.fwrap .con-2 {
  width: 50%;
}
.fwrap .con-3 {
  width: 33.3333%;
}
.fwrap .con-4 {
  width: 25%;
}
.fwrap .con-5 {
  width: 20%;
}
.fwrap .con-6 {
  width: 16.6667%;
}
@media screen and (max-width: 1024px) {
  .fwrap .con-1, .fwrap .con-2, .fwrap .con-3, .fwrap .con-4, .fwrap .con-5, .fwrap .con-6 {
    width: 100%;
    margin-bottom: 30px;
  }
}
.fwrap.between {
  justify-content: space-between;
}
.fwrap.between .con-2 {
  width: calc(50% - 10px);
}
.fwrap.between .con-3 {
  width: calc(33.3333% - 10px);
}
.fwrap.between .con-4 {
  width: calc(25% - 10px);
}
.fwrap.between .con-5 {
  width: calc(20% - 10px);
}
.fwrap.between .con-6 {
  width: calc(16.6667% - 10px);
}
@media screen and (max-width: 1024px) {
  .fwrap.between .con-2, .fwrap.between .con-3, .fwrap.between .con-4, .fwrap.between .con-5, .fwrap.between .con-6 {
    width: 100%;
    margin-bottom: 30px;
  }
}

/* ============= Header ============= */
header {
  position: fixed;
  top: 0;
  left: 0;
  margin: auto;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: all 0.3s;
}
header.is-fixed .logo img {
  width: 150px;
}
header .header-contact {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr 50px;
  width: 1024px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  font-size: 150%;
}
@media screen and (max-width: 1024px) {
  header .header-contact {
    width: 100%;
    padding: 0;
    grid-template-columns: 1fr 1fr 40px;
  }
}
@media screen and (max-width: 1024px) {
  header .header-contact {
    font-size: 3.4vw;
  }
}
header .header-contact .tel {
  grid-column: 1/2;
  width: 100%;
}
header .header-contact .tel a {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: #ECEC4F;
}
@media screen and (max-width: 1024px) {
  header .header-contact .tel a {
    font-size: 5vw;
  }
}
header .header-contact .mail {
  grid-column: 2/3;
}
header .header-contact .mail a {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: #B13584;
  color: #FFFFFF;
}
header .header-contact .insta {
  grid-column: 3/4;
  height: 50px;
}
@media screen and (max-width: 1024px) {
  header .header-contact .insta {
    height: 40px;
  }
}
header .header-contact .insta a {
  background: #000000;
  color: #FFFFFF;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 180%;
}
header .logo {
  margin: 5px;
  width: 100%;
  height: auto;
  text-align: center;
}
header .logo h1 {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  font-size: 0px;
}
header .logo h1 a {
  display: block;
  width: 50%;
  height: auto;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  header .logo h1 a {
    width: 70%;
  }
}
header .logo h1 a img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0;
  display: block;
}

/* ============= Footer ============= */
footer {
  width: 100%;
}
footer .inner {
  width: 1024px;
  margin: 0 auto;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  footer .inner {
    width: 100%;
    padding: 0 20px;
  }
}
footer .inner #footermenu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
footer .inner #footermenu ul li {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  padding: 0;
}
footer .inner #footermenu ul li a {
  padding: 5px 20px;
  display: inline-block;
}
footer #copyright {
  background: #666666;
  height: 50px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

/* ============= Back to top ============= */
#page_top {
  position: fixed;
  right: 50px;
  bottom: 20px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #000000;
  z-index: 100000;
}
@media screen and (max-width: 1024px) {
  #page_top {
    right: 5%;
  }
}
#page_top::before {
  content: "";
  width: 14px;
  height: 14px;
  border-top: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -7px;
  margin: auto;
  transform: rotate(45deg);
}
#page_top span {
  color: transparent;
  font-size: 0;
}

/* ============= Simple Accordion ============= */
.acMenu {
  width: 100%;
}
.acMenu dt, .acMenu dd {
  width: 100%;
  margin: 0;
  padding: 10px;
}
.acMenu dt {
  display: block;
  cursor: pointer;
  background: #CCCCCC;
}
.acMenu dd {
  display: none;
  border: 1px solid #666666;
}

video {
  width: 100%;
  height: auto;
  margin: 40px auto;
  padding: 0;
}
.gallery video {
  margin: 0;
}

h2 {
  position: relative;
  font-size: 200%;
  font-weight: 900;
}
h2.title_image {
  position: relative;
}
h2.title_image span {
  position: absolute;
  color: transparent;
  font-size: 0.001px;
}
h2.title {
  color: #B13584;
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto;
  padding: 0 40px;
}
h2.title::before {
  content: "";
  width: 4px;
  height: 100%;
  display: block;
  background: #B13584;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(-20deg);
}
h2.title::after {
  content: "";
  width: 4px;
  height: 100%;
  display: block;
  background: #B13584;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(20deg);
}
h2.title small {
  color: #670B46;
  display: block;
  font-size: 70%;
}

.fwrap.gallery [class^=con-] {
  margin-bottom: 20px;
}

.box-ye {
  width: -moz-fit-content;
  width: fit-content;
  background: #C4C42A;
  padding: 20px 50px;
  margin: 20px auto;
}
.box-ye p {
  margin: 0;
  padding: 0;
  font-size: 120%;
  font-weight: 900;
  line-height: 1.5;
}

main {
  overflow: hidden;
}
main section .inner {
  width: 900px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  main section .inner {
    width: 100%;
    padding: 0 20px;
  }
}
main section.contact .inner a {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
}
main section.contact .inner a img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}
main section#map .map {
  width: 100%;
  height: 500px;
  margin: 50px auto;
  overflow: hidden;
}
main section#contactform {
  width: 100%;
  margin: 40px auto;
  padding: 50px 20px;
}
@media screen and (max-width: 1024px) {
  main section#contactform {
    padding: 0;
  }
}
main section#contactform .privacy {
  width: 100%;
  height: 300px;
  padding: 20px;
  overflow: auto;
  text-align: left;
}

.contact__inner {
  width: 1024px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .contact__inner {
    width: 100%;
  }
}

section#contactform .contact__inner {
  text-align: left;
  width: 80%;
  padding: 40px 80px;
  background: #FFFFAC;
  border-radius: 20px;
  margin: 50px auto;
}
@media screen and (max-width: 1024px) {
  section#contactform .contact__inner {
    width: 100%;
  }
}

@media screen and (max-width: 1024px) {
  section#contactform .contact__inner {
    padding: 20px;
  }
}
section#contactform .contact__inner .contact__fields .contact__field {
  margin-bottom: 20px;
}

section#contactform .contact__inner .contact__fields .contact__field textarea {
  width: 100%;
  padding: 3px;
  border: #666666 solid 1px;
  background: rgba(255, 255, 255, 0.3);
}

section#contactform .contact__inner .contact__fields .contact__field .form-field__label {
  font-weight: bold;
  margin-bottom: 5px;
}

section#contactform .contact__inner .contact__fields .contact__field .form-field .form-field__item input {
  width: 100%;
  padding: 3px;
  border: #666666 solid 1px;
  background: rgba(255, 255, 255, 0.3);
}

section#contactform .contact__inner .contact__fields .contact__field .form-field .potcode {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  flex-wrap: nowrap;
}

section#contactform .contact__inner .contact__fields .contact__field .form-field .potcode .form-field__item-prefecture select {
  width: 200px;
  margin-left: 10px;
}

@media screen and (max-width: 1024px) {
  section#contactform .contact__inner .contact__fields .contact__field .form-field .potcode .form-field__item-prefecture select {
    width: auto;
  }
}
section#contactform .contact__inner .contact__fields .contact__field .form-field .potcode + .form-field__item {
  margin-top: 10px;
}

section#contactform .contact__inner .contact__button {
  text-align: center;
}

section#contactform .contact__inner .contact__button input {
  width: 200px;
  height: 40px;
  background: #666666;
  border: none;
  color: #FFFFFF;
  margin: 0 auto;
}

section.privacy {
  padding: 20px;
  margin: 10px 0 5px;
  overflow: auto;
  height: 200px;
  background: #FFFFFF;
}