@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

			$

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
/*================================
ブレークポイント定義
=================================*/
/*================================
size()関数
=================================*/
/*================================
color
=================================*/
/*================================
fadein animation
=================================*/
.fadein.anim_active {
  animation: fadein 0.6s forwards;
}

@keyframes fadein {
  0% {
    opacity: 1%;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes zoomOut {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

			RESET

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, legend, input, label, textarea, p, blockquote, table, caption, tbody, tfoot, thead, th, td, option, figure, figcaption {
  margin: 0;
  padding: 0;
}

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

fieldset, img, abbr, acronym {
  border: 0;
}

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

ol, ul {
  list-style: none;
}

caption, th {
  text-align: left;
}

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

a, ins, del {
  text-decoration: none;
}

a {
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border: 0;
  margin: 0;
  vertical-align: bottom;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

object, embed, th, td {
  vertical-align: top;
}

input, textarea, select {
  font-size: 1em;
}

picture, figure, audio {
  display: inline-block;
}

audio {
  max-width: 100%;
}

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

input[type=submit],
input[type=button],
input[type=reset] {
  -webkit-appearance: none;
}

/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

			COMMON

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
* {
  box-sizing: border-box;
  outline: none;
  font-family: "Noto Sans JP", serif;
  font-size: 3.8461538462vw;
  font-weight: 500;
}
@media screen and (min-width: 960px) {
  * {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  * {
    font-size: 16px;
  }
}

body, a {
  color: #000;
}

html,
body {
  overflow-x: clip;
  overflow-y: auto;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 0;
  background: #000;
  position: relative;
  opacity: 0;
}
body.show {
  opacity: 1;
  transition: 1s;
}

main {
  flex: 1;
}

@media screen and (min-width: 960px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}
@media screen and (min-width: 960px) {
  .pc {
    display: block;
  }
}

/*================================
contents title
=================================*/
.contents_title_wrap {
  margin-bottom: 20.5128205128vw;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .contents_title_wrap {
    margin-bottom: 4.1666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .contents_title_wrap {
    margin-bottom: 60px;
  }
}
.contents_title_wrap * {
  color: #143C70;
}
.contents_title_wrap span {
  display: inline-block;
}
.contents_title_wrap .en {
  margin-bottom: 2.5641025641vw;
}
@media screen and (min-width: 960px) {
  .contents_title_wrap .en {
    margin-bottom: 0.3472222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .contents_title_wrap .en {
    margin-bottom: 5px;
  }
}
.contents_title_wrap .en span {
  font-size: 13.8461538462vw;
  line-height: 1;
}
@media screen and (min-width: 960px) {
  .contents_title_wrap .en span {
    font-size: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .contents_title_wrap .en span {
    font-size: 40px;
  }
}
.contents_title_wrap .ja span {
  font-size: 5.641025641vw;
}
@media screen and (min-width: 960px) {
  .contents_title_wrap .ja span {
    font-size: 0.8333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .contents_title_wrap .ja span {
    font-size: 12px;
  }
}

/*================================
link btn
=================================*/
.link_btn {
  width: 97.4358974359vw;
  margin: 0 auto;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .link_btn {
    width: 13.1944444444vw;
    max-width: 190px;
  }
}
.link_btn a {
  display: block;
  width: 100%;
  padding: 6.1538461538vw 0;
  border: 1px solid #143C70;
  position: relative;
  transition: all 0.6s;
}
@media screen and (min-width: 960px) {
  .link_btn a {
    padding: 0.8333333333vw 0;
    overflow: hidden;
  }
}
@media screen and (min-width: 1440px) {
  .link_btn a {
    padding: 12px 0;
  }
}
@media screen and (min-width: 960px) {
  .link_btn a:before {
    content: "";
    width: 105%;
    height: 100%;
    background: #143C70;
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform 0.3s;
  }
}
.link_btn a span {
  color: #143C70;
  position: relative;
  z-index: 1;
  transition: all 0.6s;
}
@media screen and (min-width: 960px) {
  .link_btn a:hover {
    background: #143C70;
  }
  .link_btn a:hover:before {
    transform-origin: left top;
    transform: scale(1, 1);
  }
  .link_btn a:hover span {
    color: #fff;
  }
}

/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

			header / footer

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
/*================================
header
=================================*/
header .header_container {
  display: flex;
  align-items: center;
  width: 100%;
  height: 13.8461538462vw;
  padding: 0 2.5641025641vw;
}
@media screen and (min-width: 960px) {
  header .header_container {
    height: 5.6944444444vw;
    max-height: 82px;
    padding: 0 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  header .header_container {
    padding: 0 20px;
  }
}
header .header_container .logo {
  display: flex;
  align-items: center;
}
header .header_container .logo .image {
  width: 24.6153846154vw;
  margin-right: 2.5641025641vw;
}
@media screen and (min-width: 960px) {
  header .header_container .logo .image {
    width: 8.3333333333vw;
    max-width: 120px;
    margin-right: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  header .header_container .logo .image {
    margin-right: 10px;
  }
}
header .header_container .logo .image a {
  display: block;
}
header .header_container .logo h1 {
  font-size: 3.0769230769vw;
  color: #fff;
}
@media screen and (min-width: 960px) {
  header .header_container .logo h1 {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  header .header_container .logo h1 {
    font-size: 16px;
  }
}
header .mv {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 47.6923076923vw;
  margin-bottom: 8.2051282051vw;
  background: url("../images/common/mv_bg_sp.jpg") no-repeat center center;
  background-size: 100%;
}
@media screen and (min-width: 960px) {
  header .mv {
    height: 32.5vw;
    max-height: 468px;
    margin-bottom: 4.1666666667vw;
    background: url("../images/common/mv_bg.jpg") no-repeat center center;
    background-size: 100%;
  }
}
@media screen and (min-width: 1440px) {
  header .mv {
    margin-bottom: 60px;
  }
}
header .mv_logo {
  width: 52.3076923077vw;
}
@media screen and (min-width: 960px) {
  header .mv_logo {
    width: 35.6944444444vw;
    max-width: 514px;
  }
}

/*================================
footer
=================================*/
footer {
  padding: 0 2.5641025641vw 5.1282051282vw;
  background: #000;
}
@media screen and (min-width: 960px) {
  footer {
    padding: 0 1.3888888889vw 2.0833333333vw;
    text-align: center;
  }
}
@media screen and (min-width: 1440px) {
  footer {
    padding: 0 20px 30px;
  }
}
footer .bottom_list {
  margin-bottom: 7.6923076923vw;
}
@media screen and (min-width: 960px) {
  footer .bottom_list {
    margin-bottom: 4.1666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  footer .bottom_list {
    margin-bottom: 60px;
  }
}
footer .bottom_list * {
  font-size: 3.0769230769vw;
  line-height: 1.65;
  color: #fff;
}
@media screen and (min-width: 960px) {
  footer .bottom_list * {
    font-size: 0.8333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  footer .bottom_list * {
    font-size: 12px;
  }
}
footer .copyright {
  font-size: 2.5641025641vw;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 960px) {
  footer .copyright {
    font-size: 0.8333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  footer .copyright {
    font-size: 12px;
  }
}

/*================================
search container
=================================*/
.search_container {
  margin-bottom: 7.6923076923vw;
}
@media screen and (min-width: 960px) {
  .search_container {
    margin-bottom: 2.0833333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .search_container {
    margin-bottom: 30px;
  }
}
.search_container .inner {
  padding: 0 2.5641025641vw;
}
@media screen and (min-width: 960px) {
  .search_container .inner {
    width: 71.6666666667vw;
    max-width: 1032px;
    margin: 0 auto;
    padding: 0;
  }
}
.search_container .inner .tab {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.search_container .inner .tab li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 8.4615384615vw;
  color: #510085;
  background: #fff;
  cursor: pointer;
}
@media screen and (min-width: 960px) {
  .search_container .inner .tab li {
    height: 3.3333333333vw;
    max-height: 48px;
  }
}
.search_container .inner .tab li span {
  display: block;
  font-size: 3.5897435897vw;
  color: #510085;
}
@media screen and (min-width: 960px) {
  .search_container .inner .tab li span {
    font-size: 1.25vw;
  }
}
@media screen and (min-width: 1440px) {
  .search_container .inner .tab li span {
    font-size: 18px;
  }
}
.search_container .inner .tab li.current {
  height: 10.5128205128vw;
  background: linear-gradient(#9C00FF 0%, #510085 100%);
}
@media screen and (min-width: 960px) {
  .search_container .inner .tab li.current {
    height: 4.3055555556vw;
    max-height: 62px;
  }
}
.search_container .inner .tab li.current span {
  color: #fff;
}
.search_container .inner .box {
  padding: 10.2564102564vw 5.1282051282vw;
  border: 2px solid #510085;
}
@media screen and (min-width: 960px) {
  .search_container .inner .box {
    padding: 4.5138888889vw 2.0833333333vw 4.1666666667vw;
    border-width: 0.2777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .search_container .inner .box {
    padding: 65px 30px 60px;
    border-width: 4px;
  }
}
.search_container .inner .box .search {
  margin-bottom: 10.2564102564vw;
  padding-bottom: 5.1282051282vw;
  border-bottom: 1px solid #505050;
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .search {
    margin-bottom: 4.1666666667vw;
    padding-bottom: 2.2222222222vw;
  }
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .search {
    margin-bottom: 60px;
    padding-bottom: 32px;
  }
}
.search_container .inner .box .search ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 5.1282051282vw;
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .search ul {
    flex-wrap: nowrap;
    margin-bottom: 2.2222222222vw;
  }
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .search ul {
    margin-bottom: 32px;
  }
}
.search_container .inner .box .search ul li {
  width: 48%;
  margin-bottom: 5.1282051282vw;
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .search ul li {
    width: 24%;
    margin-bottom: 0;
    position: relative;
  }
}
.search_container .inner .box .search ul li:last-child, .search_container .inner .box .search ul li:nth-last-child(2) {
  margin-bottom: 0;
}
.search_container .inner .box .search ul li .search_title {
  display: block;
  margin-bottom: 3.0769230769vw;
  font-size: 3.0769230769vw;
  color: #fff;
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .search ul li .search_title {
    margin-bottom: 0.6944444444vw;
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .search_container .inner .box .search ul li .search_title {
    margin-bottom: 10px;
    font-size: 16px;
  }
}
.search_container .inner .box .search ul li .select, .search_container .inner .box .search ul li .calendar {
  width: 100%;
  height: 10.2564102564vw;
  position: relative;
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .search ul li .select, .search_container .inner .box .search ul li .calendar {
    height: 3.2638888889vw;
    max-height: 47px;
  }
}
.search_container .inner .box .search ul li .select:before, .search_container .inner .box .search ul li .calendar:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.5641025641vw;
  transform: translateY(-50%);
  pointer-events: none;
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .search ul li .select:before, .search_container .inner .box .search ul li .calendar:before {
    right: 1.3888888889vw;
  }
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .search ul li .select:before, .search_container .inner .box .search ul li .calendar:before {
    right: 20px;
  }
}
.search_container .inner .box .search ul li .select select, .search_container .inner .box .search ul li .calendar span {
  font-size: 3.5897435897vw;
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .search ul li .select select, .search_container .inner .box .search ul li .calendar span {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .search_container .inner .box .search ul li .select select, .search_container .inner .box .search ul li .calendar span {
    font-size: 16px;
  }
}
.search_container .inner .box .search ul li .select:before {
  width: 3.5897435897vw;
  height: 2.5641025641vw;
  background: url("../images/common/icon_arrow_select.svg") no-repeat center center;
  background-size: 100%;
  pointer-events: none;
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .search ul li .select:before {
    width: 1.0416666667vw;
    max-width: 15px;
    height: 0.6944444444vw;
    max-height: 10px;
  }
}
.search_container .inner .box .search ul li .select select {
  width: 100%;
  height: 100%;
  color: #000;
  background: #D7D7D7;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  padding: 0 7.6923076923vw 0 2.5641025641vw;
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .search ul li .select select {
    padding: 0 2.7777777778vw 0 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .search_container .inner .box .search ul li .select select {
    padding: 0 40px 0 20px;
  }
}
.search_container .inner .box .search ul li .select select.is-empty {
  color: #979797 !important;
}
.search_container .inner .box .search ul li .calendar {
  display: flex;
  align-items: center;
  padding: 0 2.5641025641vw;
  background: #D7D7D7;
  cursor: pointer;
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .search ul li .calendar {
    padding: 0 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .search_container .inner .box .search ul li .calendar {
    padding: 0 20px;
  }
}
.search_container .inner .box .search ul li .calendar:before {
  width: 3.5897435897vw;
  height: 3.5897435897vw;
  background: url("../images/common/icon_calendar_select.svg") no-repeat center center;
  background-size: 100%;
  pointer-events: none;
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .search ul li .calendar:before {
    width: 0.9722222222vw;
    max-width: 14px;
    height: 0.9722222222vw;
    max-height: 14px;
  }
}
.search_container .inner .box .search ul li .calendar span.is-empty {
  color: #979797;
}
.search_container .inner .box .search ul li #calendar_popup {
  width: 100%;
  background: #fff;
  position: absolute;
  top: 44%;
  left: 0;
  z-index: 10;
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .search ul li #calendar_popup {
    top: 100%;
  }
}
.search_container .inner .box .search ul li #calendar_popup .caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.5641025641vw 0;
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .search ul li #calendar_popup .caption {
    padding: 0.3472222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .search_container .inner .box .search ul li #calendar_popup .caption {
    padding: 5px 0;
  }
}
.search_container .inner .box .search ul li #calendar_popup .caption .prev button, .search_container .inner .box .search ul li #calendar_popup .caption .next button {
  color: #510085;
  background: transparent;
  border: none;
  border-radius: unset;
  cursor: pointer;
}
.search_container .inner .box .search ul li #calendar_popup #wp-calendar {
  width: 100%;
}
.search_container .inner .box .search ul li #calendar_popup #wp-calendar th, .search_container .inner .box .search ul li #calendar_popup #wp-calendar td {
  text-align: center;
}
.search_container .inner .box .search ul li #calendar_popup #wp-calendar th *, .search_container .inner .box .search ul li #calendar_popup #wp-calendar td * {
  font-weight: 500;
}
.search_container .inner .box .search ul li #calendar_popup #wp-calendar th.sat {
  color: #092d80;
}
.search_container .inner .box .search ul li #calendar_popup #wp-calendar th.sun {
  color: #800909;
}
.search_container .inner .box .search ul li #calendar_popup #wp-calendar td {
  padding: 1.2820512821vw;
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .search ul li #calendar_popup #wp-calendar td {
    padding: 0.1388888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .search_container .inner .box .search ul li #calendar_popup #wp-calendar td {
    padding: 2px;
  }
}
.search_container .inner .box .search ul li #calendar_popup #wp-calendar td span {
  display: block;
  padding: 1.7948717949vw;
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .search ul li #calendar_popup #wp-calendar td span {
    padding: 0.1388888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .search_container .inner .box .search ul li #calendar_popup #wp-calendar td span {
    padding: 2px;
  }
}
.search_container .inner .box .search ul li #calendar_popup #wp-calendar td a {
  width: 100%;
  height: 100%;
  color: #fff;
  border-radius: 50%;
  position: relative;
}
.search_container .inner .box .search ul li #calendar_popup #wp-calendar td a:before {
  content: "";
  width: 9.2307692308vw;
  height: 9.2307692308vw;
  background: #510085;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .search ul li #calendar_popup #wp-calendar td a:before {
    width: 1.9444444444vw;
    max-width: 28px;
    height: 1.9444444444vw;
    max-height: 28px;
  }
}
.search_container .inner .box .search ul li #calendar_popup #wp-calendar td a span {
  position: relative;
  z-index: 1;
}
.search_container .inner .box .search .reset_btn {
  text-align: center;
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .search .reset_btn {
    width: 33.0555555556vw;
    max-width: 476px;
    margin: 0 auto;
  }
}
.search_container .inner .box .search .reset_btn a {
  width: 100%;
  padding: 2.3076923077vw 0 2.0512820513vw;
  font-size: 3.5897435897vw;
  color: #510085;
  background: #fff;
  border: 1px solid #510085;
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .search .reset_btn a {
    padding: 1.1805555556vw 0 1.1111111111vw;
    font-size: 1.1111111111vw;
    border-width: 1px;
  }
}
@media screen and (min-width: 1440px) {
  .search_container .inner .box .search .reset_btn a {
    padding: 17px 0 16px;
    font-size: 16px;
  }
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .search .reset_btn a:hover {
    color: #fff;
    background: #510085;
  }
}
.search_container .inner .box .contents .tab_section.is-hidden {
  display: none;
}
.search_container .inner .box .contents .tab_section.is-active {
  display: block;
}
.search_container .inner .box .contents .tab_section .list {
  margin-bottom: 7.6923076923vw;
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .contents .tab_section .list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 4.1666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .search_container .inner .box .contents .tab_section .list {
    margin-bottom: 60px;
  }
}
.search_container .inner .box .contents .tab_section .list .item {
  margin-bottom: 4.1025641026vw;
  background: #fff;
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .contents .tab_section .list .item {
    width: 49%;
    margin-bottom: 1.1111111111vw;
  }
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .contents .tab_section .list .item {
    margin-bottom: 16px;
  }
}
.search_container .inner .box .contents .tab_section .list .item:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .contents .tab_section .list .item:nth-last-child(2) {
    margin-bottom: 0;
  }
}
.search_container .inner .box .contents .tab_section .list .item .image {
  flex-shrink: 0;
}
.search_container .inner .box .contents .tab_section .list .item .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.search_container .inner .box .contents .tab_section .list .item .text_wrap {
  width: 100%;
}
.search_container .inner .box .contents .tab_section .list .item .text_wrap ul {
  display: flex;
  align-items: center;
  margin-bottom: 1.5384615385vw;
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .contents .tab_section .list .item .text_wrap ul {
    margin-bottom: 0.8333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .search_container .inner .box .contents .tab_section .list .item .text_wrap ul {
    margin-bottom: 12px;
  }
}
.search_container .inner .box .contents .tab_section .list .item .text_wrap ul li.area span {
  display: inline-block;
  padding: 0.5128205128vw 1.0256410256vw;
  color: #fff;
  background: #510085;
  border-radius: 1.0256410256vw;
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .contents .tab_section .list .item .text_wrap ul li.area span {
    padding: 0.1388888889vw 0.2777777778vw;
    border-radius: 0.2777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .search_container .inner .box .contents .tab_section .list .item .text_wrap ul li.area span {
    padding: 2px 4px;
    border-radius: 4px;
  }
}
.search_container .inner .box .contents .tab_section .list .item .text_wrap ul li.date {
  color: #510085;
}
.search_container .inner .box .contents .tab_section .list .item .text_wrap .title {
  margin-bottom: 1.5384615385vw;
  font-weight: 700;
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .contents .tab_section .list .item .text_wrap .title {
    margin-bottom: 0.4166666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .search_container .inner .box .contents .tab_section .list .item .text_wrap .title {
    margin-bottom: 6px;
  }
}
.search_container .inner .box .contents .tab_section .list .item .text_wrap .sub_title .fits_held_text {
  display: inline-block;
  width: 5.1282051282vw;
  margin-left: 1.2820512821vw;
  vertical-align: middle;
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .contents .tab_section .list .item .text_wrap .sub_title .fits_held_text {
    width: 1.9444444444vw;
    max-width: 28px;
    margin-left: 0.3472222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .search_container .inner .box .contents .tab_section .list .item .text_wrap .sub_title .fits_held_text {
    margin-left: 5px;
  }
}
.search_container .inner .box .contents .tab_section .list .no_search_text {
  width: 100%;
  text-align: center;
  color: #fff;
}
.search_container .inner .box .contents .tab_section .pagination * {
  color: #fff;
}
.search_container .inner .box .contents .tab_section .pagination ul {
  display: flex;
  justify-content: center;
}
.search_container .inner .box .contents .tab_section .pagination ul li {
  width: 9.2307692308vw;
  height: 9.2307692308vw;
  margin-right: 1.0256410256vw;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .contents .tab_section .pagination ul li {
    width: 2.0833333333vw;
    max-width: 30px;
    height: 2.0833333333vw;
    max-height: 30px;
    margin-right: 0.2777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .search_container .inner .box .contents .tab_section .pagination ul li {
    margin-right: 4px;
  }
}
.search_container .inner .box .contents .tab_section .pagination ul li:last-child {
  margin-right: 0;
}
.search_container .inner .box .contents .tab_section .pagination ul li .page {
  display: block;
  width: 100%;
  height: 100%;
  padding-top: 1.2820512821vw;
  font-size: 4.1025641026vw;
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .contents .tab_section .pagination ul li .page {
    padding-top: 0.1388888889vw;
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .search_container .inner .box .contents .tab_section .pagination ul li .page {
    padding-top: 2px;
    font-size: 16px;
  }
}
.search_container .inner .box .contents .tab_section .pagination ul li .page.current {
  background: linear-gradient(#9C00FF 0%, #510085 100%);
  border-radius: 50%;
}
.search_container .inner .box .contents .tab_section_schedule .list .item {
  display: flex;
}
.search_container .inner .box .contents .tab_section_schedule .list .item .image {
  width: 24.1025641026vw;
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .contents .tab_section_schedule .list .item .image {
    width: 11.1111111111vw;
    max-width: 160px;
  }
}
.search_container .inner .box .contents .tab_section_schedule .list .item .text_wrap {
  padding: 5.1282051282vw;
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .contents .tab_section_schedule .list .item .text_wrap {
    padding: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .search_container .inner .box .contents .tab_section_schedule .list .item .text_wrap {
    padding: 20px;
  }
}
.search_container .inner .box .contents .tab_section_schedule .list .item .text_wrap ul li.area {
  margin-right: 2.5641025641vw;
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .contents .tab_section_schedule .list .item .text_wrap ul li.area {
    margin-right: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .search_container .inner .box .contents .tab_section_schedule .list .item .text_wrap ul li.area {
    margin-right: 10px;
  }
}
.search_container .inner .box .contents .tab_section_schedule .list .item .text_wrap ul li.area span {
  font-size: 2.8205128205vw;
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .contents .tab_section_schedule .list .item .text_wrap ul li.area span {
    font-size: 0.9722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .search_container .inner .box .contents .tab_section_schedule .list .item .text_wrap ul li.area span {
    font-size: 14px;
  }
}
.search_container .inner .box .contents .tab_section_schedule .list .item .text_wrap ul li.date {
  font-size: 3.0769230769vw;
  color: #510085;
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .contents .tab_section_schedule .list .item .text_wrap ul li.date {
    font-size: 1.25vw;
  }
}
@media screen and (min-width: 1440px) {
  .search_container .inner .box .contents .tab_section_schedule .list .item .text_wrap ul li.date {
    font-size: 18px;
  }
}
.search_container .inner .box .contents .tab_section_schedule .list .item .text_wrap .title {
  font-size: 3.5897435897vw;
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .contents .tab_section_schedule .list .item .text_wrap .title {
    font-size: 1.5277777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .search_container .inner .box .contents .tab_section_schedule .list .item .text_wrap .title {
    font-size: 22px;
  }
}
.search_container .inner .box .contents .tab_section_schedule .list .item .text_wrap .sub_title, .search_container .inner .box .contents .tab_section_schedule .list .item .text_wrap .sub_title * {
  font-size: 3.0769230769vw;
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .contents .tab_section_schedule .list .item .text_wrap .sub_title, .search_container .inner .box .contents .tab_section_schedule .list .item .text_wrap .sub_title * {
    font-size: 1.25vw;
  }
}
@media screen and (min-width: 1440px) {
  .search_container .inner .box .contents .tab_section_schedule .list .item .text_wrap .sub_title, .search_container .inner .box .contents .tab_section_schedule .list .item .text_wrap .sub_title * {
    font-size: 18px;
  }
}
.search_container .inner .box .contents .tab_section_results .list {
  align-items: flex-start;
}
.search_container .inner .box .contents .tab_section_results .list .item {
  position: relative;
}
.search_container .inner .box .contents .tab_section_results .list .item .top {
  display: flex;
  position: relative;
  cursor: pointer;
}
.search_container .inner .box .contents .tab_section_results .list .item .top .image {
  width: 20.5128205128vw;
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .contents .tab_section_results .list .item .top .image {
    width: 6.5277777778vw;
    max-width: 94px;
  }
}
.search_container .inner .box .contents .tab_section_results .list .item .top .text_wrap {
  padding: 5.1282051282vw 10.2564102564vw 5.1282051282vw 5.1282051282vw;
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .contents .tab_section_results .list .item .top .text_wrap {
    padding: 1.3888888889vw 4.1666666667vw 1.3888888889vw 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .search_container .inner .box .contents .tab_section_results .list .item .top .text_wrap {
    padding: 20px 60px 20px 20px;
  }
}
.search_container .inner .box .contents .tab_section_results .list .item .top .text_wrap ul li.area {
  margin-right: 1.5384615385vw;
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .contents .tab_section_results .list .item .top .text_wrap ul li.area {
    margin-right: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .search_container .inner .box .contents .tab_section_results .list .item .top .text_wrap ul li.area {
    margin-right: 10px;
  }
}
.search_container .inner .box .contents .tab_section_results .list .item .top .text_wrap ul li.area span {
  font-size: 2.8205128205vw;
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .contents .tab_section_results .list .item .top .text_wrap ul li.area span {
    font-size: 0.8333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .search_container .inner .box .contents .tab_section_results .list .item .top .text_wrap ul li.area span {
    font-size: 12px;
  }
}
.search_container .inner .box .contents .tab_section_results .list .item .top .text_wrap ul li.date {
  font-size: 3.0769230769vw;
  color: #510085;
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .contents .tab_section_results .list .item .top .text_wrap ul li.date {
    font-size: 0.9722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .search_container .inner .box .contents .tab_section_results .list .item .top .text_wrap ul li.date {
    font-size: 14px;
  }
}
.search_container .inner .box .contents .tab_section_results .list .item .top .text_wrap .title {
  font-size: 3.5897435897vw;
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .contents .tab_section_results .list .item .top .text_wrap .title {
    font-size: 1.25vw;
  }
}
@media screen and (min-width: 1440px) {
  .search_container .inner .box .contents .tab_section_results .list .item .top .text_wrap .title {
    font-size: 18px;
  }
}
.search_container .inner .box .contents .tab_section_results .list .item .top .text_wrap .sub_title, .search_container .inner .box .contents .tab_section_results .list .item .top .text_wrap .sub_title * {
  font-size: 3.0769230769vw;
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .contents .tab_section_results .list .item .top .text_wrap .sub_title, .search_container .inner .box .contents .tab_section_results .list .item .top .text_wrap .sub_title * {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .search_container .inner .box .contents .tab_section_results .list .item .top .text_wrap .sub_title, .search_container .inner .box .contents .tab_section_results .list .item .top .text_wrap .sub_title * {
    font-size: 16px;
  }
}
.search_container .inner .box .contents .tab_section_results .list .item .top .arrow {
  width: 6.1538461538vw;
  height: 6.1538461538vw;
  background: linear-gradient(#9C00FF 0%, #510085 100%);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 2.5641025641vw;
  transform: translateY(-50%);
  transition: all 0.4s;
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .contents .tab_section_results .list .item .top .arrow {
    width: 2.0833333333vw;
    max-width: 30px;
    height: 2.0833333333vw;
    max-height: 30px;
    right: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .search_container .inner .box .contents .tab_section_results .list .item .top .arrow {
    right: 20px;
  }
}
.search_container .inner .box .contents .tab_section_results .list .item .top .arrow span {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.search_container .inner .box .contents .tab_section_results .list .item .top .arrow span:before {
  content: "";
  width: 2.0512820513vw;
  height: 1.5384615385vw;
  background: url("../images/common/icon_arrow_accordion.svg") no-repeat center center;
  background-size: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .contents .tab_section_results .list .item .top .arrow span:before {
    width: 0.6944444444vw;
    max-width: 10px;
    height: 0.4861111111vw;
    max-height: 7px;
  }
}
.search_container .inner .box .contents .tab_section_results .list .item .bottom {
  display: none;
}
.search_container .inner .box .contents .tab_section_results .list .item .bottom figure {
  display: block;
}
.search_container .inner .box .contents .tab_section_results .list .item .bottom p {
  padding: 2.5641025641vw;
  text-align: center;
  color: #fff;
  background: #510085;
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .contents .tab_section_results .list .item .bottom p {
    padding: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .search_container .inner .box .contents .tab_section_results .list .item .bottom p {
    padding: 10px;
  }
}
.search_container .inner .box .contents .tab_section_results .list .item .bottom table {
  width: 100%;
}
.search_container .inner .box .contents .tab_section_results .list .item .bottom table tr td {
  padding: 2.5641025641vw 1.2820512821vw;
  font-size: 3.0769230769vw;
  border-top: unset;
  border-right: 1px solid #510085;
  border-bottom: 1px solid #510085;
  border-left: unset;
  vertical-align: middle;
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .contents .tab_section_results .list .item .bottom table tr td {
    padding: 0.6944444444vw;
    font-size: 0.9722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .search_container .inner .box .contents .tab_section_results .list .item .bottom table tr td {
    padding: 10px;
    font-size: 14px;
  }
}
.search_container .inner .box .contents .tab_section_results .list .item .bottom table tr td:last-child {
  border-right: unset;
}
.search_container .inner .box .contents .tab_section_results .list .item .bottom table tr td:nth-child(1), .search_container .inner .box .contents .tab_section_results .list .item .bottom table tr td:nth-child(3), .search_container .inner .box .contents .tab_section_results .list .item .bottom table tr td:nth-child(4) {
  text-align: center;
  white-space: nowrap;
}
.search_container .inner .box .contents .tab_section_results .list .item .bottom table tr td:nth-child(1) {
  width: 14%;
}
.search_container .inner .box .contents .tab_section_results .list .item .bottom table tr td:nth-child(2) {
  width: 46%;
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .contents .tab_section_results .list .item .bottom table tr td:nth-child(2) {
    width: 50%;
  }
}
.search_container .inner .box .contents .tab_section_results .list .item .bottom table tr td:nth-child(3), .search_container .inner .box .contents .tab_section_results .list .item .bottom table tr td:nth-child(4) {
  width: 20%;
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .contents .tab_section_results .list .item .bottom table tr td:nth-child(3), .search_container .inner .box .contents .tab_section_results .list .item .bottom table tr td:nth-child(4) {
    width: 18%;
  }
}
.search_container .inner .box .contents .tab_section_results .list .item .bottom table tr td.blue {
  font-weight: 700;
  color: blue;
}
.search_container .inner .box .contents .tab_section_results .list .item .bottom table tr:first-child td {
  text-align: center;
  color: #fff;
  background: #505050;
  border-right-color: #fff;
  border-bottom-color: #fff;
}
.search_container .inner .box .contents .tab_section_results .list .item .bottom .close {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 16.4102564103vw;
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .contents .tab_section_results .list .item .bottom .close {
    height: 4.3055555556vw;
    max-height: 62px;
  }
}
.search_container .inner .box .contents .tab_section_results .list .item .bottom .close .icon {
  width: 6.1538461538vw;
  height: 6.1538461538vw;
  background: linear-gradient(#9C00FF 0%, #510085 100%);
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .contents .tab_section_results .list .item .bottom .close .icon {
    width: 2.0833333333vw;
    max-width: 30px;
    height: 2.0833333333vw;
    max-height: 30px;
  }
}
.search_container .inner .box .contents .tab_section_results .list .item .bottom .close .icon:before {
  content: "";
  width: 2.0512820513vw;
  height: 2.0512820513vw;
  background: url("../images/common/icon_close.svg") no-repeat center center;
  background-size: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 960px) {
  .search_container .inner .box .contents .tab_section_results .list .item .bottom .close .icon:before {
    width: 0.6944444444vw;
    max-width: 10px;
    height: 0.6944444444vw;
    max-height: 10px;
  }
}
.search_container .inner .box .contents .tab_section_results .list .item.open .top .arrow {
  transform: translateY(-50%) rotate3d(0, 0, 1, 180deg);
}

/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

			home

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
#home {
  /*================================
  mv
  =================================*/
}
/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

		under

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
.under {
  /*================================
  mv
  =================================*/
  /*||||||||||||||||||||||||||||||||||||||||||||||||||
  ----------------------------------------------------

  		about

  ----------------------------------------------------
  ||||||||||||||||||||||||||||||||||||||||||||||||||||*/
}
.under#about {
  /*================================
  mv
  =================================*/
}/*# sourceMappingURL=style.css.map */