@charset "UTF-8";
/* ================================================================ *
* MIXIN
* ================================================================ */
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho&display=swap");
/* ================================================================ *
* BODY
* ================================================================ */
body {
  color: #666;
  position: relative;
  font-size: 18px;
  line-height: 1.6;
  background-attachment: fixed;
  font-family: hiragino-kaku-gothic-pron, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic", "ヒラギノ角ゴ", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", "Meiryo", "Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial, Verdana, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: all 0.3s ease-out;
}
body.popup {
  overflow: hidden;
}

a:link, a:visited {
  color: #0067af;
  text-decoration: none;
  transition: all 0.15s ease-out;
}

a:active, a:hover {
  color: #ec9800;
  text-decoration: none;
}

a:focus, *:focus {
  outline: none;
}

img {
  border: none;
  outline: none;
  max-width: 100%;
}

svg {
  fill: #9d8a5b;
}

button {
  margin: 0;
  padding: 0;
  border: none;
}

.sp {
  display: none;
}

@media (max-width: 800px) {
  body {
    font-size: 14px;
    line-height: 1.5;
    font-weight: normal;
  }
  .sp {
    display: inline-block;
  }
  .pc {
    display: none !important;
  }
}
/* ================================================================ */
/* parts
/* ================================================================ */
ul {
  list-style: none;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.p10 {
  padding: 10px !important;
}

.p20 {
  padding: 20px !important;
}

.p30 {
  padding: 30px !important;
}

.p40 {
  padding: 40px !important;
}

@media (max-width: 800px) {
  .mb10 {
    margin-bottom: 5px !important;
  }
  .mb20 {
    margin-bottom: 10px !important;
  }
  .mb30 {
    margin-bottom: 15px !important;
  }
  .mb40 {
    margin-bottom: 20px !important;
  }
  .mb50 {
    margin-bottom: 25px !important;
  }
  .mt10 {
    margin-top: 5px !important;
  }
  .mt20 {
    margin-top: 10px !important;
  }
  .mt30 {
    margin-top: 15px !important;
  }
  .mt40 {
    margin-top: 20px !important;
  }
  .mt50 {
    margin-top: 25px !important;
  }
  .p10 {
    padding: 5px !important;
  }
  .p20 {
    padding: 10px !important;
  }
  .p30 {
    padding: 15px !important;
  }
  .p40 {
    padding: 20px !important;
  }
}
.center {
  text-align: center;
}

.red {
  color: #ff1717;
}

.gray {
  color: #bbb;
}

.stxt {
  font-size: 90%;
}

.frame_box {
  -o-border-image: url(../img/boxframe.png) 40 fill/40px/0px round;
     border-image: url(../img/boxframe.png) 40 fill/40px/0px round;
  padding: 50px;
}
@media (max-width: 800px) {
  .frame_box {
    -o-border-image: url(../img/boxframe.png) 40 fill/28px/0px round;
       border-image: url(../img/boxframe.png) 40 fill/28px/0px round;
    padding: 30px 25px;
  }
}

.flex_wrap {
  display: flex;
  gap: 30px;
}
.flex_wrap .fx1 {
  flex: 1;
}
.flex_wrap .pp_img_btn {
  width: min(40%, 350px);
}
@media (max-width: 800px) {
  .flex_wrap {
    flex-direction: column;
    gap: 20px;
  }
  .flex_wrap .pp_img_btn {
    width: min(80%, 500px);
    margin: 0 auto;
  }
}

.hr_box, .hr_box--p30 {
  position: relative;
  border-top: 1px solid #9d8a5b;
  padding: 20px;
}
.hr_box:before, .hr_box--p30:before, .hr_box:after, .hr_box--p30:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  width: 9px;
  height: 9px;
  background: url(../img/obj_02.png) 50% 50% no-repeat;
  background-size: contain;
  top: -5px;
}
.hr_box:before, .hr_box--p30:before {
  left: -5px;
}
.hr_box:after, .hr_box--p30:after {
  right: -5px;
}
.hr_box--p30 {
  padding: 30px 10px;
}
@media (max-width: 800px) {
  .hr_box, .hr_box--p30 {
    padding: 10px;
  }
  .hr_box--p30 {
    padding: 15px;
  }
}

.btn, .btn--l, .btn--s {
  position: relative;
  display: block;
  z-index: 1;
  cursor: pointer;
  width: 85%;
  max-width: 600px;
  margin: 0 auto;
  padding: 4px 5px;
  border-radius: 50px;
  text-align: center;
}
.btn:before, .btn--l:before, .btn--s:before, .btn:after, .btn--l:after, .btn--s:after {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  aspect-ratio: 1/1;
  left: calc(50% - 5px);
  background: url(../img/obj_01.png) 50% 50% no-repeat;
  background-size: contain;
}
.btn:before, .btn--l:before, .btn--s:before {
  top: -7px;
}
.btn:after, .btn--l:after, .btn--s:after {
  bottom: -7px;
}
.btn p, .btn--l p, .btn--s p, .btn a, .btn--l a, .btn--s a {
  position: relative;
  display: block;
  padding: 10px 10px;
  border-radius: 50px;
  line-height: 1.1;
  border: 1px solid #9d8a5b;
  color: #9d8a5b;
  transition: all 0.3s ease-out;
}
.btn p:before, .btn--l p:before, .btn--s p:before, .btn a:before, .btn--l a:before, .btn--s a:before {
  content: "";
  display: block;
  position: absolute;
  inset: -6px;
  z-index: -1;
  border: 1px solid rgba(157, 138, 91, 0.5);
  border-radius: 50px;
  clip-path: polygon(-2px -2px, calc(50% - 8px) -2px, calc(50% - 8px) 3px, calc(50% + 8px) 3px, calc(50% + 8px) -2px, 101% -2px, 101% calc(100% + 2px), calc(50% + 8px) calc(100% + 2px), calc(50% + 8px) calc(100% - 3px), calc(50% - 8px) calc(100% - 3px), calc(50% - 8px) calc(100% + 2px), 0 calc(100% + 2px));
  transition: all 0.3s ease-out;
}
.btn p:after, .btn--l p:after, .btn--s p:after, .btn a:after, .btn--l a:after, .btn--s a:after {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 100%;
  top: 0;
  right: 15px;
  background: url(../img/btn_icon.png) 50% 50% no-repeat;
  background-size: contain;
}
.btn.en, .en.btn--l, .en.btn--s {
  display: inline-block;
  letter-spacing: 1px;
  text-indent: 1px;
  font-family: house-of-cards, "birch-std", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Hiragino Mincho ProN", "Hiragino Mincho", "Noto Serif JP", "游明朝", "游明朝体", "Yu Mincho", "HGS明朝E", "HG明朝E", "HG明朝", "リュウミン", "メイリオ", "Meiryo", serif;
  font-weight: 400;
}
@media (min-width: 800px) {
  .btn:not(.disable):hover p, .btn--l:not(.disable):hover p, .btn--s:not(.disable):hover p, .btn:not(.disable):hover a, .btn--l:not(.disable):hover a, .btn--s:not(.disable):hover a {
    color: #fff;
    background: #9d8a5b;
  }
  .btn:not(.disable):hover p:before, .btn--l:not(.disable):hover p:before, .btn--s:not(.disable):hover p:before, .btn:not(.disable):hover a:before, .btn--l:not(.disable):hover a:before, .btn--s:not(.disable):hover a:before {
    inset: -10px -20px;
  }
  .btn:not(.disable):hover p:after, .btn--l:not(.disable):hover p:after, .btn--s:not(.disable):hover p:after, .btn:not(.disable):hover a:after, .btn--l:not(.disable):hover a:after, .btn--s:not(.disable):hover a:after {
    filter: brightness(0) invert(1);
  }
}
.btn.disable, .disable.btn--l, .disable.btn--s {
  opacity: 0.5;
  cursor: auto;
  filter: grayscale(1);
}
@media (max-width: 800px) {
  .btn:before, .btn--l:before, .btn--s:before, .btn:after, .btn--l:after, .btn--s:after {
    width: 8px;
    left: calc(50% - 4px);
  }
  .btn:before, .btn--l:before, .btn--s:before {
    top: -5px;
  }
  .btn:after, .btn--l:after, .btn--s:after {
    bottom: -5px;
  }
  .btn p:before, .btn--l p:before, .btn--s p:before, .btn a:before, .btn--l a:before, .btn--s a:before {
    inset: -5px;
  }
  .btn p:after, .btn--l p:after, .btn--s p:after, .btn a:after, .btn--l a:after, .btn--s a:after {
    width: 7px;
    right: 10px;
  }
  .btn--s p {
    padding: 4px 20px 4px 10px;
  }
  .btn--s p:after {
    width: 10px;
    right: 5px;
  }
  .btn--l p {
    padding: 14px 35px 14px 25px;
  }
  .btn--l p:after {
    width: 15px;
    right: 8px;
  }
}
.btn--s {
  text-align: left;
  width: 100%;
  max-width: 350px;
  padding: 0 4px;
}
.btn--s:before, .btn--s:after {
  display: none;
}
.btn--s p {
  font-size: 100%;
  line-height: 1;
  padding: 8px 30px 7px 15px;
}
.btn--s p:after {
  right: 12px;
}
.btn--l {
  max-width: 500px;
}
.btn--l p {
  font-size: 110%;
  line-height: 1;
  padding: 20px 30px;
  background: #af9d66;
  color: #fff;
  font-weight: 600;
}
.btn--l p:after {
  width: 15px;
  right: 20px;
}

.btn_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;
}
@media (min-width: 800px) {
  .btn_wrap {
    padding: 0 30px;
  }
  .btn_wrap .btn, .btn_wrap .btn--l, .btn_wrap .btn--s {
    max-width: 45%;
  }
  .btn_wrap .btn--l {
    max-width: 42%;
  }
}

.minibtn, .minibtn--en {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 3px 20px 1px;
  display: inline-block;
  border: 1px solid #9d8a5b;
  border-radius: 30px;
  line-height: 1.2;
  cursor: pointer;
  vertical-align: bottom;
  white-space: nowrap;
  color: #9d8a5b;
  font-size: 13px;
}
.minibtn:before, .minibtn--en:before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #9d8a5b;
  transform-origin: 100% 0;
  transform: scaleX(0);
  transition: transform 0.15s ease-out;
}
.minibtn:after, .minibtn--en:after {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  right: 7px;
  top: calc(50% - 4px);
  background: url(../img/btn_icon.png) 50% 50% no-repeat;
  background-size: 6px auto;
}
.minibtn:hover, .minibtn--en:hover {
  color: #fff;
}
.minibtn:hover:before, .minibtn--en:hover:before {
  transform-origin: 0 0;
  transform: scale(1);
}
.minibtn:hover:after, .minibtn--en:hover:after {
  filter: brightness(0) invert(1);
}
@media (max-width: 800px) {
  .minibtn, .minibtn--en {
    font-size: 11px;
    padding: 3px 18px 2px 8px;
    background-size: 7px auto;
    background-position: calc(100% - 5px) 50%;
  }
}
.minibtn--en {
  padding: 3px 25px;
}
.minibtn--en p {
  font-family: house-of-cards, "birch-std", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Hiragino Mincho ProN", "Hiragino Mincho", "Noto Serif JP", "游明朝", "游明朝体", "Yu Mincho", "HGS明朝E", "HG明朝E", "HG明朝", "リュウミン", "メイリオ", "Meiryo", serif;
  font-size: 14px;
  letter-spacing: 0.5px;
}
@media (max-width: 800px) {
  .minibtn--en {
    padding: 2px 25px;
  }
  .minibtn--en p {
    font-size: 10px;
  }
}

.pt_btn {
  display: flex;
  justify-content: flex-end;
}
.pt_btn p {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 1;
  font-size: 80%;
  line-height: 1;
  color: #666;
  padding: 2px 5px 1px;
  cursor: pointer;
}
.pt_btn p span {
  display: inline-block;
  font-size: 10px;
  line-height: 1;
  transform: scale(0.9) translateY(-1px);
}
.pt_btn p:before, .pt_btn p:after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.pt_btn p:before {
  background: #9d8a5b;
}
.pt_btn p:after {
  background: #fff;
  transform-origin: 100% 0;
  transform: scaleX(0);
  transition: transform 0.15s ease-out;
}
.pt_btn p:hover:after {
  transform-origin: 0 0;
  transform: scale(1);
}

.pp_img_btn:not([class^=btn]) {
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.pp_img_btn:not([class^=btn]):after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  width: 50px;
  height: 50px;
  top: 5px;
  right: 5px;
  border-radius: 50px;
  border: 1px solid #9d8a5b;
  background: url(../img/pp_icon.png) 55% 45% no-repeat rgba(175, 157, 102, 0.8);
  background-size: 60%;
}
@media (max-width: 800px) {
  .pp_img_btn:not([class^=btn]):after {
    width: 36px;
    height: 36px;
  }
}

.link_txt {
  color: #0067af;
  text-decoration: underline;
  cursor: pointer;
}

table.table_spec, table.table_spec--s {
  position: relative;
  border-top: 1px solid #9d8a5b;
  width: 100%;
  padding-top: 2px;
  border: none;
}
table.table_spec:before, table.table_spec--s:before, table.table_spec:after, table.table_spec--s:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  width: 9px;
  height: 9px;
  background: url(../img/obj_02.png) 50% 50% no-repeat;
  background-size: contain;
  top: -5px;
}
table.table_spec:before, table.table_spec--s:before {
  left: -5px;
}
table.table_spec:after, table.table_spec--s:after {
  right: -5px;
}
table.table_spec:before, table.table_spec--s:before, table.table_spec:after, table.table_spec--s:after {
  top: -5px;
}
table.table_spec tr, table.table_spec--s tr {
  border-bottom: 1px dotted #9d8a5b;
}
table.table_spec tr:nth-of-type(1), table.table_spec--s tr:nth-of-type(1) {
  border-top: 1px solid #9d8a5b;
}
table.table_spec tr th, table.table_spec--s tr th {
  position: relative;
  width: 220px;
  text-align: left;
  padding: 20px 5em 20px 2em;
}
table.table_spec tr th:after, table.table_spec--s tr th:after {
  content: "・・・";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
table.table_spec tr td, table.table_spec--s tr td {
  padding: 20px 30px;
  text-align: left;
}
table.table_spec--s {
  font-size: 90%;
}
table.table_spec--s:before, table.table_spec--s:after {
  display: none;
}
table.table_spec--s tr:nth-of-type(1) {
  border-top: 1px dotted #9d8a5b;
}
table.table_spec--s tr th {
  padding: 10px 5px 10px 15px;
  width: 130px;
}
table.table_spec--s tr td {
  padding: 10px 10px 10px 25px;
}
@media (max-width: 800px) {
  table.table_spec, table.table_spec--s {
    font-size: 90%;
  }
  table.table_spec tr th, table.table_spec--s tr th {
    padding: 10px 2.5em 10px 10px;
    width: 30%;
    white-space: nowrap;
  }
  table.table_spec tr td, table.table_spec--s tr td {
    padding: 10px 10px;
    text-align: left;
  }
}

.table_block, .table_block--noth {
  position: relative;
  border-top: 1px solid #9d8a5b;
  width: 100%;
  font-size: 90%;
  line-height: 1.3;
  border: none;
}
.table_block:before, .table_block--noth:before, .table_block:after, .table_block--noth:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  width: 9px;
  height: 9px;
  background: url(../img/obj_02.png) 50% 50% no-repeat;
  background-size: contain;
  top: -5px;
}
.table_block:before, .table_block--noth:before {
  left: -5px;
}
.table_block:after, .table_block--noth:after {
  right: -5px;
}
.table_block:before, .table_block--noth:before, .table_block:after, .table_block--noth:after {
  top: -5px;
}
.table_block tr, .table_block--noth tr {
  border-bottom: 1px dotted #9d8a5b;
}
.table_block tr:nth-of-type(1), .table_block--noth tr:nth-of-type(1) {
  border-top: 1px solid #9d8a5b;
}
.table_block tr th:nth-of-type(1), .table_block--noth tr th:nth-of-type(1) {
  color: #9d8a5b;
}
.table_block tr th, .table_block--noth tr th, .table_block tr td, .table_block--noth tr td {
  border-right: 1px solid #9d8a5b;
  padding: 0 10px;
  width: 15%;
  min-width: 50px;
  height: 65px;
  text-align: center;
}
.table_block tr th:nth-of-type(1), .table_block--noth tr th:nth-of-type(1), .table_block tr td:nth-of-type(1), .table_block--noth tr td:nth-of-type(1) {
  width: auto;
}
.table_block tr th:nth-last-child(1), .table_block--noth tr th:nth-last-child(1), .table_block tr td:nth-last-child(1), .table_block--noth tr td:nth-last-child(1) {
  border: none;
}
.table_block tr td, .table_block--noth tr td {
  padding: 0 5px;
}
.table_block tr:nth-of-type(odd), .table_block--noth tr:nth-of-type(odd) {
  background: rgba(255, 255, 255, 0.5);
}
.table_block tr:nth-of-type(1), .table_block--noth tr:nth-of-type(1) {
  border-bottom: 1px solid #9d8a5b;
  background: rgba(210.0214592275, 199.9012875536, 168.9785407725, 0.3);
}
.table_block tr:nth-last-of-type(1), .table_block--noth tr:nth-last-of-type(1) {
  border-bottom: 1px solid #9d8a5b;
}
.table_block--noth tr:nth-of-type(1) {
  background: rgba(157, 138, 91, 0.2);
}
@media (max-width: 800px) {
  .table_block tr td, .table_block--noth tr td {
    min-width: 80px;
  }
}

ul.ul_list, ul.ul_list--p30, ul.ul_list--p20 {
  position: relative;
  border-top: 1px solid #9d8a5b;
}
ul.ul_list:before, ul.ul_list--p30:before, ul.ul_list--p20:before, ul.ul_list:after, ul.ul_list--p30:after, ul.ul_list--p20:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  width: 9px;
  height: 9px;
  background: url(../img/obj_02.png) 50% 50% no-repeat;
  background-size: contain;
  top: -5px;
}
ul.ul_list:before, ul.ul_list--p30:before, ul.ul_list--p20:before {
  left: -5px;
}
ul.ul_list:after, ul.ul_list--p30:after, ul.ul_list--p20:after {
  right: -5px;
}
ul.ul_list > li, ul.ul_list--p30 > li, ul.ul_list--p20 > li {
  border-bottom: 1px dotted #9d8a5b;
  padding: 10px 10px;
}
ul.ul_list > li:nth-last-of-type(1), ul.ul_list--p30 > li:nth-last-of-type(1), ul.ul_list--p20 > li:nth-last-of-type(1) {
  border-bottom: none;
}
ul.ul_list--p20 > li {
  padding: 20px;
}
ul.ul_list--p30 > li {
  padding: 30px 10px;
}
@media (max-width: 800px) {
  ul.ul_list > li, ul.ul_list--p20 > li, ul.ul_list--p30 > li {
    padding: 10px 0px;
  }
  ul.ul_list--p20 > li {
    padding: 15px 5px;
  }
  ul.ul_list--p30 > li {
    padding: 20px 10px;
  }
}

ul.ul_spec, ul.ul_spec--s, ul.ul_spec--hr {
  line-height: 1.3;
  font-feature-settings: "palt" 0;
}
ul.ul_spec > li, ul.ul_spec--s > li, ul.ul_spec--hr > li {
  padding-left: 1em;
  text-indent: -1em;
  margin: 8px 0;
}
ul.ul_spec--hr {
  position: relative;
  border-top: 1px solid #9d8a5b;
  padding: 20px 10px;
}
ul.ul_spec--hr:before, ul.ul_spec--hr:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  width: 9px;
  height: 9px;
  background: url(../img/obj_02.png) 50% 50% no-repeat;
  background-size: contain;
  top: -5px;
}
ul.ul_spec--hr:before {
  left: -5px;
}
ul.ul_spec--hr:after {
  right: -5px;
}
ul.ul_spec--s {
  font-size: 90%;
}
ul.ul_spec--s li {
  margin: 6px 0;
}
@media (max-width: 800px) {
  ul.ul_spec--hr {
    padding: 10px 0;
  }
}

ul.ul_newslist li {
  padding: 5px 0;
  font-size: 95%;
  padding: 3px 0;
  border-bottom: 1px solid rgba(157, 138, 91, 0.7);
}
ul.ul_newslist li:nth-of-type(1) {
  border-top: 1px solid rgba(157, 138, 91, 0.7);
}
ul.ul_newslist li a, ul.ul_newslist li .notlink {
  position: relative;
  display: block;
  color: #666;
  padding: 15px 0;
}
ul.ul_newslist li a .txt, ul.ul_newslist li .notlink .txt {
  position: relative;
  padding: 0 45px 0 20px;
  line-height: 1.3;
  flex: 1;
  min-height: 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}
ul.ul_newslist li a .txt .daywrap, ul.ul_newslist li .notlink .txt .daywrap {
  display: flex;
  align-items: center;
  margin-bottom: 3px;
  gap: 10px;
  font-family: house-of-cards, "birch-std", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Hiragino Mincho ProN", "Hiragino Mincho", "Noto Serif JP", "游明朝", "游明朝体", "Yu Mincho", "HGS明朝E", "HG明朝E", "HG明朝", "リュウミン", "メイリオ", "Meiryo", serif;
  letter-spacing: 1px;
  line-height: 1;
}
ul.ul_newslist li a .txt .day, ul.ul_newslist li .notlink .txt .day {
  position: relative;
  opacity: 0.8;
}
ul.ul_newslist li a .txt .day .w, ul.ul_newslist li .notlink .txt .day .w {
  font-size: 85%;
}
ul.ul_newslist li a .txt .page, ul.ul_newslist li .notlink .txt .page {
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px 30px 0;
  z-index: 1;
  white-space: nowrap;
  background: #9d8a5b;
  border-radius: 30px;
}
ul.ul_newslist li a .txt .page span, ul.ul_newslist li .notlink .txt .page span {
  display: block;
  font-size: 90%;
  color: #fff;
}
ul.ul_newslist li a {
  background: url(../img/btn_icon.png) calc(100% - 10px) 50% no-repeat;
  background-size: 20px auto;
}
ul.ul_newslist li a:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(157, 138, 91, 0.2);
  transform-origin: 100% 0;
  transform: scaleX(0);
  transition: transform 0.3s ease-out;
}
ul.ul_newslist li a:hover:before {
  transform-origin: 0 0;
  transform: scaleX(1);
}
@media (max-width: 800px) {
  ul.ul_newslist li a, ul.ul_newslist li .notlink {
    padding: 10px 0 8px;
  }
  ul.ul_newslist li a .txt, ul.ul_newslist li .notlink .txt {
    padding: 0 30px 0 10px;
  }
  ul.ul_newslist li a .txt .page, ul.ul_newslist li .notlink .txt .page {
    padding: 2px 20px 1px;
  }
  ul.ul_newslist li a .txt .page span, ul.ul_newslist li .notlink .txt .page span {
    font-size: 11px;
  }
  ul.ul_newslist li a {
    background-size: 10px auto;
  }
}

dl.drop_list > dt {
  position: relative;
  z-index: 1;
  cursor: pointer;
  height: 70px;
  padding: 10px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #9d8a5b;
  color: #9d8a5b;
  font-weight: 600;
  transition: all 0.3s ease-out;
}
dl.drop_list > dt:before, dl.drop_list > dt:after {
  content: "";
  display: block;
  position: absolute;
  inset: 2px;
  z-index: 1;
  border: 1px solid rgba(157, 138, 91, 0.5);
  transition: all 0.3s ease-out;
}
dl.drop_list > dt:after {
  border-radius: 50px;
  background: rgba(210.0214592275, 199.9012875536, 168.9785407725, 0.3);
}
dl.drop_list > dt > * {
  position: relative;
  z-index: 2;
}
dl.drop_list > dt .icon {
  width: 20px;
  aspect-ratio: 108/135;
  background: url(../img/btn_icon.png) 50% 50% no-repeat;
  background-size: contain;
  rotate: 90deg;
  transition: all 0.3s ease-out;
}
dl.drop_list > dt.on .icon {
  rotate: -90deg;
}
dl.drop_list > dt:not(.on):hover {
  transform: scale(1.02);
  box-shadow: 0 0 10px rgba(175, 157, 102, 0.5);
}
dl.drop_list > dt:not(.on):hover:after {
  opacity: 0.8;
}
dl.drop_list > dt.closed .closed_btn {
  background: rgba(255, 255, 255, 0.2);
  font-size: 80%;
  padding: 0 18px;
}
dl.drop_list > dt:not(:nth-of-type(1)) {
  margin-top: 20px;
}
dl.drop_list > dd {
  position: relative;
  height: 0px;
  overflow: hidden;
}
dl.drop_list > dd .dd_wrap {
  position: relative;
  padding: 40px 40px 50px;
  border: 1px solid rgba(157, 138, 91, 0.7);
  border-top: none;
  background: rgba(255, 255, 255, 0.5);
}
@media (max-width: 800px) {
  dl.drop_list > dt {
    height: 54px;
    padding: 10px 12px 10px;
    font-size: 85%;
    line-height: 1.3;
  }
  dl.drop_list > dt .icon {
    width: 10px;
  }
  dl.drop_list > dt:not(:nth-of-type(1)) {
    margin-top: 15px;
  }
  dl.drop_list > dd .dd_wrap {
    padding: 15px 15px 20px;
  }
}

dl.dl_notice > dt {
  position: relative;
  border-top: 1px solid #9d8a5b;
  padding: 20px 10px;
  color: #9d8a5b;
  border-bottom: 1px dotted #9d8a5b;
  font-weight: 600;
  font-size: 110%;
}
dl.dl_notice > dt:before, dl.dl_notice > dt:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  width: 9px;
  height: 9px;
  background: url(../img/obj_02.png) 50% 50% no-repeat;
  background-size: contain;
  top: -5px;
}
dl.dl_notice > dt:before {
  left: -5px;
}
dl.dl_notice > dt:after {
  right: -5px;
}
dl.dl_notice > dd {
  height: auto;
  overflow: auto;
  padding: 20px 10px;
  margin-bottom: 60px;
}
dl.dl_notice > dd:nth-last-of-type(1) {
  margin-bottom: 0;
}
dl.dl_notice > dd p:not(:nth-last-of-type(1)) {
  margin-bottom: 20px;
}
@media (max-width: 800px) {
  dl.dl_notice > dt {
    padding: 10px;
  }
  dl.dl_notice > dd {
    padding: 10px;
    margin-bottom: 40px;
  }
}

dl.dl_spec, dl.dl_spec--border {
  margin: 0;
  font-size: 95%;
}
dl.dl_spec > dt, dl.dl_spec--border > dt {
  color: #9d8a5b;
  font-size: 90%;
  font-weight: 600;
}
dl.dl_spec > dd, dl.dl_spec--border > dd {
  margin-bottom: 10px;
}
dl.dl_spec > dd:nth-last-of-type(1), dl.dl_spec--border > dd:nth-last-of-type(1) {
  margin-bottom: 0;
}
dl.dl_spec--border {
  border-top: 1px solid rgba(157, 138, 91, 0.5);
  border-bottom: 1px solid rgba(157, 138, 91, 0.5);
  padding: 20px 10px;
}

p.p_attention, p.p_attention--border {
  font-size: 80%;
  opacity: 0.8;
}
p.p_attention--border {
  border: 1px dotted rgba(102, 102, 102, 0.8);
  padding: 10px 18px 8px;
  border-radius: 5px;
}
@media (max-width: 800px) {
  p.p_attention--border {
    padding: 8px 10px;
  }
}

ul.ul_attention, ul.ul_attention--border {
  font-size: 80%;
  opacity: 0.8;
}
ul.ul_attention li, ul.ul_attention--border li {
  line-height: 1.3;
  margin: 5px 0;
  padding-left: 1em;
  text-indent: -1em;
  font-feature-settings: "palt" 0;
}
ul.ul_attention--border {
  border: 1px dotted rgba(102, 102, 102, 0.8);
  padding: 10px 18px 8px;
  border-radius: 5px;
}
@media (max-width: 800px) {
  ul.ul_attention--border {
    padding: 8px 10px;
  }
}

dl.dl_attention {
  background: rgba(102, 102, 102, 0.1);
  padding: 10px 20px;
  font-size: 95%;
  line-height: 1.3;
}
dl.dl_attention > dt {
  border-bottom: 1px solid #9d8a5b;
  padding: 20px;
  color: #9d8a5b;
  text-align: center;
  font-size: 110%;
}
dl.dl_attention > dd {
  padding: 20px;
}
@media (max-width: 800px) {
  dl.dl_attention {
    padding: 10px;
  }
  dl.dl_attention > dt {
    padding-bottom: 8px;
  }
  dl.dl_attention > dd {
    padding: 5px;
  }
}

.item_box {
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease-out;
  outline: 5px solid transparent;
  cursor: pointer;
  -o-border-image: url(../img/boxframe.png) 40 fill/100px/0px round;
     border-image: url(../img/boxframe.png) 40 fill/100px/0px round;
  padding: 50px;
}
@media (max-width: 800px) {
  .item_box {
    -o-border-image: url(../img/boxframe.png) 40 fill/70px/0px round;
       border-image: url(../img/boxframe.png) 40 fill/70px/0px round;
    padding: 30px 25px;
  }
}
.item_box .img {
  margin-bottom: 12px;
}
.item_box .way {
  display: flex;
  justify-content: space-between;
  gap: 0 5px;
  margin-bottom: 10px;
  font-size: 72%;
  line-height: 1;
  text-align: center;
}
.item_box .way li {
  flex: 1;
  border-radius: 15px;
  padding: 4px 2px 3px;
  border: 1px solid rgba(157, 138, 91, 0.8);
}
.item_box .way li span {
  display: inline-block;
}
.item_box .name_sub {
  font-size: 65%;
  line-height: 1.3;
}
.item_box .name {
  font-size: 115%;
  line-height: 1.3;
  margin: 5px 0 8px;
}
.item_box .price {
  margin-bottom: 20px;
}
.item_box .price span {
  font-size: 70%;
}
.item_box .btn--s {
  margin-top: auto;
  text-align: center;
}
.item_box .btn--s p {
  font-size: 75%;
  line-height: 1;
}
.item_box:hover {
  translate: 0 -10px;
  box-shadow: 0 0 40px rgba(157, 138, 91, 0.5);
  filter: drop-shadow(0 0 40px rgba(157, 138, 91, 0.5));
}
.item_box:hover .btn--s p {
  background: rgba(51, 51, 51, 0.8);
}
@media (max-width: 800px) {
  .item_box {
    -o-border-image: url(../img/boxframe.png) 40 fill/100px/0px round;
       border-image: url(../img/boxframe.png) 40 fill/100px/0px round;
    padding: 35px;
    padding: 15px;
  }
}
@media (max-width: 800px) and (max-width: 800px) {
  .item_box {
    -o-border-image: url(../img/boxframe.png) 40 fill/70px/0px round;
       border-image: url(../img/boxframe.png) 40 fill/70px/0px round;
    padding: 21px 17.5px;
  }
}
@media (max-width: 800px) {
  .item_box .img {
    margin-bottom: 5px;
  }
  .item_box .way {
    gap: 0 2px;
    margin-bottom: 7px;
    font-size: 9px;
  }
  .item_box .way li {
    padding: 2px 2px 1px;
    border-radius: 10px;
  }
  .item_box .name_sub {
    display: none;
  }
  .item_box .name {
    font-size: 100%;
    line-height: 1.2;
    margin: 0;
  }
  .item_box .price {
    font-size: 80%;
    margin-bottom: 8px;
  }
}

.item_wrap {
  display: flex;
  flex-wrap: wrap;
  transition: all 0.3s ease-out;
}
.item_wrap .item_box {
  display: none;
}
.item_wrap .item_box.on {
  display: flex;
}
@media (min-width: 800px) {
  .item_wrap {
    gap: 18px 1.5%;
  }
  .item_wrap .item_box {
    width: 32.3%;
  }
}
@media (max-width: 800px) {
  .item_wrap {
    gap: 10px 3%;
  }
  .item_wrap .item_box {
    width: 48.5%;
  }
}

.areanav {
  position: sticky;
  top: 90px;
  z-index: 10;
  margin-bottom: 60px;
}
.areanav ul {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: space-between;
}
.areanav ul li {
  width: 13.8%;
  position: relative;
  z-index: 1;
  border: 1px solid #9d8a5b;
  border-radius: 5px;
  background: rgba(157, 138, 91, 0.5);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
.areanav ul li a {
  position: relative;
  padding: 7px 8px 0px;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  color: #fff;
  line-height: 1.3;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
}
.areanav ul li a:before {
  content: "＞＞";
  display: block;
  position: relative;
  letter-spacing: -7px;
  transform: scaleY(0.4) rotate(90deg) translateX(-10px);
  order: 2;
}
.areanav ul li a:after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #9d8a5b;
  transform-origin: 100% 0;
  transform: scaleX(0);
  transition: transform 0.15s ease-out;
}
.areanav ul li a:hover:after {
  transform-origin: 0 0;
  transform: scaleX(1);
}
@media (max-width: 800px) {
  .areanav {
    margin-bottom: 30px;
    top: 55px;
    overflow-x: auto;
  }
  .areanav ul {
    flex-wrap: wrap;
    width: 600px;
    gap: 3px;
  }
  .areanav ul li {
    white-space: nowrap;
    font-size: 80%;
    line-height: 1.2;
    flex: auto;
  }
}

.area_box {
  margin-bottom: 60px;
  line-height: 1.1;
}
.area_box .table_block tr th, .area_box .table_block--noth tr th, .area_box .table_block tr td, .area_box .table_block--noth tr td {
  width: auto;
  height: auto;
  padding: 10px 5px;
}
.area_box .table_block tr th.ken, .area_box .table_block--noth tr th.ken {
  white-space: nowrap;
  min-width: 4.5em;
}
.area_box .table_block tr td.kaizyou, .area_box .table_block--noth tr td.kaizyou {
  width: 45%;
}
@media (max-width: 800px) {
  .area_box .table_block tr th, .area_box .table_block--noth tr th, .area_box .table_block tr td, .area_box .table_block--noth tr td {
    width: auto;
    height: auto;
    padding: 10px 5px;
  }
  .area_box .table_block tr th.ken, .area_box .table_block--noth tr th.ken {
    white-space: nowrap;
    min-width: 4.5em;
  }
  .area_box .table_block tr td.kaizyou, .area_box .table_block--noth tr td.kaizyou {
    width: 45%;
  }
}

.starline {
  position: absolute;
  left: 0px;
  top: 0;
  width: calc(100% - 0px);
  height: 20px;
  display: flex;
  justify-content: center;
  opacity: 0;
}
.starline span {
  width: 70px;
  height: 20px;
  background: url(../img/border_obj.png) 50% 50% no-repeat;
  background-size: contain;
}
.starline:before, .starline:after {
  content: "";
  display: block;
  position: relative;
  background: url(../img/border_line.png) 50% 50% repeat-x;
  flex: 1;
  height: 20px;
  transform: scaleX(0);
}
.starline:before {
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 20%);
          mask-image: linear-gradient(to right, transparent 0, #000 20%);
  transform-origin: 100% 0;
}
.starline:after {
  -webkit-mask-image: linear-gradient(to left, transparent 0, #000 20%);
          mask-image: linear-gradient(to left, transparent 0, #000 20%);
  transform-origin: 0 0;
}
.starline.show {
  transition: all 0.3s ease-out;
  opacity: 1;
}
.starline.show:before, .starline.show:after {
  transition: all 0.8s ease-out;
  transform: scaleX(1);
}
@media (max-width: 800px) {
  .starline {
    height: 13px;
  }
  .starline span {
    width: 50px;
    height: 13px;
  }
  .starline:before, .starline:after {
    height: 13px;
    background-size: auto 3px;
  }
}

hr.border {
  position: relative;
  border: none;
  width: 100%;
  height: 12px;
  background: url(../img/border_obj.png) 50% 50% no-repeat;
  background-size: auto 100%;
}
hr.border:before, hr.border:after {
  content: "";
  display: block;
  position: absolute;
  width: calc(50% - 22px);
  height: 100%;
  background: url(../img/border_line.png) 50% 50% repeat-x;
}
hr.border:before {
  left: 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 30%);
          mask-image: linear-gradient(to right, transparent 0%, #000 30%);
}
hr.border:after {
  right: 0;
  -webkit-mask-image: linear-gradient(to left, transparent 0%, #000 30%);
          mask-image: linear-gradient(to left, transparent 0%, #000 30%);
}

.hr {
  position: relative;
  border-top: 1px solid #9d8a5b;
  border-top: 1px solid #9d8a5b;
  height: 1px;
}
.hr:before, .hr:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  width: 9px;
  height: 9px;
  background: url(../img/obj_02.png) 50% 50% no-repeat;
  background-size: contain;
  top: -5px;
}
.hr:before {
  left: -5px;
}
.hr:after {
  right: -5px;
}

.icontxt, .icontxt--l {
  background: url(../img/obj_01.png) 0 50% no-repeat;
  background-size: 1.2em;
  padding-left: 1.5em;
}
.icontxt--l {
  font-size: 120%;
  line-height: 1.3;
}
@media (max-width: 800px) {
  .icontxt--l {
    font-size: 115%;
    line-height: 1.3;
  }
}

.linktxt {
  color: #0067af;
  text-decoration: underline;
  cursor: pointer;
}
.linktxt span {
  font-size: 10px;
  display: inline-block;
  margin-right: 3px;
}

.obj {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.obj .bubble {
  position: absolute;
  display: block;
  aspect-ratio: 1/1;
  opacity: 0;
  transition: all 0.8s ease-out;
  background: url(../img/bubble.webp) 50% 50% no-repeat;
  background-size: contain;
  filter: drop-shadow(30px 30px 20px rgba(12, 38, 80, 0.15));
  transform: translateY(-30px);
}
.obj .bubble:nth-of-type(2n) {
  transition-delay: 0.8s;
}
.obj .bubble:nth-of-type(3n) {
  transition-delay: 0.4s;
}
.obj .bubble.show {
  opacity: 1;
  transform: translateY(0px);
}
@media (max-width: 800px) {
  .obj .bubble {
    transform: scale(0.5);
  }
  .obj .bubble.show {
    opacity: 1;
    transform: translateY(0px) scale(0.48);
  }
}

.snsbox {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.snsbox > div {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background-size: contain;
  background-repeat: no-repeat;
  text-indent: 150%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 1px;
  transition: all 0.3s ease-out;
}
.snsbox a {
  display: block;
  width: 100%;
  height: 100%;
}
.snsbox .twitter {
  background-image: url(../img/snsicon_x_b.png);
}
.snsbox .line {
  background-image: url(../img/snsicon_line.png);
}
@media (max-width: 800px) {
  .snsbox {
    gap: 10px;
  }
  .snsbox > div {
    width: 30px;
    height: 30px;
  }
}

/* ================================================================ */
/* loading
/* ================================================================ */
#loading {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1002;
  background: #fff;
  transition: all 0.15s ease-out 0.01s;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", "Meiryo", "Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial, Verdana, sans-serif;
  font-size: 90%;
  font-weight: 600;
}
#loading .txt {
  text-align: center;
  margin-bottom: 20px;
  transition: all 0.3s ease-out;
}
#loading .txt .logo {
  width: 200px;
  margin-bottom: 15px;
}
#loading .txt p {
  letter-spacing: 5px;
  color: #9d8a5b;
}
#loading.off {
  transition: all 0.8s ease-out 0.3s;
  opacity: 0;
  pointer-events: none;
}
#loading.off .txt {
  opacity: 0;
  transform: scale(1.05);
}
@media (max-width: 800px) {
  #loading .txt .logo {
    width: 120px;
  }
}

/* ================================================================ */
/* gmenu
/* ================================================================ */
.menu_snsbtn {
  position: relative;
  margin: auto auto 0;
  width: max(85%, 180px);
  border: 1px solid #9d8a5b;
  border-radius: 50px;
  font-size: 14px;
  white-space: nowrap;
}
.menu_snsbtn:before {
  content: "";
  display: block;
  position: absolute;
  inset: 2px;
  border: 1px solid #9d8a5b;
  border-radius: 50px;
  opacity: 0.5;
}
.menu_snsbtn:after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  border-radius: 50px;
  background: rgba(175, 157, 102, 0.15);
  opacity: 0;
  transform: scaleX(0);
  transition: all 0.2s ease-out;
}
.menu_snsbtn a {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: #9d8a5b;
  letter-spacing: 0.7px;
  padding: 10px 0 7px;
}
.menu_snsbtn a img {
  width: 15px;
}
.menu_snsbtn a:after {
  content: "";
  display: block;
  position: absolute;
  aspect-ratio: 194/33;
  width: 100px;
  top: -9px;
  left: calc(50% - 50px);
  background: url(../img/ribbon_01.png) 50% 50% no-repeat #fff;
  background-size: 90% auto;
}

#gmenu .menu_content {
  display: contents;
}
@media (min-width: 800px) {
  #gmenu {
    position: relative;
    width: min(18vw, 280px);
    min-width: 220px;
    position: sticky;
    top: 25px;
    padding: 3px 3px 0;
    height: calc(100vh - 25px);
    border: 2px solid #9d8a5b;
    border-bottom: none;
  }
  #gmenu:before {
    content: "";
    display: block;
    position: absolute;
    inset: 3px 3px 0 3px;
    border: 1px solid #9d8a5b;
    border-bottom: none;
    background: url(../img/menu_bg.png);
  }
  #gmenu nav {
    position: relative;
    height: 100%;
    padding: 0 0 20px;
    text-align: center;
    border: 1px solid #9d8a5b;
    border-bottom: none;
    border-radius: 500px 500px 0 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    font-family: house-of-cards, "birch-std", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Hiragino Mincho ProN", "Hiragino Mincho", "Noto Serif JP", "游明朝", "游明朝体", "Yu Mincho", "HGS明朝E", "HG明朝E", "HG明朝", "リュウミン", "メイリオ", "Meiryo", serif;
    font-size: 19px;
    line-height: 1.3;
  }
  #gmenu nav:before, #gmenu nav:after {
    content: "";
    display: block;
    position: absolute;
    width: 14%;
    aspect-ratio: 1/1;
    background: url(../img/menu_obj.png) 50% 50% no-repeat;
    background-size: contain;
    top: 8px;
    opacity: 0.8;
  }
  #gmenu nav:before {
    left: 5px;
    transform: scaleX(-1);
  }
  #gmenu nav:after {
    right: 5px;
  }
  #gmenu nav .sitelogo {
    position: relative;
    width: 100%;
    padding: 40px 30px 0;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  #gmenu nav .sitelogo p.logo {
    max-width: 240px;
    min-width: 150px;
  }
  #gmenu nav .sitelogo .txt {
    display: none;
    margin-top: 20px;
    color: #9d8a5b;
    letter-spacing: 0.5px;
    font-weight: 400;
  }
  #gmenu nav .sitelogo .txt .messe {
    font-size: 150%;
    line-height: 1;
    margin-bottom: 3px;
  }
  #gmenu nav .sitelogo .txt .day {
    line-height: 1;
    white-space: nowrap;
  }
  #gmenu nav .sitelogo .txt .day .kakko {
    font-size: 70%;
    display: inline-block;
    transform: translateY(-1px);
  }
  #gmenu nav .sitelogo .txt .day .week {
    font-size: 70%;
    display: inline-block;
  }
  #gmenu nav .sitelogo.len4 {
    margin-bottom: 20px;
  }
  #gmenu nav .border {
    width: calc(100% - 60px);
    padding: 0;
  }
  #gmenu nav .navwrap {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  #gmenu nav .menu {
    width: -moz-fit-content;
    width: fit-content;
    text-align: left;
    white-space: nowrap;
  }
  #gmenu nav .menu li {
    position: relative;
    padding: 2px 0 2px 20px;
    opacity: 0.7;
    font-size: 19px;
    line-height: 1.3;
  }
  #gmenu nav .menu li:before {
    content: "";
    display: block;
    position: absolute;
    width: 12px;
    height: 12px;
    top: calc(50% - 6px);
    left: 0;
    background: #949188;
    opacity: 0.8;
    -webkit-mask-image: url(../img/obj_01.png);
            mask-image: url(../img/obj_01.png);
    -webkit-mask-size: contain;
            mask-size: contain;
    -webkit-mask-position: 50% 50%;
            mask-position: 50% 50%;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
  }
  #gmenu nav .menu li a {
    color: #666;
    transition: all 0.3s ease-out;
  }
  #gmenu nav .menu li .stxt {
    font-size: 90%;
  }
  #gmenu nav .menu li.on, #gmenu nav .menu li:hover {
    opacity: 1;
  }
  #gmenu nav .menu li.on:before, #gmenu nav .menu li:hover:before {
    background: #9d8a5b;
    opacity: 1;
  }
  #gmenu nav .menu li.on a, #gmenu nav .menu li:hover a {
    color: #9d8a5b;
  }
}
@media (min-width: 800px) and (min-height: 650px) {
  #gmenu nav .sitelogo {
    margin-bottom: 10px;
    aspect-ratio: 1/1.1;
  }
  #gmenu nav .sitelogo .txt {
    display: block;
  }
}
@media (min-width: 800px) and (min-height: 700px) {
  #gmenu nav .menu li {
    line-height: 1.5;
    font-size: 20px;
  }
}
@media (min-width: 800px) and (max-width: 1500px) {
  #gmenu nav .sitelogo .txt .messe {
    font-size: 110%;
  }
  #gmenu nav .sitelogo .txt .day {
    font-size: 80%;
  }
  #gmenu nav .menu li {
    font-size: 18px;
  }
}
@media (max-width: 800px) {
  #gmenu {
    position: fixed;
    width: 100%;
    height: 100%;
    top: -100%;
    left: 0;
    z-index: 1000;
    padding: 20px 50px 50px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    overflow: hidden;
    transition: all 0.3s ease-out 0.1s;
    font-family: house-of-cards, "birch-std", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Hiragino Mincho ProN", "Hiragino Mincho", "Noto Serif JP", "游明朝", "游明朝体", "Yu Mincho", "HGS明朝E", "HG明朝E", "HG明朝", "リュウミン", "メイリオ", "Meiryo", serif;
    letter-spacing: 0.5px;
    text-indent: 1px;
    color: #9d8a5b;
  }
  #gmenu a {
    color: #9d8a5b;
  }
  #gmenu nav {
    width: 100%;
  }
  #gmenu hr.border {
    display: none;
  }
  #gmenu .sitelogo {
    position: relative;
    text-align: center;
    margin-bottom: 30px;
  }
  #gmenu .sitelogo p.logo {
    width: 120px;
    margin: 0 auto 10px;
  }
  #gmenu .sitelogo .txt .messe {
    font-size: 130%;
    line-height: 1;
    margin-bottom: 3px;
  }
  #gmenu .sitelogo .txt .day {
    line-height: 1;
    white-space: nowrap;
    font-size: 85%;
  }
  #gmenu .sitelogo .txt .day .kakko {
    font-size: 70%;
    display: inline-block;
    transform: translateY(-1px);
  }
  #gmenu .sitelogo .txt .day .week {
    font-size: 70%;
    display: inline-block;
  }
  #gmenu ul {
    width: 100%;
    position: relative;
    z-index: 3;
    margin-bottom: 40px;
    background-size: 180px auto;
    position: relative;
    border-top: 1px solid #9d8a5b;
    text-align: center;
  }
  #gmenu ul:before, #gmenu ul:after {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    width: 9px;
    height: 9px;
    background: url(../img/obj_02.png) 50% 50% no-repeat;
    background-size: contain;
    top: -5px;
  }
  #gmenu ul:before {
    left: -5px;
  }
  #gmenu ul:after {
    right: -5px;
  }
  #gmenu ul li {
    position: relative;
    width: 100%;
    position: relative;
    border-bottom: 1px solid #9d8a5b;
  }
  #gmenu ul li:before, #gmenu ul li:after {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    width: 9px;
    height: 9px;
    background: url(../img/obj_02.png) 50% 50% no-repeat;
    background-size: contain;
    bottom: -5px;
  }
  #gmenu ul li:before {
    left: -5px;
  }
  #gmenu ul li:after {
    right: -5px;
  }
  #gmenu ul li a, #gmenu ul li p {
    display: block;
    width: 100%;
    padding: 5px;
    color: #9d8a5b;
    font-size: 150%;
  }
  #gmenu ul li.cmsn p {
    opacity: 0.2;
  }
  #gmenu .snsbtn {
    width: 100%;
  }
}
#gmenu.show {
  top: 0;
  pointer-events: auto;
}

/* spmenu	========================================================== */
#splogo {
  position: relative;
  left: -10px;
  width: calc(100% + 20px);
  margin-bottom: 15px;
  padding: 0 10px 8px;
  border-bottom: 1px solid #9d8a5b;
}
#splogo a {
  display: block;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 7px;
}
#splogo p.logo {
  width: 45px;
}
#splogo .day {
  font-family: house-of-cards, "birch-std", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Hiragino Mincho ProN", "Hiragino Mincho", "Noto Serif JP", "游明朝", "游明朝体", "Yu Mincho", "HGS明朝E", "HG明朝E", "HG明朝", "リュウミン", "メイリオ", "Meiryo", serif;
  text-align: left;
  color: #9d8a5b;
  letter-spacing: 0.5px;
  font-weight: 400;
}
#splogo .day .messe {
  font-size: 120%;
  line-height: 1;
  margin-bottom: 3px;
}
#splogo .day .day {
  line-height: 1;
  white-space: nowrap;
  font-size: 90%;
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
}
#splogo .day .day .kakko {
  font-size: 70%;
  display: inline-block;
  transform: translateY(-0.3px);
  margin: 0 0.5px;
}
#splogo .day .day .week {
  font-size: 70%;
  display: inline-block;
}

#spmenu {
  position: fixed;
  right: 10px;
  top: 10px;
  z-index: 1001;
  cursor: pointer;
  width: 42px;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-out;
  background-size: 180px auto;
  background: #af9d66;
}
#spmenu span {
  position: relative;
  z-index: 10;
  display: block;
  width: 70%;
  height: 2px;
  background: #fff;
  transition: all 0.15s ease-out;
}
#spmenu span:before, #spmenu span:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #fff;
  transition: all 0.15s ease-out;
}
#spmenu span:before {
  transform: translateY(-7px);
}
#spmenu span:after {
  transform: translateY(7px);
}
#spmenu.on span {
  background: transparent;
}
#spmenu.on span:before {
  transform: rotate(25deg);
}
#spmenu.on span:after {
  transform: rotate(-25deg);
}
@media (min-width: 800px) {
  #spmenu {
    display: none;
  }
}

/* gfooter	========================================================== */
#gfooter {
  position: relative;
  z-index: 5;
}
#gfooter:after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url(../img/content_bg.webp) 50% 50% repeat-y;
  background-size: cover;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
}
#gfooter .scrolltext {
  border-top: 1px solid #9d8a5b;
  border-bottom: 1px solid #9d8a5b;
  position: relative;
  height: 180px;
  background: url(../img/scrolltext.png) 0 70% repeat-x;
  animation: textanm 30s linear infinite;
}
@keyframes textanm {
  0% {
    background-position: 0 70%;
  }
  100% {
    background-position: -2056px 70%;
  }
}
@media (min-width: 800px) {
  #gfooter .pc_foot_nav {
    padding: 10px;
    background: rgba(175, 157, 102, 0.1);
    border-bottom: 1px solid #9d8a5b;
    border-bottom: 1px solid #9d8a5b;
  }
  #gfooter .pc_foot_nav ul {
    display: flex;
    justify-content: center;
    font-family: house-of-cards, "birch-std", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Hiragino Mincho ProN", "Hiragino Mincho", "Noto Serif JP", "游明朝", "游明朝体", "Yu Mincho", "HGS明朝E", "HG明朝E", "HG明朝", "リュウミン", "メイリオ", "Meiryo", serif;
    font-size: 130%;
    letter-spacing: 0.5px;
  }
  #gfooter .pc_foot_nav ul li {
    position: relative;
    padding: 0 30px;
  }
  #gfooter .pc_foot_nav ul li:before, #gfooter .pc_foot_nav ul li:nth-last-of-type(1):after {
    content: "";
    display: block;
    position: absolute;
    width: 14px;
    aspect-ratio: 1/1;
    background: url(../img/obj_01.png) 50% 50% no-repeat;
    background-size: contain;
    top: calc(50% - 7px);
  }
  #gfooter .pc_foot_nav ul li:before {
    left: -7px;
  }
  #gfooter .pc_foot_nav ul li:nth-last-of-type(1):after {
    right: -7px;
  }
  #gfooter .pc_foot_nav ul li a {
    color: #9d8a5b;
    transition: all 0.3s ease-out;
  }
  #gfooter .pc_foot_nav ul li a:hover {
    opacity: 0.7;
  }
}
#gfooter .foot_wrapper {
  width: 100%;
  max-width: 1500px;
  padding: 90px 50px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  filter: drop-shadow(0 0 10px #fff);
}
#gfooter .logo {
  margin-bottom: 25px;
}
#gfooter .logo img {
  width: 250px;
}
#gfooter .sns {
  text-align: center;
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
}
#gfooter .sns .ttl {
  font-family: house-of-cards, "birch-std", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Hiragino Mincho ProN", "Hiragino Mincho", "Noto Serif JP", "游明朝", "游明朝体", "Yu Mincho", "HGS明朝E", "HG明朝E", "HG明朝", "リュウミン", "メイリオ", "Meiryo", serif;
  color: #9d8a5b;
  font-size: 140%;
  letter-spacing: 0.5px;
}
#gfooter .link_wrap {
  flex: 1;
  padding-top: 30px;
}
#gfooter .link {
  display: flex;
  gap: 20px 1.4%;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
#gfooter .link .foot_btn {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 49.2%;
  border: 1px solid #9d8a5b;
  border-radius: 40px;
}
#gfooter .link .foot_btn:before {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 100%;
  top: 0;
  right: 18px;
  background: url(../img/btn_icon.png) 50% 50% no-repeat;
  background-size: contain;
}
#gfooter .link .foot_btn:after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #9d8a5b;
  transform-origin: 100% 0;
  transition: transform 0.2s ease-out;
  transform: scaleX(0);
}
#gfooter .link .foot_btn p {
  position: relative;
  padding: 15px 30px;
  color: #9d8a5b;
  z-index: 1;
}
#gfooter .link .foot_btn:hover p {
  color: #fff;
}
#gfooter .link .foot_btn:hover:before {
  filter: brightness(0) invert(1);
}
#gfooter .link .foot_btn:hover:after {
  transform-origin: 0 0;
  transform: scaleX(1);
}
#gfooter .copy_wrap {
  display: flex;
  align-items: center;
  gap: 15px;
}
#gfooter .copy_wrap .copy {
  font-size: 14px;
  padding-left: 5px;
}
#gfooter .copy_wrap .copy p {
  display: inline-block;
  margin: 3px 15px 0px 0;
}
#gfooter .copy_wrap .copy p span.maruc {
  display: inline-block;
  font-size: 180%;
  transform: translateY(4px);
}
@media (min-width: 800px) {
  #gfooter .copy_wrap .copy p:nth-last-of-type(1) {
    display: block;
  }
}
#gfooter .copy_wrap .contact_btn {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 30px;
  padding: 6px 50px;
  margin-bottom: 4px;
  background: #9d8a5b;
  border: 1px solid #9d8a5b;
  font-size: 75%;
  line-height: 1.5;
  color: #fff;
  transition: all 0.2s ease-out;
}
#gfooter .copy_wrap .contact_btn:before {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 100%;
  right: 12px;
  top: 0;
  background: url(../img/btn_icon.png) 50% 48% no-repeat;
  z-index: 2;
  background-size: contain;
  filter: brightness(0) invert(1);
}
#gfooter .copy_wrap .contact_btn:after {
  content: "";
  display: block;
  position: absolute;
  inset: -2px;
  z-index: 1;
  background: #fff;
  transform-origin: 100% 0;
  transition: transform 0.2s ease-out;
  transform: scaleX(0);
}
#gfooter .copy_wrap .contact_btn p {
  position: relative;
  z-index: 2;
}
#gfooter .copy_wrap .contact_btn:hover {
  color: #9d8a5b;
}
#gfooter .copy_wrap .contact_btn:hover:before {
  filter: none;
}
#gfooter .copy_wrap .contact_btn:hover:after {
  transform-origin: 0 0;
  transform: scaleX(1);
}
#gfooter .obj .bubble_01 {
  width: 60px;
  top: -150px;
  left: 30px;
}
#gfooter .obj .bubble_02 {
  width: 100px;
  top: 0px;
  left: 110px;
}
#gfooter .obj .bubble_03 {
  width: 160px;
  top: 100px;
  left: -50px;
  filter: drop-shadow(50px 50px 20px rgba(12, 38, 80, 0.15));
}
#gfooter .obj .bubble_04 {
  width: 80px;
  top: 270px;
  left: 70px;
  opacity: 0.8;
}
#gfooter .obj .bubble_05 {
  width: 70px;
  top: 50px;
  right: 10px;
}
#gfooter .obj .bubble_06 {
  width: 100px;
  top: 220px;
  right: 100px;
}
#gfooter .obj .bubble_07 {
  width: 180px;
  top: 350px;
  right: -60px;
}
@media (max-width: 800px) {
  #gfooter {
    font-size: 90%;
  }
  #gfooter:after {
    background-size: 130% auto;
  }
  #gfooter .scrolltext {
    height: 80px;
    background-size: 900px auto;
  }
  @keyframes textanm {
    0% {
      background-position: 0 70%;
    }
    100% {
      background-position: -900px 70%;
    }
  }
  #gfooter .foot_wrapper {
    padding: 60px 40px;
    text-align: center;
    flex-direction: column;
    gap: 0;
  }
  #gfooter .foot_wrapper .logo_wrap, #gfooter .foot_wrapper .link_wrap {
    display: contents;
  }
  #gfooter .foot_wrapper .logo {
    margin-bottom: 30px;
  }
  #gfooter .foot_wrapper .logo img {
    width: 150px;
  }
  #gfooter .foot_wrapper .foot_nav {
    display: block;
    width: 100%;
    margin-bottom: 30px;
  }
  #gfooter .foot_wrapper .foot_nav ul {
    width: 100%;
  }
  #gfooter .foot_wrapper .foot_nav ul li {
    border-top: 1px dotted rgba(157, 138, 91, 0.7);
  }
  #gfooter .foot_wrapper .foot_nav ul li:nth-last-of-type(1) {
    border-bottom: 1px dotted rgba(157, 138, 91, 0.7);
  }
  #gfooter .foot_wrapper .foot_nav ul li a, #gfooter .foot_wrapper .foot_nav ul li p {
    display: block;
    padding: 5px 0;
    font-family: house-of-cards, "birch-std", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Hiragino Mincho ProN", "Hiragino Mincho", "Noto Serif JP", "游明朝", "游明朝体", "Yu Mincho", "HGS明朝E", "HG明朝E", "HG明朝", "リュウミン", "メイリオ", "Meiryo", serif;
    font-size: 120%;
    letter-spacing: 0.5px;
  }
  #gfooter .foot_wrapper .foot_nav ul li a {
    color: #9d8a5b;
  }
  #gfooter .foot_wrapper .foot_nav ul li p {
    opacity: 0.5;
  }
  #gfooter .foot_wrapper .sns {
    margin-bottom: 30px;
  }
  #gfooter .foot_wrapper .link {
    gap: 10px;
    margin-bottom: 40px;
  }
  #gfooter .foot_wrapper .link .foot_btn {
    width: 100%;
  }
  #gfooter .foot_wrapper .link .foot_btn:before {
    width: 7px;
    right: 12px;
  }
  #gfooter .foot_wrapper .link .foot_btn p {
    padding: 8px 0px;
    font-size: 90%;
  }
  #gfooter .foot_wrapper .copy_wrap {
    flex-direction: column;
  }
  #gfooter .foot_wrapper .copy_wrap .copy {
    order: 2;
    font-size: 9px;
    line-height: 1.3;
    flex-direction: column;
    align-items: center;
  }
  #gfooter .foot_wrapper .copy_wrap .copy p span.maruc {
    font-size: 140%;
    transform: translateY(1px);
  }
  #gfooter .foot_wrapper .copy_wrap .contact_btn {
    order: 1;
  }
  #gfooter .obj .bubble_01 {
    width: 60px;
    top: -90px;
    left: 0px;
  }
  #gfooter .obj .bubble_02 {
    width: 100px;
    top: -20px;
    left: 40px;
  }
  #gfooter .obj .bubble_03 {
    width: 180px;
    top: -10px;
    left: -80px;
  }
  #gfooter .obj .bubble_04 {
    width: 80px;
    top: 140px;
    left: 10px;
  }
  #gfooter .obj .bubble_05 {
    width: 110px;
    top: auto;
    bottom: 260px;
    right: -60px;
  }
  #gfooter .obj .bubble_06 {
    width: 80px;
    top: auto;
    bottom: 100px;
    right: 25px;
  }
  #gfooter .obj .bubble_07 {
    width: 150px;
    top: auto;
    bottom: -40px;
    right: -50px;
  }
}

/* page_header	========================================================== */
#page_header {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 50px 30px 0;
}
@media (max-width: 800px) {
  #page_header {
    padding: 20px 0 0;
  }
}

#pnav {
  position: relative;
  top: 0px;
  padding: 0px 0 8px;
  margin: 0px auto 0;
  text-align: center;
  transition: top 0s ease-out, all 0.1s ease-out;
  -webkit-mask-image: linear-gradient(to left, transparent 5%, #000 15%, #000 85%, transparent 95%);
          mask-image: linear-gradient(to left, transparent 5%, #000 15%, #000 85%, transparent 95%);
}
#pnav:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background: #9d8a5b;
  transform: scaleX(0);
  opacity: 0;
  transition: all 0.3s ease-out;
}
#pnav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px 8px;
  flex-wrap: wrap;
  padding: 0 150px;
  width: 100%;
}
#pnav li {
  position: relative;
  border: 1px solid #9d8a5b;
  min-width: 160px;
  border-radius: 30px;
  overflow: hidden;
}
#pnav li a {
  display: block;
  padding: 2px 20px;
  position: relative;
  z-index: 1;
  color: #9d8a5b;
  font-size: 80%;
  letter-spacing: 2px;
  text-indent: 2px;
}
#pnav li a:after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #9d8a5b;
  transform-origin: 100% 0;
  transform: scaleX(0);
  transition: transform 0.15s ease-out;
}
#pnav li a:hover {
  text-shadow: none;
  color: #fff;
}
#pnav li a:hover:after {
  transform-origin: 0 0;
  transform: scaleX(1);
}
@media (min-width: 800px) {
  #pnav.on {
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.6);
    transition: all 0.5s ease-out, top 0s ease-out;
  }
  #pnav.on:after {
    transform: scaleX(1);
    opacity: 1;
    transition: all 0.8s ease-out;
  }
}
@media (max-width: 800px) {
  #pnav {
    position: relative;
    -webkit-mask-image: none;
            mask-image: none;
  }
  #pnav ul {
    padding: 0;
  }
  #pnav ul li {
    width: 70%;
    min-width: 100px;
  }
  #pnav ul li a {
    padding: 4px 10px;
  }
}

#fix_pnav {
  display: block;
  position: sticky;
  z-index: 3;
  width: 100%;
  top: 0;
  left: 0;
  padding: 55px 150px 7px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: all 0.8s ease-out;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
#fix_pnav.on {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
#fix_pnav:before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.9);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 200px, #000 calc(100% - 200px), transparent);
          mask-image: linear-gradient(to right, transparent, #000 200px, #000 calc(100% - 200px), transparent);
}
#fix_pnav:after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: -1;
  border-bottom: 1px solid rgba(175, 157, 102, 0.7);
  pointer-events: none;
}
#fix_pnav ul {
  position: relative;
  display: flex;
  text-align: center;
  flex-wrap: wrap;
  font-size: 90%;
  line-height: 1.3;
}
#fix_pnav ul li {
  position: relative;
  border: 1px solid #9d8a5b;
  min-width: 160px;
  border-radius: 30px;
  overflow: hidden;
}
#fix_pnav ul li a {
  display: block;
  padding: 2px 20px;
  position: relative;
  z-index: 1;
  color: #9d8a5b;
  font-size: 80%;
  letter-spacing: 1px;
  text-indent: 1px;
}
#fix_pnav ul li a:after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #9d8a5b;
  transform-origin: 100% 0;
  transform: scaleX(0);
  transition: transform 0.15s ease-out;
}
@media (min-width: 800px) {
  #fix_pnav ul li a:hover {
    text-shadow: none;
    color: #fff;
  }
  #fix_pnav ul li a:hover:after {
    transform-origin: 0 0;
    transform: scaleX(1);
  }
}
@media (min-width: 800px) {
  #fix_pnav ul {
    justify-content: center;
    gap: 5px;
  }
}
@media (max-width: 800px) {
  #fix_pnav {
    font-size: 95%;
    padding: 21px 10px 2px;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 40px, #000 calc(100% - 40px), transparent);
            mask-image: linear-gradient(to right, transparent, #000 40px, #000 calc(100% - 40px), transparent);
  }
  #fix_pnav ul {
    gap: 3px;
    flex-wrap: nowrap;
    font-weight: 400;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    padding: 5px 40px;
    width: auto;
  }
  #fix_pnav ul li {
    min-width: 80px;
  }
  #fix_pnav ul li a {
    padding: 2px 7px 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

/* content	========================================================== */
#container {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 1240px;
  position: fixed;
  inset: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 800px) {
  #container {
    min-width: 0;
    padding-top: 0;
  }
}

#white {
  position: fixed;
  z-index: 10;
  width: 100%;
  height: 25px;
  top: 0;
  left: 0;
  background: #fff;
}
@media (max-width: 800px) {
  #white {
    height: 10px;
  }
}

#wrapper {
  width: 100%;
  position: relative;
  display: flex;
  align-items: start;
  z-index: 2;
  padding: 25px 25px 0;
  gap: 25px;
}
@media (max-width: 800px) {
  #wrapper {
    display: block;
    padding: 10px;
  }
}

#content {
  position: relative;
  z-index: 5;
  flex: 1;
  margin-bottom: 25px;
  padding: 10px 20px 100px;
  box-shadow: inset 0 0 250px rgba(26, 125, 224, 0.15);
  clip-path: polygon(-1px -1px, calc(100% + 1px) -1px, calc(100% + 1px) calc(100% + 1px), -1px calc(100% + 1px));
}
#content .bg {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background: url(../img/content_bg.webp) 50% 0 repeat-y;
  background-size: 100% auto;
  transition: all 0.05s ease-out;
}
#content:before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.6) 25%, rgba(255, 255, 255, 0.6) 75%, rgba(255, 255, 255, 0));
}
#content .content_frame {
  position: absolute;
  inset: -1px -1px -1px -1px;
  z-index: 10;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  outline: 1px solid #fff;
}
#content .content_frame .frame_m {
  display: block;
  flex: 1;
  width: 100%;
  background: url(../img/content_frame_l.png) 0 0 repeat-y, url(../img/content_frame_r.png) 100% 0 repeat-y;
}
#content .content_frame .frame_t, #content .content_frame .frame_b {
  display: block;
  width: 100%;
  height: 153px;
}
#content .content_frame .frame_t {
  position: sticky;
  top: 25px;
  z-index: 1;
  background: url(../img/content_frame_tl.png) 0 0 no-repeat, url(../img/content_frame_tr.png) 100% 0 no-repeat, url(../img/content_frame_t.png) 0 0 repeat-x;
}
#content .content_frame .frame_b {
  position: sticky;
  top: 25px;
  z-index: 1;
  background: url(../img/content_frame_bl.png) 0 0 no-repeat, url(../img/content_frame_br.png) 100% 0 no-repeat, url(../img/content_frame_b.png) 0 0 repeat-x;
}
@media (max-width: 800px) {
  #content {
    margin-bottom: 5px;
    background-size: 160% auto;
  }
  #content .content_frame .frame_m {
    background-size: 70px;
  }
  #content .content_frame .frame_t, #content .content_frame .frame_b {
    height: 70px;
    background-size: 70px;
    background-size: auto 70px;
  }
  #content .content_frame .frame_t {
    top: 10px;
  }
}

/* section	========================================================== */
section.pg {
  position: relative;
  padding: 100px 80px;
  z-index: 1;
}
section.pg .pg_wrapper {
  position: relative;
}
section.pg .pg_wrapper:not(.notprr) {
  opacity: 0;
  transform: translateY(30px);
}
section.pg .pg_wrapper:not(.notprr).show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease-out 0.3s;
}
section.pg .prr:not(.notdefo) {
  opacity: 0;
  transform: translateY(30px);
}
section.pg .prr:not(.notdefo).show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease-out 0.3s;
}
@media (max-width: 800px) {
  section.pg .prr:not(.notdefo) {
    transform: translateY(15px);
  }
}
section.pg .pg_box {
  position: relative;
  top: 0;
  margin-bottom: 100px;
}
section.pg .pg_box:nth-last-of-type(1) {
  margin-bottom: 0;
}
@media (max-width: 800px) {
  section.pg {
    padding: 60px 10px 40px;
  }
  section.pg .pg_wrapper {
    width: 100%;
  }
  section.pg .pg_box {
    margin-bottom: 40px;
  }
}

.h01 {
  font-family: snell-roundhand-lt-std, "birch-std", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Hiragino Mincho ProN", "Hiragino Mincho", "Noto Serif JP", "游明朝", "游明朝体", "Yu Mincho", "HGS明朝E", "HG明朝E", "HG明朝", "リュウミン", "メイリオ", "Meiryo", serif;
  color: #9d8a5b;
  font-size: 120px;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 50px;
}
.h01 p {
  position: relative;
}
.h01 p:before, .h01 p:after {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
}
.h01 p:before {
  width: 44px;
  height: 32px;
  top: -10px;
  left: -35px;
  background-image: url(../img/h01obj_t.png);
}
.h01 p:after {
  width: 20px;
  height: 20px;
  bottom: 0;
  right: -40px;
  background-image: url(../img/obj_01.png);
}
.h01 .stxt {
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-family: house-of-cards, "birch-std", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Hiragino Mincho ProN", "Hiragino Mincho", "Noto Serif JP", "游明朝", "游明朝体", "Yu Mincho", "HGS明朝E", "HG明朝E", "HG明朝", "リュウミン", "メイリオ", "Meiryo", serif;
  font-size: 12px;
  opacity: 0.8;
  letter-spacing: 1px;
  line-height: 1;
  font-weight: 400;
}
.h01 .stxt:before, .h01 .stxt:after {
  position: relative;
  content: "";
  display: inline-block;
  width: 50px;
  height: 9px;
  transform: translateY(1px);
  background: url(../img/h1obj_b.png) 50% 50% no-repeat;
  background-size: contain;
}
@media (max-width: 800px) {
  .h01 {
    font-size: 55px;
    margin-bottom: 30px;
  }
  .h01 p:before {
    width: 30px;
    height: 20px;
    top: -5px;
    left: -20px;
  }
  .h01 p:after {
    width: 13px;
    height: 13px;
    right: -20px;
  }
  .h01 .stxt {
    font-size: 7px;
    letter-spacing: 0.2px;
  }
  .h01 .stxt:before, .h01 .stxt:after {
    width: 22px;
    height: 6px;
    margin: 0 3px;
  }
}

.h02, .h02--ls0, .h02--en {
  padding: 40px 0 40px;
  color: #9d8a5b;
  text-align: center;
  margin-bottom: 40px;
  font-size: 42px;
  line-height: 1.5;
  letter-spacing: 15px;
  text-indent: 10px;
  background: url(../img/ribbon_02.png) 50% 0 no-repeat, url(../img/h1obj_b.png) 50% 100% no-repeat;
  background-size: 150px auto, 30px auto;
  font-family: "Shippori Mincho", "游明朝", "游明朝体", "fot-tsukumin-pr6n", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Hiragino Mincho ProN", "Hiragino Mincho", "Noto Serif JP", "HGS明朝E", "HG明朝E", "HG明朝", "リュウミン", "メイリオ", "Meiryo", serif;
  font-weight: 600;
  opacity: 0;
  transition: all 0.8s ease-out;
}
.h02:after, .h02--ls0:after, .h02--en:after {
  position: relative;
  content: "ALL STAR STAGE -Happy Celebration-";
  display: block;
  font-weight: 300;
  font-family: house-of-cards, "birch-std", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Hiragino Mincho ProN", "Hiragino Mincho", "Noto Serif JP", "游明朝", "游明朝体", "Yu Mincho", "HGS明朝E", "HG明朝E", "HG明朝", "リュウミン", "メイリオ", "Meiryo", serif;
  font-size: 11px;
  opacity: 0.8;
  letter-spacing: 1px;
  text-indent: 1px;
  line-height: 1;
  transform: translateY(10px);
  width: -moz-fit-content;
  width: fit-content;
  margin: 3px auto 0;
  opacity: 0;
  transition: all 0.5s ease-out 0.15s;
}
.h02.show, .show.h02--ls0, .show.h02--en {
  letter-spacing: 6px;
  text-indent: 6px;
  opacity: 1;
}
.h02.show:after, .show.h02--ls0:after, .show.h02--en:after {
  transform: translateY(0px);
  opacity: 1;
}
@media (max-width: 800px) {
  .h02, .h02--ls0, .h02--en {
    font-size: 30px;
    background-size: 100px auto, 20px auto;
    padding: 30px 0;
    margin-bottom: 30px;
  }
  .h02:after, .h02--ls0:after, .h02--en:after {
    font-size: 7px;
    letter-spacing: 0.2px;
    font-weight: 300;
  }
}
.h02--en {
  font-family: house-of-cards, "birch-std", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Hiragino Mincho ProN", "Hiragino Mincho", "Noto Serif JP", "游明朝", "游明朝体", "Yu Mincho", "HGS明朝E", "HG明朝E", "HG明朝", "リュウミン", "メイリオ", "Meiryo", serif;
  font-weight: 400;
}
@media (max-width: 800px) {
  .h02--en {
    font-size: 40px;
    line-height: 1;
  }
}
.h02--ls0 {
  letter-spacing: 0px !important;
  text-indent: 0px !important;
}

.h03, .h03--s {
  position: relative;
  font-size: 140%;
  line-height: 1.3;
  font-weight: 600;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 30px;
  color: #9d8a5b;
  letter-spacing: 2px;
  text-indent: 2px;
  text-align: center;
}
.h03:before, .h03--s:before, .h03:after, .h03--s:after {
  content: "";
  display: block;
  position: absolute;
  width: 18px;
  height: 100%;
  top: 0;
  background: url(../img/obj_01.png) 50% 48% no-repeat;
  background-size: contain;
}
.h03:before, .h03--s:before {
  left: -30px;
}
.h03:after, .h03--s:after {
  right: -30px;
  transform: scaleX(-1);
}
@media (max-width: 800px) {
  .h03, .h03--s {
    font-size: 130%;
    margin-bottom: 15px;
    letter-spacing: 0px;
    text-indent: 0px;
  }
  .h03:before, .h03--s:before, .h03:after, .h03--s:after {
    width: 14px;
  }
  .h03:before, .h03--s:before {
    left: -25px;
  }
  .h03:after, .h03--s:after {
    right: -25px;
  }
}
.h03--s {
  font-size: 120%;
  letter-spacing: 0px;
  text-indent: 0px;
}

.h04, .h04--num {
  padding-left: 40px;
  background: url(../img/obj_02.png) 0 50% no-repeat;
  background-size: 30px auto;
  color: #9d8a5b;
  font-size: 110%;
  line-height: 1.3;
  margin-bottom: 15px;
}
@media (max-width: 800px) {
  .h04, .h04--num {
    background-size: 20px auto;
    padding-left: 25px;
  }
}
.h04--num {
  background: none;
  padding-left: 42px;
  position: relative;
}
@media (max-width: 800px) {
  .h04--num {
    padding-left: 42px;
  }
}

.h02 .num, .h02--en .num, .h02--ls0 .num, .h03 .num, .h03--s .num, .h04 .num, .h04--num .num {
  position: absolute;
  display: block;
  width: 28px;
  height: 28px;
  text-align: center;
  font-size: 80%;
  line-height: 28px;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
}
.h02 .num:after, .h02--en .num:after, .h02--ls0 .num:after, .h03 .num:after, .h03--s .num:after, .h04 .num:after, .h04--num .num:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 1px solid #9d8a5b;
  transform: rotate(45deg);
}

body:not(#index) section.pg {
  width: min(100%, 1200px);
  margin: 0 auto;
}
body:not(#index) section.pg:nth-of-type(1) {
  margin-top: 70px;
}
body:not(#index) .h01 {
  padding-top: 100px;
  background: url(../img/ttl_obj.png) 50% 0 no-repeat;
  background-size: 85px auto;
}
@media (max-width: 800px) {
  body:not(#index) section.pg:nth-of-type(1) {
    margin-top: 35px;
  }
  body:not(#index) .h01 {
    font-size: 60px;
    padding-top: 55px;
    background-size: 50px auto;
    line-height: 1;
  }
  body:not(#index) .h01 .and {
    font-size: 70%;
    line-height: 1;
    display: block;
    transform: translateY(-5px);
  }
}

/* ================================================================ *
 * #index
 * ================================================================ */
@media (min-width: 800px) {
  #index #spmenu {
    display: flex;
    opacity: 0;
    pointer-events: none;
    width: 80px;
    height: 80px;
    top: 0;
    right: 0;
    padding: 0 0 2px 2px;
    transition: all 0.3s ease-out;
  }
  #index #spmenu span {
    width: 65%;
    height: 3px;
  }
  #index #spmenu span:before, #index #spmenu span:after {
    height: 3px;
  }
  #index #spmenu span:before {
    transform: translateY(-15px);
  }
  #index #spmenu span:after {
    transform: translateY(15px);
  }
  #index #spmenu.show {
    opacity: 1;
    pointer-events: auto;
  }
  #index #spmenu.on span {
    width: 75%;
  }
  #index #spmenu.on span:before {
    transform: rotate(35deg);
  }
  #index #spmenu.on span:after {
    transform: rotate(-35deg);
  }
}
#index #index_gmenu {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: house-of-cards, "birch-std", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Hiragino Mincho ProN", "Hiragino Mincho", "Noto Serif JP", "游明朝", "游明朝体", "Yu Mincho", "HGS明朝E", "HG明朝E", "HG明朝", "リュウミン", "メイリオ", "Meiryo", serif;
  color: #9d8a5b;
  font-weight: 300;
  pointer-events: none;
  transform: translateY(-100%);
  transition: all 0.2s ease-out;
}
#index #index_gmenu.on {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0%);
}
#index #index_gmenu a {
  color: #9d8a5b;
}
#index #index_gmenu nav {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 5px;
}
#index #index_gmenu nav .sitelogo {
  text-align: center;
  font-weight: 300;
}
#index #index_gmenu nav .sitelogo .logo {
  margin-bottom: 30px;
  width: 370px;
}
#index #index_gmenu nav .sitelogo .txt .messe {
  font-size: 280%;
  line-height: 1;
  margin-bottom: 3px;
}
#index #index_gmenu nav .sitelogo .txt .day {
  line-height: 1;
  white-space: nowrap;
  font-size: 180%;
}
#index #index_gmenu nav .sitelogo .txt .day .kakko {
  font-size: 70%;
  display: inline-block;
  transform: translateY(-1px);
}
#index #index_gmenu nav .sitelogo .txt .day .week {
  font-size: 70%;
  display: inline-block;
}
#index #index_gmenu nav .border {
  margin: 0;
}
#index #index_gmenu nav .navwrap {
  position: relative;
  width: min(700px, 50vw);
}
#index #index_gmenu nav .menu {
  position: relative;
  min-height: 30vh;
  font-size: 230%;
  line-height: 1.3;
  padding: 0 30px;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
#index #index_gmenu nav .menu li {
  border-bottom: 1px dotted #9d8a5b;
  padding: 2px 0;
}
#index #index_gmenu nav .menu li:nth-last-of-type(1) {
  border-bottom: none;
}
#index #index_gmenu nav .menu li a {
  position: relative;
  letter-spacing: 1px;
  display: block;
  padding: 5px 50px 5px 90px;
}
#index #index_gmenu nav .menu li a:before {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  background: url(../img/obj_01.png) 50% 50% no-repeat;
  background-size: contain;
  top: calc(50% - 10px);
  left: 50px;
}
#index #index_gmenu nav .menu li a:after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #af9d66;
  transform-origin: 100% 0;
  transform: scaleX(0);
  transition: transform 0.3s ease-out;
}
#index #index_gmenu nav .menu li a:hover {
  color: #fff;
}
#index #index_gmenu nav .menu li a:hover:before {
  filter: brightness(0) invert(1);
}
#index #index_gmenu nav .menu li a:hover:after {
  transform-origin: 0 0;
  transform: scaleX(1);
}
#index #index_gmenu nav .menu_snsbtn {
  display: none;
}
@media (max-width: 800px) {
  #index #index_gmenu {
    display: none;
  }
}
#index #content {
  padding: 0;
  clip-path: none;
}
#index section.pg {
  padding: 150px 60px;
}
#index .h01 {
  opacity: 0;
  transition: all 0.8s ease-out;
}
#index .h01 p {
  opacity: 0;
  transition: all 0.8s ease-out;
  letter-spacing: 10px;
}
#index .h01 p:before, #index .h01 p:after {
  opacity: 0;
  transition: all 0.8s ease-out;
}
#index .h01 p:before {
  transform: translateY(-20px);
}
#index .h01 p:after {
  transform: translateY(20px);
}
#index .h01.show {
  opacity: 1;
}
#index .h01.show p {
  opacity: 1;
  transform: translateY(0px);
  letter-spacing: 0;
}
#index .h01.show p:before, #index .h01.show p:after {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 800px) {
  #index section.pg {
    padding: 70px 10px;
  }
  #index .h01 {
    letter-spacing: 3px;
  }
}
#index #top {
  flex: 1;
  margin-top: 10px;
  position: relative;
  pointer-events: none;
  z-index: 1;
  background: url(../img/topimage_bg.webp) 50% 50% no-repeat #d9f1fe;
}
#index #top .image {
  width: 100%;
  max-width: 1652px;
  aspect-ratio: 1500/2081;
  margin: 0 auto;
  background: url(../img/topimage.webp) 50% 50% no-repeat;
  background-size: contain;
}
#index #top:before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 2;
}
@media (max-width: 800px) {
  #index #top {
    margin-top: 40px;
    background: none;
  }
  #index #top .obj .bubble_01 {
    width: 60px;
    top: -60px;
    right: 70px;
  }
  #index #top .obj .bubble_02 {
    width: 150px;
    top: -65px;
    right: -50px;
    filter: drop-shadow(50px 50px 20px rgba(12, 38, 80, 0.15));
  }
  #index #top .obj .bubble_03 {
    width: 90px;
    top: 70px;
    right: -45px;
  }
  #index #top .obj .bubble_04 {
    width: 50px;
    top: 50px;
    right: 20px;
  }
  #index #top .obj .bubble_05 {
    width: 90px;
    bottom: 60px;
    left: -40px;
  }
  #index #top .obj .bubble_06 {
    width: 160px;
    bottom: -50px;
    left: -10px;
    filter: drop-shadow(50px 50px 20px rgba(12, 38, 80, 0.15));
  }
  #index #top .obj .bubble_07 {
    width: 80px;
    bottom: -50px;
    left: -30px;
  }
  #index #top .obj .bubble_08 {
    width: 90px;
    bottom: -140px;
    left: 50px;
  }
}
#index #news {
  border-top: 1px solid #9d8a5b;
  position: relative;
  padding-block: 200px 140px;
  padding-left: 100px;
}
#index #news .pg_wrapper {
  display: flex;
  gap: 100px;
  width: min(100%, 1300px);
  margin: 0 auto;
}
#index #news .pg_wrapper .h01 {
  padding-top: 30px;
}
#index #news .pg_wrapper .ulwrap {
  flex: 1;
}
#index #news .btn_wrap {
  margin-top: 15px;
  padding: 0;
  display: flex;
  justify-content: flex-end;
}
#index #news .obj .bubble_01 {
  width: 60px;
  top: 20px;
  left: 70px;
}
#index #news .obj .bubble_02 {
  width: 150px;
  top: 100px;
  left: -60px;
  filter: drop-shadow(50px 50px 20px rgba(12, 38, 80, 0.15));
}
#index #news .obj .bubble_03 {
  width: 80px;
  top: 450px;
  left: 150px;
}
@media (max-width: 800px) {
  #index #news {
    padding: 30px 20px 50px;
    border-top: none;
  }
  #index #news .pg_wrapper {
    flex-direction: column;
    gap: 0px;
  }
  #index #news .obj {
    display: none;
  }
}
#index #introduction {
  position: relative;
  padding: 240px 50px 250px;
  z-index: 1;
}
#index #introduction:after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url(../img/content_bg.webp) 50% 0 repeat-y;
  background-size: cover;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 25%, #000 82%, transparent);
          mask-image: linear-gradient(to bottom, transparent, #000 25%, #000 82%, transparent);
  opacity: 0;
  transition: all 1.2s ease-out 0.5s;
}
@media (min-width: 800px) {
  #index #introduction:after {
    background-attachment: fixed;
  }
}
#index #introduction.show:after {
  opacity: 1;
}
#index #introduction:before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(white, rgba(255, 255, 255, 0));
  opacity: 0.7;
}
#index #introduction .h1wrap {
  position: relative;
  z-index: 3;
  padding-top: 60px;
  background: url(../img/ribbon_02.png) 50% 0 no-repeat;
  background-size: 200px auto;
  opacity: 0;
  transition: all 0.8s ease-out;
}
#index #introduction .h1wrap.show {
  opacity: 1;
}
#index #introduction .pg_wrapper {
  position: relative;
  z-index: 3;
  text-shadow: 0 0 10px #fff;
}
#index #introduction .pg_wrapper p {
  font-size: 108%;
  line-height: 2;
  text-align: center;
  letter-spacing: 3px;
}
#index #introduction .pg_wrapper p:not(:nth-last-of-type(1)) {
  margin-bottom: 30px;
}
#index #introduction .obj {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
#index #introduction .obj span:not(.bubble) {
  display: block;
  position: absolute;
  aspect-ratio: 1/1;
  background-repeat: no-repeat;
  background-size: contain;
  filter: drop-shadow(0px 0px 10px #fff);
  opacity: 0;
  transform: rotateY(1000deg);
  transition: all 1.6s ease-out;
}
#index #introduction .obj span:not(.bubble).l_01 {
  background-image: url(../img/obj_02.png);
  width: 30px;
  left: 15%;
  top: 23%;
}
#index #introduction .obj span:not(.bubble).l_02 {
  background-image: url(../img/obj_03.png);
  width: 18px;
  left: 2%;
  top: 35%;
}
#index #introduction .obj span:not(.bubble).l_03 {
  background-image: url(../img/obj_01.png);
  width: 55px;
  left: 13%;
  top: 46%;
}
#index #introduction .obj span:not(.bubble).l_04 {
  background-image: url(../img/obj_03.png);
  width: 12px;
  left: 11%;
  top: 49%;
}
#index #introduction .obj span:not(.bubble).l_05 {
  background-image: url(../img/obj_02.png);
  width: 40px;
  left: 4%;
  top: 65%;
}
#index #introduction .obj span:not(.bubble).l_06 {
  background-image: url(../img/obj_01.png);
  width: 21px;
  left: 18%;
  top: 75%;
}
#index #introduction .obj span:not(.bubble).l_07 {
  background-image: url(../img/obj_03.png);
  width: 18px;
  left: 14%;
  top: 80%;
}
#index #introduction .obj span:not(.bubble).r_01 {
  background-image: url(../img/obj_01.png);
  width: 21px;
  right: 16%;
  top: 23%;
}
#index #introduction .obj span:not(.bubble).r_02 {
  background-image: url(../img/obj_02.png);
  width: 40px;
  right: 2%;
  top: 35%;
}
#index #introduction .obj span:not(.bubble).r_03 {
  background-image: url(../img/obj_03.png);
  width: 18px;
  right: 13%;
  top: 46%;
}
#index #introduction .obj span:not(.bubble).r_04 {
  background-image: url(../img/obj_03.png);
  width: 12px;
  right: 6%;
  top: 58%;
}
#index #introduction .obj span:not(.bubble).r_05 {
  background-image: url(../img/obj_01.png);
  width: 55px;
  right: 6.5%;
  top: 61%;
}
#index #introduction .obj span:not(.bubble).r_06 {
  background-image: url(../img/obj_03.png);
  width: 18px;
  right: 4%;
  top: 75%;
}
#index #introduction .obj span:not(.bubble).r_07 {
  background-image: url(../img/obj_02.png);
  width: 40px;
  right: 15%;
  top: 80%;
}
#index #introduction .obj span:not(.bubble).show {
  opacity: 1;
  transform: rotateY(0);
}
#index #introduction .obj .bubble_01 {
  width: 80px;
  top: -120px;
  right: 10px;
}
#index #introduction .obj .bubble_02 {
  width: 180px;
  top: 20px;
  right: 100px;
  filter: drop-shadow(50px 50px 20px rgba(12, 38, 80, 0.15));
}
#index #introduction .obj .bubble_03 {
  width: 60px;
  top: 190px;
  right: 40px;
}
@media (max-width: 800px) {
  #index #introduction {
    padding: 150px 10px 150px;
  }
  #index #introduction:after {
    background-size: 130% auto;
  }
  #index #introduction .h1wrap {
    background-size: 150px auto;
    padding-top: 50px;
  }
  #index #introduction .pg_wrapper p {
    font-size: 100%;
    letter-spacing: 0;
    line-height: 1.8;
  }
  #index #introduction .pg_wrapper p:not(:nth-last-of-type(1)) {
    margin-bottom: 20px;
  }
  #index #introduction .obj span:not(.bubble) {
    transform: scale(0.5) rotateY(1000deg);
  }
  #index #introduction .obj span:not(.bubble).l_01 {
    width: 30px;
    left: 3%;
    top: 18%;
  }
  #index #introduction .obj span:not(.bubble).l_02 {
    width: 18px;
    left: 15%;
    top: 15%;
  }
  #index #introduction .obj span:not(.bubble).l_03 {
    width: 40px;
    left: 0%;
    top: 40%;
  }
  #index #introduction .obj span:not(.bubble).l_04 {
    width: 12px;
    left: 3%;
    top: 68%;
  }
  #index #introduction .obj span:not(.bubble).l_05 {
    width: 40px;
    left: 6%;
    top: 70%;
  }
  #index #introduction .obj span:not(.bubble).l_06 {
    width: 21px;
    left: 3%;
    top: 80%;
  }
  #index #introduction .obj span:not(.bubble).l_07 {
    width: 18px;
    left: 14%;
    top: 85%;
  }
  #index #introduction .obj span:not(.bubble).r_01 {
    width: 21px;
    right: 15%;
    top: 13%;
  }
  #index #introduction .obj span:not(.bubble).r_02 {
    width: 40px;
    right: 1%;
    top: 21%;
  }
  #index #introduction .obj span:not(.bubble).r_03 {
    width: 25px;
    right: 4%;
    top: 40%;
  }
  #index #introduction .obj span:not(.bubble).r_04 {
    width: 12px;
    right: 2%;
    top: 45%;
  }
  #index #introduction .obj span:not(.bubble).r_05 {
    width: 45px;
    right: 4%;
    top: 65%;
  }
  #index #introduction .obj span:not(.bubble).r_06 {
    width: 18px;
    right: 2%;
    top: 77%;
  }
  #index #introduction .obj span:not(.bubble).r_07 {
    width: 30px;
    right: 13%;
    top: 85%;
  }
  #index #introduction .obj span:not(.bubble).show {
    transform: scale(0.5) rotateY(0);
  }
  #index #introduction .obj .bubble_01 {
    width: 60px;
    top: -40px;
    right: -10px;
  }
  #index #introduction .obj .bubble_02 {
    width: 160px;
    top: -20px;
    right: 0px;
  }
  #index #introduction .obj .bubble_03 {
    width: 80px;
    top: 70px;
    right: -30px;
  }
}
#index #movie {
  position: relative;
  padding: 240px 0px 200px;
  z-index: 1;
  border-bottom: 1px solid #9d8a5b;
}
#index #movie:after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 104%;
  aspect-ratio: 1/1;
  top: 70px;
  left: -2%;
  border: 1px solid #9d8a5b;
  border-bottom: none;
  border-radius: 50% 50% 0 0;
  opacity: 0;
  transition: all 1s ease-out;
}
#index #movie.show:after {
  opacity: 0.3;
}
#index #movie .pg_wrapper {
  position: relative;
  max-width: none;
}
#index #movie .slider_wrap {
  position: relative;
  width: 100%;
  top: -15px;
  left: 0;
  height: 100%;
  overflow: hidden;
  color: #9d8a5b;
  transition: all 0.8s ease-out, height 0.2s ease-out !important;
}
#index #movie .slider_wrap .pp_movie_btn {
  width: 960px;
  position: absolute;
  top: 0;
  cursor: pointer;
  aspect-ratio: 16/9;
  padding: 30px 60px 60px;
  overflow: visible;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
#index #movie .slider_wrap .pp_movie_btn .thumb {
  position: relative;
  border: 1px solid #9d8a5b;
  box-shadow: 0 50px 80px -20px rgba(12, 38, 80, 0.3);
  background: rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-out;
}
#index #movie .slider_wrap .pp_movie_btn .thumb img {
  width: 100%;
}
#index #movie .slider_wrap .pp_movie_btn .thumb:before, #index #movie .slider_wrap .pp_movie_btn .thumb:after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 2;
}
#index #movie .slider_wrap .pp_movie_btn .thumb:before {
  background: #00a8ff;
  mix-blend-mode: overlay;
  opacity: 0.5;
}
#index #movie .slider_wrap .pp_movie_btn .thumb:after {
  background: #c7ecff;
  mix-blend-mode: lighten;
  opacity: 0.3;
}
#index #movie .slider_wrap .pp_movie_btn .thumb .frame {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: rgba(0, 9, 37, 0.4);
}
#index #movie .slider_wrap .pp_movie_btn .thumb .frame:after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 3;
  background: url(../img/movie_playbtn.png) 50% 50% no-repeat;
  background-size: 200px auto;
  opacity: 0;
  transition: all 0.5s ease-out;
}
#index #movie .slider_wrap .pp_movie_btn .thumb .frame:before {
  content: "";
  display: block;
  position: absolute;
  inset: -20px;
  -o-border-image: url(../img/movie_frame.png) 154 fill/100px/0px round;
     border-image: url(../img/movie_frame.png) 154 fill/100px/0px round;
}
#index #movie .slider_wrap .pp_movie_btn p {
  margin-top: 40px;
  text-align: center;
}
#index #movie .slider_wrap .pp_movie_btn.active {
  opacity: 1;
}
#index #movie .slider_wrap .pp_movie_btn.active .frame:after {
  opacity: 1;
  transform: scale(1);
}
#index #movie .slider_wrap .pp_movie_btn:hover {
  transform: translateY(-10px);
}
#index #movie .slider_wrap .pp_movie_btn:hover .thumb {
  box-shadow: 0 50px 90px -25px rgba(12, 38, 80, 0.5);
}
#index #movie .slider_wrap.noslid {
  display: flex;
  justify-content: center;
  align-items: center;
}
#index #movie .slider_wrap.noslid .pp_movie_btn {
  position: relative;
}
#index #movie .slider_maru {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: -30px;
}
#index #movie .slider_maru li {
  width: 16px;
  aspect-ratio: 1/1;
  cursor: pointer;
  opacity: 0.5;
  background: url(../img/obj_01.png) 50% 50% no-repeat;
  background-size: contain;
}
#index #movie .slider_maru li.on {
  opacity: 1;
}
#index #movie .slider_ctrl_btn {
  position: absolute;
  top: calc(50% - 70px);
  z-index: 10;
  cursor: pointer;
  width: 60px;
  aspect-ratio: 1/1;
  background: url(../img/btn_icon.png) 50% 50% no-repeat;
  background-size: contain;
}
#index #movie .slider_ctrl_btn.prev {
  left: calc(50% - 480px);
  transform: scaleX(-1) translateX(50%);
}
#index #movie .slider_ctrl_btn.next {
  right: calc(50% - 480px);
  transform: translateX(50%);
}
#index #movie .obj .bubble_01 {
  width: 80px;
  top: -270px;
  left: 60px;
}
#index #movie .obj .bubble_02 {
  width: 170px;
  top: -90px;
  left: 80px;
  filter: drop-shadow(50px 50px 20px rgba(12, 38, 80, 0.15));
}
#index #movie .obj .bubble_03 {
  width: 100px;
  top: 100px;
  left: -10px;
}
@media (max-width: 800px) {
  #index #movie {
    padding: 60px 0px 80px;
  }
  #index #movie:after {
    width: 120%;
    top: 0px;
    left: -10%;
  }
  #index #movie .slider_wrap {
    margin-bottom: 5px;
  }
  #index #movie .slider_wrap .pp_movie_btn {
    width: 350px;
    padding: 20px 25px 30px;
  }
  #index #movie .slider_wrap .pp_movie_btn p {
    margin-top: 20px;
    font-size: 80%;
    line-height: 1.3;
  }
  #index #movie .slider_wrap .pp_movie_btn .thumb {
    box-shadow: 0 20px 50px -5px rgba(12, 38, 80, 0.3);
  }
  #index #movie .slider_wrap .pp_movie_btn .thumb .frame:after {
    background-size: 100px;
  }
  #index #movie .slider_wrap .pp_movie_btn .thumb .frame:before {
    inset: -10px;
    -o-border-image: url(../img/movie_frame.png) 154 fill/40px/0px round;
       border-image: url(../img/movie_frame.png) 154 fill/40px/0px round;
  }
  #index #movie .slider_maru {
    margin-top: -35px;
  }
  #index #movie .slider_maru li {
    width: 10px;
  }
  #index #movie .slider_ctrl_btn {
    top: calc(50% - 45px);
    width: 30px;
  }
  #index #movie .slider_ctrl_btn.prev {
    left: calc(50% - 175px);
  }
  #index #movie .slider_ctrl_btn.next {
    right: calc(50% - 175px);
  }
  #index #movie .obj .bubble_01 {
    width: 60px;
    top: -130px;
    left: 0px;
  }
  #index #movie .obj .bubble_02 {
    width: 160px;
    top: -110px;
    left: -15px;
  }
  #index #movie .obj .bubble_03 {
    width: 90px;
    top: 0px;
    left: -35px;
  }
}
#index #artist {
  position: relative;
  z-index: 1;
  padding: 180px 60px 260px;
  overflow: hidden;
}
#index #artist:after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 104%;
  aspect-ratio: 1/1;
  top: 70px;
  left: -2%;
  border: 1px solid #9d8a5b;
  border-bottom: none;
  border-radius: 50% 50% 0 0;
  opacity: 0;
  transition: all 1s ease-out;
}
#index #artist.show:after {
  opacity: 0.3;
}
#index #artist .pg_wrapper {
  width: min(100%, 1300px);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
#index #artist .pg_wrapper .group {
  position: relative;
  cursor: pointer;
  width: 30.5%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transition: all 1s ease-out;
}
#index #artist .pg_wrapper .group .img {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#index #artist .pg_wrapper .group .img img {
  transform: rotateY(360deg) translateY(-20px);
  opacity: 0;
  transition: all 1s ease-out;
}
#index #artist .pg_wrapper .group .img:before, #index #artist .pg_wrapper .group .img:after {
  content: "";
  display: block;
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 5px solid #af9d66;
  transform: scale(0);
  opacity: 1;
}
#index #artist .pg_wrapper .group .btn, #index #artist .pg_wrapper .group .btn--s, #index #artist .pg_wrapper .group .btn--l {
  margin-top: auto;
  width: 70%;
}
#index #artist .pg_wrapper .group.hv .img {
  padding-top: 20px;
}
#index #artist .pg_wrapper .group:nth-of-type(2) {
  transition-delay: 0.2s;
}
#index #artist .pg_wrapper .group:nth-of-type(2) img {
  transition-delay: 0.2s;
}
#index #artist .pg_wrapper .group:nth-of-type(3) {
  transition-delay: 0.4s;
}
#index #artist .pg_wrapper .group:nth-of-type(3) img {
  transition-delay: 0.4s;
}
#index #artist .pg_wrapper .group.show {
  opacity: 1;
}
#index #artist .pg_wrapper .group.show img {
  transform: rotateY(0) translateY(0);
  opacity: 1;
}
@media (min-width: 800px) {
  #index #artist .pg_wrapper .group:hover .img:before, #index #artist .pg_wrapper .group:hover .img:after {
    transition: all 0.8s ease-out, opacity 0.8s ease-out 0.2s;
    opacity: 0;
    transform: scale(1.3);
    border-width: 1px;
  }
  #index #artist .pg_wrapper .group:hover .img:after {
    transition-delay: 0.2s, 0.4s;
  }
  #index #artist .pg_wrapper .group:hover .btn p, #index #artist .pg_wrapper .group:hover .btn--s p, #index #artist .pg_wrapper .group:hover .btn--l p, #index #artist .pg_wrapper .group:hover .btn a, #index #artist .pg_wrapper .group:hover .btn--s a, #index #artist .pg_wrapper .group:hover .btn--l a {
    color: #fff;
    background: #9d8a5b;
  }
  #index #artist .pg_wrapper .group:hover .btn p:before, #index #artist .pg_wrapper .group:hover .btn--s p:before, #index #artist .pg_wrapper .group:hover .btn--l p:before, #index #artist .pg_wrapper .group:hover .btn a:before, #index #artist .pg_wrapper .group:hover .btn--s a:before, #index #artist .pg_wrapper .group:hover .btn--l a:before {
    inset: -10px -20px;
  }
  #index #artist .pg_wrapper .group:hover .btn p:after, #index #artist .pg_wrapper .group:hover .btn--s p:after, #index #artist .pg_wrapper .group:hover .btn--l p:after, #index #artist .pg_wrapper .group:hover .btn a:after, #index #artist .pg_wrapper .group:hover .btn--s a:after, #index #artist .pg_wrapper .group:hover .btn--l a:after {
    filter: brightness(0) invert(1);
  }
}
#index #artist .obj .bubble_01 {
  width: 60px;
  top: -200px;
  right: 150px;
}
#index #artist .obj .bubble_02 {
  width: 110px;
  top: -65px;
  right: -40px;
}
#index #artist .obj .bubble_03 {
  width: 180px;
  top: 50px;
  right: 40px;
  filter: drop-shadow(50px 50px 20px rgba(12, 38, 80, 0.15));
}
@media (max-width: 800px) {
  #index #artist {
    padding: 60px 20px 100px;
    border-top: none;
  }
  #index #artist .pg_wrapper {
    flex-wrap: wrap;
    gap: 20px 10%;
    justify-content: center;
    padding: 0 10px;
  }
  #index #artist .pg_wrapper .group {
    width: 44%;
    padding: 0;
  }
  #index #artist .pg_wrapper .group:after {
    inset: -6px;
  }
  #index #artist .pg_wrapper .group .img {
    width: auto;
    height: auto;
    margin-bottom: 10px;
    padding: 0 10px;
  }
  #index #artist .pg_wrapper .group .btn, #index #artist .pg_wrapper .group .btn--s, #index #artist .pg_wrapper .group .btn--l {
    font-size: 90%;
    width: 90%;
  }
  #index #artist .pg_wrapper .group .btn p, #index #artist .pg_wrapper .group .btn--s p, #index #artist .pg_wrapper .group .btn--l p {
    padding: 5px;
  }
  #index #artist .obj .bubble_01 {
    width: 60px;
    top: -90px;
    right: -10px;
  }
  #index #artist .obj .bubble_02 {
    width: 80px;
    top: -25px;
    right: 30px;
  }
  #index #artist .obj .bubble_03 {
    width: 190px;
    top: -20px;
    right: -90px;
  }
}
#index #movie + #artist:after {
  display: none;
}

/* ================================================================ *
 * #schedule_ticket
 * ================================================================ */
#ticket .hoshi_icon {
  width: 1.3em;
  vertical-align: top;
  margin: 0 2px;
  position: relative;
  transform: translateY(0px);
}
#ticket #ticket_gaiyou h3 {
  text-align: center;
  margin-bottom: 30px;
  font-weight: 400;
  letter-spacing: 3px;
  text-indent: 3px;
  color: #9d8a5b;
}
#ticket #ticket_gaiyou h3 .s {
  font-size: 120%;
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 600;
}
#ticket #ticket_gaiyou h3 .ttl {
  font-family: house-of-cards, "birch-std", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Hiragino Mincho ProN", "Hiragino Mincho", "Noto Serif JP", "游明朝", "游明朝体", "Yu Mincho", "HGS明朝E", "HG明朝E", "HG明朝", "リュウミン", "メイリオ", "Meiryo", serif;
  font-size: 420%;
  line-height: 1.2;
}
#ticket #ticket_gaiyou h3 .subttl {
  font-family: house-of-cards, "birch-std", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Hiragino Mincho ProN", "Hiragino Mincho", "Noto Serif JP", "游明朝", "游明朝体", "Yu Mincho", "HGS明朝E", "HG明朝E", "HG明朝", "リュウミン", "メイリオ", "Meiryo", serif;
  font-size: 250%;
  line-height: 1.1;
}
#ticket #ticket_gaiyou .day {
  width: 70%;
  max-width: 600px;
  margin: 0 auto 60px;
  padding: 10px 0 0;
  position: relative;
  border-top: 1px solid #9d8a5b;
  text-align: center;
  font-size: 110%;
}
#ticket #ticket_gaiyou .day:before, #ticket #ticket_gaiyou .day:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  width: 9px;
  height: 9px;
  background: url(../img/obj_02.png) 50% 50% no-repeat;
  background-size: contain;
  top: -5px;
}
#ticket #ticket_gaiyou .day:before {
  left: -5px;
}
#ticket #ticket_gaiyou .day:after {
  right: -5px;
}
#ticket #ticket_gaiyou .day .hr {
  margin-top: 10px;
}
#ticket #ticket_gaiyou .hoshi_wrap {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 40px;
  text-align: center;
}
#ticket #ticket_gaiyou .hoshi_wrap .ul_attention--border {
  margin-top: 30px;
  border-radius: 10px;
}
@media (min-width: 800px) {
  #ticket #ticket_gaiyou .hoshi_wrap .ul_attention--border {
    display: flex;
    flex-wrap: wrap;
    gap: 0 10px;
    width: 600px;
  }
  #ticket #ticket_gaiyou .hoshi_wrap .ul_attention--border li.dm {
    width: 50%;
    visibility: hidden;
  }
}
@media (max-width: 800px) {
  #ticket #ticket_gaiyou .hoshi_wrap .ul_attention--border li.dm {
    display: none;
  }
}
#ticket #ticket_gaiyou .kaizyou {
  width: min(100%, 1000px);
  margin: 0 auto;
  gap: 20px;
  margin-bottom: 50px;
}
#ticket #ticket_gaiyou .kaizyou .map {
  margin-right: 20px;
  width: 50%;
}
#ticket #ticket_gaiyou .kaizyou .map iframe {
  height: 100%;
  width: 100%;
}
#ticket #ticket_gaiyou .kaizyou table {
  border-top: 1px solid rgba(157, 138, 91, 0.6);
  text-align: left;
}
#ticket #ticket_gaiyou .kaizyou table tr {
  border-bottom: 1px solid rgba(157, 138, 91, 0.6);
}
#ticket #ticket_gaiyou .kaizyou table tr th {
  display: block;
  padding-top: 10px;
  font-size: 80%;
  color: #9d8a5b;
  line-height: 1.2;
}
#ticket #ticket_gaiyou .kaizyou table tr td {
  display: block;
  line-height: 1.4;
  padding-bottom: 10px;
}
#ticket #ticket_ticket #ticket_price .ticket_spec {
  display: flex;
  justify-content: space-between;
  text-align: center;
  margin-bottom: 30px;
}
#ticket #ticket_ticket #ticket_price .ticket_spec li {
  position: relative;
  width: 23%;
  padding: 45px 15px 10px;
  border-radius: 200px 200px 0 0;
  border: 1px solid rgba(157, 138, 91, 0.7);
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease-out;
}
#ticket #ticket_ticket #ticket_price .ticket_spec li:after {
  content: "";
  display: block;
  position: absolute;
  inset: -6px;
  border-radius: 200px 200px 0 0;
  border: 1px solid rgba(157, 138, 91, 0.4);
}
#ticket #ticket_ticket #ticket_price .ticket_spec li .type {
  position: relative;
  border-bottom: 1px solid #9d8a5b;
  width: min(100%, 180px);
  margin: 0 auto;
  padding: 45px 0 15px;
  background: url(../img/ttl_obj.png) 50% 0 no-repeat;
  background-size: 45px auto;
  font-size: 180%;
  line-height: 1.2;
  letter-spacing: 2px;
  font-family: "Shippori Mincho", "游明朝", "游明朝体", "fot-tsukumin-pr6n", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Hiragino Mincho ProN", "Hiragino Mincho", "Noto Serif JP", "HGS明朝E", "HG明朝E", "HG明朝", "リュウミン", "メイリオ", "Meiryo", serif;
  font-weight: 600;
  color: #9d8a5b;
}
#ticket #ticket_ticket #ticket_price .ticket_spec li .type:before, #ticket #ticket_ticket #ticket_price .ticket_spec li .type:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  width: 9px;
  height: 9px;
  background: url(../img/obj_02.png) 50% 50% no-repeat;
  background-size: contain;
  bottom: -5px;
}
#ticket #ticket_ticket #ticket_price .ticket_spec li .type:before {
  left: -5px;
}
#ticket #ticket_ticket #ticket_price .ticket_spec li .type:after {
  right: -5px;
}
#ticket #ticket_ticket #ticket_price .ticket_spec li .price {
  flex: 1;
  padding: 20px 0 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#ticket #ticket_ticket #ticket_price .ticket_spec li .price p {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  font-size: 120%;
  margin-bottom: 5px;
  line-height: 1;
  margin-bottom: 10px;
}
#ticket #ticket_ticket #ticket_price .ticket_spec li .price p span {
  margin-right: 5px;
  font-size: 60%;
  margin: 0;
}
#ticket #ticket_ticket #ticket_price .ticket_spec li .price p span.tax {
  display: inline-block;
}
#ticket #ticket_ticket #ticket_price .ticket_spec li .btn, #ticket #ticket_ticket #ticket_price .ticket_spec li .btn--s, #ticket #ticket_ticket #ticket_price .ticket_spec li .btn--l {
  margin-top: auto;
}
#ticket #ticket_hanbai .hoshi_icon {
  position: relative;
  transform: translateY(3px);
}
#ticket #ticket_hanbai .disc {
  text-align: center;
  margin-bottom: 30px;
}
#ticket #ticket_hanbai .disc p {
  margin-bottom: 10px;
}
#ticket #ticket_hanbai .drop_list .dl_disc {
  font-size: 100%;
}
@media (max-width: 800px) {
  #ticket .h01 {
    font-size: 50px;
  }
  #ticket .h01 p {
    line-height: 0.8;
    margin-bottom: 5px;
  }
  #ticket #ticket_gaiyou h3 {
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-indent: 2px;
  }
  #ticket #ticket_gaiyou h3 .s {
    font-size: 105%;
    margin-bottom: 5px;
  }
  #ticket #ticket_gaiyou h3 .ttl {
    font-size: 250%;
  }
  #ticket #ticket_gaiyou h3 .subttl {
    font-size: 140%;
  }
  #ticket #ticket_gaiyou .day {
    font-size: 95%;
    width: 90%;
    margin-bottom: 30px;
  }
  #ticket #ticket_gaiyou .hoshi_wrap {
    padding: 0 40px;
    flex-direction: column;
    margin-bottom: 20px;
    align-items: center;
  }
  #ticket #ticket_gaiyou .hoshi_wrap .ul_attention, #ticket #ticket_gaiyou .hoshi_wrap ul.ul_attention--border {
    margin-top: 10px;
    text-align: left;
  }
  #ticket #ticket_gaiyou .kaizyou {
    flex-direction: column;
    margin-bottom: 10px;
  }
  #ticket #ticket_gaiyou .kaizyou .map {
    width: 100%;
    order: 2;
  }
  #ticket #ticket_gaiyou .kaizyou table {
    order: 1;
    font-size: 95%;
    line-height: 1.3;
  }
  #ticket #ticket_gaiyou .kaizyou table tr th {
    padding-top: 7px;
  }
  #ticket #ticket_gaiyou .kaizyou table tr td {
    padding-bottom: 7px;
    font-size: 95%;
  }
  #ticket #ticket_ticket #ticket_price .ticket_spec {
    flex-wrap: wrap;
    padding: 0 6px;
    gap: 25px 6%;
  }
  #ticket #ticket_ticket #ticket_price .ticket_spec li {
    width: 47%;
    padding: 20px 15px 5px;
  }
  #ticket #ticket_ticket #ticket_price .ticket_spec li:after {
    inset: -6px;
  }
  #ticket #ticket_ticket #ticket_price .ticket_spec li .type {
    padding: 45px 0 10px;
    background-size: 38px auto;
    font-size: 150%;
  }
  #ticket #ticket_ticket #ticket_price .ticket_spec li .price {
    padding: 13px 0 10px;
  }
  #ticket #ticket_ticket #ticket_price .ticket_spec li .price p {
    font-size: 110%;
  }
  #ticket #ticket_ticket #ticket_price .ticket_spec li .price p span {
    padding-bottom: 2px;
  }
  #ticket #ticket_ticket #ticket_price .ticket_spec li .price .btn, #ticket #ticket_ticket #ticket_price .ticket_spec li .price .btn--s, #ticket #ticket_ticket #ticket_price .ticket_spec li .price .btn--l {
    margin-top: 5px;
  }
  #ticket #ticket_ticket #ticket_tokuten .wrap {
    padding: 5px 40px 5px 0;
    width: 100%;
    overflow-x: scroll;
    margin-top: -5px;
    -webkit-mask-image: linear-gradient(to right, #000 calc(100% - 40px), transparent);
            mask-image: linear-gradient(to right, #000 calc(100% - 40px), transparent);
  }
  #ticket #ticket_ticket #ticket_tokuten table.table_block, #ticket #ticket_ticket #ticket_tokuten table.table_block--noth {
    width: auto;
  }
  #ticket #ticket_ticket #ticket_tokuten table.table_block tr th, #ticket #ticket_ticket #ticket_tokuten table.table_block--noth tr th, #ticket #ticket_ticket #ticket_tokuten table.table_block tr td, #ticket #ticket_ticket #ticket_tokuten table.table_block--noth tr td {
    height: 50px;
  }
  #ticket #ticket_ticket #ticket_tokuten table.table_block tr th:nth-of-type(1), #ticket #ticket_ticket #ticket_tokuten table.table_block--noth tr th:nth-of-type(1) {
    min-width: 130px;
  }
  #ticket #ticket_hanbai .pg_box > .disc {
    text-align: left;
  }
  #ticket #ticket_hanbai .drop_list .dl_disc {
    font-size: 90%;
  }
  #ticket #ticket_hanbai .drop_list .btn--l {
    margin: 30px auto;
  }
}

/* ================================================================ *
 * #goods
 * ================================================================ */
#goods .cmsn {
  font-size: 200%;
}
#goods #goods_lineup .selectbox {
  position: relative;
  text-align: center;
  font-size: 90%;
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
#goods #goods_lineup .selectbox > li {
  position: relative;
  padding: 0 30px;
  cursor: pointer;
}
#goods #goods_lineup .selectbox > li:before, #goods #goods_lineup .selectbox > li:after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  background: linear-gradient(rgba(157, 138, 91, 0), rgba(157, 138, 91, 0.8) 40%, rgba(157, 138, 91, 0.8) 60%, rgba(157, 138, 91, 0));
}
#goods #goods_lineup .selectbox > li:before {
  left: 0;
}
#goods #goods_lineup .selectbox > li:after {
  display: none;
}
#goods #goods_lineup .selectbox > li:nth-last-of-type(1):after {
  display: block;
  right: 0;
}
#goods #goods_lineup .selectbox > li > div {
  position: relative;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#goods #goods_lineup .selectbox > li > div .active {
  display: block;
  font-size: 80%;
  color: #9d8a5b;
  line-height: 1;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: all 0.15s ease-out;
}
#goods #goods_lineup .selectbox > li > div .active.on {
  opacity: 1;
  height: 1em;
}
#goods #goods_lineup .selectbox .child {
  position: absolute;
  z-index: 2;
  top: 100%;
  left: 0;
  width: 100%;
  font-size: 90%;
}
#goods #goods_lineup .selectbox .child li {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 0;
  background: #9d8a5b;
  transition: all 0.15s ease-out;
  border-radius: 5px;
}
#goods #goods_lineup .selectbox .child li a {
  display: block;
  width: 100%;
  padding: 30px;
}
#goods #goods_lineup .selectbox .child.on li {
  height: 40px;
  border-bottom: 1px solid rgba(102, 102, 102, 0.3);
}
#goods #goods_lineup .pg_wrapper {
  max-width: 1200px;
}
#goods #goods_lineup .ul_attention, #goods #goods_lineup ul.ul_attention--border {
  padding: 25px 40px;
  gap: 0 30px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
@media (max-width: 800px) {
  #goods #goods_lineup .selectbox {
    margin-bottom: 15px;
    font-size: 80%;
  }
  #goods #goods_lineup .selectbox > li {
    padding: 0 15px;
  }
  #goods #goods_lineup .selectbox .child {
    font-size: 100%;
  }
  #goods #goods_lineup .ul_attention, #goods #goods_lineup ul.ul_attention--border {
    padding: 10px;
    gap: 0 5px;
    display: block;
  }
}

/* ================================================================ *
* live_viewing
* ================================================================ */
#live_viewing #liveviewing_gaiyou .flex_wrap, #delay_viewing #liveviewing_gaiyou .flex_wrap {
  align-items: center;
  justify-content: space-between;
}
#live_viewing #liveviewing_gaiyou .tokuten, #delay_viewing #liveviewing_gaiyou .tokuten {
  max-width: 230px;
}
#live_viewing #liveviewing_ticket .btn--l, #delay_viewing #liveviewing_ticket .btn--l {
  margin-bottom: 20px;
}

#delay_viewing #delayviewing_gekizyou .table_block th, #delay_viewing #delayviewing_gekizyou .table_block--noth th {
  width: 50%;
}

/* ================================================================ *
* bluray_dvd
* ================================================================ */
#bluray_dvd #dvd_product_spec .flex_wrap {
  padding-top: 30px;
}
#bluray_dvd #dvd_product_spec .img_wrap {
  width: 600px;
  margin-right: 50px;
}
#bluray_dvd #dvd_product_spec .txt_wrap .ttl {
  margin-bottom: 20px;
}
#bluray_dvd #dvd_product_spec .txt_wrap .ttl p {
  font-size: 150%;
  line-height: 1.5;
}
#bluray_dvd #dvd_product_spec .txt_wrap .ttl .en {
  font-size: 260%;
  line-height: 1.2;
}
#bluray_dvd #dvd_product_spec .txt_wrap .ttl .en span {
  display: block;
  font-size: 70%;
}
#bluray_dvd #dvd_product_spec .txt_wrap .table_spec--s {
  line-height: 1.3;
  margin-bottom: 35px;
}
#bluray_dvd #dvd_product_spec .txt_wrap .table_spec--s dl {
  margin: 0;
}
#bluray_dvd #dvd_product_spec .txt_wrap .table_spec--s dl dt {
  font-size: 105%;
}
#bluray_dvd #dvd_product_spec .txt_wrap .table_spec--s dl dd {
  font-size: 82%;
  line-height: 1.3;
  margin-bottom: 5px;
}
#bluray_dvd #dvd_product_spec .txt_wrap .table_spec--s dl dd:nth-last-of-type(1) {
  margin-bottom: 0;
}
#bluray_dvd #dvd_product_spec .txt_wrap .h04, #bluray_dvd #dvd_product_spec .txt_wrap .h04--num {
  margin-top: 30px;
  margin-bottom: 5px;
  border-bottom: 1px solid #9d8a5b;
}
#bluray_dvd #dvd_product_spec .txt_wrap .h04 + p, #bluray_dvd #dvd_product_spec .txt_wrap .h04--num + p {
  font-size: 85%;
  margin-bottom: 10px;
}
#bluray_dvd #dvd_product_spec .txt_wrap .btn_wrap {
  font-size: 90%;
  justify-content: space-between;
  padding: 0;
}
#bluray_dvd #dvd_product_spec .txt_wrap .btn_wrap .btn--s {
  max-width: calc(50% - 10px);
  margin: 0;
}
#bluray_dvd #dvd_product_set .h04, #bluray_dvd #dvd_product_set .h04--num {
  margin-bottom: 10px;
}
#bluray_dvd #dvd_product_set .flex_wrap {
  align-items: center;
}
#bluray_dvd #dvd_product_set .flex_wrap .txt_wrap {
  flex: 1;
}
#bluray_dvd #dvd_product_set .flex_wrap .txt_wrap .wrap:nth-of-type(1) {
  margin-bottom: 30px;
}
#bluray_dvd #dvd_product_set .flex_wrap .img_wrap {
  width: 300px;
  margin: 0 auto;
}
#bluray_dvd #dvd_product_track .h04, #bluray_dvd #dvd_product_track .h04--num {
  margin-top: 20px;
}
#bluray_dvd #dvd_product_track .table_block, #bluray_dvd #dvd_product_track .table_block--noth {
  margin-bottom: 30px;
}
#bluray_dvd #dvd_product_track .table_block:before, #bluray_dvd #dvd_product_track .table_block--noth:before, #bluray_dvd #dvd_product_track .table_block:after, #bluray_dvd #dvd_product_track .table_block--noth:after {
  display: none;
}
#bluray_dvd #dvd_product_track .table_block th span, #bluray_dvd #dvd_product_track .table_block--noth th span {
  display: block;
  font-size: 80%;
  line-height: 1.2;
}
#bluray_dvd #dvd_product_track .table_block td, #bluray_dvd #dvd_product_track .table_block--noth td {
  text-align: left;
  padding: 10px 20px;
}
#bluray_dvd #dvd_tokuten .txt_wrap {
  flex: 1;
}
#bluray_dvd #dvd_tokuten .img_wrap {
  width: 250px;
}
#bluray_dvd #dvd_animateset .dl_spec dd, #bluray_dvd #dvd_animateset dl.dl_spec--border dd {
  margin-bottom: 30px;
}
#bluray_dvd #dvd_animateset .btn--l {
  margin: 10px 0 0;
}
#bluray_dvd #dvd_contact table.table_spec th, #bluray_dvd #dvd_contact table.table_spec--s th {
  width: 40%;
}
@media (max-width: 800px) {
  #bluray_dvd #dvd_product_spec .flex_wrap {
    padding-top: 25px;
  }
  #bluray_dvd #dvd_product_spec .txt_wrap .ttl {
    text-align: center;
    margin-bottom: 15px;
  }
  #bluray_dvd #dvd_product_spec .txt_wrap .ttl p {
    font-size: 130%;
    line-height: 1.5;
  }
  #bluray_dvd #dvd_product_spec .txt_wrap .ttl .en {
    font-size: 210%;
    line-height: 1.2;
  }
  #bluray_dvd #dvd_product_spec .txt_wrap .img_wrap {
    width: 100%;
    margin: 0 0 20px;
  }
  #bluray_dvd #dvd_product_spec .txt_wrap .table_spec--s {
    margin-bottom: 25px;
  }
  #bluray_dvd #dvd_product_spec .txt_wrap .h04, #bluray_dvd #dvd_product_spec .txt_wrap .h04--num {
    margin-top: 10px;
  }
  #bluray_dvd #dvd_product_spec .txt_wrap .h04 + p, #bluray_dvd #dvd_product_spec .txt_wrap .h04--num + p {
    margin-bottom: 10px;
  }
  #bluray_dvd #dvd_product_spec .txt_wrap .btn_wrap {
    font-size: 80%;
    gap: 10px;
  }
  #bluray_dvd #dvd_product_spec .txt_wrap .btn_wrap .btn--s {
    max-width: calc(50% - 5px);
  }
  #bluray_dvd #dvd_product_set .flex_wrap .txt_wrap .wrap:nth-of-type(1) {
    margin-bottom: 20px;
  }
  #bluray_dvd #dvd_product_set .flex_wrap .img_wrap {
    width: 250px;
    margin: 0 auto;
  }
  #bluray_dvd #dvd_tokuten .img_wrap {
    margin: 0 auto;
  }
  #bluray_dvd #dvd_animateset .dl_spec dd, #bluray_dvd #dvd_animateset dl.dl_spec--border dd {
    margin-bottom: 20px;
  }
  #bluray_dvd #dvd_animateset .btn--l {
    margin: 10px 0 0;
    width: 100%;
  }
  #bluray_dvd #dvd_animateset .img_wrap {
    width: 250px;
    margin: 0 auto;
  }
  #bluray_dvd #dvd_contact table.table_spec th, #bluray_dvd #dvd_contact table.table_spec--s th, #bluray_dvd #dvd_contact table.table_spec td, #bluray_dvd #dvd_contact table.table_spec--s td {
    width: 100%;
    display: block;
    text-align: center;
  }
  #bluray_dvd #dvd_contact table.table_spec th, #bluray_dvd #dvd_contact table.table_spec--s th {
    padding: 20px 0 3px;
    color: #9d8a5b;
  }
  #bluray_dvd #dvd_contact table.table_spec th:after, #bluray_dvd #dvd_contact table.table_spec--s th:after {
    display: none;
  }
  #bluray_dvd #dvd_contact table.table_spec td, #bluray_dvd #dvd_contact table.table_spec--s td {
    padding: 3px 0 20px;
  }
}

/* ================================================================ *
* topics
* ================================================================ */
#topics #page_header nav {
  width: 420px;
}
#topics #page_header nav li a {
  font-size: 90%;
  line-height: 1.2;
  letter-spacing: 0;
  padding: 3px 3px;
}
#topics #fix_pnav ul {
  gap: 5px;
  flex-wrap: wrap;
  padding: 5px 40px;
}
#topics #fix_pnav ul li a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#topics .h02, #topics .h02--en, #topics .h02--ls0 {
  font-size: 180%;
  line-height: 1.2;
  margin-bottom: 10px;
}
#topics .day {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 30px;
  font-family: house-of-cards, "birch-std", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Hiragino Mincho ProN", "Hiragino Mincho", "Noto Serif JP", "游明朝", "游明朝体", "Yu Mincho", "HGS明朝E", "HG明朝E", "HG明朝", "リュウミン", "メイリオ", "Meiryo", serif;
  letter-spacing: 1px;
  font-size: 90%;
  opacity: 0;
  scale: 1.7 1;
  transform: translateY(15px);
  transition: all 0.8s ease-out 0.3s;
}
#topics .day .w {
  font-size: 85%;
  letter-spacing: 0;
}
#topics .day.show {
  opacity: 0.6;
  transform: translateY(0);
}
@media (max-width: 800px) {
  #topics #page_header nav {
    width: 230px;
  }
  #topics #page_header nav li a {
    font-size: 75%;
    line-height: 1.1;
    padding: 2px 3px;
  }
  #topics #fix_pnav ul {
    flex-wrap: nowrap;
  }
  #topics #fix_pnav ul li {
    min-width: 150px;
  }
  #topics .h02, #topics .h02--en, #topics .h02--ls0 {
    font-size: 135%;
    line-height: 1.2;
  }
  #topics .h02:before, #topics .h02--en:before, #topics .h02--ls0:before, #topics .h02:after, #topics .h02--en:after, #topics .h02--ls0:after {
    display: none;
  }
  #topics .hr_box--p30 {
    padding: 20px 10px 0;
  }
}

/* ================================================================ *
* popup
* ================================================================ */
#popup, #popup_movie {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1010;
  padding: 15px;
  opacity: 0;
  transition: all 0.3s ease-out;
  pointer-events: none;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
}
#popup > .bg, #popup_movie > .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
#popup > .bg:after, #popup_movie > .bg:after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 2;
  background: url(../img/content_bg.webp) 50% 50% repeat-y;
  background-size: 100% auto;
  transition: all 1s ease-out 0.3s;
}
#popup.on, #popup_movie.on {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
#popup.on > .bg:after, #popup_movie.on > .bg:after {
  filter: blur(8px);
}
#popup .close, #popup_movie .close {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
  cursor: pointer;
  background: #9d8a5b;
  opacity: 0;
  transition: all 0.3s ease-out;
}
#popup .close span, #popup_movie .close span {
  position: relative;
  display: block;
  width: 80px;
  height: 80px;
  transition: all 0.3s ease-out;
}
#popup .close span:before, #popup .close span:after, #popup_movie .close span:before, #popup_movie .close span:after {
  content: "";
  display: block;
  position: absolute;
  width: 95%;
  height: 2px;
  top: calc(50% - 2px);
  left: 2.5%;
  background: #fff;
}
#popup .close span:before, #popup_movie .close span:before {
  transform: rotate(45deg);
}
#popup .close span:after, #popup_movie .close span:after {
  transform: rotate(-45deg);
}
@media (min-width: 800px) {
  #popup .close:hover, #popup_movie .close:hover {
    background: #9d8a5b;
  }
  #popup .close:hover span, #popup_movie .close:hover span {
    rotate: 180deg;
  }
}
#popup .close.on, #popup_movie .close.on {
  opacity: 1;
}
#popup .content, #popup_movie .content {
  position: relative;
  width: 85%;
  height: 95%;
  max-width: 1400px;
  max-height: 900px;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease-out 0.5s;
  opacity: 0;
  transform: scale(1.05);
}
#popup .content.on, #popup_movie .content.on {
  opacity: 1;
  transform: scale(1);
}
#popup .content .wrapper, #popup_movie .content .wrapper {
  position: relative;
  z-index: 10;
  padding: 20px 20px 20px 20px;
  width: 100%;
  max-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  transition: all 0.5s ease-out 0.3s;
}
#popup .content .wrapper.on, #popup_movie .content .wrapper.on {
  opacity: 1;
}
#popup .content .wrapper.noscroll, #popup_movie .content .wrapper.noscroll {
  overflow: hidden;
}
#popup .content .loading, #popup_movie .content .loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  transition: all 0.3s ease-out;
  opacity: 1;
  letter-spacing: 2px;
  text-indent: 2px;
  font-size: 85%;
  font-family: house-of-cards, "birch-std", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Hiragino Mincho ProN", "Hiragino Mincho", "Noto Serif JP", "游明朝", "游明朝体", "Yu Mincho", "HGS明朝E", "HG明朝E", "HG明朝", "リュウミン", "メイリオ", "Meiryo", serif;
  color: #9d8a5b;
}
#popup .content .loading.on, #popup_movie .content .loading.on {
  opacity: 0;
}
#popup:not(.pp_artist, .img) .content, #popup_movie:not(.pp_artist, .img) .content {
  padding: 60px 60px 60px;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 100px rgba(12, 38, 80, 0.3);
}
#popup:not(.pp_artist, .img) .content:before, #popup_movie:not(.pp_artist, .img) .content:before {
  content: "";
  display: block;
  position: absolute;
  inset: -25px;
  -o-border-image: url(../img/movie_frame.png) 154 fill/120px/0px round;
     border-image: url(../img/movie_frame.png) 154 fill/120px/0px round;
}
@media (max-width: 800px) {
  #popup:not(.pp_artist, .img) .content, #popup_movie:not(.pp_artist, .img) .content {
    padding: 30px 10px;
  }
  #popup:not(.pp_artist, .img) .content:before, #popup_movie:not(.pp_artist, .img) .content:before {
    inset: -17px;
    -o-border-image: url(../img/movie_frame.png) 154 fill/70px/0px round;
       border-image: url(../img/movie_frame.png) 154 fill/70px/0px round;
  }
}
@media (max-width: 800px) {
  #popup > .bg, #popup_movie > .bg {
    background-size: 130% auto;
  }
  #popup .close span, #popup_movie .close span {
    width: 50px;
    height: 50px;
  }
  #popup .content, #popup_movie .content {
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    padding: 40px 30px;
  }
  #popup .content .wrapper, #popup_movie .content .wrapper {
    padding: 10px;
  }
}

#popup.img .content {
  height: auto;
  padding: 0;
  margin-bottom: 10px;
}
#popup.img .content .wrapper {
  padding: 0;
}

#popup.pp_item .content {
  max-width: 1200px;
  max-height: 760px;
  padding: 50px;
}
@media (min-width: 800px) {
  #popup.pp_item .content .wrapper {
    padding-right: 10px;
  }
}
#popup.pp_item .box {
  position: relative;
}
@media (min-width: 800px) {
  #popup.pp_item .box {
    height: 100%;
    display: flex;
  }
}
#popup.pp_item .box .img_wrap {
  position: relative;
  margin-right: 30px;
  width: 500px;
}
#popup.pp_item .box .img_wrap .img {
  margin-bottom: 10px;
  aspect-ratio: 1/1;
}
#popup.pp_item .box .img_wrap .img > img {
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
  transition: opacity 0.15s ease-out;
}
#popup.pp_item .box .img_wrap .img > img.on {
  opacity: 1;
}
#popup.pp_item .box .img_wrap .thumb {
  display: flex;
  flex-wrap: wrap;
}
#popup.pp_item .box .img_wrap .thumb li {
  position: relative;
  cursor: pointer;
}
@media (min-width: 800px) {
  #popup.pp_item .box .img_wrap .thumb li {
    width: 10%;
    margin: 0 1.25% 5px 0;
  }
  #popup.pp_item .box .img_wrap .thumb li:nth-of-type(9n) {
    margin-right: 0;
  }
}
#popup.pp_item .box .img_wrap .thumb li:after {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% - 0px);
  height: calc(100% - 0px);
  top: 0;
  left: 0;
  border: 4px solid #9d8a5b;
  background: rgba(102, 102, 102, 0.2);
  opacity: 0;
  transition: all 0.15s ease-out;
}
#popup.pp_item .box .img_wrap .thumb li.on:after {
  opacity: 1;
}
#popup.pp_item .box .txt_wrap {
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (min-width: 800px) {
  #popup.pp_item .box .txt_wrap {
    height: 100%;
    padding-right: 10px;
    flex: 1;
  }
}
#popup.pp_item .box .txt_wrap .top {
  margin-bottom: 20px;
  color: #9d8a5b;
  font-weight: 600;
}
#popup.pp_item .box .txt_wrap .top .name_sub {
  font-size: 100%;
  line-height: 1.4;
  margin-bottom: 5px;
}
#popup.pp_item .box .txt_wrap .top .name {
  font-size: 200%;
  line-height: 1.3;
  margin-bottom: 2px;
}
#popup.pp_item .box .txt_wrap .disc {
  font-size: 100%;
  margin-bottom: 40px;
  line-height: 1.5;
}
#popup.pp_item .box .txt_wrap .icon {
  margin-bottom: 15px;
  display: flex;
  line-height: 1.2;
  margin-top: auto;
}
#popup.pp_item .box .txt_wrap .icon li {
  background: rgba(157, 138, 91, 0.3);
  border-radius: 30px;
  margin: 0 2px;
  padding: 2px 20px 1px;
  font-size: 85%;
  line-height: 1.2;
}
#popup.pp_item .box .txt_wrap .item_spec {
  font-size: 80%;
  line-height: 1.3;
  border-top: 1px solid rgba(157, 138, 91, 0.6);
}
#popup.pp_item .box .txt_wrap .item_spec tr {
  border-bottom: 1px solid rgba(157, 138, 91, 0.6);
}
#popup.pp_item .box .txt_wrap .item_spec tr th {
  text-align: left;
  width: 7em;
  padding: 10px 1em;
  color: #9d8a5b;
}
#popup.pp_item .box .txt_wrap .item_spec tr td {
  padding: 10px;
}
#popup.pp_item .box .txt_wrap .ul_attention--border {
  font-size: 75%;
}
#popup.pp_item .accessory {
  position: fixed;
  inset: 50px;
  z-index: 10;
  background: #af9d66;
  padding: 60px;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-out;
}
#popup.pp_item .accessory .accessory_close {
  width: -moz-fit-content;
  width: fit-content;
  margin: 30px auto 0;
  cursor: pointer;
  background: #fff;
  font-weight: 600;
  color: #9d8a5b;
  border-radius: 30px;
  padding: 2px 40px;
}
#popup.pp_item .accessory.on {
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 800px) {
  #popup.pp_item .accessory {
    padding: 30px;
    inset: 20px;
  }
}
@media (max-width: 800px) {
  #popup.pp_item .content {
    padding: 30px 30px 40px;
  }
  #popup.pp_item .wrapper {
    padding: 0;
  }
  #popup.pp_item .box .img_wrap {
    width: 100%;
    margin-bottom: 20px;
  }
  #popup.pp_item .box .img_wrap .img {
    width: 100%;
  }
  #popup.pp_item .box .img_wrap .thumb li {
    width: 13.05%;
    margin: 0 1.4% 5px 0;
  }
  #popup.pp_item .box .img_wrap .thumb li:nth-of-type(7n) {
    margin-right: 0;
  }
  #popup.pp_item .box .txt_wrap .top {
    margin-bottom: 14px;
  }
  #popup.pp_item .box .txt_wrap .top .name_sub {
    font-size: 110%;
    line-height: 1.3;
  }
  #popup.pp_item .box .txt_wrap .disc {
    margin-bottom: 30px;
  }
  #popup.pp_item .box .txt_wrap .item_spec {
    font-size: 85%;
    line-height: 1.3;
  }
  #popup.pp_item .box .txt_wrap .item_spec tr th {
    width: 4em;
  }
}

#popup.pp_artist {
  padding: 0;
}
#popup.pp_artist .content {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  padding: 0;
}
#popup.pp_artist .content .wrapper {
  position: absolute;
  inset: 0;
  padding: 30px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  -o-border-image: url(../img/artist_frame.png) 154 fill/120px/0px round;
     border-image: url(../img/artist_frame.png) 154 fill/120px/0px round;
}
#popup.pp_artist .content .wrapper .box {
  display: contents;
}
#popup.pp_artist .content .imgwrap {
  position: relative;
  width: min(80%, 1500px);
  height: min(94%, 1000px);
}
#popup.pp_artist .content .imgwrap:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 95%;
  left: 0;
  bottom: 3%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  filter: drop-shadow(0 0 100px rgba(26, 125, 224, 0.8));
  opacity: 0.4;
}
#popup.pp_artist .content .imgwrap .h02_artist {
  position: relative;
  z-index: 2;
  font-family: house-of-cards, "birch-std", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Hiragino Mincho ProN", "Hiragino Mincho", "Noto Serif JP", "游明朝", "游明朝体", "Yu Mincho", "HGS明朝E", "HG明朝E", "HG明朝", "リュウミン", "メイリオ", "Meiryo", serif;
  font-size: 200px;
  text-align: center;
  line-height: 0.85;
  color: #9d8a5b;
  letter-spacing: 5px;
  text-indent: 5px;
  font-weight: 400;
  white-space: nowrap;
}
#popup.pp_artist .content .imgwrap .img {
  position: absolute;
  z-index: 3;
  width: min(100%, 1360px);
  height: min(88%, 920px);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
#popup.pp_artist .content .imgwrap.st:after {
  background-image: url(../img/artist_icon_st.png);
}
#popup.pp_artist .content .imgwrap.st .img {
  background-image: url(../img/artist_st.webp);
}
#popup.pp_artist .content .imgwrap.qn:after {
  background-image: url(../img/artist_icon_qn.png);
}
#popup.pp_artist .content .imgwrap.qn .img {
  background-image: url(../img/artist_qn.webp);
}
#popup.pp_artist .content .imgwrap.hv:after {
  background-image: url(../img/artist_icon_hv.png);
}
#popup.pp_artist .content .imgwrap.hv .img {
  background-image: url(../img/artist_hv.webp);
}
@media (min-width: 800px) {
  #popup.pp_artist .content .hr_box, #popup.pp_artist .content .hr_box--p30 {
    display: contents;
  }
}
@media (min-width: 800px) {
  #popup.pp_artist .content .namewrap {
    position: absolute;
    left: 50px;
    bottom: 140px;
    z-index: 3;
    mix-blend-mode: multiply;
  }
  #popup.pp_artist .content .namewrap li {
    border-bottom: 1px dotted #af9d66;
  }
}
@media (min-width: 800px) {
  #popup.pp_artist .content .namewrap li {
    margin: 20px 0;
  }
  #popup.pp_artist .content .namewrap li:has(.gr) {
    margin: 7px 0;
  }
}
#popup.pp_artist .content .namewrap li .gr {
  position: relative;
  width: 60px;
  text-align: center;
}
#popup.pp_artist .content .namewrap li .gr img {
  width: 58px;
  position: relative;
  z-index: 1;
  transform: translateY(-3px);
}
#popup.pp_artist .content .namewrap li .gr:after {
  content: "";
  display: block;
  position: absolute;
  inset: 8px 0;
  z-index: -1;
  border: 1px solid rgba(102, 102, 102, 0.5);
}
#popup.pp_artist .content .namewrap li .name {
  display: flex;
  gap: 5px;
  align-items: center;
}
#popup.pp_artist .content .namewrap li .name .en {
  font-family: house-of-cards, "birch-std", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Hiragino Mincho ProN", "Hiragino Mincho", "Noto Serif JP", "游明朝", "游明朝体", "Yu Mincho", "HGS明朝E", "HG明朝E", "HG明朝", "リュウミン", "メイリオ", "Meiryo", serif;
  font-size: 19px;
  letter-spacing: 0.5px;
  line-height: 1;
}
#popup.pp_artist .content .namewrap li .name .ja {
  font-size: 11px;
  padding-top: 4px;
}
#popup.pp_artist .content .office {
  position: absolute;
  right: 55px;
  bottom: 140px;
  padding-bottom: 30px;
  font-family: house-of-cards, "birch-std", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Hiragino Mincho ProN", "Hiragino Mincho", "Noto Serif JP", "游明朝", "游明朝体", "Yu Mincho", "HGS明朝E", "HG明朝E", "HG明朝", "リュウミン", "メイリオ", "Meiryo", serif;
  color: #9d8a5b;
  text-align: right;
  letter-spacing: 0.5px;
  background: url(../img/artist_obj.png) 100% 100% no-repeat;
  background-size: 70px;
}
#popup.pp_artist .content .office .logo {
  transform: translateX(5px);
}
#popup.pp_artist .content .office .logo img {
  width: 80px;
  margin-bottom: 5px;
}
#popup.pp_artist .content .office .txt {
  font-size: 22px;
  line-height: 1;
}
@media (max-width: 800px) {
  #popup.pp_artist .content .wrapper {
    display: block;
    -o-border-image: none;
       border-image: none;
  }
  #popup.pp_artist .content .wrapper .box {
    display: block;
    position: absolute;
    width: 100%;
    border: 1px solid #000;
    padding: 80px 0 50px;
  }
  #popup.pp_artist .content .wrapper .box:after {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    z-index: 5;
    -o-border-image: url(../img/artist_frame.png) 154 fill/60px/0px round;
       border-image: url(../img/artist_frame.png) 154 fill/60px/0px round;
  }
  #popup.pp_artist .content .imgwrap {
    width: 100%;
    height: auto;
  }
  #popup.pp_artist .content .imgwrap .h02_artist {
    font-size: 90px;
    letter-spacing: 0px;
    text-indent: 0px;
  }
  #popup.pp_artist .content .imgwrap .img {
    position: relative;
    margin-top: -30px;
    width: 100%;
  }
  #popup.pp_artist .content .imgwrap.st .img {
    aspect-ratio: 640/848;
    background-image: url(../img/artist_st_sp.webp);
  }
  #popup.pp_artist .content .imgwrap.qn .img {
    aspect-ratio: 640/767;
    background-image: url(../img/artist_qn_sp.webp);
  }
  #popup.pp_artist .content .imgwrap.hv .img {
    aspect-ratio: 640/844;
    background-image: url(../img/artist_hv_sp.webp);
  }
  #popup.pp_artist .content .hr_box, #popup.pp_artist .content .hr_box--p30 {
    margin: 30px 30px 30px;
  }
  #popup.pp_artist .content .hr_box .hr, #popup.pp_artist .content .hr_box--p30 .hr {
    display: block;
  }
  #popup.pp_artist .content .namewrap {
    position: relative;
    width: 100%;
    padding: 20px 20px;
    display: flex;
    flex-wrap: wrap;
  }
  #popup.pp_artist .content .namewrap li {
    min-width: 50%;
    margin: 7px 0;
  }
  #popup.pp_artist .content .namewrap li .gr:after {
    inset: 6px 0;
  }
  #popup.pp_artist .content .namewrap li .gr img {
    transform: translateY(-1px);
  }
  #popup.pp_artist .content .namewrap li .name {
    display: block;
  }
  #popup.pp_artist .content .namewrap li .name .en {
    letter-spacing: 0;
    font-size: 18px;
  }
  #popup.pp_artist .content .namewrap li .name .ja {
    padding-top: 0;
  }
  #popup.pp_artist .content .office {
    padding: 0 40px 15px;
    position: relative;
    bottom: auto;
    right: auto;
    -moz-text-align-last: center;
         text-align-last: center;
    background-position: 50% 100%;
    background-size: 50px auto;
  }
  #popup.pp_artist .content .office .logo img {
    width: 50px;
  }
  #popup.pp_artist .content .office .txt {
    font-size: 15px;
  }
}

@media (max-width: 800px) {
  #popup.pp_tokuten .h02, #popup.pp_tokuten .h02--en, #popup.pp_tokuten .h02--ls0 {
    font-size: 180%;
    line-height: 1;
  }
}

#popup.pp_contact .h02 + ul.ul_attention, #popup.pp_contact .h02--en + ul.ul_attention, #popup.pp_contact .h02--ls0 + ul.ul_attention, #popup.pp_contact .h02 + ul.ul_attention--border, #popup.pp_contact .h02--en + ul.ul_attention--border, #popup.pp_contact .h02--ls0 + ul.ul_attention--border {
  margin-top: -15px;
}
#popup.pp_contact .dl_notice {
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 800px) {
  #popup.pp_contact .h02 + ul.ul_attention, #popup.pp_contact .h02--en + ul.ul_attention, #popup.pp_contact .h02--ls0 + ul.ul_attention, #popup.pp_contact .h02 + ul.ul_attention--border, #popup.pp_contact .h02--en + ul.ul_attention--border, #popup.pp_contact .h02--ls0 + ul.ul_attention--border {
    margin-top: -15px;
  }
  #popup.pp_contact .dl_notice {
    width: 100%;
    margin: 30px auto 0;
  }
}

#popup_movie {
  z-index: 1001;
}
#popup_movie #movie_wrap {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1400px;
  opacity: 0;
  transform: scale(1.05);
  transition: all 0.4s ease-out 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
}
#popup_movie #movie_wrap iframe {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  aspect-ratio: 16/9;
}
#popup_movie #movie_wrap iframe.shorts {
  aspect-ratio: 9/16;
}
#popup_movie #movie_wrap iframe.on {
  display: block;
}
@media (max-width: 800px) {
  #popup_movie #movie_wrap {
    width: 100%;
    height: auto;
  }
  #popup_movie #movie_wrap iframe.shorts {
    aspect-ratio: 9/16;
    padding: 10px;
  }
}
#popup_movie.on {
  top: 0;
}
#popup_movie.on #movie_wrap {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 800px) {
  #index #splogo {
    margin-bottom: 0;
  }
  #index #content {
    padding: 0;
    background: none;
    box-shadow: none;
  }
  #index #content .content_frame {
    display: none;
  }
  #index #top {
    margin-top: 0;
    width: calc(100% + 20px);
    left: -10px;
  }
  #index #top .image {
    aspect-ratio: 800/1366;
    background-image: url(../img/topimage_sp.jpg);
  }
}/*# sourceMappingURL=style.css.map */