@charset "UTF-8";
/*
-----------------
共通
-----------------
*/
* {
  box-sizing: border-box; }

body {
  line-height: 1.4em;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif; }

.round {
  font-family: "M PLUS Rounded 1c", "メイリオ", Meiryo, sans-serif; }

span {
  display: inline-block; }

img {
  width: 100%;
  height: auto; }

.sp {
  display: none; }
  @media screen and (max-width: 768px) {
    .sp {
      display: block; } }

.pc {
  display: block; }
  @media screen and (max-width: 768px) {
    .pc {
      display: none; } }

/*
-----------------
メイン画像・タイトルなど
-----------------
*/
#main {
    /*background: url(../img/bg.jpg) ;
	background-position: top center;
	background-repeat: repeat-y;
	background-size: cover;*/
  background: #FAA74B url(../img/snowbg.png); }
  #main .contents {
    max-width: 1000px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.6); }
    #main .contents .text {
      padding: 20px 40px; }
      #main .contents .text h1 {
        margin-bottom: 20px; }
      #main .contents .text .data {
        margin-bottom: 30px; }
      #main .contents .text p {
        margin: 10px 0 20px; }
      #main .contents .text table {
        font-size: 24px;
        width: 100%;
        font-weight: bold;
        margin-bottom: 30px;
        height: 60px;
        line-height: 60px; }
        #main .contents .text table th {
          width: 6em;
          background-color: #F76623;
          color: #fff100;
          padding: 10px;
          text-align: center; }
        #main .contents .text table td {
          background-color: #fff;
          padding: 10px;
          text-align: center; }
      @media screen and (max-width: 768px) {
        #main .contents .text {
          padding: 20px 10px; }
          #main .contents .text p {
            font-size: 12px;
            line-height: 1.5;
            margin: 5px 0 10px; }
          #main .contents .text table {
            font-size: clamp(17px, calc(2vw + 8px), 24px); }
            #main .contents .text table th {
              display: block;
              width: 100%;
              padding: 7px; }
            #main .contents .text table td {
              display: block;
              width: 100%;
              text-align: center;
              padding: 7px; } }
  #main .coming {
    text-align: center;
    font-size: 40px;
    padding: 60px 0; }

.item__inner {
  padding: 20px 40px;
  display: flex;
  flex-direction: column; }
  @media screen and (max-width: 768px) {
    .item__inner {
      padding: 20px 10px; } }
  .item__inner .topic-title {
    background: #e60012;
    padding: 15px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 25px;
    font-weight: bold; }
  .item__inner .inner__content {
    background: #fff;
    padding: 30px 20px; }
    .item__inner .inner__content .inner__text {
      padding: 20px 40px;
      line-height: 1.8; }
      @media screen and (max-width: 768px) {
        .item__inner .inner__content .inner__text {
          padding: 20px 10px; } }
  .item__inner .about-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    margin-bottom: 15px; }
    .item__inner .about-list li dt {
      width: 100%;
      padding: 10px;
      min-width: 75px;
      background: #fff100;
      display: block; }
    .item__inner .about-list li dd {
      text-align: center;
      width: 100%;
      border: 2px solid #fff100;
      background: #fff;
      border-top: none;
      padding: 10px 20px; }
      .item__inner .about-list li dd .guest {
        max-width: 300px;
        margin: 0 auto 20px; }
    .item__inner .about-list li.caution {
      margin-bottom: 0; }
      .item__inner .about-list li.caution dd {
        border: none; }
  .item__inner .option {
    font-size: 12px;
    border: 1px solid #000;
    border-radius: 10px;
    padding: 30px 20px; }

.item {
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.6); }

.section-title {
  width: 100%;
  background: #F76623;
  padding: 10px 30px;
  box-sizing: border-box;
  min-height: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  font-weight: bold;
  color: #fff; }
  .section-title span {
    display: inline-block; }
  @media screen and (max-width: 768px) {
    .section-title {
      font-size: 30px; } }

.goods-list {
  padding: 50px 30px;
  display: flex;
  gap: 30px 0;
  flex-wrap: wrap;
  justify-content: space-around; }
  .goods-list .goods {
    width: 45%;
    text-align: center; }
    @media screen and (max-width: 768px) {
      .goods-list .goods {
        width: 100%;
        margin: 0 auto; } }
    .goods-list .goods dt {
      display: flex;
      gap: 5px;
      flex-direction: column;
      background: #F76623;
      color: #fff;
      font-size: 20px;
      font-weight: bold;
      padding: 20px 10px;
      box-sizing: border-box;
      border-radius: 15px 15px 0 0; }
      .goods-list .goods dt span {
        display: inline-block; }
      .goods-list .goods dt .subtitle {
        font-size: 14px;
        color: #fff000; }
      .goods-list .goods dt .item-name {
        justify-content: center;
        flex-direction: column;
        flex-wrap: wrap;
        gap: 0 16px; }
        .goods-list .goods dt .item-name span {
          display: block; }
      @media screen and (max-width: 768px) {
        .goods-list .goods dt {
          font-size: 20px; }
          .goods-list .goods dt .subtitle {
            font-size: 14px; }
          .goods-list .goods dt .item-name {
            flex-direction: row; } }
    .goods-list .goods .data {
      background: #fff100;
      padding: 20px;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 15px 20%;
      font-weight: bold;
      line-height: 15px; }
      .goods-list .goods .data .size {
        margin: 0 0 10px; }
        .goods-list .goods .data .size span {
          display: inline-block; }
      .goods-list .goods .data .price span {
        font-size: 25px; }
      .goods-list .goods .data .price.br {
        width: 100%; }
      @media screen and (max-width: 768px) {
        .goods-list .goods .data .price {
          font-size: 14px; }
          .goods-list .goods .data .price span {
            font-size: 20px; }
          .goods-list .goods .data .price.br {
            width: auto; } }
    .goods-list .goods .image {
      padding: 15px 30px 30px;
      background: #fff;
      border-radius: 0 0 15px 15px; }
      .goods-list .goods .image .type {
        padding: 10px;
        border-radius: 10px;
        font-weight: bold;
        margin-bottom: 38px; }
        .goods-list .goods .image .type.open {
          color: #333;
          background: #ddd;
          margin-bottom: 15px; }
        .goods-list .goods .image .type.blind {
          color: #fff;
          background: #888;
          margin-bottom: 15px; }

.add {
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.6);
  padding: 30px 0px; }
  .add.red p {
    background: #cb0728; }
    .add.red p .big {
      color: #fff000; }
  .add.yellow p {
    background: #fff000;
    color: #000; }
    .add.yellow p .big {
      color: #000; }
  .add p {
    color: #fff;
    padding: 20px;
    border-radius: 15px;
    width: 80%;
    margin: 0 auto;
    text-align: center; }
    .add p span {
      display: inline-block; }
    .add p .big {
      font-size: 20px;
      font-weight: bold; }

.goods-list .goods .image div {
  display: none; }

/*
-----------------
フッター
-----------------
*/
footer {
  background-color: #F76623; }
  footer .contents {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    color: #fff; }
    footer .contents p {
      font-size: 12px;
      padding: 10px; }
    @media screen and (max-width: 768px) {
      footer .contents p {
        font-size: 10px;
        padding: 5px 10px 5px; } }

/*トップへ戻る*/
#pagetop {
  position: fixed;
  right: 0;
  bottom: 150px;
  text-indent: -9999px;
  margin: 0;
  z-index: 100;
  border-radius: 10px; }

#pagetop a {
  position: relative;
  display: block;
  width: 65px;
  height: 65px;
  background: #F76623;
  border: 2px solid #FFF;
  transition: opacity .6s ease;
  border-radius: 10px; }
  @media screen and (max-width: 768px) {
    #pagetop a {
      width: 40px;
      height: 40px; } }

#pagetop a:hover {
  opacity: .5; }

#pagetop a::before {
  position: absolute;
  top: 7px;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 14px;
  height: 14px;
  margin: auto;
  content: '';
  transform: rotate(-45deg);
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF; }
  @media screen and (max-width: 768px) {
    #pagetop a::before {
      top: 5px;
      width: 10px;
      height: 10px; } }

.lity-content {
  max-width: 800px; }

.inner__text a {
  color: #F76623;
  transition: all 0.5s; }
.inner__text a:hover {
  opacity: 0.5;
  transition: all 0.5s; }
.inner__text h4 {
  background: #F76623;
  display: inline-block;
  border-radius: 30px;
  padding: 5px 30px;
  color: #FFF;
  margin: 10px 0 30px;
  font-weight: bold;
  font-size: 18px; }
.inner__text h5 {
  margin: 0 0 15px; }
  .inner__text h5 span {
    background: #DDD;
    display: inline-block;
    padding: 10px 30px;
    font-weight: bold;
    line-height: 1.3; }

.shopbg {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0px 0 40px;
  background: rgba(255, 255, 255, 0.6); }

.shopping {
  text-align: center; }
  @media screen and (max-width: 768px) {
    .shopping {
      width: 45%;
      margin: 0 auto; } }
  .shopping a .btn {
    display: inline-block;
    position: relative;
    font-size: 24px;
    font-weight: bold;
    padding: 20px 40px;
    border-radius: 10px;
    margin-bottom: 1rem;
    color: #fff;
    background-color: #F76623;
    box-shadow: 0 5px 0 #E65109; }
    @media screen and (max-width: 768px) {
      .shopping a .btn {
        font-size: 15px;
        padding: 20px;
        display: block;
        line-height: 1.6; } }
    .shopping a .btn:hover {
      top: 2px;
      box-shadow: 0 3px 0 #E65109; }
    .shopping a .btn:active {
      top: 5px;
      box-shadow: none; }
    .shopping a .btn::before {
      content: '';
      display: block;
      width: 20px;
      height: 20px;
      background: url("../img/arow.svg") no-repeat;
      background-size: contain;
      position: absolute;
      top: calc(50% - 20px/2);
      right: 10px; }
