@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Homemade+Apple&family=Noto+Sans+JP:wght@400;700&family=Noto+Serif+JP:wght@400;700&display=swap");
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  height: 100%;
  text-shadow: 1px 1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, -1px -1px 0 #fff, 0px 0px 1px #fff, 0px 0px 2px #fff, 0px 0px 3px #fff, 0px 0px 4px #fff, 0px 0px 6px #fff, 0px 0px 8px #fff, 0px 0px 10px #fff, 0px 0px 12px #fff, 0px 0px 16px #fff, 0px 0px 20px #fff, 0px 0px 24px #fff;
  text-align: justify;
  text-align-last: left;
  line-height: 1.5;
}

li {
  list-style-type: none;
}

@keyframes fadeIn_immediately {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.disp-sp {
  display: none;
}
@media screen and (max-width: 375px) {
  .disp-sp {
    display: inline;
  }
}

.disp-tab-s {
  display: none;
}
@media screen and (max-width: 600px) {
  .disp-tab-s {
    display: inline;
  }
}

.disp-tab {
  display: none;
}
@media screen and (max-width: 768px) {
  .disp-tab {
    display: inline;
  }
}

@media screen and (max-width: 600px) {
  .hidden-tab-s {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .hidden-pc-s {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .hidden-tab {
    display: none;
  }
}

@keyframes anim_bg {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 400%;
  }
}
/*フェードイン要素*/
@media screen and (min-width: 768px) {
  .fade-in-v {
    opacity: 0;
    transition-duration: 1.5s;
    transform: translate(0, 30px);
  }
}
@media screen and (min-width: 768px) {
  .fade-in-v.scroll-in {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@media screen and (min-width: 768px) {
  .fade-in-r {
    opacity: 0;
    transition-duration: 1s;
    transform: translate(200px, 0) scale(1.2);
    pointer-events: none;
  }
}
@media screen and (min-width: 768px) {
  .fade-in-r.scroll-in {
    opacity: 1;
    transform: translate(0, 0) scale(1);
    pointer-events: all;
  }
}

@media screen and (min-width: 768px) {
  .fade-in-l {
    opacity: 0;
    transition-duration: 1s;
    transform: translate(-200px, 0) scale(1.2);
    pointer-events: none;
  }
}
@media screen and (min-width: 768px) {
  .fade-in-l.scroll-in {
    opacity: 1;
    transform: translate(0, 0) scale(1);
    pointer-events: all;
  }
}

.delay025 {
  transition-delay: .25s;
}

.delay050 {
  transition-delay: .5s;
}

.delay075 {
  transition-delay: .5s;
}

/*lightBox表示*/
/*
.image-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: justify;
      justify-content: space-around;
  padding: 4em 4vw;
  
  &-item {
    width: 300px;
    overflow: hidden;
    margin-bottom: 40px;
    border-radius: 10px;
  }
}
.about .image-list-item{
  width: 210px;  //上書き：ギャラリーのサムネイル
}

.item-thumbnail{
  
  img {
    display: block;
    width: 100%;
    cursor: pointer;
    filter: grayscale(1);
    transition: all $duration-basic ease;
  }
  &:hover img {
    filter: grayscale(0);
    transform: scale(1.25);
  }
}
*/
/*
.about .item-thumbnail{
  
  img{
    filter: grayscale(0);
  }
}

.item-thumbnail:focus + .item-modal {
  display: block;
}

.item-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  animation: fadeIn $duration-basic ease;

  img {
    display: block;
    position: fixed;
    left: 50%;
    top: 50%;
    max-width: calc(100vw - 5%);
    border-radius: 10px;
    transform: translate(-50%, -50%);
    
    box-shadow: $shadow4;    
    z-index: 2;//背景の星アニメーションより上にするため
  }
}
*/
/* アニメーション */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes arrow {
  0% {
    transform: translate(0, 0);
  }
  80% {
    transform: translate(0, 8px);
  }
  0%, 90%, 100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}
/*
@keyframes transform-rotate1 {
  0% {
    transform:rotate(0deg);
  }
  25% {
    transform:rotate(3deg);
  }
  75% {
    transform:rotate(-3deg);
  }
  100% {
    transform:rotate(0deg);
  }
}

@keyframes transform-translate1 {
  0% {
    transform:translate(0, 0);
  }
  25% {
    transform:translate(2px, -3px);
  }
  50% {
    transform:translate(-2px, 3px);
  }
  75% {
    transform:translate(2px, 6px);
  }
  100% {
    transform:translate(-2px, 10px) ;
  }
}
*/
/*ヘッダー*/
.main {
  width: min(calc(100% - 16px), 1200px);
  margin: 0 auto;
}

.intro__title {
  font-size: 28px;
  font-family: "Noto Serif JP", serif;
  text-align-last: center;
  letter-spacing: .25em;
  margin-top: 20px;
}
.intro__title span {
  font-family: "Homemade Apple", cursive;
  font-weight: bold;
  font-size: .7em;
  letter-spacing: 0;
}
.intro__title span > span {
  font-family: "Noto Serif JP", serif;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .intro__title {
    font-size: 26px;
  }
}
@media screen and (max-width: 600px) {
  .intro__title {
    font-size: 22px;
  }
}
@media screen and (max-width: 480px) {
  .intro__title {
    font-size: 20px;
    letter-spacing: 0;
  }
}
.intro__text {
  width: min(100%, 600px);
  font-size: 17px;
  line-height: 1.8;
  background-image: url("../svg/border-star1.svg");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
  padding-bottom: 80px;
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  .intro__text {
    width: min(100%, 560px);
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .intro__text {
    width: calc(100% - 2em);
    font-size: 14px;
  }
}

/*フッター*/
.footer {
  text-shadow: none;
  background-color: rgba(156, 56, 96, 0.6);
  margin-top: 80px;
  padding: 24px 0;
}
.footer__nav1 {
  display: flex;
  justify-content: center;
  column-gap: 20px;
}
.footer__nav1 a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}
.footer__nav1 a:hover {
  text-decoration: underline;
}
.footer__nav2 {
  display: flex;
  justify-content: center;
  column-gap: 24px;
  padding: 0 16px;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .footer__nav2 {
    flex-wrap: wrap;
    width: min(100%, 480px);
  }
}
.footer__nav2 li {
  width: min(100%, 200px);
  margin-top: 40px;
}
.footer__nav2 li img {
  transition: transform 0.5s, filter 0.5s;
}
.footer__nav2 li:hover .footer__tn img {
  transform: translateY(-10px);
  filter: sepia(0%);
}
.footer__nav2 li:nth-child(even) .footer__tn::before {
  border-bottom: 16px solid #c8e4c7;
  border-right: 16px solid #c8e4c7;
}
.footer__nav2 li:nth-child(even) .footer__tn::after {
  border-bottom: 16px solid #c8e4c7;
  border-left: 16px solid #c8e4c7;
}
.footer__nav2 li:nth-child(odd) .footer__tn::before {
  border-bottom: 16px solid #e4c7c7;
  border-right: 16px solid #e4c7c7;
}
.footer__nav2 li:nth-child(odd) .footer__tn::after {
  border-bottom: 16px solid #e4c7c7;
  border-left: 16px solid #e4c7c7;
}
.footer__nav2-name {
  margin-top: 16px;
}
.footer__nav2-name img {
  width: auto;
  height: 36px;
  margin: 4px auto 0;
}
.footer__tn {
  position: relative;
  display: block;
}
.footer__tn::before, .footer__tn::after {
  content: '';
  position: absolute;
  width: 0px;
  height: 0px;
  filter: drop-shadow(2px 2px 2px #6d2228);
  z-index: 1;
}
.footer__tn::before {
  bottom: -6px;
  right: -6px;
  border-bottom: 16px solid #fff;
  border-right: 16px solid #fff;
  border-top: 16px solid rgba(0, 0, 0, 0);
  border-left: 16px solid rgba(0, 0, 0, 0);
}
.footer__tn::after {
  bottom: -6px;
  left: -6px;
  border-top: 16px solid rgba(0, 0, 0, 0);
  border-right: 16px solid rgba(0, 0, 0, 0);
  border-bottom: 16px solid #fff;
  border-left: 16px solid #fff;
}
.footer__tn img {
  border: 4px solid #f1edcf;
  box-shadow: 4px 4px 6px -1px #6d2228;
  filter: sepia(70%);
}
.footer small {
  display: block;
  text-align-last: center;
  color: #fff;
  margin-top: 40px;
}

html {
  /*
  background-image: url("../img/index/bg-body01_2400.jpg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
  background-attachment: fixed;
  */
}
@media screen and (max-width: 768px) {
  html {
    background-position: 20% center;
  }
}

body {
  position: relative;
  color: #fff;
  text-shadow: 0px 0px 2px #2e1707, 0px 0px 6px #2e1707, 0px 0px 10px #2e1707, 0px 0px 16px #2e1707, 0px 0px 22px #2e1707;
}
body::after {
  content: "";
  width: 100%;
  height: 100vh;
  background-image: url("../img/terms/bg-body01_2400.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  z-index: -2;
  position: fixed;
  top: 0;
}
@media screen and (max-width: 768px) {
  body::after {
    background-position: right center;
  }
}

.main {
  width: min(calc(100% - 32px), 800px);
}

.intro__text {
  background-image: none;
}

.contents {
  margin-top: 40px;
}
.contents li + li {
  margin-top: 120px;
}
.contents li > ul {
  padding: 0 5%;
  margin-top: 40px;
}
.contents li > ul li {
  list-style-type: disc;
}
.contents li > ul li + li {
  margin-top: 16px;
}
.contents h2 {
  position: relative;
  font-family: "Noto Serif JP", serif;
  color: #2e1707;
  text-align: center;
  text-align-last: center;
  border: 2px solid #000;
  border-radius: 20px;
  text-shadow: none;
  background: #f3e5d0;
}
.contents h2:before, .contents h2:after {
  position: absolute;
  content: '';
}
.contents h2:before {
  top: -40px;
  left: calc(50% - 40px);
  width: 80px;
  height: 80px;
  border: 2px solid #000;
  border-radius: 50%;
  background: #f3e5d0;
}
.contents h2:after {
  top: 4px;
  left: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border: 2px dashed #000;
  border-radius: 16px;
  background: #f3e5d0;
}
.contents h2 i {
  font-size: 20px;
  font-size: 2rem;
  line-height: 60px;
  position: absolute;
  z-index: 2;
  top: -40px;
  left: calc(50% - 44px);
  width: 80px;
  height: 60px;
  text-align: center;
}
.contents h2 span {
  position: relative;
  z-index: 1;
  display: block;
  padding: 1.5rem;
}
.contents h2 span:before, .contents h2 span:after {
  position: absolute;
  content: '';
}
.contents h2 span:before {
  top: -34px;
  left: calc(50% - 34px);
  width: 68px;
  height: 40px;
  border: 2px dashed #000;
  border-radius: 50vw 50vw 0 0;
}
.contents h2 span:after {
  position: absolute;
  top: 4px;
  left: calc(50% - 32px);
  width: 64px;
  height: 10px;
  background: #f3e5d0;
}
.contents h3 {
  padding-left: 5%;
  margin-top: 40px;
}
.contents p {
  padding: 0 5%;
  margin-top: 16px;
}
.contents h2 + p {
  margin-top: 40px;
}
.contents address {
  width: min(100%, 480px);
  display: flex;
  justify-content: center;
  font-style: normal;
  border: 1px solid;
  padding: 1em;
  margin: 40px auto 0;
}
.contents address p {
  margin: 0;
}
.contents address p + P {
  margin-top: 24px;
}

/*# sourceMappingURL=privacy_mh.css.map */
