@charset "utf-8";
@import 'https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@400;500&display=swap';
/*-- Template by Luca --*/
/*-- Template name PLAY --*/
/*-- https://as.lclla.com/ --*/
* {
  margin: 0;
  padding: 0;
  font-weight: 400;
  font-size: inherit;
  font-style: normal;
  word-break: break-all;
  box-sizing: border-box;
}
*:focus {
  outline: none;
}
ul, ol {
  list-style: none;
}
:root {
  /* メイン横幅最大値指定 */
  --main-width: 1200px;
  /* レイレイアウト指定 (1カラムレイアウトにしたい場合は"inline-grid”に変更してください)*/
  --main-display: flex;
  /* 三角　背景画像 */
   --heading-point-image: url(heading-point-image.png) no-repeat center/cover;
  /* header　画像 */
  --bg-01: url("1枚目画像URL") no-repeat center/cover;
  --bg-02: url("2枚目画像URL") no-repeat center/cover;
  --bg-03: url("3枚目画像URL") no-repeat center/cover;
  --bg-04: url("4枚目画像URL") no-repeat center/cover;
  --bg-05: url("5枚目画像URL") no-repeat center/cover;
  /* フォントカラー(千歳茶) */
  --font: #494a41;
  /* body背景色(白藍) */
  --sub: #c1e4e9;
  /* リンク色(秘色色) */
  --sub-2: #abced8;
  --gradient: linear-gradient(to top, rgba(var(--black), .6), rgba(var(--black), .3), rgba(var(--black), 0));
  /* 白 */
  --white: 255, 255, 255;
  /* 黒 */
  --black: 0, 0, 0;
  /* 練り色   --shitoshito: 237, 228, 205;*/
  /* 象牙色   --shitoshito: 248, 244, 230;*/
  --shitoshito: 248, 244, 230;
  /* body　フォントサイズ */
  --body-font-size: 1.1rem, 2.8vw, 1.5rem;
  /* heading1 タイトル　フォントサイズ */
  --h1-font-size: 2.5rem, 6.3vw, 3.5rem;
  /* heading2　フォントサイズ */
  --h2-font-size: 1.7rem, 4.25vw, 2.2rem;
  /* heading3　フォントサイズ */
  --h3-font-size: 1.3rem, 3.25vw, 1.5rem;
  /* navigation　フォントサイズ */
  --nav-font-size: 1.6rem, 4vw, 2rem;
  --b: 10px;
}
html {
  font-size: 62.5%;
  scrollbar-width: thin;
  scrollbar-color: var(--sub) rgba(var(--shitoshito), 1);
  border-radius: 5px;
}
body {
  font: clamp(var(--body-font-size))/1.8 "Noto Sans JP", sans-serif;
  color: var(--font);
  width: 100%;
  background: rgba(var(--shitoshito));
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  letter-spacing: .13em;
  user-select: none;  /* コピペ防止 */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

h1, h2, h3, .new::after, .main-top, nav li a, form input[type].btn, .img-container li::before, .swiper-slide .caption::after {
  font-family: "Aubrey", "WDXL Lubrifont TC", "Cormorant Garamond", "Cormorant Garamond", "Noto Serif JP", serif;
}

::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background-color: rgba(var(--white), 1);
  border: none;
}
::-webkit-scrollbar-thumb {
  background: var(--sub);
  box-shadow: none;
  border-radius: 5px;
}
  /* 青藍/路考茶#8c7042 */
a {
  color: #274a78;
  text-decoration: none;
}
  /* 青藍/路考茶(140, 112, 66, 0.6) */
main a {
  text-decoration: underline;
  text-decoration-thickness: .5px;
  text-decoration-skip-ink: none;
  text-decoration-color: rgba(39, 74, 120, 0.6);
  text-underline-offset: 3px;
}
main a:hover {
  filter: blur(1px);
}
.box {
  width: 100%;
  padding: 10px 15px;
  background: rgba(var(--black), 0.05);
}
.new {
  background: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.new::after {
  content: "New";
  color: #da7337;
  margin-left: 8px;
  font-size: .9em;
}
h1 {
  font-size: clamp(var(--h1-font-size));
  font-weight: 600;
  letter-spacing: 3.5px;
  color: var(--sub-2);
  text-shadow: 1px 0 0 rgba(var(--black), .6);
  opacity: 0;
  line-height: 3;
  text-align: center;
  position: relative;
  animation: fade 1.5s forwards;
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
h1::before {
  content: "";
  position: absolute;
  width: 45px;
  height: 55px;
  left: 50%;
  top: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  aspect-ratio: cos(30deg);
  clip-path: polygon(100% 50%, 0 100%, 0 0, 100% 50%, calc(100% - var(--b)) 50%, calc(var(--b)/2) calc(var(--b)*cos(30deg)), calc(var(--b)/2) calc(100% - var(--b)*cos(30deg)), calc(100% - var(--b)) 50%);
  background: var(--heading-point-image);
  filter: contrast(1.2);
  animation: fade 1s .7s forwards;
  z-index: -1;
}
h2 {
  position: relative;
  font-size: clamp(var(--h2-font-size));
  font-weight: 500;
  line-height: 2;
  padding-top: 15px;
  writing-mode: vertical-lr;
  color: var(--sub-2);
  background-image: linear-gradient(180deg, rgba(var(--black), .4) 0 60px, rgba(var(--black), .1) 60px);
  background-repeat: no-repeat;
  background-size: 2px 100%;
  background-position: right;
}
h2::before {
  content: "";
  position: absolute;
  top: -12px;
  right: calc(50% - 9px);
  width: 18px;
  height: 20px;
  background: var(--heading-point-image);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  filter: contrast(1.25);
}
section:nth-of-type(odd) {
  padding-right: 70px;
}
section:nth-of-type(even) > h2 {
  background-position: left;
}
h3 {
  font-size: clamp(var(--h3-font-size));
  color: rgba(var(--black), 1);
  position: relative;
  width: fit-content;
  border-bottom: 1px dotted rgba(var(--black), .2);
  margin-left: -30px;
  padding: 0 15px 0 30px;
}
h3::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  right: -6px;
  top: calc(100% - 3px);
  border-radius: 50%;
  background: rgba(var(--black), .2);
}

header {
  height: 70vh;
}
nav {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  margin-top: 20px;
  z-index: 1;
  width: 100%;
  height: 80px;
  border: 1px solid rgba(var(--white), 0);
  background-color: rgba(var(--white), 0);
  transition: border .6s, background-color .6s;
}
nav ul {
  height: 100%;
  width: 75%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin: 0 auto;
}
nav li {
  height: 100%;
  width: 100%;
}
nav li a {
  font-size: clamp(var(--nav-font-size));
  position: relative;
  text-transform: capitalize;
  width: 100%;
  height: 100%;
  color: rgba(var(--black), 1);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
nav li a::before {
  content: attr(data-text);
  position: absolute;
  top: 50%;
  opacity: 1;
  background: linear-gradient(to top, rgba(var(--black), .7) 0%, rgba(var(--black), 0) 100%);
  -webkit-mask-image: linear-gradient(transparent 0%, rgba(var(--black), 1) 100%);
  mask-image: linear-gradient(transparent 0%, rgba(var(--black), 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transform: rotateX(180deg);
  transition: opacity .3s;
}
nav.change {
  background-color: rgba(var(--shitoshito), 1);
  border-bottom: solid 1px rgba(var(--black), .5);
}
.js-menu.change ul li a::before {
  opacity: 0;
}
main {
  width: min(calc(100% - 6px), var(--main-width));
  padding: 150px 35px 35px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.main-visible {
  padding: 20px 35px 35px 35px;
}
.main-visible > div {
  text-align: center;
  margin: 0 auto;
  padding: 0 30px;
  width: min(100%, 600px);
}
.main-visible div > .inline {
  padding: 10px 0;
}
.main-top {
  font-size: x-large;
  color: var(--sub-2);
  text-shadow: 1px 0 0 rgba(var(--black), .6);
  line-height: 3.2;
  text-align: center;
  position: relative;
}
.main-top::before {
  content: "";
  position: absolute;
  width: 45px;
  height: 55px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: cos(30deg);
  clip-path: polygon(100% 50%, 0 100%, 0 0, 100% 50%, calc(100% - var(--b)) 50%, calc(var(--b)/2) calc(var(--b)*cos(30deg)), calc(var(--b)/2) calc(100% - var(--b)*cos(30deg)), calc(100% - var(--b)) 50%);
  background: var(--heading-point-image);
  filter: contrast(1.2);
  z-index: -1;
}
section {
  display: flex;
  gap: 30px;
  padding-top: 15px;
  min-height: 200px;
}
section.fade {
  opacity: 0;
  transition: opacity .8s ease;
}
section.fade.active {
  opacity: 1;
}
.inner.fade, .contents.fade, .img-container li.fade {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .8s ease, transform .8s ease;
}
.inner.fade.active, .contents.fade.active, .img-container li.fade.active {
  opacity: 1;
  transform: translateY(0);
}
section:nth-of-type(even) {
  flex-direction: row-reverse;
  padding-left: 70px;
}
.inner {
  display: var(--main-display);
  gap: 30px 50px;
  width: 100%;
  padding: 8px 0;
}
.inner > .contents {
  flex: 1 1 50%;
}
.contents {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
}
.notice {
  padding-right: 15px;
  height: 120px;
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: var(--sub) rgba(var(--shitoshito), 1);
  border-radius: 5px;
}
.notice-inner dt {
  display: table;
  padding: 0 5px;
  background: linear-gradient(transparent 60%, rgba(var(--black), .07) 60%);
  line-height: 1.3;
}
.notice-inner dd {
  padding: 11px 0 11px 20px;
}
.img-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 30px;
  width: 100%;
}
.img-container li {
  display: flex;
  position: relative;
  flex: 0 0 calc(50% - 15px);
  gap: 15px;
  margin-top: 30px;
}
.img-container li::before {
  content: attr(data-text);
  position: absolute;
  left: -5px;
  display: block;
  font-size: 1.05em;
  color: rgba(var(--black), .8);
  margin-top: -33px;
  z-index: 1;
}
.img-container li::after {
  content: "";
  position: absolute;
  top: 10px;
  left: -20px;
  height: 1px;
  width: 60px;
  background: #9d9d9d;
  mix-blend-mode: plus-lighter;
  transform: rotate(-45deg);
}
.main-img-box:hover {
  filter: none;
}
.img-container li .title {
  line-height: 1.2;
  position: relative;
  padding: 0 0 7px 15px;
  margin: 0 0 20px -15px;
  display: block;
  height: fit-content;
  width: calc(100% + 15px);
  border-bottom: 1px dotted rgba(var(--black), .3);
}
.img-container .synopsis {
  font-size: .9em;
  background: rgba(var(--black), .05);
  padding: 33px 12px 15px;
  position: relative;
  text-align: justify;
}
.img-container .synopsis > span {
  position: absolute;
  line-height: 1.6;
  top: 10px;
  left: -7px;
  padding-left: 10px;
  background-color: var(--sub);
  color: rgba(var(--white), 1);
}
.img-container .synopsis > span::before {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 0;
  height: 0;
  border: none;
  border-top: 5px solid transparent;
  border-right: 7px solid rgba(var(--black), .6);
  content: '';
}
.img-container .synopsis > span::after {
  content: '';
  position: absolute;
  height: 100%;
  width: 20px;
  background: linear-gradient(-65deg, transparent 50%, var(--sub) 50%);
}
.img-container img {
  width: inherit;
  height: inherit;
  object-fit: cover;
}
.main-box {
  display: flex;
  width: 100%;
  gap: 25px;
}
.prof {
  display: block;
}
.prof > .synopsis {
  font-size: .9em;
  text-align: justify;
}
.prof .main-img-box, .main-box .img, .img-container .main-img-box {
  position: relative;
  border-radius: 3px;
  width: 80px;
  height: 100px;
  object-fit: cover;
}
.prof .main-img-box {
  margin: 0 20px 5px 0;
  float: left;
}
.prof .main-img-box::before, .main-box .main-img-box::before, .img-container .main-img-box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--heading-point-image);
  z-index: -1;
  transform: translate(6px, 6px);
  filter: contrast(1.2);
  box-shadow: inset 0px 0px 5px 1px rgba(var(--shitoshito), 1);
  z-index: -1;
}
.prof .main-img-box::after, .main-box .main-img-box::after, .img-container .main-img-box::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  outline: solid 1px rgba(var(--shitoshito), 1);
  outline-offset: -4px;
}
.link_list {
  display: grid;
  grid-template-columns: auto 1fr;
  line-height: 1;
}
.link_list dt {
  background: linear-gradient(transparent 60%, rgba(var(--black), .07) 60%);
  height: fit-content;
  width: fit-content;
}
.link_list dd > span {
  line-height: 1.7;
}
.link_list dd {
  margin: 0 0 25px 40px;
}
.link_list dd > .inline {
  margin: 0;
}
.inline li {
  display: inline;
}
.inline li:not(:last-child):after {
  content: "";
  padding: 0 3px 0 8px;
}
.block span {
  font-size: .9em;
  line-height: 1;
  background: var(--sub);
  color: rgba(var(--white), 1);
  margin-left: 10px;
  padding: 1px 5px 3px;
}
.block p {
  font-size: .9em;
  padding: 15px 0 15px 20px;
}
.list {
  padding-left: 1.6rem;
  margin: 10px 0;
}
.list li {
  list-style-type: disc;
}
input[type], textarea, button, select {
  font-family: inherit;
  margin: 0;
  font-size: inherit;
  height: initial;
  width: min(100%, 150px);
  max-width: inherit;
  line-height: 1.7;
  letter-spacing: 1.5px;
  color: var(--font);
  background: rgba(var(--black), 0.05);
  padding: 8px;
  appearance: none;
  border: 1px solid rgba(var(--black), 0.05);
  border-radius: 3px;
  font-weight: normal;
  box-shadow: 0 0 5px rgba(var(--black), 0.25);
  transition: all .7s;
}
.footer {
  text-align: center;
  padding: 20px 0;
}
.footer li a {
  padding: 0 5px;
}
.swiper {
  padding: 15px 0;
  height: 100%;
}
.swiper-pagination-bullet, .swiper-pagination-bullet-active {
  background: rgba(var(--white), 1);
}
.swiper-slide {
  box-shadow: 0 0 16px rgba(var(--black), .35);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: self-start;
}
.swiper-slide .caption {
  opacity: 0;
  transition: opacity .5s .3s;
}
.swiper-slide-active .caption {
  opacity: 1;
  width: min(90%, 500px);
  margin: 0 auto 50px;
  position: relative;
}
.swiper-slide .caption::before {
  content: attr(data-text);
  font-size: .8em;
  display: table;
  padding: 0 5px;
  margin-bottom: 5px;
  background: rgba(var(--white), .9);
  color: rgba(var(--black), 1);
}
.swiper-slide .title {
  display: inline-block;
  position: relative;
  margin-bottom: 15px;
  font-size: inherit;
  color: rgba(var(--white), 1);
  filter: blur(0);
  transition: filter .5s;
}
.swiper-slide .title::after {
  content: '';
  display: inline-block;
  height: .5px;
  background-color: rgba(var(--white), 1);
  width: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  transition: background-color .5s;
}
.swiper-slide .title:hover {
  filter: blur(1px);
}
.swiper-slide .title:hover::after {
  background-color: rgba(var(--white), 0);
}
.swiper-slide p {
  color: rgba(var(--white), .9);
  line-height: 1.5;
  font-size: .9em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.swiper-slide-active {
  position: relative;
  transition: all .5s;
}
.swiper-slide-active::before {
  content: "";
  width: 100%;
  height: 60%;
  bottom: 0;
  position: absolute;
  background-image: var(--gradient) !important;
  border-radius: 0 0 10px 10px;
}
.swiper-slide-01 {
  background: var(--bg-01);
}
.swiper-slide-02 {
  background: var(--bg-02);
}
.swiper-slide-03 {
  background: var(--bg-03);
}
.swiper-slide-04 {
  background: var(--bg-04);
}
.swiper-slide-05 {
  background: var(--bg-05);
}
.swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right {
  background-image: none;
}
.swiper-pagination {
  bottom: 20px !important;
}
.s-width {
  max-width: 700px;
}
.textarea-code {
  width: 100%;
  height: 80px;
  border-radius: 0;
  margin: 20px auto;
}
button.btn-clipboard {
  width: 140px;
  margin-bottom: 20px;
  cursor: pointer;
  color: rgba(var(--white), 1);
  background: var(--sub);
}
button.btn-clipboard:hover {
  color: var(--font);
  background: rgba(var(--black), 0.05);
}
@media screen and (max-width:1180px) {
  header {
    height: 60vh;
  }
}
@media screen and (max-width:912px) {
  header {
    height: 60vh;
  }
  .inner {
    flex-direction: column;
  }
  .img-container li {
    flex: 0 0 100%;
  }
}
@media screen and (max-width:767px) {
  h2 {
    line-height: inherit;
  }
  h3 {
    margin-left: -15px;
    padding-left: 15px;
  }

  nav {
    height: 60px;
  }
  nav ul {
    width: 90%;
  }
  .notice {
    height: 90px;
  }
  main {
    padding: 150px 0 35px;
  }
  .main-visible {
    padding: 20px 0 35px;
  }
  section {
    gap: 15px;
  }
  section:nth-of-type(odd) {
    padding-right: 35px;
  }
  section:nth-of-type(even) {
    flex-direction: row-reverse;
    padding-left: 35px;
  }
  section:nth-of-type(even) h3 {
    margin-left: -35px;
    padding-left: 35px;
  }
  .main-box.prof {
    flex-direction: column;
  }
  .link_list dd {
    margin-left: 20px;
  }
  .prof .main-img-box, .main-box .img, .img-container .main-img-box {
    width: 75px;
    height: 95px;
  }
  .swiper {
    padding: 0;
  }
  .swiper-slide {
    border-radius: 0;
    box-shadow: none;
  }
  .swiper-slide-active::before {
    border-radius: 0;
  }
  .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 25px;
  }
}

.book {
    font-family: "Noto Serif JP", "Cormorant Garamond", "Cormorant Garamond", serif;
    font-size: 16px;
    font-weight: normal;
    margin: 0 auto;
    max-width: 100%;
    width: 90%;
}

.book p {
    font-size: 15px;
    margin-bottom: 25px;
}

.ft {
    font-family: "WDXL Lubrifont TC", "WDXL Lubrifont TC", "Noto Sans JP", sans-serif;
    text-align: center;
    margin-bottom: 20px;
}

.ft span {
    text-decoration: line-underline;
    padding: 2px 5px;
    margin: 0 5px;
}

  /* 白藍/白橡#cbb994 */
details {
  margin-bottom: 20px;
  border: solid 1px #c1e4e9;
}

summary {
  list-style: none; /* 三角を非表示 */
  cursor: pointer;
  position: relative;
  padding: 10px 35px 10px 20px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::before {
  content: "";
  width: 14px;
  height: 0;
  border-top: solid 2px #c1e4e9;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

summary::after {
  content: "";
  width: 0;
  height: 14px;
  border-right: solid 2px #c1e4e9;
  position: absolute;
  top: 50%;
  right: 26px;
  transform: translateY(-50%);
}

details[open] summary::after {
  opacity: 0;
}

.details_content {
  padding: 0 20px 10px;
}

.heading-10 {
    display: inline-block;
    position: relative;
    transform: rotate(-5deg);
    padding: .5em .7em;
    border-left: 2px dotted rgba(0, 0, 0, .1);
    border-right: 2px dotted rgba(0, 0, 0, .1);
    box-shadow: 0 0 5px rgba(0, 0, 0, .2);
    background-color: rgba(0, 0, 0, .01);
    color: #494a41;
}

/* ツールチップの影響を制限 */
button:hover .img-tooltip {
    visibility: visible;
    opacity: 1;
}

/* ツールチップのホバー影響を制限 */
button:hover .img-tooltip {
    visibility: visible;
    opacity: 1;
}

#koibumi_wrap.speech-bubble {
    position: relative;
    background: #c1e4e9; /* 白藍色 */
    padding: 15px;
    border-radius: 10px;
    max-width: 300px;
    margin: 10px 0;
    color: #333;
    font-family: 'Noto Sans JP', Arial, sans-serif;
    font-size: 14px;
}

#koibumi_wrap.speech-bubble:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #c1e4e9;
}

#koibumi_form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#koibumi_form textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #c1e4e9 !important;
    border-radius: 5px;
    background: #c1e4e9;
    font-size: 12px;
    box-shadow: none;
}

#koibumi_form textarea,
#koibumi_form button {
  user-select: auto;
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
}

#koibumi_form button#koibumi_btn {
    background: #c1e4e9;
    border: 1px solid #c1e4e9;
    color: #fff;
    padding: 5px 15px;
    border-radius: 15px;
    cursor: pointer;
    align-self: flex-end;
    font-size: 12px;
    box-shadow: none;
}

#koibumi_form button#koibumi_btn:hover {
    background: #abced8;
    color: #fff;
}

#koibumi_thanks .box {
    background: #f5f5f5;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
}

#koibumi_thanks img {
    max-width: 100px;
    margin-bottom: 10px;
}

.heading-14 {
    display: inline-block;
    position: relative;
    padding: .5em 1.4em .5em 1em;
    background-color: #c1e4e9;
    color: #333333;
}

.heading-14::before {
    position: absolute;
    bottom: -1px;
    right: 9px;
    z-index: -1;
    transform: rotate(5deg);
    width: 70%;
    height: 50%;
    background-color: #d0d0d0;
    content: "";
    filter: blur(4px);
}

/* 文字リンク用のツールチップ */
.tooltip {
  position: absolute;
  background: #c1e4e9;
  color: #fff;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 14px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic Pro', 'sans-serif';
  font-weight: normal;
  white-space: nowrap;
  filter: none;
  -webkit-filter: none;
  -webkit-font-smoothing: antialiased;
  text-shadow: 0 0 0 #fff;
}

/* 文字リンクホバー時の表示 */
a:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

/* 吹き出しポインタ */
.tooltip::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #c1e4e9;
}

/* 親リンクにposition: relativeを追加 */
a {
  position: relative;
}

/* 画像リンク用のツールチップ */
.img-tooltip {
  position: absolute;
  background: #c1e4e9;
  color: #fff;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 14px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s, visibility 0.2s;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic Pro', 'sans-serif';
  font-weight: normal;
  white-space: nowrap;
  filter: none !important; /* ぼやけ防止 */
  -webkit-filter: none !important;
  -webkit-font-smoothing: antialiased;
  text-shadow: 0 0 0 #fff;
}

/* 画像リンクホバー時の表示 */
a:hover .img-tooltip,
button:hover .img-tooltip {
  visibility: visible;
  opacity: 1;
}

/* 吹き出しポインタ */
.img-tooltip::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #c1e4e9;
}

/* ボタンの親要素調整 */
._btn {
  position: relative;
  filter: none !important;
  -webkit-filter: none !important;
  z-index: 1000; /* 親要素のz-indexも設定 */
}

/* ホバー時のぼやけを無効化 */
.newiine_btn:hover {
  filter: none !important;
  -webkit-filter: none !important;
}

/* ぼやけを無効化 */
.inline a[href="name-change.html"],
.inline a[href="#contents-1"],
.inline a[href="#contents-2"],
.inline a[href="#theme"],
.inline a[href="#sakusa"],
.inline a[href="#kita"],
.inline a[href="#kunimi"],
.inline a[href="#tsukishima"],
.inline a[href="#kodzuken"] {
  position: relative;
  filter: none !important;
  -webkit-filter: none !important;
}

.inline a[href="name-change.html"]:hover,
.inline a[href="#contents-1"]:hover,
.inline a[href="#contents-2"]:hover,
.inline a[href="#theme"]:hover,
.inline a[href="#sakusa"]:hover,
.inline a[href="#kita"]:hover,
.inline a[href="#kunimi"]:hover,
.inline a[href="#tsukishima"]:hover,
.inline a[href="#kodzuken"]:hover {
  filter: none !important;
  -webkit-filter: none !important;
}

/* いいねボタン特有のツールチップ位置調整 */
.newiine_btn .img-tooltip {
  top: -30px; /* 個別調整値。必要に応じて変更 */
}

button.newiine_btn newiine_pluie{
  box-shadow: none;
}

button.newiine_btn newiine_text{
  box-shadow: none;
}

/* いいねボタンを含む親要素のスタイル */
#mail .block p {
  display: flex; /* フレックスボックスで横一列に */
  align-items: center; /* 垂直方向の中央揃え */
  gap: 10px; /* ボタン間の間隔 */
  flex-wrap: nowrap; /* 折り返しを防ぐ */
  justify-content: flex-start; /* 左揃え(必要に応じてcenterやspace-betweenに変更) */
}

/* いいねボタンのスタイル調整 */
button.newiine_btn.newiine_type02 {
  display: inline-flex; /* インラインフレックスでアイコンを中央に */
  align-items: center;
  justify-content: center;
  width: 30px; /* 固定幅 */
  height: 30px; /* 固定高さ */
  padding: 0; /* パディングをリセット */
  margin: 0; /* マージンをリセット */
  border-radius: 50%; /* 円形を維持 */
  background: #c1e4e9; /* 背景色 */
  border: none; /* ボーダーなし */
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

/* アイコンのサイズ調整 */
button.newiine_btn.newiine_type02 span.material-icons-round {
  font-size: 16px; /* アイコンサイズ */
  color: #ffffff; /* アイコン色 */
}

/* ホバー時のスタイル */
button.newiine_btn.newiine_type02:hover {
  background: #fffffc; /* ホバー時の背景色 */
  transform: scale(1.1); /* ホバー時に少し拡大 */
}

/* クリック済み状態のスタイル */
button.newiine_btn.newiine_type02.newiine_clicked,
button.newiine_btn.newiine_type02.newiine_clickedtoday {
  background: #c1e4e9; /* クリック済みの背景色 */
  color: #ffffff;
}

/* ツールチップの調整 */
button.newiine_btn.newiine_type02 .img-tooltip {
  top: -35px; /* ツールチップの位置を調整 */
  font-size: 12px;
  padding: 3px 8px;
}

.iine-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  justify-content: flex-start;
  margin: 10px 0;
}

rt {
    font-size: 0.55em;
    letter-spacing: 0.05em;
    font-weight: 400;
}