@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/* html */
/* Safariバージョン10.1~12.0対策 */
* {
  min-height: 0vw;
  min-height: 0;
}

.px1156 {
  width: 1156px;
  max-width: 96%;
  margin: 0 auto;
}

.px1053 {
  width: 1053px;
  max-width: 96%;
  margin: 0 auto;
}

.text-pink {
  color: #fe93a5;
}

.bold {
  font-weight: bold;
}

.margin-top{
  margin-top : 24px;
}

#friend{
  margin-left : -5px;
}
#friend > img {
  margin-top: 10px;
  margin-left: 5px;
}

#hukidasi1{
  position:absolute;top:50%;margin-top:-30px;right:-150px;
}

.button-center {
  display: flex;
  justify-content: center; /* 横方向中央 */
  align-items: center;     /* 縦方向中央（必要なら） */
  gap: 8px;                /* ← 画像同士の間に余白入れたければ */
  margin-bottom : 20px;
}

@media screen and (max-width: 1024px) {
  #hukidasi1{
    top : -60px;
    right : -30px;
  }
}

/* HTML */
html {
  font-family: "Noto Sans JP", sans-serif;
  scroll-behavior: smooth;
}
html body {
  overflow-x: hidden;
}
html a:hover, html a:active {
  opacity: 0.75;
}

/* グーグルフォントページ読み込み時チラつき回避 */
body.hidden {
  visibility: hidden;
}

.loading-spinner {
  position: fixed;
  top: 50%;
  left: 50%;
  font-size: 2em;
  transform: translate(-50%, -50%);
}

/* header */
.header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: 142px;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .header {
    height: 100px;
  }
}
.header__container {
  display: flex;
  width: 1366px;
  max-width: 96%;
  height: 100%;
  margin: 0 auto;
  align-items: end;
}
.header__logo {
  display: flex;
  height: 100%;
  padding-left: 14px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header__logo {
    align-items: center;
  }
}
.header__logo-img {
  width: 402px;
  transform: translateX(1px) translateY(3px);
  aspect-ratio: 402/94;
}
@media screen and (max-width: 767px) {
  .header__logo-img {
    width: 150px;
  }
}
.header__logo-img img {
  width: 100%;
  height: 100%;
}
.header__nav {
  height: 100%;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}
.header__nav-ul {
  display: flex;
  height: 100%;
  align-items: end;
  gap: clamp(0.5rem, -0.1118546845rem + 3.0592734226vw, 2.5rem);
}
.header__nav-item {
  padding-bottom: 19px;
}
 
.header__nav-item-link {
  padding: 10px 10px;
  font-size: 14px;
  display: flex;
  align-items: center;  
}

.header__hamburgerButton {
  position: fixed;
  z-index: 1050;
  top: 32px;
  right: 15px;
  display: flex;
  flex-direction: column;
  width: 40px;
  height: 36px;
  padding: 5px;
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .header__hamburgerButton {
    display: none;
  }
}
.header__hamburgerButton .line {
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: #fe93a5;
  transition: all 0.3s ease;
}
.header.active .line:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.header.active .line:nth-child(2) {
  opacity: 0;
}
.header.active .line:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}
.header__drawer {
  position: fixed;
  z-index: 1025;
  top: 0;
  right: 100vw;
  display: flex;
  width: 100%;
  height: 100vh;
  background-color: #ffe2e7;
  text-align: center;
  opacity: 0;
  transition: 0.5s;
  justify-content: center;
}
.header.active .header__drawer {
  right: 0;
  opacity: 1;
}
.header__drawer-content {
  display: flex;
  overflow-y: scroll;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@media screen and (max-height: 500px) {
  .header__drawer-content {
    padding: 50px 0;
    justify-content: flex-start;
  }
}
.header__drawer-content::-webkit-scrollbar {
  display: none;
}
.header__drawer-menu {
  flex-direction: column;
  height: unset;
  margin-right: 0;
  gap: 20px;
}
.header__drawer-titile {
  font-size: 15px;
  color: #ffa6ba;
}
.header__drawer-menu-list {
  padding: 5px 0;
}
.header__drawer-menu-list a {
  font-size: 15px;
  color: #8b8a88;
  letter-spacing: -0.1em;
}

/* drawer */
.drawer {
  position: fixed;
  z-index: 750;
  top: -613px;
  right: calc((100vw - 1366px) / 2);
  width: 237px;
  background-color: #ffe2e7;
  transition: top 0.75s ease-in-out;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@media screen and (max-width: 1366px) {
  .drawer {
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .drawer {
    top: -100vh;
    right: 0;
    width: 100%;
    height: 100vh;
    text-align: center;
    transition: top 0.5s ease-in-out;
  }
}
.drawer::-webkit-scrollbar {
  display: none;
}
.drawer.drawer--open {
  top: 142px;
}
@media screen and (max-height: 612px) {
  .drawer.drawer--open {
    height: calc(100vh - 142px);
  }
}
.drawer__content {
  position: relative;
  overflow-y: auto;
  padding-top: 42px;
}
@media screen and (max-height: 612px) {
  .drawer__content {
    height: 100%;
  }
}
.drawer__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 45px;
  height: 45px;
}
@media screen and (max-width: 767px) {
  .drawer__close {
    display: none;
  }
}
.drawer__close::before, .drawer__close::after {
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #ffa6ba;
  content: "";
}
.drawer__close::before {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transform: rotate(45deg);
}
.drawer__close::after {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transform: rotate(-45deg);
}
.drawer__titile {
  padding-left: 35px;
  font-size: 15px;
  color: #ffa6ba;
}
.drawer__menu {
  padding: 16px 0 25px 25px;
}
.drawer__menu-list {
  padding: 7.4px;
  font-size: 15px;
  color: #8b8a88;
  letter-spacing: -0.1em;
}

/* register */
.register {
  padding: clamp(2.5rem, 1.7351816444rem + 3.8240917782vw, 5rem) 0 clamp(3.125rem, 2.3219407266rem + 4.0152963671vw, 5.75rem);
  background-color: #ffe2e7;
}
.register__title h2 {
  font-size: clamp(1.0625rem, 0.9286567878rem + 0.6692160612vw, 1.5rem);
  font-weight: bold;
  color: #000000;
  text-align: center;
}
.register__title h2 span {
  display: inline-block;
}
.register__link a {
  position: relative;
  display: flex;
  width: clamp(19.1875rem, 12.170291587rem + 35.086042065vw, 42.125rem);
  max-width: 96vw;
  margin: 20px auto 0;
  padding-top: 5px;
  border-radius: 15px;
  background-color: #fb6b8c;
  box-shadow: 0 13px 0 #e44f6d;
  font-size: clamp(1.3125rem, 1.1021749522rem + 1.051625239vw, 2rem);
  font-weight: bold;
  color: #ffffff;
  aspect-ratio: 674/82;
  justify-content: center;
  align-items: center;
}
.register__link a::before {
  position: absolute;
  top: 0;
  right: clamp(2rem, 1.7514340344rem + 1.2428298279vw, 2.8125rem);
  bottom: 0;
  display: block;
  width: 0;
  height: 0;
  margin: auto;
  border-top: clamp(0.375rem, 0.3176386233rem + 0.2868068834vw, 0.5625rem) solid transparent;
  border-bottom: clamp(0.375rem, 0.3176386233rem + 0.2868068834vw, 0.5625rem) solid transparent;
  border-left: clamp(0.8125rem, 0.7168977055rem + 0.4780114723vw, 1.125rem) solid white;
  content: "";
}

/* link */
.link {
  padding: 0 0 clamp(2.5rem, 2.2131931166rem + 1.4340344168vw, 3.4375rem);
  background-color: #ffe2e7;
}
.link__content {
  display: flex;
  justify-content: center;
  gap: clamp(2.5rem, 1.1615678776rem + 6.6921606119vw, 6.875rem);
}
@media screen and (max-width: 767px) {
  .link__content {
    flex-direction: column;
    align-items: center;
  }
}
.link__content a {
  text-align: center;
}
.link__content a img {
  max-width: 85vw;
}
.link__content a p {
  margin-top: 13px;
  font-size: clamp(0.75rem, 0.6926386233rem + 0.2868068834vw, 0.9375rem);
}
.link__link {
  margin-top: clamp(2.5rem, 2.2131931166rem + 1.4340344168vw, 3.4375rem);
  text-align: center;
}
.link__link a {
  font-size: clamp(0.9375rem, 0.8801386233rem + 0.2868068834vw, 1.125rem);
}

/* footer */
.footer {
  padding: clamp(1.25rem, 0.9249521989rem + 1.6252390057vw, 2.3125rem) 0;
  background-color: #767676;
}
.footer__container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .footer__container {
    flex-direction: column;
  }
}
.footer__container a {
  font-size: 14px;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .footer__container a:not(:last-child) {
    position: relative;
  }
  .footer__container a:not(:last-child)::before {
    position: absolute;
    top: 0;
    right: -8px;
    bottom: 0;
    display: block;
    width: 3px;
    height: 3px;
    margin: auto;
    border-radius: 50%;
    background-color: #ffffff;
    content: "";
  }
}/*# sourceMappingURL=common.css.map */

.line-clamp {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2; /* 最大2行 */
    line-height: 1.5; /* 行間 */
    max-height: calc(1.5em * 2); /* 1行の高さ × 2行 */
}

input {
    display: block;
    width: 100%; /* 幅を100%に設定 */
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
    border: 1px solid #ced4da;
    font-size: 1em;
}

textarea {
    display: block;
    width: 100%; /* 幅を100%に設定 */
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
    border: 1px solid #ced4da;
    font-size: 1em;
    height : 7em;
}
/* ページネーションの全体スタイル */
.pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
    justify-content: center; /* 中央揃え */
}

/* ページアイテム（番号や「次へ」「前へ」）のスタイル */
.page-item {
    margin: 0 5px; /* 各リンク間にマージンを追加 */
}


/* 各リンクのスタイル */
.page-link {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #fe93a5; /* ここでボタンと同じ青色に */
    background-color: #fff;
    border: 1px solid #dee2e6;
    text-decoration: none;
    border-radius: 0.25rem;

    &:hover {
        z-index: 2;
        color: mix(black, #fe93a5, 10%); /* 10%黒を混ぜて暗くする */
        background-color: #e9ecef;
        border-color: #dee2e6;
    }

    &:focus {
        z-index: 3;
        outline: none;
        box-shadow: 0 0 0 0.2rem rgba($btn-primary-color, 0.25);
    }
}

/* 無効化されたページアイテムのスタイル */
.page-item.disabled .page-link {
    color:#fe93a5;
    pointer-events: none;
    background-color: #fff;
    border-color: #dee2e6;
}

/* アクティブなページアイテムのスタイル */
.page-item.active .page-link {
    z-index: 3;
    background-color: $btn-primary-color; /* ここもボタンと同じ青色に */
    border-color: $btn-primary-color;
    color : #ff0000;
}

.dialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index : 100;
}

.dialog__content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    max-width: 400px;
    width: 90%;
    text-align: center;
}

.dialog__actions {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    background-color: #f9f9f9; /* テーブル全体の背景色 */
}

.table th, .table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #ddd;
}

.table th {
    background-color: #20b2aa; /* 緑色に合わせた色 */
    color: #fff; /* 白文字でコントラストを確保 */
    font-weight: bold;
}

.table tr:nth-child(even) {
    background-color: #e0f7f5; /* 偶数行の背景色を薄い緑系に */
}

.table tr:hover {
    background-color: #b3e3dd; /* ホバー時の背景色を少し濃い緑に */
    cursor: pointer;
}

.table td {
    color: #333; /* テキスト色を濃いグレーに */
}

.table .highlight {
    background-color: #a1d4cf; /* 特定行のハイライト用色 */
    font-weight: bold;
}
