@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
button,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 1em;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
  word-wrap: break-word;
}

ol,
ul {
  list-style: none;
  padding: 0px;
  margin: 0;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  height: auto;
  display: block;
  max-width: 100%;
  image-rendering: -webkit-optimize-contrast;
}

video {
  outline: none;
  filter: drop-shadow(0px 0px rgba(0, 0, 0, 0));
}

svg {
  height: auto;
}

:root {
  --headerHeight: 80px;
  --paddingSection: 80px;
  --paddingLR: 16px;
}
@media screen and (max-width: 959px) {
  :root {
    --headerHeight: 64px;
    --paddingSection: 40px;
  }
}

:root {
  --color_main: #111b42;
}

/*==========　基本設定　==========*/
* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  overflow-wrap: anywhere;
  -webkit-text-size-adjust: 100%;
  font-family: "Kiwi Maru", "Noto Sans JP", sans-serif;
  color: #000;
  line-height: 1.5;
  width: 100%;
}

.body_wrap {
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: calc(1600px + var(--paddingLR) * 2);
  padding-left: var(--paddingLR);
  padding-right: var(--paddingLR);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.inner {
  width: 100%;
  max-width: calc(1000px + var(--paddingLR) * 2);
  padding-left: var(--paddingLR);
  padding-right: var(--paddingLR);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.inner_contents {
  width: 100%;
  max-width: calc(900px + var(--paddingLR) * 2);
  padding-left: var(--paddingLR);
  padding-right: var(--paddingLR);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@media screen and (max-width: 959px) {
  .container .inner,
.container .inner_contents,
.inner .inner_contents {
    padding-left: 0;
    padding-right: 0;
  }
}
.anchor {
  padding-top: var(--headerHeight);
  margin-top: calc(var(--headerHeight) * -1);
}

a:not([class]) {
  color: #04417E;
  text-decoration: underline;
}

@media screen and (min-width: 960px) {
  a:not([class^=btn_]) {
    transition: opacity 0.5s;
  }
  a:not([class^=btn_]):hover {
    opacity: 0.5;
  }
}

/*========== レイアウト用 ==========*/
.padding_section {
  padding-top: var(--paddingSection);
  padding-bottom: var(--paddingSection);
}

.margin_section {
  margin-top: var(--paddingSection);
  margin-bottom: var(--paddingSection);
}
.margin_section:first-child {
  margin-top: 0;
}
.margin_section:last-child {
  margin-bottom: 0;
}

.relative_box {
  position: relative;
}

.absolute_box {
  position: absolute;
}

.position_left {
  top: 0;
  left: 0;
}

.position_right {
  top: 0;
  right: 0;
}

/*==========
フォント
==========*/
.fw_mid {
  font-weight: 500;
}

.fw_bold {
  font-weight: 700;
}

.fw_black {
  font-weight: 900;
}

.fs_12 {
  font-size: 0.75rem;
}
@media screen and (max-width: 959px) {
  .fs_12 {
    font-size: 1rem;
  }
}

.fs_13 {
  font-size: 0.8125rem;
}
@media screen and (max-width: 959px) {
  .fs_13 {
    font-size: 1rem;
  }
}

.fs_14 {
  font-size: 0.875rem;
}
@media screen and (max-width: 959px) {
  .fs_14 {
    font-size: 1rem;
  }
}

.fs_15 {
  font-size: 0.9375rem;
}
@media screen and (max-width: 959px) {
  .fs_15 {
    font-size: 1rem;
  }
}

.fs_16 {
  font-size: 1rem;
}

.fs_17 {
  font-size: 1.0625rem;
}
@media screen and (max-width: 959px) {
  .fs_17 {
    font-size: 1rem;
  }
}

.fs_18 {
  font-size: 1.125rem;
}
@media screen and (max-width: 959px) {
  .fs_18 {
    font-size: 1rem;
  }
}

.fs_19 {
  font-size: 1.1875rem;
}
@media screen and (max-width: 959px) {
  .fs_19 {
    font-size: 1rem;
  }
}

.fs_20 {
  font-size: 1.25rem;
}
@media screen and (max-width: 959px) {
  .fs_20 {
    font-size: 1rem;
  }
}

.fs_21 {
  font-size: 1.3125rem;
}
@media screen and (max-width: 959px) {
  .fs_21 {
    font-size: 1.125rem;
  }
}

.fs_22 {
  font-size: 1.375rem;
}
@media screen and (max-width: 959px) {
  .fs_22 {
    font-size: 1.125rem;
  }
}

.fs_24 {
  font-size: 1.5rem;
}
@media screen and (max-width: 959px) {
  .fs_24 {
    font-size: 1.25rem;
  }
}

.fs_26 {
  font-size: 1.625rem;
}
@media screen and (max-width: 959px) {
  .fs_26 {
    font-size: 1.25rem;
  }
}

.fs_28 {
  font-size: 1.75rem;
}
@media screen and (max-width: 959px) {
  .fs_28 {
    font-size: 1.25rem;
  }
}

.fs_30 {
  font-size: 1.875rem;
}
@media screen and (max-width: 959px) {
  .fs_30 {
    font-size: 1.25rem;
  }
}

.fs_32 {
  font-size: 2rem;
}
@media screen and (max-width: 959px) {
  .fs_32 {
    font-size: 1.5rem;
  }
}

.fs_34 {
  font-size: 2.125rem;
}
@media screen and (max-width: 959px) {
  .fs_34 {
    font-size: 1.5rem;
  }
}

.fs_36 {
  font-size: 2.25rem;
}
@media screen and (max-width: 959px) {
  .fs_36 {
    font-size: 1.5rem;
  }
}

.fs_40 {
  font-size: 2.5rem;
}
@media screen and (max-width: 959px) {
  .fs_40 {
    font-size: 1.5rem;
  }
}

/*==========
汎用クラス
==========*/
.ib {
  display: inline-block;
}

.text_justify {
  text-align: justify;
  text-justify: inter-ideograph;
  -moz-text-align-last: left;
       text-align-last: left;
}

.text_left {
  text-align: left;
}

.text_right {
  text-align: right;
}

.text_center {
  text-align: center;
}

.block_center {
  margin-left: auto;
  margin-right: auto;
}

.sp_only {
  display: none;
}
@media screen and (max-width: 959px) {
  .sp_only {
    display: block;
  }
}

.pc_only {
  display: block;
}
@media screen and (max-width: 959px) {
  .pc_only {
    display: none;
  }
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/*==========
余白指定
==========*/
.mt_1em {
  margin-top: 1em;
}

.mt_2em {
  margin-top: 2em;
}

.mt_08 {
  margin-top: 8px;
}

.mt_16 {
  margin-top: 16px;
}

.mt_24 {
  margin-top: 24px;
}

.mt_32 {
  margin-top: 32px;
}
@media screen and (max-width: 959px) {
  .mt_32 {
    margin-top: 24px;
  }
}

.mt_40 {
  margin-top: 40px;
}
@media screen and (max-width: 959px) {
  .mt_40 {
    margin-top: 24px;
  }
}

.mt_56 {
  margin-top: 56px;
}
@media screen and (max-width: 959px) {
  .mt_56 {
    margin-top: 40px;
  }
}

.mt_64 {
  margin-top: 64px;
}
@media screen and (max-width: 959px) {
  .mt_64 {
    margin-top: 40px;
  }
}

.mt_80 {
  margin-top: 80px;
}
@media screen and (max-width: 959px) {
  .mt_80 {
    margin-top: 40px;
  }
}

.mt_120 {
  margin-top: 120px;
}
@media screen and (max-width: 959px) {
  .mt_120 {
    margin-top: 80px;
  }
}

.mt_160 {
  margin-top: 160px;
}
@media screen and (max-width: 959px) {
  .mt_160 {
    margin-top: 80px;
  }
}

.mb_1em {
  margin-bottom: 1em;
}

.mb_2em {
  margin-bottom: 2em;
}

.mb_08 {
  margin-bottom: 8px;
}

.mb_16 {
  margin-bottom: 16px;
}

.mb_24 {
  margin-bottom: 24px;
}

.mb_32 {
  margin-bottom: 32px;
}

.mb_40 {
  margin-bottom: 40px;
}

.mb_56 {
  margin-bottom: 56px;
}
@media screen and (max-width: 959px) {
  .mb_56 {
    margin-bottom: 40px;
  }
}

.mb_64 {
  margin-bottom: 64px;
}
@media screen and (max-width: 959px) {
  .mb_64 {
    margin-bottom: 40px;
  }
}

.mb_80 {
  margin-bottom: 80px;
}
@media screen and (max-width: 959px) {
  .mb_80 {
    margin-bottom: 40px;
  }
}

.mb_120 {
  margin-bottom: 120px;
}
@media screen and (max-width: 959px) {
  .mb_120 {
    margin-bottom: 80px;
  }
}

.mb_160 {
  margin-bottom: 160px;
}
@media screen and (max-width: 959px) {
  .mb_160 {
    margin-bottom: 80px;
  }
}

.pt_1em {
  padding-top: 1em;
}

.pt_2em {
  padding-top: 2em;
}

.pt_08 {
  padding-top: 8px;
}

.pt_16 {
  padding-top: 16px;
}

.pt_24 {
  padding-top: 24px;
}

.pt_32 {
  padding-top: 32px;
}

.pt_40 {
  padding-top: 40px;
}

.pt_56 {
  padding-top: 56px;
}
@media screen and (max-width: 959px) {
  .pt_56 {
    padding-top: 40px;
  }
}

.pt_64 {
  padding-top: 64px;
}
@media screen and (max-width: 959px) {
  .pt_64 {
    padding-top: 40px;
  }
}

.pt_80 {
  padding-top: 80px;
}
@media screen and (max-width: 959px) {
  .pt_80 {
    padding-top: 40px;
  }
}

.pt_120 {
  padding-top: 120px;
}
@media screen and (max-width: 959px) {
  .pt_120 {
    padding-top: 80px;
  }
}

.pt_160 {
  padding-top: 160px;
}
@media screen and (max-width: 959px) {
  .pt_160 {
    padding-top: 80px;
  }
}

.pb_1em {
  padding-bottom: 1em;
}

.pb_2em {
  padding-bottom: 2em;
}

.pb_08 {
  padding-bottom: 8px;
}

.pb_16 {
  padding-bottom: 16px;
}

.pb_24 {
  padding-bottom: 24px;
}

.pb_32 {
  padding-bottom: 32px;
}

.pb_40 {
  padding-bottom: 40px;
}

.pb_56 {
  padding-bottom: 56px;
}
@media screen and (max-width: 959px) {
  .pb_56 {
    padding-bottom: 40px;
  }
}

.pb_64 {
  padding-bottom: 64px;
}
@media screen and (max-width: 959px) {
  .pb_64 {
    padding-bottom: 40px;
  }
}

.pb_80 {
  padding-bottom: 80px;
}
@media screen and (max-width: 959px) {
  .pb_80 {
    padding-bottom: 40px;
  }
}

.pb_120 {
  padding-bottom: 120px;
}
@media screen and (max-width: 959px) {
  .pb_120 {
    padding-bottom: 80px;
  }
}

.pb_160 {
  padding-bottom: 160px;
}
@media screen and (max-width: 959px) {
  .pb_160 {
    padding-bottom: 80px;
  }
}

/*========== 汎用オブジェクト ==========*/
/*==========
汎用デザイン
==========*/
.text + .text {
  margin-top: 1em;
}

.aside {
  font-size: 0.75rem;
}

.aside_area {
  margin-top: 24px;
}

.fixed_deco {
  position: fixed;
  inset: 0;
  z-index: 10;
  pointer-events: none;
}
.fixed_deco .deco_01 {
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(144px, 20vw, 400px);
  aspect-ratio: 1/1;
  background: top left/contain url("../img/common/body_top_L.svg") no-repeat;
}
.fixed_deco .deco_02 {
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(144px, 20vw, 400px);
  aspect-ratio: 1/1;
  background: top right/contain url("../img/common/body_top_R.svg") no-repeat;
}
.fixed_deco .deco_03 {
  transition: bottom 0.5s;
  position: absolute;
  bottom: -100%;
  left: 0;
  width: clamp(100px, 15vw, 240px);
  aspect-ratio: 1/1;
  background: bottom left/contain url("../img/common/icon_speaker_L.svg") no-repeat;
  -webkit-animation: 2s steps(3, end) infinite rotate_frame;
          animation: 2s steps(3, end) infinite rotate_frame;
}
.fixed_deco .deco_03.trigger {
  bottom: -2%;
}
.fixed_deco .deco_04 {
  transition: bottom 0.5s;
  position: absolute;
  bottom: -100%;
  right: 0;
  width: clamp(100px, 15vw, 240px);
  aspect-ratio: 1/1;
  background: bottom right/contain url("../img/common/icon_speaker_R.svg") no-repeat;
  -webkit-animation: 2s steps(3, end) infinite rotate_frame_rev;
          animation: 2s steps(3, end) infinite rotate_frame_rev;
}
.fixed_deco .deco_04.trigger {
  bottom: -2%;
}
.fixed_deco .deco_foot {
  transition: bottom 0.5s;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  aspect-ratio: 1/1;
  background: center bottom/contain url("../img/common/body_foot_pc.svg") no-repeat;
  z-index: -1;
}
.fixed_deco .deco_foot.trigger {
  bottom: -40px;
}
.fixed_deco .deco_foot.remove {
  bottom: -100%;
}
@media screen and (max-width: 639px) {
  .fixed_deco .deco_foot {
    background: center bottom/contain url("../img/common/body_foot_sp.svg") no-repeat;
  }
}

main {
  position: relative;
}

body {
  background-color: #f7f3e9;
}

.section_bg {
  background-color: #fff;
  border-radius: 20px;
  padding: calc(var(--paddingSection) * 0.75) var(--paddingSection);
}
@media screen and (max-width: 959px) {
  .section_bg {
    border-radius: 10px;
    padding: calc(var(--paddingSection) * 0.75) var(--paddingLR);
  }
}

.section_border {
  border-top: 1px solid var(--color_main);
  border-bottom: 1px solid var(--color_main);
  padding-top: calc(var(--paddingSection) * 0.75);
  padding-bottom: var(--paddingSection);
}
.section_border + .section_border {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.tba {
  font-size: clamp(1rem, 2vw, 1.5rem);
  text-align: center;
  margin: calc(var(--paddingSection) * 2) 0;
}

.andmore {
  font-size: clamp(1rem, 2vw, 1.5rem);
  text-align: center;
  margin-top: 2em;
}

.underline {
  text-decoration: underline;
}

.map_wrap iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.archive_area {
  font-family: "cooper-black-std", serif;
  background-color: #27345a;
  color: #fff;
  text-align: center;
}

.list_archive {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  justify-content: center;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.list_archive a {
  color: inherit;
  text-decoration: none;
}

.layout_ticket .flex {
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.layout_ticket .flex > * {
  width: calc((100% - 40px) / 2);
}
.layout_ticket .title {
  border-left: 6px solid #27345a;
  border-bottom: 2px solid #27345a;
  font-size: 1.25rem;
  padding: 0.125em 1em;
  margin-bottom: 1rem;
}
.layout_ticket .date {
  margin-bottom: 1rem;
}
.layout_ticket .price {
  font-size: 1.5rem;
  font-weight: 500;
}
.layout_ticket .btn_01 {
  margin-top: 1rem;
  color: #fff;
}
.layout_ticket .btn_01::before {
  background-color: var(--color_main);
}
.layout_ticket .btn_01::after {
  background-color: #fff;
}
.layout_ticket .aside {
  margin-top: 1rem;
}
.layout_ticket .row {
  padding: var(--paddingLR);
  border: 2px solid var(--color_main);
  background-color: #fff;
  border-radius: 10px;
}
.layout_ticket .disable {
  background-color: #ccc;
}
.layout_ticket .attention {
  color: brown;
  margin-bottom: 1rem;
}
@media screen and (max-width: 959px) {
  .layout_ticket .flex > * {
    width: 100%;
  }
  .layout_ticket .title {
    font-size: 1.125rem;
    padding: 0.125em 0.5em;
  }
  .layout_ticket .price {
    font-size: 1.25rem;
  }
}

.layout_flex {
  display: flex;
  flex-wrap: wrap;
  gap: 24px var(--paddingLR);
}

/*==========
リスト
==========*/
.list_artist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--paddingLR);
}
.list_artist .img_area {
  aspect-ratio: 3/2;
}
.list_artist .img_area img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.list_artist .name_area {
  font-size: 1.125rem;
  line-height: 1.25;
  padding: 0.25em 0.5em;
  text-align: center;
}
.list_artist .new {
  position: relative;
}
.list_artist .new::after {
  content: "NEW";
  background-color: firebrick;
  color: #fff;
  position: absolute;
  font-size: 0.75rem;
  padding: 0.125em 1em;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 639px) {
  .list_artist {
    grid-template-columns: repeat(2, 1fr);
  }
  .list_artist .name_area {
    font-size: 0.875rem;
  }
}

.list_news {
  max-height: 15em;
  overflow: auto;
  font-size: 1.25rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.list_news > * {
  border-bottom: 1px dashed var(--color_main);
  padding-bottom: 0.75em;
}
.list_news > *:not(:last-child) {
  margin-bottom: 1em;
}
.list_news .flex {
  display: flex;
  gap: 0.5em 2em;
}
.list_news time {
  font-size: 0.875em;
  min-width: 6em;
}
.list_news .category {
  font-size: 0.75em;
  padding: 0.25em 0.5em;
  background-color: var(--color_main);
  color: #fff;
  margin-bottom: auto;
  min-width: 5em;
  text-align: center;
}
.list_news .text_area {
  flex: 1;
  line-height: 1.25;
}
.list_news .title + .text {
  margin-top: 0.25em;
}
.list_news .text {
  font-size: 1rem;
}
@media screen and (max-width: 959px) {
  .list_news {
    font-size: 1rem;
  }
  .list_news .flex {
    flex-wrap: wrap;
  }
  .list_news .text_area {
    flex: 0 1 auto;
    width: 100%;
  }
  .list_news .category {
    margin-left: auto;
  }
  .list_news .text {
    font-size: 0.875rem;
  }
}

.dl_01 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.dl_01 dt,
.dl_01 dd {
  padding: 0.5em 0;
}
.dl_01 dt:not(:last-of-type),
.dl_01 dd:not(:last-of-type) {
  margin-bottom: 2em;
}
.dl_01 dt {
  border-right: 4px solid var(--color_main);
  padding-right: 0.5em;
  width: 160px;
}
.dl_01 dd {
  width: calc(100% - 160px);
  padding-left: 1.5em;
}
@media screen and (max-width: 959px) {
  .dl_01 dt,
.dl_01 dd {
    width: 100%;
  }
  .dl_01 dt {
    border-right: none;
    border-bottom: 2px solid var(--color_main);
  }
  .dl_01 dt:not(:last-of-type) {
    margin-bottom: 0em;
  }
  .dl_01 dd {
    padding-left: 1em;
  }
  .dl_01 dd:not(:last-of-type) {
    margin-bottom: 1em;
  }
}

.dl_02 dt {
  font-size: 1.125rem;
  border-bottom: 2px solid var(--color_main);
  padding-bottom: 0.25em;
  margin-bottom: 0.75em;
}
.dl_02 dd + dt {
  margin-top: 1.5rem;
}

.dl_faq {
  margin-top: 24px;
}
.dl_faq dt {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.125;
  border: 2px solid var(--color_main);
  background-color: #fff;
  color: var(--color_main);
  padding: 0.75em 2.5em 0.75em 2.5em;
  text-indent: -1.5em;
  border-radius: 5px;
  position: relative;
  cursor: pointer;
}
.dl_faq dt::before {
  content: "Q.";
  font-family: "cooper-black-std", serif;
  margin-right: 0.25em;
}
.dl_faq dt::after {
  content: "";
  width: 0.75em;
  height: 0.5em;
  background-color: var(--color_main);
  position: absolute;
  right: 1em;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: transform 0.5s;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.dl_faq dt.open::after {
  transform: rotate(180deg);
}
.dl_faq dt:not(:first-of-type) {
  margin-top: 1em;
}
.dl_faq dd {
  display: none;
  border: 2px solid var(--color_main);
  border-radius: 5px;
  background-color: rgb(240, 246, 255);
  padding: calc(var(--paddingLR) + 1em) var(--paddingLR) var(--paddingLR);
  margin-top: -1em;
}
@media screen and (max-width: 959px) {
  .dl_faq dt {
    font-size: 1rem;
  }
  .dl_faq dd {
    font-size: 0.875rem;
  }
}

.list_circle > * {
  position: relative;
  padding-left: 1.25em;
  margin-bottom: 0.5em;
}
.list_circle > *::before, .list_circle > *::after {
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  border: 1px solid var(--color_main);
  position: absolute;
}
.list_circle > *::before {
  background-color: var(--color_main);
  top: 0.5em;
  left: 0;
}
.list_circle > *::after {
  background-color: transparent;
  left: 0.2em;
  top: 0.625em;
}

form input,
form textarea {
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
  padding: 0.5em 0.75em;
  margin: -0.5em 0;
  font-family: inherit;
  font-size: inherit;
}
form input[type=radio],
form input[type=checkbox],
form input[type=number] {
  accent-color: var(--color_main);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
form .check_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5em 1em;
  padding: 0.5em 0;
  margin: -0.5em 0;
}
form .check_wrap input[type=radio],
form .check_wrap input[type=checkbox],
form .check_wrap label {
  cursor: pointer;
}
form .check_wrap label {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
form button {
  cursor: pointer;
}
form .required::after {
  content: "*";
  color: #ff0000;
}
@media screen and (max-width: 959px) {
  form .dl_01 dd {
    margin-top: 1em;
  }
  form label {
    width: 100%;
  }
}

.indent_flex {
  display: flex;
}
.indent_flex > * {
  margin-top: 0;
}
.indent_flex > *:not(:first-child) {
  flex: 1;
}
@media screen and (max-width: 959px) {
  .indent_flex {
    flex-direction: column;
  }
}

/*==========
ボタン
==========*/
.btn_01 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.25;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--color_main);
  padding: 0.75em 2em;
  margin-bottom: 0.325em;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.btn_01::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: 1px solid var(--color_main);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.btn_01::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--color_main);
  border: 1px solid var(--color_main);
  position: absolute;
  left: 0.25em;
  top: 0.25em;
  z-index: -2;
}
@media screen and (min-width: 960px) {
  .btn_01 {
    transition: transform 0.5s;
  }
  .btn_01::after {
    transition: left 0.5s, top 0.5s;
  }
  .btn_01:hover {
    transform: translate(0.25em, 0.25em);
  }
  .btn_01:hover::after {
    top: 0;
    left: 0;
  }
}
@media screen and (max-width: 959px) {
  .btn_01 {
    font-size: 1rem;
    padding: 0.75em 0.75em;
  }
}

/*==========
タイトル
==========*/
.title_01 {
  font-size: 2.5rem;
  line-height: 1.25;
  text-align: center;
  margin-bottom: 1em;
}
.title_01:not(:first-child) {
  margin-top: 2em;
}
@media screen and (max-width: 959px) {
  .title_01 {
    font-size: 1.5rem;
  }
}

.title_02 {
  font-size: 1.5rem;
  line-height: 1.25;
  background-color: var(--color_main);
  color: #fff;
  padding: 0.25em 1em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 0.5em;
}
.title_02:not(:first-child) {
  margin-top: 2em;
}
@media screen and (max-width: 959px) {
  .title_02 {
    font-size: 1.125rem;
  }
}

.label_01 {
  font-size: 1.25rem;
  background-color: var(--color_main);
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
  line-height: 1;
  padding: 0.25em 1em;
}
@media screen and (max-width: 959px) {
  .label_01 {
    font-size: 1rem;
  }
}

/*========== 汎用レイアウト ==========*/
/*==========
ヘッダー
==========*/
#header {
  --menuSize: 120px;
  position: fixed;
  width: 100%;
  z-index: 99;
}
#header .menu_area {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  padding-top: calc(var(--paddingSection) + var(--menuSize) + var(--paddingLR));
  padding-left: var(--paddingLR);
  padding-right: var(--paddingLR);
  padding-bottom: var(--paddingSection);
  -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 50%, 0% 50%);
          clip-path: polygon(0 50%, 100% 50%, 100% 50%, 0% 50%);
  transition: -webkit-clip-path 0.5s;
  transition: clip-path 0.5s;
  transition: clip-path 0.5s, -webkit-clip-path 0.5s;
  will-change: clip-path;
  z-index: 10;
  pointer-events: none;
}
#header .menu_area a {
  pointer-events: auto;
}
@media screen and (max-width: 959px) {
  #header {
    --menuSize: 64px;
  }
}

.list_header {
  font-size: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5em 2em;
}
.list_header a {
  color: #fff;
  padding: 0.5em 1em;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 959px) {
  .list_header {
    font-size: 1rem;
  }
}

/*== ボタン ==*/
#hamburger_btn {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
  background-color: var(--color_main);
  width: var(--menuSize);
  height: var(--menuSize);
  border-radius: 50%;
  margin: var(--paddingLR);
  padding: 0.5rem;
  cursor: pointer;
}
#hamburger_btn .menu {
  text-align: center;
  font-size: 0.875rem;
  color: #fff;
}
#hamburger_btn .border {
  margin-top: 0.25rem;
  width: 70%;
  height: 2rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  gap: 6px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
#hamburger_btn .border span {
  transform-origin: center;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all 0.5s;
  will-change: transform, margin;
  border-radius: 100px;
}
@media screen and (max-width: 959px) {
  #hamburger_btn {
    margin: calc(var(--paddingLR) / 2);
  }
  #hamburger_btn .menu {
    font-size: 0.5rem;
  }
  #hamburger_btn .border {
    height: 1rem;
    gap: 5px;
  }
  #hamburger_btn .border span {
    height: 1px;
  }
}

/*== エリア外 ==*/
#hamburger_bg {
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background-color: steelblue;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 50%, 0% 50%);
          clip-path: polygon(0 50%, 100% 50%, 100% 50%, 0% 50%);
  transition: -webkit-clip-path 0.5s;
  transition: clip-path 0.5s;
  transition: clip-path 0.5s, -webkit-clip-path 0.5s;
  will-change: clip-path;
}

#header.open .menu_area {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
#header.open #hamburger_btn .border {
  gap: 0;
}
#header.open #hamburger_btn .border span {
  margin-bottom: 0;
}
#header.open #hamburger_btn .border span:nth-of-type(1) {
  transform: rotate(20deg);
  margin-bottom: -1px;
}
@media screen and (max-width: 959px) {
  #header.open #hamburger_btn .border span:nth-of-type(1) {
    margin-bottom: 0;
  }
}
#header.open #hamburger_btn .border span:nth-of-type(2) {
  height: 0;
}
#header.open #hamburger_btn .border span:nth-of-type(3) {
  width: 100%;
  transform: rotate(-20deg);
}
#header.open #hamburger_bg {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/*==========
ハンバーガーメニュー
==========*/
/*==========
フッター
==========*/
#footer {
  background-color: lightcyan;
  padding-bottom: calc(var(--paddingSection) * 2);
}

/*==========
コピーライト
==========*/
.copyrights {
  letter-spacing: 0.1em;
  padding: 1em 0;
  font-size: 10px;
  background-color: #f1c81e;
}

/*==========
PageToTop
==========*/
#pagetop {
  cursor: pointer;
  width: 6em;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  font-size: 0.75rem;
  line-height: 1.25;
  text-align: center;
  background-color: var(--color_main);
  border: 1px solid #fff;
  color: #fff;
  border-radius: 50%;
  position: fixed;
  bottom: 0;
  right: 14em;
  margin: var(--paddingLR);
  z-index: 98;
  transition: transform 0.5s;
  transform: translateY(calc(100% + var(--paddingLR)));
}
#pagetop.view {
  transform: translateY(0%);
}
@media screen and (max-width: 959px) {
  #pagetop {
    font-size: 0.625rem;
    right: 6em;
    margin: calc(var(--paddingLR) * 0.5);
  }
}

/*==========
Effect
==========*/
@-webkit-keyframes rotate_infinite {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate_infinite {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotate_frame {
  0% {
    transform: rotate(-25deg);
  }
  100% {
    transform: rotate(5deg);
  }
}
@keyframes rotate_frame {
  0% {
    transform: rotate(-25deg);
  }
  100% {
    transform: rotate(5deg);
  }
}
@-webkit-keyframes rotate_frame_rev {
  0% {
    transform: rotate(25deg);
  }
  100% {
    transform: rotate(-5deg);
  }
}
@keyframes rotate_frame_rev {
  0% {
    transform: rotate(25deg);
  }
  100% {
    transform: rotate(-5deg);
  }
}
.trigger .fx_fadeIn, .trigger.fx_fadeIn {
  -webkit-animation-name: fx_fadeIn;
          animation-name: fx_fadeIn;
}
.trigger .fx_fadeUp, .trigger.fx_fadeUp {
  -webkit-animation-name: fx_fadeUp;
          animation-name: fx_fadeUp;
}
.trigger .fx_slideLeft, .trigger.fx_slideLeft {
  -webkit-animation-name: fx_slideLeft;
          animation-name: fx_slideLeft;
}
.trigger .fx_slideRight, .trigger.fx_slideRight {
  -webkit-animation-name: fx_slideRight;
          animation-name: fx_slideRight;
}

.fx_fadeIn {
  opacity: 0;
  will-change: opacity;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

@-webkit-keyframes fx_fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fx_fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fx_fadeUp {
  opacity: 0;
  transform: translateY(40px);
  will-change: transform, opacity;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

@-webkit-keyframes fx_fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes fx_fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.fx_slideLeft {
  will-change: transform, opacity;
  transform: translateX(-40px);
  opacity: 0;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

@-webkit-keyframes fx_slideLeft {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fx_slideLeft {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fx_slideRight {
  will-change: transform, opacity;
  transform: translateX(40px);
  opacity: 0;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

@-webkit-keyframes fx_slideRight {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fx_slideRight {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}