@charset "UTF-8";
html {
  font-size: 20px;
}
@media screen and (max-width: 576px) {
  html {
    font-size: 16px;
  }
}

main {
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
  min-height: 100vh;
}

.color_r {
  color: #f33030;
}

.headsup_text {
  color: #f33030;
  font-weight: bold;
}

header {
  background-color: #000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

@media screen and (max-width: 768px) {
  .left {
    display: none;
  }
}
.left img {
  width: 100%;
  max-width: 150px;
}

/* ナビバー */
.utility {
  display: flex;
  list-style: none;
}
.utility li {
  margin: 0 10px;
  font-size: 16px;
}
.utility li a {
  color: #a47333;
  text-decoration: none;
}

body {
  color: #333333;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
}
body .t_center {
  text-align: center;
}
body .p_60 {
  padding-top: 60px;
}
body .p_40 {
  padding-top: 40px;
  display: inline-block;
}
body .pl_60 {
  padding-left: 60px;
}
@media screen and (max-width: 768px) {
  body .pl_60 {
    padding-left: 0px;
  }
}
body .m_100 {
  margin-top: 5rem;
}
body .f_24 {
  font-size: 1.2rem;
}
body a {
  color: #000;
  transition: all 0.3s ease-in-out;
}
body a:hover {
  color: #f8f0e2;
}
body .sp {
  display: none;
}
@media screen and (max-width: 768px) {
  body .sp {
    display: block;
  }
}
body .t_li li {
  text-indent: -1em;
  padding-left: 1em;
}
body .to_fv {
  max-width: 1000px;
  width: 96%;
  margin: 2.5rem auto 1rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  body .to_fv {
    max-width: 540px;
    width: 94%;
    display: block;
    margin: 2.5rem auto 0;
    z-index: 0;
  }
}
@media screen and (max-width: 768px) {
  body .to_fv img {
    width: 100%;
  }
}
body .to_fv h2 {
  font-size: 1.6rem;
  color: #a47333;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  body .to_fv h2 {
    font-size: 2rem;
  }
}
body .to_repo_fv {
  margin: 2.5rem auto 2rem;
}
body .to_fv_l {
  width: 80%;
  min-height: 11rem;
}
@media screen and (max-width: 768px) {
  body .to_fv_l {
    width: 100%;
    min-height: auto;
  }
}
body .to_fv_l .to_fv_l_back {
  background: linear-gradient(transparent 30%, #ff6 60%);
}
body .to_fv_l .to_fv_l_back img {
  width: 25px;
}
body .to_information {
  max-width: 1000px;
  width: 96%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  body .to_information {
    max-width: 540px;
    width: 94%;
  }
}
body .to_information:first-child h4 {
  margin: 200px 0 40px;
}
body .to_information h4 {
  position: relative;
  color: #a47333;
  padding: 10px 10px 10px 40px;
  background-color: #f8f0e2;
  border-radius: 15px;
  margin: 100px 0 40px;
}
@media screen and (max-width: 768px) {
  body .to_information h4 {
    margin: 50px 0 40px;
  }
}
body .to_information h4::after {
  position: absolute;
  top: 50%;
  left: 0.7em;
  transform: translateY(-50%);
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 100%;
  background-color: #a47333;
}
body .to_information .t_title_width {
  margin: 0 0 40px;
}
body .to_information .to_regiinfo_table tr th {
  padding: 5px 5px 5px 20px;
}
@media screen and (max-width: 768px) {
  body .to_information .to_regiinfo_table tr th {
    width: 97%;
    display: block;
    border-collapse: collapse;
    padding: 5px;
  }
}
body .to_information .to_regiinfo_table tr td {
  padding: 5px 5px 5px 20px;
}
@media screen and (max-width: 768px) {
  body .to_information .to_regiinfo_table tr td {
    display: block;
    border-collapse: collapse;
    padding: 5px;
  }
}
@media screen and (max-width: 768px) {
  body .to_information .to_regiinfo_table tr .buy_flex {
    display: flex;
  }
}
body .to_information table {
  width: 100%;
}
body .to_information table tr th {
  background-color: #f8f0e2;
  border-bottom: 3px solid #d6c19e;
  color: #a47333;
  width: 15rem;
}
@media screen and (max-width: 768px) {
  body .to_information table tr th {
    width: 97%;
    border-collapse: collapse;
    padding: 5px;
  }
}
body .to_information table tr td {
  border-bottom: 3px solid #d6c19e;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  body .to_information table tr td {
    border-collapse: collapse;
    padding: 5px;
    border-bottom: none;
  }
}
body .to_information table .t_btn {
  display: block;
  padding: 10px;
  background-color: #f8f0e2;
  border: 2px solid #f8f0e2;
  color: #a47333;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  width: 340px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  body .to_information table .t_btn {
    width: 90%;
    text-align: center;
    margin: 10px auto;
  }
}
body .to_information table .t_btn:hover {
  background-color: #fff;
  color: #a47333;
  border: 2px solid #a47333;
}
body .to_information table .p_color {
  color: #a47333;
}
body .to_information table .t_g_img img {
  width: 100%;
  max-width: 100px;
  padding-right: 5px;
}
body .to_information table .p_tirashi {
  display: flex;
}
@media screen and (max-width: 768px) {
  body .to_information table .p_tirashi {
    display: block;
    text-align: center;
  }
}
body .to_information table .p_tirashi img {
  width: 100%;
  max-width: 250px;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  body .to_information table .p_tirashi img {
    padding-right: 0px;
  }
}
body .to_information table .p_map_text a {
  font-weight: bold;
  padding-bottom: 10px;
  line-height: 3;
}
body .to_information table .p_map_text .p_co {
  color: #F39696;
}
body .to_information table .p_map_text .p_ci {
  color: #93CDB3;
}
body .to_information table .p_map_text .p_cf {
  color: #FAD49E;
}
body .to_information table .p_map_text .p_csd {
  color: #B5CEEA;
}
body .to_information table .p_map_text .p_csf {
  color: #C792BE;
}
body .to_information table .p_map {
  padding: 10px 0;
}
body .to_information table .p_map img {
  width: 100%;
}
body .to_information table .img_link span {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
body .to_information table .img_link span:nth-child(n+2) {
  font-size: 16px;
}
body .to_information table .img_link span .sp {
  display: none;
}
@media screen and (max-width: 768px) {
  body .to_information table .img_link span .sp {
    display: block;
  }
}
body .to_information table .img_link span a {
  text-decoration: none;
  margin-right: 20px;
}
body .to_information table .img_link span a img {
  width: 100%;
  max-width: 150px;
}
body .to_information table .img_link span a img:hover {
  opacity: 0.6;
}
body .to_information table .img_link span a .w_60 {
  max-width: 60px;
}
body .to_information table .img_link span a .w_120 {
  max-width: 120px;
}
body .to_information table .img_link span a .w_230 {
  max-width: 230px;
}
body .to_information .t_app {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  body .to_information .t_app {
    display: block;
  }
}
body .to_information .t_app .t_app_ap img {
  width: 200px;
}
@media screen and (max-width: 768px) {
  body .to_information .t_app .t_app_ap img {
    width: 250px;
  }
}
body .to_information .t_app .t_app_go img {
  margin-left: 20px;
  width: 250px;
}
@media screen and (max-width: 768px) {
  body .to_information .t_app .t_app_go img {
    margin-left: 0px;
    width: 300px;
  }
}
body footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 20px 50px;
  font-size: 16px;
}
body footer .footer_menubox {
  display: flex;
  width: 96%;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  body footer .footer_menubox {
    display: block;
    margin-bottom: 40px;
  }
}
body footer .footer_menubox img {
  width: 100%;
  max-width: 150px;
}
body footer .f_copy {
  font-size: 14px;
  color: #9b9b9b;
}
body footer .footer_menu {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  body footer .footer_menu {
    display: block;
  }
}
@media screen and (max-width: 576px) {
  body footer .footer_menu .footer_menulink {
    display: block;
  }
}
@media screen and (max-width: 576px) {
  body footer .footer_menu .footer_menulink li {
    margin: 10px 0;
    padding-left: 0;
  }
}
@media screen and (max-width: 768px) {
  body footer .footer_menu .footer_menulogo {
    margin-top: 20px;
  }
}
body footer .footer_menu ul {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  body footer .footer_menu ul {
    align-items: center;
    justify-content: center;
  }
}
body footer .footer_menu ul li {
  padding-left: 20px;
}
body footer .footer_menu ul li a {
  color: #fff;
  text-decoration: none;
}
body footer .footer_menu ul li a img {
  width: 100%;
  max-width: 30px;
}

.img_sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .img_sp {
    display: block;
  }
  .img_pc {
    display: none;
  }
}
.to_fv {
  position: relative;
}

.to_fv_r {
  position: relative;
}
@media screen and (max-width: 768px) {
  .to_fv_r {
    display: none;
  }
}

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

.to_fv_r.fcv_02::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  max-width: 540px;
  height: 358px;
  width: 100%;
  background: url("./img/fv_ogaki25.png") center center no-repeat;
  background-size: cover;
  z-index: 1;
}

.to_fv_r img {
  max-width: 80%;
  position: relative;
  z-index: 2;
  transform: rotate(15deg);
  left: 120px;
  /* top: -10px; */
  bottom: 30px;
}

@media screen and (max-width: 992px) {
  .pc_header {
    display: none;
  }
}

/* 共通 */
#header {
  width: 100%;
  padding-top: 6px;
}

#headerContent {
  margin: 0 auto;
}

#headerMenu {
  width: 100%;
}

/* 画面サイズ(1025px以上) */
@media screen and (min-width: 1025px) {
  #headerContent {
    width: 980px;
    height: 110px;
  }
}
/* 画面サイズ(768~1024px) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #headerContent {
    width: 100%;
    height: 110px;
  }
  .left {
    margin-left: 10px;
  }
  .right {
    margin-right: 10px;
  }
}
/* 画面サイズ(768px以上) */
@media screen and (min-width: 768px) {
  #headerMenuBtn {
    display: none;
  }
  #headerMenu {
    display: flex;
    justify-content: space-between;
  }
  #headerMenu h2 {
    display: none;
  }
  /* ナビバー左側 */
  .left {
    margin-top: 17px;
  }
  /* ナビバー右側 */
  .right {
    margin-top: 47px;
  }
  /* ナビバー */
  .utility {
    display: flex;
    list-style: none;
  }
  .utility li {
    font-size: 16px;
    line-height: 1;
  }
  .utility li a {
    color: #fff;
  }
}
/* 画面サイズ（767px以下）（ハンバーガーメニュー） */
@media screen and (max-width: 767px) {
  #headerContent {
    width: 100%;
  }
  #sp_headerContent {
    position: relative;
    width: 100%;
    height: 75px;
  }
  #sp_headerContent img {
    width: 100%;
    max-width: 150px;
    padding: 10px 20px 0;
  }
  #headerMenuBtn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 40px;
    width: 30px;
  }
  #headerMenuBtn img {
    width: 100%;
  }
  #headerMenu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    transition: 0.3s;
  }
  #headerMenu h2 {
    position: relative;
    background-color: #000000;
    font: inherit;
    font-size: 18px;
    padding: 10px;
    color: #fff;
  }
  .open #headerMenu {
    right: 0;
  }
  /* ハンバーガーメニューを閉じるボタン */
  #headerMenu h2 .close {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    width: 22px;
  }
  .utility {
    list-style: none;
    display: block;
    margin-top: 0;
    background-color: rgb(0, 0, 0);
  }
  .utility li:hover {
    text-decoration: none;
  }
  .utility li a {
    display: block;
    color: #a47333;
    padding: 10px 0px 10px 10px;
    font-size: 15px;
    border-bottom: 1px solid #a47333;
  }
}
#sp_headerContent h1 img {
  display: none;
}
@media screen and (max-width: 768px) {
  #sp_headerContent h1 img {
    display: block;
  }
}

.repo_statistics:nth-child(n+2) {
  margin-top: 60px;
}
.repo_statistics img {
  width: 80%;
  margin: 0 auto;
  display: block;
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  .repo_statistics img {
    width: 100%;
  }
}

p.text_b {
  padding-bottom: 10px;
  font-weight: bold;
}
p.text_b:nth-child(n+2) {
  margin-top: 60px;
}

.repo_img,
.repo_award_img {
  display: flex;
  justify-content: space-between;
  margin: 10px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .repo_img,
  .repo_award_img {
    display: block;
  }
}
.repo_img img,
.repo_award_img img {
  width: 100%;
  max-width: 470px;
}

.to_classification {
  padding-top: 110px;
}
@media screen and (max-width: 768px) {
  .to_classification {
    padding-top: 70px;
  }
}
.to_classification .to_class_box {
  height: 150px;
  display: flex;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .to_classification .to_class_box {
    flex-direction: column-reverse;
  }
}
.to_classification .to_class_tebox {
  width: 50%;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .to_classification .to_class_tebox {
    width: 100%;
  }
}
.to_classification .to_class_tebox .to_class_text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #f8f0e2;
}
@media screen and (max-width: 768px) {
  .to_classification .to_class_tebox .to_class_text {
    display: block;
    width: auto;
    padding: 0 20px;
  }
}
.to_classification .to_class_tebox .to_class_text h1 {
  font-size: 2.1875rem;
  color: #a47333;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .to_classification .to_class_tebox .to_class_text h1 {
    font-size: 1.2rem;
    padding: 10px 0;
  }
}
.to_classification .to_class_img {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .to_classification .to_class_img {
    width: 100%;
  }
}
.to_classification .to_class_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-style: none;
}

.repo_subtext {
  max-width: 1000px;
  width: 96%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .repo_sta_img {
    overflow-x: scroll;
  }
}
.repo_sta_img img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .repo_sta_img img {
    width: auto;
  }
}

.repo_sta_link a {
  cursor: pointer;
  text-decoration: underline;
}

.repo_sta_title {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .repo_sta_title {
    display: flex;
    align-items: center;
  }
}

.sp_text {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp_text {
    display: block;
    font-size: 16px;
    padding-left: 30px;
  }
}

.repo_sta_table {
  overflow-x: auto;
  width: 100%;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .repo_sta_table {
    width: 90%;
    margin: 0 auto;
  }
}
.repo_sta_table .repo_title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-top: 1rem;
  padding-bottom: 5px;
}
.repo_sta_table .repo_sta_tbody {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .repo_sta_table .repo_sta_tbody {
    width: 100%;
    min-width: 300px;
    margin: 0 auto;
    overflow-x: scroll;
  }
}
.repo_sta_table .repo_sta_tbody tbody tr th {
  text-align: center;
  padding: 5px;
}
@media screen and (max-width: 768px) {
  .repo_sta_table .repo_sta_tbody tbody tr th {
    width: 10%;
  }
}
.repo_sta_table .repo_sta_tbody tbody tr td {
  padding: 5px;
}
.repo_sta_table .repo_sta_tbody tbody tr a {
  color: #a47333;
}
.repo_sta_table .repo_sta_tbody tbody tr a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .repo_sta_table .fc_repo_sta_tbody {
    width: 100%;
    min-width: 300px;
    margin: 0 auto;
    overflow-x: scroll;
  }
}

.repo_stph {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.repo_stph div {
  width: 50%;
}
.repo_stph div:nth-child(3) {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .repo_stph div {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .repo_stph {
    display: block;
  }
}
.repo_stph a {
  display: block;
  position: relative;
  width: 100%;
  max-width: 470px;
}
.repo_stph img {
  width: 100%;
  height: 100%;
  display: block;
}
.repo_stph span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.3);
  padding: 15px;
  text-align: center;
  color: #FFF;
  font-size: 120%;
  font-weight: bold;
  transition: 0.3s;
}

.repo_st:hover span,
.repo_ph:hover span {
  background: rgb(255, 255, 255);
  color: #333;
}

@media screen and (max-width: 768px) {
  .repo_st {
    margin-bottom: 30px;
  }
}

.to_fv.to_repo_fv .to_fv_l {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .to_fv.to_repo_fv .to_fv_l {
    width: 100%;
  }
}

.to_fv.to_repo_fv .repo_img img {
  width: 500px;
}
@media screen and (max-width: 768px) {
  .to_fv.to_repo_fv .repo_img img {
    width: 100%;
  }
}

.mb_30 {
  margin-bottom: 30px;
}

.mt_60 {
  margin-top: 60px;
}

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

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

audio {
  width: 100%;
  margin-top: 20px;
}

#friend_link {
  margin-top: -200px;
  padding-top: 200px;
}

.f_16 {
  font-size: 16px;
}
.f_16 span {
  color: #f33030;
  font-size: 20px;
}

.f_20 {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .f_20 {
    font-size: 14px;
  }
}

.f_30 {
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  .f_30 {
    font-size: 20px;
  }
}

.f_14 {
  font-size: 14px;
}

.p_15 {
  padding-right: 15px;
}

.pt_15 {
  padding-top: 10px;
}

.buy_img a {
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .buy_img a {
    margin-right: 10px;
    width: 45%;
    margin-top: 10px;
  }
}
.buy_img a:hover {
  opacity: 0.6;
}
.buy_img a .link_y {
  width: 100%;
  max-width: 120px;
}
@media screen and (max-width: 768px) {
  .buy_img a .link_y {
    max-width: 150px;
  }
}
.buy_img a .link_y-s {
  width: 100%;
  max-width: 100px;
}
@media screen and (max-width: 768px) {
  .buy_img a .link_y-s {
    max-width: 150px;
  }
}
.buy_img a .link_w {
  width: 100%;
  max-width: 200px;
}
.buy_img a .link_w-s {
  width: 100%;
  max-width: 300px;
}

.buy_flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.fv_img {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .fv_img {
    margin-top: 4.5rem;
  }
}
@media screen and (min-width: 1400px) {
  .fv_img {
    margin-top: 0;
  }
}
.fv_img img {
  width: 100%;
}

.fc_title {
  color: #f8f0e2;
  font-size: 2.25rem;
  font-weight: bold;
  padding-bottom: 1rem;
  text-align: center;
}

.fc_subtitle {
  font-size: 1rem;
  font-weight: bold;
}

.fc_text {
  font-size: 0.8rem;
}

.fv_button a {
  background-color: #90CFF2;
  border: 2px solid #90CFF2;
  font-weight: bold;
  color: #fff;
  display: block;
  text-decoration: none;
  padding: 0.8rem 0;
  text-align: center;
  border-radius: 10px;
  position: relative;
  /* 矢印の位置を基点とさせる */
}
.fv_button a:hover {
  background-color: #fff;
  color: #90CFF2;
}
.fv_button a:hover::after {
  border-top: solid 2px #90CFF2;
  border-right: solid 2px #90CFF2;
}
.fv_button a::after {
  /* 擬似要素で矢印アイコンをつくる */
  content: "";
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  display: inline-block;
  width: 10px;
  height: 10px;
  /* 矢印アイコンの位置を設定 */
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
  /* 矢印を回転させる */
}
@media screen and (max-width: 576px) {
  .fv_button a::after {
    right: 4px;
  }
}

.fc_features {
  padding: 5rem 0 2.5rem;
}
.fc_features .fc_fe_content {
  display: flex;
}
@media screen and (max-width: 768px) {
  .fc_features .fc_fe_content {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.fc_features .fc_fe_content .fc_fe_co_box {
  width: 35%;
  padding: 0.9375rem;
}
.fc_features .fc_fe_content .fc_fe_co_box:nth-child(n+2) {
  margin-left: 1rem;
}
@media screen and (max-width: 768px) {
  .fc_features .fc_fe_content .fc_fe_co_box:nth-child(n+2) {
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .fc_features .fc_fe_content .fc_fe_co_box:nth-child(n+3) {
    margin: 1rem 0 0;
  }
}
@media screen and (max-width: 768px) {
  .fc_features .fc_fe_content .fc_fe_co_box {
    width: 40%;
  }
}
@media screen and (max-width: 576px) {
  .fc_features .fc_fe_content .fc_fe_co_box {
    width: 37%;
  }
}
.fc_features .fc_fe_content .fc_fe_co_box .fc_fe_co_img {
  text-align: center;
}
.fc_features .fc_fe_content .fc_fe_co_box .fc_fe_co_img img {
  width: 100%;
  max-width: 200px;
}
.fc_features .fc_fe_content .fc_fe_co_box .fc_fe_co_text {
  padding-top: 0.75rem;
}

.fc_explan {
  position: relative;
  background: rgb(255, 255, 255);
}
.fc_explan::before {
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
  content: "";
  position: absolute;
  height: 2.5rem;
  width: 100%;
  background-color: rgb(255, 255, 255);
  left: 0;
  bottom: -2.5rem;
}

.w_blake {
  word-break: keep-all;
}

.fc_event {
  background-color: rgba(207, 235, 249, 0.7);
  padding: 5rem 0;
}
.fc_event .fc_title {
  color: #a47333;
  font-size: 2.25rem;
  font-weight: bold;
  padding-bottom: 1rem;
  text-align: center;
  -webkit-text-stroke: 1px #f8f0e2;
  text-stroke: 1px #f8f0e2;
}
.fc_event .fc_ev_text_box .fc_ev_text {
  padding-bottom: 3rem;
}
.fc_event .fc_ev_st_imgtext {
  padding: 1.25rem 0 1rem;
  display: flex;
}
@media screen and (max-width: 768px) {
  .fc_event .fc_ev_st_imgtext {
    display: block;
  }
}
.fc_event .fc_ev_st_imgtext div {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .fc_event .fc_ev_st_imgtext div {
    width: 100%;
  }
}
.fc_event .fc_ev_st_imgtext .fc_text {
  min-height: 14rem;
}
@media screen and (max-width: 768px) {
  .fc_event .fc_ev_st_imgtext .fc_text {
    min-height: 0;
  }
}
.fc_event .fc_ev_st_img {
  margin-right: 0.5rem;
}
.fc_event .fc_ev_st_img img {
  width: 100%;
  max-width: 220px;
}
.fc_event .fc_event_box {
  display: flex;
  justify-content: space-between;
}
.fc_event .fc_event_box .fc_ev_stage {
  width: 43%;
  background-color: #fff;
  padding: 1rem;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .fc_event .fc_event_box .fc_ev_stage {
    width: 40%;
  }
}
.fc_event .fc_event_box .fc_ev_stage h5,
.fc_event .fc_event_box .fc_ev_stage p {
  text-align: center;
}
.fc_event .fc_event_box .fc_ev_stage h5 {
  color: #90CFF2;
}
.fc_event .fc_event_box .fc_ev_stage p {
  padding-top: 0.5rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .fc_event .fc_event_box .fc_ev_stage p {
    min-height: 2.6rem;
  }
}

.fc_infomation {
  margin-top: 5rem;
}
.fc_infomation .fc_in_tiele {
  text-align: center;
  color: #fff;
  padding-bottom: 0.5rem;
  -webkit-text-stroke: 0.7px #f8f0e2;
  text-stroke: 0.7px #f8f0e2;
}

.fc_imgbox ul {
  display: flex;
}
.fc_imgbox ul li img {
  width: 100%;
  vertical-align: top;
}

.scrollable-table img {
  width: 100%;
}

.svg_40 {
  width: 20px;
}

.fc_ranktitle {
  margin: 60px 0 20px !important;
}
@media screen and (max-width: 768px) {
  .fc_ranktitle {
    margin-top: 3rem !important;
  }
}

.first_rank:first-child {
  margin: 5rem 0 2rem;
}
@media screen and (max-width: 768px) {
  .first_rank:first-child {
    margin: 2.5rem 0 2rem;
  }
}
.first_rank:not(:first-child) {
  margin-bottom: 2rem;
}
.first_rank .first_rank_title {
  display: flex;
  justify-content: space-between;
  padding: 1em 2em;
  border-left: 10px solid #f8f0e2;
  background-color: #f2f2f2;
  font-weight: 600;
  align-items: center;
  cursor: pointer;
}
.first_rank .first_rank_title::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 3px solid rgba(51, 51, 51, 0.7019607843);
  border-right: 3px solid rgba(51, 51, 51, 0.7019607843);
  content: "";
  transition: transform 0.3s;
}
.first_rank[open] summary::after {
  transform: rotate(225deg);
}
.first_rank .region_title {
  margin-bottom: 100px;
}
.first_rank .region_title .repo_sta_table:first-of-type .repo_title {
  margin-top: 0;
}

.rank_link {
  font-weight: bold;
  font-size: 20px;
  animation: blink 1.5s ease-in-out infinite alternate;
}

@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.rank_toprink {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.4rem;
  font-weight: bold;
  text-decoration: none;
}

.back_fv {
  background-image: url(././img/back.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
}

.fv_title img {
  width: 100%;
  max-width: 700px;
  margin-top: 200px;
  margin-bottom: 100px;
  margin: 250px auto;
  display: block;
}

.ib_box {
  color: #a47333;
  font-weight: bold;
  margin-top: 50px;
}
.ib_box .t_ib-btn {
  margin: 10px 0 50px;
}
.ib_box .t_ib-btn a {
  display: block;
  padding: 10px;
  background-color: #f8f0e2;
  border: 2px solid #f8f0e2;
  color: #a47333;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  width: 100%;
  max-width: 200px;
  text-align: center;
  margin: 0 auto;
}
.ib_box .t_ib-btn a:hover {
  color: #f8f0e2;
  background-color: #a47333;
  border: 2px solid #a47333;
}
.ib_box .ib_box_img {
  text-align: center;
}
.ib_box .ib_box_img img {
  width: calc(100% - 48px);
  height: auto;
}

.event {
  background-color: #F8F0E2;
  color: #A47333;
}
.event .eventsection {
  max-width: 1000px;
  width: 96%;
  margin: 0 auto;
  padding-top: 110px;
}
.event .eventsection .eve_title {
  text-align: center;
  margin-bottom: 2.5rem;
  margin-top: 3rem;
}
@media screen and (max-width: 576px) {
  .event .eventsection .eve_title {
    margin-top: 0;
  }
}
.event .eventsection .eve_title h1 {
  font-size: 4rem;
}
@media screen and (max-width: 576px) {
  .event .eventsection .eve_title h1 {
    font-size: 2rem;
  }
}
.event .eventsection .eve_threebox {
  display: flex;
  justify-content: space-around;
  margin-bottom: 6.5rem;
}
@media screen and (max-width: 576px) {
  .event .eventsection .eve_threebox {
    display: block;
  }
}
.event .eventsection .eve_threebox .eve_tb_cont {
  width: 25%;
  text-align: center;
}
@media screen and (max-width: 576px) {
  .event .eventsection .eve_threebox .eve_tb_cont {
    width: 90%;
    margin: 0 auto;
  }
}
.event .eventsection .eve_threebox .eve_tb_cont:nth-child(2) {
  margin: 0 20px;
}
@media screen and (max-width: 576px) {
  .event .eventsection .eve_threebox .eve_tb_cont:nth-child(2) {
    margin: 0 auto;
  }
}
.event .eventsection .eve_threebox .eve_tb_cont:hover img {
  opacity: 1;
  border-color: #DE761B;
}
.event .eventsection .eve_threebox .eve_tb_cont img {
  width: 100%;
  border-radius: 50%;
  opacity: 0.6;
  border: 10px solid transparent;
  transition: border-color 0.3s ease;
}
@media screen and (max-width: 576px) {
  .event .eventsection .eve_threebox .eve_tb_cont img {
    width: 75%;
  }
}
.event .eventsection .eve_threebox .eve_tb_cont p {
  font-weight: bold;
  padding-top: 10px;
}
@media screen and (max-width: 576px) {
  .event .eventsection .eve_threebox .eve_tb_cont p {
    padding-top: 0px;
    margin-bottom: 20px;
    font-size: 1.6rem;
  }
}
.event .eventsection .eve_threecontents .eve_tc_explanation {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5rem;
}
@media screen and (max-width: 576px) {
  .event .eventsection .eve_threecontents .eve_tc_explanation {
    display: block;
  }
}
.event .eventsection .eve_threecontents .eve_tc_explanation:nth-child(2) {
  flex-direction: row-reverse;
}
.event .eventsection .eve_threecontents .eve_tc_explanation .eve_tc_extext {
  width: 45%;
}
.event .eventsection .eve_threecontents .eve_tc_explanation .eve_tc_extext .c_cha a {
  color: #A47333;
}
.event .eventsection .eve_threecontents .eve_tc_explanation .eve_tc_extext .c_cha a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 576px) {
  .event .eventsection .eve_threecontents .eve_tc_explanation .eve_tc_extext {
    width: 90%;
    margin: 0 auto 20px;
  }
}
@media screen and (max-width: 576px) {
  .event .eventsection .eve_threecontents .eve_tc_explanation .eve_tc_extext h3 {
    font-size: 1.6rem;
  }
}
.event .eventsection .eve_threecontents .eve_tc_explanation .eve_tc_eximg {
  width: 45%;
}
@media screen and (max-width: 576px) {
  .event .eventsection .eve_threecontents .eve_tc_explanation .eve_tc_eximg {
    width: 90%;
    margin: auto;
  }
}
.event .eventsection .eve_threecontents .eve_tc_explanation .eve_tc_eximg .img_wmain {
  max-width: 100%;
  display: block;
  border: 15px solid #fff;
  border-radius: 20px;
  box-sizing: border-box;
}
.event .eve_tc_exbtn {
  margin-top: 30px;
}
.event .eve_tc_exbtn a {
  display: block;
  padding: 10px;
  background-color: #DE761A;
  border: 2px solid #DE761A;
  color: #ffffff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  width: 100%;
  max-width: 300px;
  text-align: center;
}
.event .eve_tc_exbtn a:hover {
  color: #DE761A;
  background-color: #ffffff;
  border: 2px solid #DE761A;
}

.image-wrapper {
  position: relative;
  display: inline-block;
  border-radius: 30px;
}
.image-wrapper .image-wrapper img:first-child {
  display: block;
  width: 100%;
  border-radius: 30px;
}
.image-wrapper .icon {
  position: absolute;
  width: 60px;
  transition: transform 0.3s ease;
}
.image-wrapper .icon-top-left {
  top: -10px;
  left: -10px;
}
.image-wrapper .icon-bottom-right {
  bottom: -10px;
  right: -10px;
}

@keyframes sway {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(8deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes sway_kick {
  0% {
    transform: rotate(8deg);
  }
  50% {
    transform: rotate(32deg);
  }
  100% {
    transform: rotate(8deg);
  }
}
@keyframes rotate360 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.icon_maru {
  animation: sway 2.5s ease-in-out infinite;
  transform-origin: bottom center;
}

.icon_kick {
  animation: sway_kick 2.5s ease-in-out infinite;
  transform-origin: bottom center;
}

.spin {
  animation: rotate360 4s linear infinite;
  transform-origin: center center;
}

#section1,
#section2,
#section3 {
  scroll-margin-top: 8rem;
}/*# sourceMappingURL=style.css.map */