@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

p, label, legend, span {
  font-family: arial;
}

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

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

html, body {
  height: 100%;
}

body {
  background: #f2f2ed;
}

.wrapper {
  position: relative;
  min-height: 100%;
  margin-bottom: -46px;
}
.wrapper--errors {
  position: relative;
  min-height: 100%;
  margin-bottom: -46px;
}
@media screen and (max-width: 375px) {
  .wrapper--errors {
    margin-bottom: 20px;
  }
}
.wrapper--signup {
  position: relative;
  min-height: 100%;
}
@media screen and (max-width: 1024px) {
  .wrapper--signup {
    min-height: 100%;
    margin-bottom: -46px;
  }
}
@media screen and (max-width: 414px) {
  .wrapper--signup {
    min-height: 100%;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 375px) {
  .wrapper--signup {
    margin-bottom: 25px;
  }
}
.wrapper--signup--errors {
  position: relative;
  min-height: 100%;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .wrapper--signup--errors {
    min-height: 100%;
    margin-bottom: -46px;
  }
}
@media screen and (max-width: 480px) {
  .wrapper--signup--errors {
    margin-bottom: 0;
  }
}
.wrapper--login {
  position: relative;
  min-height: 100%;
  margin-bottom: -46px;
}
@media screen and (max-width: 320px) {
  .wrapper--login {
    margin-bottom: 25px;
  }
}
.wrapper--login--errors {
  position: relative;
  min-height: 100%;
  margin-bottom: -46px;
}
@media screen and (max-width: 480px) {
  .wrapper--login--errors {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 375px) {
  .wrapper--login--errors {
    margin-bottom: 25px;
  }
}
.wrapper--change {
  position: relative;
  min-height: 100%;
  margin-bottom: -40px;
}

.main__base {
  margin-top: 40px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 80%;
}
@media screen and (max-width: 1024px) {
  .main__base {
    width: 95%;
  }
}
.main__dummy {
  width: 100%;
  height: 80px;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 60px;
  background: white;
  z-index: 2;
}
.header__section {
  margin: 0 auto;
  width: 80%;
  height: 100%;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__section__title {
  font-style: oblique;
  font-weight: bold;
  font-size: 30px;
  color: #05215c;
}
.header--dummy {
  width: 100%;
  height: 60px;
}
@media screen and (max-width: 768px) {
  .header .nav__menu {
    display: block;
    position: absolute;
    top: 0;
    right: -100%;
    background: #05215c;
    opacity: 0.9;
    width: 100%;
    height: 100vh;
    padding-top: 50px;
    transition: 0.5s;
    z-index: 4;
  }
  .header .nav__menu.active {
    transition: 0.5s;
    transform: translateX(-100%);
    z-index: 4;
  }
}
.header .menu {
  display: flex;
  align-items: center;
  font-size: 14px;
}
.header .menu__item {
  margin-right: 30px;
}
.header .menu__link {
  text-decoration: none;
  color: #2858a7;
  font-weight: bold;
  padding: 10px;
  border-radius: 10px;
}
.header .menu__link--color {
  color: white;
  background: #d71518;
  padding: 10px;
  border-radius: 10px;
}
.header .menu__link--hover:hover {
  color: white;
  background: #ff9900;
  padding: 10px;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .header .menu {
    display: block;
    font-size: 30px;
  }
}
@media screen and (max-width: 768px) and (max-width: 320px) {
  .header .menu {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .header .menu__item {
    margin-right: 0;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .header .menu__link {
    display: block;
    padding: 15px;
    color: white;
    text-align: center;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 768px) and (max-width: 320px) {
  .header .menu__link {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .header .menu__link--color {
    color: #d71518;
    background: #05215c;
    opacity: 0.9;
  }
}

.menu__trigger {
  display: none;
  transition: all 0.4s;
  box-sizing: border-box;
  position: relative;
  width: 40px;
  height: 32px;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .menu__trigger {
    display: inline-block;
  }
}
.menu__trigger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #05215c;
  border-radius: 4px;
}
.menu__trigger span:nth-of-type(1) {
  top: 0;
}
.menu__trigger span:nth-of-type(2) {
  top: 14px;
}
.menu__trigger span:nth-of-type(3) {
  bottom: 0;
}
.menu__trigger.active span {
  background-color: white;
}
.menu__trigger.active span:nth-of-type(1) {
  transform: translateY(12px) rotate(-45deg);
}
.menu__trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu__trigger.active span:nth-of-type(3) {
  transform: translateY(-15px) rotate(45deg);
}

.footer {
  background: #05215c;
  color: white;
  text-align: center;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 16px;
}
@media screen and (max-width: 480px) {
  .footer {
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 12px;
  }
}

.form {
  width: 50%;
  min-height: 200px;
  background: white;
  border-radius: 5px;
  margin-top: 80px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .form {
    width: 80%;
  }
}
@media screen and (max-width: 320px) {
  .form {
    width: 90%;
  }
}
.form__contact {
  width: 60%;
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .form__contact {
    margin-top: 0;
    width: 80%;
  }
}
@media screen and (max-width: 480px) {
  .form__contact {
    margin-top: 80px;
  }
}
@media screen and (max-width: 320px) {
  .form__contact {
    width: 90%;
  }
}
.form__signup {
  margin-top: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .form__signup {
    margin-top: 80px;
  }
}
@media screen and (max-width: 480px) {
  .form__signup {
    margin-top: 30px;
  }
}
@media screen and (max-width: 414px) {
  .form__signup {
    margin-bottom: 80px;
  }
}
.form__title {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  font-size: 24px;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  color: #05215c;
  text-align: center;
}
@media screen and (max-width: 375px) {
  .form__title {
    font-size: 20px;
  }
}
.form__content {
  width: 100%;
  padding: 20px 25px;
  box-sizing: border-box;
  font-size: 14px;
}
.form__content__descript {
  margin-bottom: 30px;
  line-height: 150%;
}
@media screen and (max-width: 375px) {
  .form__content__descript {
    font-size: 12px;
  }
}
.form__bottom--reset {
  margin-bottom: 0;
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .form__bottom--reset {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 768px) {
  .form__bottom--reset {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 480px) {
  .form__bottom--reset {
    margin-top: 30px;
  }
}
@media screen and (max-width: 414px) {
  .form__bottom--reset {
    margin-bottom: 80px;
  }
}

.textfield__label {
  font-size: 16px;
}
@media screen and (max-width: 375px) {
  .textfield__label {
    font-size: 12px;
  }
}
@media screen and (max-width: 375px) {
  .textfield__label__describe {
    font-size: 12px;
  }
}
.textfield__area {
  width: 80%;
  padding: 10px 0 30px 0;
}
@media screen and (max-width: 375px) {
  .textfield__area {
    width: 90%;
  }
}
.textfield__input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #969696;
  font-size: 16px;
  padding: 4px;
}
@media screen and (max-width: 414px) {
  .textfield__input {
    font-size: 12px;
  }
}
.textfield__comment {
  width: 100%;
  padding: 4px;
  border: 1px solid #969696;
  border-radius: 5px;
  box-sizing: border-box;
  font-size: 16px;
}
@media screen and (max-width: 414px) {
  .textfield__comment {
    font-size: 12px;
  }
}
.textfield__comment__area {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 5px;
}

.passSave__content {
  letter-spacing: 0;
  margin-bottom: 16px;
  color: #5c5c5c;
  font-size: 14px;
}

.btn {
  display: block;
  color: white;
  background: #05215c;
  border: 2px solid #05215c;
  border-radius: 5px;
  width: 100%;
  height: 36px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
}
.btn:hover {
  background: white;
  color: #05215c;
}
.btn__content {
  margin-bottom: 25px;
}
.btn__contact {
  margin-top: 10px;
}

.c-action-btn {
  font-size: 12px;
  padding: 10px;
  border: 1px solid #5c5c5c;
  border-radius: 30px;
  cursor: pointer;
  margin-bottom: 10px;
  margin-right: 25px;
}
@media screen and (max-width: 1024px) {
  .c-action-btn {
    font-size: 16px;
    padding: 10px 20px;
    margin-bottom: 15px;
    margin-right: 25px;
  }
}
@media screen and (max-width: 768px) {
  .c-action-btn {
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  .c-action-btn {
    font-size: 16px;
    padding: 10px 20px;
    margin-bottom: 15px;
    margin-right: 25px;
  }
}
@media screen and (max-width: 414px) {
  .c-action-btn {
    font-size: 14px;
  }
}
@media screen and (max-width: 375px) {
  .c-action-btn {
    font-size: 12px;
    padding: 10px 15px;
  }
}
@media screen and (max-width: 320px) {
  .c-action-btn {
    padding: 10px;
  }
}
@media screen and (max-width: 768px) {
  .c-action-btn--trend {
    margin-right: 15px;
  }
}
@media screen and (max-width: 480px) {
  .c-action-btn--trend {
    margin-right: 25px;
  }
}
@media screen and (max-width: 414px) {
  .c-action-btn--trend {
    margin-right: 15px;
  }
}
.c-action-btn--blue {
  color: white;
  background: #2858a7;
  border: 1px solid #2858a7;
}
.c-action-btn--follow {
  font-size: 12px;
  padding: 10px 10px;
  width: 60px;
  text-align: center;
  margin-right: 10px;
}
@media screen and (max-width: 480px) {
  .c-action-btn--follow {
    font-size: 16px;
    padding: 15px 20px;
    margin-bottom: 0;
    margin-right: 0;
    width: 25%;
  }
}
@media screen and (max-width: 414px) {
  .c-action-btn--follow {
    font-size: 14px;
    padding: 10px;
  }
}
@media screen and (max-width: 375px) {
  .c-action-btn--follow {
    font-size: 10px;
  }
}
.c-action-btn--follow--optionBlue {
  color: white;
  background: #5e8ddb;
  border: 1px solid #5e8ddb;
}
.c-action-btn--follow--optionGreen {
  color: white;
  background: #008a8a;
  border: 1px solid #008a8a;
}

.p-banner {
  position: relative;
  width: 100%;
  background-image: url("../images/top_banner.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 700px;
}
@media screen and (max-width: 375px) {
  .p-banner {
    height: 610px;
  }
}
@media screen and (max-width: 320px) {
  .p-banner {
    height: 510px;
  }
}
.p-banner__img {
  width: 100%;
}
.p-banner__title {
  text-align: center;
  line-height: 150%;
  color: #ff9900;
  font-size: 24px;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-banner__title {
    right: 5%;
    font-size: 20px;
  }
}
@media screen and (max-width: 480px) {
  .p-banner__title {
    font-size: 16px;
  }
}
@media screen and (max-width: 414px) {
  .p-banner__title {
    font-size: 14px;
  }
}
@media screen and (max-width: 375px) {
  .p-banner__title {
    font-size: 12px;
  }
}
@media screen and (max-width: 320px) {
  .p-banner__title {
    font-size: 10px;
  }
}
.p-banner__title--sub {
  padding-top: 260px;
  display: block;
}
@media screen and (max-width: 480px) {
  .p-banner__title--sub {
    padding-top: 280px;
    font-size: 20px;
  }
}
@media screen and (max-width: 375px) {
  .p-banner__title--sub {
    padding-top: 260px;
  }
}
@media screen and (max-width: 320px) {
  .p-banner__title--sub {
    padding-top: 210px;
    font-size: 16px;
  }
}
.p-banner__title--main {
  font-style: oblique;
  font-size: 60px;
  display: block;
}
@media screen and (max-width: 768px) {
  .p-banner__title--main {
    font-size: 55px;
  }
}
@media screen and (max-width: 480px) {
  .p-banner__title--main {
    font-size: 50px;
    padding: 15px;
  }
}
@media screen and (max-width: 414px) {
  .p-banner__title--main {
    font-size: 40px;
  }
}
@media screen and (max-width: 320px) {
  .p-banner__title--main {
    font-size: 36px;
    padding: 10px;
  }
}
.p-banner__panel {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 60%;
}
.p-banner__panel__btn {
  display: block;
  width: 40%;
  text-align: center;
  border-radius: 5px;
  font-size: 24px;
  text-decoration: none;
  padding: 10px 20px;
  color: white;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}

.p-entrance {
  width: 100%;
  height: 300px;
  margin-top: 40px;
}
@media screen and (max-width: 480px) {
  .p-entrance {
    height: 250px;
    margin-top: 100px;
  }
}
.p-entrance__content {
  width: 70%;
  height: 90%;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .p-entrance__content {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .p-entrance__content {
    display: block;
  }
}
.p-entrance__panel {
  width: 40%;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .p-entrance__panel {
    width: 100%;
    margin-bottom: 50px;
  }
}
.p-entrance__panel__title {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 24px;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}
@media screen and (max-width: 375px) {
  .p-entrance__panel__title {
    font-size: 18px;
  }
}
.p-entrance__panel__btn {
  display: block;
  margin: 50px;
  margin-right: auto;
  margin-left: auto;
  width: 40%;
  text-align: center;
  border-radius: 5px;
  font-size: 24px;
  text-decoration: none;
  padding: 10px 20px;
  color: white;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}
@media screen and (max-width: 1024px) {
  .p-entrance__panel__btn {
    padding: 20px 20px;
    font-size: 30px;
  }
}
@media screen and (max-width: 480px) {
  .p-entrance__panel__btn {
    margin-top: 0;
    margin-bottom: 0;
    width: 40%;
    padding: 10px 20px;
    font-size: 24px;
  }
}

.signup__btn {
  background: #50c6a6;
  border: 2px solid #50c6a6;
}
.signup__btn:hover {
  background: white;
  color: #50c6a6;
}

.login__btn {
  background: #4790bb;
  border: 2px solid #4790bb;
}
.login__btn:hover {
  background: white;
  color: #4790bb;
}

.p-about {
  margin-top: 60px;
  margin-bottom: 60px;
  width: 100%;
  min-height: 200px;
}
@media screen and (max-width: 320px) {
  .p-about {
    min-height: 160px;
  }
}
@media screen and (max-width: 480px) {
  .p-about {
    margin-bottom: 0;
  }
}
.p-about__area {
  margin: 20px auto;
  width: 60%;
}
@media screen and (max-width: 1024px) {
  .p-about__area {
    width: 80%;
  }
}
@media screen and (max-width: 480px) {
  .p-about__area {
    margin: 10px auto;
    width: 90%;
  }
}
.p-about__area__title {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  margin-bottom: 20px;
}
@media screen and (max-width: 375px) {
  .p-about__area__title {
    font-size: 36px;
  }
}
@media screen and (max-width: 320px) {
  .p-about__area__title {
    font-size: 32px;
  }
}
.p-about__area__under {
  margin-bottom: 40px;
}
.p-about__area__under__line {
  display: block;
  margin: 0px auto;
  width: 330px;
  border-style: solid;
  border-bottom-width: 3px;
  border-color: #ff9900;
  border-top: 0;
  border-right: 0;
  border-left: 0;
}
@media screen and (max-width: 320px) {
  .p-about__area__under__line {
    width: 100%;
  }
}
.p-about__area__describe {
  width: 100%;
}
.p-about__area__describe__main {
  font-size: 25px;
  text-align: center;
  line-height: 150%;
}
@media screen and (max-width: 480px) {
  .p-about__area__describe__main {
    font-size: 18px;
  }
}
@media screen and (max-width: 414px) {
  .p-about__area__describe__main {
    font-size: 16px;
  }
}
@media screen and (max-width: 375px) {
  .p-about__area__describe__main {
    font-size: 14px;
  }
}
@media screen and (max-width: 320px) {
  .p-about__area__describe__main {
    font-size: 12px;
  }
}

.p-detail {
  width: 100%;
  max-height: 400px;
  margin-bottom: 50px;
}
.p-detail__area {
  width: 60%;
  margin: 20px auto;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .p-detail__area {
    width: 80%;
  }
}
@media screen and (max-width: 480px) {
  .p-detail__area {
    margin: 10px auto;
    width: 90%;
  }
}
.p-detail__panel {
  width: 50%;
}
@media screen and (max-width: 480px) {
  .p-detail__panel {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .p-detail__panel--describe {
    order: 1;
  }
}
.p-detail__panel__img {
  display: block;
  margin: 0 auto;
  width: 80%;
}
@media screen and (max-width: 480px) {
  .p-detail__panel__img {
    width: 40%;
  }
}
.p-detail__panel__title {
  margin-top: 20px;
  margin-bottom: 20px;
  margin-right: auto;
  margin-left: auto;
  width: 90%;
  text-align: center;
  font-size: 24px;
  line-height: 130%;
  font-weight: bold;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}
@media screen and (max-width: 480px) {
  .p-detail__panel__title {
    font-size: 20px;
  }
}
@media screen and (max-width: 414px) {
  .p-detail__panel__title {
    width: 100%;
  }
}
@media screen and (max-width: 375px) {
  .p-detail__panel__title {
    font-size: 18px;
  }
}
@media screen and (max-width: 320px) {
  .p-detail__panel__title {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .p-detail__panel__title--br {
    display: none;
  }
}
.p-detail__panel__describe {
  margin: 0 auto;
  width: 90%;
  line-height: 140%;
}
@media screen and (max-width: 480px) {
  .p-detail__panel__describe__area {
    font-size: 14px;
  }
}
@media screen and (max-width: 375px) {
  .p-detail__panel__describe__area {
    font-size: 12px;
  }
}

.p-contact {
  width: 100%;
}

.mypage {
  width: 50%;
  margin-top: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .mypage {
    width: 80%;
  }
}
.mypage__maintitle {
  width: 100%;
  text-align: center;
  font-size: 25px;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  color: #05215c;
}
.mypage__parts {
  width: 90%;
  margin: 30px auto;
  background: white;
  border-radius: 5px;
}
@media screen and (max-width: 480px) {
  .mypage__parts {
    width: 100%;
  }
}
.mypage__title {
  margin: 0 auto;
  width: 90%;
  padding: 20px 15px;
  font-size: 30px;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  color: #05215c;
}
@media screen and (max-width: 375px) {
  .mypage__title {
    font-size: 24px;
  }
}
.mypage__title__sub {
  text-align: center;
}
.mypage__descropt__line {
  display: none;
}
.mypage__dummy {
  width: 100%;
  height: 50px;
}

.withdraw__descropt {
  margin-bottom: 80px;
}

.btn__mypage__user {
  margin: 0 auto;
}
.btn__mypage__user__withdraw {
  width: 20%;
}

.p-news {
  margin: 30px auto;
  width: 70%;
  background: white;
  border-radius: 3px;
}
@media screen and (max-width: 1024px) {
  .p-news {
    width: 80%;
  }
}
@media screen and (max-width: 375px) {
  .p-news {
    width: 90%;
  }
}
.p-news__title {
  width: 100%;
  text-align: center;
  font-size: 24px;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  font-weight: bold;
  color: #05215c;
  padding: 20px 0;
}
.p-news__content {
  width: 100%;
  min-height: 300px;
}
.p-news__content__article {
  margin: 20px auto;
  width: 80%;
  height: 60px;
  padding: 10px;
  border: 1px solid #969696;
  border-radius: 5px;
}
.p-news__content__article__area {
  width: 100%;
  padding: 3px;
  display: flex;
}
.p-news__content__article__area:last-child {
  padding-top: 5px;
}
.p-news__content__article__area--option {
  display: flex;
  justify-content: space-between;
}
.p-news__content__article__area__mark {
  width: 20px;
  height: 30px;
  background: #d71518;
  margin-right: 10px;
}
.p-news__content__article__area__describe {
  text-decoration: none;
  font-size: 18px;
  line-height: 150%;
  color: #2858a7;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 480px) {
  .p-news__content__article__area__describe {
    font-size: 14px;
  }
}
.p-news__content__article__area__describe::before {
  content: "\25A0    ";
  color: #d71518;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .p-news__content__article__area__describe::before {
    font-size: 14px;
  }
}
.p-news__content__article__area__media {
  width: 50%;
  line-height: 150%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 480px) {
  .p-news__content__article__area__media {
    font-size: 10px;
  }
}
.p-news__content__article__area__upday {
  text-align: right;
  color: #969696;
}
@media screen and (max-width: 480px) {
  .p-news__content__article__area__upday {
    font-size: 12px;
  }
}
@media screen and (max-width: 320px) {
  .p-news__content__article__area__upday {
    font-size: 10px;
  }
}
.p-news__content__dummy {
  width: 100%;
  height: 20px;
}
.p-news__dummy {
  width: 100%;
  height: 50px;
}

.morelink {
  display: block;
  max-width: 30%;
  margin: 20px auto;
  padding: 10px 20px;
  background: #ff9900;
  border: 2px solid white;
  color: white;
  text-align: center;
  border-radius: 5px;
}
.morelink:hover {
  cursor: pointer;
  border: 2px solid #ff9900;
  background: white;
  color: #ff9900;
}

.p-trend {
  display: block;
  width: 60%;
  background: white;
  border-radius: 5px;
}
@media screen and (max-width: 1024px) {
  .p-trend {
    width: 100%;
    margin-bottom: 30px;
  }
}
.p-trend__top {
  padding: 10px 20px;
}
.p-trend__top__area {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.p-trend__top__area__title {
  width: 50%;
  font-size: 20px;
  font-weight: bold;
  color: #05215c;
}
@media screen and (max-width: 414px) {
  .p-trend__top__area__title {
    width: 40%;
  }
}
@media screen and (max-width: 320px) {
  .p-trend__top__area__title {
    font-size: 14px;
    width: 20%;
  }
}
.p-trend__top__area__page {
  width: 50%;
  text-align: right;
  color: #5c5c5c;
  font-size: 14px;
}
@media screen and (max-width: 480px) {
  .p-trend__top__area__page {
    font-size: 8px;
  }
}
@media screen and (max-width: 414px) {
  .p-trend__top__area__page {
    width: 60%;
  }
}
@media screen and (max-width: 375px) {
  .p-trend__top__area__page {
    width: 70%;
  }
}
.p-trend__top__border {
  margin-top: 5px;
  display: block;
  background: #969696;
  width: 100%;
  height: 5px;
}
.p-trend__main {
  padding: 10px 20px;
}

.p-table {
  width: 100%;
}
.p-table__thead {
  border-bottom: 3px solid #969696;
}
@media screen and (max-width: 1024px) {
  .p-table__thead {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  .p-table__thead {
    font-size: 14px;
  }
}
@media screen and (max-width: 414px) {
  .p-table__thead {
    font-size: 12px;
  }
}
@media screen and (max-width: 375px) {
  .p-table__thead {
    font-size: 10px;
  }
}
.p-table__thead__tr__th {
  padding-bottom: 10px;
  color: #5c5c5c;
  width: 20%;
}
.p-table__tbody__tr {
  border-bottom: 1px solid #969696;
}
.p-table__tbody__tr__td {
  padding: 10px 0;
  line-height: 150%;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .p-table__tbody__tr__td {
    padding: 20px 0;
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .p-table__tbody__tr__td {
    padding: 20px 0;
    font-size: 12px;
  }
}
@media screen and (max-width: 320px) {
  .p-table__tbody__tr__td {
    font-size: 10px;
  }
}
.p-table__tbody__tr__td__link {
  display: block;
  text-decoration: none;
  color: black;
}
.p-table__tbody__tr__td__link--gold {
  background: #e6b422;
  width: 100%;
  padding: 5px 0;
  border-radius: 10px;
}
.p-table__tbody__tr__td__link--silver {
  background: silver;
  width: 100%;
  padding: 5px 0;
  border-radius: 10px;
}
.p-table__tbody__tr__td__link--blonze {
  background: #8e4841;
  width: 100%;
  padding: 5px 0;
  border-radius: 10px;
  color: white;
}

.p-note {
  width: 100%;
  padding: 10px;
}
@media screen and (max-width: 414px) {
  .p-note {
    padding: 0;
  }
}
.p-note__describe {
  padding: 5px 0;
  font-size: 14px;
  color: #2858a7;
}
@media screen and (max-width: 414px) {
  .p-note__describe {
    font-size: 14px;
  }
}
@media screen and (max-width: 375px) {
  .p-note__describe {
    font-size: 10px;
  }
}

.p-account {
  display: block;
  width: 60%;
  background: white;
  border-radius: 5px;
}
@media screen and (max-width: 1024px) {
  .p-account {
    width: 100%;
    margin-bottom: 30px;
  }
}
.p-account__top {
  padding: 10px 20px;
}
.p-account__top__area {
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 480px) {
  .p-account__top__area {
    justify-content: space-between;
  }
}
.p-account__top__area__title {
  width: 60%;
  font-size: 20px;
  font-weight: bold;
  color: #05215c;
}
@media screen and (max-width: 320px) {
  .p-account__top__area__title {
    font-size: 14px;
    width: 20%;
  }
}
.p-account__top__area__page {
  width: 30%;
  text-align: right;
}
@media screen and (max-width: 480px) {
  .p-account__top__area__page {
    font-size: 14px;
  }
}
@media screen and (max-width: 414px) {
  .p-account__top__area__page {
    font-size: 12px;
  }
}
@media screen and (max-width: 375px) {
  .p-account__top__area__page {
    font-size: 10px;
  }
}
@media screen and (max-width: 320px) {
  .p-account__top__area__page {
    width: 60%;
  }
}
.p-account__top__border {
  margin-top: 5px;
  display: block;
  background: #969696;
  width: 100%;
  height: 5px;
}
.p-account__main {
  padding: 10px 20px;
  overflow: scroll;
  height: 430px;
}
@media screen and (max-width: 1024px) {
  .p-account__main {
    height: 850px;
  }
}
@media screen and (max-width: 480px) {
  .p-account__main {
    height: 430px;
  }
}
@media screen and (max-width: 320px) {
  .p-account__main {
    padding: 10px;
  }
}
.p-account__page {
  padding: 20px;
  text-align: center;
  display: flex;
  justify-content: space-around;
}
.p-account__page__prev {
  display: block;
  text-decoration: none;
}
.p-account__page__next {
  display: block;
  text-decoration: none;
}

.p-user {
  margin-top: 20px;
  width: 100%;
  border: 1px solid #969696;
  border-radius: 5px;
}
.p-user:first-child {
  margin-top: 0;
}
.p-user__top {
  width: 90%;
  padding: 10px 20px 5px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 414px) {
  .p-user__top {
    padding: 10px 0 5px 0;
    margin: 0 auto;
  }
}
@media screen and (max-width: 320px) {
  .p-user__top {
    width: 95%;
    padding: 10px 0 5px 0;
    margin: 0 auto;
  }
}
.p-user__top__name {
  width: 70%;
  font-size: 24px;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 414px) {
  .p-user__top__name {
    font-size: 18px;
  }
}
.p-user__top__btn {
  text-align: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 5px 15px;
  font-size: 16px;
  color: white;
  background: #ff9900;
  border: 1px solid #ff9900;
}
@media screen and (max-width: 480px) {
  .p-user__top__btn {
    padding: 10px 15px;
    font-size: 14px;
  }
}
@media screen and (max-width: 414px) {
  .p-user__top__btn {
    width: 23%;
  }
}
@media screen and (max-width: 375px) {
  .p-user__top__btn {
    font-size: 12px;
    width: 25%;
  }
}
.p-user__top__btn:hover {
  color: #ff9900;
  background: white;
}
.p-user__top__btn--actUnFollow {
  text-align: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 5px 10px;
  font-size: 14px;
  color: white;
  background: #cc3d3d;
  border: 1px solid #cc3d3d;
}
@media screen and (max-width: 480px) {
  .p-user__top__btn--actUnFollow {
    padding: 10px 15px;
    font-size: 10px;
  }
}
@media screen and (max-width: 414px) {
  .p-user__top__btn--actUnFollow {
    width: 30%;
  }
}
@media screen and (max-width: 375px) {
  .p-user__top__btn--actUnFollow {
    width: 33%;
  }
}
.p-user__top__btn--actUnFollow:hover {
  color: #cc3d3d;
  background: white;
}
.p-user__status {
  width: 90%;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
@media screen and (max-width: 414px) {
  .p-user__status {
    padding: 10px 0;
    margin: 0 auto;
  }
}
@media screen and (max-width: 320px) {
  .p-user__status {
    width: 95%;
    padding: 10px 0;
    margin: 0 auto;
  }
}
@media screen and (max-width: 480px) {
  .p-user__status__screen {
    font-size: 12px;
  }
}
@media screen and (max-width: 414px) {
  .p-user__status__screen {
    font-size: 10px;
  }
}
@media screen and (max-width: 480px) {
  .p-user__status__fcount {
    font-size: 12px;
    line-height: 12px;
  }
}
@media screen and (max-width: 414px) {
  .p-user__status__fcount {
    font-size: 10px;
  }
}
@media screen and (max-width: 480px) {
  .p-user__status__fcount--span {
    display: none;
  }
}
.p-user__status__fcount--br {
  display: none;
}
@media screen and (max-width: 480px) {
  .p-user__status__fcount--br {
    display: block;
  }
}
.p-user__text {
  width: 90%;
  padding: 5px 20px;
  font-size: 12px;
}
@media screen and (max-width: 414px) {
  .p-user__text {
    padding: 5px 0;
    margin: 0 auto;
  }
}
@media screen and (max-width: 320px) {
  .p-user__text {
    width: 85%;
  }
}
.p-user__text__profile__describe {
  padding: 5px 5px 10px 5px;
  color: #969696;
  line-height: 1.6;
}
.p-user__text__border {
  display: block;
  margin-top: 5px;
  margin-bottom: 5px;
  background: #969696;
  width: 100%;
  height: 1px;
}
.p-user__text__tweet__title {
  color: #ff9900;
  font-weight: bold;
  padding: 5px 0;
  font-size: 18px;
}
.p-user__text__tweet__title--actUnFollow {
  color: #cc3d3d;
  font-weight: bold;
  padding: 5px 0;
  font-size: 18px;
}
.p-user__text__tweet__describe {
  padding: 5px;
  color: #969696;
  line-height: 1.6;
}

.p-sidebar {
  display: block;
  width: 30%;
  background: white;
  border-radius: 5px;
}
@media screen and (max-width: 1024px) {
  .p-sidebar {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .p-sidebar {
    max-height: 450px;
  }
}
@media screen and (max-width: 1024px) {
  .p-sidebar__area--account {
    display: flex;
    justify-content: space-around;
  }
}
@media screen and (max-width: 480px) {
  .p-sidebar__area--account {
    display: block;
  }
}
.p-sidebar--search {
  max-height: 360px;
  width: 35%;
}
@media screen and (max-width: 1024px) {
  .p-sidebar--search {
    display: none;
  }
}
.p-sidebar--search--sp {
  width: 100%;
  display: none;
}
@media screen and (max-width: 1024px) {
  .p-sidebar--search--sp {
    display: block;
    order: -1;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 480px) {
  .p-sidebar--search--sp {
    max-height: 500px;
  }
}
@media screen and (max-width: 1024px) {
  .p-sidebar--option {
    order: -2;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 480px) {
  .p-sidebar--option {
    display: none;
    max-height: 560px;
  }
}
.p-sidebar--option--sp {
  display: none;
}
@media screen and (max-width: 480px) {
  .p-sidebar--option--sp {
    display: block;
    max-height: 560px;
  }
}
.p-sidebar--limit {
  display: none;
}
@media screen and (max-width: 480px) {
  .p-sidebar--limit {
    display: block;
    order: -1;
    margin-bottom: 30px;
  }
}
.p-sidebar__top {
  padding: 10px 20px;
}
.p-sidebar__top__title {
  font-size: 20px;
  font-weight: bold;
  color: #05215c;
}
@media screen and (max-width: 320px) {
  .p-sidebar__top__title {
    font-size: 14px;
  }
}
.p-sidebar__top__border {
  margin-top: 5px;
  display: block;
  background: #969696;
  width: 100%;
  height: 5px;
}
.p-sidebar__period {
  color: #5c5c5c;
  padding: 10px 20px;
}
@media screen and (max-width: 1024px) {
  .p-sidebar__period {
    padding: 0 20px;
  }
}
.p-sidebar__period__title {
  font-size: 18px;
  padding: 10px 0;
}
@media screen and (max-width: 1024px) {
  .p-sidebar__period__title {
    font-size: 24px;
    padding: 20px 10px;
  }
}
@media screen and (max-width: 480px) {
  .p-sidebar__period__title {
    font-size: 18px;
    padding: 10px 0;
  }
}
@media screen and (max-width: 480px) {
  .p-sidebar__period__title {
    font-size: 16px;
  }
}
.p-sidebar__period__area {
  display: flex;
  justify-content: flex-start;
}
@media screen and (max-width: 480px) {
  .p-sidebar__period__area {
    justify-content: space-between;
  }
}
.p-sidebar__twitter {
  color: #5c5c5c;
  padding: 10px 20px;
  font-size: 14px;
  display: flex;
  justify-content: space-around;
}
@media screen and (max-width: 1024px) {
  .p-sidebar__twitter {
    margin-top: 10px;
    padding: 10px 0 10px 20px;
  }
}
@media screen and (max-width: 480px) {
  .p-sidebar__twitter {
    margin-top: 0;
    padding: 10px 0;
  }
}
.p-sidebar__twitter__img {
  width: 90%;
}
@media screen and (max-width: 480px) {
  .p-sidebar__twitter__img {
    width: 30%;
  }
}
.p-sidebar__twitter__img__area {
  height: 100px;
  display: block;
}
@media screen and (max-width: 1024px) {
  .p-sidebar__twitter__img__area {
    height: 125px;
  }
}
@media screen and (max-width: 414px) {
  .p-sidebar__twitter__img__area {
    height: 115px;
  }
}
.p-sidebar__twitter__describe {
  padding: 0 10px;
  width: 40%;
}
@media screen and (max-width: 1024px) {
  .p-sidebar__twitter__describe {
    padding: 0 0 0 10px;
    width: 100px;
  }
}
.p-sidebar__twitter__name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-bottom: 3px;
}
@media screen and (max-width: 1024px) {
  .p-sidebar__twitter__name {
    font-size: 18px;
  }
}
.p-sidebar__twitter__screen {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-bottom: 3px;
}
.p-sidebar__twitter__status {
  margin-top: 3px;
}
@media screen and (max-width: 1024px) {
  .p-sidebar__twitter__status {
    margin-top: 10px;
  }
}
.p-sidebar__twitter__status__folow {
  padding: 2px 0;
}
.p-sidebar__twitter__status__folow__describe {
  padding-bottom: 2px;
}
.p-sidebar__twitter__status__folower {
  padding: 2px 0;
}
.p-sidebar__twitter__status__folower__describe {
  padding-bottom: 2px;
}
.p-sidebar__limit {
  color: #5c5c5c;
  padding: 10px 20px;
  margin-top: 10px;
}
@media screen and (max-width: 1024px) {
  .p-sidebar__limit {
    margin-top: 0;
    width: 11%;
  }
}
@media screen and (max-width: 768px) {
  .p-sidebar__limit {
    width: 20%;
    padding: 10px 0;
  }
}
@media screen and (max-width: 480px) {
  .p-sidebar__limit {
    width: 90%;
    padding-top: 0;
  }
}
.p-sidebar__limit__title {
  font-size: 18px;
  padding: 10px 0;
}
@media screen and (max-width: 1024px) {
  .p-sidebar__limit__title {
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .p-sidebar__limit__title {
    text-align: left;
    margin-left: 30px;
  }
}
@media screen and (max-width: 414px) {
  .p-sidebar__limit__title {
    font-size: 16px;
  }
}
.p-sidebar__limit__area {
  display: flex;
  justify-content: space-around;
}
@media screen and (max-width: 1024px) {
  .p-sidebar__limit__area {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .p-sidebar__limit__area {
    display: flex;
  }
}
.p-sidebar__limit__area--f_action {
  text-align: center;
  font-size: 14px;
  width: 45%;
}
@media screen and (max-width: 1024px) {
  .p-sidebar__limit__area--f_action {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-sidebar__limit__area--f_action {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 480px) {
  .p-sidebar__limit__area--f_action {
    margin-bottom: 0;
    width: 45%;
    font-size: 20px;
  }
}
@media screen and (max-width: 414px) {
  .p-sidebar__limit__area--f_action {
    font-size: 14px;
  }
}
@media screen and (max-width: 1024px) {
  .p-sidebar__limit__area--f_action:first-child {
    margin-bottom: 10px;
  }
}
.p-sidebar__limit__area--f_action--title {
  padding: 5px 0;
}
.p-sidebar__limit__area--f_action--count {
  font-size: 14px;
}
@media screen and (max-width: 480px) {
  .p-sidebar__limit__area--f_action--count {
    font-size: 20px;
  }
}
@media screen and (max-width: 414px) {
  .p-sidebar__limit__area--f_action--count {
    font-size: 16px;
  }
}
.p-sidebar__limit__area--f_action--count--now {
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 480px) {
  .p-sidebar__limit__area--f_action--count--now {
    font-size: 24px;
  }
}
@media screen and (max-width: 414px) {
  .p-sidebar__limit__area--f_action--count--now {
    font-size: 18px;
  }
}
.p-sidebar__brand {
  color: #5c5c5c;
  padding: 10px 20px;
}
@media screen and (max-width: 480px) {
  .p-sidebar__brand {
    padding-top: 0;
  }
}
.p-sidebar__brand__title {
  font-size: 18px;
  padding: 10px 0;
}
@media screen and (max-width: 1024px) {
  .p-sidebar__brand__title {
    font-size: 24px;
    padding: 20px 10px;
  }
}
@media screen and (max-width: 480px) {
  .p-sidebar__brand__title {
    font-size: 18px;
    padding: 10px 0;
  }
}
@media screen and (max-width: 414px) {
  .p-sidebar__brand__title {
    font-size: 16px;
  }
}
.p-sidebar__brand__area {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
}
@media screen and (max-width: 480px) {
  .p-sidebar__brand__area {
    justify-content: space-around;
  }
}
.p-sidebar__brand__check {
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 5px;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .p-sidebar__brand__check {
    margin-right: 20px;
    margin-bottom: 20px;
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .p-sidebar__brand__check {
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 18px;
  }
}
.p-sidebar__follow {
  margin-top: 10px;
  color: #5c5c5c;
  padding: 10px 20px;
}
@media screen and (max-width: 1024px) {
  .p-sidebar__follow {
    margin-top: 0;
    width: 15%;
  }
}
@media screen and (max-width: 480px) {
  .p-sidebar__follow {
    padding-top: 0;
    width: 100%;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 375px) {
  .p-sidebar__follow {
    padding-right: 0;
    width: 90%;
  }
}
.p-sidebar__follow__title {
  font-size: 18px;
  padding: 10px 0;
}
@media screen and (max-width: 768px) {
  .p-sidebar__follow__title {
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .p-sidebar__follow__title {
    text-align: left;
    padding-left: 10px;
  }
}
@media screen and (max-width: 414px) {
  .p-sidebar__follow__title {
    font-size: 16px;
  }
}
.p-sidebar__follow__title--display {
  text-align: left;
  padding-left: 10px;
}
.p-sidebar__follow__area {
  padding: 5px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-content: flex-start;
}
@media screen and (max-width: 480px) {
  .p-sidebar__follow__area {
    width: 85%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 375px) {
  .p-sidebar__follow__area {
    width: 90%;
  }
}
.p-sidebar__accordion {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .p-sidebar__accordion {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .p-sidebar__accordion {
    display: block;
  }
}
.p-sidebar__accordion__area {
  margin-top: 20px;
  margin-bottom: 20px;
  margin-right: auto;
  margin-left: auto;
  width: 20%;
  display: flex;
}
@media screen and (max-width: 375px) {
  .p-sidebar__accordion__area {
    width: 30%;
  }
}
.p-sidebar__accordion__area__state {
  padding: 0 10px;
  box-sizing: border-box;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}
.p-sidebar__accordion__area__img {
  display: block;
}
@media screen and (max-width: 480px) {
  .p-sidebar__accordion__area--brand {
    width: 30%;
  }
}
@media screen and (max-width: 414px) {
  .p-sidebar__accordion__area--brand {
    width: 40%;
  }
}
@media screen and (max-width: 320px) {
  .p-sidebar__accordion__area--brand {
    width: 50%;
  }
}
@media screen and (max-width: 414px) {
  .p-sidebar__accordion__area--close {
    width: 30%;
  }
}
@media screen and (max-width: 320px) {
  .p-sidebar__accordion__area--close {
    width: 40%;
  }
}
@media screen and (max-width: 480px) {
  .p-sidebar__sp {
    display: none;
  }
}

.p-withdrawDone {
  width: 30%;
  min-height: 200px;
  background: white;
  border-radius: 5px;
  margin-top: 80px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .p-withdrawDone {
    width: 50%;
  }
}
@media screen and (max-width: 480px) {
  .p-withdrawDone {
    width: 80%;
  }
}
@media screen and (max-width: 375px) {
  .p-withdrawDone {
    width: 90%;
  }
}
.p-withdrawDone__title {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  font-size: 24px;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  color: #05215c;
  text-align: center;
}
.p-withdrawDone__content {
  width: 100%;
  padding: 20px 25px;
  box-sizing: border-box;
  font-size: 14px;
}
.p-withdrawDone__content__descript {
  margin-bottom: 30px;
  line-height: 150%;
  text-align: center;
}
.p-withdrawDone__content__link {
  text-align: center;
}

.p-exception {
  width: 40%;
  min-height: 200px;
  background: white;
  border-radius: 5px;
  margin-top: 80px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .p-exception {
    width: 50%;
  }
}
@media screen and (max-width: 480px) {
  .p-exception {
    width: 80%;
  }
}
@media screen and (max-width: 375px) {
  .p-exception {
    width: 90%;
  }
}
.p-exception__title {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  font-size: 24px;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  color: #05215c;
  text-align: center;
}
.p-exception__content {
  width: 100%;
  padding: 20px 25px;
  box-sizing: border-box;
  font-size: 14px;
}
.p-exception__content__descript {
  margin-bottom: 30px;
  line-height: 150%;
  text-align: center;
}
@media screen and (max-width: 320px) {
  .p-exception__content__descript {
    font-size: 12px;
  }
}
.p-exception__content__link {
  text-align: center;
}

.link {
  font-size: 14px;
  color: #05215c;
}
.link__content {
  margin-bottom: 16px;
}

.toggle_wrap {
  border-bottom: 1px solid gray;
}

.toggle_switch {
  position: relative;
  cursor: pointer;
}
.toggle_switch:hover {
  font-weight: bold;
}

.toggle_switch.open::after {
  transform: rotateZ(180deg);
  top: 46%;
}

.toggle_contents {
  display: none;
}

.modal__Area {
  display: none;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.modal__Bg {
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.9);
}
.modal__Wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  max-width: 500px;
  padding: 10px 30px;
  background-color: #fff;
}
.modal__state {
  width: 100%;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
}
.modal__btn__part {
  display: flex;
  margin-bottom: 30px;
}
.modal__btn {
  text-align: center;
  line-height: 36px;
  cursor: pointer;
}
@media screen and (max-width: 375px) {
  .modal__btn {
    font-size: 14px;
  }
}

.withdraw__btn {
  display: block;
  padding: 0;
  cursor: pointer;
  text-align: center;
  height: 40px;
}
@media screen and (max-width: 375px) {
  .withdraw__btn {
    font-size: 14px;
  }
}

.closeModal {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  cursor: pointer;
}

.u-err__comment {
  color: #d71518;
  height: 10px;
  padding: 5px 0;
}
.u-err__block {
  background: #f7dcd9;
}
.u-err__msg {
  color: #d71518;
  padding: 10px 0;
}
@media screen and (max-width: 375px) {
  .u-err__msg {
    font-size: 11px;
  }
}
.u-err__msg__main {
  color: #d71518;
  padding: 10px 0;
}
@media screen and (max-width: 375px) {
  .u-err__msg__main {
    font-size: 11px;
  }
}
.u-err__done {
  display: none;
}
@media screen and (max-width: 480px) {
  .u-err__done {
    width: 90%;
    text-align: center;
    display: block;
    color: #d71518;
    height: 10px;
    padding: 5px 0;
  }
}

.u-fadein {
  position: absolute;
  top: 60px;
  width: 100%;
  height: 30px;
  background: linear-gradient(#5e8ddb, #05215c);
  font-size: 20px;
  color: white;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  text-align: center;
  line-height: 30px;
}
@media screen and (max-width: 320px) {
  .u-fadein {
    font-size: 18px;
  }
}
.u-fadein--index {
  background: #ffd537;
  color: #05215c;
  z-index: 2;
}