@charset "UTF-8";
/* ======================================== 
    reset css
========================================= */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
caption, tbody, tfoot,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

html {
  overflow-y: scroll;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

input, textarea {
  margin: 0;
  padding: 0;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
}

a:focus {
  outline: none;
}

div#test {
  text-align: center;
  position: absolute;
  top: 0;
  opacity: 0.5;
}

/* ========================================
    rayout
========================================= */
body {
  font-family: "Helvetica Neue", Helvetica, "Roboto", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}

.flex {
  display: flex;
}

/* ========================================
    Fadein
========================================= */
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 右から */
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-260px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.FadeinLR,
.FadeinRL,
.FadeUb {
  opacity: 0;
}

.headtitle {
  font-size: 1.6rem;
  font-weight: 500;
}

/* ========================================
    Header
========================================= */
.header_fixed {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10000;
  box-shadow: 0px 3px 5px -6px #686868;
}
.header_wrap {
  position: relative;
  height: 65px;
  background-color: #ffffff;
  background-color: #F7F7F7;
}
.header_logo {
  width: 100vw;
  text-align: center;
  height: 65px;
  overflow: hidden;
}
.header_logo > h1 > a {
  font-size: 1.8rem;
  line-height: 65px;
}
.header_logo > img {
  height: 65px;
  padding-left: 5px;
  -o-object-fit: contain;
     object-fit: contain;
  transform: scale(0.6);
}
.header_nav {
  display: block;
  position: fixed;
  z-index: 10;
  top: 0;
  transform: translateX(100%);
  margin: auto;
  width: 100vw;
  padding-top: 180px;
  height: 100vh;
  transition: all 0.7s;
  color: #616161;
  background: rgba(250, 250, 250, 0.97);
  padding-top: 80px 20px 0 20px;
  opacity: 0;
}
.header_nav.open {
  transform: translateX(0);
  opacity: 1;
}
.header_nav_list {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-self: flex-start;
}
.header_nav_list_item {
  flex: 0 0 100%;
  text-align: center;
  font-size: 23px;
}
.header_nav_list_item a {
  display: inline-block;
  text-decoration: none;
  color: #767676;
  padding: 20px;
  border-bottom: solid 1px #d2d2d2;
}

.menutrigger {
  margin: 20px;
  position: absolute;
  right: 0;
  top: 0;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  z-index: 10000;
}
.menutrigger > span {
  background: #D9D9D9;
  width: 35px;
  height: 3px;
  display: block;
  margin-bottom: 6px;
  transition: transform 0.7s;
  opacity: 0.8;
}
.menutrigger > span:last-child {
  margin-bottom: 0;
}
.menutrigger.active > span {
  background-color: #D9D9D9;
}
.menutrigger.active > span:nth-child(1) {
  transform: translateY(9px) rotate(135deg);
}
.menutrigger.active > span:nth-child(2) {
  transform: translateX(-18px) scaleX(0);
}
.menutrigger.active > span:nth-child(3) {
  transform: translateY(-9px) rotate(-135deg);
}

.container {
  margin-top: 150px;
}
.container_title {
  border-left: solid 5px #a7a7a7;
  padding-left: 8px;
  font-size: 1.5rem;
  text-align: left;
  line-height: 1.5rem;
  font-weight: 500;
  margin: 5px 0 30px 0;
}

/* ========================================
    Profile
========================================= */
.profile {
  text-align: center;
  padding-top: 140px;
  margin: 0 auto;
}
.profile_image {
  height: 150px;
  width: 150px;
  border-radius: 50%;
  margin: 0 auto;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}
.profile_image > img {
  width: 100%; /* 必要に応じてサイズ調整 */
  -o-object-fit: cover;
     object-fit: cover;
}
.profile_name {
  font-size: 1.5rem;
  margin-top: 15px;
}
.profile_done {
  margin-top: 5px;
  text-align: center;
}
.profile_done > p {
  font-size: 1rem;
  font-weight: bold;
}
.profile_done > p > span {
  font-size: 2.3rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  margin-right: 8px;
}
.profile_done_history {
  margin-top: 8px;
  font-size: 0.8rem;
}
.profile_done_history > a {
  text-decoration: none;
  font-weight: bold;
  color: #404040;
}

/* ========================================
    Catalog
========================================= */
.catalog {
  margin-top: 50px;
  display: block;
  text-align: center;
  padding: 0 5px 0 5px;
}
.catalog_container {
  display: block;
  margin: 0 auto;
  max-width: 960px;
}
.catalog_title {
  margin: 5px;
}
.catalog_title > h2 {
  border-left: solid 5px #a7a7a7;
  padding-left: 8px;
  font-size: 1.5rem;
  text-align: left;
  line-height: 1.5rem;
  font-weight: 500;
  margin: 5px 0 10px 0;
}
.catalog_items {
  height: 100vh;
  display: grid;
  grid-template: "1th 1th" 1fr "2nd 3rd" 1fr "4th 5th" 1fr "6th 7th" 1fr "8th 9th" 1fr/3fr 3fr;
}
.catalog_item {
  box-shadow: 2px 2px 18px 0px rgba(187, 187, 187, 0.4);
  position: relative;
  margin: 5px;
  padding: 50px 0 50px 0;
}
.catalog_item a > img {
  transform: scale(0.8);
}
.catalog_details {
  position: absolute;
  width: 100%;
  right: 0;
  bottom: 0;
  padding: 15px;
  text-align: right;
  background-color: rgba(255, 255, 255, 0.3);
}
.catalog_details > h5 {
  color: #404040;
}
.catalog_details > p {
  color: #404040;
}

/* ========================================
    Done History
========================================= */
.history {
  margin-top: 120px;
}

/* ========================================
    Orders
========================================= */
.orders {
  margin-top: 120px;
}

/* ========================================
    table
========================================= */
table {
  border-collapse: collapse;
  width: 100%;
  margin: 10px auto;
  font-family: "Inter";
}

th, td {
  border: 1px solid #B9B9B9;
  padding: 8px;
  text-align: center;
}

th {
  background-color: #D9D9D9;
  font-weight: 300;
}

/* ========================================
    PointTransaction Form
========================================= */
.pt_form {
  margin: 0 auto;
  margin-top: 150px;
  width: 85vw;
  max-width: 650px;
  padding: 40px;
  background: #e8fbff;
  box-sizing: border-box;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.6);
  border-radius: 10px;
}
.pt_form h1 {
  margin-bottom: 25px;
}
.pt_form tbody {
  display: flex;
}
.pt_form th, .pt_form td {
  border: none; /* セルの枠線を削除 */
}

#class_select {
  background: linear-gradient(45deg, #0191aa, #0fc6e0);
  border: none;
  text-decoration: none;
  color: #fff;
  margin-left: 15px;
  padding: 2px 18px;
}

.content {
  display: flex;
  flex-flow: column;
}
.content input {
  width: 100%;
  padding: 10px 0;
  font-size: 16px;
  color: #262626;
  margin-bottom: 30px;
  border: none;
  border-bottom: 2px solid #262626;
  outline: none;
  background: transparent;
}
.content label {
  width: 100%;
  padding: 10px 0;
  font-size: 16px;
  color: #262626;
  pointer-events: none;
  transition: 0.5s;
}
.content #btn {
  background: linear-gradient(45deg, #0191aa, #0fc6e0);
  border: none;
  text-decoration: none;
  color: #fff;
  padding: 15px 0;
  display: block;
  text-align: center;
  margin-top: 8%;
  font-size: 20px;
  letter-spacing: 3px;
}
.content #btn:hover {
  opacity: 0.6;
  scale: 0.98;
}/*# sourceMappingURL=style.css.map */
