@charset "UTF-8";
/*! destyle.css v3.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", sans-serif, sans-serif;
}

@-webkit-keyframes navLinkFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes navLinkFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes scale {
  0% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1.2, 1.2);
  }
}
@keyframes scale {
  0% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1.2, 1.2);
  }
}
html {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  height: 100%;
}

.header {
  z-index: 30;
  position: fixed;
  top: 0;
  width: 100%;
}
.header__logo {
  width: 110px;
  position: fixed;
  top: 20px;
  left: 20px;
}
@media screen and (min-width: 768px) {
  .header__logo {
    width: 140px;
    top: 40px;
    left: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .header__logo {
    width: 200px;
  }
}
@media screen and (min-width: 1440px) {
  .header__logo {
    width: 220px;
  }
}
.header__logo__img__sp {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .header__logo__img__sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .header__logo__img__pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .header__logo__img__pc {
    display: block;
    width: 100%;
  }
}
.header__inner {
  display: block;
  position: absolute;
  width: 100%;
}
.header-nav__menu {
  position: absolute;
  right: 0;
  height: 100vh;
  top: 0;
  background-color: rgba(235, 190, 83, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100vw;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  margin-top: 0%;
  justify-content: center;
}
@media screen and (min-width: 1024px) {
  .header-nav__menu {
    height: auto;
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    opacity: 1;
    transform: translateX(0);
    background-color: transparent;
    width: 780px;
    left: 0;
    right: 0;
    margin: 0 auto;
    margin-top: 90px;
  }
  .header-nav__menu::before {
    content: ""; /*何も入れない*/
    display: inline-block;
    width: 910px;
    height: 109px;
    background-size: contain;
    vertical-align: top;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -84%);
    z-index: -10;
    background-color: white;
    border-radius: 50px;
  }
}
.header-nav__menu__list {
  font-size: 1.125rem;
  font-family: "BIZ UDPMincho", serif;
  font-weight: bold;
  color: #333;
  display: flex;
  margin-bottom: 80px;
}
.header-nav__menu__list:hover {
  color: #fff;
  cursor: pointer;
  transition-duration: 0.2s;
}
@media screen and (min-width: 1024px) {
  .header-nav__menu__list:hover {
    color: #ecbf53;
    cursor: pointer;
    transition-duration: 0.2s;
  }
}
@media screen and (min-width: 1024px) {
  .header-nav__menu__list {
    font-size: 1rem;
  }
}
.header-nav__menu__list__span {
  width: 0.625rem;
  display: block;
  margin-right: 0.25rem;
}
.header-nav__menu__list__span__img {
  width: 100%;
}
.header-nav__menu__list__link {
  position: relative;
}
.header-nav__menu__list__link:hover .header-nav__menu__list__link__span__2 {
  opacity: 1;
  transition-duration: 0.2s;
}
.header-nav__menu__list__link::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 0.09375rem;
  background: #ecbf53;
  bottom: -23%; /*アンダーラインがaタグの下端から現れる*/
  transform: scale(0, 1); /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  transition: transform 0.3s; /*変形の時間*/
}
.header-nav__menu__list__link:hover::after {
  transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}
.header-nav__menu__list__link__span__2 {
  width: 33px;
  height: 24px;
  opacity: 0;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 60%);
}
.header-nav__menu__list__link__span__2__img {
  width: 100%;
  height: auto;
}
.header__list__bg {
  width: 100%;
  position: absolute;
  top: 86%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .header__list__bg {
    display: none;
  }
}
.header__list__bg__img {
  width: 100%;
}
.header__open__btn2 {
  position: relative; /*ボタン内側の基点となるためrelativeを指定*/
  width: 50px;
  height: 50px;
  cursor: pointer;
  position: fixed;
  top: 80px;
  right: 0;
  z-index: 100000;
}
@media screen and (min-width: 1024px) {
  .header__open__btn2 {
    display: none;
  }
}
.header__open__btn2::before {
  content: ""; /*何も入れない*/
  display: inline-block;
  width: 57px;
  height: 50px;
  background-image: url(/assets/img_kouyaguti/header__btn__bg.svg);
  background-size: contain;
  vertical-align: top;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -10;
}
.header__open__btn2 span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  left: 13px;
  height: 4px;
  background-color: #ecbf53;
}
.header__open__btn2 span:nth-child(1) {
  top: 19px;
  width: 25px;
  border-radius: 5px;
}
.header__open__btn2 span:nth-child(2) {
  top: 29px;
  width: 25px;
  border-radius: 5px;
}
.header__sns {
  width: 50px;
  height: 50px;
  display: block;
}
.header__sns__img {
  width: 100%;
  height: auto;
}

.header__sns__wrap {
  width: 130px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
@media screen and (min-width: 1024px) {
  .header__sns__wrap {
    width: 130px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }
}

.header__open__btn2.active span:nth-of-type(1) {
  top: 20px;
  left: 16px;
  transform: translateY(6px) rotate(-45deg);
  width: 25px;
}

.header__open__btn2.active span:nth-of-type(2) {
  top: 32px;
  left: 16px;
  transform: translateY(-6px) rotate(45deg);
  width: 25px;
}

.header-nav-active {
  transform: translateX(0);
  opacity: 1; /* フェードインアニメーション */
}

/* humのline操作 */
/* main */
.main {
  overflow: hidden;
}

/* main-visualのスライダー */
.main__visual {
  height: 100vh; /* 親要素（body, html）の高さに一致 */
  width: 100%;
  background-image: url("/assets/img_kouyaguti/main_img@72x.webp"); /* 画像のURLを指定 */
  background-size: cover; /* 画面いっぱいに拡大縮小 */
  background-position: center; /* 画像の中心を基準に配置 */
  background-repeat: no-repeat; /* 繰り返しを防止 */
  position: relative;
}
@media screen and (min-width: 1024px) {
  .main__visual {
    height: 100vh;
  }
}
.main__visual__hl {
  font-size: 1.875rem;
  color: #fff;
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: bold;
  text-align: start;
  writing-mode: vertical-rl;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1.8em;
}
@media screen and (min-width: 768px) {
  .main__visual__hl {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1024px) {
  .main__visual__hl {
    font-size: 2.4375rem;
  }
}
.main__visual__logo {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 153px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .main__visual__logo {
    width: 150px;
    height: auto;
  }
}
@media screen and (min-width: 1024px) {
  .main__visual__logo {
    width: 230px;
    top: 15%;
  }
}
.main__visual__logo__img {
  width: 100%;
  height: auto;
}
.main__visual__ashirai__left {
  width: 230px;
  position: absolute;
  top: 74%;
  left: 0%;
  transform: translate(-20%, -50%);
}
@media screen and (min-width: 768px) {
  .main__visual__ashirai__left {
    width: 280px;
  }
}
@media screen and (min-width: 1024px) {
  .main__visual__ashirai__left {
    width: 490px;
    top: 64%;
  }
}
.main__visual__ashirai__left__img {
  width: 100%;
  height: auto;
}
.main__visual__ashirai__top__left {
  width: 60px;
  position: absolute;
  top: 59%;
  left: 8%;
  rotate: 152deg;
  transform: translate(-20%, -50%);
}
@media screen and (min-width: 768px) {
  .main__visual__ashirai__top__left {
    width: 80px;
    left: 4%;
  }
}
@media screen and (min-width: 1024px) {
  .main__visual__ashirai__top__left {
    width: 80px;
    rotate: 0deg;
    left: 18%;
    top: 54%;
  }
}
.main__visual__ashirai__top__left__img {
  width: 100%;
  height: auto;
}
.main__visual__ashirai__top__right {
  width: 100px;
  position: absolute;
  top: 1%;
  left: auto;
  right: 17%;
  rotate: 169deg;
  transform: translate(-30%, -20%);
}
@media screen and (min-width: 768px) {
  .main__visual__ashirai__top__right {
    width: 130px;
    top: -3%;
    right: 6%;
  }
}
@media screen and (min-width: 1024px) {
  .main__visual__ashirai__top__right {
    width: 80px;
    top: 20%;
    rotate: 0deg;
    right: 14%;
  }
}
.main__visual__ashirai__top__right__img {
  width: 100%;
  height: auto;
}
.main__visual__ashirai__right {
  width: 135px;
  position: absolute;
  top: 71%;
  left: auto;
  right: 0;
  /* rotate: 169deg; */
  transform: translate(15%, 20%);
}
@media screen and (min-width: 768px) {
  .main__visual__ashirai__right {
    width: 185px;
    top: 75%;
  }
}
@media screen and (min-width: 1024px) {
  .main__visual__ashirai__right {
    width: 370px;
    top: 54%;
  }
}
.main__visual__ashirai__right__img {
  width: 100%;
  height: auto;
}
.main__visual__ashirai__wagara {
  position: absolute;
  top: 30%;
  left: 20%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 30px;
}
@media screen and (min-width: 1024px) {
  .main__visual__ashirai__wagara {
    width: 166px;
    left: 29%;
  }
}
.main__visual__ashirai__wagara__img {
  width: 100%;
  height: auto;
}
.main__visual__ashirai__wagara2 {
  position: absolute;
  top: 54%;
  right: 0%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 30px;
}
@media screen and (min-width: 1024px) {
  .main__visual__ashirai__wagara2 {
    width: 166px;
    top: 63%;
    right: 12%;
  }
}
.main__visual__ashirai__wagara2__img {
  width: 100%;
  height: auto;
}

.tikasui {
  background-image: url("/assets/img_kouyaguti/tikasui_bg_sp.svg");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: 710px;
  margin-top: -35%;
}
@media screen and (min-width: 768px) {
  .tikasui {
    background-image: url("/assets/img_kouyaguti/tikasui_bg.svg");
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: -18%;
  }
}
@media screen and (min-width: 1024px) {
  .tikasui {
    height: 1000px;
  }
}
.tikasui__hl {
  font-size: 1.125rem;
  color: black;
  font-family: "kinuta-maruminold-stdn", serif;
  font-weight: normal;
  text-align: unset;
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translate(-50%, 0);
}
@media screen and (min-width: 768px) {
  .tikasui__hl {
    top: 43%;
    left: 50%;
    transform: translate(-50%, 0);
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .tikasui__hl {
    font-size: 2.5rem;
    top: 370px;
    left: 21%;
    transform: translate(0, 0);
  }
}
.tikasui__text {
  font-size: 1rem;
  color: black;
  font-family: "kinuta-maruminold-stdn", serif;
  font-weight: normal;
  text-align: center;
  line-height: 1.7em;
  margin-top: 5%;
  z-index: 1;
  padding-top: 55%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .tikasui__text {
    padding-top: 49%;
  }
}
@media screen and (min-width: 1024px) {
  .tikasui__text {
    margin-left: 21%;
    text-align: left;
    padding-top: 490px;
  }
}
.tikasui__img {
  position: absolute;
  top: 58%;
  right: 0px;
  transform: translate(30%, -20%);
  width: 67px;
  height: auto;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .tikasui__img {
    width: 117px;
  }
}
@media screen and (min-width: 1024px) {
  .tikasui__img {
    top: 38%;
    width: 327px;
  }
}
.tikasui__ashirai__left__img {
  display: none;
}
@media screen and (min-width: 1024px) {
  .tikasui__ashirai__left__img {
    position: absolute;
    top: 38%;
    right: 23%;
    width: 205px;
    height: auto;
    display: block;
  }
}
.tikasui__ashirai__img {
  display: none;
}
@media screen and (min-width: 1024px) {
  .tikasui__ashirai__img {
    display: block;
    position: absolute;
    top: 80%;
    left: -4%;
    width: 205px;
    height: auto;
  }
}

.about {
  background-image: url("/assets/img_kouyaguti/about_bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 2525px;
  position: relative;
}
.about__img__top {
  width: 100%;
  height: auto;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.open__top {
  width: 100%;
  margin-top: -15%;
}
@media screen and (min-width: 768px) {
  .open__top {
    margin-top: 5%;
  }
}
@media screen and (min-width: 1024px) {
  .open__top {
    margin-top: -9%;
  }
}
.open__top__img {
  width: 100%;
  height: auto;
}
.open__bottom {
  width: 100%;
}
.open__bottom__img {
  width: 100%;
  height: auto;
}
.open__hl {
  width: 240px;
  height: auto;
  position: absolute;
  top: 19%;
  left: 50%;
  transform: translateX(-50%);
}
.open__hl__img {
  width: 100%;
  height: auto;
}
.open__main {
  width: 68%;
  height: auto;
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .open__main {
    top: 89%;
    width: 55%;
  }
}
@media screen and (min-width: 1024px) {
  .open__main {
    width: 68%;
  }
}
.open__main__img {
  width: 100%;
  height: auto;
}
.open__bottom__sp {
  background-image: url("/assets/img_kouyaguti/open_bg_sp@72x.webp");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  position: relative;
  height: 2230px;
  position: relative;
}
.open__bottom__sp__2 {
  width: 310px;
  height: 2130px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.open__bottom__sp__2__img {
  width: 100%;
  height: auto;
}
.open__bottom__sp__hl {
  width: 249px;
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
}
.open__bottom__sp__hl__img {
  width: 100%;
  height: auto;
}
.open__bottom__img1 {
  width: 243px;
  position: absolute;
  top: 13.4%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
}
.open__bottom__img1 img {
  width: 100%;
  height: auto;
}
.open__bottom__text {
  width: 264px;
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
}
.open__bottom__text__img {
  width: 100%;
  height: auto;
}
.open__bottom__text2 {
  width: 187px;
  position: absolute;
  top: 34%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
}
.open__bottom__text2__img {
  width: 100%;
  height: auto;
}
.open__bottom__slide {
  margin: 0 auto;
  width: 260px;
  height: 250px;
  text-align: left;
  overflow: hidden;
  position: relative;
}
.open__bottom__slide__img {
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  position: absolute;
}
.open__bottom__slide__wrap {
  width: 260px;
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
}
.open__bottom__kassei {
  width: 267px;
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
}
.open__bottom__kassei__img {
  width: 100%;
  height: auto;
}
.open__bottom__kassei__text {
  width: 263px;
  position: absolute;
  top: 71%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
}
.open__bottom__kassei__text__img {
  width: 100%;
  height: auto;
}
.open__bottom__text3 {
  width: 204px;
  position: absolute;
  top: 86%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
}
.open__bottom__text3__img {
  width: 100%;
  height: auto;
}
.open__bottom__img4 {
  width: 178px;
  position: absolute;
  top: 94%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
}
.open__bottom__img4__img {
  width: 100%;
  height: auto;
}

.art__img {
  width: 100%;
}
.art__img__img {
  width: 100%;
  height: auto;
}

.fee {
  width: 100%;
  margin: 0 auto;
  margin-top: -17%;
}
.fee__img {
  width: 100%;
  height: auto;
}
.fee__img__img {
  width: 100%;
  height: auto;
}

.moromoro__img {
  margin: 0 auto;
  width: 100%;
}
.moromoro__img__img {
  width: 100%;
}

.art__main {
  margin: 0 auto;
  width: 100%;
}
.art__main__img {
  width: 100%;
}

.price {
  background-image: url("/assets/img_kouyaguti/price_bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 645px;
  margin-top: -20%;
  z-index: 1;
  position: relative;
}

.syuhen {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  margin-top: -19%;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .syuhen {
    margin-top: -8%;
    transform: translateX(-10px);
  }
}
.syuhen__img {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .syuhen__img {
    width: 103%;
  }
}
.syuhen__img__img {
  width: 100%;
  height: auto;
}

.adress {
  margin-top: 15%;
}
.adress__wrap {
  display: flex;
  flex-direction: column;
  margin-left: 45px;
  margin-top: 45px;
}
@media screen and (min-width: 1024px) {
  .adress__wrap {
    display: flex;
    flex-direction: row;
    margin-left: 0;
    margin-top: 0;
    justify-content: space-evenly;
    align-items: center;
  }
}
.adress__img {
  width: 160px;
}
@media screen and (min-width: 1024px) {
  .adress__img {
    width: 330px;
  }
}
.adress__img__img {
  width: 100%;
  height: auto;
}
.adress__text {
  font-size: 1.25rem;
  color: black;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  text-align: left;
  margin-top: 28px;
}
@media screen and (min-width: 1024px) {
  .adress__text {
    font-size: 1.875rem;
  }
}
.adress__text1 {
  margin-top: 28px;
  font-size: 1rem;
  color: black;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  text-align: left;
  margin-top: 28px;
}
.adress__text2 {
  font-size: 1rem;
  color: black;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  text-align: left;
  margin-top: 28px;
}
.adress__text3 {
  font-size: 1rem;
  color: black;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  text-align: left;
  margin-top: 28px;
}
.adress__text4 {
  font-size: 1rem;
  color: black;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  text-align: left;
  margin-top: 28px;
}

.br__sp {
  display: block;
}
@media screen and (min-width: 1024px) {
  .br__sp {
    display: none;
  }
}

@media screen and (max-width: 1023px) {
  .br__pc {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .br__pc {
    display: block;
  }
}

.sp__img {
  display: block;
}
@media screen and (min-width: 1024px) {
  .sp__img {
    display: none;
  }
}

.pc__img {
  display: none;
}
@media screen and (min-width: 1024px) {
  .pc__img {
    display: block;
  }
}

.footer {
  background-image: url("/assets/img_kouyaguti/footer__png.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .footer {
    background-image: url("/assets/img_kouyaguti/footer__png__pc.png");
    height: 670px;
  }
}
@media screen and (min-width: 1024px) {
  .footer {
    height: 970px;
  }
}
.footer__logo {
  width: 135px;
  height: auto;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .footer__logo {
    width: 175px;
    top: 60%;
  }
}
@media screen and (min-width: 1024px) {
  .footer__logo {
    width: 245px;
    top: 60%;
  }
}
.footer__sns {
  width: 168px;
  height: auto;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%);
}
@media screen and (min-width: 768px) {
  .footer__sns {
    width: 188px;
  }
}
.footer__sns__list {
  width: 60px;
  height: auto;
  padding-left: 5%;
  padding-right: 5%;
}
@media screen and (min-width: 768px) {
  .footer__sns__list {
    width: 80px;
  }
}
.footer__sns__list__img {
  width: 100%;
  height: auto;
}
.footer__sns__list__img:hover {
  transform: scale(1.2, 1.2);
  cursor: pointer;
  transition-duration: 0.2s;
}
.footer__btm {
  height: 55px;
  background-color: #faf8f3;
  position: relative;
}
.footer__btm__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.9375rem;
  text-align: center;
}

.footer__fee {
  margin-top: 0;
}

.loading-5 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading-5 span:nth-of-type(2) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

.loading-5 span:nth-of-type(3) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.loading-5 span:nth-of-type(4) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.loading-5 span:nth-of-type(5) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.loading-5 span:nth-of-type(6) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.loading-5 span:nth-of-type(7) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.loading-5 span:nth-of-type(8) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}

.loading-5 span:nth-of-type(9) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.loading-5 span:nth-of-type(10) {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}

@-webkit-keyframes animation-loading-5 {
  50% {
    transform: translateY(10px);
  }
}

@keyframes animation-loading-5 {
  50% {
    transform: translateY(10px);
  }
}
.loading {
  position: fixed;
  width: 100%;
  height: 100%;
  /* 背景色の設定 */
  z-index: 9999;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .loading {
    background-color: #eabd53;
  }
}
@media screen and (min-width: 1024px) {
  .loading {
    background-color: transparent;
  }
}

.loading__span {
  position: relative;
}

.span__img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 110vh;
}
.span__img__2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
}
@media screen and (min-width: 768px) {
  .span__img__2 {
    width: 300px;
    height: 300px;
  }
}
@media screen and (min-width: 1024px) {
  .span__img__2 {
    width: 600px;
    height: 600px;
  }
}

.span__img__yuge1 {
  position: absolute;
  top: 76%;
  left: 74%;
  transform: translate(-50%, -50%);
  width: 170px;
}
@media screen and (min-width: 1024px) {
  .span__img__yuge1 {
    width: 200px;
  }
}
.span__img__yuge1__img {
  width: 100%;
  height: auto;
}

.span__img__yuge2 {
  position: absolute;
  top: 80%;
  left: 60%;
  transform: translate(-50%, -50%);
  width: 80px;
}
@media screen and (min-width: 1024px) {
  .span__img__yuge2 {
    width: 130px;
    left: 66%;
  }
}
.span__img__yuge2__img {
  width: 100%;
  height: auto;
}

#content {
  display: none; /* 初期状態では非表示 */
}

#loading {
  position: relative;
  top: 0;
  left: 0;
}

.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 90%; /* 画面の中央に配置 */
  left: 8%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: auto;
  z-index: 10;
}
@media screen and (min-width: 1024px) {
  .image-container {
    width: 90px;
  }
}

.scroll-image {
  display: none;
  width: 100%;
  height: auto;
}

.maps {
  width: 280px;
  height: 160px;
  border-radius: 10px;
  margin-top: 5%;
  margin-left: 45px;
}
@media screen and (min-width: 1024px) {
  .maps {
    width: 750px;
    height: 410px;
    margin: 0 auto;
    margin-top: 5%;
    margin-bottom: 5%;
  }
}

.map__wrap {
  width: 280px;
  height: 150px;
  margin-top: 5%;
  margin-left: 45px;
}
@media screen and (min-width: 1024px) {
  .map__wrap {
    width: 773px;
    height: 410px;
    margin: 5% auto 5%;
  }
}

.map__wrap2 {
  width: 280px;
  height: 150px;
  margin-top: 5%;
  margin-left: 45px;
}
@media screen and (min-width: 1024px) {
  .map__wrap2 {
    margin: 5% auto 0;
    width: 773px;
    height: 410px;
  }
}

.map__1 {
  border-radius: 20px;
}

.map__2 {
  border-radius: 20px;
}
/*# sourceMappingURL=style.css.map */