@charset "UTF-8";

input[type="number"].spinner::-webkit-outer-spin-button, 
input[type="number"].spinner::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
input[type="number"].spinner {
  -moz-appearance: textfield; 
}

.form-selectbox__area,
.notice__form-selectbox__area,
.schedule__form-selectbox__area {
  margin: 0 auto;
  padding: 20px 30px;
  border-radius: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .form-selectbox__area,
  .notice__form-selectbox__area,
  .schedule__form-selectbox__area {
    display: block;
    padding: 10px 15px 15px;
  }
}

select {
  padding: 10px 5px 10px 10px;
  position: relative;
  max-width: 100% !important;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  select {
    padding: 15px;
  }
}

[class *= "form-selectbox__area"] select.selectbox {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.selectbox1 {
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  .selectbox1 {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

.selectbox1::after,
.selectbox2::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid rgb(204, 204, 204);
  border-left: 2px solid rgb(204, 204, 204);
  -webkit-transform: translateY(-50%) rotate(-135deg);
          transform: translateY(-50%) rotate(-135deg);
  font-size: 20px;
  pointer-events: none;
}

.selectbox1,
.selectbox2 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  border-width: 1px;
  border-style: solid;
  border-radius: 3px;
}

.btn-search button,
.notice__btn-search button,
.schedule__btn-search button {
  width: 35%;
  border-radius: 5px;
  font-size: 1.25rem;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.06em;
  padding: 10px 0;
  margin: 20px auto;
  position: relative;
  display: block;
}
@media screen and (max-width: 768px) {
  .btn-search button,
  .notice__btn-search button,
  .schedule__btn-search button {
    width: 100%;
  }
}

.btn-search button::after,
.notice__btn-search button::after,
.schedule__btn-search button::after {
  position: absolute;
  content: "";
  background-size: contain;
  width: 10px;
  width: 0.625rem;
  height: 15px;
  height: 0.9375rem;
  top: 50%;
  right: 8px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.result__content,
.notice__content {
  font-weight: 700;
  max-width: 1280px;
  width: 100%;
}

.notice__item.flex > *,
.result__items.flex > * {
  width: calc(( 100% - 20px ) / 2);
}
@media screen and (max-width: 768px) {
  .notice__item.flex > *,
  .result__items.flex > * {
    width: 100%;
  }
}

/* result */
.result-sp {
  display: block;
}
@media screen and (max-width: 768px) {
  .result-sp {
    display: inline-block;
    width: 100%;
  }
}

.displayed-results {
  text-align: right;
}
.displayed-results__number {
  font-size: 1.25rem;
  padding: 0 8px;
}

@media screen and (max-width: 769px) {
  .result__items {
    max-height: 16.875rem;
    max-height: none;
  }
}

/* notice */
.notice__content + .notice__content {
  margin-left: 6%;
}
@media screen and (max-width: 768px) {
  .notice__content + .notice__content {
    margin-left: 0;
    margin-left: initial;
  }
}

.notice__item::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 15px;
  height: 15px;
  border-left: 2px solid rgb(204, 204, 204);
  border-bottom: 2px solid rgb(204, 204, 204);
  -webkit-transform: translateY(-50%) rotate(-135deg);
          transform: translateY(-50%) rotate(-135deg);
  font-size: 20px;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .notice__item::after {
    right: 1.2rem;
  }
}

.notice__selectmonth {
  margin-right: 30px;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .notice__selectmonth {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

.notice__selectmonth,
.notice__selectbox {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  border-width: 1px;
  border-style: solid;
  border-radius: 3px;
}
.notice__selectbox::after,
.notice__selectmonth::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid rgb(204, 204, 204);
  border-left: 2px solid rgb(204, 204, 204);
  -webkit-transform: translateY(-50%) rotate(-135deg);
          transform: translateY(-50%) rotate(-135deg);
  font-size: 20px;
  pointer-events: none;
}

.notice__selectbox select {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .notice__selectbox select {
    top: 0;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.notice__form-selectbox__area select.selectbox {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*
input[type="month"] {
  width: calc( 100% - 7rem );
  margin-left: .5rem;
  color: #2e2e2e;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: 600;
}
*/

p.notice__category,
p.selectbox1__category {
    padding: 10px 15px 10px 0px;
}
@media screen and (max-width: 768px) {
  p.notice__category, 
  p.selectbox1__category {
    padding: 0px 15px 10px 0px;
  }
}

input[type=month i]::-webkit-calendar-picker-indicator {
  background: none;
}

/* schedule.html*/
:has( + .schedule__items ) {
  margin-bottom: 0;
}

.schedule__items {
  margin: 0 auto;
  padding: 1rem 10px 20px;
  max-width: 1280px;
}
@media screen and (max-width: 768px) {
  .schedule__items {
    padding-left: 0;
    padding-right: 0;
  }
}

.description + .schedule__items {
  padding-top: .5rem;
}

.schedule__items > p {
  line-height: 1.5;
  margin-top: 1.5rem;
}

.schedule__info {
  line-height: 1.5;
  padding: 1.5rem;
  margin: 1rem;
}
@media screen and (max-width: 768px) {
  .schedule__info {
    padding: 0.75rem;
    margin-left: 0;
    margin-right: 0;
  }
}

.schedule__btn-search > a {
  outline: 1px solid #fff;
  outline-offset: -5px;
  width: 50%;
  font-size: 1.4rem;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.06em;
  padding: 20px 40px 20px 20px;
  display: block;
  margin: 1.5em 25% 50px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .schedule__btn-search > a {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

.schedule__btn-search > a::after {
  position: absolute;
  content: "";
  background: url(../images/common/link-triangle1.png) no-repeat;
  background-size: contain;
  width: 10px;
  width: 0.625rem;
  height: 15px;
  height: 0.9375rem;
  top: 50%;
  right: 1em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.schedule__items_container {
  width: 100%;
  width: 100%;
  margin-left: 1rem;
  margin-top: 2px;
  margin-bottom: 2px;
}
@media screen and (max-width: 767px) {
  .schedule__items_container {
    margin-left: 0;
    margin-top: 0.25rem;
  }
}

.schedule__signal__btn {
  border-radius: 5px;
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: 0.06em;
  padding: 10px 2px;
  margin-top: 18px;
  width: 4em;
  text-align: center;
  position: relative;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .schedule__signal__btn {
    width: 110px;
    max-width: 40%;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    margin-top: 0;
  }
}
@media screen and (max-width: 480px) {
  .schedule__signal__btn {
    margin-bottom: 0;
  }
}

.schedule__day__region__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  white-space: nowrap;
  padding-bottom: 5px;
}

.schedule__day__region__text {
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0.06em;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .schedule__day__region__text {
    font-size: 13px;
  }
}
@media screen and (max-width: 480px) {
  .schedule__day__region__text {
    width: 100%;
    font-size: 13px;
    margin-top: 0.75rem;
  }
}

@media screen and (max-width: 480px) {
  .schedule__day__region__text:first-of-type {
    width: calc(60% - 2.5rem);
    position: absolute;
    top: 0.65rem;
    right: 1.3rem;
    margin-top: 0;
  }
}

.schedule__day__region__list dt {
  width: 4.75em;
  padding-bottom: 5px;
  padding-right: 0.5rem;
  -moz-text-align-last: justify;
       text-align-last: justify;
}
@media screen and (max-width: 480px) {
  .schedule__day__region__list dt {
    width: 100%;
    margin-top: 0.5rem;
    padding-right: 0;
    -moz-text-align-last: auto;
         text-align-last: auto;
  }
}
.schedule__day__region__list dt::after {
  content: "：";
}

.schedule__day__region__list dd {
  -webkit-flex-grow: 2;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
}
@media screen and (max-width: 480px) {
  .schedule__day__region__list dd {
    width: 100%;
    white-space: wrap;
  }
}

.schedule__category__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .schedule__category__item {
    display: block;
  }
}

.schedule__category__text {
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0.06em;
  font-weight: bold;
	padding-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .schedule__category__text {
    font-size: 11.5px;
    margin-top: 0.75rem;
  }
}

.schedule__category__text p {
  display: inline;
}


.detail__inner:nth-of-type(1) > * {
  width: calc((100% - 2rem) / 2);
}
@media screen and (max-width: 768px) {
  .detail__inner:nth-of-type(1) > * {
    width: 100%;
  }
}

.detail__inner:nth-of-type(1) > *:only-child {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .detail__inner:nth-of-type(1) > *:nth-child(2) {
    margin-top: 2rem;
  }
}

.detail__inner:nth-of-type(2) {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: justify;
          justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
          margin-top: 30px;
}
.detail__inner:nth-of-type(2) > * {
  display: inline-block;
  margin-bottom: 2rem;
  margin-left: 2rem;
}
.detail__inner:nth-of-type(2) > * > span,
.detail__inner:nth-of-type(2) img {
  display: inline-block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .detail__inner:nth-of-type(2) > * {
    width: calc((100% - 4rem) / 3);
  }
  .detail__inner:nth-of-type(2) > *:nth-child( 3n + 1 ) {
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .detail__inner:nth-of-type(2) > * {
    width: calc((100% - 2rem) / 2);
  }
  .detail__inner:nth-of-type(2) > *:nth-child( 2n + 1 ) {
    margin-left: 0;
  }
}

/* cart */
.cart__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  max-width: 100%;
  margin-bottom: 30px;
}

.step__ico::after {
  content: "";
  position: absolute;
  display: inline-block;
  border: 2px dashed #e0e0e0;
  border-radius: 50px;
  text-align: center;
  width: 40px;
  height: 40px;
  padding: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.step1::after {
  content: "#";
  left: 19%;
}

.step2::after {
  content: "#2";
  left: 46%;
}

.step3::after {
  content: "#3";
  left: 71%;
}

.step4::after {
  content: "#4";
  left: 94%;
}

ul.cart__list li {
  display: inline-block;
  width: 225px;
}

ul.cart__list li a {
  display: block;
  width: 100%;
  height: 3.5rem;
  border-top: 0.0625rem solid #909090;
  border-bottom: 0.0625rem solid #909090;
  padding: 0.9375rem 2.5rem 0.9375rem 1.4rem;
  font-size: 1.3rem;
}

ul.cart__list li.step__ico span.list__text {
  font-size: 1.5rem;
  margin-right: 5px;
}

ul.cart__list li.current {
  color: #fff;
  background-color: #433e3c;
}

.update__container {
  max-width: 100%;
  margin-bottom: 20px;
  padding: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.updata__btn {
  border-radius: 5px;
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: 0.06em;
  padding: 10px 0;
  width: 13%;
  text-align: center;
  position: relative;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .updata__btn {
    font-size: 0.875rem;
    width: 110px;
  }
}

.cart__table {
  width: 100%;
  margin-bottom: 30px;
  border: 0.0625rem solid #909090;
  border-collapse: collapse;
}

.cart__table th,
.cart__table td {
  padding: 10px 20px;
  border: 0.0625rem solid #909090;
}

.cart__table thead,
.cart__table tfoot {
  background: rgba(153, 153, 153, 0.3);
}


/* publication */
.publication__contents .publication__item {
  height: 100%;
}
.publication__contents .publication__item .publication__item__list figure {
  width: 55px !important;
}
.publication__contents .publication__item .publication__item__list a {
  font-weight: 600;
  padding: 2rem 1.5rem;
  position: relative;
}
@media screen and (min-width: 769px) {
	.publication__contents .publication__item .publication__item__list a {
	  min-height: calc( ( 1.25rem * 1.5 ) + .75rem + ( .5rem * 2 + 1rem * 1.5 ) + ( 2em * 2 ) );
	}
}
.publication__contents .publication__item .publication__item__list > * {
  display: block;
  border-bottom: 1px solid #2e2e2e;
}
.publication__contents .publication__item .publication__item__list > *:last-child {
  border-bottom: none;
}
@media screen and (max-width: 768px) {
	.publication__contents .publication__item .publication__item__list a figure {
  		width: 50%;
	}
}
.publication__contents .publication__item .publication__item__list a h3 {
	font-size: 1.25rem;
	padding-left: 2rem;
}
@media screen and (max-width: 768px) {
	.publication__contents .publication__item .publication__item__list a h3 {
  		font-size: 1.2rem;
		padding-left: 0;
	}
}
.publication__contents .publication__item .publication__item__list a button {
  width: 15rem;
  padding: .5rem .75rem;
  position: absolute;
  bottom: 2rem;
  margin-left: 2rem;
}
@media screen and (max-width: 768px) {
	.publication__contents .publication__item .publication__item__list a button {
  		position: static;
        width: 100%;
        margin: 1rem auto 0;
	}
}
.publication__contents .publication__item .publication__item__list a button::after {
  position: absolute;
  content: "";
  background: url(../images/common/link-triangle1.png) no-repeat;
  background-size: contain;
  width: 10px;
  width: 0.625rem;
  height: 15px;
  height: 0.9375rem;
  top: 50%;
  right: 1em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.publication__contents .publication__item .publication__item__list a button span {
  position: relative;
  top: -.05rem;
  right: .5rem;
}
.publication__contents .publication__item .publication__item__list a button img {
  width: auto;
  height: 1rem;
  display: inline;
  position: relative;
  top: .15rem;
  right: 1rem;
}

dl.category {
  width: 100%;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
	dl.category {
	  text-align: left;
	}
}
dl.category dt > h2 {
  font-size: 24px;
}
@media screen and (max-width: 1365px) {
	dl.category dt > h2 {
	  font-size: 1.25rem;
	}
}
dl.category dt img {
  width: auto;
  height: .8rem;
  display: inline;
  margin-left: -1.5rem;
  margin-right: .5rem;
}
dl.category dd a {
  font-size: 22px;
  display: inline-block;
}
@media screen and (max-width: 1365px) {
	dl.category dd a {
	  font-size: 1.2rem;
	}
}
@media screen and (min-width: 769px) {
	dl.category dd a {
  		min-width: 9rem;
	}
}

.publication__contents .publication__item .count {
  border: 4px solid #ff8a00;
  border-radius: 1rem;
  font-weight: 600;
  overflow: hidden;
  margin-bottom: 25px;
}
.publication__contents .publication__item .count .flex[class *= "col"] {
  align-items: center;
}
.publication__contents .publication__item .count > .flex[class *= "col"] > * {
  padding: 20px;
}
@media screen and (max-width: 768px) {
	.publication__contents .publication__item .count > .flex[class *= "col"] > * {
	  padding: 20px !important;
	}
}
.publication__contents .publication__item .count .status {
  font-size: 1.4rem;
}
.publication__contents .publication__item .count .status .num {
  font-size: 300%;
  font-weight: 900;
  line-height: 1;
  margin: 0 .2rem;
}
.publication__contents .publication__item .count .status .pictgram {
  width: 8rem !important;
}
.publication__contents .publication__item .count .status .pictgram figure {
  width: 4.2rem;
}
@media screen and (max-width: 768px) {
  .publication__contents .publication__item .count .status figure {
	position: relative;
  }
}

.count .calc {
  font-size: 120%;
  font-weight: 700;
}

.publication__contents .publication__item .publication__item__list {
  font-weight: 600;
  margin-top: .5rem;
}

@media screen and (min-width: 769px) {
  .publication__contents .publication__item .publication__item__list ul.flex[class *= "col"] > li {
	min-height: 78px;
  }
}

.apply {
  font-size: 120%;
  text-align: center;
  display: block;
  position: relative;
}
button.apply {
  width: 15rem;
  top: .2rem;
  margin-bottom: .5rem;
}
@media screen and (max-width: 768px) {
  button.apply {
    width: 100%;
    margin-bottom: 0;
  }
}
.apply span {
  margin: 0 auto;
  display: inline-block;
  position: relative;
  top: -.6rem;
  margin-left: -2rem;
}
.apply > span::after {
  content: ">";
  width: 1.2rem;
  height: 1.2rem;
  font-weight: 500;
  display: block;
  position: absolute;
  top: -.25rem;
  right: -1.5rem;
  transform: scale(.75, 1.5);
}
.apply img {
  width: auto;
  height: 2.5rem;
  display: inline;
  position: relative;
  top: .3em;
  left: -1.75rem;
  margin-left: .5rem;
  margin-right: .5rem;
  margin-bottom: .33rem;
}

.publication__contents .publication__item__detail {
  border-width: 1px;
  border-style: solid;
  padding: 2.5rem 3rem;
}
@media screen and (max-width: 768px) {
  .publication__contents .publication__item__detail {
    padding: 2.5rem 1.5rem 1.5rem;
  }
}
.publication__contents .publication__item__detail h2 {
  font-size: 180%;
  margin-bottom: .5rem;
}
@media screen and (max-width: 768px) {
  .publication__contents .publication__item__detail .flex .image,
  .publication__contents .publication__item__detail .flex .image figure {
    width: 100%;
    margin: 0;
  }
}
.publication__contents .publication__item__detail .flex .image a {
  border-width: .1rem;
  border-style: solid;
  border-radius: 1.5rem;
  padding: .2rem 1.5rem .25rem 1.25rem;
  margin-bottom: .75rem;
  display: inline-block;
}
.publication__contents .publication__item__detail .flex .image a img {
  width: auto;
  height: 1.2rem;
  display: inline;
  position: relative;
  top: .2rem;
  margin-right: .66rem;
}
.publication__contents .publication__item__detail .flex .count {
  position: relative;
}
@media screen and (max-width: 768px) {
  .publication__contents .publication__item__detail .flex .count {
    width: 100%;
    padding-top: .5rem;
  }
}

.publication__contents .publication__item__detail .flex .count .calc {
  margin-top: 2rem;
}
.publication__contents .publication__item__detail .flex .count .calc .status {
  margin-top: 2rem;
  padding-left: 2.5rem;
}
@media screen and (max-width: 768px) {
  .publication__contents .publication__item__detail .flex .count .calc .status {
  	margin-top: 0;
  	padding-left: 0;
	padding-bottom: 3.5rem;
  }
}
.publication__contents .publication__item__detail .flex .count .calc dl {
  margin-top: 1.2rem;
  clear: both;
}
.calc dt .price {
  font-size: 200%;
  margin-left: .5rem;
}
.count .calc dt .type {
  padding: 0 .4rem .2rem;
  position: relative;
  top: -.2rem;
  display: inline-block;
}
.publication__contents .publication__item__detail .flex .count .calc dl dd {
  margin-top: .5rem;
}
.publication__contents .publication__item__detail .flex .count .calc dl dd {
  margin-bottom: .25rem;
}
.publication__contents .publication__item__detail .flex .count .calc dl:last-of-type dd {
  margin-bottom: 1.2rem;
}

.spinner-container {
  width: auto;
  display: flex;
  justify-content: center;
  user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}
@media screen and (max-width: 768px) {
  .spinner-container {
    width: 100%;
  }
}
.spinner {
  width: 70px;
  font-size: 200%;
  text-align: center;
  border: none;
  padding: 0;
  background: none;
  outline: none;
  pointer-events: none;
}
.spinner::-webkit-inner-spin-button,
.spinner::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
.spinner-sub,
.spinner-add {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  text-align: center;
  padding: 0 calc( ( 1.5rem - 1.2rem ) / 2 );
  border-radius: 50%;
  margin-top: 1.2rem;
  cursor: pointer;
}
.spinner-sub {
  line-height: 1;
  padding-bottom: .2rem;
}
.spinner-add {
  line-height: 1.2;
}
.spinner-container .text {
  margin-top: 1rem;
  margin-left: 1.2rem;
}
.spinner-container .disabled {
  opacity: 0.3;
  cursor: inherit;
}

