@charset "UTF-8";
/*
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

	reset

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
*/
*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-print-color-adjust: exact;
  margin: 0;
  padding: 0;
}

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

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: normal;
}

li {
  list-style: none;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

input,
textarea,
select {
  *font-size: 100%;
}

.clearfix::after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

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

img {
  -webkit-backface-visibility: hidden;
  vertical-align: bottom;
  user-select: none;
  pointer-events: none;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}
a[href],
label[for],
button,
input[type=button],
input[type=submit],
input[type=reset],
input[type=image],
input[type=radio],
input[type=checkbox],
select {
  cursor: pointer;
}

a[href^="tel:"] {
  cursor: default;
}

@media print {
  * {
    -webkit-print-color-adjust: exact;
  }
}
@media (prefers-reduced-motion: reduce) {
  /* .anime_on クラスが付いていない全ての要素のアニメーションを無効化 */
  *:not(.anime_on) {
    animation-duration: 0.01ms !important;
    animation-delay: unset !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-delay: unset !important;
    transition-duration: 0.01ms !important;
    view-transition-name: none !important;
  }
  /* .anime_on クラスが付いている要素の擬似要素のアニメーションは有効化 */
  .anime_on *,
.anime_on::before,
.anime_on::after,
.anime_on::backdrop { /* 必要に応じてbackdropも */
    /* 何も指定しない（アニメーションを有効にするため） */
    /* あるいは、必要に応じて特定のアニメーションを再定義する */
    animation-duration: inherit !important; /* 親から継承 */
    transition-duration: inherit !important; /* 親から継承 */
    /* または、個別にアニメーションプロパティを設定し直す */
  }
  /* .anime_on クラスが付いていない要素の擬似要素のアニメーションを無効化 */
  /* ここがポイント */
  *:not(.anime_on)::before,
*:not(.anime_on)::after,
*:not(.anime_on)::backdrop {
    animation-duration: 0.01ms !important;
    animation-delay: unset !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-delay: unset !important;
    transition-duration: 0.01ms !important;
    view-transition-name: none !important;
  }
}
/*
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

	PLUGIN

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
*/
/*== Swiper.js ====================================================================================================*/
/*@import "./plugin/_swiper";*/
/*== Splide.js ====================================================================================================*/
/*@import "./plugin/_splide";*/
@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

/*== simplebar.js ====================================================================================================*/
div#mfp_hidden {
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0px;
  margin: 0px;
}

div#mfp_hidden input {
  margin: 10px;
}

div.mfp_thanks {
  padding: 30px;
}

div.mfp_thanks p {
  line-height: 1.7em;
}

div.mfp_thanks ul.mfp_caution {
  margin: 0px;
  padding: 0px;
}

div.mfp_thanks ul.mfp_caution li {
  display: block;
  color: #C00;
  margin: 0px;
  padding: 5px 0px;
}

div#mfp_thanks {
  text-align: center;
  font-size: 18px;
  padding: 20px 0px;
}

div#mfp_thanks strong {
  color: #C00;
  font-size: 24px;
}

/*
form#mailformpro {
	padding: 10px 0px;
}
form#mailformpro dl dt {
	float: left;
	width: 160px;
	clear: both;
	font-size: 12px;
	padding: 10px 0px;
	text-align: right;
	border-top: solid 1px #CCC;
	margin: 0px;
}
form#mailformpro dl dd {
	border-top: solid 1px #CCC;
	margin: 0px;
	padding: 10px 5px 20px 170px;
	font-size: 12px;
	line-height: 1.5em;
	text-align: left;
}
form#mailformpro dl dd ul,form#mailformpro dl dd ol {
	margin: 0px;
	padding: 0px;
}
form#mailformpro dl dd ul li,form#mailformpro dl dd ol li {
	margin: 0px;
	padding: 0px;
	list-style: none;
}
*/
.must {
  display: block;
  background-color: #C00;
  border: solid 2px #C00;
  text-shadow: 0px 1px 2px #933;
  padding: 2px 5px;
  font-size: 10px;
  color: #FFF;
  float: left;
  margin: 0px 5px;
  border-radius: 4px;
  box-shadow: 0px 0px 5px #CCC;
  background-image: url(_images/mfp_header.png);
  background-size: 100% 100%;
}

.optionally {
  display: block;
  background-color: #06C;
  border: solid 2px #06C;
  text-shadow: 0px 1px 2px #933;
  padding: 2px 5px;
  font-size: 10px;
  color: #FFF;
  float: left;
  margin: 0px 5px;
  border-radius: 4px;
  box-shadow: 0px 0px 5px #CCC;
  background-image: url(_images/mfp_header.png);
  background-size: 100% 100%;
}

/*
form#mailformpro label {
	border-radius: 3px;
	margin: 3px;
	display: inline-block;
	white-space: nowrap;
}
*/
form#mailformpro label.mfp_checked {
  /*
  padding: 3px;
  border: solid 1px #CCC;
  background-color: #E8EEF9;
  box-shadow: 0px 1px 3px #CCC inset;
  */
}

form#mailformpro label.mfp_not_checked {
  /*
  padding: 3px;
  border: solid 1px #EEE;
  */
}

/*
table#mfp_confirm_table {
	border-spacing: 0px;
	border-collapse: collapse;
	width: 100%;
}
table#mfp_confirm_table tr.mfp_colored {
	background-color: #F6F7F9;
}
table#mfp_confirm_table tr.mfp_achroma {
	background-color: #FFF;
}
table#mfp_confirm_table tr th,table#mfp_confirm_table tr td {
	text-align: left;
	font-size: 12px;
	border-top: solid 1px #CCC;
	padding: 5px 10px;
}
table#mfp_confirm_table tr th {
	white-space: nowrap;
	width: 200px;
}
table#mfp_confirm_table tr td {
	line-height: 1.5em;
	word-break: break-all;
}
*/
div#mfp_phase_confirm {
  clear: both;
}

/*
div#mfp_phase_confirm h4 {
	font-size: 36px;
	padding: 10px 0px 0px 0px;
	text-align: center;
}
*/
div#mfp_overlay {
  position: absolute;
  display: none;
  z-index: 10001;
}

div#mfp_overlay_inner {
  background-color: #FFF;
  padding: 15px;
  margin: 0px auto;
  border-radius: 5px;
  box-shadow: 0px 0px 10px #000;
  width: 640px;
  max-width: 90%;
}

div#mfp_overlay_background {
  background-color: #000;
  position: absolute;
  display: none;
  z-index: 10000;
}

div#mfp_loading_screen {
  z-index: 20000;
  opacity: 0.8;
  display: none;
  background-color: #000;
  position: absolute;
}

/*
div#mfp_loading {
	z-index: 20001;
	position: absolute;
	display: none;
	width: 40px;
	height: 40px;
	background-image: url(_images/mfp_loading.gif);
}
*/
.mfp_colored {
  background-color: #F6F7F9;
}

.mfp_achroma {
  background-color: #FFF;
}

/*
div.mfp_err {
	clear: both;
	display: none;
	text-align: left;
	margin: 5px 0px 0px 0px;
	padding: 3px 0px 5px 17px;
	color: #F00;
	font-size: 12px;
	line-height: normal;
	background-position: 0px 1px;
}
	*/
/*
.mfp_parent_error {
	border: solid 2px #F00;
}
	*/
.problem {
  background-color: #FCC;
}

div#mfp_error {
  background-color: #FEE;
  border: solid 1px #F00;
  padding: 10px;
  display: none;
}

div#mfp_error p {
  padding: 0px;
  margin: 0px;
  font-size: 14px;
  text-align: center;
}

div#mfp_error p strong {
  font-size: 18px;
  color: #F00;
}

div#mfp_warning {
  background-color: #FEE;
  border: solid 1px #F00;
  padding: 10px;
  display: none;
  border-radius: 5px;
}

div#mfp_warning p {
  padding: 0px;
  margin: 0px;
  font-size: 14px;
  text-align: center;
}

div#mfp_warning p strong {
  font-size: 18px;
  color: #F00;
}

div#mfp_price {
  color: #C00;
  font-size: 36px;
  padding: 10px;
  font-weight: bolder;
}

div#mfp_price span {
  color: #666;
  font-size: 12px;
  font-weight: normal;
}

button.mfp_next, button.mfp_prev {
  font-size: 18px;
  margin: 10px;
  padding: 5px 10px;
}

button.mfp_next {
  float: right;
}

button.mfp_prev {
  float: left;
}

ul#mfp_phase_stat {
  padding: 10px;
  text-align: center;
}

ul#mfp_phase_stat li {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 5px;
  margin: 0px 5px;
  list-style: none;
  font-size: 14px;
}

ul#mfp_phase_stat li.mfp_phase_arrow {
  box-shadow: none;
  color: #999;
  padding: 8px 0px;
}

ul#mfp_phase_stat li.mfp_active_phase {
  box-shadow: 0px 1px 6px #000;
  background-image: url(_images/mfp_header.png);
  background-size: 100% 100%;
  background-color: #0068B7;
  border: solid 2px #0068B7;
  font-weight: bolder;
  color: #FFF;
  text-shadow: 0px 1px 3px #000;
}

ul#mfp_phase_stat li.mfp_inactive_phase {
  background-image: url(_images/mfp_header.png);
  background-size: 100% 100%;
  background-color: #EEE;
  border: solid 2px #EEE;
  color: #999;
  box-shadow: 0px 1px 6px #CCC;
}

div#mfp_shopping_cart {
  border: solid 1px #CCC;
  margin: 0px;
  padding: 0px;
}

div#mfp_shopping_cart p {
  margin: 0px;
  text-align: center;
  padding: 20px 10px;
  font-size: 12px;
  background-color: #FEE;
}

table.mfp_shoppingcart {
  border-spacing: 0px;
  border-collapse: collapse;
  width: 100%;
}

table.mfp_shoppingcart thead tr td {
  background-color: #EEE;
  border-bottom: solid 1px #CCC;
  text-align: center;
  font-size: 12px;
  padding: 5px;
}

table.mfp_shoppingcart tbody tr th, table.mfp_shoppingcart tbody tr td {
  font-size: 12px;
  padding: 5px;
  border-bottom: solid 1px #CCC;
}

table.mfp_shoppingcart tbody tr td select {
  display: block;
  margin: 0px auto;
  text-align: center;
}

table.mfp_shoppingcart tbody tr td select option {
  text-align: center;
}

table.mfp_shoppingcart tbody tr th span {
  display: block;
  font-weight: normal;
  font-size: 10px;
  color: #666;
  padding: 3px 0px;
}

table.mfp_shoppingcart tfoot tr td {
  padding: 5px;
  font-size: 16px;
  font-weight: bolder;
  color: #900;
}

td.msc_price {
  font-size: 12px;
  text-align: right;
}

div.mfp_buttons {
  clear: both;
  padding: 10px 0px;
  text-align: center;
}

.imagebutton {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
  background: none;
}

.mfp_element_all {
  /*
  max-width: 90%;
  */
}

.mfp_element_text,
.mfp_element_number,
.mfp_element_select-one,
.mfp_element_email,
.mfp_element_tel,
.mfp_element_textarea,
.mfp_element_date,
.mfp_element_password {
  /*
  border: solid 1px #CCC;
  border-radius: 3px;
  box-shadow: 0px 0px 5px #CCC inset;
  padding: 3px 8px;
  margin: 2px;
  vertical-align: middle;
  */
}

.mfp_element_checkbox,
.mfp_element_radio {
  /*
  vertical-align: middle;
  margin: 0px 2px;
  */
}

.mfp_element_file {
  /*
  font-size: 12px;
  display: inline-block;
  padding: 10px 10px;
  vertical-align: middle;
  border: solid 1px #CCC;
  border-radius: 3px;
  box-shadow: 0px 0px 5px #CCC inset;
  background: #EEE;
  */
}

.mfp_element_submit, .mfp_element_reset, .mfp_element_button, button.mfp_next, button.mfp_prev {
  /*
  border-radius: 5px;
  padding: 5px 10px;
  border: solid 1px #CCC;
  background: gradient(linear, center top, center bottom, from(#EEE), to(#CCC));
  background: -webkit-gradient(linear, center top, center bottom, from(#EEE), to(#CCC));
  background: -moz-linear-gradient(top, #EEE, #CCC);
  background: -ms-linear-gradient(top, #EEE 0%, #CCC 100%);
  text-shadow: 0px 2px 0px #FFF;
  font-size: 18px;
  cursor: pointer;
  outline: none;
  */
}

.mfp_element_reset {
  /*
  color: #333;
  */
}

.mfp_element_submit:hover, .mfp_element_reset:hover, .mfp_element_button:hover, button.mfp_next:hover, button.mfp_prev:hover {
  /*
  background: gradient(linear, center top, center bottom, from(#FFF), to(#CCC));
  background: -webkit-gradient(linear, center top, center bottom, from(#FFF), to(#CCC));
  background: -moz-linear-gradient(top, #FFF, #CCC);
  background: -ms-linear-gradient(top, #FFF 0%, #CCC 100%);
  box-shadow: 0px 2px 15px #CCC;
  */
}

button.mfp_next, button.mfp_prev {
  font-size: 14px;
}

input#mfp_reserve_item, input#mfp_reserve_date {
  display: none;
}

div#mfp_reserve_wrapper {
  position: relative;
  overflow: hidden;
  border: solid 1px #CCC;
}

div#mfp_reserve_inner {
  position: relative;
  padding: 0px 0px 0px 100px;
  overflow: auto;
}

div#mfp_reserve_wrapper table {
  border-spacing: 0px;
  border-collapse: collapse;
}

div#mfp_reserve_wrapper table.mfp_reserve_table_label {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100px;
  background-color: #FEE;
  z-index: 100;
}

div#mfp_reserve_wrapper table.mfp_reserve_table_value {
  padding: 0px 0px 0px 0px;
}

div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_active,
div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_warning {
  cursor: pointer;
}

div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_active:hover,
div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_warning:hover {
  background-color: #E8EEF9;
}

div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_current {
  background-color: #0068B7;
  color: #FFF;
}

td.mfp_reserve_disabled {
  background-color: #CCC;
}

td.mfp_reserve_warning {
  background-color: #FFC;
}

div#mfp_reserve_wrapper table tr td, div#mfp_reserve_wrapper table tr th {
  border: solid 1px #CCC;
  padding: 0px 5px;
  font-size: 12px;
  text-align: center;
  font-family: Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
  font-weight: normal;
  height: 20px;
  text-align: left;
}

td.mfp_reserve_week_0 {
  color: #F00;
  background-color: #FEE;
}

td.mfp_reserve_week_6 {
  color: #00F;
  background-color: #EEF;
}

div.mfp_ok {
  border-radius: 5px;
  background-color: #090;
  border: solid 1px #090;
  display: inline-block;
  line-height: 1.5em;
  padding: 0px 5px;
  margin: 0px 2px;
  color: #FFF;
  font-size: 10px;
  background-image: url(_images/mfp_header.png);
  background-size: 100% 100%;
  display: none;
}

div.prefcodeWrapper {
  position: relative;
}

div.prefcodeResult {
  position: absolute;
  top: 0px;
  left: 0px;
  padding: 5px;
  border: solid 1px #CCC;
  background-color: #FFF;
  box-shadow: 0px 0px 5px #CCC;
  display: none;
}

div.prefcodeResult div {
  cursor: pointer;
}

div.prefcodeResult div:hover {
  background-color: #C9EBFB;
}

div.prefcodeResult div.prefcodeNext {
  background-color: #EEE;
  text-align: center;
}

div.prefLoading {
  padding: 60px 100px;
  background: url(_images/mfp_zip_loading.gif) no-repeat center center;
}

div.mfpSuggestWrapper {
  position: relative;
}

div.mfpSuggestResult {
  position: absolute;
  top: 0px;
  left: 0px;
  padding: 5px;
  border: solid 1px #CCC;
  background-color: #FFF;
  box-shadow: 0px 0px 5px #CCC;
  display: none;
}

div.mfpSuggestResult div {
  cursor: pointer;
}

div.mfpSuggestResult div:hover {
  background-color: #C9EBFB;
}

div.mfpSuggestResult div.mfpSuggestNext {
  background-color: #EEE;
  text-align: center;
}

div.prefLoading {
  padding: 60px 100px;
  background: url(_images/mfp_zip_loading.gif) no-repeat center center;
}

.hidefield {
  height: 0px;
  overflow: hidden;
}

.showfield {
  height: auto;
  overflow: visible;
}

div.mfp_attached_thumbnails {
  display: none;
  padding: 5px;
  margin: 5px auto;
  border: solid 1px #CCC;
  border-radius: 3px;
  box-shadow: 0px 0px 5px #CCC inset;
  background: #EEE;
}

div.mfp_attached_thumbnails ul {
  margin: 0px;
  padding: 0px;
}

form#mailformpro dl dd div.mfp_attached_thumbnails ul li {
  display: inline-block;
  vertical-align: top;
  padding: 0px;
  border: solid 4px #FFF;
  margin: 5px;
  box-shadow: 0px 2px 5px #999;
}

form#mailformpro dl dd div.mfp_attached_thumbnails ul li a {
  display: block;
  max-height: 100px;
  overflow: hidden;
}

div.mfp_attached_thumbnails ul li a img {
  display: block;
  max-width: 80px;
}

button.mfp_attached_reset {
  font-size: 14px;
}

div.mfp_draganddrop {
  margin: 5px auto;
  width: 100%;
  height: 200px;
  border: solid 2px #CCC;
  border-radius: 3px;
  background: url(_images/draganddrop.png) no-repeat center center #EEE;
  background-size: auto 80%;
}

div.mfp_dragover {
  border: solid 2px #0068B7;
  background-color: #FFF;
}

div.mfp_attached_filelist {
  margin: 5px auto;
  padding: 5px;
  width: 100%;
  border: solid 1px #CCC;
  border-radius: 3px;
}

form#mailformpro dl dd div.mfp_attached_filelist ul,
div.mfp_attached_filelist ul {
  padding: 5px;
}

form#mailformpro dl dd div.mfp_attached_filelist ul li,
div.mfp_attached_filelist ul li {
  padding: 5px 5px 5px 2em;
  background: url(_images/file.png) no-repeat 5px center;
  background-size: 1.3em 1.3em;
  display: inline-block;
  margin-right: 1em;
}

form#mailformpro dl dd div.mfp_attached_filelist ul li:last-child,
div.mfp_attached_filelist ul li:last-child {
  border: none;
}

div.mfp_guide {
  position: relative;
  width: 1px;
  height: 1px;
}

div.mfp_guide div {
  position: absolute;
  bottom: 0px;
  left: 0px;
  margin-top: -2em;
  white-space: nowrap;
  border-radius: 5px;
  padding: 5px 10px;
  line-height: 1em;
  font-size: 12px;
  color: #FFF;
  font-weight: bolder;
  background: #F00;
  display: none;
}

div#mfp_numticket_wrapper,
div#mfp_numticket_wrapper * {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

div#mfp_numticket_wrapper {
  clear: both;
  padding: 15px;
}

div#mfp_numticket_wrapper section#numticket_message_wrapper {
  border: solid 3px #F00;
  border-radius: 5px;
  background: #FEE;
  padding: 15px;
  font-size: 16px;
  line-height: 1.7em;
  margin: 5px auto;
}

div#mfp_numticket_wrapper section#numticket_waitTime {
  border: solid 3px #CCC;
  border-radius: 5px;
  background: #FFF;
  padding: 15px;
  font-size: 16px;
  margin: 10px auto;
}

div#mfp_numticket_wrapper section#numticket_waitTime strong {
  font-size: 32px;
  display: block;
  text-align: center;
}

div#mfp_numticket_wrapper section#numticket_waitTime p.numticket_center {
  text-align: center;
}

div.mfp_traffic_status {
  max-width: 460px;
  margin: 10px auto;
  border: solid 1px #CCC;
  border-radius: 3px;
  padding: 15px;
}

div.mfp_traffic_status h3 {
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: normal;
  color: #999;
}

div.mfp_traffic_status table {
  text-align: center;
  width: 100%;
}

div#wrapper div.mfp_traffic_status table tr th,
div#wrapper div.mfp_traffic_status table tr td,
div.mfp_traffic_status table td,
div.mfp_traffic_status table th {
  border: none;
  padding: 0;
}

div#wrapper div.mfp_traffic_status table tr td,
div.mfp_traffic_status table td {
  padding: 0 2px;
}

div#wrapper div.mfp_traffic_status table tr th,
div.mfp_traffic_status table th {
  border-top: solid 1px #CCC;
  font-size: 10px;
  font-weight: normal;
  padding-top: 5px;
  color: #999;
}

div.mfp_traffic_status table td {
  height: 100px;
}

div.mfp_traffic_status table td span {
  display: block;
  background: #7BAAF7;
  border-radius: 3px 3px 0 0;
  border-top: solid 1px #66A1F7;
  border-right: solid 1px #66A1F7;
  border-left: solid 1px #66A1F7;
  min-width: 10px;
  max-width: 30px;
  margin: 0 auto;
  padding-bottom: 10px;
}

div.mfp_traffic_status table td span.mfp_traffic_status_current {
  background: #5D7AF2;
  border-top: solid 1px #546CD1;
  border-right: solid 1px #546CD1;
  border-left: solid 1px #546CD1;
}

.mfp_ok {
  background-color: rgba(0, 255, 0, 0.2);
}

.mfp_ng {
  background-color: rgba(255, 0, 0, 0.2);
}

div#mfp_OperationCheck div#mfp_OperationCheck_inner {
  display: none;
}

div#mfp_OperationCheck strong {
  background: #090;
  display: block;
  color: #222;
  text-align: center;
  border-radius: 3px;
}

div#mfp_OperationCheck * {
  padding: 0px;
  margin: 0px;
  font-size: 12px;
}

div#mfp_OperationCheck p {
  padding: 0px 5px;
  margin: 0px;
  font-size: 12px;
}

div#mfp_OperationCheck p a {
  color: #0C0;
  text-decoration: none;
}

div#mfp_OperationCheck p a:hover,
div#mfp_OperationCheck p button:hover {
  text-decoration: underline;
}

div#mfp_OperationCheck p button {
  border: none;
  background: none;
  color: #0C0;
  cursor: pointer;
}

div#mfp_OperationCheck ul li,
div#mfp_OperationCheck ul li label,
div#mfp_OperationCheck ul li label input {
  line-height: 12px;
  font-size: 12px;
  list-style: none;
  vertical-align: middle;
}

div#mfp_OperationCheck ul li {
  padding: 5px 10px;
}

div#mfp_OperationCheck ul li label {
  text-decoration: underline;
}

button#mfp_recorder_record,
button#mfp_recorder_clear,
button#mfp_recorder_restore {
  border-radius: 5px;
  padding: 5px 10px 5px 2em;
  border: solid 1px #CCC;
  background: gradient(linear, center top, center bottom, from(#EEE), to(#CCC));
  background: -webkit-gradient(linear, center top, center bottom, from(#EEE), to(#CCC));
  background: -moz-linear-gradient(top, #EEE, #CCC);
  background: -ms-linear-gradient(top, #EEE 0%, #CCC 100%);
  text-shadow: 0px 2px 0px #FFF;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  display: inline-block;
  margin: 5px auto;
}

button#mfp_recorder_record {
  background: url(_images/mfp_record_disabled.png) no-repeat 5px center #EEE;
  background-size: 24px 24px;
}

button#mfp_recorder_clear {
  background: url(_images/mfp_record_remove.png) no-repeat 5px center #EEE;
  background-size: 24px 24px;
}

button#mfp_recorder_restore {
  background: url(_images/mfp_record_restore.png) no-repeat 5px center #EEE;
  background-size: 24px 24px;
}

button.enabled#mfp_recorder_record,
button.enabled#mfp_recorder_clear,
button.enabled#mfp_recorder_restore {
  background: url(_images/mfp_record_enabled.png) no-repeat 5px center #EEE;
  background-size: 24px 24px;
}

div#mfp_recorder_wrap {
  border: solid 1px #CCC;
  padding: 10px;
  text-align: center;
  margin: 5px auto;
}

td.request_image {
  width: 100px;
}

td.request_image img {
  max-width: 100px;
}

button.mfp_submit_enable {
  background: none;
  background: #000090;
}

button.mfp_submit_disable {
  background: none;
  background: #FD8282;
}

span.mfp_tips {
  background-image: url(_images/mfp_header.png);
  background-size: 100% 100%;
  background-color: #FCC;
  display: block;
  border-radius: 5px;
  padding: 10px;
  margin: 2px;
  box-shadow: 0px 2px 10px #999;
}

span.mfp_tips strong {
  color: #800040;
}

span.mfp_tips span {
  display: block;
  padding: 10px;
  color: #008080;
}

span.mfp_tips em {
  font-style: normal;
  color: #090;
  font-weight: bold;
}

div.mfp_estimate_wrapper {
  border: solid 1px #CCC;
  padding: 10px;
  margin: 5px;
  border-radius: 5px;
}

div.mfp_estimate_wrapper div.mfp_estimate_wrap {
  position: relative;
  padding: 10px;
  border: solid 1px #CCC;
  border-radius: 5px;
  margin: 10px 0;
  transition-property: all;
  transition-duration: 0.5s;
  transition-timing-function: ease-in-out;
}

div.mfp_estimate_wrapper div.mfp_estimate_wrap div.mfp_estimate_label {
  position: absolute;
  top: -0.7em;
  left: 1em;
  display: inline-block;
  background: #FFF;
  font-size: 12px;
  padding: 0 0.5em;
  color: #666;
}

div.mfp_estimate_wrapper div.mfp_estimate_wrap select {
  font-size: 18px;
  margin: 5px 0;
  padding: 5px 10px;
  line-height: 1em;
  min-height: 2.5em;
}

div.mfp_estimate_wrapper div.mfp_estimate_wrap img {
  width: 100%;
  max-width: 240px;
  display: block;
  margin: 0 auto;
}

div.mfp_estimate_wrapper div.mfp_estimate_wrap strong {
  display: block;
  text-align: right;
  color: #900;
  font-size: 24px;
}

div.mfp_estimate_wrapper div.mfp_estimate_wrap strong em {
  display: inline-block;
  font-size: 30px;
}

div.mfp_estimate_wrapper button.mfp_estimate_button {
  margin: 10px 0 0 0;
  padding: 5px 10px;
  border-radius: 5px;
  border: solid 1px #CCC;
  background: gradient(linear, center top, center bottom, from(#EEE), to(#CCC));
  background: gradient(linear, center top, center bottom, from(#EEE), to(#CCC));
  background: -moz-linear-gradient(top, #EEE, #CCC);
  background: -ms-linear-gradient(top, #EEE 0%, #CCC 100%);
  text-shadow: 0px 2px 0px #FFF;
}

div.mfp_estimate_list table.mfp_estimate_list_table {
  width: 100%;
  margin: 10px 0;
}

div.mfp_estimate_list table.mfp_estimate_list_table thead tr th {
  text-align: center;
}

div#wrapper div.mfp_estimate_list table.mfp_estimate_list_table tr th,
div#wrapper div.mfp_estimate_list table.mfp_estimate_list_table tr td,
div.mfp_estimate_list table.mfp_estimate_list_table tr th,
div.mfp_estimate_list table.mfp_estimate_list_table tr td {
  border: none;
  border-bottom: solid 1px #333;
}

div#wrapper div.mfp_estimate_list table.mfp_estimate_list_table tfoot tr th,
div#wrapper div.mfp_estimate_list table.mfp_estimate_list_table tfoot tr td,
div.mfp_estimate_list table.mfp_estimate_list_table tfoot tr th,
div.mfp_estimate_list table.mfp_estimate_list_table tfoot tr td {
  border: none;
  text-align: right;
}

div#wrapper div.mfp_estimate_list table.mfp_estimate_list_table tbody tr th,
div#wrapper div.mfp_estimate_list table.mfp_estimate_list_table tbody tr td,
div.mfp_estimate_list table.mfp_estimate_list_table tbody tr th,
div.mfp_estimate_list table.mfp_estimate_list_table tbody tr td {
  padding: 0;
  margin: 0;
}

div#wrapper div.mfp_estimate_list table.mfp_estimate_list_table tbody tr th,
div.mfp_estimate_list table.mfp_estimate_list_table tbody tr th {
  padding: 0 10px;
}

div#wrapper div.mfp_estimate_list table.mfp_estimate_list_table tbody tr th span,
div.mfp_estimate_list table.mfp_estimate_list_table tbody tr th span {
  font-size: 10px;
  display: block;
  color: #666;
}

div#wrapper div.mfp_estimate_list table.mfp_estimate_list_table tbody tr td:nth-of-type(1),
div.mfp_estimate_list table.mfp_estimate_list_table tbody tr td:nth-of-type(1) {
  width: 80px;
}

div#wrapper div.mfp_estimate_list table.mfp_estimate_list_table tbody tr td:nth-of-type(2),
div.mfp_estimate_list table.mfp_estimate_list_table tbody tr td:nth-of-type(2) {
  text-align: right;
  padding: 0 10px;
  width: 120px;
}

div#wrapper div.mfp_estimate_list table.mfp_estimate_list_table tbody tr td:nth-of-type(3),
div.mfp_estimate_list table.mfp_estimate_list_table tbody tr td:nth-of-type(3) {
  width: 60px;
}

div.mfp_estimate_list table.mfp_estimate_list_table tbody td img {
  max-width: 80px;
}

div.mfp_estimate_list table.mfp_estimate_list_table tbody td button {
  border: none;
  background: none;
  font-size: 24px;
  cursor: pointer;
}

div.mfp_ticket_wrapper {
  border: solid 1px #CCC;
  margin: 5px;
  overflow: auto;
}

div.mfp_ticket_map {
  position: relative;
  background-position: left top;
  background-repeat: no-repeat;
}

div.mfp_ticket_map div {
  position: absolute;
  width: 20px;
  height: 20px;
  padding: 0;
  margin: 0;
}

div.mfp_ticket_map div label {
  position: relative;
}

div.mfp_ticket_map div label span {
  position: absolute;
  top: 0px;
  left: 20px;
  display: inline-block;
  font-size: 10px;
  white-space: nowrap;
  display: none;
  background-color: #FFF;
  border: solid 1px #CCC;
  padding: 3px 3px;
  line-height: 1em;
}

div.mfp_ticket_map div label:hover span {
  display: block;
  z-index: 10;
}

div.mfp_ticket_map div label input {
  margin: 0;
  padding: 0;
  border-radius: 0;
  background-color: #CCC;
}

@media screen and (max-width: 800px) {
  /*
  form#mailformpro dl dt {
  	float: none;
  	width: auto;
  	font-size: 12px;
  	padding: 5px;
  	text-align: left;
  }
  form#mailformpro dl dd {
  	clear: both;
  	border-top: none;
  	padding: 5px 15px;
  	font-size: 12px;
  	line-height: 1.5em;
  }
  div.mfp_buttons button {
  	font-size: 14px;
  }
  div#mfp_phase_confirm h4 {
  	font-size: 18px;
  }
  */
  ul#mfp_phase_stat {
    padding: 0px;
    text-align: left;
  }
  ul#mfp_phase_stat li {
    text-align: center;
    padding: 5px 0px;
    border-radius: 3px;
    margin: 5px;
    list-style: none;
    font-size: 14px;
    width: 28%;
  }
  ul#mfp_phase_stat li.mfp_phase_arrow {
    bos-shadow: none;
    display: none;
  }
  /*
  table#mfp_confirm_table tr th {
  	white-space: nowrap;
  	width: 100px;
  }
  */
  div#mfp_thanks {
    text-align: center;
    font-size: 18px;
    padding: 20px 0px;
  }
  div#mfp_thanks strong {
    color: #C00;
    font-size: 24px;
    display: block;
  }
}
/*
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

	COMMON

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
*/
/*== root ====================================================================================================*/
:root {
  --vw: 1vw;
  --vp: 13.44;
  --c_black: #000;
  --c_white: #fff;
  --c_gray1: #1B2029;
  --c_gray2: #F2F2F2;
  --c_gray3: #B8C1D0;
  --c_gray4: #6B7280;
  --c_gray5: ;
  --c_gray6: ;
  --c_gray7: ;
  --c_gray8: ;
  --c_gray9: ;
  --c_blue1: #4D6589;
  --c_blue2: #384F70;
  --c_blue3: #5570DB;
  --c_blue4: ;
  --c_blue5: ;
  --c_red1: #E20555;
  --c_pink1: #CF65A6;
  --c_pink2: #E20555;
  --c_purple1: #5570DB;
  --ls50: .05em;
  --lh_h: 1.6;
  --lh15: 1.5;
  --lh175: 1.75;
  --shadow: 0px 0px 6px rgba(117, 152, 186, 0.2);
  --shadow2: 0px 0px 10px rgba(0, 0, 0, 0.43);
  --pdX: 40px;
  --liner: all 0.25s linear;
  --ease: all 0.25s ease;
  --easein: all 0.25s ease-in;
  --easeout: all 0.25s ease-out;
}
@media screen and (max-width: 767px) {
  :root {
    --vp: 7.50;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --lh_h: 1.4;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --pdX: 16px;
  }
}

/*== common_default ====================================================================================================*/
/*-------------------------
  ROLL OVER
-------------------------*/
.ro {
  transition: all 0.25s linear !important;
}
body:not(.view_sp) .ro:hover {
  opacity: 0.6;
  transition: all 0.25s linear !important;
}
.ro:hover img {
  opacity: 1;
}
.ro a:hover, .ro a:hover img {
  transition: none;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .ro:hover, .ro a:hover, .ro a:hover img {
    opacity: 1;
  }
}

/*-------------------------
  pcCont/spCont
-------------------------*/
@media screen and (min-width: 768px) {
  .sp, .spCont {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc, .pcCont {
    display: none;
  }
}
/*-------------------------
  COMMONS
-------------------------*/
.tac {
  text-align: center;
}

.tal {
  text-align: left;
}

.tar {
  text-align: right;
}

.f_left {
  float: left;
}

.f_right {
  float: right;
}

.clear {
  clear: both;
}

button {
  cursor: pointer;
  outline: none;
}

.fBox, .flex {
  display: flex;
}

svg {
  fill: currentColor;
}

.preload * {
  transition: none !important;
}

.ofi {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

.ac_btn {
  cursor: pointer;
}

.ac_box {
  display: none;
}

.slider {
  opacity: 0;
  transition: opacity 0.3s linear;
}

.slider.slick-initialized {
  opacity: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: inherit;
}

.bold, strong {
  /*font-weight: inherit;*/
}

@media screen and (min-width: 768px) {
  .ptac {
    text-align: center;
  }
}

@media screen and (min-width: 768px) {
  .pc_flex, .pflex {
    display: flex;
  }
}

code {
  display: inline-block;
  vertical-align: middle;
  padding: 0.25em 0.25em;
  color: #444;
  background-color: #e7edf3;
  border-radius: 3px;
  border: solid 1px #d6dde4;
  text-indent: 0;
  font-family: inherit;
  font-size: 80%;
  line-height: 1.2;
}
code.red {
  display: block;
  background-color: #f00;
  border: none;
  border-radius: 0;
  color: #fff;
  font-weight: bold;
  padding: 8px;
  text-align: center;
  font-size: 100%;
}

/*== common ====================================================================================================*/
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 ■setting
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
html {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic Medium", "游ゴシック Medium", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Noto Sans Japanese", Meiryo, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 100%;
}

body {
  position: relative;
  background: #EEF2F5;
  color: var(--c_gray1);
  font-size: 1rem;
  line-height: var(--lh_h);
  margin: 0 auto;
  -webkit-text-size-adjust: 100%;
  -webkit-overflow-scrolling: touch;
  word-break: normal;
  word-wrap: break-word;
  line-break: strict;
  overflow-wrap: break-word;
  -webkit-touch-callout: none;
  text-size-adjust: 100%;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 0.875rem;
  }
}
body::before, body::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body::before {
  background: url(../img/bg-top.jpg) no-repeat top center;
  background-size: 1920px auto;
}
@media screen and (min-width: 1921px) {
  body::before {
    background-size: 100% auto;
  }
}
body::after {
  content: "";
  opacity: 0.3;
  mix-blend-mode: overlay;
  background: url(../img/bg-texture.jpg) repeat center center;
  background-size: 1920px auto;
}
body a[href=""],
body a.disabled {
  cursor: not-allowed;
  pointer-events: none;
  text-decoration: none;
}
body *[hidden] {
  display: none !important;
}

body:not(.view_sp) a[href^="tel:"] {
  color: inherit;
  text-decoration: none;
  pointer-events: none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 ■ メインコンテンツ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-flow: column;
  min-height: 100vh;
  filter: blur(0);
  transition: var(--ease) !important;
}
body.spMenu_open #container {
  filter: blur(10px);
}
@media screen and (min-width: 768px) {
  body.spMenu_open #container {
    filter: blur(0);
  }
}

.contents {
  overflow: hidden;
  position: relative;
  flex: 1;
  width: 100%;
}

.innerWrap {
  position: relative;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .innerWrap {
    max-width: none;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 ■ 共通 - ヘッダー
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#header {
  position: sticky;
  z-index: 900;
  top: 0;
  padding: 40px 10px 0;
}
@media screen and (max-width: 1150px) {
  #header {
    padding: 28px 16px 0;
  }
}
@media screen and (max-width: 767px) {
  #header {
    position: static;
  }
}
#header .innerWrap {
  display: flex;
  justify-content: space-between;
  max-width: 1184px;
}
@media screen and (min-width: 768px) {
  #header .innerWrap {
    background: var(--c_gray2);
    box-shadow: 10px 10px 20px rgba(184, 193, 208, 0.5), -5px -5px 10px var(--c_white);
    border-top: 1px solid var(--c_white);
    border-left: 1px solid var(--c_white);
    border-radius: 100px;
    padding: 10px 10px;
  }
}
#header .logo {
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  margin: 0 10px 0 30px;
}
@media screen and (max-width: 1150px) {
  #header .logo {
    margin: 0 10px 0 10px;
  }
}
#header .logo a {
  display: inline-block;
}
#header .logo img {
  display: block;
}
@media screen and (max-width: 900px) {
  #header .logo img {
    width: 138px;
    height: auto;
  }
}
#header .btn02 {
  flex: 1 0 auto;
  align-self: center;
  max-width: 210px;
  width: 25%;
  font-size: 0.875rem;
  margin-left: 16px;
}
@media screen and (max-width: 767px) {
  #header .btn02 {
    display: none;
  }
}
#header .btn02 .btn_inner {
  width: 100%;
  padding: 5px 30px;
}
@media screen and (max-width: 1150px) {
  #header .btn02 .btn_inner {
    font-size: 0.75rem;
  }
}

#header_nav {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  #header_nav {
    display: none;
  }
}
#header_nav ul {
  display: flex;
}
#header_nav a {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 60px;
  height: 100%;
  border-radius: 100px;
  color: var(--c_blue1);
  text-align: center;
  padding: 0 10px;
}
@media screen and (max-width: 1150px) {
  #header_nav a {
    padding: 0 6px;
  }
}
#header_nav a:hover .en {
  opacity: 1;
}
#header_nav .jp {
  font-size: 0.875rem;
  letter-spacing: var(--ls50);
}
@media screen and (max-width: 1150px) {
  #header_nav .jp {
    font-size: 0.8125rem;
  }
}
@media screen and (max-width: 900px) {
  #header_nav .jp {
    font-size: min(1.4444444444 * var(--vw), 13px);
  }
}
@media screen and (max-width: 1050px) {
  #header_nav .jp br.sp {
    display: block;
  }
}
#header_nav .en {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 1rem;
  font-style: italic;
  background: var(--c_white);
  transition: var(--ease) !important;
}
@media screen and (max-width: 1150px) {
  #header_nav .en {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 900px) {
  #header_nav .en {
    font-size: min(1.6666666667 * var(--vw), 15px);
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 ■ 共通 - フッター
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#footer {
  position: relative;
  background: var(--c_white);
  padding: 75px 40px 25px;
}
@media screen and (max-width: 767px) {
  #footer {
    padding: 35px 20px 25px;
  }
}
#footer #copyright {
  color: var(--c_blue1);
  font-family: brandon-grotesque, "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic Medium", "游ゴシック Medium", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Noto Sans Japanese", Meiryo, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 0.75rem;
  font-style: italic;
  text-align: center;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  #footer #copyright {
    font-size: 0.625rem;
    margin-top: 35px;
  }
}

#footer_nav {
  font-size: 0.875rem;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  #footer_nav {
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
  }
}
@media screen and (min-width: 768px) {
  #footer_nav::before {
    content: "｜";
    margin-right: 1em;
  }
}
@media screen and (min-width: 768px) {
  #footer_nav li::after {
    content: "｜";
    margin: 0 1em;
  }
}
#footer_nav a {
  transition: all 0.25s linear !important;
}
body:not(.view_sp) #footer_nav a:hover {
  opacity: 0.6;
  transition: all 0.25s linear !important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 ■ 共通 - ドロワーメニュー
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.menuBtn {
  position: fixed;
  z-index: 905;
  top: 16px;
  right: 16px;
}
@media screen and (min-width: 768px) {
  .menuBtn {
    display: none;
  }
}

/*-------------------------
  spMenuBtn / closeBtn
-------------------------*/
#spMenuBtn {
  z-index: 99999;
  border: none;
  background-color: transparent;
  outline: none;
  width: 40px;
  height: 40px;
  background: var(--c_gray2);
  border: 1px solid var(--c_white);
  border-radius: 100%;
  box-shadow: 5px 5px 5px rgba(184, 193, 208, 0.5), -5px -5px 5px var(--c_gray2);
}
#spMenuBtn .spMenuBtn_bar {
  position: relative;
}
#spMenuBtn .spMenuBtn_bar::before, #spMenuBtn .spMenuBtn_bar::after {
  content: "";
}
#spMenuBtn .spMenuBtn_bar span, #spMenuBtn .spMenuBtn_bar::before, #spMenuBtn .spMenuBtn_bar::after {
  position: absolute;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  margin: auto;
  transition: all 0.2s;
  transform-origin: 50% 50%;
}
#spMenuBtn .spMenuBtn_bar span {
  top: 0;
  bottom: 0;
}
#spMenuBtn .spMenuBtn_bar::before {
  top: 0;
}
#spMenuBtn .spMenuBtn_bar::after {
  bottom: 0;
}
body.spMenu_open #spMenuBtn {
  background: transparent;
  border: none;
  box-shadow: none;
}
#spMenuBtn .spMenuBtn_bar {
  width: 15px;
  height: 11px;
  margin: auto;
}
#spMenuBtn .spMenuBtn_bar span, #spMenuBtn .spMenuBtn_bar::before, #spMenuBtn .spMenuBtn_bar::after {
  height: 2px;
  background: var(--c_blue1);
  transition: var(--ease) !important;
}

body.spMenu_open .spMenuBtn_bar {
  position: relative;
}
body.spMenu_open .spMenuBtn_bar::before, body.spMenu_open .spMenuBtn_bar::after {
  content: "";
}
body.spMenu_open .spMenuBtn_bar span, body.spMenu_open .spMenuBtn_bar::before, body.spMenu_open .spMenuBtn_bar::after {
  position: absolute;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  margin: auto;
  transition: all 0.2s;
  transform-origin: 50% 50%;
}
body.spMenu_open .spMenuBtn_bar span {
  opacity: 0;
  top: 0;
  bottom: 0;
}
body.spMenu_open .spMenuBtn_bar::before {
  top: 0;
  bottom: 0;
  transform: rotate(45deg);
}
body.spMenu_open .spMenuBtn_bar::after {
  top: 0;
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/*-------------------------
  spMenu
-------------------------*/
#spMenu {
  opacity: 0;
  position: fixed;
  display: block;
  padding: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 901;
  background: transparent;
  transform: none;
  opacity: 1;
  overflow: hidden;
  padding: 13px 12px;
}
body.spMenu_open #spMenu {
  opacity: 1;
}
body:not(.spMenu_open) #spMenu {
  display: none;
}
@media screen and (min-width: 768px) {
  #spMenu {
    display: none;
  }
}
#spMenu .spMenu_innerWrap {
  opacity: 0;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-height: 100%;
  background: var(--c_gray2);
  border: 1px solid var(--c_white);
  border-radius: 20px;
  padding: 80px 12px 70px;
  transition: var(--ease) !important;
}
#spMenu .spMenu_innerWrap::-webkit-scrollbar {
  display: none;
}
body.spMenu_open #spMenu .spMenu_innerWrap {
  opacity: 1;
}
#spMenu .spMenu_inner {
  width: 100%;
  margin: 0 auto;
}
#spMenu .list_menu {
  color: var(--c_blue1);
  font-size: 0.75rem;
}
#spMenu .list_menu__inner {
  display: flex;
  flex-direction: column;
  row-gap: 34px;
}
#spMenu .list_menu li {
  text-align: center;
}
#spMenu .list_menu a {
  display: inline-block;
  text-align: left;
}
#spMenu .btn02 {
  text-align: center;
  margin-top: 60px;
}
#spMenu .btn02 .btn_inner {
  min-width: 204px;
  min-height: 52px;
  font-size: 0.75rem;
  letter-spacing: var(--ls50);
}

/*== parts ====================================================================================================*/
/*-------------------------
  dami
-------------------------*/
.dami {
  display: none !important;
  position: absolute;
  z-index: -1;
  bottom: 0;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  opacity: 0.2;
}
.dami img {
  width: 100%;
  height: auto;
}

/*-------------------------
  Fonts
-------------------------*/
.en, ._en {
  font-family: brandon-grotesque, "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic Medium", "游ゴシック Medium", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Noto Sans Japanese", Meiryo, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
}

.it {
  font-style: italic;
}

/*-------------------------
  btn
-------------------------*/
.btn01 button {
  background: none;
  border: none;
  box-shadow: none;
  color: inherit;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic Medium", "游ゴシック Medium", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Noto Sans Japanese", Meiryo, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 100%;
}
.btn01 .btn_inner {
  position: relative;
  z-index: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 60px;
  border-radius: 100px;
  font-size: 100%;
  transition: var(--ease) !important;
  /*
  &::before {
  	content: '';
  	position: absolute;
  	top: 3px;
  	left: 3px;
  	width: 100%;
  	height: 100%;
  	background: #4D6589;
  	//background: #ff0000;
  	border-radius: 100px;
  	filter: blur(2px);
  }
  &::after {
  	content: '';
  	opacity: .5;
  	position: absolute;
  	top: -5px;
  	left: -5px;
  	right: -10px;
  	bottom: -10px;
  	clip-path: polygon(0 calc(100% - 10px), calc(100% - 35px) calc(100% - 10px), calc(100% - 35px) 0, 100% 0, 100% 100%, 0 100%);
  	background: #fcc;
  	filter: blur(2px);
  }
  &:hover {
  	&::before {
  		background-color: #465B7A;
  	}
  }
  */
}
@media screen and (max-width: 767px) {
  .btn01 .btn_inner {
    min-height: 52px;
  }
}
.btn01 .btn_inner > span {
  position: relative;
  z-index: 1;
}
.btn01 .en {
  font-family: brandon-grotesque, "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic Medium", "游ゴシック Medium", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Noto Sans Japanese", Meiryo, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: italic;
}
@media screen and (max-width: 767px) {
  .btn01 .en {
    font-size: 0.8125rem;
  }
}
.btn01 a[target=_blank]::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 21px;
  width: 16px;
  height: 10px;
  background-size: 100% auto;
  transform: translate(0, -50%);
}
@media screen and (max-width: 767px) {
  .btn01 a[target=_blank]::after {
    width: 15px;
    height: 10px;
  }
}
.btn01 .btn_inner:disabled {
  pointer-events: none;
  opacity: 0.3;
  box-shadow: none;
  background: var(--c_gray3);
  border: 1px solid var(--c_white);
  box-shadow: 5px 5px 5px rgba(219, 224, 231, 0.7), -5px -5px 5px #f6f9ff;
  color: var(--c_blue1);
}
.btn01 .btn_inner {
  background: var(--c_gray2);
  border: 1px solid var(--c_white);
  box-shadow: 5px 5px 5px rgba(219, 224, 231, 0.7), -5px -5px 5px #f6f9ff;
  color: var(--c_blue1);
}
.btn01 .btn_inner:hover {
  box-shadow: 2px 2px 2px rgba(219, 224, 231, 0.7), -5px -5px 5px rgba(246, 249, 255, 0);
}
.btn01 a[target=_blank]::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 17.001 11'%3E%3Cg transform='translate%28-7973.5 -6780.5%29'%3E%3Cpath d='M0,10V3H1V9H13v1ZM3,7V0H16V7Z' transform='translate%287974 6781%29' fill='%234D6589'/%3E%3Cpath d='M13.5,10.5H-.5v-8h2v6h12Zm3-3H2.5v-8h14Zm-13-1h12V.5H3.5Z' transform='translate%287974 6781%29' fill='%234D6589'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
}

.btn02 button {
  background: none;
  border: none;
  box-shadow: none;
  color: inherit;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic Medium", "游ゴシック Medium", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Noto Sans Japanese", Meiryo, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 100%;
}
.btn02 .btn_inner {
  position: relative;
  z-index: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 60px;
  border-radius: 100px;
  font-size: 100%;
  transition: var(--ease) !important;
  /*
  &::before {
  	content: '';
  	position: absolute;
  	top: 3px;
  	left: 3px;
  	width: 100%;
  	height: 100%;
  	background: #4D6589;
  	//background: #ff0000;
  	border-radius: 100px;
  	filter: blur(2px);
  }
  &::after {
  	content: '';
  	opacity: .5;
  	position: absolute;
  	top: -5px;
  	left: -5px;
  	right: -10px;
  	bottom: -10px;
  	clip-path: polygon(0 calc(100% - 10px), calc(100% - 35px) calc(100% - 10px), calc(100% - 35px) 0, 100% 0, 100% 100%, 0 100%);
  	background: #fcc;
  	filter: blur(2px);
  }
  &:hover {
  	&::before {
  		background-color: #465B7A;
  	}
  }
  */
}
@media screen and (max-width: 767px) {
  .btn02 .btn_inner {
    min-height: 52px;
  }
}
.btn02 .btn_inner > span {
  position: relative;
  z-index: 1;
}
.btn02 .en {
  font-family: brandon-grotesque, "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic Medium", "游ゴシック Medium", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Noto Sans Japanese", Meiryo, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: italic;
}
@media screen and (max-width: 767px) {
  .btn02 .en {
    font-size: 0.8125rem;
  }
}
.btn02 a[target=_blank]::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 21px;
  width: 16px;
  height: 10px;
  background-size: 100% auto;
  transform: translate(0, -50%);
}
@media screen and (max-width: 767px) {
  .btn02 a[target=_blank]::after {
    width: 15px;
    height: 10px;
  }
}
.btn02 .btn_inner:disabled {
  pointer-events: none;
  opacity: 0.3;
  box-shadow: none;
  background: var(--c_gray3);
  border: 1px solid var(--c_white);
  box-shadow: 5px 5px 5px rgba(219, 224, 231, 0.7), -5px -5px 5px #f6f9ff;
  color: var(--c_blue1);
}
.btn02 .btn_inner {
  background: var(--c_blue1);
  box-shadow: inset 5px 5px 10px #3e526f, inset -3px -3px 8px #aabad2;
  box-shadow: inset 5px 5px 10px #3e526f, inset -2px -2px 3px rgba(170, 186, 210, 0.7);
  color: var(--c_white);
}
.btn02 .btn_inner:hover {
  background-color: #465B7A;
  box-shadow: inset 5px 5px 10px rgba(46, 61, 83, 0.8), inset -2px -2px 3px rgba(170, 186, 210, 0.2);
}
.btn02 a[target=_blank]::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 17.001 11'%3E%3Cg transform='translate%28-7973.5 -6780.5%29'%3E%3Cpath d='M0,10V3H1V9H13v1ZM3,7V0H16V7Z' transform='translate%287974 6781%29' fill='%23FFFFFF'/%3E%3Cpath d='M13.5,10.5H-.5v-8h2v6h12Zm3-3H2.5v-8h14Zm-13-1h12V.5H3.5Z' transform='translate%287974 6781%29' fill='%23FFFFFF'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
}

.btn_more button {
  background: none;
  border: none;
  box-shadow: none;
  color: inherit;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic Medium", "游ゴシック Medium", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Noto Sans Japanese", Meiryo, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 100%;
}
.btn_more .btn_inner {
  position: relative;
  z-index: 0;
}
.btn_more .btn_inner::before {
  content: "";
  display: block;
  width: 60px;
  aspect-ratio: 1/1;
  background: var(--c_gray2);
  border: 1px solid var(--c_white);
  border-radius: 100%;
  box-shadow: 5px -5px 5px rgba(219, 224, 231, 0.7), -5px 5px 5px #f6f9ff;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .btn_more .btn_inner::before {
    width: 52px;
  }
}
.btn_more .btn_inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  aspect-ratio: 1/1;
  background: url(../img/icon-arrow.svg) no-repeat center center;
  background-size: 20px auto;
  transform: rotate(90deg);
  transition: var(--ease) !important;
}
@media screen and (max-width: 767px) {
  .btn_more .btn_inner::after {
    width: 52px;
    background-position: center center;
    background-size: 17px auto;
  }
}
.btn_more .btn_inner:hover::before {
  box-shadow: 2px -2px 5px rgba(219, 224, 231, 0.7), -5px 5px 5px rgba(246, 249, 255, 0);
}
.btn_more .btn_inner:hover::after {
  transform: rotate(90deg) translateX(3px);
}
.btn_more .en {
  display: block;
  color: var(--c_blue1);
  font-family: brandon-grotesque, "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic Medium", "游ゴシック Medium", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Noto Sans Japanese", Meiryo, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: italic;
  margin-top: 6px;
}
@media screen and (max-width: 767px) {
  .btn_more .en {
    font-size: 0.8125rem;
    margin-top: 8px;
  }
}

/*-------------------------
  pagetitle
-------------------------*/
.pagetitle {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: var(--ls50);
  text-align: center;
  margin-top: 84px;
  margin-bottom: 85px;
}
@media screen and (max-width: 767px) {
  .pagetitle {
    font-size: 1.6875rem;
    line-height: 1.4;
    margin-top: 37px;
    margin-bottom: 34px;
  }
}

/*== form ====================================================================================================*/
/*--------------------------------------------------
  form reset
--------------------------------------------------*/
.form input,
.form select,
.form textarea,
.form button {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic Medium", "游ゴシック Medium", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Noto Sans Japanese", Meiryo, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.form input[type=text],
.form input[type=tel],
.form input[type=email],
.form input[type=password],
.form input[type=number],
.form input[type=url],
.form input[type=date] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline-color: var(--c_blue1);
  width: 100%;
  background: #fff;
  border: 1px solid var(--c_gray3);
  border-radius: 5px;
  height: 56px;
  color: #000;
  font-family: inherit !important;
  padding: 10px 25px;
}
@media screen and (min-width: 768px) {
  .form input[type=text],
.form input[type=tel],
.form input[type=email],
.form input[type=password],
.form input[type=number],
.form input[type=url],
.form input[type=date] {
    border-radius: 10px;
    height: 64px;
    padding: 10px 30px;
  }
}
.form input[type=text]:not(.problem),
.form input[type=tel]:not(.problem),
.form input[type=email]:not(.problem),
.form input[type=password]:not(.problem),
.form input[type=number]:not(.problem),
.form input[type=url]:not(.problem),
.form input[type=date]:not(.problem) {
  background: #fff;
}
.form input[type=text].problem,
.form input[type=tel].problem,
.form input[type=email].problem,
.form input[type=password].problem,
.form input[type=number].problem,
.form input[type=url].problem,
.form input[type=date].problem {
  background-color: var(--c_white) !important;
  border-color: var(--c_red1) !important;
  border-width: 1px;
}
.form input[type=text][disabled],
.form input[type=tel][disabled],
.form input[type=email][disabled],
.form input[type=password][disabled],
.form input[type=number][disabled],
.form input[type=url][disabled],
.form input[type=date][disabled] {
  background: #EBEBEB;
}
.form input[type=date]::-webkit-date-and-time-value,
.form input[type=month]::-webkit-date-and-time-value {
  text-align: left;
}
.form select {
  outline-color: var(--c_blue1);
  width: 100%;
  background: #fff;
  border: 1px solid var(--c_gray3);
  border-radius: 5px;
  height: 56px;
  color: #000;
  font-family: inherit !important;
  padding: 10px 25px;
  background: transparent;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
}
@media screen and (min-width: 768px) {
  .form select {
    border-radius: 10px;
    height: 64px;
    padding: 10px 30px;
  }
}
.form select:not(.problem) {
  background: #fff;
}
.form select.problem {
  background-color: var(--c_white) !important;
  border-color: var(--c_red1) !important;
  border-width: 1px;
}
.form select[disabled] {
  background: #EBEBEB;
}
.form textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline-color: var(--c_blue1);
  width: 100%;
  background: #fff;
  border: 1px solid var(--c_gray3);
  border-radius: 5px;
  height: 56px;
  color: #000;
  font-family: inherit !important;
  padding: 10px 25px;
  display: block;
  resize: none;
  resize: both;
  height: 300px;
}
@media screen and (min-width: 768px) {
  .form textarea {
    border-radius: 10px;
    height: 64px;
    padding: 10px 30px;
  }
}
.form textarea:not(.problem) {
  background: #fff;
}
.form textarea.problem {
  background-color: var(--c_white) !important;
  border-color: var(--c_red1) !important;
  border-width: 1px;
}
.form textarea[disabled] {
  background: #EBEBEB;
}
@media screen and (min-width: 768px) {
  .form textarea {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  .form textarea {
    height: 150px;
  }
}
.form button,
.form input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  text-shadow: none;
  box-shadow: none;
}
.form button:not(.btn_inner):hover,
.form input[type=submit]:hover {
  background: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.form input[type=file] {
  cursor: pointer;
}
.form label {
  cursor: pointer;
}
.form label span:not([class]) {
  position: relative;
  display: inline-block;
  padding: 0 0 0 29px;
}
.form label span:not([class]):before, .form label span:not([class]):after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
}
.form label span:not([class]):before {
  left: 0;
  width: 20px;
  height: 20px;
  background: transparent;
  border: 1px solid var(--c_gray3);
  background: #fff;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
  margin: 3px 0 0;
}
.form label span:not([class]):after {
  opacity: 0;
  top: 0;
  margin: 8px auto 0;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}
.form input[type=radio],
.form input[type=checkbox] {
  display: none;
}
.form input[type=radio]:checked + span:not([class]):after,
.form input[type=radio]:checked + input + span:not([class]):after,
.form input[type=checkbox]:checked + span:not([class]):after,
.form input[type=checkbox]:checked + input + span:not([class]):after {
  opacity: 1;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}
.form label input[type=radio] + span:not([class]):before,
.form label input[type=radio] + input + span:not([class]):before,
.form label input[type=radio] + span:not([class]):after,
.form label input[type=radio] + input + span:not([class]):after {
  border-radius: 50%;
}
.form label input[type=radio] + span:not([class]):after,
.form label input[type=radio] + input + span:not([class]):after {
  left: 5px;
  width: 10px;
  height: 10px;
  background: var(--c_blue1);
}
.form label input[type=checkbox] + span:not([class]):after,
.form label input[type=checkbox] + input + span:not([class]):after {
  top: 0;
  bottom: 2px;
  left: 7px;
  width: 6px;
  height: 10px;
  background: none;
  border-bottom: 2px solid var(--c_blue1);
  border-right: 2px solid var(--c_blue1);
  -webkit-transform: rotate(40deg);
  transform: rotate(40deg);
}

/*--------------------------------------------------
  プレースホルダー
--------------------------------------------------*/
:placeholder-shown {
  font-family: inherit;
  color: var(--c_gray4) !important;
}

::-webkit-input-placeholder {
  font-family: inherit;
  color: var(--c_gray4) !important;
}

:-moz-placeholder {
  opacity: 1;
  font-family: inherit;
  color: var(--c_gray4) !important;
}

::-moz-placeholder {
  opacity: 1;
  font-family: inherit;
  color: var(--c_gray4) !important;
}

:-ms-input-placeholder {
  font-family: inherit;
  color: var(--c_gray4) !important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 ■↓↓↓お問い合わせフォーム　各サイトごとに自由編集↓↓↓
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*--------------------------------------------------
  メールフォームプロ
--------------------------------------------------*/
/* エラー */
div.mfp_err {
  clear: both;
  display: none;
  text-align: left;
  margin: 10px 0 0 0;
  color: var(--c_red1);
  font-weight: bold;
  line-height: normal;
  background-position: 0px 1px;
}
div.mfp_err:empty {
  display: none;
}

.mfp_parent_error {
  border: solid 2px #F00;
}

.problem {
  background-color: #FCC;
}

div#mfp_error {
  background-color: #FEE;
  border: solid 1px #F00;
  padding: 10px;
  display: none;
}

/* ボタン */
@media screen and (min-width: 768px) {
  div.mfp_buttons {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
  }
}
@media screen and (min-width: 768px) {
  div.mfp_buttons > *:not(:first-child) {
    margin-right: 60px;
  }
}
@media screen and (max-width: 767px) {
  div.mfp_buttons > *:not(:first-child) {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  div.mfp_buttons #mfp_button_cancel {
    max-width: 250px;
  }
}
/* テーブル */
#mfp_confirm_table tr {
  background: none;
}
@media screen and (max-width: 767px) {
  #mfp_confirm_table tr:last-child td {
    padding-bottom: 0;
  }
}
#mfp_confirm_table th, #mfp_confirm_table td {
  text-align: left;
  vertical-align: top;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  #mfp_confirm_table th, #mfp_confirm_table td {
    display: block;
    width: 100%;
  }
}

/*--------------------------------------------------
	入力画面
--------------------------------------------------*/
#sec_contact_form .list_input ul + ul {
  margin-top: 15px;
}
#sec_contact_form .list_input li {
  margin: 0 20px 10px 0;
}
#sec_contact_form #mfp_phase_confirm h4 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 30px;
}
@media screen and (max-width: 767px) {
  #sec_contact_form #mfp_phase_confirm h4 {
    margin: 0 0 50px;
  }
}

/*--------------------------------------------------
	確認画面
--------------------------------------------------*/
div#mfp_error {
  width: 100%;
}

div#mfp_warning {
  width: 100%;
  margin: 0 auto;
  background: #f7ebeb;
  border: 1px solid var(--red01) !important;
  border-radius: 0;
  padding: 20px 30px;
  margin-bottom: 40px;
}

div#mfp_overlay_inner {
  max-width: 1100px;
  width: 100%;
  border-radius: 0;
  padding: 20px 40px 36px;
}
@media screen and (max-width: 767px) {
  div#mfp_overlay_inner {
    padding: 20px 20px 40px;
  }
}

/*
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

	PAGE

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
*/
/*== index ====================================================================================================*/
/*-------------------------
  共通
-------------------------*/
.sec_title {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}
.sec_title .jp {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: var(--ls50);
  margin-top: -11px;
}
@media screen and (max-width: 767px) {
  .sec_title .jp {
    font-size: 0.875rem;
    margin-top: 5px;
  }
}
.sec_title .en {
  color: var(--c_blue1);
  font-family: brandon-grotesque, "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic Medium", "游ゴシック Medium", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Noto Sans Japanese", Meiryo, sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-size: 3.75rem;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .sec_title .en {
    font-size: 1.875rem;
  }
}

h2.hd {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: var(--ls50);
  text-align: center;
}

h3.hd {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: var(--ls50);
}
@media screen and (max-width: 767px) {
  h3.hd {
    font-size: 1.3125rem;
  }
}

/*-------------------------
  mainvisual
-------------------------*/
#top-mainvisual {
  overflow: hidden;
  padding: 147px var(--pdX) 0;
  margin-bottom: 200px;
}
@media screen and (max-width: 767px) {
  #top-mainvisual {
    padding-top: 204px;
    padding-bottom: 0;
    margin-bottom: 97px;
  }
}
#top-mainvisual .innerWrap {
  max-width: 1344px;
}
#top-mainvisual .copy {
  display: flex;
  justify-content: center;
  font-size: 4.375rem;
  font-weight: 900;
  letter-spacing: var(--ls50);
  line-height: 1.28;
  text-align: center;
  text-indent: 1em;
  padding-left: 6px;
  margin-bottom: 24px;
}
@media screen and (max-width: 1150px) {
  #top-mainvisual .copy {
    font-size: min(6.0869565217 * var(--vw), 70px);
  }
}
@media screen and (max-width: 767px) {
  #top-mainvisual .copy {
    font-size: 2.75rem;
    font-size: min(11.7333333333 * var(--vw), 44px);
    padding-left: 0;
    margin-bottom: 30px;
  }
}
#top-mainvisual .text {
  text-align: center;
}
@media screen and (max-width: 1150px) {
  #top-mainvisual .text br.sp {
    display: block;
  }
}
#top-mainvisual .logo {
  text-align: center;
  margin-top: 36px;
}
@media screen and (max-width: 767px) {
  #top-mainvisual .logo {
    margin-top: 34px;
  }
}
#top-mainvisual .logo img {
  width: min(300 / var(--vp) * var(--vw), 300px);
  height: auto;
}
@media screen and (max-width: 767px) {
  #top-mainvisual .logo img {
    width: 152px;
  }
}
#top-mainvisual .parts {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  #top-mainvisual .parts {
    z-index: 1;
    max-width: 1344px;
  }
}
@media screen and (max-width: 767px) {
  #top-mainvisual .parts {
    max-width: 375px;
  }
}
#top-mainvisual .parts01,
#top-mainvisual .parts02 {
  position: absolute;
}
@media screen and (min-width: 768px) {
  #top-mainvisual .parts01,
#top-mainvisual .parts02 {
    z-index: 1;
  }
}
#top-mainvisual .parts01 img,
#top-mainvisual .parts02 img {
  height: auto;
}
#top-mainvisual .parts01 {
  top: -20px;
  right: 56%;
}
@media screen and (max-width: 767px) {
  #top-mainvisual .parts01 {
    top: -5px;
    right: 41%;
  }
}
#top-mainvisual .parts01 img {
  width: min(666 / var(--vp) * var(--vw), 666px);
}
@media screen and (max-width: 767px) {
  #top-mainvisual .parts01 img {
    width: 271px;
  }
}
#top-mainvisual .parts02 {
  top: 254px;
  left: 64%;
}
@media screen and (max-width: 767px) {
  #top-mainvisual .parts02 {
    top: 5px;
  }
}
#top-mainvisual .parts02 img {
  width: 548px;
  width: min(548 / var(--vp) * var(--vw), 548px);
}
@media screen and (max-width: 767px) {
  #top-mainvisual .parts02 img {
    width: 229px;
  }
}

#top-mainvisual .copy {
  opacity: 0;
  transform: translate3d(0, 50px, 0);
  animation-name: fadeInUp;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  animation-duration: 0.25s !important;
  animation-delay: 0.5s !important;
}
#top-mainvisual .text {
  opacity: 0;
  transform: translate3d(0, 50px, 0);
  animation-name: fadeInUp;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  animation-duration: 0.5s !important;
  animation-delay: 0.75s !important;
}
#top-mainvisual .logo {
  opacity: 0;
  transform: translate3d(0, 50px, 0);
  animation-name: fadeInUp;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  animation-duration: 0.5s !important;
  animation-delay: 1.05s !important;
}
#top-mainvisual .parts01 {
  opacity: 0;
  animation-name: parts1;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  animation-duration: 0.5s !important;
  animation-delay: 1s !important;
}
@media screen and (max-width: 767px) {
  #top-mainvisual .parts01 {
    animation-delay: 0s !important;
  }
}
#top-mainvisual .parts02 {
  opacity: 0;
  animation-name: parts2;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  animation-duration: 0.5s !important;
  animation-delay: 1s !important;
}
@media screen and (max-width: 767px) {
  #top-mainvisual .parts02 {
    animation-delay: 0s !important;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes parts1 {
  0% {
    opacity: 0;
    transform: translate3d(-20px, 20px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes parts2 {
  0% {
    opacity: 0;
    transform: translate3d(20px, 20px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
/*-------------------------
  project
-------------------------*/
#project {
  padding: 0 var(--pdX);
  margin-bottom: 135px;
}
@media screen and (max-width: 767px) {
  #project {
    margin-bottom: 55px;
  }
}
#project .sec_title {
  margin-bottom: 28px;
}
@media screen and (max-width: 767px) {
  #project .sec_title {
    margin-bottom: 26px;
  }
}
#project .text {
  text-align: center;
  letter-spacing: var(--ls50);
}
@media screen and (max-width: 767px) {
  #project .text {
    line-height: 1.6;
    text-align: left;
    padding: 0 17px;
  }
}
#project .img {
  display: block;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  #project .img {
    margin-top: 42px;
  }
}
#project .img img {
  max-width: 100%;
  height: auto;
}

#muic {
  max-width: 904px;
  display: flex;
  align-items: center;
  column-gap: 50px;
  margin-top: 35px;
}
@media screen and (max-width: 767px) {
  #muic {
    position: relative;
    z-index: 0;
    flex-direction: column;
    margin-top: 42px;
  }
}
@media screen and (min-width: 768px) {
  #muic .text_wrap {
    padding-top: 90px;
  }
}
@media screen and (max-width: 767px) {
  #muic .text_wrap {
    padding: 0 16px;
  }
}
#muic .text_wrap > p {
  letter-spacing: var(--ls50);
}
@media screen and (max-width: 767px) {
  #muic .text_wrap > p {
    line-height: 1.6;
  }
}
#muic .hd {
  margin-bottom: 15px;
}
#muic .btn01 {
  margin-top: 35px;
}
#muic .btn01 .btn_inner {
  width: 210px;
}
@media screen and (max-width: 767px) {
  #muic .btn01 .btn_inner {
    width: 184px;
  }
}
#muic .img {
  flex: 1 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  background-image: radial-gradient(circle, transparent 60%, #8fbcff);
  border-radius: 100%;
}
@media screen and (min-width: 768px) {
  #muic .img {
    width: 380px;
  }
}
@media screen and (max-width: 767px) {
  #muic .img {
    position: relative;
    z-index: -1;
    width: 142px;
    margin: -30px 0 0 auto;
  }
}
@media screen and (max-width: 767px) {
  #muic .img img {
    width: 34px;
    height: auto;
  }
}

#group {
  border-top: 1px solid var(--c_gray3);
  border-bottom: 1px solid var(--c_gray3);
  margin: 90px calc(var(--pdX) * -1) 70px;
}
@media screen and (max-width: 767px) {
  #group {
    margin-top: 28px;
    margin-bottom: 51px;
  }
}
#group h3.hd {
  border-bottom: 1px solid var(--c_gray3);
  color: var(--c_blue1);
  font-size: 1rem;
  text-align: center;
  padding: 16px var(--pdX);
}
@media screen and (max-width: 767px) {
  #group h3.hd {
    font-size: 0.75rem;
    padding: 13px var(--pdX);
  }
}
#group .splide {
  visibility: visible;
}
#group .splide__list {
  border-left: 1px solid var(--c_gray3);
}
#group .splide__slide {
  border-right: 1px solid var(--c_gray3);
}
@media screen and (min-width: 768px) {
  #group .splide__slide {
    width: 340px !important;
  }
}
@media screen and (max-width: 767px) {
  #group .splide__slide {
    width: 127px !important;
  }
}
#group .img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  #group .img {
    min-height: 135px;
  }
}
@media screen and (max-width: 767px) {
  #group .img {
    min-height: 50px;
    padding: 10px;
  }
}
@media screen and (max-width: 767px) {
  #group .img img {
    width: auto;
    max-height: 25px;
  }
}

#event {
  display: flex;
}
@media screen and (max-width: 767px) {
  #event {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  #event .hd {
    flex: 1 0 auto;
    width: 256px;
  }
}
@media screen and (max-width: 767px) {
  #event .hd {
    text-align: center;
    margin-bottom: 15px;
  }
}
#event .list_event {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 24px;
  width: 100%;
  letter-spacing: var(--ls50);
  padding: 3px 0 0;
}
@media screen and (max-width: 767px) {
  #event .list_event {
    row-gap: 20px;
    line-height: 1.7;
  }
}
#event li {
  border-bottom: 1px solid var(--c_gray3);
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  #event li {
    padding: 0 16px 16px;
  }
}
#event a {
  text-decoration: underline;
  transition: all 0.25s linear !important;
}
body:not(.view_sp) #event a:hover {
  opacity: 0.6;
  transition: all 0.25s linear !important;
}

/*-------------------------
  about
-------------------------*/
#about .sec_title {
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  #about .sec_title {
    margin-bottom: 27px;
  }
}
#about .text {
  text-align: center;
  letter-spacing: var(--ls50);
  padding: 0 var(--pdX);
}
@media screen and (max-width: 767px) {
  #about .text {
    line-height: 1.6;
    text-align: left;
    padding: 0 32px;
  }
}
#about .btn01 {
  max-width: 210px;
  margin: 35px auto 0;
}
#about .btn01 .btn_inner {
  width: 100%;
}

#program {
  margin-top: 84px;
}
@media screen and (max-width: 767px) {
  #program {
    margin-top: 50px;
  }
}
#program .bg {
  background: linear-gradient(0deg, rgba(143, 188, 255, 0) 0%, rgba(143, 188, 255, 0.3) 100%);
  background-repeat: no-repeat;
  background-size: auto 300px;
  padding: 70px var(--pdX) 0;
}
@media screen and (max-width: 767px) {
  #program .bg {
    background-size: auto 140px;
    padding-top: 62px;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  #program > .innerWrap {
    padding: 0 var(--pdX);
  }
}
#program .hd {
  text-align: center;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  #program .hd {
    margin-bottom: 10px;
  }
}
#program .text {
  text-align: center;
}
@media screen and (max-width: 767px) {
  #program .text {
    text-align: left;
    padding: 0 17px;
  }
}
#program .img {
  display: block;
  text-align: center;
  margin: 37px 0 0;
}
#program .img img {
  max-width: 100%;
  height: auto;
}
#program .block {
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  #program .block {
    display: flex;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  #program .block {
    padding: 0 16px;
  }
}
@media screen and (min-width: 768px) {
  #program .block:first-of-type {
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  #program .block:first-of-type {
    margin-top: -12px;
  }
}
@media screen and (max-width: 767px) {
  #program .block:not(:last-child) {
    margin-bottom: -14px;
  }
}
@media screen and (min-width: 768px) {
  #program .block:nth-of-type(odd) {
    flex-direction: row-reverse;
    padding: 0 20px 0 60px;
  }
}
@media screen and (min-width: 768px) {
  #program .block:nth-of-type(odd) .text_wrap {
    padding-top: 140px;
  }
}
@media screen and (min-width: 768px) {
  #program .block:nth-of-type(even) {
    padding: 0 0 0 66px;
  }
}
@media screen and (min-width: 768px) {
  #program .block:nth-of-type(even) .text_wrap {
    padding: 145px 0 0 96px;
  }
}
@media screen and (min-width: 768px) {
  #program .block::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 90px;
    bottom: -15px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 30px;
  }
}
#program .block .img {
  flex: 1 0 auto;
  margin: 0;
}
@media screen and (min-width: 768px) {
  #program .block .img {
    max-width: 51%;
  }
}
@media screen and (max-width: 767px) {
  #program .block .img {
    margin-bottom: -12px;
  }
}
@media screen and (max-width: 767px) {
  #program .block .img img {
    max-width: 48%;
    height: auto;
  }
}
#program .block .text_wrap {
  width: 100%;
}
@media screen and (max-width: 767px) {
  #program .block .text_wrap {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    padding: 27px 16px 22px;
  }
}
#program .block .hd {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: left;
  letter-spacing: var(--ls50);
  margin-bottom: 17px;
}
@media screen and (max-width: 767px) {
  #program .block .hd {
    font-size: 1.125rem;
    margin-bottom: 9px;
  }
}
#program .block .list_check {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  color: var(--c_gray1);
}
@media screen and (min-width: 768px) {
  #program .block .list_check {
    row-gap: 12px;
    letter-spacing: var(--ls50);
  }
}
@media screen and (max-width: 767px) {
  #program .block .list_check {
    row-gap: 10px;
    line-height: 1.6;
  }
}
#program .block .list_check li {
  position: relative;
  padding-left: 26px;
}
@media screen and (max-width: 767px) {
  #program .block .list_check li {
    padding-left: 23px;
  }
}
#program .block .list_check li::before, #program .block .list_check li::after {
  content: "";
  position: absolute;
}
#program .block .list_check li::before {
  top: 4px;
  left: 0;
  width: 17px;
  height: 17px;
  background: #DBE0E7;
}
@media screen and (max-width: 767px) {
  #program .block .list_check li::before {
    top: 3px;
    width: 15px;
    height: 15px;
  }
}
#program .block .list_check li::after {
  top: 4px;
  left: 4px;
  width: 16px;
  height: 13px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 13'%3E%3Cpath d='M225.344,884.555l5.634,4.222h-2.094l11.064-9.631.7.7-9.668,11.021-1.125,1.283-.968-1.283-4.238-5.612Z' transform='translate%28-224.646 -879.146%29' fill='%231B2029'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% auto;
}
@media screen and (max-width: 767px) {
  #program .block .list_check li::after {
    top: 3px;
    left: 3px;
    width: 14px;
    height: 11px;
  }
}
#program .block._blue .hd {
  color: var(--c_blue3);
}
#program .block._blue .list_check li::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 13'%3E%3Cpath d='M225.344,884.555l5.634,4.222h-2.094l11.064-9.631.7.7-9.668,11.021-1.125,1.283-.968-1.283-4.238-5.612Z' transform='translate%28-224.646 -879.146%29' fill='%235570DB'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}
#program .block._pink .hd {
  color: var(--c_pink1);
}
#program .block._pink .list_check li::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 13'%3E%3Cpath d='M225.344,884.555l5.634,4.222h-2.094l11.064-9.631.7.7-9.668,11.021-1.125,1.283-.968-1.283-4.238-5.612Z' transform='translate%28-224.646 -879.146%29' fill='%23CF65A6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  #program #program-demerit .img {
    margin-bottom: -34px;
  }
}
@media screen and (max-width: 767px) {
  #program #program-demerit .text_wrap {
    padding-top: 40px;
    padding-bottom: 20px;
  }
}

/*-------------------------
  flow
-------------------------*/
#flow {
  padding: 0 var(--pdX);
  margin-top: 130px;
}
@media screen and (max-width: 767px) {
  #flow {
    margin-top: 54px;
  }
}
@media screen and (min-width: 768px) {
  #flow .innerWrap {
    display: flex;
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 768px) {
  #flow .sec_title {
    justify-content: flex-end;
    padding-top: 15px;
    margin-left: 18px;
  }
}
@media screen and (max-width: 767px) {
  #flow .sec_title {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 768px) {
  #flow .sec_title .jp {
    writing-mode: vertical-lr;
    margin-top: 15px;
  }
}
@media screen and (min-width: 768px) {
  #flow .sec_title .en {
    writing-mode: vertical-rl;
    line-height: 1;
  }
}
#flow .read {
  letter-spacing: var(--ls50);
}
@media screen and (min-width: 768px) {
  #flow .read {
    writing-mode: vertical-rl;
  }
}
@media screen and (max-width: 767px) {
  #flow .read {
    line-height: 1.6;
    text-align: center;
    padding: 0 var(--pdX);
  }
}

.slide_flow {
  visibility: visible;
}
@media screen and (min-width: 768px) {
  .slide_flow {
    width: calc(100% - 191px);
    padding-top: 15px;
    padding-right: 35px;
    margin-right: 80px;
  }
}
@media screen and (max-width: 767px) {
  .slide_flow {
    display: flex;
    flex-direction: column-reverse;
    margin-top: 33px;
  }
}
.slide_flow .splide__slide {
  display: flex;
}
@media screen and (min-width: 768px) {
  .slide_flow .splide__slide {
    flex-direction: row-reverse;
    width: 100%;
    padding: 60px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .slide_flow .splide__slide {
    flex-direction: column;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .slide_flow .img {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 43.357%;
  }
}
@media screen and (max-width: 767px) {
  .slide_flow .img {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    text-align: center;
    width: 68%;
    aspect-ratio: 255/186;
    margin: 0 auto;
  }
}
.slide_flow .img img {
  opacity: 0;
  transform: scale(0.9);
  max-width: 100%;
  height: auto;
  transition: var(--ease) !important;
}
.slide_flow .text_wrap {
  opacity: 0;
  width: 100%;
  letter-spacing: var(--ls50);
  transform: translateY(20px);
  transition: var(--ease) !important;
}
@media screen and (min-width: 768px) {
  .slide_flow .text_wrap {
    padding-top: 21px;
  }
}
@media screen and (max-width: 767px) {
  .slide_flow .text_wrap {
    line-height: 1.6;
    padding: 32px 32px 0;
  }
}
@media screen and (min-width: 768px) {
  .slide_flow .text_wrap > p:not([class]) {
    padding-right: 60px;
  }
}
.slide_flow .num {
  display: inline-block;
  color: var(--c_blue1);
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 7px;
}
@media screen and (max-width: 767px) {
  .slide_flow .num {
    font-size: 1.3125rem;
    margin-bottom: 6px;
  }
}
.slide_flow .num::before {
  content: "";
  display: block;
  width: 26px;
  height: 1px;
  background: var(--c_gray1);
}
@media screen and (max-width: 767px) {
  .slide_flow .num::before {
    width: 23px;
  }
}
.slide_flow .hd {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 17px;
}
@media screen and (max-width: 767px) {
  .slide_flow .hd {
    font-size: 1.3125rem;
    margin-bottom: 13px;
  }
}
.slide_flow .splide__arrows {
  position: absolute;
  top: 100px;
  right: 0;
  z-index: 10;
  display: flex;
  flex-direction: column-reverse;
  row-gap: 9px;
}
@media screen and (max-width: 767px) {
  .slide_flow .splide__arrows {
    top: 44px;
    right: 40px;
  }
}
.slide_flow .splide__arrow {
  position: relative;
  width: 60px;
  height: auto;
  aspect-ratio: 1/1;
  background: none;
  border: none;
  border-radius: 100%;
  padding: 1px;
  box-shadow: 5px 5px 5px rgba(219, 224, 231, 0.7), -5px -5px 5px #f6f9ff;
}
@media screen and (max-width: 767px) {
  .slide_flow .splide__arrow {
    width: 45px;
  }
}
.slide_flow .splide__arrow:hover {
  box-shadow: 5px 5px 5px rgba(219, 224, 231, 0.7);
}
.slide_flow .splide__arrow[disabled] {
  pointer-events: none;
  opacity: 0.3;
}
.slide_flow .splide__arrow::before {
  content: "";
  overflow: hidden;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 1px;
  background: var(--c_gray2);
  border-radius: 100%;
}
.slide_flow .splide__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  aspect-ratio: 20/14;
  background: url(../img/icon-arrow.svg) no-repeat left center;
  background-size: 100% auto;
  transform: translate(-50%, -50%);
  transition: var(--ease) !important;
}
@media screen and (max-width: 767px) {
  .slide_flow .splide__arrow::after {
    width: 15px;
  }
}
.slide_flow .splide__arrow svg {
  display: none;
}
.slide_flow .splide__arrow--prev {
  background-image: linear-gradient(90deg, #ffffff, transparent);
}
.slide_flow .splide__arrow--prev::after {
  transform: translate(-50%, -50%) rotate(180deg);
}
.slide_flow .splide__arrow--prev:hover::after {
  margin-left: -3px;
}
.slide_flow .splide__arrow--next {
  background-image: linear-gradient(90deg, transparent, #ffffff);
}
.slide_flow .splide__arrow--next:hover::after {
  margin-left: 3px;
}
.slide_flow .splide__pagination {
  position: absolute;
  z-index: 10;
  display: flex;
  gap: 14px 29px;
  padding: 0 5px;
  margin-top: -15px;
}
@media screen and (max-width: 767px) {
  .slide_flow .splide__pagination {
    position: static;
    gap: 7px 14px;
    padding: 0;
    margin-top: 0;
    margin-bottom: 13px;
  }
}
.slide_flow .splide__pagination__page {
  width: 20px;
  height: auto;
  aspect-ratio: 1/1;
  background: var(--c_gray3);
  border: none;
  border-radius: 100%;
  transform: scale(0.5);
  transition: var(--ease) !important;
}
@media screen and (max-width: 767px) {
  .slide_flow .splide__pagination__page {
    width: 10px;
  }
}
.slide_flow .splide__pagination__page.is-active {
  background-color: var(--c_blue1);
  transform: scale(1);
}
.slide_flow .splide__slide.is-active .text_wrap {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.02s !important;
}
.slide_flow .splide__slide.is-active .img img {
  opacity: 1;
  transform: scale(1);
}

/*-------------------------
  schedule
-------------------------*/
#schedule {
  position: relative;
  z-index: 0;
  padding: 0 var(--pdX);
  margin-top: 140px;
}
@media screen and (max-width: 767px) {
  #schedule {
    margin-top: 40px;
  }
}
#schedule .bg {
  position: absolute;
  z-index: -1;
  top: 100%;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  #schedule .bg {
    top: calc(-50 / var(--vp) * var(--vw));
  }
}
#schedule .bg img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  #schedule .innerWrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  #schedule .sec_title {
    align-items: flex-start;
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  #schedule .sec_title {
    margin-bottom: 45px;
  }
}
#schedule .detail_wrap {
  color: var(--c_gray1);
  letter-spacing: var(--ls50);
}
@media screen and (min-width: 768px) {
  #schedule .detail_wrap {
    width: 61.134%;
    padding: 25px 0 0;
  }
}
@media screen and (max-width: 767px) {
  #schedule .detail_wrap {
    line-height: 1.6;
  }
}
#schedule .detail_wrap dl {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 10px;
}
#schedule .detail_wrap dl > div {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 100px;
  padding: 10px 0;
}
#schedule .detail_wrap dt {
  position: relative;
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--c_white);
}
@media screen and (min-width: 768px) {
  #schedule .detail_wrap dt {
    width: 206px;
    min-height: 40px;
    padding: 0 10px 0 48px;
  }
}
@media screen and (max-width: 767px) {
  #schedule .detail_wrap dt {
    width: 127px;
    min-height: 34px;
    font-size: 0.75rem;
    padding: 0 7px 0 15px;
  }
}
#schedule .detail_wrap dt::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 1px;
  background: #E8E9EA;
}
#schedule .detail_wrap dd {
  width: 100%;
  padding: 0 10px 0 38px;
}
@media screen and (max-width: 767px) {
  #schedule .detail_wrap dd {
    padding: 0 13px;
  }
}
#schedule .detail_wrap .notes {
  font-size: 0.875rem;
  margin-top: 13px;
}
@media screen and (max-width: 767px) {
  #schedule .detail_wrap .notes {
    font-size: 0.65625rem;
    margin-top: 9px;
  }
}

/*-------------------------
  companies
-------------------------*/
#companies {
  padding: 0 var(--pdX);
  margin-top: 110px;
}
@media screen and (max-width: 767px) {
  #companies {
    margin-top: 60px;
  }
}
#companies .sec_title {
  margin-bottom: 28px;
}
#companies .read {
  font-size: 0.875rem;
  letter-spacing: var(--ls50);
  text-align: center;
}
@media screen and (max-width: 767px) {
  #companies .read {
    line-height: 1.6;
    padding: 0 var(--pdX);
  }
}
#companies .tab_wrap {
  margin-top: 36px;
}
@media screen and (max-width: 767px) {
  #companies .tab_wrap {
    margin-top: 33px;
  }
}
#companies .tab_box_wrap {
  margin-top: 42px;
}
@media screen and (max-width: 767px) {
  #companies .tab_box_wrap {
    margin-top: 25px;
  }
}
#companies .tab_box:not(:first-child) {
  display: none;
}
#companies .btn_more {
  text-align: center;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  #companies .btn_more {
    margin-top: 20px;
  }
}

.list_companies {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 10px;
}
@media screen and (max-width: 767px) {
  .list_companies {
    row-gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .list_companies > *:nth-child(n+4) {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .list_companies._hide > *:nth-child(-n+6) {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .list_companies._hide + .js_more_btn {
    display: none;
  }
}

.companies_item {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 30px;
  padding: 33px 60px 35px 3px;
}
@media screen and (max-width: 767px) {
  .companies_item {
    border-radius: 10px;
    padding: 20px var(--pdX);
  }
}
.companies_item .logo {
  flex: 1 0 auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .companies_item .logo {
    border-right: 1px solid var(--c_white);
    padding: 7px 0 0;
  }
}
@media screen and (min-width: 768px) {
  .companies_item .logo::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 1px;
    background: #E8E9EA;
  }
}
.companies_item .logo figure {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .companies_item .logo figure {
    aspect-ratio: 1/1;
    width: 100%;
    height: 100%;
    padding: 24px;
  }
}
.companies_item .logo img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .companies_item .logo img {
    max-height: 100px;
  }
}
@media screen and (max-width: 767px) {
  .companies_item .logo img {
    max-height: 51px;
  }
}
@media screen and (min-width: 768px) {
  .companies_item .head {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #E8E9EA;
    padding: 0 0 10px 5px;
  }
}
@media screen and (max-width: 767px) {
  .companies_item .head {
    padding: 0 0 9px 16px;
  }
}
.companies_item .name {
  width: 100%;
  color: var(--c_blue1);
  font-weight: 700;
  letter-spacing: var(--ls50);
}
@media screen and (min-width: 768px) {
  .companies_item .name {
    padding: 2px 0;
  }
}
.companies_item .btn02 {
  flex: 1 0 auto;
  width: 120px;
}
@media screen and (max-width: 767px) {
  .companies_item .btn02 {
    width: 90px;
    margin-top: 8px;
  }
}
.companies_item .btn02 .btn_inner {
  max-width: inherit;
  width: 100%;
  min-height: 30px;
}
@media screen and (max-width: 767px) {
  .companies_item .btn02 .btn_inner {
    min-height: 22px;
  }
}
.companies_item .btn02 .btn_inner::after {
  right: 13px;
}
@media screen and (max-width: 767px) {
  .companies_item .btn02 .btn_inner::after {
    right: 10px;
    width: 12px;
  }
}
.companies_item .main {
  color: var(--c_gray1);
  font-size: 0.875rem;
  letter-spacing: var(--ls50);
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .companies_item .main {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 2em;
    padding: 18px 5px 0;
  }
}
@media screen and (max-width: 767px) {
  .companies_item .main {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #E8E9EA;
    font-size: 0.765625rem;
  }
}
@media screen and (max-width: 767px) {
  .companies_item .main::before {
    content: "";
    display: block;
    height: 1px;
    background: var(--c_white);
    margin-bottom: 12px;
  }
}
.companies_item .main dt {
  font-weight: 700;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .companies_item .main dt {
    margin-bottom: 8px;
  }
}
.companies_item .inner {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-template-rows: max-content 1fr;
}
@media screen and (min-width: 768px) {
  .companies_item .inner {
    grid-template-columns: 202px 1fr;
    column-gap: 36px;
  }
}
@media screen and (max-width: 767px) {
  .companies_item .inner {
    grid-template-columns: auto 1fr;
    row-gap: 7px;
  }
}
.companies_item .logo {
  grid-area: 1/1/3/2;
}
@media screen and (max-width: 767px) {
  .companies_item .logo {
    grid-area: 1/1/2/2;
    max-width: 120px;
    min-width: 60px;
    min-height: 60px;
  }
}
.companies_item .head {
  grid-area: 1/2/2/3;
}
@media screen and (max-width: 767px) {
  .companies_item .head {
    grid-area: 1/2/2/3;
  }
}
.companies_item .main {
  grid-area: 2/2/3/3;
}
@media screen and (max-width: 767px) {
  .companies_item .main {
    grid-area: 2/1/3/3;
  }
}

/*-------------------------
  tab
-------------------------*/
/* tab_btn */
.tab_wrap > input[type=radio] {
  display: none;
}

.tab_btn ul {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 30px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .tab_btn ul {
    gap: 8px 16px;
  }
}
.tab_btn ul li {
  width: 210px;
}
@media screen and (max-width: 767px) {
  .tab_btn ul li {
    width: 120px;
  }
}
.tab_btn ul li label {
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 60px;
  background: #E4E8ED;
  border: 1px solid transparent;
  box-shadow: inset 5px 5px 10px #DBE0E7, inset -2px -2px 8px var(--c_white);
  border-radius: 100px;
  color: #B8C1D0;
  font-weight: 700;
  letter-spacing: 1em;
  text-indent: 1em;
}
@media screen and (max-width: 767px) {
  .tab_btn ul li label {
    min-height: 52px;
    font-size: 0.875rem;
  }
}
.tab_btn ul li .comingsoon {
  letter-spacing: 0;
  text-indent: 0;
}

#tab-0:disabled ~ .tab_btn label[for=tab-0] {
  pointer-events: none;
}

#tab-0:checked ~ .tab_btn label[for=tab-0] {
  background-color: var(--c_gray2);
  border-color: var(--c_white);
  box-shadow: 5px 5px 5px rgba(219, 224, 231, 0.7), -5px -5px 5px #f6f9ff;
  color: var(--c_blue2);
}

#tab-1:disabled ~ .tab_btn label[for=tab-1] {
  pointer-events: none;
}

#tab-1:checked ~ .tab_btn label[for=tab-1] {
  background-color: var(--c_gray2);
  border-color: var(--c_white);
  box-shadow: 5px 5px 5px rgba(219, 224, 231, 0.7), -5px -5px 5px #f6f9ff;
  color: var(--c_blue2);
}

#tab-2:disabled ~ .tab_btn label[for=tab-2] {
  pointer-events: none;
}

#tab-2:checked ~ .tab_btn label[for=tab-2] {
  background-color: var(--c_gray2);
  border-color: var(--c_white);
  box-shadow: 5px 5px 5px rgba(219, 224, 231, 0.7), -5px -5px 5px #f6f9ff;
  color: var(--c_blue2);
}

#tab-3:disabled ~ .tab_btn label[for=tab-3] {
  pointer-events: none;
}

#tab-3:checked ~ .tab_btn label[for=tab-3] {
  background-color: var(--c_gray2);
  border-color: var(--c_white);
  box-shadow: 5px 5px 5px rgba(219, 224, 231, 0.7), -5px -5px 5px #f6f9ff;
  color: var(--c_blue2);
}

#tab-4:disabled ~ .tab_btn label[for=tab-4] {
  pointer-events: none;
}

#tab-4:checked ~ .tab_btn label[for=tab-4] {
  background-color: var(--c_gray2);
  border-color: var(--c_white);
  box-shadow: 5px 5px 5px rgba(219, 224, 231, 0.7), -5px -5px 5px #f6f9ff;
  color: var(--c_blue2);
}

#tab-5:disabled ~ .tab_btn label[for=tab-5] {
  pointer-events: none;
}

#tab-5:checked ~ .tab_btn label[for=tab-5] {
  background-color: var(--c_gray2);
  border-color: var(--c_white);
  box-shadow: 5px 5px 5px rgba(219, 224, 231, 0.7), -5px -5px 5px #f6f9ff;
  color: var(--c_blue2);
}

#tab-6:disabled ~ .tab_btn label[for=tab-6] {
  pointer-events: none;
}

#tab-6:checked ~ .tab_btn label[for=tab-6] {
  background-color: var(--c_gray2);
  border-color: var(--c_white);
  box-shadow: 5px 5px 5px rgba(219, 224, 231, 0.7), -5px -5px 5px #f6f9ff;
  color: var(--c_blue2);
}

#tab-7:disabled ~ .tab_btn label[for=tab-7] {
  pointer-events: none;
}

#tab-7:checked ~ .tab_btn label[for=tab-7] {
  background-color: var(--c_gray2);
  border-color: var(--c_white);
  box-shadow: 5px 5px 5px rgba(219, 224, 231, 0.7), -5px -5px 5px #f6f9ff;
  color: var(--c_blue2);
}

#tab-8:disabled ~ .tab_btn label[for=tab-8] {
  pointer-events: none;
}

#tab-8:checked ~ .tab_btn label[for=tab-8] {
  background-color: var(--c_gray2);
  border-color: var(--c_white);
  box-shadow: 5px 5px 5px rgba(219, 224, 231, 0.7), -5px -5px 5px #f6f9ff;
  color: var(--c_blue2);
}

#tab-9:disabled ~ .tab_btn label[for=tab-9] {
  pointer-events: none;
}

#tab-9:checked ~ .tab_btn label[for=tab-9] {
  background-color: var(--c_gray2);
  border-color: var(--c_white);
  box-shadow: 5px 5px 5px rgba(219, 224, 231, 0.7), -5px -5px 5px #f6f9ff;
  color: var(--c_blue2);
}

#tab-10:disabled ~ .tab_btn label[for=tab-10] {
  pointer-events: none;
}

#tab-10:checked ~ .tab_btn label[for=tab-10] {
  background-color: var(--c_gray2);
  border-color: var(--c_white);
  box-shadow: 5px 5px 5px rgba(219, 224, 231, 0.7), -5px -5px 5px #f6f9ff;
  color: var(--c_blue2);
}

/*-------------------------
  information
-------------------------*/
#information {
  padding: 0 var(--pdX) 160px;
  margin-top: 130px;
}
@media screen and (max-width: 767px) {
  #information {
    padding-bottom: 60px;
    margin-top: 75px;
  }
}
#information .sec_title {
  margin-bottom: 54px;
}
@media screen and (max-width: 767px) {
  #information .sec_title {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 767px) {
  #information .sec_title .jp {
    margin-top: 22px;
  }
}
#information .btn_wrap {
  display: flex;
  justify-content: center;
  max-width: 985px;
  width: 100%;
  margin: 0 auto;
  column-gap: 40px;
}
@media screen and (max-width: 767px) {
  #information .btn_wrap {
    flex-direction: column;
    row-gap: 40px;
    max-width: 343px;
  }
}
#information .btn_wrap > * {
  width: 100%;
}
#information .btn_wrap .btn_inner {
  width: 100%;
  min-height: 80px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #information .btn_wrap .btn_inner {
    min-height: 70px;
    font-size: 0.875rem;
  }
}
#information .btn02 {
  background: linear-gradient(0deg, var(--c_blue1), #8293AC);
  box-shadow: 5px 5px 5px rgba(219, 224, 231, 0.7), -5px -5px 5px #f6f9ff;
  border-radius: 100px;
  padding: 1px;
}
#information .btn02:hover {
  box-shadow: 5px 5px 5px rgba(219, 224, 231, 0.7);
}
#information .btn02 .btn_inner {
  box-shadow: none;
}

/*== お問い合わせ ====================================================================================================*/
/*-------------------------
  共通
-------------------------*/
.grecaptcha-badge {
  z-index: 10;
  transition: right 0.3s !important;
}

#page_contact #sec_contact_form,
#page_contact #sec_contact_thanks {
  padding: 0 var(--pdX) 80px;
}
@media screen and (max-width: 767px) {
  #page_contact #sec_contact_form,
#page_contact #sec_contact_thanks {
    padding-bottom: 60px;
  }
}
#page_contact .innerWrap {
  max-width: 800px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 30px;
  padding: 13px 49px 50px;
}
@media screen and (max-width: 767px) {
  #page_contact .innerWrap {
    border-radius: 20px;
    padding: 15px 15px 42px;
  }
}
#page_contact .btn_inner {
  width: 100%;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #page_contact .btn_inner {
    min-height: 52px;
  }
}

/*-------------------------
  入力画面
-------------------------*/
@media screen and (max-width: 767px) {
  #page_contact #sec_contact_form {
    font-size: 0.875rem;
  }
}
#page_contact #sec_contact_form #mailformpro {
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
}
#page_contact #sec_contact_form .form {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  #page_contact #sec_contact_form .form {
    margin-top: 0;
  }
}
#page_contact #sec_contact_form .form textarea {
  height: 129px;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  #page_contact #sec_contact_form .form textarea {
    height: 112px;
  }
}
#page_contact #sec_contact_form .mfp_err {
  color: var(--c_red1);
  margin-top: 3px;
}
#page_contact #sec_contact_form .form_wrap {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 35px;
}
@media screen and (max-width: 767px) {
  #page_contact #sec_contact_form .form_wrap {
    row-gap: 29px;
  }
}
#page_contact #sec_contact_form .item_title {
  display: flex;
  align-items: center;
  font-weight: 700;
  margin-bottom: 12px;
}
#page_contact #sec_contact_form .required {
  color: var(--c_red1);
}
#page_contact #sec_contact_form .form_privacy {
  margin-top: 35px;
}
@media screen and (max-width: 767px) {
  #page_contact #sec_contact_form .form_privacy {
    margin-top: 30px;
    padding: 0 2px;
  }
}
#page_contact #sec_contact_form .form_privacy .check {
  letter-spacing: var(--ls50);
  text-align: center;
}
@media screen and (max-width: 767px) {
  #page_contact #sec_contact_form .form_privacy .check > p {
    text-align: left;
  }
}
#page_contact #sec_contact_form .form_privacy .check label {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  #page_contact #sec_contact_form .form_privacy .check label {
    margin-top: 36px;
  }
}
#page_contact #sec_contact_form .form_privacy .check label > span:first-of-type {
  padding-left: 25px;
}
@media screen and (max-width: 767px) {
  #page_contact #sec_contact_form .form_privacy .check label > span:first-of-type {
    padding-left: 22px;
  }
}
#page_contact #sec_contact_form .form_privacy .check label > span:first-of-type::before {
  top: 4px;
  width: 17px;
  height: 17px;
  border-color: var(--c_blue1);
  border-radius: 4px;
  margin: 0;
}
@media screen and (max-width: 767px) {
  #page_contact #sec_contact_form .form_privacy .check label > span:first-of-type::before {
    top: 2px;
    width: 15px;
    height: 15px;
  }
}
#page_contact #sec_contact_form .form_privacy .check label > span:first-of-type::after {
  bottom: auto;
  top: 4px;
  left: 0px;
  width: 9px;
  height: 5px;
  border-bottom: 2px solid var(--c_white);
  border-right: none;
  border-left: 2px solid var(--c_white);
  transform: rotate(-45deg);
  margin: 5px 0 0 4px;
}
@media screen and (max-width: 767px) {
  #page_contact #sec_contact_form .form_privacy .check label > span:first-of-type::after {
    top: 2px;
    width: 7.5px;
    height: 4.5px;
  }
}
#page_contact #sec_contact_form .form_privacy .check label input[type=checkbox]:checked ~ span::before {
  background-color: var(--c_blue1);
}
#page_contact #sec_contact_form .form_privacy .check label span.required {
  padding: 0;
}
#page_contact #sec_contact_form .form_privacy .check label span.required::before, #page_contact #sec_contact_form .form_privacy .check label span.required::after {
  display: none;
}
#page_contact #sec_contact_form .form_privacy .check a {
  display: inline-block;
  color: var(--c_blue1);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: all 0.25s linear !important;
}
body:not(.view_sp) #page_contact #sec_contact_form .form_privacy .check a:hover {
  opacity: 0.6;
  transition: all 0.25s linear !important;
}
#page_contact #sec_contact_form .form_privacy .mfp_err {
  text-align: center;
}
@media screen and (max-width: 767px) {
  #page_contact #sec_contact_form .form_privacy .mfp_err {
    padding: 0 5em;
  }
}
#page_contact #sec_contact_form .btn02 {
  max-width: 210px;
  width: 100%;
  margin: 50px auto 0;
}
@media screen and (max-width: 767px) {
  #page_contact #sec_contact_form .btn02 {
    max-width: 183px;
    margin-top: 42px;
  }
}
#page_contact #sec_contact_form .btn02 .btn_inner {
  width: 100%;
}
#page_contact #sec_contact_form .btn_wrap {
  display: flex;
  justify-content: center;
  gap: 29px;
  margin: 40px auto;
}
@media screen and (max-width: 767px) {
  #page_contact #sec_contact_form .btn_wrap {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  #page_contact #sec_contact_form .btn_wrap + p {
    max-width: 241px;
    width: 100%;
    font-size: 0.875rem;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  #page_contact #sec_contact_form .btn_wrap li {
    min-width: 241px;
  }
}
@media screen and (max-width: 767px) {
  #page_contact #sec_contact_form .btn_wrap li {
    max-width: 241px;
    width: 100%;
    margin: 0 auto;
  }
}
#page_contact #sec_contact_form .btn_wrap a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: 100%;
  background: var(--c_white);
  border: 1px solid var(--c_black);
  border-radius: 100px;
  font-size: 1.25rem;
  font-weight: 500;
  padding: 6px 10px;
}
@media screen and (max-width: 767px) {
  #page_contact #sec_contact_form .btn_wrap a {
    padding: 7px 10px;
  }
}
#page_contact #sec_contact_form .btn_wrap .tel .num {
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #page_contact #sec_contact_form .btn_wrap p.sp.ptac {
    margin-top: 15px;
  }
}

/*-------------------------
  確認画面
-------------------------*/
#page_contact #mfp_phase_confirm {
  display: none;
}
#page_contact #mfp_phase_confirm .hd {
  font-size: 1.5rem;
  margin: 30px 0 28px;
}
@media screen and (max-width: 767px) {
  #page_contact #mfp_phase_confirm .hd {
    font-size: 1.3125rem;
  }
}
#page_contact #mfp_phase_confirm #mfp_confirm_table {
  width: 100%;
}
#page_contact #mfp_phase_confirm #mfp_confirm_table tr {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  border-bottom: 1px solid var(--c_gray3);
  padding-bottom: 30px;
}
#page_contact #mfp_phase_confirm #mfp_confirm_table tr:not(:last-child) {
  margin-bottom: 30px;
}
#page_contact #mfp_phase_confirm #mfp_confirm_table tr > * {
  width: 100%;
  padding: 0;
}
#page_contact #mfp_phase_confirm #mfp_confirm_table th {
  font-weight: 700;
  margin-bottom: 12px;
}
#page_contact #mfp_phase_confirm .mfp_buttons {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
}
#page_contact #mfp_phase_confirm .mfp_buttons > * {
  width: 210px;
  margin: 0;
}

/*-------------------------
  完了画面
-------------------------*/
#page_contact #sec_contact_thanks .innerWrap {
  padding-top: 50px;
}
#page_contact #sec_contact_thanks div#mfp_thanks {
  font-size: 1.125rem;
  padding: 0;
  font-weight: 700;
  margin-bottom: 2em;
}
#page_contact #sec_contact_thanks div#mfp_thanks + div#mfp_thanks {
  display: none;
}
#page_contact #sec_contact_thanks div#mfp_thanks strong {
  color: var(--c_red1);
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  #page_contact #sec_contact_thanks div#mfp_thanks strong {
    font-size: 1.25rem;
  }
}
#page_contact #sec_contact_thanks .btn02 {
  max-width: 210px;
  margin: 40px auto 0;
}