@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: inline-grid;
  /* 三角　背景画像 */
   --heading-point-image: url(../img2/silver.webp) no-repeat center/cover;
  /* フォントカラー */
  --font: #818181;
  /* body背景色 */
  --sub: #a8b5c3;
  /* リンク色 */
  --sub-2: #c89e62;
  --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;
  /* 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;
  /* ストライプ模様 */
  --sub-3: #F2E7D8;
  --stripe: repeating-linear-gradient(45deg, transparent, transparent 4px, var(--sub-3) 4px, var(--sub-3) 8px);  
}
html {
  font-size: 62.5%;
  scrollbar-width: thin;
  scrollbar-color: var(--sub) rgba(var(--white), 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(--white));
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  letter-spacing: .13em;
}
h1, h2, h3, .new::after, .main-top, nav li a, form input[type].btn, .img-container li::before, .swiper-slide .caption::after {
  font-family: "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;
}
a {
  color: #ad8143;
  text-decoration: none;
}
main a {
  text-decoration: underline;
  text-decoration-thickness: .5px;
  text-decoration-skip-ink: none;
  text-decoration-color: rgba(200, 158, 98, 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(--white), 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(--white), 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(--white), 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(--white), 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;
}

/* 名前変換 + フォーム */
.dream {
  text-align: center;
  flex-wrap: wrap;
  gap: 0 30px;
}

input[type], button {
  margin-bottom: 10px;
}

.name_change input[type] {
  width: 160px;
  color: var(--font);
  background: var(--white);
  border: 1px solid var(--sub-2);
  height: 29px;
  padding: 3px 5px;
  border-radius: 0;

}

.button {
  color: var(--sub-2);
  width: 50px;
  border: 1px solid var(--sub-2);
  background-color: rgba(0, 0, 0, 0);
  background-image: var(--stripe);
  cursor: pointer;
  text-align: center;
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
}

/*  変換ボタン横並び */
.parent {
display:flex;
justify-content: center;
 }
 
.child {
 text-align: center;
padding: 0 1rem 0 0;
}
/* 名前変換関連ここまで */

/* 基本不要*/








/* 不要ここまで*/





.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;
  }
}
