@charset "UTF-8";
body {
  -webkit-font-smoothing: antialiased;
  /* mac */
  font-family: 'Noto Sans JP', sans-serif;
  padding-top: 100px;
}
@media screen and (max-width: 1280px) {
  body {
    padding-top: 70px;
  }
}
@media screen and (max-width: 767px) {
  body {
    padding-top: 50px;
  }
}
a {
  text-decoration: none;
  transition: opacity 0.5s;
}
a:hover {
  opacity: 0.5;
}
img {
  max-width: 100%;
  height: auto;
}
.only_pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .only_pc {
    display: none;
  }
}
.only_sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .only_sp {
    display: block;
  }
}
.inner {
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 40px;
  max-width: 100%;
  width: 1100px;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 20px;
  }
}
.flexbox {
  display: flex;
}
.btn {
  background-color: #463933;
  border-radius: 3px;
  cursor: pointer;
  color: #fff;
  font-weight: 700;
  font-size: 1.75em;
  letter-spacing: 0.1em;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 32.5px 20px;
  max-width: 100%;
  width: 100%;
  position: relative;
  transition: opacity 0.5s;
}
@media screen and (max-width: 1024px) {
  .btn {
    font-size: 1.5em;
  }
}
@media screen and (max-width: 767px) {
  .btn {
    font-size: 1.3125em;
    letter-spacing: inherit;
    padding: 20px 50px;
    height: 105px;
  }
}
@media screen and (max-width: 375px) {
  .btn {
    font-size: 5.6vw;
    padding: 5.33333333vw 10.66666667vw;
    height: 28vw;
  }
}
.btn:hover {
  opacity: 0.5;
}
.btn.accordion-toggle.open::after {
  background-image: url(../images/common/icon/icon-close.svg);
}
.btn.accordion-toggle::after {
  background-image: url(../images/common/icon/icon-open.svg);
}
.btn span {
  display: inline-block;
}
.btn::after {
  content: '';
  background: url(../images/common/icon/icon-link.svg) 0 0 no-repeat;
  background-size: contain;
  display: inline-block;
  margin: 0 0 0 30px;
  width: 40px;
  height: 40px;
}
@media screen and (max-width: 767px) {
  .btn::after {
    width: 30px;
    height: 30px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translate(0%, -50%);
  }
}
@media screen and (max-width: 374px) {
  .btn::after {
    width: 8vw;
    height: 8vw;
    right: 2.66666667vw;
  }
}
header {
  background-color: #FEC72E;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
body.home header {
  background-color: #fff;
}
header .row_01 {
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 50px;
}
@media screen and (max-width: 767px) {
  header .row_01 {
    height: auto;
  }
}
header .row_01 .col_right {
  align-items: center;
}
header .row_02 {
  display: flex;
  align-items: center;
  justify-content: center;
}
header .only_pc {
  display: block;
}
@media screen and (max-width: 1280px) {
  header .only_pc {
    display: none;
  }
}
header .inner {
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  header .inner {
    padding-right: 0;
  }
}
header .logo {
  width: 277px;
  width: 197px;
  width: 300px;
}
@media screen and (max-width: 767px) {
  header .logo {
    width: 132px;
  }
}
header .logo a {
  display: block;
}
header .logo img {
  width: 100%;
}
header nav {
  background-color: #FEC72E;
  align-self: stretch;
}
@media screen and (max-width: 767px) {
  header nav {
    display: none;
    box-sizing: border-box;
    overflow-y: auto;
    padding: 20px;
    width: 100%;
    position: fixed;
    top: 70px;
    bottom: 0;
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  header nav {
    top: 50px;
  }
}
body.home header nav {
  background-color: #fff;
}
header nav ul {
  display: flex;
  margin-right: -35px;
  margin-left: -35px;
}
@media screen and (max-width: 1023px) {
  header nav ul {
    margin-right: -13px;
    margin-left: -13px;
  }
}
@media screen and (max-width: 767px) {
  header nav ul {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  header nav ul li {
    border-top: 1px solid #eb7323;
  }
}
@media screen and (max-width: 767px) {
  header nav ul li:last-of-type {
    border-bottom: 1px solid #eb7323;
  }
}
header nav ul li.current a span::after,
header nav ul li.current-menu-item a span::after {
  bottom: -10px;
  opacity: 1;
}
header nav ul li:nth-child(7),
header nav ul li:nth-child(8),
header nav ul li:nth-child(9) {
  display: none;
}
header nav a {
  color: #463933;
  font-size: 0.875em;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  text-align: center;
  white-space: nowrap;
  box-sizing: border-box;
  padding: 0 35px;
  height: 50px;
}
@media screen and (max-width: 1023px) {
  header nav a {
    height: 45px;
    padding-left: 13px;
    padding-right: 13px;
  }
}
@media screen and (max-width: 767px) {
  header nav a {
    justify-content: center;
  }
}
header nav a:hover {
  opacity: 1;
}
header nav a:hover span::after {
  bottom: -10px;
  opacity: 1;
}
header nav a > span {
  position: relative;
  z-index: 0;
}
header nav a > span::after {
  content: '';
  background-color: #eb7323;
  opacity: 0;
  display: block;
  margin: auto -6px;
  min-width: 100%;
  height: 5px;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  z-index: -1;
  transition: bottom 0.5s, opacity 0.5s;
}
@media screen and (max-width: 767px) {
  header nav a > span::after {
    content: none;
  }
}
header nav a > span > span {
  display: inline-block;
}
header .menu_trigger {
  background-color: #EB7323;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
  display: block;
  padding: 34px;
  width: 100px;
  height: 100px;
  position: relative;
}
@media screen and (max-width: 767px) {
  header .menu_trigger {
    padding: 17px;
    width: 50px;
    height: 50px;
  }
}
header .menu_trigger.active span:nth-of-type(1) {
  transform: translateY(15px) rotate(-45deg);
}
@media screen and (max-width: 767px) {
  header .menu_trigger.active span:nth-of-type(1) {
    transform: translateY(7px) rotate(-45deg);
  }
}
header .menu_trigger.active span:nth-of-type(2) {
  opacity: 0;
}
header .menu_trigger.active span:nth-of-type(3) {
  transform: translateY(-15px) rotate(45deg);
}
@media screen and (max-width: 767px) {
  header .menu_trigger.active span:nth-of-type(3) {
    transform: translateY(-7px) rotate(45deg);
  }
}
header .menu_trigger,
header .menu_trigger span {
  box-sizing: border-box;
  display: inline-block;
  transition: transform 0.4s, opacity 0.4s;
}
header .menu_trigger span {
  background-color: #fff;
  width: 32px;
  height: 2px;
  position: absolute;
  left: 34px;
}
@media screen and (max-width: 767px) {
  header .menu_trigger span {
    width: 16px;
    left: 17px;
  }
}
header .menu_trigger span:nth-of-type(1) {
  top: 34px;
}
@media screen and (max-width: 767px) {
  header .menu_trigger span:nth-of-type(1) {
    top: 17px;
  }
}
header .menu_trigger span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
header .menu_trigger span:nth-of-type(3) {
  bottom: 34px;
}
@media screen and (max-width: 767px) {
  header .menu_trigger span:nth-of-type(3) {
    bottom: 17px;
  }
}
header a[class^="btn_"] {
  background-color: #EB7323;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2.5em;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  padding: 0 1em;
  margin-left: 1em;
}
@media screen and (max-width: 767px) {
  header a[class^="btn_"] {
    background-color: transparent;
    padding: 0;
    margin-left: 0;
    margin-right: 0.85em;
  }
}
@media screen and (max-width: 767px) {
  header a[class^="btn_"] span {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  header a[class^="btn_"]::after {
    content: "";
    display: block;
    width: 35px;
    height: 35px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
}
header .btn_contact::after {
  background-image: url(../images/common/icon/icon_mail.svg);
}
header .btn_chatroom::after {
  background-image: url(../images/common/icon/icon_chat.svg);
}
footer {
  background-color: #463933;
}
footer .totop {
  background-color: #fff;
}
footer .totop a {
  background-color: #FEC72E;
  display: block;
  height: 55px;
  position: relative;
}
@media screen and (max-width: 767px) {
  footer .totop a {
    height: 50px;
  }
}
footer .totop a::after {
  content: '';
  border-top: 2px solid #463933;
  border-right: 2px solid #463933;
  display: block;
  margin: auto;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translate(0%, -25%) rotate(-45deg);
}
@media screen and (max-width: 767px) {
  footer .totop a::after {
    width: 10px;
    height: 10px;
  }
}
footer .inner {
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 3.66032211%;
  padding-bottom: 3.66032211%;
}
@media screen and (min-width: 1366px) {
  footer .inner {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  footer .inner {
    display: block;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
footer .logo {
  margin: 0 0 40px;
  width: 197px;
}
@media screen and (max-width: 767px) {
  footer .logo {
    margin: 0 0 20px;
    width: 132px;
  }
}
footer .logo a {
  display: block;
}
footer .logo img {
  width: 100%;
}
footer .address {
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  line-height: 23px;
}
@media screen and (max-width: 767px) {
  footer .address {
    font-size: 12px;
    line-height: 18px;
  }
}
footer .address span {
  font-weight: 700;
}
footer small {
  color: #fff;
  font-size: 14px;
  line-height: 1.75;
  display: block;
}
@media screen and (max-width: 767px) {
  footer small {
    font-size: 12px;
    text-align: center;
  }
}
footer .btn_privacy {
  display: block;
  color: #fff;
  font-size: 0.875em;
  text-decoration: underline;
  margin-top: 0.625em;
}
@media screen and (max-width: 767px) {
  footer .btn_privacy {
    margin-bottom: 0.625em;
  }
}
.section.banner {
  border-top: 10px solid #fec72e;
}
.section.banner .inner {
  padding-top: 8.05270864%;
  padding-bottom: 3.66032211%;
}
@media screen and (min-width: 1366px) {
  .section.banner .inner {
    padding-top: 110px;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .section.banner .inner {
    padding-top: 60px;
  }
}
.banner_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: -30px;
}
@media screen and (max-width: 767px) {
  .banner_list {
    margin-left: -20px;
  }
}
.banner_list .item {
  margin: 0 0 30px 30px;
}
@media screen and (max-width: 767px) {
  .banner_list .item {
    margin: 0 0 20px 20px;
  }
}
.banner_list .item a {
  display: block;
}
.accordion .accordion-content {
  display: none;
}
.section_title.type01 {
  color: #463933;
  font-weight: 700;
  font-size: 2em;
  letter-spacing: 0.3em;
  line-height: 1.75;
  text-align: center;
  margin: 0 auto 50px;
}
@media screen and (max-width: 767px) {
  .section_title.type01 {
    font-size: 1.3125em;
    letter-spacing: 0.2em;
    line-height: 1.57142857;
    margin-bottom: 30px;
  }
}
.section_title.type01 span {
  display: inline-block;
}
.section_title.type01 .small {
  font-size: 0.75em;
  letter-spacing: 0.2em;
  display: block;
}
.section_title.type01 .border {
  background-color: #EB7323;
  display: block;
  margin: 30px auto 0;
  width: 40px;
  height: 2px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .section_title.type01 .border {
    margin-top: 20px;
  }
}
.section_title.type01 .border::before,
.section_title.type01 .border::after {
  content: '';
  background-color: #EB7323;
  border-radius: 50%;
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.section_title.type01 .border::before {
  left: 0;
}
.section_title.type01 .border::after {
  right: 0;
}
.section_title.type02 {
  color: #463933;
  font-weight: 900;
  font-size: 1.5em;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-align: center;
  margin: 0 0 40px;
}
@media screen and (max-width: 767px) {
  .section_title.type02 {
    font-size: 1.3125em;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 374px) {
  .section_title.type02 {
    font-size: 5.6vw;
  }
}
.section_title.type02 span {
  background-color: #ff0;
  display: inline-block;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .section_title.type02 span {
    line-height: 1.0952381;
  }
}
.page_title {
  background-color: #fff;
  color: #463933;
  font-weight: 700;
  font-size: 2em;
  letter-spacing: 0.3em;
  line-height: 1.75;
  text-align: center;
  padding: 50px 0 34px;
}
@media screen and (max-width: 767px) {
  .page_title {
    font-size: 1.3125em;
    letter-spacing: 0.2em;
    line-height: 1.57142857;
    padding: 25px 17px;
  }
}
.page_title span {
  display: inline-block;
}
.page_title .small {
  font-size: 0.75em;
  letter-spacing: 0.2em;
  display: block;
}
.page_title .border {
  background-color: #EB7323;
  display: block;
  margin: 30px auto 0;
  width: 40px;
  height: 2px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .page_title .border {
    margin-top: 20px;
  }
}
.page_title .border::before,
.page_title .border::after {
  content: '';
  background-color: #EB7323;
  border-radius: 50%;
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.page_title .border::before {
  left: 0;
}
.page_title .border::after {
  right: 0;
}
.page_content {
  background-color: #f6f5f0;
}
.tab_content {
  display: none;
}
.tab_content.active {
  display: block;
}
.banner_matchingEvent {
  display: block;
  margin-bottom: 5.052709%;
}
