@charset "UTF-8";
/* common
====================================================================================================================================== */


/*段落*/
table p {
  margin-bottom: 0;
}

/*カラー*/
.blue {
  color: #58BADB;
}

.red {
  color: #d00;
}

.yellow {
  color: #E6A100;
}

.green {
  color: #8BAD00;
}


/*container*/
.section_box {
  clear: both;
  padding: 0;
  margin-bottom: 5rem;
}
.section_box .section_box {
  margin-bottom: 2rem;
}
.section_box .img_box {
  text-align: center;
  margin-bottom: 1.5rem;
}
.section_box *:last-child {
  margin-bottom: 0 !important;
}

/*3列ボックス*/
.box_3_column {
  overflow: hidden;
  margin: 0 -1.5% 1.5em;
}
.box_3_column .box {
  float: left;
  width: 33.3333333%;
  padding: 0 1.5%;
  margin-bottom: 2em;
}

/*2列ボックス*/
.box_2_column {
  overflow: hidden;
  margin: 0 -1.5% 1.5em;
}
.box_2_column .box {
  float: left;
  width: 50%;
  padding: 0 1.5%;
  margin-bottom: 3%;
}

/*索引
.list_box {
  margin-bottom: 20px;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.04);
  position: relative;
}
.list_box:after {
  content: "";
  display: block;
  width: 1.06em;
  aspect-ratio: 1/1;
  background-color: #F7CB63;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  position: absolute;
  right: 0;
  bottom: 0;
}
.list_box a, .list_box .no_link {
  display: flex;
  align-items: center;
  gap: 1.4em;
  padding: 10px;
}
.list_box a {
  text-decoration: none;
}
.list_box a .title {
  text-decoration: underline;
}
.list_box .icon_image {
  width: 130px;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  margin-bottom: 0;
  overflow: hidden;
}
.list_box .icon_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}
.list_box .main_area {
  flex-grow: 1;
}
.list_box .time {
  font-family: "Nunito", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 0.8rem;
  font-weight: normal;
  line-height: 1;
  margin-bottom: 0.4em;
}
.list_box .title {
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 0;
}
.list_box .comment_text {
  font-size: 0.8rem;
  font-weight: normal;
  line-height: 1.6;
  margin-top: 0.45em;
}
.list_box .comment_text p {
  margin-bottom: 0;
}
.list_box:not(:has(.icon_image)) .main_area {
  padding: 14px;
}
*/
/*
@media (hover: hover) {
 .list_box a:hover .title {
    text-decoration: none;
  }
}
#conts .list_box .icon_image img {
  border-radius: 0;
}*/

.listbox_3_col {
  display: inline-block;
  vertical-align: top;
  padding: 0;
  width: 31%;
  margin: 0 0.85% 20px;
  text-align: center;
}
.listbox_3_col a, .listbox_3_col .no_link {
  display: block;
  padding: 2.7em 1.7em 1.4em;
}
.listbox_3_col a .title {
  text-decoration: none;
}
.listbox_3_col .icon_image {
  width: 100px;
  margin: 0 auto 1.3em;
}
.listbox_3_col .title {
  font-size: 1.2rem;
}
.listbox_3_col .comment_text {
  margin-top: 0.2em;
}

@media (hover: hover) {
  .listbox_3_col a:hover .title {
    text-decoration: underline;
  }
}
/*image背景ボタンリスト*/
.bg_img_btn a {
  display: block;
  background: no-repeat;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}


/* ２列ボタン */
.button_2_column {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2em;
}
.button_2_column .btn {
  display: block;
  width: 48%;
  margin-bottom: 1.1em;
}
.button_2_column .btn a {
  display: block;
  margin: 0;
  width: 100%;
}





/* color box
====================================================================================================================================== */
/*box*/
.point_box {
  background-color: #E1EAED;
  border-radius: 20px;
  margin-bottom: 20px;
}
.point_box h3, .point_box .style_h3 {
margin: 0 24px !important;
padding: 24px 0 15px 0 !important;
border-bottom:2px solid #fff !important;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.point_box .point_box_inner {
  padding: 24px;
}
.point_box .point_box_inner *:last-child {
  margin-bottom: 0 !important;
}
.point_box.bg_yellow {
  background-color: #FAEFCD;
}
.point_box.bg_yellow h3, .point_box.bg_yellow .style_h3 {
  background-color: #FFE48C;
  color: #4D6C80;
}
.point_box.bg_green {
  background-color: #EAF2CE;
}
.point_box.bg_green h3, .point_box.bg_green .style_h3 {
  background-color: #B6DB27;
  color: #4D6C80;
}
.point_box.with_icon {
  padding-top: 3em;
  position: relative;
}
.point_box.with_icon:before {
  content: "";
  display: block;
  width: 1.8em;
  aspect-ratio: 41/56;
  background: url(../images/illust/clover.svg) no-repeat center top;
  background-size: contain;
  position: absolute;
  top: -0.76em;
  left: 50%;
  translate: -50%;
}
.point_box.with_icon h3.simple {
  line-height: 1.2;
  text-align: center;
}
.point_box.with_icon .point_box_inner {
  padding-top: 20px;
}



/*adjust*/
.clear {
  clear: both;
}

.ma0 {
  margin: 0 !important;
}

.mab0 {
  margin-bottom: 0 !important;
}

.mab5 {
  margin-bottom: 5px !important;
}

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

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

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

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

.mab1em {
  margin-bottom: 1em !important;
}

.mab15em {
  margin-bottom: 1.5em !important;
}

.mab2em {
  margin-bottom: 2em !important;
}

.mab25em {
  margin-bottom: 2.5em !important;
}

.mab3em {
  margin-bottom: 3em !important;
}

.mab35em {
  margin-bottom: 3.5em !important;
}

.mat0 {
  margin-top: 0 !important;
}

.mat5 {
  margin-top: 5px !important;
}

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

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

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

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

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

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

.mar10 {
  margin-right: 10px !important;
}

.mar20 {
  margin-right: 20px !important;
}

.mal10 {
  margin-left: 10px !important;
}

.mal20 {
  margin-left: 20px !important;
}

.pa0 {
  padding: 0 !important;
}

.pat0 {
  padding-top: 0 !important;
}

.pab0 {
  padding-bottom: 0 !important;
}

.pat15 {
  padding-top: 15px !important;
}

/*font size*/
.font_xs {
  font-size: 0.8em !important;
}

.font_sm {
  font-size: 0.9em !important;
}

.font_la {
  font-size: 1.2em !important;
}

.font_xl {
  font-size: 1.4em !important;
}

.font_normal {
  font-weight: normal !important;
}

.font_bold {
  font-weight: bold !important;
}

.text_center {
  text-align: center !important;
}

.text_right {
  text-align: right !important;
}

.text_left {
  text-align: left !important;
}

.font_0 {
  font-size: 0;
}

.font_plus {
  font-size: 1.07em;
}

/*kerning*/
.kerning0 {
  letter-spacing: 0;
}

.kerning {
  letter-spacing: -0.05em;
}

.kerning01 {
  letter-spacing: -0.1em;
}

.kerning02 {
  letter-spacing: -0.25em;
}

.kerning03 {
  letter-spacing: -0.5em;
}

.kerning_plus {
  letter-spacing: 0.25em;
}

/*行間詰め*/
.line_height_min {
  line-height: 1.6;
}

/*文字間*/
.letter {
  letter-spacing: 0.08em;
}

/*タイトル調整用*/
.kerning_tit {
  letter-spacing: 0.27em;
}

.kerning_tit_m {
  letter-spacing: 0.17em;
}

.kerning_tit_m02 {
  letter-spacing: 0.1em;
}

.font_num {
  font-size: 1.05em;
}

/*文字にアンチエイリアスを効かせる*/
.font_smoothing {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 文章枠用CSS
====================================================================================================================================== */
p,
.common_box .text_box {
  margin-bottom: 2rem;
}

img.brclear {
  display: block;
  margin: 0 auto 1em;
}

/*スタンダード（画像右／左寄せ）*/
.common_box {
  overflow: visible;
  display: flow-root;
}

.common_box .img_box, :not(.img_box) img.left {
  float: left;
  margin-right: 20px;
  max-width: 50%;
  width: auto;
  margin-top: 0.6em;
  font-size: 85%;
  line-height: 1.7;
}

.common_box .img_box.auto_width img {
  width: auto;
}

.common_box .text_box {
  display: inline;
  overflow: hidden;
}

/*右*/
.common_box.right .img_box, :not(.img_box) img.right {
  float: right;
  margin-right: 0;
  margin-left: 20px;
}



/*画像3つ並び*/
.photo_3column {
  overflow: hidden;
  text-align: center;
}

.photo_3column img {
  float: left;
  width: 33.3333%;
}

/*画像3つ並び（画像にフレームをつける）*/
.photo_frame_3column {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-around;
  margin-bottom: 2.5em;
}
.photo_frame_3column .photo_column {
  width: 31%;
}
.photo_frame_3column img {
  width: 100%;
  height: auto;
  border: 4px solid #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/*画像3つ並び（ページ内）*/
.photo_3column_in {
  margin: 2em 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.photo_3column_in img {
  width: 100%;
  height: auto;
}

/*画像2つ並び（ページ内）*/
.photo_2column_in {
  margin: 2em 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.photo_2column_in img {
  width: 100%;
  height: auto;
}

/* ２列入力枠 */
.two_column_box {
  margin-bottom: 3em;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.two_column_box .border_box {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
  margin-bottom: 0;
}
.two_column_box .border_box h3 {
  display: grid;
  place-items: center;
}
.two_column_box .half_box .button_area a, .two_column_box .box .button_area a, .two_column_box .border_box .button_area a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  min-width: initial;
  width: 100%;
  position: relative;
}
.two_column_box .half_box .button_area a:after, .two_column_box .box .button_area a:after, .two_column_box .border_box .button_area a:after {
  position: absolute;
  top: 50%;
  right: 0.9em;
  translate: 0 -50%;
}
.two_column_box .half_box > *:last-child, .two_column_box .box > *:last-child, .two_column_box .border_box > *:last-child {
  margin-bottom: 0;
}

.qa_box {
  background-color: #fff;
border:3px solid #E1EBED;border-radius: 15px;-webkit-border-radius: 15px;-moz-border-radius: 15px;
  margin-bottom: 15px;
}
/*
.qa_box.opened .qa_title p:after {
  background-image: url(../images/icon/acc_close.svg);
}
 */

.qa_box .qa_title p:after {
content: "";
position: absolute;
right: 0;
top: 38%;
transition: all 0.2s ease-in-out;
display: block;
width: 10px;
height: 10px;
border-top: solid 2px #39A3C4;
border-right: solid 2px #39A3C4;
-webkit-transform: rotate(135deg);
transform: rotate(135deg);
}

.qa_box.opened .qa_title p:after {
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
top: 42%;
}


.qa_box .qa_title {
  text-decoration: none;
  padding: 24px;
  transition: 0.2s;cursor: pointer;
}
.qa_box .qa_title p {
  font-size: 1.1rem;
  font-weight: ;
  line-height: 1.6;
  letter-spacing: 0.02em;
  margin-bottom: 0;
  position: relative;
  padding-right: 1.3em;
}
/*
.qa_box .qa_title p:after {
  content: "";
  display: block;
  width: 1.07em;
  aspect-ratio: 1/1;
  background: url(../images/icon/acc_open.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
}
 */
.qa_box .qa_answer {
  padding: 0 24px 24px;
}
.qa_box .qa_answer .inner {
  border-top:2px solid #E1EBED;
  padding-top: 24px;
}
.qa_box .qa_answer p {
  margin-bottom: 0;
}

@media (hover: hover) {
  .qa_box .qa_title:hover {
    cursor: pointer;
    text-decoration: none;
  }
}
.top_info_area {
  margin-bottom: 55px;
  display: flex;
}
.top_info_area .top_info_box {
  width: 50%;
}
.top_info_area .flame {
  display: contents;
}

.top_info_box {
  background-color: #eee;
  display: flex;
  align-items: center;
  padding: 1em 50px;
  font-size: 1.275rem;
  font-weight: bold;
}
.top_info_box .info_title {
  white-space: nowrap;
  margin-bottom: 0;
  margin-right: 1.2em;
}
.top_info_box .detail_area {
  flex-grow: 1;
  line-height: 1.4;
}
.top_info_box .detail_area p {
  margin-bottom: 0;
}
.top_info_box.open_info .info_title {
  background: url(../images/icon_time.svg) no-repeat left center;
  background-size: 1.18em auto;
  padding-left: 1.8em;
}
.top_info_box.ticket_info {
  background-color: #e6e6e6;
}
.top_info_box.ticket_info .info_title {
  background: url(../images/icon_ticket.svg) no-repeat left center;
  background-size: 1.6em auto;
  padding-left: 2em;
}

.division {
  display: inline-block;
  vertical-align: top;
  width: 46.5%;
  margin: 0 1.5% 3.5rem;
}
.division .title_area {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.division .text_area {
  width: calc(100% - 150px - 20px);
}
.division .text_area .icon {
  width: 90px;
  aspect-ratio: 1/1;
  margin: 0 auto;
  text-align: center;
}
.division .text_area .icon img {
  width: 87%;
}
.division .text_area h3 {
  font-size: 1.4rem;
  text-align: center;
  color: #58BADB;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}
.division .text_area .comment {
  font-size: 0.9rem;
}
.division .text_area .comment p {
  margin-bottom: 0;
}
.division .photo_area {
  width: 150px;
  aspect-ratio: 150/203;
}
.division .photo_area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.division .point_box {
  margin-bottom: 0;
}
.division.color_yellow .text_area h3 {
  color: #E6A100;
}
.division.color_green .text_area h3 {
  color: #8BAD00;
}

@media screen and (max-width: 768px) {

  /* ２列ボタン */
  .button_2_column .btn {
    width: 49%;
    margin-bottom: 1em;
  }
  .button_area {
    margin-bottom: 16px;
  }

  /*3列ボックス*/
  .box_3_column {
    margin: 0 -0.6% 1.5em;
  }
  .box_3_column .box {
    padding: 0 0.6%;
    margin-bottom: 1.5em;
  }
  /*2列ボックス*/
  .box_2_column {
    overflow: hidden;
    margin: 0 -0.6% 1.5em;
  }
  .box_2_column .box {
    padding: 0 0.6%;
    margin-bottom: 1.5em;
  }
  /*画像3つ並び（ページ内）*/
  .photo_3column_in {
    gap: 15px;
  }
  /*画像2つ並び（ページ内）*/
  .photo_2column_in {
    gap: 15px;
  }
  /* ２列入力枠 */
  .two_column_box {
    gap: 20px;
  }
  /*索引*/
  .list_box {
    margin-bottom: 16px;
  }
  /*横並びボックス*/
  .listbox_3_col {
    width: 48%;
    margin-left: 0.8%;
    margin-right: 0.8%;
  }
  .division {
    width: 48%;
    margin-left: 0.8%;
    margin-right: 0.8%;
  }
}
@media screen and (max-width: 540px) {

  .common_box .img_box, :not(.img_box) img.left {
    display: block;
    float: none;
    text-align: center;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: auto;
    max-width: initial;
  }
  .common_box.right .img_box, :not(.img_box) img.right {
    float: none;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  :not(.img_box) img.left, :not(.img_box) img.right {
    margin-bottom: 1em;
  }
  /*news list*/
  #conts .article_list li {
    display: block;
    margin-bottom: 1.6em;
  }
  #conts .article_list li:before {
    display: none;
  }
  #conts .article_list li time {
    font-size: 0.8rem;
    line-height: 1;
    margin-bottom: 0.2em;
  }

  /* ２列ボタン */
  .button_2_column {
    display: block;
  }
  .button_2_column .btn {
    width: 100%;
    margin-bottom: 0.5em;
  }
  /*画像3つ並び（ページ内）*/
  .photo_3column_in {
    gap: 8px;
  }
  /*画像2つ並び（ページ内）*/
  .photo_2column_in {
    gap: 8px;
  }
  /*box*/
  .point_box .point_box_inner {
    padding: 20px;
  }
  /* ２列入力枠 */
  .two_column_box {
    display: block;
  }
  .two_column_box .border_box {
    display: block;
  }
  .two_column_box .border_box h3 {
    display: block;
  }
  .two_column_box .half_box, .two_column_box .box, .two_column_box .border_box {
    margin-bottom: 1.5em;
  }
  /*3列ボックス*/
  .box_3_column {
    margin: 0 0 1.5em;
  }
  .box_3_column .box {
    float: none;
    width: 100%;
    max-width: 280px;
    padding: 0;
    margin: 0 auto 1.5em;
  }
  /*2列ボックス*/
  .box_2_column {
    overflow: hidden;
    margin: 0 0 1.5em;
  }
  .box_2_column .box {
    float: none;
    width: 100%;
    padding: 0;
    margin-bottom: 1.5em;
  }
  .button_area {
    flex-direction: column;
    align-items: center;
  }
  /*索引*/
  .list_box a, .list_box .no_link {
    gap: 1.36em;
  }
  .list_box .icon_image {
    width: 90px;
  }
  .list_box:not(:has(.icon_image)) .main_area {
    padding: 10px;
  }
  /*横並びボックス*/
  .listbox_3_col {
    width: 47.5%;
  }
  .listbox_3_col .icon_image {
    width: 70px;
  }
  .listbox_3_col a, .listbox_3_col .no_link {
    padding: 1.8em 1.2em 1em;
  }
  .top_info_area {
    margin-bottom: 35px;
    display: block;
  }
  .top_info_area .top_info_box {
    width: auto;
  }
  .qa_box .qa_title {
    padding: 20px;
  }
  .qa_box .qa_answer {
    padding: 0 20px 20px;
  }
  .qa_box .qa_answer .inner {
    padding-top: 20px;
  }
  .division {
    display: block;
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }
}
