/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  font-size: 16px;
}

:is(header p, header a, main p, main a) {
  line-height: 1.6;
  color: #222222;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: #222222;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

img {
  width: 100%;
  vertical-align: middle;
}

li {
  list-style: none;
}

* {
  box-sizing: border-box;
}

.u-bg--white {
  background-color: #fff;
}
.u-bg--gray {
  background-color: #EEEEEE;
}
.u-bg--light-blue {
  background-color: #D5E6F0;
}

.u-fs--10 {
  font-size: 10px;
}

.u-fs--11 {
  font-size: 11px;
}

.u-fs--12 {
  font-size: 12px;
}

.u-fs--13 {
  font-size: 13px;
}

.u-fs--14 {
  font-size: 14px;
}

.u-fs--15 {
  font-size: 15px;
}

.u-fs--16 {
  font-size: 16px;
}

.u-fs--17 {
  font-size: 17px;
}

.u-fs--18 {
  font-size: 18px;
}

.l-header {
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  z-index: 80;
  background-color: #fff;
}
.l-header__hum {
  padding: 2px 12px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.l-header__hum span {
  font-size: 10px;
  line-height: 0.9;
}
.l-header__hum img {
  width: 28px;
}
.l-header__logo {
  width: 155px;
}
.l-header__nav {
  position: fixed;
  display: flex;
  flex-direction: row-reverse;
  top: 0;
  left: 0;
  height: 100vh;
  width: 98%;
  z-index: 999;
  display: flex;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.l-header__nav a {
  color: #222222;
}
.l-header__nav.is-open {
  transform: translateX(0);
  transition: transform 0.3s ease;
}
.l-header__nav-inner {
  width: 100%;
  overflow: scroll;
  background-color: #EEEEEE;
}
.l-header__nav-logo {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  background-color: #fff;
}
.l-header__nav-logo img {
  width: 155px;
}
.l-header__nav-menus {
  padding: 16px 10px 100px;
}
.l-header__nav-menus:has(.l-header__nav-menu-sub) .l-header__nav-menu:last-of-type {
  margin-bottom: 32px;
}
.l-header__nav-menu {
  background-color: #fff;
  border-radius: 4px 0 0 4px;
  overflow: hidden;
}
.l-header__nav-menu li:not(:last-of-type) {
  border-bottom: solid 1px #EEEEEE;
}
.l-header__nav-menu a {
  text-decoration: none;
  font-size: 14px;
  line-height: 1.4;
  padding: 16px;
  display: block;
  position: relative;
}
.l-header__nav-menu a::after {
  --size: 8px;
  position: absolute;
  content: "";
  display: block;
  border-bottom: solid 2px #BBBBBB;
  border-right: solid 2px #BBBBBB;
  width: var(--size);
  height: var(--size);
}
.l-header__nav-menu a::after {
  top: 50%;
  right: 20px;
  transform: rotate(-45deg) translateY(-50%);
}
.l-header__nav-menu:not(:last-of-type) {
  margin-bottom: 16px;
}
.l-header__nav-menu.l-header__nav-menu--big li:first-of-type a {
  background-color: #E80000;
  color: #fff;
}
.l-header__nav-menu.l-header__nav-menu--big li:first-of-type a::after {
  border-color: #fff;
}
.l-header__nav-menu.l-header__nav-menu--winner li:first-of-type a {
  background-image: linear-gradient(90deg, rgb(230, 1, 45), rgb(1, 71, 157));
  color: #fff;
}
.l-header__nav-menu.l-header__nav-menu--winner li:first-of-type a::after {
  border-color: #fff;
}
.l-header__login-btns {
  padding: 16px 20px 32px;
  background-color: #fff;
}
.l-header__login-btns[id=mypage] div:nth-of-type(1) a {
  border-color: #EB5505;
  color: #EB5505;
}
.l-header__login-btns[id=login] div:nth-of-type(1) a {
  border-color: #EB5505;
  color: #EB5505;
}
.l-header__login-btns[id=login] div:nth-of-type(2) a {
  border-color: #EB5505;
  background-color: #EB5505;
  color: #fff;
}
.l-header__login-btns .c-primary-btn {
  --h: 42px;
  --g: 6px;
}
.l-header__login-btns .c-primary-btn a {
  font-weight: bold;
  font-size: 14px;
  padding: 8px;
  border-color: #000;
}
.l-header__login-btns .c-primary-btn:nth-of-type(1) {
  --bg-clr: #fff;
}
.l-header__login-btns > .c-primary-btn + .c-primary-btn {
  margin-top: 16px;
}
.l-header__close-btn {
  padding: 14px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.l-header__close-btn span {
  --size: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--size);
  width: var(--size);
  z-index: 99;
}
.l-header__close-btn span::before, .l-header__close-btn span::after {
  position: absolute;
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  background-color: #fff;
}
.l-header__close-btn span::before {
  transform: rotate(45deg);
}
.l-header__close-btn span::after {
  transform: rotate(-45deg);
}
.l-header__point {
  width: 80px;
  height: auto;
  font-size: 10px;
  border: solid 1px #DDDDDD;
  border-radius: 4px;
  padding: 6px;
  text-align: right;
}
.l-header__point span:not(.l-header__point-title) {
  font-weight: bold;
  font-size: 12px;
  margin-right: 4px;
}
.l-header__point-title {
  text-align: center;
  display: block;
  margin-bottom: 4px;
}

.l-footer {
  background-color: #222222;
  color: #fff;
  font-size: 14px;
}
.l-footer a {
  color: #fff;
}
.l-footer__primary-nav-list {
  border-bottom: solid 1px #333;
}
.l-footer__primary-nav-list > a {
  padding-block: 22px;
  padding-inline: 16px;
  font-weight: 700;
  position: relative;
  display: block;
}
.l-footer__primary-nav-list:not(:has(.l-footer__secondary-nav-wrap)) a {
  position: relative;
}
.l-footer__primary-nav-list:not(:has(.l-footer__secondary-nav-wrap)) a::after {
  --size: 10px;
  position: absolute;
  content: "";
  display: block;
  border-bottom: solid 2px #fff;
  border-right: solid 2px #fff;
  width: var(--size);
  height: var(--size);
}
.l-footer__primary-nav-list:not(:has(.l-footer__secondary-nav-wrap)) a::after {
  right: 16px;
  top: 50%;
  transform: rotate(-45deg) translateY(-50%);
}
.l-footer__primary-nav-list.is-active .l-footer__secondary-nav-wrap {
  grid-template-rows: 1fr;
}
.l-footer__primary-nav-list.is-active:has(.l-footer__secondary-nav-inner) > a::before {
  opacity: 0;
  transform: rotate(0);
  transition: all 0.5s ease;
}
.l-footer__primary-nav-list:has(.l-footer__secondary-nav-inner) > a {
  position: relative;
}
.l-footer__primary-nav-list:has(.l-footer__secondary-nav-inner) > a::before, .l-footer__primary-nav-list:has(.l-footer__secondary-nav-inner) > a::after {
  content: "";
  position: absolute;
  display: block;
  width: var(--w, 16px);
  height: var(--h, 2px);
  right: 16px;
  top: 50%;
  background-color: var(--bg, #fff);
}
.l-footer__primary-nav-list:has(.l-footer__secondary-nav-inner) > a::before {
  transform: rotate(90deg);
  top: 50%;
  transition: all 0.3s ease;
}
.l-footer__secondary-nav-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.4s grid-template-rows ease;
}
.l-footer__secondary-nav-inner {
  overflow: hidden;
}
.l-footer__secondary-nav-lists {
  border-top: solid 1px #333;
  padding-block: 16px;
  padding-inline: 32px;
}
.l-footer__secondary-nav-list a {
  font-weight: 500;
  display: block;
  padding-block: 8px;
}
.l-footer__menu-sub {
  --mt: 8px;
  padding: 16px;
}
.l-footer__menu-sub .c-menu-sub a {
  padding-inline: 6px;
}
.l-footer__menu-sub .c-menu-sub li:not(:last-of-type)::before {
  background-color: #fff;
}
.l-footer__annotation {
  --clr: white;
  padding-block: 16px 24px;
  padding-inline: 16px;
}
.l-footer__annotation .c-annotation {
  font-size: 11px;
  border: solid 1px #fff;
  border-radius: 4px;
  padding: 8px;
}
.l-footer__recommend {
  padding-block: 24px;
  border-block: solid 1px #BBBBBB;
}
.l-footer__recommend-title {
  margin-bottom: 24px;
}
.l-footer__recommend-title p {
  width: 89.8666666667%;
  margin: auto;
  color: #fff;
  font-weight: 700;
}
.l-footer__recommend-nav {
  padding-inline: 14px;
}
.l-footer__recommend-nav img {
  width: 80px;
  flex-shrink: 0;
}
.l-footer__recommend-nav a {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.l-footer__recommend-nav li + li {
  margin-top: 8px;
}
.l-footer__recommend-txt {
  line-height: 1.4;
}
.l-footer__recommend-txt div {
  font-weight: 500;
  margin-bottom: 6px;
}
.l-footer__recommend-txt p {
  font-size: 12px;
  color: #888888;
  font-weight: 400;
}
.l-footer__copy {
  text-align: center;
  padding-block: 24px;
}
.l-footer__copy span {
  font-size: 10px;
}

.l-container {
  display: none;
}
.l-container.is-current {
  display: block;
}

.c-primary-btn {
  height: var(--h);
}
.c-primary-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--g);
  border-radius: 4px;
  border: solid 1px #BBBBBB;
  height: 100%;
  line-height: 1.4;
}
.c-primary-btn.c-primary-btn--shadow {
  overflow: hidden;
  position: relative;
  border-radius: 4px;
}
.c-primary-btn.c-primary-btn--shadow a {
  height: calc(var(--h, 56px) - 2px);
  border-color: #000;
  font-weight: bold;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.c-primary-btn.c-primary-btn--shadow img {
  width: var(--w);
}
.c-primary-btn.c-primary-btn--shadow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #000;
  z-index: 1;
}

.c-primary-title {
  padding: 12px 0;
}
.c-primary-title h2 {
  font-size: 18px;
  text-align: center;
  color: #222222;
}
.c-primary-title:has(img) {
  display: flex;
  gap: var(--gap);
  align-items: center;
  justify-content: center;
}
.c-primary-title:has(img) h2 {
  text-align: unset;
}
.c-primary-title img {
  flex-shrink: 0;
  width: var(--w);
}

.c-menu-sub ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-menu-sub a {
  font-size: 12px;
  padding-inline: 8px;
}
.c-menu-sub li:not(:last-of-type) {
  position: relative;
}
.c-menu-sub li:not(:last-of-type)::before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 12px;
  background: #222222;
  right: 0;
  top: 50%;
  transform: translateY(-45%);
}
.c-menu-sub + .c-menu-sub {
  margin-top: var(--mt);
}

.c-annotation {
  font-size: 10px;
  line-height: 1.6;
  color: var(--clr, #000);
  display: block;
}

.c-link {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-link--center {
  margin: auto;
}
.c-link--right {
  margin-left: auto;
}
.c-link::before {
  content: "";
  display: block;
  position: absolute;
  height: 1px;
  width: 100%;
  background-color: #000;
  bottom: 0;
}
.c-link a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}
.c-link a::after {
  content: "";
  display: block;
  border-bottom: solid 1px #222222;
  border-right: solid 1px #222222;
  transform: rotate(-45deg);
  width: 8px;
  height: 8px;
}

:root {
  --orange-clr: #EB5505;
  --red-clr: #E80000;
  --black-clr: #222222;
  --dark-gray-clr: #888888;
  --gray-clr: #BBBBBB;
  --light-gray-clr: #EEEEEE;
  --bg-gray-clr: #F2F2F0;
  --border-gray-clr: #DDDDDD;
  --gold-clr: #C09B0F;
  --deep-blue-clr: #01479D;
  --light-blue-clr: #00A0E9;
  --pale-blue-clr: #D5E6F0;
  --yellow-clr: #FFD900;
  --green-clr: #00A040;
  --white-clr: #fff;
}

.mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

body {
  position: relative;
  font-family: "Hiragino Kaku Gothic ProN", sans-serif;
}

body:has(.l-header__nav.is-open) {
  overflow: hidden;
}
/*# sourceMappingURL=common.css.map */