@charset "UTF-8";
html {
  font-size: 62.5%;
}

body {
  background: #fff url(../img/bg.jpg) top center repeat-y;
  background-size: 100% auto;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  font-style: normal;
  -webkit-text-size-adjust: 100%;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: bottom;
  image-rendering: -webkit-optimize-contrast;
  transition: 0.2s;
}

a img {
  overflow: hidden;
}

a img:hover {
  opacity: 0.7;
}

a:link {
  color: #6a3000;
}

a:hover,
a:focus {
  color: #ee7800;
  text-decoration: none;
}

a:active {
  color: #ee7800;
}

a:visited {
  color: #6a3000;
}

a,
button,
input,
select,
textarea {
  outline: 0 solid transparent;
  transition: 0.2s;
}

p,
li,
dt,
dd {
  line-height: 1.8;
}

ol,
ul {
  padding-left: 1.5em;
}

table {
  border-collapse: collapse;
}

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

.c_sp_show_inline {
  display: none;
}
@media screen and (max-width: 767px) {
  .c_sp_show_inline {
    display: inline;
  }
}

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

.c_flex {
  display: flex;
}

.c_inline-block {
  display: inline-block;
}

.c_kakko {
  display: inline-block;
  margin-left: -0.5em;
}

.c_bold {
  font-weight: bold;
}

.c_indent-1em {
  padding-left: 1em;
}

.c_indent-mark {
  padding-left: 1em;
  text-indent: -1em;
}

.c_color-1 {
  color: #ee7800;
}

.c_wrap-1 {
  max-width: 130rem;
  margin: 0 auto;
  padding: clamp(1rem, 1.5873015873vw, 2rem);
}

.c_heading-1 {
  margin: 0 0 clamp(3rem, 3.9682539683vw, 5rem);
  text-align: center;
}
.c_heading-1 .ja {
  font-size: clamp(3rem, 3.3333333333vw, 4.2rem);
  line-height: 1;
}
.c_heading-1 .en {
  display: inline-block;
  margin-bottom: 1rem;
  color: #ee7800;
  font-size: 1.4rem;
  font-weight: 900;
}

.c_heading-2 {
  margin: clamp(3rem, 3.9682539683vw, 5rem) 0 clamp(2rem, 2.380952381vw, 3rem);
  padding: 0.5rem 2rem;
  border-radius: 10rem;
  background: linear-gradient(180deg, #f29539 0%, #f29539 50%, #ee7800 50%, #ee7800 100%);
  color: #fff;
  font-size: clamp(1.8rem, 1.746031746vw, 2.2rem);
}

.c_heading-3 {
  margin-bottom: 2rem;
  padding: 1rem;
  border: 1px solid #ee7800;
  border-radius: 20rem;
  background: #fff;
  color: #ee7800;
  font-size: clamp(1.8rem, 1.5873015873vw, 2rem);
  line-height: 1;
  text-align: center;
}

.c_list-1 {
  padding-left: 0;
}
.c_list-1 .item {
  position: relative;
  list-style-type: none;
  padding-left: 1em;
}
.c_list-1 .item::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  z-index: 10;
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  margin: 0 1rem 0 0;
  background-color: #ee7800;
  border-radius: 50%;
}

.c_list-nomark {
  padding-left: 0;
}
.c_list-nomark .item {
  list-style-type: none;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  width: 100%;
  padding: clamp(1rem, 1.5873015873vw, 2rem) clamp(1rem, 3.9682539683vw, 5rem);
  border-bottom: 1rem solid #ee7800;
  background: #fff;
}
@media screen and (max-width: 950px) {
  #header {
    padding: 1rem;
  }
}
#header .logo {
  width: clamp(17rem, 19.8412698413vw, 25rem);
}
@media screen and (max-width: 950px) {
  #header .logo {
    width: 17rem;
  }
}
#header .logo .image {
  width: clamp(15rem, 14.2857142857vw, 18rem);
}
@media screen and (max-width: 950px) {
  #header .logo .image {
    width: 15rem;
  }
}
#header .menu-toggle {
  display: none;
  position: relative;
  width: 3.2rem;
  height: 2.4rem;
  margin: 0.8rem 0 0 auto;
  background: none;
  border: 0;
  cursor: pointer;
  z-index: 120;
}
#header .menu-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.3rem;
  background: #ee7800;
  border-radius: 0.2rem;
  transition: 0.3s;
}
#header .menu-toggle span:nth-child(1) {
  top: 0;
}
#header .menu-toggle span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
#header .menu-toggle span:nth-child(3) {
  bottom: 0;
}
#header .menu-toggle.is-open span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
#header .menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
#header .menu-toggle.is-open span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}
@media screen and (max-width: 767px) {
  #header .menu-toggle {
    display: block;
  }
}
#header .navi {
  flex: 1;
  display: flex;
  width: 100%;
  justify-content: space-between;
}
#header .navi-sub {
  display: flex;
  gap: clamp(1rem, 1.5873015873vw, 2rem);
  margin: 0;
  padding-left: 0;
}
@media screen and (max-width: 950px) {
  #header .navi-sub {
    gap: 1rem;
  }
}
#header .navi-sub_item {
  list-style-type: none;
}
#header .navi-sub_link {
  display: block;
  padding: 1rem clamp(1rem, 1.5873015873vw, 2rem);
  border: 1px solid #f29539;
  border-radius: 0.5rem;
  background: #fff;
  color: #ee7800;
  font-size: clamp(1.4rem, 1.2698412698vw, 1.6rem);
  text-decoration: none;
}
@media screen and (max-width: 950px) {
  #header .navi-sub_link {
    padding: 0.7rem;
  }
}
#header .navi-sub_link:hover {
  background: #f29539;
  color: #fff;
}
#header .navi-main {
  display: flex;
  gap: clamp(1rem, 1.5873015873vw, 2rem);
  margin: 0;
  padding-left: 0;
}
@media screen and (max-width: 950px) {
  #header .navi-main {
    gap: 1rem;
  }
}
#header .navi-main_item {
  list-style-type: none;
}
#header .navi-main_link {
  display: block;
  padding: 1rem clamp(1rem, 1.5873015873vw, 2rem);
  border: 1px solid #f29539;
  border-radius: 0.5rem;
  background: #f29539;
  color: #fff;
  font-size: clamp(1.4rem, 1.2698412698vw, 1.6rem);
  font-weight: 600;
  text-decoration: none;
}
@media screen and (max-width: 950px) {
  #header .navi-main_link {
    padding: 0.7rem;
  }
}
#header .navi-main_link:hover {
  background: #fff;
  color: #f29539;
}
@media screen and (max-width: 767px) {
  #header .navi {
    position: fixed;
    top: -100vh;
    right: 0;
    width: 100%;
    height: 100vh;
    display: block;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    overflow-y: auto;
    transition: top 0.4s ease;
    pointer-events: none;
  }
  #header .navi.is-open {
    top: 0;
    margin-top: 70px;
    pointer-events: auto;
  }
  #header .navi .navi-sub,
#header .navi .navi-main {
    flex-wrap: wrap;
    width: 100%;
  }
  #header .navi .navi-sub {
    margin-bottom: 1rem;
  }
  #header .navi .navi-sub_item,
#header .navi .navi-main_item {
    width: 100%;
  }
  #header .navi .navi-sub_link,
#header .navi .navi-main_link {
    text-align: center;
  }
}

body.no-scroll {
  height: 100vh;
  overflow: hidden;
}

#main {
  padding-top: clamp(7rem, 7.9365079365vw, 10rem);
}

.home #main .illust {
  position: relative;
}
.home #main .illust_image-1 {
  position: absolute;
  top: -100px;
  right: -50px;
  z-index: 10;
}
@media screen and (max-width: 1460px) {
  .home #main .illust_image-1 {
    right: 0;
  }
}
@media screen and (max-width: 950px) {
  .home #main .illust_image-1 {
    top: -10px;
    width: 18rem;
  }
}
@media screen and (max-width: 767px) {
  .home #main .illust_image-1 {
    position: static;
    margin: 0 auto;
  }
}
.home #main .illust_image-2 {
  position: absolute;
  top: 0px;
  right: -80px;
  z-index: 10;
}
@media screen and (max-width: 1460px) {
  .home #main .illust_image-2 {
    right: 0;
  }
}
@media screen and (max-width: 950px) {
  .home #main .illust_image-2 {
    width: 20rem;
  }
}
@media screen and (max-width: 767px) {
  .home #main .illust_image-2 {
    position: static;
    margin: 0 auto;
  }
}
.home #main .illust_image-3 {
  position: absolute;
  top: -260px;
  left: -130px;
  z-index: 10;
}
@media screen and (max-width: 1460px) {
  .home #main .illust_image-3 {
    left: 0;
  }
}
@media screen and (max-width: 950px) {
  .home #main .illust_image-3 {
    top: -200px;
    width: 20rem;
  }
}
@media screen and (max-width: 767px) {
  .home #main .illust_image-3 {
    position: static;
    margin: 0 auto;
  }
}
.home #main .illust_image-4 {
  position: absolute;
  top: -110px;
  right: 50px;
  z-index: 10;
}
@media screen and (max-width: 950px) {
  .home #main .illust_image-4 {
    width: 10rem;
    top: -80px;
  }
}
@media screen and (max-width: 767px) {
  .home #main .illust_image-4 {
    position: static;
    margin: 0 auto;
  }
}
.home #main .illust_image-5 {
  position: absolute;
  top: 0px;
  right: -100px;
  z-index: 10;
}
@media screen and (max-width: 1460px) {
  .home #main .illust_image-5 {
    right: 0;
  }
}
@media screen and (max-width: 950px) {
  .home #main .illust_image-5 {
    width: 20rem;
    top: -70px;
  }
}
@media screen and (max-width: 767px) {
  .home #main .illust_image-5 {
    position: static;
    margin: 0 auto;
  }
}
.home #main .mainvisual {
  padding: clamp(1rem, 2.380952381vw, 3rem) clamp(1rem, 1.5873015873vw, 2rem);
  background: #f5ede7;
}
.home #main .mainvisual .heading {
  max-width: 130rem;
  margin: 0 auto;
}
.home #main .lead {
  padding: clamp(2rem, 7.9365079365vw, 10rem) 0;
  background: rgba(255, 255, 255, 0.8);
}
.home #main .lead .heading {
  margin-bottom: clamp(3rem, 3.9682539683vw, 5rem);
  color: #4c4949;
  font-size: clamp(3rem, 4.7619047619vw, 6rem);
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .home #main .lead .heading {
    line-height: 1.2;
  }
}
.home #main .lead .heading .sub {
  display: inline-block;
  border: 1px solid #ee7800;
  margin-top: 1rem;
  padding: clamp(0.5rem, 0.7936507937vw, 1rem) clamp(1rem, 1.5873015873vw, 2rem);
  border-radius: 0.5rem;
  color: #ee7800;
  font-size: clamp(1.6rem, 1.5873015873vw, 2rem);
}
.home #main .lead .text_group {
  font-size: clamp(1.6rem, 1.5873015873vw, 2rem);
  font-weight: 500;
}
.home #main .notice {
  padding: clamp(2rem, 7.9365079365vw, 10rem) 0;
}
.home #main .notice .list {
  padding: clamp(1rem, 2.380952381vw, 3rem) clamp(1rem, 3.9682539683vw, 5rem);
  border: 1px solid #f29539;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.8);
}
.home #main .notice .item {
  list-style-type: none;
  display: flex;
  align-items: center;
  width: 100%;
}
.home #main .notice .item.line {
  margin-bottom: clamp(1rem, 1.5873015873vw, 2rem);
  padding-bottom: clamp(1rem, 1.5873015873vw, 2rem);
  border-bottom: 1px dotted #f29539;
}
@media screen and (max-width: 767px) {
  .home #main .notice .item {
    flex-wrap: wrap;
  }
}
.home #main .notice .item .date {
  width: 15rem;
  color: #333;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .home #main .notice .item .date {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.home #main .notice .item .text {
  flex: 1;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .home #main .notice .item .text {
    width: 100%;
  }
}
.home #main .overview {
  padding: clamp(2rem, 7.9365079365vw, 10rem) 0;
  background: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 767px) {
  .home #main .overview-1 .wrap-1 {
    flex-wrap: wrap;
  }
}
.home #main .overview-1 .text-unit {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .home #main .overview-1 .text-unit {
    width: 100%;
  }
}
.home #main .overview-1 .text-unit .heading {
  margin-bottom: clamp(1.5rem, 1.5873015873vw, 2rem);
  color: #ee7800;
  font-size: clamp(2.2rem, 2.6984126984vw, 3.4rem);
  font-weight: 500;
}
.home #main .overview-1 .text-unit .heading .sub {
  font-size: clamp(1.8rem, 1.5873015873vw, 2rem);
}
.home #main .overview-1 .image-unit {
  width: clamp(20rem, 41.2698412698vw, 52rem);
  text-align: right;
}
@media screen and (max-width: 767px) {
  .home #main .overview-1 .image-unit {
    width: 100%;
    margin-top: 2rem;
    text-align: center;
  }
}
.home #main .overview-1 .image-unit .image {
  display: inline;
}
.home #main .overview-5 .unit {
  margin-bottom: 0.5rem;
  align-items: center;
}
.home #main .overview-5 .unit .heading {
  position: relative;
  width: 9em;
  margin: 0;
  padding-left: 1em;
  font-size: clamp(1.8rem, 1.5873015873vw, 2rem);
}
.home #main .overview-5 .unit .heading::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  z-index: 10;
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  margin: 0 1rem 0 0;
  background-color: #ee7800;
}
.home #main .overview-5 .unit .text {
  line-height: 1.5;
}
.home #main .overview-6 > .text {
  position: relative;
  margin-bottom: clamp(2rem, 2.380952381vw, 3rem);
  padding-left: 1em;
}
.home #main .overview-6 > .text::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  z-index: 10;
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  margin: 0 1rem 0 0;
  background-color: #ee7800;
}
.home #main .overview-6 .unit {
  width: 100%;
  margin-bottom: clamp(1rem, 1.5873015873vw, 2rem);
  padding: clamp(1rem, 1.5873015873vw, 2rem);
  border: 1px solid #f29539;
  border-radius: 0.5rem;
}
.home #main .overview-6 .unit .heading {
  position: relative;
}
.home #main .overview-6 .unit .heading .number {
  position: absolute;
  top: clamp(0.4rem, 0.3968253968vw, 0.5rem);
  left: 0.5rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 3rem;
  background: #ee7800;
  color: #fff;
  font-size: clamp(1.6rem, 1.5873015873vw, 2rem);
}
.home #main .overview-6 .unit .text {
  text-align: center;
}
.home #main .overview-6 .unit .text .large {
  font-size: clamp(2rem, 1.9047619048vw, 2.4rem);
  font-weight: 600;
}
.home #main .overview-6 .list {
  margin-top: 2rem;
  padding-left: 0;
}
.home #main .overview-6 .list .item {
  list-style-type: none;
  font-size: 1.4rem;
}
.home #main .judges {
  padding: clamp(2rem, 7.9365079365vw, 10rem) 0;
}
.home #main .judges .unit {
  position: relative;
  margin-bottom: 5rem;
  padding: clamp(1rem, 3.9682539683vw, 5rem);
  border: 1px solid #f29539;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.8);
}
.home #main .judges .text-unit {
  flex: 1;
}
.home #main .judges .text-unit .heading-1 {
  position: absolute;
  top: -2rem;
  right: -1rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(8rem, 8.7301587302vw, 11rem);
  height: clamp(8rem, 8.7301587302vw, 11rem);
  border-radius: 11rem;
  background: #ee7800;
  color: #fff;
  font-size: clamp(1.6rem, 1.4285714286vw, 1.8rem);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .home #main .judges .text-unit .heading-1 {
    top: -4rem;
  }
}
.home #main .judges .heading-2 {
  margin-bottom: 3rem;
  padding-left: 2rem;
  border-left: 0.5rem solid #ee7800;
}
.home #main .judges .heading-2 .main {
  font-size: clamp(2.2rem, 2.6984126984vw, 3.4rem);
  font-weight: 600;
}
.home #main .judges .heading-2 .sub {
  font-size: clamp(1.6rem, 1.5873015873vw, 2rem);
}
.home #main .judges .sp-image-unit {
  display: none;
}
@media screen and (max-width: 767px) {
  .home #main .judges .sp-image-unit {
    display: block;
    width: 20rem;
    margin: 0 auto;
  }
}
.home #main .judges .heading-3 {
  margin-bottom: 2rem;
  border-bottom: 1px dotted #f29539;
  font-size: 1.8rem;
  font-weight: 500;
}
.home #main .judges .list {
  padding-left: 0;
}
.home #main .judges .list .item {
  display: flex;
  list-style-type: none;
}
.home #main .judges .list .item .year {
  width: 12rem;
}
.home #main .judges .list .item .text {
  flex: 1;
}
.home #main .judges .image-unit {
  width: clamp(20rem, 23.0158730159vw, 29rem);
  text-align: right;
}
@media screen and (max-width: 767px) {
  .home #main .judges .image-unit {
    display: none;
  }
}
.home #main .judges .image-unit .image {
  display: inline;
  width: clamp(15rem, 19.8412698413vw, 25rem);
  border-radius: 0.5rem;
}
.home #main .requirement {
  padding: clamp(2rem, 7.9365079365vw, 10rem) 0;
  background: rgba(255, 255, 255, 0.8);
}
.home #main .requirement-2 .heading {
  position: relative;
  margin: 2rem 0 1rem;
  padding-left: 1em;
}
.home #main .requirement-2 .heading::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  z-index: 10;
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  margin: 0 1rem 0 0;
  background-color: #ee7800;
  border-radius: 50%;
}
.home #main .requirement-2 .text-group .small {
  font-size: 1.4rem;
}
.home #main .requirement-2 .attention {
  margin-top: 3rem;
  padding: 2rem;
  border-radius: 0.5rem;
  background: #fdebd9;
}
.home #main .requirement-2 .attention .heading {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 1em;
}
.home #main .requirement-2 .attention .heading::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  z-index: 10;
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  margin: 0 1rem 0 0;
  background-color: #ee7800;
  transform: rotate(45deg);
}
.home #main .requirement-3 .item .small {
  font-size: 1.4rem;
}
.home #main .requirement-5 .unit {
  align-items: center;
  width: 100%;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px dotted #f29539;
}
.home #main .requirement-5 .unit:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.home #main .requirement-5 .number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(3rem, 3.1746031746vw, 4rem);
  height: clamp(3rem, 3.1746031746vw, 4rem);
  border-radius: 3rem;
  background: #ee7800;
  color: #fff;
  font-size: clamp(1.8rem, 1.5873015873vw, 2rem);
}
.home #main .requirement-5 .image-unit {
  width: clamp(10rem, 11.9047619048vw, 15rem);
}
.home #main .requirement-5 .image-unit .image {
  width: 8rem;
  height: 8rem;
  margin: 0 auto;
}
.home #main .requirement-5 .text-unit {
  flex: 1;
}
.home #main .requirement-5 .text-unit .heading {
  color: #ee7800;
  font-size: clamp(1.8rem, 1.5873015873vw, 2rem);
}
.home #main .contact {
  padding: clamp(2rem, 7.9365079365vw, 10rem) 0;
}
.home #main .contact .wrap-1 {
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .home #main .contact .wrap-1 {
    flex-wrap: wrap;
  }
}
.home #main .contact .unit {
  width: 50%;
  padding: 3rem;
  border: 1px solid #f29539;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.3);
}
@media screen and (max-width: 767px) {
  .home #main .contact .unit {
    width: 100%;
  }
}
.home #main .contact-1 .image {
  width: 20rem;
  margin: 3rem auto;
}
.home #main .contact-1 .btn .link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: clamp(5rem, 11.9047619048vw, 15rem);
  border: 1px solid #ee7800;
  border-radius: 1rem;
  text-decoration: none;
  background: #ee7800;
  color: #fff;
  font-size: clamp(2rem, 1.9047619048vw, 2.4rem);
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .home #main .contact-1 .btn .link {
    height: 5rem;
  }
}
.home #main .contact-1 .btn .link:hover {
  background: #f29539;
}
.home #main .contact-1 .btn .link.gray {
  background: #999;
  border: 1px solid #999;
}
.home #main .contact-2 .heading {
  margin: 3rem 0 1rem;
  font-size: 1.8rem;
  font-weight: 800;
}
.home #main .contact-2 .list {
  margin-left: 1rem;
}
.home #main .info {
  padding: 0 0 10rem;
}

body.entry {
  background: none;
}

.entry #main {
  margin-bottom: 10rem;
  /* ログイン前 */
}
.entry #main .mainvisual {
  padding: clamp(1rem, 2.380952381vw, 3rem) clamp(1rem, 1.5873015873vw, 2rem);
  background: #f5ede7;
}
.entry #main .mainvisual .heading {
  max-width: 130rem;
  margin: 0 auto;
}
.entry #main .text_group {
  margin-bottom: 1em;
  font-size: 1.8rem;
}
.entry #main .text_group .text_center {
  text-align: center;
}
.entry #main .wpmem_msg {
  margin-bottom: 1.5rem;
  width: 100%;
  padding: 1rem;
  border: 2px solid #f00;
  border-radius: 0.3rem;
  background: #fff;
  color: #f00;
  font-weight: bold;
  text-align: center;
}
.entry #main #wpmem_reg,
.entry #main #wpmem_login {
  width: 100% !important;
}
.entry #main #wpmem_reg fieldset,
.entry #main #wpmem_login fieldset {
  margin: 0;
  border: none;
}
.entry #main #wpmem_reg fieldset > legend,
.entry #main #wpmem_login fieldset > legend {
  display: none;
}
.entry #main #wpmem_reg .row_wrap,
.entry #main #wpmem_login .row_wrap {
  display: flex;
  width: 100%;
  border-bottom: 1px solid #6a3000;
}
@media screen and (max-width: 767px) {
  .entry #main #wpmem_reg .row_wrap,
.entry #main #wpmem_login .row_wrap {
    flex-direction: column;
  }
}
.entry #main #wpmem_reg fieldset > div:first-of-type,
.entry #main #wpmem_login fieldset > div:first-of-type {
  border-top: 1px solid #6a3000;
}
.entry #main #wpmem_reg .row_wrap > label,
.entry #main #wpmem_login .row_wrap > label {
  display: flex;
  align-items: center;
  width: 35%;
  padding: 2rem;
  background: #ee7800;
  color: #fff;
  font-weight: bold;
  line-height: 1.4;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .entry #main #wpmem_reg .row_wrap > label,
.entry #main #wpmem_login .row_wrap > label {
    width: 100%;
    padding: 1rem;
  }
}
.entry #main #wpmem_reg .div_text,
.entry #main #wpmem_login .div_text {
  width: 65%;
  margin: 0;
  padding: 2rem;
  vertical-align: middle;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .entry #main #wpmem_reg .div_text,
.entry #main #wpmem_login .div_text {
    width: 100%;
    padding: 1.5rem 1rem 3rem;
  }
}
.entry #main #wpmem_reg .div_text input,
.entry #main #wpmem_login .div_text input {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
}
.entry #main #wpmem_reg .div_text .notice {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 1.4rem;
}
.entry #main #wpmem_reg .button_div,
.entry #main #wpmem_login .button_div {
  margin-top: 5rem;
  padding: 0;
  text-align: center;
}
.entry #main #wpmem_reg .button_div .buttons,
.entry #main #wpmem_login .button_div .buttons {
  padding: 2.5rem 10rem;
  border: 1px solid #ee7800;
  border-radius: 0.5rem;
  background: #ee7800;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}
.entry #main #wpmem_reg .button_div .buttons:hover,
.entry #main #wpmem_login .button_div .buttons:hover {
  background: #fff;
  color: #ee7800;
}
.entry #main #wpmem_login .button_div #rememberme,
.entry #main #wpmem_login .button_div label,
.entry #main #wpmem_login .link-text {
  display: none;
}
.entry #main #wpmem_login_link_regist {
  margin: 5rem 0 0;
  text-align: center;
}
.entry #main #wpmem_login_link_contestsite {
  margin-top: -2.5rem;
  text-align: right;
}
.entry #main #wpmem_login_link_contestsite a {
  display: inline-block;
  padding: 1rem 2rem;
  border: 1px solid #6a3000;
  border-radius: 0.5rem;
  background: #6a3000;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  text-decoration: none;
}
.entry #main #wpmem_login_link_contestsite a:hover {
  background: #fff;
  color: #6a3000;
}

#footer {
  padding: 3rem 1.5rem;
  background: #443b37;
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
}
#footer .organization {
  margin-bottom: 2rem;
}
#footer .organization .url {
  font-size: 1.2rem;
}
#footer .organization .url .link {
  color: #fff;
}
#footer .pagetop {
  display: none;
}
#footer .pagetop .link {
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 100;
  display: block;
  width: 60px;
  height: 60px;
}
@media screen and (max-width: 767px) {
  #footer .pagetop .link {
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
}
/*# sourceMappingURL=common.css.map */