@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@600&display=swap");
@import url("https://use.fontawesome.com/releases/v6.4.2/css/all.css");
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

a {
  text-decoration: none;
}

.global_head {
  margin: 0;
}

@media only screen and (min-width: 768px) {
  .sponly {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .pconly {
    display: none;
  }
}

body {
  margin: 0;
  padding: 0;
  background-color: #ed5b16;
  color: #363030;
}

a {
  color: #363030;
  text-decoration: none;
  word-break: break-all;
}

.wrap {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  position: relative;
}

.local-head {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 30;
}
.local-head__content {
  width: 100%;
  display: grid;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}
@media only screen and (max-width: 767px) {
  .local-head__content {
    background-color: #ffffff;
    grid-template-columns: 1fr 41px 95px;
    grid-template-rows: 50px 60px;
    grid-template-areas: "logo nav-sns lang" "nav-link nav-link nav-link";
  }
}
@media only screen and (min-width: 768px) {
  .local-head__content {
    background-color: #ffffff;
    height: 65px;
    grid-template-columns: 180px 1fr 45px 120px;
  }
}
.local-head__logo {
  background-color: #ffffff;
  z-index: 50;
  box-sizing: border-box;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .local-head__logo {
    grid-area: logo;
    width: 100px;
    margin: 0 0 0 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
  }
}
@media only screen and (min-width: 768px) {
  .local-head__logo {
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    border-radius: 0 0 40px 0;
    padding: 15px 30px 17px 25px;
  }
}
@media only screen and (min-width: 768px) {
  .local-head__logo::after {
    content: "";
    background-color: #ffffff;
    width: 15px;
    height: 65px;
    position: absolute;
    top: 0;
    right: -7px;
  }
}
@media only screen and (max-width: 767px) {
  .local-head__logo img {
    height: 38px !important;
  }
}
@media only screen and (min-width: 768px) {
  .local-head__logo img {
    transition: 0.3s;
  }
  .local-head__logo img:hover {
    opacity: 0.8;
  }
}
.local-head .nav-link {
  display: flex;
  justify-content: center;
  list-style: none;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .local-head .nav-link {
    border-top: 2px solid #ededed;
    grid-area: nav-link;
  }
}
@media only screen and (min-width: 768px) {
  .local-head .nav-link {
    gap: 0 4%;
    height: 65px;
    align-items: center;
  }
}
.local-head .nav-link__item {
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .local-head .nav-link__item {
    width: 20%;
    height: 60px;
    font-size: 0.8rem;
  }
}
@media only screen and (min-width: 768px) {
  .local-head .nav-link__item {
    font-size: 0.95rem;
    padding: 0 5px;
    height: 100%;
  }
  .local-head .nav-link__item::after {
    content: "";
    background-color: #ed5b16;
    width: 96%;
    height: 2.7px;
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%) scale(0, 1);
    transform-origin: right top;
    transition: transform 0.3s;
    pointer-events: none;
  }
  .local-head .nav-link__item:hover::after {
    transform: translateX(-50%) scale(1, 1);
    transform-origin: left top;
  }
}
.local-head .nav-link__item:not(:has(a)) {
  opacity: 0.3;
  pointer-events: none;
}
.local-head .nav-link__item a {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.local-head .nav-sns {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .local-head .nav-sns {
    height: 50px;
  }
}
@media only screen and (min-width: 768px) {
  .local-head .nav-sns {
    height: 65px;
  }
}
.local-head .nav-sns__content {
  background-color: #000000;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  display: grid;
  place-content: center;
}
@media only screen and (max-width: 767px) {
  .local-head .nav-sns__content {
    grid-area: nav-sns;
  }
}
@media only screen and (min-width: 768px) {
  .local-head .nav-sns__content {
    line-height: 65px;
    transition: 0.3s;
  }
  .local-head .nav-sns__content:hover {
    background-color: #ed5b16;
  }
}
.local-head .nav-sns__content a::before {
  font-family: "Font Awesome 6 Brands";
  content: "\e61b";
  font-weight: 400;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .local-head .nav-sns__content a::before {
    font-size: 0.95rem;
    position: relative;
    top: 1px;
  }
}
@media only screen and (min-width: 768px) {
  .local-head .nav-sns__content a::before {
    font-size: 1.05rem;
  }
}
.local-head .lang {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .local-head .lang {
    height: 50px;
  }
}
@media only screen and (min-width: 768px) {
  .local-head .lang {
    height: 65px;
  }
}
.local-head .lang__content {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  border-radius: 99px;
  background-color: #ededed;
}
@media only screen and (max-width: 767px) {
  .local-head .lang__content {
    width: 85px;
    height: 33px;
    grid-area: lang;
  }
}
@media only screen and (min-width: 768px) {
  .local-head .lang__content {
    width: 90px;
    height: 33px;
    transition: 0.3s;
  }
  .local-head .lang__content:hover {
    background-color: #ccc;
  }
}
.local-head .lang__item {
  text-align: center;
  font-weight: 600;
  font-size: 0.75rem;
  position: relative;
}
.local-head .lang a {
  color: #2d2d52;
  cursor: pointer;
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
}
.local-head .lang a::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.local-head .lang .lang-selected {
  border-radius: 99px;
  background-color: #000000;
  pointer-events: none;
}
.local-head .lang .lang-selected a {
  color: #ffffff;
}

.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .is-fixed {
    transition: 0.3s;
    transform: translateY(-50px);
  }
}

.cmmn .wrap {
  overflow: hidden;
}
.cmmn .head {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .cmmn .head {
    padding: 135px 0 30px;
  }
}
@media only screen and (min-width: 768px) {
  .cmmn .head {
    padding: 115px 0 50px;
    min-height: 100px;
  }
}
.cmmn .head::before, .cmmn .head::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.cmmn .head::before {
  background: linear-gradient(to right, #ed5b16, rgba(255, 255, 255, 0.2));
  position: absolute;
  z-index: 1;
}
.cmmn .head::after {
  background-repeat: no-repeat;
  background-position: top 10px left;
  background-size: cover;
  opacity: 0.8;
}
.cmmn .head__ttl {
  font-family: "Oswald", sans-serif;
  line-height: 1;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.1rem;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .cmmn .head__ttl {
    font-size: 2.8rem;
  }
}
@media only screen and (min-width: 768px) {
  .cmmn .head__ttl {
    font-size: 5rem;
  }
}
.cmmn .head__ttl-sub {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  display: block;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .cmmn .head__ttl-sub {
    font-size: 0.8rem;
    letter-spacing: 0.1rem;
    margin: 7px 0 0;
  }
}
@media only screen and (min-width: 768px) {
  .cmmn .head__ttl-sub {
    font-size: 1.2rem;
    letter-spacing: 0.2rem;
    margin: 15px 0 0;
  }
}
.cmmn .section {
  background-color: #ffffff;
}
@media only screen and (max-width: 767px) {
  .cmmn .section {
    border-radius: 50px 0 50px 0;
    padding: 50px 0 60px;
  }
}
@media only screen and (min-width: 768px) {
  .cmmn .section {
    border-radius: 80px 0 80px 0;
    padding: 60px 0 80px;
  }
}
@media only screen and (max-width: 767px) {
  .cmmn .section:last-of-type {
    border-radius: 50px 0 0 0;
  }
}
@media only screen and (min-width: 768px) {
  .cmmn .section:last-of-type {
    border-radius: 80px 0 0 0;
  }
}
.cmmn .block {
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .cmmn .block {
    width: calc(100% - 35px);
  }
}
@media only screen and (min-width: 768px) {
  .cmmn .block {
    max-width: 1000px;
    width: calc(100% - 55px);
  }
}
.cmmn .date-nav {
  font-family: "Oswald";
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 767px) {
  .cmmn .date-nav {
    gap: 0 10px;
  }
}
@media only screen and (min-width: 768px) {
  .cmmn .date-nav {
    margin: 0 0 20px;
    gap: 0 15px;
  }
}
.cmmn .date-nav__item {
  border: 1px solid #dbdbdb;
  border-radius: 5px;
  display: flex;
  align-items: center;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .cmmn .date-nav__item {
    font-size: 1.5rem;
    padding: 7px 5px;
    justify-content: center;
  }
}
@media only screen and (min-width: 768px) {
  .cmmn .date-nav__item {
    font-size: 1.5rem;
    padding: 10px 20px;
    justify-content: space-between;
  }
}
.cmmn .date-nav__item:hover .nav-arrow {
  background-color: #ed5b16;
}
.cmmn .date-nav .day {
  display: inline-block;
  color: #bbb;
  font-size: 1.2rem;
  margin-right: 20px;
  position: relative;
  top: -2px;
}
@media only screen and (max-width: 767px) {
  .cmmn .date-nav .day {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .cmmn .date-nav .yobi {
    font-size: 0.9rem;
    margin-left: 5px;
  }
}
@media only screen and (min-width: 768px) {
  .cmmn .date-nav .yobi {
    font-size: 1.4rem;
    margin-left: 7px;
  }
}
.cmmn .date-nav a::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.cmmn .date-nav .nav-arrow {
  pointer-events: none;
  background-color: #000000;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  transition: 0.3s;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .cmmn .date-nav .nav-arrow {
    display: none;
  }
}
.cmmn .date-nav .nav-arrow::before {
  content: "";
  background: url(../img/icon_arrow-b-tb.svg) no-repeat top left/contain;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 7px;
  left: 6.5px;
}
.cmmn .cmmn-date {
  font-family: "Oswald", sans-serif;
  position: relative;
  z-index: 10;
  line-height: 1;
  display: flex;
  align-items: baseline;
  font-weight: 800;
}
@media only screen and (max-width: 767px) {
  .cmmn .cmmn-date {
    font-size: 2rem;
    margin: 0 0 15px 5px;
  }
}
@media only screen and (min-width: 768px) {
  .cmmn .cmmn-date {
    font-size: 3.5rem;
    margin: 0 0 25px;
  }
}
.cmmn .cmmn-date .yobi,
.cmmn .cmmn-date .time {
  display: inline-block;
  border-radius: 50%;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .cmmn .cmmn-date .yobi,
  .cmmn .cmmn-date .time {
    font-size: 1.1rem;
    margin-left: 5px;
  }
}
@media only screen and (min-width: 768px) {
  .cmmn .cmmn-date .yobi,
  .cmmn .cmmn-date .time {
    font-size: 1.9rem;
    margin-left: 8px;
  }
}
.cmmn .cmmn-date .time {
  letter-spacing: 0;
}
.sale-timetable {
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .sale-timetable {
    max-width: 850px;
    width: 100%;
    border: 1px solid #dbdbdb;
    padding: 35px;
    border-radius: 10px;
  }
}
.sale-timetable__ttl {
  text-align: center;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .sale-timetable__ttl {
    margin-bottom: 10px;
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 768px) {
  .sale-timetable__ttl {
    margin-bottom: 25px;
    font-size: 1.9rem;
  }
}
.sale-timetable table {
  width: 100%;
  border-collapse: collapse;
}
@media only screen and (max-width: 767px) {
  .sale-timetable table {
    margin: 0 0 15px;
  }
}
@media only screen and (min-width: 768px) {
  .sale-timetable table {
    margin: 0 0 20px;
  }
}
.sale-timetable table thead th {
  background-color: #363030;
  color: #fff;
  font-weight: 700;
  padding: 7px 15px 9px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
}
@media only screen and (max-width: 767px) {
  .sale-timetable table thead th {
    display: none;
  }
}
.sale-timetable table thead th:first-child {
  width: 400px;
}
.sale-timetable table thead th:nth-child(2), .sale-timetable table thead th:nth-child(3) {
  width: 200px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .sale-timetable table tbody tr {
    display: grid;
    margin-bottom: 10px;
    border: 1px solid #dbdbdb;
    border-radius: 7px;
  }
}
@media only screen and (min-width: 768px) {
  .sale-timetable table tbody tr {
    border-bottom: 1px solid #dbdbdb;
  }
  .sale-timetable table tbody tr:last-child {
    border-bottom: none;
  }
}
.sale-timetable table tbody tr td {
  color: #000;
  border: none;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .sale-timetable table tbody tr td {
    padding: 10px 15px;
  }
}
.sale-timetable table tbody tr td span {
  font-weight: 600;
  font-size: 0.85rem;
}
@media only screen and (min-width: 768px) {
  .sale-timetable table tbody tr td span {
    display: none;
  }
}
.sale-timetable table tbody tr td p {
  margin: 0;
}
.sale-timetable table tbody tr td:nth-of-type(1) {
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .sale-timetable table tbody tr td:nth-of-type(1) {
    font-size: 0.95rem;
    margin: 0 10px;
    padding: 5px 0;
    border-bottom: 1px solid #dbdbdb;
  }
}
@media only screen and (min-width: 768px) {
  .sale-timetable table tbody tr td:nth-of-type(1) {
    border-right: 1px solid #dbdbdb;
  }
}
@media only screen and (max-width: 767px) {
  .sale-timetable table tbody tr td:nth-of-type(2) {
    font-size: 0.9rem;
    padding: 5px 10px 0;
  }
}
@media only screen and (min-width: 768px) {
  .sale-timetable table tbody tr td:nth-of-type(2) {
    border-right: 1px solid #ccc;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .sale-timetable table tbody tr td:nth-of-type(3) {
    font-size: 0.9rem;
    padding: 0 10px 5px;
  }
}
@media only screen and (min-width: 768px) {
  .sale-timetable table tbody tr td:nth-of-type(3) {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .sale-timetable table tbody tr td:nth-of-type(2), .sale-timetable table tbody tr td:nth-of-type(3) {
    display: flex;
  }
}
.sale-timetable__note {
  border: 1px solid #dbdbdb;
  margin: 0;
  line-height: 1.6;
  display: grid;
  border-radius: 5px;
}
@media only screen and (max-width: 767px) {
  .sale-timetable__note {
    padding: 20px 20px 20px 30px;
    font-size: 0.9rem;
    gap: 7px 0;
  }
}
@media only screen and (min-width: 768px) {
  .sale-timetable__note {
    padding: 25px 25px 25px 35px;
    font-size: 0.95rem;
    gap: 3px 0;
  }
}/*# sourceMappingURL=cmmn.css.map */