@charset "UTF-8";
/*********************************************************************
* ブレークポイント
**********************************************************************/
/*********************************************************************
* ブレークポイント定義
**********************************************************************/
/*********************************************************************
* メディアクエリー定義
**********************************************************************/
footer {
  min-width: 1240px;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  footer {
    min-width: 100%;
  }
}
@media print, screen and (max-width: 768px) {
  footer {
    min-width: 320px;
  }
}
footer .footer_wrapper {
  padding-bottom: 60px;
  padding-top: 60px;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  footer .footer_wrapper {
    padding: 4.6153846154vw 0;
  }
}
@media print, screen and (max-width: 768px) {
  footer .footer_wrapper {
    padding-bottom: 10vw;
  }
}
footer .footer_wrapper .footer-inner {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  footer .footer_wrapper .footer-inner {
    width: calc(100% - 6vw);
  }
}
@media print, screen and (max-width: 768px) {
  footer .footer_wrapper .footer-inner {
    width: 86vw;
    flex-direction: column;
  }
}
@media print, screen and (max-width: 768px) {
  footer .footer_wrapper .footer-inner #footer_nav {
    width: 100%;
  }
}
footer .footer_wrapper .footer-inner #footer_nav .nav-list {
  display: flex;
  align-items: center;
}
@media print, screen and (max-width: 768px) {
  footer .footer_wrapper .footer-inner #footer_nav .nav-list {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    border-top: 1px solid #ccc;
  }
}
footer .footer_wrapper .footer-inner #footer_nav .nav-list li {
  margin-left: 2em;
}
@media print, screen and (max-width: 768px) {
  footer .footer_wrapper .footer-inner #footer_nav .nav-list li {
    width: 100%;
    border-bottom: 1px solid #ccc;
    margin-left: 0;
  }
}
footer .footer_wrapper .footer-inner #footer_nav .nav-list li a {
  font-weight: bold;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  footer .footer_wrapper .footer-inner #footer_nav .nav-list li a {
    font-size: 1.2307692308vw;
  }
}
@media print, screen and (max-width: 768px) {
  footer .footer_wrapper .footer-inner #footer_nav .nav-list li a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3vw 0;
    font-size: 3.4vw;
  }
}
footer .footer_wrapper .footer-inner-low {
  width: 1200px;
  margin: 60px auto 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  footer .footer_wrapper .footer-inner-low {
    width: calc(100% - 6vw);
    margin-top: 4.6153846154vw;
  }
}
@media print, screen and (max-width: 768px) {
  footer .footer_wrapper .footer-inner-low {
    width: 86vw;
    flex-direction: column;
    align-items: center;
    margin-top: 9vw;
  }
}
footer .footer_wrapper .footer-inner-low .footer_txt {
  font-size: 16px;
  line-height: 1.6em;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  footer .footer_wrapper .footer-inner-low .footer_txt {
    font-size: 1.2307692308vw;
  }
}
@media print, screen and (max-width: 768px) {
  footer .footer_wrapper .footer-inner-low .footer_txt {
    font-size: 3vw;
    line-height: 1.6em;
    text-align: center;
  }
}
footer .footer_wrapper .footer-inner-low .copyright {
  font-size: 14px;
  line-height: 1.6em;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  footer .footer_wrapper .footer-inner-low .copyright {
    font-size: 1.0769230769vw;
  }
}
@media print, screen and (max-width: 768px) {
  footer .footer_wrapper .footer-inner-low .copyright {
    font-size: 3vw;
    margin-top: 3vw;
  }
}

@media print, screen and (max-width: 768px) {
  #header_nav {
    position: fixed;
    height: 100dvh;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
  }
  #header_nav::after {
    content: "";
    display: block;
    position: fixed;
    height: 100dvh;
    width: 100%;
    background-color: rgba(154, 0, 6, 0.9);
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 0;
  }
  #header_nav ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 12dvh 6vw 0;
    width: 100%;
    position: relative;
    z-index: 100;
    transition: all 0.3s;
  }
  #header_nav ul li {
    border-bottom: 1px solid #fff;
    width: 100%;
  }
  #header_nav ul li a {
    color: #fff;
    padding: 4vw 0;
    font-size: 4vw;
    position: relative;
    width: 100%;
  }
  #header_nav ul li a::after {
    position: absolute;
    right: 0;
    top: 5.4vw;
    content: "";
    display: block;
    width: 2vw;
    height: 2vw;
    border-left: 2px solid #fff;
    border-top: 2px solid #fff;
    transform: rotate(135deg);
  }
}

#header_nav.open {
  opacity: 1;
  visibility: visible;
}
#header_nav.open ul {
  transform: translateY(0);
}
#header_nav.open::after {
  opacity: 1;
}

#content-wrap {
  background-color: #a90021;
  position: relative;
  padding-bottom: 160px;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  #content-wrap {
    padding-bottom: 12.3076923077vw;
    padding-top: 9.2307692308vw;
  }
}
@media print, screen and (max-width: 768px) {
  #content-wrap {
    padding-top: 60px;
    padding-bottom: 15vw;
  }
}
#content-wrap::after {
  content: "";
  display: block;
  height: 120px;
  width: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  #content-wrap::after {
    height: 9.2307692308vw;
  }
}
@media print, screen and (max-width: 768px) {
  #content-wrap::after {
    height: 60px;
  }
}
#content-wrap .innner_b .header_bg_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 120px 6% 0;
  margin-bottom: 100px;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  #content-wrap .innner_b .header_bg_wrapper {
    padding-top: 9.2307692308vw;
    margin-bottom: 7.6923076923vw;
  }
}
@media print, screen and (max-width: 768px) {
  #content-wrap .innner_b .header_bg_wrapper {
    padding: 14vw 6vw 0;
    margin-bottom: 15vw;
  }
}
#content-wrap .innner_b .header_bg_wrapper .under_title_s {
  font-size: 32px;
  color: #fff;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  #content-wrap .innner_b .header_bg_wrapper .under_title_s {
    font-size: 2.4615384615vw;
  }
}
@media print, screen and (max-width: 768px) {
  #content-wrap .innner_b .header_bg_wrapper .under_title_s {
    font-size: 4.8vw;
  }
}
#content-wrap .innner_b .header_bg_wrapper .under_title.font_en {
  font-size: 18px;
  color: #fff;
  margin-top: 14px;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  #content-wrap .innner_b .header_bg_wrapper .under_title.font_en {
    font-size: 1.3846153846vw;
    margin-top: 1.0769230769vw;
  }
}
@media print, screen and (max-width: 768px) {
  #content-wrap .innner_b .header_bg_wrapper .under_title.font_en {
    font-size: 3vw;
    margin-top: 2vw;
  }
}
#content-wrap .inner_s {
  max-width: 1100px;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  #content-wrap .inner_s {
    max-width: 100%;
    padding: 0 6vw;
  }
}
@media print, screen and (max-width: 768px) {
  #content-wrap .inner_s {
    max-width: 100%;
    padding: 0 6vw;
  }
}
#content-wrap .inner_s > p.contact-lead {
  text-align: center;
  color: #fff;
  margin-bottom: 100px;
  font-weight: bold;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  #content-wrap .inner_s > p.contact-lead {
    margin-bottom: 7.6923076923vw;
    font-size: 1.5384615385vw;
  }
}
@media print, screen and (max-width: 768px) {
  #content-wrap .inner_s > p.contact-lead {
    margin-bottom: 10vw;
    font-size: 3.2vw;
  }
}
#content-wrap .inner_s .page_title {
  font-size: 26px;
  line-height: 1.5;
  margin-bottom: 30px;
  color: #fff;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  #content-wrap .inner_s .page_title {
    font-size: 2vw;
    margin-bottom: 2.3076923077vw;
  }
}
@media print, screen and (max-width: 768px) {
  #content-wrap .inner_s .page_title {
    font-size: 4vw;
    margin-bottom: 4vw;
    margin-top: 10vw;
  }
}
#content-wrap .inner_s article p {
  color: #fff;
  line-height: 1.8em;
}
@media print, screen and (max-width: 768px) {
  #content-wrap .inner_s article p {
    font-size: 3vw;
  }
}
#content-wrap .inner_s article .number_list, #content-wrap .inner_s article .indent1em, #content-wrap .inner_s article .indent1em_list li {
  color: #fff;
  line-height: 1.8em;
}
#content-wrap .inner_s article .number_list {
  padding-left: 1.5em;
  text-indent: -1.5em;
}
@media print, screen and (max-width: 768px) {
  #content-wrap .inner_s article .number_list li {
    font-size: 3vw;
    line-height: 1.8em;
    margin-bottom: 4vw;
  }
}
#content-wrap .inner_s article .syomei {
  margin-top: 30px;
  margin-bottom: 80px;
  text-align: left;
  color: #fff;
}
@media print, screen and (max-width: 768px) {
  #content-wrap .inner_s article .syomei {
    margin-top: 7vw;
    margin-bottom: 12vw;
  }
}
#content-wrap .inner_s article .syomei h5 {
  color: #fff;
  margin-top: 1em;
}
#content-wrap .inner_s article .syomei:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
#content-wrap .inner_s article .page_title_sub {
  font-size: 24px;
  color: #a90021;
  margin-bottom: 30px;
}
@media print, screen and (max-width: 768px) {
  #content-wrap .inner_s article .page_title_sub {
    font-size: 3.8vw;
    margin-bottom: 4vw;
  }
}
#content-wrap .inner_s article .privacy_dl > dt {
  font-weight: bold;
  border-left: 5px solid #f9f8f4;
  font-size: 110%;
  margin-bottom: 16px;
  padding-left: 20px;
  line-height: 1.5em;
  color: #fff;
}
@media print, screen and (max-width: 768px) {
  #content-wrap .inner_s article .privacy_dl > dt {
    font-size: 3.6vw;
    padding-left: 3vw;
    margin-bottom: 2.5vw;
  }
}
#content-wrap .inner_s article .privacy_dl dl dt {
  padding-left: 0;
  border-left: none;
}
#content-wrap .inner_s article .privacy_dl dd {
  color: #fff;
  line-height: 1.5em;
  margin-bottom: 40px;
  padding: 0px 0px 0px 1.5em;
}
@media print, screen and (max-width: 768px) {
  #content-wrap .inner_s article .privacy_dl dd {
    margin-bottom: 6vw;
    padding-left: 1em;
    font-size: 3vw;
    line-height: 1.8em;
  }
}
#content-wrap .inner_s article .privacy_dl dd dl {
  margin-top: 2em;
}
#content-wrap .inner_s article .corporate_table {
  margin-top: 1.5em;
}
#content-wrap .inner_s article .corporate_table tr:nth-child(2n+1) th, #content-wrap .inner_s article .corporate_table tr:nth-child(2n+1) td {
  color: #a90021;
}
@media print, screen and (max-width: 768px) {
  #content-wrap .inner_s article .corporate_table th {
    text-align: left;
    width: 36%;
  }
}
#content-wrap .inner_s .contact-confirm {
  text-align: center;
  color: #fff;
  margin-bottom: 3.5em;
}
@media print, screen and (max-width: 768px) {
  #content-wrap .inner_s .contact-confirm {
    font-size: 3.4vw;
  }
}
#content-wrap .inner_s .wpcf7-previous, #content-wrap .inner_s .wpcf7-submit {
  border: 2px solid #fff;
  border-radius: 100px;
  transition: all 0.3s;
}
@media print, screen and (max-width: 768px) {
  #content-wrap .inner_s .wpcf7-previous, #content-wrap .inner_s .wpcf7-submit {
    font-size: 3.6vw;
    padding: 4vw 13vw;
  }
}
@media print, screen and (min-width: 768px) {
  #content-wrap .inner_s .wpcf7-previous:hover, #content-wrap .inner_s .wpcf7-submit:hover {
    background-color: #fff;
    color: #a90021;
    opacity: 1;
  }
}
#content-wrap .inner_s .back_btn {
  opacity: 1 !important;
}
#content-wrap .inner_s .contact-thanks {
  text-align: center;
  color: #fff;
}
@media print, screen and (max-width: 768px) {
  #content-wrap .inner_s .contact-thanks {
    font-size: 3.4vw;
  }
}
#content-wrap .inner_s .contact-thanks strong {
  font-size: 1.3em;
  display: block;
  margin-bottom: 1.6em;
  line-height: 1.8em;
}
#content-wrap #contact_block {
  width: 1100px;
  padding: 0;
  margin-bottom: 30px;
  border-radius: 0;
  background-color: transparent;
  border: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  #content-wrap #contact_block {
    width: 100%;
  }
}
@media print, screen and (max-width: 768px) {
  #content-wrap #contact_block {
    width: 100%;
    margin-bottom: 4vw;
    flex-wrap: wrap;
  }
}
#content-wrap #contact_block .contact_block_left {
  width: 250px;
  padding: 10px 0 0;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  #content-wrap #contact_block .contact_block_left {
    width: 19.2307692308vw;
    padding-top: 0.7692307692vw;
  }
}
@media print, screen and (max-width: 768px) {
  #content-wrap #contact_block .contact_block_left {
    width: 100%;
    padding-top: 0;
  }
}
#content-wrap #contact_block .contact_block_left p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-size: 20px;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  #content-wrap #contact_block .contact_block_left p {
    font-size: 1.5384615385vw;
  }
}
@media print, screen and (max-width: 768px) {
  #content-wrap #contact_block .contact_block_left p {
    justify-content: flex-start;
    font-size: 3.6vw;
    margin-bottom: 2vw;
  }
}
#content-wrap #contact_block .contact_block_left p .required {
  height: 30px;
  width: 60px;
  border-radius: 4px;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  #content-wrap #contact_block .contact_block_left p .required {
    width: 4.6153846154vw;
    height: 2.3076923077vw;
    font-size: 1.5384615385vw;
  }
}
@media print, screen and (max-width: 768px) {
  #content-wrap #contact_block .contact_block_left p .required {
    width: 10vw;
    height: 5vw;
    font-size: 3.2vw;
    margin-left: 3vw;
  }
}
#content-wrap #contact_block .contact_block_right {
  width: 800px;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  #content-wrap #contact_block .contact_block_right {
    width: 61.5384615385vw;
  }
}
@media print, screen and (max-width: 768px) {
  #content-wrap #contact_block .contact_block_right {
    width: 100%;
  }
}
#content-wrap #contact_block .contact_block_right .wpcf7-not-valid-tip {
  color: #ffc948;
  font-size: 1em;
  font-weight: bold;
  display: block;
  margin-top: 7px;
}
@media print, screen and (max-width: 768px) {
  #content-wrap #contact_block .contact_block_right .wpcf7-not-valid-tip {
    margin-top: 2vw;
    font-size: 0.9em;
  }
}
#content-wrap .soushin_box {
  background-color: transparent;
  border: none;
  margin-top: 50px;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  #content-wrap .soushin_box {
    margin-top: 3.8461538462vw;
  }
}
@media print, screen and (max-width: 768px) {
  #content-wrap .soushin_box {
    margin-top: 3vw;
    padding-top: 3vw;
  }
}
#content-wrap .soushin_box .img_center {
  margin-bottom: 50px;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  #content-wrap .soushin_box .img_center {
    margin-bottom: 3.8461538462vw;
  }
}
@media print, screen and (max-width: 768px) {
  #content-wrap .soushin_box .img_center {
    margin-bottom: 8vw;
  }
}
#content-wrap .soushin_box .img_center p {
  color: #fff;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  #content-wrap .soushin_box .img_center p {
    font-size: 1.3846153846vw;
  }
}
@media print, screen and (max-width: 768px) {
  #content-wrap .soushin_box .img_center p {
    font-size: 3.2vw;
  }
}
#content-wrap .soushin_box .img_center p a {
  text-decoration: underline;
  color: #fff;
}
#content-wrap .soushin_box .img_center p input[type=checkbox] {
  width: 36px;
  height: 36px;
  border-radius: 0;
  border: none;
  position: relative;
  top: 11px;
  left: -10px;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  #content-wrap .soushin_box .img_center p input[type=checkbox] {
    width: 2.7692307692vw;
    height: 2.7692307692vw;
    border-radius: 0;
    border: none;
    position: relative;
    top: 0.8461538462vw;
    left: -0.7692307692vw;
  }
}
@media print, screen and (max-width: 768px) {
  #content-wrap .soushin_box .img_center p input[type=checkbox] {
    width: 5vw;
    height: 5vw;
    border-radius: 0;
    border: none;
    position: relative;
    top: 1.5vw;
    left: -1.2vw;
  }
}
#content-wrap .soushin_box .soushinblock {
  padding: 0;
  margin-bottom: 0;
}
#content-wrap .soushin_box .soushinblock input[type=submit], #content-wrap .soushin_box .soushinblock input[type=button] {
  width: 600px;
  height: 100px;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px !important;
  text-align: center;
  letter-spacing: 0.1em;
  border-radius: 6px;
  transition: all 0.3s;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  #content-wrap .soushin_box .soushinblock input[type=submit], #content-wrap .soushin_box .soushinblock input[type=button] {
    width: 46.1538461538vw;
    height: 7.6923076923vw;
    font-size: 1.8461538462vw !important;
  }
}
@media print, screen and (max-width: 768px) {
  #content-wrap .soushin_box .soushinblock input[type=submit], #content-wrap .soushin_box .soushinblock input[type=button] {
    width: 76vw;
    height: 14vw;
    border-radius: 7vw;
    font-size: 3.6vw !important;
    line-height: 1em;
  }
}
#content-wrap .soushin_box .soushinblock input[type=submit]:hover, #content-wrap .soushin_box .soushinblock input[type=button]:hover {
  background: #fff;
  color: #a90021;
}
#content-wrap .soushin_box input[type=checkbox]:checked::before {
  content: "";
  width: 16px;
  height: 5px;
  display: block;
  position: absolute;
  top: 24px;
  left: 0;
  background-color: #a90021;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  #content-wrap .soushin_box input[type=checkbox]:checked::before {
    width: 1.2307692308vw;
    height: 0.3846153846vw;
    top: 1.8461538462vw;
  }
}
@media print, screen and (max-width: 768px) {
  #content-wrap .soushin_box input[type=checkbox]:checked::before {
    width: 2.4vw;
    height: 0.8vw;
    display: block;
    position: absolute;
    top: 4vw;
  }
}
#content-wrap .soushin_box input[type=checkbox]:checked::after {
  content: "";
  width: 27px;
  height: 5px;
  display: block;
  position: absolute;
  top: 25px;
  left: 14px;
  background-color: #a90021;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  #content-wrap .soushin_box input[type=checkbox]:checked::after {
    width: 2.0769230769vw;
    height: 0.3846153846vw;
    top: 1.9230769231vw;
    left: 1.0769230769vw;
  }
}
@media print, screen and (max-width: 768px) {
  #content-wrap .soushin_box input[type=checkbox]:checked::after {
    width: 4vw;
    height: 0.8vw;
    display: block;
    position: absolute;
    top: 3.6vw;
    left: 2.4vw;
  }
}
#content-wrap .page_contactform dl dd input[type=tel], #content-wrap .page_contactform dl dd input[type=email], #content-wrap .page_contactform dl dd input[type=text], #content-wrap .page_contactform dl dd textarea {
  width: 100%;
  padding: 15px;
  background-color: #fff;
  border: none;
  margin-bottom: 3px;
  border-radius: 6px;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  #content-wrap .page_contactform dl dd input[type=tel], #content-wrap .page_contactform dl dd input[type=email], #content-wrap .page_contactform dl dd input[type=text], #content-wrap .page_contactform dl dd textarea {
    padding: 1.1538461538vw;
    margin-bottom: 0.2307692308vw;
  }
}
@media print, screen and (max-width: 768px) {
  #content-wrap .page_contactform dl dd input[type=tel], #content-wrap .page_contactform dl dd input[type=email], #content-wrap .page_contactform dl dd input[type=text], #content-wrap .page_contactform dl dd textarea {
    width: 100%;
    padding: 2vw 3vw;
    margin-bottom: 0;
    font-size: 3.4vw;
    border-radius: 1vw;
  }
}

.grecaptcha-badge {
  z-index: 10000;
}

main {
  padding-top: 0;
  min-width: 1240px;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  main {
    min-width: 100%;
  }
}
@media print, screen and (max-width: 768px) {
  main {
    min-width: 320px;
  }
}

.toppage-mv {
  height: calc(100dvh + 200px);
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .toppage-mv {
    height: 100vw;
  }
}
@media print, screen and (max-width: 768px) {
  .toppage-mv {
    height: 100dvh;
  }
}
.toppage-mv::before {
  position: absolute;
  top: 280px;
  content: "";
  display: block;
  min-height: 1020px;
  height: calc(100dvh + 200px - 280px);
  width: 1000px;
  background-image: url(../../championnew/images/mv-people.png);
  background-position: bottom center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 100;
}
@media print, screen and (min-width: 1301px) {
  .toppage-mv::before {
    left: calc(50% - 220px);
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .toppage-mv::before {
    width: 70vw;
    min-height: 85vw;
    height: 85vw;
    top: 15vw;
    left: 32vw;
  }
}
@media print, screen and (max-width: 768px) {
  .toppage-mv::before {
    width: 100%;
    height: 50dvh;
    min-height: 50dvh;
    left: 0;
    right: 0;
    margin: auto;
    top: auto;
    bottom: 0;
  }
}
.toppage-mv::after {
  position: absolute;
  left: 0;
  top: 340px;
  content: "";
  display: block;
  height: calc(100dvh - 340px + 200px);
  width: 100%;
  background-image: url(../../championnew/images/mv-bg.jpg);
  background-position: top 40% center;
  background-size: cover;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .toppage-mv::after {
    height: 74vw;
    top: 26.1538461538vw;
  }
}
@media print, screen and (max-width: 768px) {
  .toppage-mv::after {
    top: 29dvh;
    height: 71dvh;
  }
}
.toppage-mv .mv-inner {
  width: 1230px;
  margin: 0 auto;
  position: relative;
  z-index: 100;
  padding-top: 210px;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .toppage-mv .mv-inner {
    width: calc(100% - 6vw);
    padding-top: 16vw;
  }
}
@media print, screen and (max-width: 768px) {
  .toppage-mv .mv-inner {
    width: 100%;
    padding: 14dvh 6vw 0;
  }
}
.toppage-mv .mv-inner .mv-text {
  font-size: 100px;
  line-height: 1.3em;
  font-weight: 900;
  letter-spacing: 0.1em;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .toppage-mv .mv-inner .mv-text {
    font-size: 7.6923076923vw;
  }
}
@media print, screen and (max-width: 768px) {
  .toppage-mv .mv-inner .mv-text {
    font-size: 13vw;
    line-height: 1.2em;
    font-weight: 900;
    letter-spacing: 0.1em;
  }
}
.toppage-mv .mv-inner .mv-text span {
  display: block;
  font-size: 34px;
  line-height: 1em;
  margin-bottom: 25px;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .toppage-mv .mv-inner .mv-text span {
    font-size: 2.6153846154vw;
    margin-bottom: 1.9230769231vw;
  }
}
@media print, screen and (max-width: 768px) {
  .toppage-mv .mv-inner .mv-text span {
    display: block;
    font-size: 4.5vw;
    line-height: 1em;
    margin-bottom: 4vw;
    letter-spacing: 0.1em;
  }
}
.toppage-mv .mv-inner .mv-text small {
  display: flex;
  align-items: center;
  font-size: 30px;
  margin-top: 36px;
  line-height: 1em;
  letter-spacing: 0em;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .toppage-mv .mv-inner .mv-text small {
    font-size: 2.3076923077vw;
    margin-top: 2.7692307692vw;
  }
}
@media print, screen and (max-width: 768px) {
  .toppage-mv .mv-inner .mv-text small {
    font-size: 4.4vw;
    margin-top: 5vw;
  }
}
.toppage-mv .mv-inner .mv-text small::before {
  content: "";
  display: block;
  height: 2px;
  width: 260px;
  background-color: #000;
  margin-right: 15px;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .toppage-mv .mv-inner .mv-text small::before {
    width: 16.9230769231vw;
    margin-right: 1.1538461538vw;
  }
}
@media print, screen and (max-width: 768px) {
  .toppage-mv .mv-inner .mv-text small::before {
    width: 23vw;
    background-color: #000;
    margin-right: 4vw;
  }
}

.contents-inner {
  width: 1230px;
  margin: 0 auto;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .contents-inner {
    width: 100%;
    padding: 0 3vw;
  }
}
@media print, screen and (max-width: 768px) {
  .contents-inner {
    width: 100%;
  }
}
.contents-inner .contents-head {
  font-size: 32px;
  color: #a90021;
  margin-bottom: 110px;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .contents-inner .contents-head {
    font-size: 2.4615384615vw;
    margin-bottom: 8.4615384615vw;
  }
}
@media print, screen and (max-width: 768px) {
  .contents-inner .contents-head {
    font-size: 5vw;
    margin-bottom: 15vw;
  }
}
.contents-inner .contents-head span {
  font-size: 18px;
  line-height: 1em;
  margin-top: 15px;
  display: block;
  color: #000;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .contents-inner .contents-head span {
    font-size: 1.3846153846vw;
    margin-top: 1.1538461538vw;
  }
}
@media print, screen and (max-width: 768px) {
  .contents-inner .contents-head span {
    font-size: 3vw;
    margin-top: 3vw;
  }
}

.toppage-statement {
  background-color: #a90021;
  margin-bottom: 250px;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .toppage-statement {
    margin-bottom: 19.2307692308vw;
  }
}
@media print, screen and (max-width: 768px) {
  .toppage-statement {
    margin-bottom: 0;
  }
}
.toppage-statement .contents-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.toppage-statement .contents-inner .contents-inner-left {
  padding: 230px 0;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .toppage-statement .contents-inner .contents-inner-left {
    padding-top: 17.6923076923vw;
    padding-bottom: 17.6923076923vw;
  }
}
@media print, screen and (max-width: 768px) {
  .toppage-statement .contents-inner .contents-inner-left {
    padding: 25vw 6vw;
    position: relative;
    z-index: 10;
  }
}
.toppage-statement .contents-inner .contents-inner-left .contents-head {
  color: #fff;
}
.toppage-statement .contents-inner .contents-inner-left .contents-head span {
  color: #fff;
}
.toppage-statement .contents-inner .contents-inner-left .statement-text {
  color: #fff;
}
.toppage-statement .contents-inner .contents-inner-left .statement-text h4 {
  color: #fff;
  font-size: 30px;
  margin-bottom: 100px;
  font-weight: bold;
  line-height: 1.1em;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .toppage-statement .contents-inner .contents-inner-left .statement-text h4 {
    font-size: 2.3076923077vw;
  }
}
@media print, screen and (max-width: 768px) {
  .toppage-statement .contents-inner .contents-inner-left .statement-text h4 {
    font-size: 5vw;
    margin-bottom: 10vw;
  }
}
.toppage-statement .contents-inner .contents-inner-left .statement-text h4 strong {
  font-size: 52px;
  line-height: 1.6em;
  margin-top: 50px;
  display: block;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .toppage-statement .contents-inner .contents-inner-left .statement-text h4 strong {
    font-size: 4vw;
  }
}
@media print, screen and (max-width: 768px) {
  .toppage-statement .contents-inner .contents-inner-left .statement-text h4 strong {
    font-size: 6.5vw;
    margin-top: 5vw;
    line-height: 1.4em;
  }
}
.toppage-statement .contents-inner .contents-inner-left .statement-text p {
  color: #fff;
  font-size: 19px;
  line-height: 2.5em;
  margin-bottom: 50px;
  font-weight: bold;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .toppage-statement .contents-inner .contents-inner-left .statement-text p {
    font-size: 1.4615384615vw;
  }
}
@media print, screen and (max-width: 768px) {
  .toppage-statement .contents-inner .contents-inner-left .statement-text p {
    font-size: 3.4vw;
    line-height: 1.85em;
    margin-bottom: 10vw;
  }
  .toppage-statement .contents-inner .contents-inner-left .statement-text p br.pc-only {
    display: none;
  }
}
.toppage-statement .contents-inner .contents-inner-left .statement-text h5 {
  color: #fff;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.4em;
  margin-top: 100px;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .toppage-statement .contents-inner .contents-inner-left .statement-text h5 {
    font-size: 4.9230769231vw;
  }
}
@media print, screen and (max-width: 768px) {
  .toppage-statement .contents-inner .contents-inner-left .statement-text h5 {
    font-size: 8vw;
    font-weight: 700;
    line-height: 1.4em;
    margin-top: 10vw;
  }
}
.toppage-statement .contents-inner .contents-inner-left .statement-text h5 span {
  font-size: 30px;
  line-height: 1.1em;
  margin-top: 50px;
  display: flex;
  align-items: center;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .toppage-statement .contents-inner .contents-inner-left .statement-text h5 span {
    font-size: 2.3076923077vw;
  }
}
@media print, screen and (max-width: 768px) {
  .toppage-statement .contents-inner .contents-inner-left .statement-text h5 span {
    font-size: 4vw;
    line-height: 1.1em;
    margin-top: 5vw;
  }
}
.toppage-statement .contents-inner .contents-inner-left .statement-text h5 span::before {
  height: 2px;
  width: 100px;
  background-color: #fff;
  content: "";
  display: block;
  margin-right: 20px;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .toppage-statement .contents-inner .contents-inner-left .statement-text h5 span::before {
    width: 7.6923076923vw;
  }
}
@media print, screen and (max-width: 768px) {
  .toppage-statement .contents-inner .contents-inner-left .statement-text h5 span::before {
    width: 16vw;
    margin-right: 3vw;
  }
}
.toppage-statement .contents-inner .toppage-statement-slide {
  overflow: hidden;
  width: 480px;
  display: flex;
  flex-direction: column;
  will-change: transform;
  position: absolute;
  right: 0;
  top: 0;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .toppage-statement .contents-inner .toppage-statement-slide {
    width: 36.9230769231vw;
    right: 3vw;
  }
}
@media print, screen and (max-width: 768px) {
  .toppage-statement .contents-inner .toppage-statement-slide {
    width: 54vw;
    right: -3vw;
    opacity: 0.3;
  }
}
.toppage-statement .contents-inner .toppage-statement-slide .slide-img {
  margin: 0 0 15px;
  overflow: hidden;
  border-radius: 12px;
}
@media print, screen and (max-width: 768px) {
  .toppage-statement .contents-inner .toppage-statement-slide .slide-img {
    margin: 0 0 1.5vw;
    overflow: hidden;
    border-radius: 2vw;
  }
}
.toppage-statement .contents-inner .toppage-statement-slide .slide-img img {
  width: 100%;
  height: auto;
  display: block;
}

#business {
  padding-top: 250px;
  margin-top: -250px;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  #business {
    padding-top: 17.6923076923vw;
    margin-top: -17.6923076923vw;
  }
}
@media print, screen and (max-width: 768px) {
  #business {
    padding-top: 25vw;
    margin-top: 0;
  }
}

@media print, screen and (max-width: 768px) {
  .toppage-business {
    padding: 25vw 6vw 0;
  }
}
.toppage-business .contents-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 140px;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .toppage-business .contents-inner {
    margin-bottom: 10.7692307692vw;
  }
}
@media print, screen and (max-width: 768px) {
  .toppage-business .contents-inner {
    flex-direction: column;
    justify-content: center;
    margin-bottom: 14vw;
  }
}
.toppage-business .contents-inner.business-head {
  display: block;
}
.toppage-business .contents-inner .business-mainimg {
  width: 630px;
  position: absolute;
  right: 0;
  top: -20px;
  box-shadow: none;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .toppage-business .contents-inner .business-mainimg {
    width: 45vw;
    right: 3vw;
  }
}
@media print, screen and (max-width: 768px) {
  .toppage-business .contents-inner .business-mainimg {
    position: static;
    width: 80vw;
  }
}
.toppage-business .contents-inner .business-mainimg img {
  width: 100%;
  height: auto;
}
.toppage-business .contents-inner .read-text {
  margin-bottom: 240px;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .toppage-business .contents-inner .read-text {
    margin-bottom: 15.3846153846vw;
  }
}
@media print, screen and (max-width: 768px) {
  .toppage-business .contents-inner .read-text {
    margin-bottom: 10vw;
  }
}
.toppage-business .contents-inner .read-text h4 {
  font-size: 50px;
  line-height: 1.5em;
  margin-bottom: 50px;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .toppage-business .contents-inner .read-text h4 {
    font-size: 3.8461538462vw;
  }
}
@media print, screen and (max-width: 768px) {
  .toppage-business .contents-inner .read-text h4 {
    font-size: 6vw;
    line-height: 1.5em;
    margin-bottom: 5vw;
  }
}
.toppage-business .contents-inner .read-text p {
  font-size: 20px;
  line-height: 2.1em;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .toppage-business .contents-inner .read-text p {
    font-size: 1.5384615385vw;
  }
}
@media print, screen and (max-width: 768px) {
  .toppage-business .contents-inner .read-text p {
    font-size: 3.4vw;
    line-height: 1.8em;
  }
}
.toppage-business .contents-inner figure {
  width: 740px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 7px 30px rgba(0, 0, 0, 0.2);
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .toppage-business .contents-inner figure {
    width: 52.3076923077vw;
    border-radius: 1.5384615385vw;
  }
}
@media print, screen and (max-width: 768px) {
  .toppage-business .contents-inner figure {
    width: 100%;
    margin: 6.5vw auto 0;
    border-radius: 4vw;
    box-shadow: 0 0.6vw 3vw rgba(0, 0, 0, 0.1);
  }
}
.toppage-business .contents-inner figure img {
  width: 100%;
  height: auto;
  display: block;
}
.toppage-business .contents-inner .contents-text {
  width: 410px;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .toppage-business .contents-inner .contents-text {
    width: 36vw;
  }
}
@media print, screen and (max-width: 768px) {
  .toppage-business .contents-inner .contents-text {
    width: 100%;
  }
}
.toppage-business .contents-inner .contents-text h3 {
  font-size: 27px;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .toppage-business .contents-inner .contents-text h3 {
    font-size: 1.9230769231vw;
  }
}
@media print, screen and (max-width: 768px) {
  .toppage-business .contents-inner .contents-text h3 {
    font-size: 4.5vw;
    line-height: 1.1em;
  }
}
.toppage-business .contents-inner .contents-text h3 strong {
  font-size: 48px;
  line-height: 1.1em;
  display: block;
  margin-bottom: 20px;
  font-weight: 700;
  color: #a90021;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .toppage-business .contents-inner .contents-text h3 strong {
    font-size: 3.6923076923vw;
  }
}
@media print, screen and (max-width: 768px) {
  .toppage-business .contents-inner .contents-text h3 strong {
    font-size: 7.6vw;
    margin-bottom: 3vw;
  }
}
.toppage-business .contents-inner .contents-text h3 strong small {
  font-size: 36px;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .toppage-business .contents-inner .contents-text h3 strong small {
    font-size: 2.7692307692vw;
  }
}
@media print, screen and (max-width: 768px) {
  .toppage-business .contents-inner .contents-text h3 strong small {
    font-size: 5vw;
  }
}
@media print, screen and (max-width: 768px) {
  .toppage-business .contents-inner .contents-text h3 strong br.pc-only {
    display: none;
  }
}
.toppage-business .contents-inner .contents-text p {
  font-size: 18px;
  line-height: 2.1em;
  margin-top: 40px;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .toppage-business .contents-inner .contents-text p {
    font-size: 1.3846153846vw;
    margin-top: 3.0769230769vw;
  }
}
@media print, screen and (max-width: 768px) {
  .toppage-business .contents-inner .contents-text p {
    font-size: 3.6vw;
    line-height: 1.8em;
    margin-top: 6vw;
  }
}
.toppage-business .contents-inner.business01, .toppage-business .contents-inner.business03, .toppage-business .contents-inner.business05 {
  flex-direction: row-reverse;
}
@media print, screen and (max-width: 768px) {
  .toppage-business .contents-inner.business01, .toppage-business .contents-inner.business03, .toppage-business .contents-inner.business05 {
    flex-direction: column;
  }
}
.toppage-business .contents-inner.business05 {
  margin-bottom: 0;
}

.toppage-news {
  padding-top: 250px;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .toppage-news {
    padding-top: 19.2307692308vw;
  }
}
@media print, screen and (max-width: 768px) {
  .toppage-news {
    padding: 25vw 6vw 0;
  }
}
.toppage-news .contents-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media print, screen and (max-width: 768px) {
  .toppage-news .contents-inner {
    flex-direction: column;
    justify-content: flex-start;
  }
}
.toppage-news .contents-inner article {
  width: 710px;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .toppage-news .contents-inner article {
    width: 61.5384615385vw;
  }
}
@media print, screen and (max-width: 768px) {
  .toppage-news .contents-inner article {
    width: 100%;
    margin: 0 auto;
  }
}
.toppage-news .contents-inner article .article-date {
  color: #bbb;
  font-size: 18px;
  margin-bottom: 24px;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .toppage-news .contents-inner article .article-date {
    margin-bottom: 1.8461538462vw;
    font-size: 1.3846153846vw;
  }
}
@media print, screen and (max-width: 768px) {
  .toppage-news .contents-inner article .article-date {
    line-height: 1em;
    margin-bottom: 6vw;
    font-size: 3.2vw;
  }
}
.toppage-news .contents-inner article .article-ttl {
  font-size: 30px;
  margin-bottom: 1.6em;
  font-weight: 600;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .toppage-news .contents-inner article .article-ttl {
    font-size: 2.3076923077vw;
  }
}
@media print, screen and (max-width: 768px) {
  .toppage-news .contents-inner article .article-ttl {
    font-size: 4.2vw;
  }
}
.toppage-news .contents-inner article .article-text {
  font-size: 18px;
  line-height: 2em;
}
.toppage-news .contents-inner article .article-text:nth-of-type(n+2) {
  margin-top: 1.5em;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .toppage-news .contents-inner article .article-text {
    font-size: 1.3846153846vw;
  }
}
@media print, screen and (max-width: 768px) {
  .toppage-news .contents-inner article .article-text {
    font-size: 3.2vw;
  }
}

.toppage-about {
  padding-top: 250px;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .toppage-about {
    padding-top: 19.2307692308vw;
  }
}
@media print, screen and (max-width: 768px) {
  .toppage-about {
    padding: 25vw 6vw 0;
  }
}
.toppage-about .contents-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media print, screen and (max-width: 768px) {
  .toppage-about .contents-inner {
    flex-direction: column;
  }
}
.toppage-about .contents-inner .contents-head {
  position: sticky;
  top: 150px;
  flex-shrink: 0;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .toppage-about .contents-inner .contents-head {
    top: 12vw;
  }
}
@media print, screen and (max-width: 768px) {
  .toppage-about .contents-inner .contents-head {
    position: static;
  }
}
.toppage-about .contents-inner .contents-right {
  width: 710px;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .toppage-about .contents-inner .contents-right {
    width: 61.5384615385vw;
  }
}
@media print, screen and (max-width: 768px) {
  .toppage-about .contents-inner .contents-right {
    width: 100%;
    margin: 0 auto;
  }
}
.toppage-about .contents-inner .contents-right .about-list h4 {
  margin-top: 150px;
  line-height: 1em;
  margin-bottom: 80px;
  font-size: 24px;
  font-weight: bold;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .toppage-about .contents-inner .contents-right .about-list h4 {
    margin-top: 11.5384615385vw;
    margin-bottom: 6.1538461538vw;
    font-size: 1.8461538462vw;
  }
}
@media print, screen and (max-width: 768px) {
  .toppage-about .contents-inner .contents-right .about-list h4 {
    margin-top: 20vw;
    line-height: 1em;
    margin-bottom: 12vw;
    font-size: 4vw;
  }
}
.toppage-about .contents-inner .contents-right .about-list > dl {
  border-top: 1px solid #ccc;
  display: flex;
  align-items: flex-start;
  padding: 30px 0;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .toppage-about .contents-inner .contents-right .about-list > dl {
    padding: 2.3076923077vw 0;
  }
}
@media print, screen and (max-width: 768px) {
  .toppage-about .contents-inner .contents-right .about-list > dl {
    padding: 4vw 0;
  }
}
.toppage-about .contents-inner .contents-right .about-list > dl dt {
  font-size: 18px;
  line-height: 1.6em;
  font-weight: 600;
  width: 200px;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .toppage-about .contents-inner .contents-right .about-list > dl dt {
    width: 15.3846153846vw;
    font-size: 1.3846153846vw;
  }
}
@media print, screen and (max-width: 768px) {
  .toppage-about .contents-inner .contents-right .about-list > dl dt {
    width: 40%;
    font-size: 3.3vw;
  }
}
.toppage-about .contents-inner .contents-right .about-list > dl dd {
  font-size: 18px;
  line-height: 1.6em;
  font-weight: normal;
  width: calc(100% - 200px);
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .toppage-about .contents-inner .contents-right .about-list > dl dd {
    width: 45vw;
    font-size: 1.3846153846vw;
  }
}
@media print, screen and (max-width: 768px) {
  .toppage-about .contents-inner .contents-right .about-list > dl dd {
    width: 60%;
    font-size: 3.3vw;
  }
}
.toppage-about .contents-inner .contents-right .about-list > dl dd ul li {
  display: flex;
  align-items: center;
  line-height: 2em;
}
.toppage-about .contents-inner .contents-right .about-list > dl dd ul li::before {
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background-color: #a90021;
  display: block;
  margin-right: 15px;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .toppage-about .contents-inner .contents-right .about-list > dl dd ul li::before {
    width: 0.7692307692vw;
    height: 0.7692307692vw;
    margin-right: 1.1538461538vw;
  }
}
@media print, screen and (max-width: 768px) {
  .toppage-about .contents-inner .contents-right .about-list > dl dd ul li::before {
    height: 2vw;
    width: 2vw;
    margin-right: 2vw;
  }
}
.toppage-about .contents-inner .contents-right .about-list > dl:last-child {
  border-bottom: 1px solid #ccc;
}
.toppage-about .contents-inner .contents-right .accessmap h5 {
  font-size: 28px;
  line-height: 1em;
  margin-bottom: 32px;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .toppage-about .contents-inner .contents-right .accessmap h5 {
    font-size: 2.1538461538vw;
    margin-bottom: 2.4615384615vw;
  }
}
@media print, screen and (max-width: 768px) {
  .toppage-about .contents-inner .contents-right .accessmap h5 {
    font-size: 4.8vw;
    margin-bottom: 7vw;
    line-height: 1.3em;
  }
}
.toppage-about .contents-inner .contents-right .accessmap iframe {
  width: 100%;
  height: 300px;
  margin-bottom: 32px;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .toppage-about .contents-inner .contents-right .accessmap iframe {
    height: 23.0769230769vw;
    margin-bottom: 2.4615384615vw;
  }
}
@media print, screen and (max-width: 768px) {
  .toppage-about .contents-inner .contents-right .accessmap iframe {
    height: 65vw;
    margin-bottom: 6vw;
  }
}
.toppage-about .contents-inner .contents-right .accessmap .map-data dl {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .toppage-about .contents-inner .contents-right .accessmap .map-data dl {
    margin-bottom: 1.1538461538vw;
  }
}
@media print, screen and (max-width: 768px) {
  .toppage-about .contents-inner .contents-right .accessmap .map-data dl {
    margin-bottom: 3vw;
  }
}
.toppage-about .contents-inner .contents-right .accessmap .map-data dl dt {
  width: 120px;
  font-size: 16px;
  line-height: 1.3em;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .toppage-about .contents-inner .contents-right .accessmap .map-data dl dt {
    width: 9.2307692308vw;
    font-size: 1.2307692308vw;
  }
}
@media print, screen and (max-width: 768px) {
  .toppage-about .contents-inner .contents-right .accessmap .map-data dl dt {
    width: 25%;
    font-size: 3.2vw;
  }
}
.toppage-about .contents-inner .contents-right .accessmap .map-data dl dd {
  font-size: 16px;
  line-height: 1.3em;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .toppage-about .contents-inner .contents-right .accessmap .map-data dl dd {
    font-size: 1.2307692308vw;
  }
}
@media print, screen and (max-width: 768px) {
  .toppage-about .contents-inner .contents-right .accessmap .map-data dl dd {
    width: 75%;
    font-size: 3.2vw;
  }
}
.toppage-about .contents-inner .contents-right .accessmap .map-data dl dd a {
  text-decoration: underline;
}
.toppage-about .contents-inner .contents-right .accessmap:nth-of-type(n+2) {
  margin-top: 70px;
  padding-top: 70px;
  border-top: 1px solid #ccc;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .toppage-about .contents-inner .contents-right .accessmap:nth-of-type(n+2) {
    margin-top: 5.3846153846vw;
    padding-top: 5.3846153846vw;
  }
}
@media print, screen and (max-width: 768px) {
  .toppage-about .contents-inner .contents-right .accessmap:nth-of-type(n+2) {
    margin-top: 9vw;
    padding-top: 9vw;
  }
}

.toppage-contact {
  background-color: #a90021;
  padding: 90px 0;
  margin-top: 200px;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .toppage-contact {
    margin-top: 15.3846153846vw;
    padding: 6.9230769231vw 0;
  }
}
@media print, screen and (max-width: 768px) {
  .toppage-contact {
    padding: 10vw 0;
    margin-top: 20vw;
  }
}
.toppage-contact .contents-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1200px;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .toppage-contact .contents-inner {
    width: 100%;
  }
}
@media print, screen and (max-width: 768px) {
  .toppage-contact .contents-inner {
    width: 88vw;
    flex-direction: column;
    align-items: center;
  }
}
.toppage-contact .contents-inner section .contents-head {
  color: #fff;
  margin-bottom: 50px;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .toppage-contact .contents-inner section .contents-head {
    margin-bottom: 3.8461538462vw;
  }
}
@media print, screen and (max-width: 768px) {
  .toppage-contact .contents-inner section .contents-head {
    margin-bottom: 5vw;
    text-align: center;
  }
}
.toppage-contact .contents-inner section .contents-head span {
  color: #fff;
}
.toppage-contact .contents-inner section p {
  color: #fff;
  font-size: 21px;
  color: #fff;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .toppage-contact .contents-inner section p {
    font-size: 1.6153846154vw;
  }
}
@media print, screen and (max-width: 768px) {
  .toppage-contact .contents-inner section p {
    font-size: 3.4vw;
    text-align: center;
    margin-bottom: 7vw;
  }
}
.toppage-contact .contents-inner a {
  width: 700px;
  height: 120px;
  border-radius: 60px;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  box-sizing: border-box;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .toppage-contact .contents-inner a {
    width: 53.8461538462vw;
    height: 9.2307692308vw;
    border-radius: 4.6153846154vw;
    font-size: 2.3076923077vw;
  }
}
@media print, screen and (max-width: 768px) {
  .toppage-contact .contents-inner a {
    width: 90%;
    height: 12vw;
    border-radius: 6vw;
    font-size: 4vw;
    line-height: 1em;
  }
}
.toppage-contact .contents-inner a img {
  width: 58px;
  height: auto;
  display: block;
  margin-right: 28px;
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .toppage-contact .contents-inner a img {
    width: 4.4615384615vw;
    margin-right: 2.1538461538vw;
  }
}
@media print, screen and (max-width: 768px) {
  .toppage-contact .contents-inner a img {
    width: 8vw;
    margin-right: 3vw;
  }
}

#content-wrap {
  background-color: transparent;
  padding-bottom: 0;
  padding-top: 0;
}
#content-wrap::after {
  display: none;
}/*# sourceMappingURL=front-page.css.map */