@charset "utf-8";

/*----------------------------------------------------
 elements
 ----------------------------------------------------*/

html,
body {
  margin: 0;
  padding: 0;
}

body {
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  /* font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro",
    "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", "Noto Serif JP", serif; */
  font-feature-settings: "palt" !important;
  -webkit-text-size-adjust: 100%;
  letter-spacing: 1.5px;
  line-height: 1.5;
  color: #1e1d1b;
  position: relative;
}


.garamond {
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
}

.en {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.hind {
  font-family: "Hind", sans-serif;
  font-weight: 500;
  font-style: normal;
}

figure {
  position: relative;
}

a {
  display: block;
  color: #1e1d1b;
  text-decoration: none;
  transition: all 0.5s;
  cursor: pointer;
}

a:hover {
  opacity: 0.7;
}

img {
  width: 100%;
  max-width: 100%;
  vertical-align: bottom;
}

li {
  list-style: none;
}

span {
  vertical-align: baseline;
}

/* text */
.small {
  font-size: 12px;
}

sup {
  font-size: 11px;
  vertical-align: super;
}

/*caption*/
.cap_txt {
  position: absolute;
  font-size: 10px;
  line-height: 1.3;
  bottom: 5px;
  z-index: 20;
}

.cap_R {
  right: 5px;
}

.cap_L {
  left: 5px;
}

.cap_W {
  color: #fff;
}

.cap_B {
  color: #000;
}

.cap_ShaW {
  text-shadow: 2px 0 2px #fff, -2px 0 2px #fff, 0 2px 2px #fff, 0 -2px 2px #fff;
}

.cap_ShaB {
  text-shadow: 2px 0 2px #000, -2px 0 2px #000, 0 2px 2px #000, 0 -2px 2px #000;
}

.inner_1200 {
  width: 90%;
  max-width: 1200px;
}

.inner_1100 {
  width: 90%;
  max-width: 1100px;
}

.inner_1000 {
  width: 90%;
  max-width: 1000px;
}

.inner_940 {
  width: 90%;
  max-width: 940px;
}

/* note */
.note {
  width: 90%;
  max-width: 1000px;
  color: #333;
  padding: 0;
  margin: 50px auto 0;
}

.note li {
  font-size: 10px;
  text-indent: -1em;
  padding-left: 1em;
}

.note_box {
  color: #333;
  padding: 0;
  margin: 20px auto 0;
}

.note_box li {
  font-size: 10px;
  text-indent: -1em;
  padding-left: 1em;
}

.note_box.text_right li {
  text-align: right;
}

.att {
  font-size: 10px;
  text-indent: -1em;
  padding-left: 1em;
  text-align: right;
  margin: 10px 10px 0 0;
}

/* pagetop */
#pagetop {
  display: none;
  width: 40px;
  height: 40px;
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 999;
}

#pagetop a {
  display: block;
  width: 100%;
  height: 100%;
  background: #554843;
  position: relative;
}

#pagetop a span {
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: rotate(-45deg) translate(-25%, -50%);
}

/* copyright */
.copyright {
  font-size: 10px;
  color: #fff;
  letter-spacing: 1.5px;
  text-align: center;
  background: #232323;
  border-top: 1px solid #fff;
  padding: 8px 0;
}

/* yokoku */
.yokoku {
  justify-content: flex-start;
  align-items: center;
  font-size: 12px;
  color: #333;
  margin: 30px auto 20px;
}

.yokoku dt {
  box-sizing: border-box;
  width: 10%;
  text-align: center;
  border: 1px solid #333;
  margin: 0 20px 0 0;
  padding: 12px 12px 12px 12px;
}

/* flex */
.flex {
  display: flex;
  flex-wrap: wrap;
}

/* キラっと処理 */
.shine {
  position: relative;
  overflow: hidden;
}

.shine::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background-image: linear-gradient(130deg,
      rgba(255, 255, 255, 0) 25%,
      rgba(255, 255, 255, 0.5) 50%,
      rgba(255, 255, 255, 0) 75%);
  animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }

  30% {
    left: 100%;
  }

  100% {
    left: 100%;
  }
}

/* キラっと処理 */
.shine02 {
  position: relative;
  overflow: hidden;
}

.shine02::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background-image: linear-gradient(130deg,
      rgba(255, 255, 255, 0) 25%,
      rgba(255, 255, 255, 0.5) 50%,
      rgba(255, 255, 255, 0) 75%);
  animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }

  20% {
    left: 100%;
  }

  100% {
    left: 100%;
  }
}

.sp {
  display: none;
}

.pc {
  display: block;
}

/*---------------------------
tab_横
---------------------------*/
@media only screen and (max-width: 1024px) {

  /* yokoku */
  .yokoku dd {
    width: 100%;
    padding: 12px;
    border-right: none;
  }

  .note_box.text_right li {
    text-align: left;
  }
}

/*---------------------------
sp
---------------------------*/
@media only screen and (max-width: 768px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .note-Area {
    padding: 20px 0 50px 0;
  }

  .note {
    padding: 0;
  }

  .note_box {
    margin: 10px auto 0;
  }


  /* pagetop */
  #pagetop {
    right: 5px;
    bottom: 95px;
    left: initial;
    right: 10px;
    width: 50px;
    height: 50px;
  }

  /* yokoku */
  .yokoku {
    flex-direction: column;
    margin: 30px auto 0;
  }

  .yokoku dt {
    width: 100%;
    font-size: 16px;
    padding: 5px;
    margin: 0 0 10px 0;
  }

  .yokoku dd {
    padding: 0;
  }

  .copyright {
    margin-bottom: 74px;
  }
}

/* PC電話無効化 */
@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}