@charset "UTF-8";
/*------------------------------
RESET
--------------------------------*/
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 {
  line-height: 1;
}

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;
}

/* 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;
}

/*------------------------------
表示切り替え
--------------------------------*/
@media screen and (min-width: 769px) {
  .hidden_pc {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .hidden_pc {
    display: block;
  }
  .hidden_sp {
    display: none !important;
  }
}
/*------------------------------
common
--------------------------------*/
img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.fixed {
  height: 100%;
  overflow: hidden;
}

:root {
  --title-key-color: #0d5faf;
  --title-key-color-ash: #e6f1fc;
}

html {
  width: 100%;
  margin: 0 auto;
  font-size: 0.6666666667vw;
  color: #333333;
  overflow-y: scroll;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  html {
    min-width: 100%;
    font-size: 1.3333333333vw;
  }
}
@media screen and (min-width: 1441px) {
  html {
    font-size: 62.5%;
  }
}

body {
  font-family: Noto Sans JP, sans-serif, serif;
  position: relative;
  font-weight: 500;
  width: 100%;
}
body > * {
  box-sizing: border-box;
}
body.fixed {
  overflow: hidden;
}

button, input, select, textarea {
  font-family: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}

header {
  box-shadow: 0 35px 80px -80px #000000 inset;
  position: absolute;
  width: 100%;
  z-index: 4;
}
header .inner {
  max-width: 1440px;
  width: 93.5%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  header .inner {
    width: 95%;
  }
}
header h1.logo {
  width: 11rem;
  margin-right: 7rem;
}
header .language_box {
  width: 15rem;
  position: relative;
}
header .language {
  border-radius: 1.5rem;
  width: 13rem;
  background-color: #fff;
  height: 3rem;
  transition: 0.5s;
}
header .language.active {
  height: 6.8rem;
}
header .language > li {
  position: relative;
  list-style: none;
  text-align: center;
  padding: 0.8rem 0;
  font-weight: normal;
}
header .language > li::before {
  display: inline-block;
  content: "";
  position: absolute;
  top: 52%;
  transform: translateY(-50%);
  left: 1.5rem;
  width: 1.3rem;
  height: 1.3rem;
  background: url(../img/icon_language.svg) 0 0 no-repeat;
  background-size: 1.3rem;
  pointer-events: none;
  z-index: 1;
}
header .language > li.active {
  border-bottom: 0.2rem solid #dcdcdc;
}
header .language > li.active::after {
  transform: rotate(-45deg);
  bottom: -0.4rem;
}
header .language span {
  position: absolute;
  top: 1rem;
  margin: auto;
  right: 1.5rem;
  transform: rotate(135deg);
  border-top: 0.2rem solid #0d5faf;
  border-right: 0.2rem solid #0d5faf;
  width: 0.5rem;
  height: 0.5rem;
  cursor: pointer;
}
header .language span.active {
  transform: rotate(-45deg);
  top: 1.4rem;
}
header .language li {
  font-size: 1.6rem;
  font-weight: normal;
}
header .language li a {
  color: #0d5faf;
}
header .language ul {
  display: none;
}
header .language ul li {
  text-align: left;
}
header .language ul li a {
  display: block;
  padding: 1.2rem;
  text-align: center;
  cursor: pointer;
}
header .outsideLink {
  display: flex;
  justify-content: flex-end;
}
header .outsideLink > ul {
  display: flex;
  font-size: 1.4rem;
  padding: 0 1.6rem;
}
header .outsideLink > ul li {
  padding: 1.9rem 0;
}
header .outsideLink > ul li + li {
  margin-left: 2.5rem;
}
header .outsideLink > ul a {
  color: #fff;
  text-decoration: none;
}
header .outsideLink > ul + ul {
  padding: 0 2.5rem;
  position: relative;
}
header .outsideLink > ul + ul::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1.5em;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 2%;
  transform: translate(-50%, -50%);
}
header .outsideLink > ul.search_js {
  width: 1.6rem;
  height: 1.6rem;
  padding: 1.6rem 2.5rem;
}
header .outsideLink > ul.search_js.active {
  background-color: #0d5faf;
}
header .outsideLink > ul.search_js.active::before {
  content: none;
}
@media screen and (min-width: 769px) {
  header .outsideLink > ul.search_js + .link_btn {
    margin-left: 15rem;
  }
}
header .outsideLink .language {
  margin-right: 1.3rem;
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
}
header .outsideLink .link_btn {
  background-color: #0d5faf;
  border-radius: 0 0 1.2rem 1.2rem;
  height: 4rem;
  width: 26rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .outsideLink .link_btn a {
  font-size: 1.6rem;
  color: #fff;
  padding: 1rem 0.8rem;
}
header .gNav_wrapper {
  display: flex;
  justify-content: center;
}
header .gNav_wrapper > div {
  width: 16.75rem;
  font-weight: bold;
  font-size: 2rem;
}
header .gNav_wrapper > div a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}
header .gNav_wrapper > div a > small {
  margin-bottom: 0.667em;
  line-height: 1;
  font-size: 0.6em;
}
header .gNav_wrapper > div a > small::before {
  content: "";
  display: inline-block;
  background-image: url(../img/icon_login02_w.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.084em;
  height: 1.417em;
  margin-right: 0.25em;
  vertical-align: text-top;
}
header .gNav_wrapper > div.web {
  background-color: #f9a216;
  line-height: 4rem;
}
header .gNav_wrapper > div.first {
  background-color: #8dc21f;
  border-radius: 0 1.5rem 1.5rem 0;
}
header .gNav_wrapper .gNav {
  border-radius: 1.5rem 0 0 1.5rem;
  padding: 1.5rem 3.044% 1.5rem 3.914%;
  background-color: #fff;
  display: flex;
  align-items: center;
  width: 79.862%;
}
@media screen and (min-width: 769px) {
  header .gNav_wrapper .gNav {
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
  }
  header .gNav_wrapper .gNav h1.logo {
    margin-right: auto;
  }
}
@media screen and (min-width: 769px) and (max-width: 840px) {
  header .gNav_wrapper .gNav {
    width: 81.945%;
    padding-left: 1.92%;
    padding-right: 1.12%;
  }
}
header .gNav_wrapper .gNav > a {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .gNav_wrapper .gNav ul {
  display: flex;
}
header .gNav_wrapper .gNav ul + ul {
  padding-left: 2.5rem;
  margin-left: 2.5rem;
  border-left: 1px solid #333333;
}
header .gNav_wrapper .gNav ul li + li {
  margin-left: 2rem;
}
header .gNav_wrapper .gNav ul a {
  color: #333333;
  text-decoration: none;
  font-size: 1.6rem;
  line-height: 2.5rem;
}
header .burger-btn {
  position: fixed;
  width: 8vw;
  max-width: 115px;
  top: 0;
  right: 0;
  box-shadow: 0 -3px 40px rgba(0, 0, 0, 0.23);
  cursor: pointer;
  border-radius: 0 0 0 6px;
  opacity: 0;
  transition: 0.3s;
  z-index: -1;
}
header .burger-btn:not(.active) {
  pointer-events: none;
}
header .burger-btn.active {
  z-index: 10001;
  opacity: 1;
  transition: 0.3s;
}
header .burger-btn.close {
  transition: 0s;
  opacity: 1;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  header .burger-btn {
    width: 14.584%;
  }
}
header .nav-wrapper {
  position: fixed;
  display: none;
  width: 100vw;
  height: 100vh;
  top: 0;
  right: 0;
  z-index: 2;
}
header .nav-wrapper .header-nav {
  overflow-y: scroll;
  height: 68rem;
  position: relative;
  background-color: #0d5faf;
  -ms-overflow-style: none; /* IE, Edge 対応 */
  scrollbar-width: none; /* Firefox 対応 */
}
header .nav-wrapper .header-nav::-webkit-scrollbar { /* Chrome, Safari 対応 */
  display: none;
}
header .nav-wrapper .header-nav .header-nav-top {
  z-index: 1;
  height: 10rem;
  padding: 0 3.5rem 0 4.5rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  max-width: 1300px;
  width: 90%;
  top: 3%;
  left: 50%;
  transform: translate(-50%, 0);
}
header .nav-wrapper .header-nav .header-nav-top .burger-btn-close {
  width: 4rem;
  height: 4rem;
}
header .nav-wrapper .header-nav .header-nav-top .language {
  position: absolute;
  top: 30%;
  right: 10%;
  transform: translateX(-50%);
  border: 0.2rem solid #cfdfef;
  width: 16.5rem;
  height: 4.8rem;
  border-radius: 2.5rem;
}
header .nav-wrapper .header-nav .header-nav-top .language.active {
  height: 8.8rem;
  border-radius: 1.5rem;
}
header .nav-wrapper .header-nav .header-nav-top .language li {
  padding: 1.4rem;
  font-size: 1.6rem;
}
header .nav-wrapper .header-nav .header-nav-top .language span {
  top: 1.8rem;
}
header .nav-wrapper .header-nav .header-nav-top .language span.active {
  top: 2.2rem;
}
header .nav-wrapper .header-nav .header-nav-top .language > li::before {
  left: 2rem;
}
header .nav-wrapper .header-nav .header-nav-top .language > li::after {
  right: 2.5rem;
}
header .nav-wrapper .header-nav .header-nav-top .language ul li {
  padding: 0;
}
header .nav-wrapper .header-nav .header-nav-main {
  max-width: 142rem;
  border-radius: 2rem;
  background-color: #fff;
  margin: 2.5rem auto;
}
header .nav-wrapper .header-nav .header-nav-main .inner {
  max-width: 98rem;
  display: flex;
  margin: auto;
  padding: 10rem 0 19rem;
}
header .nav-wrapper .header-nav .header-nav-main .inner > ul {
  width: 29%;
}
header .nav-wrapper .header-nav .header-nav-main .inner > ul + ul {
  margin-left: 7rem;
}
header .nav-wrapper .header-nav .header-nav-main .inner > ul ul {
  border-top: 0.2rem solid rgba(13, 95, 175, 0.2);
  background-color: #f4f7fb;
  padding: 2rem;
  border-top: none;
  margin-top: 2.4rem;
}
header .nav-wrapper .header-nav .header-nav-main .inner > ul ul + li {
  border-top: 0.2rem solid rgba(13, 95, 175, 0.2);
}
header .nav-wrapper .header-nav .header-nav-main .inner > ul ul li {
  background-color: #fff;
  border: none;
  border-radius: 1rem;
  padding: 1.5rem 0;
}
header .nav-wrapper .header-nav .header-nav-main .inner > ul ul li + li {
  margin-top: 1rem;
  border: none;
}
@media screen and (max-width: 768px) {
  header .nav-wrapper .header-nav .header-nav-main .inner > ul ul li:last-of-type {
    border: none;
  }
}
header .nav-wrapper .header-nav .header-nav-main .inner > ul ul li a {
  font-size: 1.6rem;
  padding: 0 1rem;
}
header .nav-wrapper .header-nav .header-nav-main .inner > ul ul li a::after {
  border-top: 0.4rem solid #013b6b;
  border-right: 0.4rem solid #013b6b;
  right: 1rem;
  width: 0.6rem;
  height: 0.6rem;
}
header .nav-wrapper .header-nav .header-nav-main .inner > ul li {
  padding: 3rem 0;
  position: relative;
}
header .nav-wrapper .header-nav .header-nav-main .inner > ul li + li {
  border-top: 0.2rem solid rgba(13, 95, 175, 0.2);
}
header .nav-wrapper .header-nav .header-nav-main .inner > ul li:last-of-type {
  border-bottom: 0.2rem solid rgba(13, 95, 175, 0.2);
}
header .nav-wrapper .header-nav .header-nav-main .inner > ul li a {
  position: relative;
  font-size: 2.2rem;
  font-weight: 700;
  color: #013b6b;
  display: block;
}
header .nav-wrapper .header-nav .header-nav-main .inner > ul li a::after {
  border-top: 0.5rem solid #013b6b;
  border-right: 0.5rem solid #013b6b;
  left: auto;
  right: 0;
  width: 0.8rem;
  height: 0.8rem;
}
header .nav-wrapper .header-nav .header-nav-bottom {
  padding-bottom: 3rem;
  position: relative;
}
header .nav-wrapper .header-nav .header-nav-bottom .inner {
  display: flex;
  margin: auto;
  justify-content: center;
  width: 100%;
  left: 0;
  right: 0;
  position: absolute;
  top: -16.5rem;
}
header .nav-wrapper .header-nav .header-nav-bottom .other_link ul {
  display: flex;
}
header .nav-wrapper .header-nav .header-nav-bottom .other_link ul li a {
  font-size: 1.4rem;
  color: #013b6b;
}
header .nav-wrapper .header-nav .header-nav-bottom .other_link ul li + li {
  margin-left: 5rem;
}
header .nav-wrapper .header-nav .header-nav-bottom .other_link.contact ul {
  display: flex;
  justify-content: center;
}
header .nav-wrapper .header-nav .header-nav-bottom .other_link.contact ul li {
  margin-left: 5rem;
}
header .nav-wrapper .header-nav .header-nav-bottom .other_link.contact ul li + li {
  margin-top: 0;
  margin-left: 6rem;
}
header .nav-wrapper .header-nav .header-nav-bottom a.btn {
  width: 32rem;
  font-size: 1.6rem;
  font-weight: 500;
  color: #013b6b;
  background-color: #e4ebf2;
  border: 0.3rem solid #d9e0e2;
  position: absolute;
  left: 0;
  right: 0;
  top: -12rem;
  padding: 2rem 0;
}
header .nav-wrapper .header-nav .header-nav-bottom a.btn::after {
  right: 2rem;
  border-top: 0.3rem solid #013b6b;
  border-right: 0.3rem solid #013b6b;
}
@media screen and (max-width: 768px) {
  header {
    position: relative;
  }
  header .inner {
    width: 100%;
  }
  header .inner .gNav_wrapper .gNav {
    width: 100%;
    border-radius: 0;
    height: 7rem;
  }
  header .nav-wrapper .header-nav {
    height: 100vh;
  }
  header .nav-wrapper .header-nav .header-nav-top {
    background-color: #fff;
    top: 0;
    position: relative;
    left: 0;
    transform: translate(0, 0);
    width: auto;
  }
  header .nav-wrapper .header-nav .header-nav-top .language {
    right: 0;
    top: 20%;
    border-radius: 3rem;
    width: 25rem;
    height: 6rem;
  }
  header .nav-wrapper .header-nav .header-nav-top .language.active {
    height: 15rem;
  }
  header .nav-wrapper .header-nav .header-nav-top .language li {
    font-size: 2.8rem;
  }
  header .nav-wrapper .header-nav .header-nav-top .language ul li a {
    padding: 2.5rem 3.5rem;
  }
  header .nav-wrapper .header-nav .header-nav-top .language > li {
    padding: 1.6rem 2.5rem;
  }
  header .nav-wrapper .header-nav .header-nav-top .language > li::before {
    width: 3rem;
    height: 3rem;
    background-size: 3rem;
    left: 3.8rem;
  }
  header .nav-wrapper .header-nav .header-nav-top .language > li::after {
    width: 1rem;
    height: 1rem;
  }
  header .nav-wrapper .header-nav .header-nav-top .language span {
    width: 1rem;
    height: 1rem;
    top: 2.2rem;
    right: 2.5rem;
  }
  header .nav-wrapper .header-nav .header-nav-top .language span.active {
    top: 2.6rem;
  }
  header .nav-wrapper .header-nav .header-nav-main {
    background-color: #0d5faf;
    padding: 8rem 0;
    border-radius: 0;
    margin: 0 auto;
  }
  header .nav-wrapper .header-nav .header-nav-main .inner {
    max-width: 67rem;
    border-radius: 2rem;
    margin: auto;
    background-color: #fff;
    display: block;
    padding: 0;
  }
  header .nav-wrapper .header-nav .header-nav-main .inner > ul {
    display: block;
    width: 100%;
  }
  header .nav-wrapper .header-nav .header-nav-main .inner > ul + ul {
    margin: 0;
  }
  header .nav-wrapper .header-nav .header-nav-main .inner > ul li {
    padding: 5rem;
    position: relative;
  }
  header .nav-wrapper .header-nav .header-nav-main .inner > ul li + li {
    border-top: 0.2rem solid rgba(13, 95, 175, 0.2);
  }
  header .nav-wrapper .header-nav .header-nav-main .inner > ul li a {
    font-size: 3.2rem;
    font-weight: 700;
    color: #013b6b;
    display: block;
  }
  header .nav-wrapper .header-nav .header-nav-main .inner > ul li a::after {
    border-top: 0.5rem solid #013b6b;
    border-right: 0.5rem solid #013b6b;
    left: auto;
    right: 0;
    width: 0.8rem;
    height: 0.8rem;
  }
  header .nav-wrapper .header-nav .header-nav-main .inner > ul ul {
    max-width: 59rem;
    margin: 0 auto 4rem;
    border: none;
    padding: 0;
    background: none;
  }
  header .nav-wrapper .header-nav .header-nav-main .inner > ul ul li {
    background-color: #f4f7fb;
    border-radius: 2rem;
    padding: 2rem 5rem;
  }
  header .nav-wrapper .header-nav .header-nav-main .inner > ul ul li a {
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 3.9rem;
  }
  header .nav-wrapper .header-nav .header-nav-main .inner > ul ul li a::after {
    width: 0.8rem;
    height: 0.8rem;
  }
  header .nav-wrapper .header-nav .header-nav-main .inner > ul ul li + li {
    border: none;
    margin-top: 2rem;
  }
  header .nav-wrapper .header-nav .header-nav-bottom {
    padding-bottom: 8rem;
    max-width: 67rem;
    margin: auto;
  }
  header .nav-wrapper .header-nav .header-nav-bottom .inner {
    position: relative;
    top: auto;
    display: block;
  }
  header .nav-wrapper .header-nav .header-nav-bottom .other_link ul {
    display: block;
  }
  header .nav-wrapper .header-nav .header-nav-bottom .other_link ul li a {
    font-size: 2.8rem;
    color: #fff;
  }
  header .nav-wrapper .header-nav .header-nav-bottom .other_link ul li + li {
    margin-top: 6rem;
    margin-left: 0;
  }
  header .nav-wrapper .header-nav .header-nav-bottom .other_link.contact {
    margin-top: 10rem;
  }
  header .nav-wrapper .header-nav .header-nav-bottom .other_link.contact ul {
    display: flex;
    justify-content: center;
  }
  header .nav-wrapper .header-nav .header-nav-bottom .other_link.contact ul li + li {
    margin-top: 0;
    margin-left: 6rem;
  }
  header .nav-wrapper .header-nav .header-nav-bottom .search {
    margin: 10rem 0;
    max-width: 67rem;
  }
  header .nav-wrapper .header-nav .header-nav-bottom .search input {
    font-size: 16px;
    height: 8.8rem;
  }
  header .nav-wrapper .header-nav .header-nav-bottom a.btn {
    position: relative;
    top: auto;
    margin: 10rem auto 0;
    font-size: 3.2rem;
    width: 59rem;
    padding: 3rem 0;
  }
  header .nav-wrapper .header-nav .header-nav-bottom a.btn::after {
    border-top: 0.5rem solid #013b6b;
    border-right: 0.5rem solid #013b6b;
    right: 3rem;
    width: 0.8rem;
    height: 0.8rem;
  }
  header h1.logo {
    width: 16.1rem;
  }
}
header .search_section {
  display: none;
  background-color: #0d5faf;
  position: absolute;
  width: 100%;
  height: 14rem;
  top: 4.5rem;
  left: 0;
}
header .search_section .inner {
  width: 70rem;
  max-width: 700px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
header.minimal {
  position: relative;
  background: #fff;
  box-shadow: none;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  header.minimal {
    height: 7rem;
  }
}
@media screen and (max-width: 768px) {
  header.minimal {
    height: 10rem;
  }
}
header.minimal .header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  header.minimal .header_inner {
    max-width: 1500px;
    padding: 0 3rem;
  }
}
@media screen and (max-width: 768px) {
  header.minimal .header_inner {
    padding: 0 4rem;
  }
}
header.minimal .header_inner .language_box {
  margin-left: 2rem;
  line-height: 1;
  box-sizing: border-box;
}
header.minimal .header_inner .language_box * {
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  header.minimal .header_inner .language_box {
    width: 13.4rem;
    height: 3.6rem;
  }
}
@media screen and (max-width: 768px) {
  header.minimal .header_inner .language_box {
    width: 11.2rem;
    height: 6rem;
  }
}
header.minimal .header_inner .language_box .language {
  position: absolute;
  background: transparent;
  border: 2px solid #cfdfef;
  height: auto;
}
@media screen and (min-width: 769px) {
  header.minimal .header_inner .language_box .language {
    border-radius: 3.6rem;
    width: 13.4rem;
  }
}
@media screen and (max-width: 768px) {
  header.minimal .header_inner .language_box .language {
    border-radius: 6rem;
    width: 11.2rem;
    right: 0;
  }
}
header.minimal .header_inner .language_box .language li {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  header.minimal .header_inner .language_box .language li {
    font-size: 2.8rem;
  }
}
header.minimal .header_inner .language_box .language > li {
  padding: 0;
}
@media screen and (min-width: 769px) {
  header.minimal .header_inner .language_box .language > li {
    height: 3.2rem;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  header.minimal .header_inner .language_box .language > li {
    min-height: 5.2rem;
    padding: 2.1rem 0;
  }
  header.minimal .header_inner .language_box .language > li::before {
    background-size: contain;
    width: 2.8rem;
    height: 2.8rem;
    left: 2rem;
  }
}
@media screen and (max-width: 768px) {
  header.minimal .header_inner .language_box .language > li > a {
    font-size: 0;
  }
}
@media screen and (min-width: 769px) {
  header.minimal .header_inner .language_box .language ul {
    padding: 0 0 0.6rem;
  }
}
@media screen and (max-width: 768px) {
  header.minimal .header_inner .language_box .language ul {
    padding: 0 0 1.6rem;
  }
}
@media screen and (min-width: 769px) {
  header.minimal .header_inner .language_box .language span {
    top: 1.05rem;
    right: 1.45rem;
    width: 0.8rem;
    height: 0.8rem;
  }
}
@media screen and (max-width: 768px) {
  header.minimal .header_inner .language_box .language span {
    top: 1.8rem;
    right: 2rem;
    width: 1.2rem;
    height: 1.2rem;
  }
}
header.minimal .header_inner .language_box .language.active {
  background: #fff;
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  header.minimal .header_inner .language_box .language.active {
    width: 25rem;
  }
  header.minimal .header_inner .language_box .language.active > li > a {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 769px) {
  header.minimal .header_inner .language_box .language.active span {
    top: 1.35rem;
  }
}
@media screen and (max-width: 768px) {
  header.minimal .header_inner .language_box .language.active span {
    top: 2.15rem;
  }
}
header.minimal .header_logo {
  display: block;
  line-height: 0;
  text-align: center;
}
@media screen and (min-width: 769px) {
  header.minimal .header_logo {
    width: 11rem;
  }
}
@media screen and (max-width: 768px) {
  header.minimal .header_logo {
    width: 16.2rem;
  }
}
header.minimal .header_logo:hover {
  opacity: 0.8;
}
header.small {
  position: relative;
  background: #fff;
  box-shadow: none;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  header.small {
    height: 7rem;
  }
}
@media screen and (max-width: 768px) {
  header.small {
    height: 10rem;
  }
}
header.small .header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  header.small .header_inner {
    max-width: 1500px;
    padding: 0 3rem;
  }
}
@media screen and (max-width: 768px) {
  header.small .header_inner {
    padding: 0 4rem;
  }
}
header.small .header_inner .language_box {
  margin-left: 2rem;
  line-height: 1;
  box-sizing: border-box;
}
header.small .header_inner .language_box * {
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  header.small .header_inner .language_box {
    width: 13.4rem;
    height: 3.6rem;
  }
}
@media screen and (max-width: 768px) {
  header.small .header_inner .language_box {
    width: 11.2rem;
    height: 6rem;
  }
}
header.small .header_inner .language_box .language {
  position: absolute;
  background: transparent;
  border: 2px solid #cfdfef;
  height: auto;
}
@media screen and (min-width: 769px) {
  header.small .header_inner .language_box .language {
    border-radius: 3.6rem;
    width: 13.4rem;
  }
}
@media screen and (max-width: 768px) {
  header.small .header_inner .language_box .language {
    border-radius: 6rem;
    width: 11.2rem;
    right: 0;
  }
}
header.small .header_inner .language_box .language li {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  header.small .header_inner .language_box .language li {
    font-size: 2.8rem;
  }
}
header.small .header_inner .language_box .language > li {
  padding: 0;
}
@media screen and (min-width: 769px) {
  header.small .header_inner .language_box .language > li {
    height: 3.2rem;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  header.small .header_inner .language_box .language > li {
    min-height: 5.2rem;
    padding: 2.1rem 0;
  }
  header.small .header_inner .language_box .language > li::before {
    background-size: contain;
    width: 2.8rem;
    height: 2.8rem;
    left: 2rem;
  }
}
@media screen and (max-width: 768px) {
  header.small .header_inner .language_box .language > li > a {
    font-size: 0;
  }
}
@media screen and (min-width: 769px) {
  header.small .header_inner .language_box .language ul {
    padding: 0 0 0.6rem;
  }
}
@media screen and (max-width: 768px) {
  header.small .header_inner .language_box .language ul {
    padding: 0 0 1.6rem;
  }
}
@media screen and (min-width: 769px) {
  header.small .header_inner .language_box .language span {
    top: 1.05rem;
    right: 1.45rem;
    width: 0.8rem;
    height: 0.8rem;
  }
}
@media screen and (max-width: 768px) {
  header.small .header_inner .language_box .language span {
    top: 1.8rem;
    right: 2rem;
    width: 1.2rem;
    height: 1.2rem;
  }
}
header.small .header_inner .language_box .language.active {
  background: #fff;
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  header.small .header_inner .language_box .language.active {
    width: 25rem;
  }
  header.small .header_inner .language_box .language.active > li > a {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 769px) {
  header.small .header_inner .language_box .language.active span {
    top: 1.35rem;
  }
}
@media screen and (max-width: 768px) {
  header.small .header_inner .language_box .language.active span {
    top: 2.15rem;
  }
}
header.small .header_logo {
  display: block;
  line-height: 0;
  text-align: center;
}
@media screen and (min-width: 769px) {
  header.small .header_logo {
    width: 11rem;
  }
}
@media screen and (max-width: 768px) {
  header.small .header_logo {
    width: 16.2rem;
  }
}
header.small .header_logo:hover {
  opacity: 0.8;
}
@media screen and (min-width: 769px) {
  header.small .header_logo + .header_button {
    margin-left: auto;
  }
}
header.small .header_button {
  text-align: center;
}
@media screen and (min-width: 769px) {
  header.small .header_button {
    border: 2px solid #ccc;
    border-radius: 3.6rem;
    height: 3em;
    margin-left: 2rem;
    padding: 0 1.5em;
    line-height: 3em;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  header.small .header_button {
    display: none;
  }
}

form.search_form {
  position: relative;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  form.search_form {
    width: 70rem;
    height: 6rem;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  form.search_form {
    height: 8.8rem;
  }
}
form.search_form input, form.search_form button {
  border: none;
  appearance: none;
  box-sizing: border-box;
}
form.search_form input::before, form.search_form input::after, form.search_form button::before, form.search_form button::after {
  box-sizing: border-box;
}
form.search_form .search_text {
  background: #fff;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 769px) {
  form.search_form .search_text {
    border-radius: 6rem;
    font-size: 2rem;
    padding: 0 6rem 0 3rem;
  }
}
@media screen and (max-width: 768px) {
  form.search_form .search_text {
    border-radius: 8.8rem;
    font-size: 4rem;
    padding: 0 10rem 0 4rem;
  }
}
form.search_form .search_text::placeholder {
  color: #aaa;
}
form.search_form .search_submit {
  position: absolute;
  background-image: url(/assets/common/img/kids/ico_search02.svg);
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  right: 0;
  top: 0;
  bottom: 0;
  color: transparent;
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  form.search_form .search_submit {
    width: 5.5rem;
  }
}
@media screen and (max-width: 768px) {
  form.search_form .search_submit {
    width: 10rem;
  }
}

footer {
  position: relative;
  padding-bottom: 4.5vw;
}
@media screen and (max-width: 768px) {
  footer {
    padding-bottom: 12.5vw;
  }
}
footer.nav_none {
  padding-bottom: 0;
}
footer #page_top {
  position: fixed;
  width: 2.8vw;
  bottom: 15%;
  right: 3%;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  footer #page_top {
    width: 10.417%;
  }
}
footer #page_top a {
  text-decoration: none;
}
footer #page_top a:hover {
  opacity: 0.5;
  text-decoration: none;
}
footer .footer_wrapper .footer_top {
  border-top: 1px solid #e4ebf2;
  padding: 6rem 0;
}
footer .footer_wrapper .footer_top .menu {
  width: 90%;
  margin: auto;
  background-color: #fff;
  border-radius: 2rem;
  max-width: 1440px;
  margin: auto;
}
footer .footer_wrapper .footer_top .menu .inner {
  display: flex;
  justify-content: space-between;
  padding: 4rem 0;
}
@media screen and (min-width: 769px) {
  footer .footer_wrapper .footer_top .menu .inner {
    width: 114rem;
    margin: 0 auto;
  }
}
footer .footer_wrapper .footer_top .menu .menu_l table tr:first-of-type td {
  padding-top: 0;
}
footer .footer_wrapper .footer_top .menu .menu_l table tr td {
  padding-top: 3rem;
}
footer .footer_wrapper .footer_top .menu .menu_l table tr td ul tr td + td {
  padding-left: 8rem;
}
footer .footer_wrapper .footer_top .menu .menu_l table tr td ul li a {
  color: #013b6b;
  font-size: 1.8rem;
  font-weight: 700;
}
footer .footer_wrapper .footer_top .menu .menu_l table tr td ul li a::after {
  width: 0.6rem;
  height: 0.6rem;
  left: -3rem;
  right: auto;
  border-top: 0.3rem solid #fff;
  border-right: 0.3rem solid #fff;
}
footer .footer_wrapper .footer_top .menu .menu_l table tr td ul li a::before {
  background-color: #013b6b;
  left: -3.5rem;
  right: auto;
}
footer .footer_wrapper .footer_top .menu .menu_l table tr td ul ul {
  padding-left: 3em;
}
footer .footer_wrapper .footer_top .menu .menu_l table tr td ul ul li {
  padding-top: 2rem;
}
footer .footer_wrapper .footer_top .menu .menu_l table tr td ul ul li a {
  font-size: 1.4rem;
  line-height: 2.5rem;
}
footer .footer_wrapper .footer_top .menu .menu_l table tr td ul ul li a::after {
  border-top: 0.3rem solid #013b6b;
  border-right: 0.3rem solid #013b6b;
}
footer .footer_wrapper .footer_top .menu .menu_l table tr td ul ul li ul {
  padding-left: 0;
}
footer .footer_wrapper .footer_top .menu .menu_l table tr td ul ul li ul ul li a {
  font-size: 1.2rem;
  font-weight: 500;
  padding-left: 2em;
}
footer .footer_wrapper .footer_top .menu .menu_l table tr td ul ul li ul ul li a::after {
  content: none;
}
footer .footer_wrapper .footer_top .menu .menu_l table tr td + td {
  padding-left: 12rem;
}
footer .footer_wrapper .footer_top .menu .menu_r {
  text-align: center;
  margin-left: 8rem;
}
footer .footer_wrapper .footer_top .menu .menu_r > a {
  background-color: #ff9b0b;
  font-size: 3.4rem;
  font-weight: 700;
  color: #fff;
  padding: 1.2rem;
}
footer .footer_wrapper .footer_top .menu .menu_r > a::after {
  border-top: 0.4rem solid #ff9b0b;
  border-right: 0.4rem solid #ff9b0b;
}
footer .footer_wrapper .footer_top .menu .menu_r .sns_contents {
  margin-top: 8rem;
}
footer .footer_wrapper .footer_top .menu .menu_r .sns_contents p {
  font-size: 1.4rem;
  padding-bottom: 2rem;
  letter-spacing: 0.1em;
}
footer .footer_wrapper .footer_top .menu .menu_r .sns_contents .sns {
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footer_wrapper .footer_top .menu .menu_r .sns_contents .sns a + a {
  padding-left: 2rem;
}
footer .footer_wrapper .footer_top .menu .menu_r .sns_contents .sns a:nth-of-type(3) {
  padding-left: 2.3rem;
}
footer .footer_wrapper .footer_top .menu .menu_r .sns_contents .sns a img {
  width: 3.8rem;
}
@media screen and (min-width: 769px) {
  footer .footer_wrapper .footer_top .menu .menu_r .footer_shopbtn {
    margin-top: 8rem;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_wrapper .footer_top .menu .menu_r .footer_shopbtn {
    padding-bottom: 8rem;
  }
}
footer .footer_wrapper .footer_top .menu .menu_r .footer_shopbtn > p {
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 769px) {
  footer .footer_wrapper .footer_top .menu .menu_r .footer_shopbtn > p {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_wrapper .footer_top .menu .menu_r .footer_shopbtn > p {
    margin-bottom: 3rem;
    font-size: 3.2rem;
  }
}
footer .footer_wrapper .footer_top .menu .menu_r .footer_shopbtn > a {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  footer .footer_wrapper .footer_top .menu {
    display: block;
  }
}
footer .footer_wrapper .footer_bottom {
  border-top: 1px solid #e4ebf2;
}
footer .footer_wrapper .footer_bottom .inner {
  width: 75%;
  max-width: 1440px;
  margin: auto;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  footer .footer_wrapper .footer_bottom .inner {
    width: 85%;
  }
}
footer .footer_wrapper .footer_bottom .submenu {
  padding: 4rem 0;
}
footer .footer_wrapper .footer_bottom .submenu ul {
  display: flex;
}
footer .footer_wrapper .footer_bottom .submenu ul li + li {
  margin-left: 6rem;
}
footer .footer_wrapper .footer_bottom .submenu ul a {
  font-size: 1.4rem;
  line-height: 2.5rem;
}
footer .footer_wrapper .footer_bottom .policy {
  padding: 1.5rem 0;
  border-top: 1px solid #e4ebf2;
}
footer .footer_wrapper .footer_bottom .policy .inner {
  display: flex;
  justify-content: space-between;
}
footer .footer_wrapper .footer_bottom .policy .inner a {
  font-size: 1.2rem;
}
footer .footer_wrapper .footer_bottom .policy .inner p {
  font-size: 0.9rem;
}
@media screen and (max-width: 768px) {
  footer .footer_wrapper .footer_top .menu {
    max-width: 67rem;
  }
  footer .footer_wrapper .footer_top .menu .inner {
    display: block;
    padding: 0;
  }
  footer .footer_wrapper .footer_top .menu .menu_l {
    padding: 0;
  }
  footer .footer_wrapper .footer_top .menu .menu_l table {
    width: 100%;
  }
  footer .footer_wrapper .footer_top .menu .menu_l table tr td {
    width: 100%;
    display: block;
    padding: 0;
    border-bottom: 0.2rem solid rgba(13, 95, 175, 0.2);
  }
  footer .footer_wrapper .footer_top .menu .menu_l table tr td.last {
    border-bottom: 0.2rem solid rgba(13, 95, 175, 0.2);
  }
  footer .footer_wrapper .footer_top .menu .menu_l table tr td ul li {
    padding: 5rem;
  }
  footer .footer_wrapper .footer_top .menu .menu_l table tr td ul li a {
    font-size: 3.2rem;
    display: block;
  }
  footer .footer_wrapper .footer_top .menu .menu_l table tr td ul li a::before {
    content: none;
  }
  footer .footer_wrapper .footer_top .menu .menu_l table tr td ul li a::after {
    border-top: 0.5rem solid #013b6b;
    border-right: 0.5rem solid #013b6b;
    left: auto;
    right: 0;
    width: 1rem;
    height: 1rem;
  }
  footer .footer_wrapper .footer_top .menu .menu_l table tr td ul ul {
    padding-left: 0;
    padding-bottom: 4rem;
  }
  footer .footer_wrapper .footer_top .menu .menu_l table tr td ul ul tr:first-of-type td {
    padding: 0;
    border-top: none;
    border-bottom: none;
  }
  footer .footer_wrapper .footer_top .menu .menu_l table tr td ul ul li {
    padding: 0;
    max-width: 59rem;
    margin: auto;
  }
  footer .footer_wrapper .footer_top .menu .menu_l table tr td ul ul li a {
    display: block;
    padding: 3.5rem;
    margin-bottom: 1rem;
    background-color: #f4f7fb;
    border-radius: 1.5rem;
    font-size: 2.8rem;
  }
  footer .footer_wrapper .footer_top .menu .menu_l table tr td ul ul li a::after {
    left: auto;
    right: 3rem;
    border-top: 0.5rem solid #013b6b;
    border-right: 0.5rem solid #013b6b;
  }
  footer .footer_wrapper .footer_top .menu .menu_l table tr td ul ul li ul {
    background-color: #f4f7fb;
    border-radius: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
  }
  footer .footer_wrapper .footer_top .menu .menu_l table tr td ul ul li ul ul li {
    max-width: 51rem;
  }
  footer .footer_wrapper .footer_top .menu .menu_l table tr td ul ul li ul ul li a {
    background-color: #fff;
    border: 0.2rem solid #d9e0e2;
    font-size: 2.8rem;
  }
  footer .footer_wrapper .footer_top .menu .menu_l table tr td ul ul li ul ul li a::after {
    content: "";
  }
  footer .footer_wrapper .footer_top .menu .menu_l table tr td + td {
    padding-left: 0;
  }
  footer .footer_wrapper .footer_top .menu .menu_l table tr:first-of-type td {
    padding: 0;
  }
  footer .footer_wrapper .footer_top .menu .menu_r {
    padding: 0;
    margin: 8rem auto 0;
  }
  footer .footer_wrapper .footer_top .menu .menu_r > a {
    width: 59rem;
    font-size: 6rem;
    padding: 3rem 0;
  }
  footer .footer_wrapper .footer_top .menu .menu_r .sns_contents {
    padding-bottom: 8rem;
  }
  footer .footer_wrapper .footer_top .menu .menu_r .sns_contents p {
    font-size: 3.2rem;
    padding-bottom: 4rem;
  }
  footer .footer_wrapper .footer_top .menu .menu_r .sns_contents .sns a img {
    width: 7.2rem;
  }
  footer .footer_wrapper .footer_top .menu .menu_r .sns_contents .sns a + a {
    padding-left: 3rem;
  }
  footer .footer_wrapper .footer_top .menu .menu_r .sns_contents .sns a:nth-of-type(3) {
    padding-left: 3.3rem;
  }
  footer .footer_wrapper .footer_bottom .inner {
    max-width: 67rem;
  }
  footer .footer_wrapper .footer_bottom .submenu {
    padding: 8rem 0;
  }
  footer .footer_wrapper .footer_bottom .submenu ul {
    display: block;
  }
  footer .footer_wrapper .footer_bottom .submenu ul li a {
    font-size: 2.8rem;
  }
  footer .footer_wrapper .footer_bottom .submenu ul li + li {
    margin-left: 0;
    margin-top: 6rem;
  }
  footer .footer_wrapper .footer_bottom .policy {
    padding: 3rem 0;
  }
  footer .footer_wrapper .footer_bottom .policy .inner {
    display: block;
    text-align: center;
  }
  footer .footer_wrapper .footer_bottom .policy .inner a {
    font-size: 2.3rem;
    padding-bottom: 3rem;
    display: inline-block;
  }
  footer .footer_wrapper .footer_bottom .policy .inner p {
    font-size: 10px;
  }
}
@media screen and (min-width: 1441px) {
  footer .footer_wrapper .footer_top .menu .menu_l table tr td ul li a {
    font-size: 2rem;
  }
  footer .footer_wrapper .footer_top .menu .menu_l table tr td ul ul li a {
    font-size: 1.6rem;
  }
  footer .footer_wrapper .footer_top .menu .menu_l table tr td ul ul li ul ul li a {
    font-size: 1.4rem;
  }
}
footer .footer_wrapper.small .footer_bottom {
  border-top: none;
}
footer .footer_wrapper.small .footer_bottom .policy {
  border-top: none;
}
footer .footer_nav {
  opacity: 0;
  position: fixed;
  z-index: 10001;
  transition: 0.3s;
  bottom: -3px;
  left: 0;
  width: 100%;
}
footer .footer_nav:not(.active) {
  pointer-events: none;
}
footer .footer_nav.active {
  opacity: 1;
}
footer .footer_nav .footer_nav_contents {
  display: flex;
  justify-content: space-between;
}
footer .footer_nav .footer_nav_contents .footer_nav_item {
  width: 100%;
  padding: 1.5rem 0;
  font-size: 2.8rem;
  text-align: center;
  color: #fff;
  font-weight: 700;
  justify-content: center;
  align-items: center;
  display: flex;
  border-top: 0.2rem solid #fff;
}
footer .footer_nav .footer_nav_contents .footer_nav_item p {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footer_nav .footer_nav_contents .footer_nav_item p > small.mypage {
  margin-right: 0.667em;
  line-height: 1;
  font-size: 0.6em;
}
footer .footer_nav .footer_nav_contents .footer_nav_item p > small.mypage::before {
  content: "";
  display: inline-block;
  background-image: url(../img/icon_login02_w.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.084em;
  height: 1.417em;
  margin-right: 0.25em;
  vertical-align: text-top;
}
footer .footer_nav .footer_nav_contents .footer_nav_item.web {
  background-color: #ff9b0b;
}
footer .footer_nav .footer_nav_contents .footer_nav_item.web p::after {
  right: -0.9em;
  border-top: 0.3rem solid #ff9b0b;
  border-right: 0.3rem solid #ff9b0b;
}
footer .footer_nav .footer_nav_contents .footer_nav_item.web p::before {
  right: -1.2em;
}
footer .footer_nav .footer_nav_contents .footer_nav_item.beginner {
  background-color: #8dc21f;
}
footer .footer_nav .footer_nav_contents .footer_nav_item.beginner p::after {
  right: -3rem;
  border-top: 0.3rem solid #fff;
  border-right: 0.3rem solid #fff;
}
footer .footer_nav .footer_nav_contents .footer_nav_item.members {
  background-color: #056ce8;
}
@media screen and (max-width: 768px) {
  footer .footer_nav .footer_nav_contents .footer_nav_item.members {
    flex-direction: column;
  }
}
footer .footer_nav .footer_nav_contents .footer_nav_item.members p::after {
  right: -3rem;
  border-top: 0.3rem solid #fff;
  border-right: 0.3rem solid #fff;
}
footer .footer_nav .footer_nav_contents .footer_nav_item.members > small {
  position: relative;
  line-height: 1;
  font-size: 0.715em;
}
@media screen and (min-width: 769px) {
  footer .footer_nav .footer_nav_contents .footer_nav_item.members > small {
    margin-right: 1em;
  }
}
footer .footer_nav .footer_nav_contents .footer_nav_item.members > small::before {
  content: "";
  display: inline-block;
  background-image: url(../img/icon_login02_w.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.084em;
  height: 1.417em;
  margin-right: 0.25em;
  vertical-align: text-top;
}
@media screen and (max-width: 768px) {
  footer .footer_nav .footer_nav_contents .footer_nav_item.members > small + p {
    left: 0.2rem;
  }
  footer .footer_nav .footer_nav_contents .footer_nav_item.members > small + p::after {
    display: none;
  }
}
footer .footer_nav .footer_nav_contents .footer_nav_item + .footer_nav_item {
  border-left: 0.2rem solid #fff;
}
@media screen and (max-width: 768px) {
  footer .footer_nav .footer_nav_contents {
    height: 10rem;
  }
  footer .footer_nav .footer_nav_contents .footer_nav_item {
    padding: 1.2rem 0;
  }
  footer .footer_nav .footer_nav_contents .footer_nav_item p {
    flex-direction: column;
    left: -1.2rem;
    position: relative;
  }
  footer .footer_nav .footer_nav_contents .footer_nav_item p > small.mypage {
    margin-right: 0;
    margin-bottom: 0.25em;
  }
  footer .footer_nav .footer_nav_contents .footer_nav_item.web p::before {
    right: -1.2em;
  }
  footer .footer_nav .footer_nav_contents .footer_nav_item.beginner p, footer .footer_nav .footer_nav_contents .footer_nav_item.members p {
    line-height: 3.8rem;
  }
  footer .footer_nav .footer_nav_contents .footer_nav_item.beginner p::after, footer .footer_nav .footer_nav_contents .footer_nav_item.members p::after {
    right: -3.5rem;
    border-top: 0.5rem solid #fff;
    border-right: 0.5rem solid #fff;
  }
}

.shop_btn {
  display: flex !important;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #fff;
  border: 1px solid;
  border-radius: 10rem;
  line-height: 1;
  color: #013b6b !important;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .shop_btn {
    width: 23.5rem;
    height: 4.7rem;
    padding-right: 2rem;
    font-size: 1.8rem !important;
  }
}
@media screen and (max-width: 768px) {
  .shop_btn {
    width: 48rem;
    height: 9rem;
    padding-right: 3rem;
    font-size: 3.6rem !important;
  }
}
.shop_btn::before {
  content: "";
  display: block;
  background-image: url(../img/icon_cart01_b.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 769px) {
  .shop_btn::before {
    width: 2.5rem;
    height: 2.2rem;
    margin-right: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .shop_btn::before {
    width: 5rem;
    height: 4.4rem;
    margin-right: 2rem;
  }
}
.shop_btn::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #013b6b;
  background-image: url(../img/icon_arrow01_w.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  border: none !important;
  border-radius: 50%;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
@media screen and (min-width: 769px) {
  .shop_btn::after {
    width: 2.4rem !important;
    height: 2.4rem !important;
    right: 2rem !important;
  }
}
@media screen and (max-width: 768px) {
  .shop_btn::after {
    width: 3.2rem !important;
    height: 3.2rem !important;
    right: 3rem !important;
  }
}
@media screen and (min-width: 769px) {
  .shop_btn.small {
    width: 18rem;
    height: 3.6rem;
    padding-right: 1.5rem;
    font-size: 1.4rem !important;
  }
}
@media screen and (min-width: 769px) {
  .shop_btn.small::before {
    width: 2rem;
    height: 1.6rem;
    margin-right: 1rem;
  }
}
@media screen and (min-width: 769px) {
  .shop_btn.small::after {
    width: 1.8rem !important;
    height: 1.8rem !important;
    right: 1.5rem !important;
  }
}

.arrow {
  position: relative;
}
.arrow::after {
  position: absolute;
  top: 0;
  bottom: -0.1em;
  right: -2rem;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 0.6rem;
  height: 0.6rem;
  border-top: 0.3rem solid #333333;
  border-right: 0.3rem solid #333333;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .arrow::after {
    border-top: 0.4rem solid #333333;
    border-right: 0.4rem solid #333333;
  }
}
.arrow.white::after {
  right: 3rem;
  border-top: 0.3rem solid #fff;
  border-right: 0.3rem solid #fff;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .arrow.white::after {
    border-top: 0.4rem solid #fff;
    border-right: 0.4rem solid #fff;
  }
}

.arrow-c {
  position: relative;
}
.arrow-c::before, .arrow-c::after {
  position: absolute;
  top: 0;
  bottom: -0.1em;
  right: -0.4em;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.arrow-c::before {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: #fff;
}
.arrow-c::after {
  right: -1.4rem;
  width: 0.6rem;
  height: 0.6rem;
  border-top: 0.4rem solid #0d5faf;
  border-right: 0.4rem solid #0d5faf;
  transform: rotate(45deg);
}

.pc_arrow_none::after {
  content: none;
}

@media screen and (max-width: 768px) {
  .pc_arrow_none::after {
    content: "";
  }
  .sp_arrow_none::after {
    content: none;
  }
}
.pdf {
  position: relative;
}
.pdf::after {
  content: "";
  width: 2.6rem;
  height: 2rem;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translate(-50%, -50%);
  background-image: url(../img/icon_pdf.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .pdf::after {
    width: 4.9rem;
    height: 3.6rem;
  }
}

.blank {
  position: relative;
}
.blank::before {
  display: none;
}
.blank::after {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translate(-50%, -50%);
  background-image: url(../img/icon_blank.svg);
  background-size: contain;
  background-repeat: no-repeat;
  border: none;
  bottom: auto;
}
@media screen and (max-width: 768px) {
  .blank::after {
    width: 2.8rem;
    height: 2.8rem;
    right: 3rem;
  }
}

a.btn {
  text-decoration: none;
  color: #333333;
  background-color: #fff;
  border-radius: 8rem;
  margin: 0 auto;
  font-weight: 700;
  text-align: center;
  width: 28rem;
  display: block;
  padding: 1.2rem;
  font-size: 3.4rem;
}
a.btn.arrow-c::before {
  right: 3rem;
}
a.btn.arrow-c::after {
  right: 3.9rem;
}
a.btn.web_link {
  background-color: #ff9b0b;
  color: #fff;
}
a.btn.web_link::after {
  border-top: 0.4rem solid #ff9b0b;
  border-right: 0.4rem solid #ff9b0b;
}
a.btn span.ex::before {
  content: "";
  width: 3.1rem;
  height: 4.4rem;
  display: inline-block;
  position: absolute;
  top: 53%;
  left: 10rem;
  transform: translate(-50%, -50%);
  background-image: url(../img/icon_ex.png);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  a.btn span.ex::before {
    width: 4rem;
    height: 5.4rem;
    top: 53%;
    left: 12rem;
  }
}

h2.mainTitle1 {
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  position: relative;
  margin-top: 10rem;
  margin-bottom: 8rem;
}
h2.mainTitle1::before {
  width: 4rem;
  height: 0.6rem;
  background-color: var(--title-key-color);
  display: inline-block;
  position: absolute;
  bottom: -0.8em;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  h2.mainTitle1 {
    font-size: 4.8rem;
  }
  h2.mainTitle1::before {
    width: 8rem;
    height: 1rem;
  }
}

h2.mainTitle2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  h2.mainTitle2 {
    font-size: 3.6rem;
  }
}

.ac-parent_all {
  position: relative;
}
.ac-parent_all.active .ac_btn span:nth-of-type(2) {
  display: none;
}

.ac-child_all {
  display: none;
}

@media screen and (max-width: 768px) {
  .ac-child {
    display: none;
  }
}
.ac-parent {
  position: relative;
}
.ac-parent.active .ac_btn span:nth-of-type(2) {
  display: none;
}

.ac_btn {
  position: absolute;
  display: inline-block;
  width: 8rem;
  height: 8rem;
  right: -1rem;
  top: 50%;
  transform: translate(-50%, -50%);
}
.ac_btn span:nth-of-type(1) {
  display: inline-block;
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 2.5rem;
  height: 0.5rem;
  background-color: #013b6b;
}
.ac_btn span:nth-of-type(2) {
  display: inline-block;
  position: absolute;
  right: 20%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 2.5rem;
  width: 0.5rem;
  background-color: #013b6b;
}

/*タブ切り替え全体のスタイル*/
.tabs {
  position: relative;
  width: 114rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .tabs {
    width: 67rem;
  }
}
.tabs.shadow01 {
  border-radius: 1rem;
  box-shadow: 0 5px 7px rgba(0, 0, 0, 0.1);
}
.tabs.shadow01 .tab_content {
  border-radius: 0 0 1rem 1rem;
}
.tabs.shadow02 .tab_item {
  box-shadow: 0 5px 7px rgba(0, 0, 0, 0.1);
}
.tabs.shadow02 .tab_content {
  position: relative;
  border-radius: 0 0 1rem 1rem;
  box-shadow: 0 5px 7px rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 769px) {
  .tab_item_btn {
    position: absolute;
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  .tab_item_btn {
    margin-bottom: 6rem;
  }
  .tab_item_btn a {
    min-width: 100%;
    border-radius: 0.5em;
    padding: 0.5em 1.429em 0.5em 1.286em;
    justify-content: flex-start;
    text-align: left;
    font-size: 3.8rem;
  }
}

.tab_item {
  border-radius: 0.6rem 0.6rem 0 0;
  width: 49.5%;
  height: 6.3rem;
  padding: 0 6rem;
  line-height: 6.3rem;
  font-size: 2rem;
  text-align: center;
  display: block;
  background: #fff;
  border-bottom: 1px solid #dcdcdc;
  position: relative;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
  margin-left: 1%;
  box-sizing: border-box;
  overflow: hidden;
}
.tab_item:first-of-type {
  margin-left: 0;
}
.tab_item::before {
  content: "";
  position: absolute;
  border-top: 0.6rem solid var(--title-key-color);
  left: 0;
  right: 0;
  top: 0;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .tab_item {
    font-size: 3.2rem;
    line-height: 4rem;
    height: 9rem;
    padding: 0 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.tab_item.full {
  width: 100%;
  text-align: left;
}

a.tab_item:hover, label.tab_item:hover, input.tab_item:hover, button.tab_item:hover {
  opacity: 0.75;
}

/*ラジオボタンを全て消す*/
input[name=tab_item] {
  display: none;
}
input[name=tab_item] + .tab_item {
  background: var(--title-key-color-ash);
  border-bottom: none;
  box-shadow: 0 5px 7px rgba(0, 0, 0, 0.1);
}
input[name=tab_item] + .tab_item::before {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  position: relative;
  background-color: #fff;
  display: none;
  padding: 6rem;
  clear: both;
  overflow: hidden;
}
.tab_content.shown {
  display: block;
}

/*選択されているタブのコンテンツのみを表示*/
#prefectures:checked ~ #prefectures_content,
#service:checked ~ #service_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background: #fff;
}
.tabs input:checked + .tab_item::before {
  display: block;
}

.slick01 .slick-dots li button:before {
  content: "●";
  opacity: 0.3;
  color: #333333;
  font-size: 12px;
}
.slick01 .slick-dots {
  bottom: 1.2rem;
}
.slick01 .slick-dots li.slick-active button:before {
  color: #333333;
  opacity: 1;
}
.slick01 .slick-dots li {
  margin: 0;
}
.slick01 .slick-slide {
  margin: 0 1rem;
}
.slick01.slick-dotted.slick-slider {
  padding-bottom: 5rem;
}

.slider .slick03 .slick-slide {
  margin: 0 0.5rem;
}
@media screen and (max-width: 768px) {
  .slider .slick03 .slick-slide {
    margin: 0 1rem;
  }
}
.slider .slick03 .slide-arrow {
  top: 50%;
}
.slider ul {
  list-style: none;
}
.slider .slide-arrow {
  position: absolute;
  z-index: 2;
  transform: translate(-50%, -50%);
  background-color: #333333;
  width: 4rem;
  height: 4rem;
  border: 0.3rem solid #fff;
  top: 39%;
  border-radius: 50px;
}
@media screen and (max-width: 768px) {
  .slider .slide-arrow {
    width: 5rem;
    height: 5rem;
  }
}
.slider .slide-arrow.prev-arrow {
  left: 5%;
}
.slider .slide-arrow.prev-arrow::before {
  content: "";
  position: absolute;
  border-bottom: solid 0.4rem #fff;
  border-left: solid 0.4rem #fff;
  width: 0.8rem;
  height: 0.8rem;
  top: 50%;
  left: 50%;
  transform: rotate(45deg) translate(-63%, -12%);
  box-sizing: content-box;
}
.slider .slide-arrow.next-arrow {
  right: 0;
}
.slider .slide-arrow.next-arrow::before {
  content: "";
  border-top: solid 0.4rem #fff;
  border-right: solid 0.4rem #fff;
  position: absolute;
  width: 0.8rem;
  height: 0.8rem;
  top: 50%;
  left: 50%;
  transform: rotate(45deg) translate(-80%, 0);
  box-sizing: content-box;
}

.main_more {
  display: flex;
  justify-content: flex-end;
  box-sizing: border-box;
}
.main_more > a {
  display: flex;
  align-items: center;
  letter-spacing: 0.02em;
  line-height: 1;
  box-sizing: border-box;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .main_more > a {
    font-size: 1.6rem;
    transform: translate(-0.25em, 0);
  }
}
@media screen and (max-width: 768px) {
  .main_more > a {
    font-size: 2.8rem;
    transform: translate(-0.142em, 0);
  }
}
.main_more > a::after {
  content: "";
  display: block;
  transform: rotateZ(45deg);
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .main_more > a::after {
    border-right: 0.188em solid;
    border-top: 0.188em solid;
    width: 0.563em;
    height: 0.563em;
    margin-left: 0.625em;
  }
}
@media screen and (max-width: 768px) {
  .main_more > a::after {
    border-right: 0.179em solid;
    border-top: 0.179em solid;
    width: 0.608em;
    height: 0.608em;
    margin-left: 0.286em;
  }
}
.main_topic01_items + .main_more {
  margin-top: 4rem;
}
.catchup_wrapper .inner + .main_more {
  width: 80%;
  max-width: 1440px;
  margin: 1.5rem auto 0;
}
.catchup_wrapper .inner + .main_more > a {
  transform: none;
}
.main_topic01_items {
  list-style: none;
  font-weight: 400;
  overflow: hidden;
  overflow-y: scroll;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .main_topic01_items {
    max-height: 29.7rem;
    padding-right: 10px;
  }
  .main_topic01_items::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 5px;
  }
  .main_topic01_items::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.3);
  }
}
@media screen and (max-width: 768px) {
  .main_topic01_items {
    max-height: 93rem;
  }
}
.main_topic01_items.no-scroll {
  max-height: none;
}
.main_topic01_items * {
  box-sizing: border-box;
}
.main_topic01_items *::before, .main_topic01_items *::after {
  box-sizing: border-box;
}
.main_topic01_items > li {
  border-top: 1px solid #dcdcdc;
}
.main_topic01_items > li:last-of-type {
  border-bottom: 1px solid #dcdcdc;
}
.main_topic01_item {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 769px) {
  .main_topic01_item {
    min-height: 7rem;
    padding: 0 2rem;
  }
}
@media screen and (max-width: 768px) {
  .main_topic01_item {
    align-items: center;
    flex-wrap: wrap;
    padding: 4rem 2rem 3rem;
  }
}
.main_topic01_time {
  flex-shrink: 0;
}
@media screen and (min-width: 769px) {
  .main_topic01_time {
    width: 7.693em;
    min-width: 60px;
    padding: 1.167em;
    line-height: 1.693em;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .main_topic01_time {
    width: 6.786em;
    line-height: 1.429em;
    font-size: 3.2rem;
  }
}
.main_topic01_category {
  flex-shrink: 0;
}
@media screen and (min-width: 769px) {
  .main_topic01_category {
    width: 12em;
    min-width: 90px;
    padding: 1.075em;
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .main_topic01_category {
    margin-right: auto;
    font-size: 2.6rem;
  }
}
.main_topic01_category span {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
@media screen and (min-width: 769px) {
  .main_topic01_category span {
    border-radius: 1.9em;
    width: 9.9em;
    min-width: 70px;
    padding: 0.5rem 0;
    line-height: 1;
  }
}
@media screen and (max-width: 768px) {
  .main_topic01_category span {
    border-radius: 1.819em;
    width: 9.091em;
    height: 1.819em;
    line-height: 1.819em;
  }
}
.main_topic01_category span.important {
  background: #fc4042;
}
.main_topic01_category span.campaign {
  background: #ff7171;
}
.main_topic01_category span.notice {
  background: #0d5faf;
}
.main_topic01_category span.playerinfo {
  background: #8ab3db;
}
.main_topic01_category span.report {
  background: #ff66ac;
}
.main_topic01_category span.guidance {
  background: #29aaff;
}
.main_topic01_category span.news {
  background: #30cc99;
}
.main_topic01_text {
  width: 100%;
  letter-spacing: 0.07em;
}
@media screen and (min-width: 769px) {
  .main_topic01_text {
    padding: 1.05em;
    line-height: 1.4em;
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .main_topic01_text {
    padding-top: 1.072em;
    line-height: 1.215em;
    font-size: 3.2rem;
  }
}
.main_topic01_text a[href$=".pdf"]::after {
  content: "";
  display: inline-block;
  background-image: url(/assets/common/img/icon_pdf.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.5em;
  height: 1.2em;
  vertical-align: text-top;
  transform: translate(0, 10%);
}
@media screen and (min-width: 769px) {
  .main_desc01 {
    display: flex;
    justify-content: center;
  }
}
@media screen and (min-width: 769px) {
  .main_desc01_items {
    width: 47.96%;
  }
}
@media screen and (min-width: 769px) {
  .main_desc01_items + .main_desc01_items {
    margin-left: 4rem;
  }
}
.main_desc01_item {
  border-top: 1px solid #dcdcdc;
}
@media screen and (min-width: 769px) {
  .main_desc01_item {
    display: flex;
    justify-content: space-between;
  }
}
.main_desc01_item:last-of-type {
  border-bottom: 1px solid #dcdcdc;
}
.main_desc01_head {
  background: #f5f6f7;
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  .main_desc01_head {
    flex-shrink: 0;
    width: 5.938em;
    min-width: 56px;
    padding: 1.438em 0.938em;
    line-height: 1.875em;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .main_desc01_head {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 2.813em;
    line-height: 1.875em;
    font-size: 3.2rem;
  }
}
.main_desc01_body {
  background: #fff;
}
@media screen and (min-width: 769px) {
  .main_desc01_body {
    width: 100%;
    padding: 1.438em 1.25em;
    line-height: 1.875em;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .main_desc01_body {
    border-top: 1px solid #dcdcdc;
    padding: 2.6rem 3.8rem;
    line-height: 1.875em;
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 768px) {
  .main_desc01_text strong {
    font-weight: 500;
  }
}
.main_desc01_att {
  font-weight: 500;
  color: #ff9100;
}
@media screen and (min-width: 769px) {
  .main_desc01_att {
    line-height: 1.7em;
    font-size: 2rem;
  }
}
.main_desc01_att a {
  font-weight: 900;
  color: inherit;
}
@media screen and (min-width: 769px) {
  .main_desc01_att a {
    line-height: 1.417em;
    font-size: 1.2em;
  }
}
.main_tab01.shadow01 .main_tab01_switches, .main_tab01.shadow01 .main_tab01_area {
  box-shadow: 0 5px 7px rgba(0, 0, 0, 0.1);
}
.main_tab01_switches {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  list-style: none;
  border-bottom: 1px solid #dcdcdc;
}
.main_tab01_switches > li {
  display: block;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .main_tab01_switches > li + li {
    margin-left: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .main_tab01_switches > li + li {
    margin-left: 2rem;
  }
}
.main_tab01_switch {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #fff;
  border-radius: 0.6rem 0.6rem 0 0;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .main_tab01_switch {
    min-height: 3.044em;
    padding: 0.65em 0.5em 0.5em;
    line-height: 1.55em;
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 768px) {
  .main_tab01_switch {
    padding: 0.782em 4rem;
    line-height: 1.25em;
    font-size: 3.2rem;
  }
}
.main_tab01_switch::before {
  content: "";
  position: absolute;
  border-top: 0.6rem solid var(--title-key-color);
  left: 0;
  right: 0;
  top: 0;
  pointer-events: none;
}
.main_tab01_switch.is-active {
  background: #fff;
  color: var(--title-key-color-ash);
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  .main_tab01_switch.pc_left {
    justify-content: flex-start;
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
.main_tab01_area {
  background: #fff;
  border-radius: 0 0 1rem 1rem;
}
.main_tab01_block {
  display: none;
}
@media screen and (min-width: 769px) {
  .main_tab01_block {
    padding: 6rem;
  }
  .main_tab01_block::after {
    content: "";
    display: block;
    clear: both;
  }
}
@media screen and (max-width: 768px) {
  .main_tab01_block {
    padding: 6rem 4rem;
  }
}
.main_tab01_block.is-active {
  display: block;
}

.catchup_wrapper {
  margin-top: 12rem;
}
.catchup_wrapper .inner {
  padding: 8rem 0 0;
  display: flex;
  justify-content: center;
  width: 80%;
  margin: auto;
  max-width: 1440px;
}
.catchup_wrapper .inner .txt h3 {
  width: 32rem;
}
.catchup_wrapper .inner .txt p {
  font-size: 2rem;
  line-height: 3.4rem;
  padding: 4rem 0;
}
.catchup_wrapper .inner .btn {
  font-size: 1.6rem;
  background-color: #013b6b;
  color: #fff;
  margin-left: 0;
  padding: 2.2rem 3rem 2.2rem 0;
  width: 25rem;
}
.catchup_wrapper .inner .btn::after {
  border-top: 0.4rem solid #013b6b;
  border-right: 0.4rem solid #013b6b;
}
.catchup_wrapper .inner .banner {
  display: flex;
  justify-content: space-between;
  align-content: flex-start;
  flex-wrap: wrap;
  margin-left: 8rem;
}
.catchup_wrapper .inner .banner a {
  width: 31%;
  margin-bottom: 3%;
  display: block;
}
@media screen and (min-width: 769px) {
  .catchup_wrapper .inner .banner a:nth-of-type(3n+2):last-of-type {
    margin-left: 3.5%;
    margin-right: auto;
  }
}
@media screen and (max-width: 768px) {
  .catchup_wrapper .inner {
    display: block;
    max-width: 100%;
  }
  .catchup_wrapper .inner .txt h3 {
    width: 47.8rem;
    margin: auto;
  }
  .catchup_wrapper .inner .txt p {
    font-size: 3.2rem;
    line-height: 5.4rem;
    text-align: center;
  }
  .catchup_wrapper .inner .banner {
    margin: auto;
    max-width: 67rem;
  }
  .catchup_wrapper .inner .banner a {
    width: 48%;
  }
  .catchup_wrapper .inner .btn {
    width: 48rem;
    padding: 3.5rem 0;
    margin: 5rem auto 0;
    font-size: 3.2rem;
  }
  .catchup_wrapper .inner .btn::before {
    width: 3rem;
    height: 3rem;
  }
  .catchup_wrapper .inner .btn::after {
    right: 4.2rem;
  }
}

.notice_wrapper {
  margin: 6rem auto 0;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .notice_wrapper {
    width: 81.667%;
    max-width: calc(980px + 6rem);
    padding: 0 3rem;
  }
}
@media screen and (max-width: 768px) {
  .notice_wrapper {
    width: 67rem;
  }
}
.notice_wrapper + .notice_wrapper {
  margin-top: 3rem;
}
.notice_wrapper + .notice_wrapper .notice_buttons {
  padding-top: 1rem;
}
.notice_wrapper * {
  box-sizing: border-box;
}
.notice_wrapper *::before, .notice_wrapper *::after {
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .notice_wrapper .main_more {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .notice_wrapper .main_more {
    margin-top: 4rem;
  }
}
.notice_wrapper + .link_wrapper {
  margin-top: 6rem;
}
.notice_box {
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .notice_box {
    display: flex;
    justify-content: space-between;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 0.7rem rgba(0, 0, 0, 0.1);
  }
}
@media screen and (max-width: 768px) {
  .notice_box {
    border-radius: 1.6rem;
    box-shadow: 0 0.3rem 0.3rem rgba(0, 0, 0, 0.1);
  }
}
.notice_box.is-important {
  color: #fc4042;
}
.notice_box.is-important::before {
  content: "";
  position: absolute;
  border: 0.2rem solid;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  .notice_box.is-important::before {
    border-radius: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .notice_box.is-important::before {
    border-radius: 1.6rem;
  }
}
.notice_box.is-important .notice_box_head {
  background: #fc4042;
}
.notice_box_head {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0d5faf;
  font-weight: 700;
  color: #fff;
}
@media screen and (min-width: 769px) {
  .notice_box_head {
    flex-shrink: 0;
    width: 10em;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .notice_box_head {
    height: 2.286em;
    font-size: 2.8rem;
  }
}
.notice_box_body {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .notice_box_body {
    padding: 1.7rem 2rem 1.7rem 3rem;
  }
}
@media screen and (max-width: 768px) {
  .notice_box_body {
    padding: 3rem 0;
  }
}
.notice_box_items {
  list-style: none;
}
@media screen and (min-width: 769px) {
  .notice_box_items {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .notice_box_items {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 769px) {
  .notice_box_items > li + li {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .notice_box_items > li + li {
    margin-top: 2rem;
  }
}
.notice_box_item {
  letter-spacing: 0.07em;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .notice_box_item {
    display: flex;
    line-height: 1.625em;
  }
}
@media screen and (max-width: 768px) {
  .notice_box_item {
    line-height: 1.715em;
  }
}
.notice_box_item time {
  display: block;
  color: #333;
}
@media screen and (min-width: 769px) {
  .notice_box_item time {
    flex-shrink: 0;
    width: 7.5em;
  }
}
@media screen and (max-width: 768px) {
  .notice_box_item time {
    margin-bottom: -0.4rem;
    padding: 0 1.358em 0 2.5em;
  }
}
@media screen and (min-width: 769px) {
  .notice_box_item p {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .notice_box_item p {
    padding: 0 1.358em;
  }
}
.notice_box_item p a {
  display: block;
  position: relative;
  color: inherit;
}
@media screen and (min-width: 769px) {
  .notice_box_item p a {
    padding-left: 1.25em;
  }
}
@media screen and (max-width: 768px) {
  .notice_box_item p a {
    padding-left: 1.072em;
  }
}
.notice_box_item p a::before {
  content: "";
  position: absolute;
  left: 0;
  transform: rotateZ(45deg);
}
@media screen and (min-width: 769px) {
  .notice_box_item p a::before {
    border-right: 0.188em solid;
    border-top: 0.188em solid;
    width: 0.563em;
    height: 0.563em;
    top: 0;
    bottom: 0;
    margin: auto 0;
  }
}
@media screen and (max-width: 768px) {
  .notice_box_item p a::before {
    border-right: 0.179em solid;
    border-top: 0.179em solid;
    width: 0.572em;
    height: 0.572em;
    top: 0.594em;
  }
}
.notice_box_item p a[href$=".pdf"]::after {
  content: "";
  display: inline-block;
  background-image: url(/assets/common/img/icon_pdf.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.5em;
  height: 1.2em;
  margin-left: 0.3em;
  vertical-align: text-top;
  transform: translate(0, 15%);
}
@media screen and (min-width: 769px) {
  .notice_box + .notice_box {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .notice_box + .notice_box {
    margin-top: 4rem;
  }
}
@media screen and (min-width: 769px) {
  .notice_box + .notice_buttons {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .notice_box + .notice_buttons {
    margin-top: 6rem;
  }
}
.notice_buttons {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 769px) {
  .notice_buttons {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .notice_buttons {
    flex-direction: column;
  }
}
.notice_button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 2px solid transparent;
  border-radius: 0.6rem;
  padding: 1rem 3.3rem;
  font-weight: 400;
  cursor: pointer;
  color: #fff;
}
@media screen and (min-width: 769px) {
  .notice_button {
    width: 49.123%;
    min-height: 7rem;
    line-height: 1.385em;
    font-size: 2.3rem;
  }
  .notice_button:nth-of-type(odd):last-of-type {
    width: 100%;
  }
  .notice_button:nth-of-type(n+3) {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .notice_button {
    width: 100%;
    min-height: 10rem;
    line-height: 1.313em;
    font-size: 3.2rem;
  }
  .notice_button + .notice_button {
    margin-top: 2rem;
  }
}
.notice_button.full {
  width: 100%;
}
.notice_button strong {
  display: block;
}
@media screen and (min-width: 769px) {
  .notice_button strong + small {
    margin-left: 0.8rem;
  }
}
@media screen and (max-width: 768px) {
  .notice_button strong + small {
    margin-left: 1.4rem;
  }
}
.notice_button small {
  display: block;
}
@media screen and (min-width: 769px) {
  .notice_button small {
    line-height: 1.334em;
    font-size: 0.693em;
  }
}
@media screen and (max-width: 768px) {
  .notice_button small {
    line-height: 1.273em;
    font-size: 0.688em;
  }
}
.notice_button::after {
  content: "";
  position: absolute;
  display: block;
  right: 2rem;
  top: 0;
  bottom: 0;
  margin: auto 0;
  transform: rotateZ(45deg);
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .notice_button::after {
    border-right: 0.3rem solid;
    border-top: 0.3rem solid;
    width: 0.9rem;
    height: 0.9rem;
  }
}
@media screen and (max-width: 768px) {
  .notice_button::after {
    border-right: 0.4rem solid;
    border-top: 0.4rem solid;
    width: 1.15rem;
    height: 1.15rem;
  }
}
.notice_button[href$=".pdf"]::after {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  border: none;
  transform: none;
}
@media screen and (min-width: 769px) {
  .notice_button[href$=".pdf"]::after {
    width: 2.5rem;
    height: 1.8rem;
  }
}
.notice_button.col01 {
  background: #23bed3;
}
.notice_button.col02 {
  background: #1482c7;
}
.notice_button.col03 {
  background: #2fc28e;
}
.notice_button.col04 {
  background: #ffba2f;
}
.notice_button.col05 {
  background: #02a9df;
}
.notice_button.col06 {
  background: #fff;
  border-color: #02a9df;
  color: #02a9df;
}
.notice_button.col06[href$=".pdf"]::after {
  background-image: url(../../common/img/icon_pdf.svg);
}
.notice_button.col07 {
  background: #205599;
}

.topics_wrapper {
  position: relative;
  margin-top: 10rem;
}
.topics_wrapper .main_more {
  margin-top: 4rem;
}
.topics_inner {
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .topics_inner {
    max-width: calc(1140px + 6rem);
    padding: 0 3rem;
  }
}
@media screen and (max-width: 768px) {
  .topics_inner {
    width: 67rem;
  }
}

.recommend_video_wrapper .recommend_video_contents {
  display: flex;
  justify-content: center;
  max-width: 980px;
  width: 98rem;
  margin: 0 auto;
}
.recommend_video_wrapper .recommend_video_contents .recommend_video_item + .recommend_video_item {
  margin-left: 4rem;
}
.recommend_video_wrapper .recommend_video_contents .recommend_video_item p {
  font-size: 1.6rem;
  font-weight: bold;
  margin-top: 2.5rem;
}
.recommend_video_wrapper .recommend_video_contents .recommend_video_item .btn {
  font-size: 1.6rem;
  width: 20rem;
  padding: 1.4rem 0;
  border: 0.2rem solid #333333;
  margin-top: 2.5rem;
}
.recommend_video_wrapper .recommend_video_contents .recommend_video_item .btn::after {
  right: 2rem;
}
.recommend_video_wrapper .recommend_video_contents .recommend_video_item .video {
  position: relative;
}
.recommend_video_wrapper .recommend_video_contents .recommend_video_item .video::after {
  content: "";
  display: inline-block;
  background-image: url(/assets/common/img/fitness/top/icon_v.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 8rem;
  height: 8rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .recommend_video_wrapper .recommend_video_contents {
    display: block;
    width: 67rem;
  }
  .recommend_video_wrapper .recommend_video_contents .recommend_video_item p {
    font-size: 3.2rem;
    margin-top: 4rem;
  }
  .recommend_video_wrapper .recommend_video_contents .recommend_video_item .btn {
    width: 35rem;
    font-size: 2.8rem;
    padding: 2rem 0;
    margin-top: 4rem;
  }
  .recommend_video_wrapper .recommend_video_contents .recommend_video_item + .recommend_video_item {
    margin-left: 0;
    margin-top: 8rem;
  }
}

@media screen and (min-width: 769px) {
  .censshop_wrapper {
    padding-top: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .censshop_wrapper {
    padding-top: 15rem;
  }
}

.access_wrapper {
  font-weight: 400;
  background: var(--title-key-color-light);
}
.access_wrapper * {
  box-sizing: border-box;
}
.access_wrapper *::before, .access_wrapper *::after {
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .access_wrapper {
    border-radius: 0 18.7rem 0 0;
    padding: 8rem 0;
  }
}
@media screen and (max-width: 768px) {
  .access_wrapper {
    padding: 8rem 0 10rem;
  }
}
.access_inner {
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .access_inner {
    max-width: calc(1140px + 6rem);
    padding: 0 3rem;
  }
}
@media screen and (max-width: 768px) {
  .access_inner {
    width: 67rem;
  }
}
.access_box {
  border-radius: 3.2rem;
  margin: 0 auto;
  overflow: hidden;
}
.access_box_head {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #dcdcdc;
  font-weight: 700;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .access_box_head {
    min-height: 3.5em;
    padding: 0.25em 1em;
    line-height: 1.5em;
    font-size: 3.2rem;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .access_box_head {
    padding: 0.825em 0.875em;
    line-height: 1.35em;
    font-size: 4rem;
  }
}
.access_box_body {
  background: #fff;
}
@media screen and (min-width: 769px) {
  .access_box_body {
    padding: 7.2rem 8rem 6rem;
  }
}
@media screen and (max-width: 768px) {
  .access_box_body {
    padding: 4rem 4rem 6rem;
  }
}
.access_box .panel01-tags {
  margin-bottom: -1rem;
  padding: 3rem;
}
.access_box .panel01-tags > span {
  margin: 0 2rem 1rem 0;
}
.main_title + .access_box {
  margin-top: 6rem;
}
.access_map {
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .access_map {
    padding: 24.184% 50%;
  }
}
@media screen and (max-width: 768px) {
  .access_map {
    width: 59rem;
    height: 28.6rem;
  }
}
.access_map > div {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 769px) {
  .access_map > div {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
  }
}
.access_map > div > * {
  border: none;
  width: 100%;
  height: 100%;
}
.access_map + .main_desc01 {
  margin-top: 8rem;
}
.access_shop {
  margin-top: 8rem;
}
.access_shop_head {
  position: relative;
  letter-spacing: 0.02em;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .access_shop_head {
    padding-left: 1.137em;
    line-height: 1.182em;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 768px) {
  .access_shop_head {
    padding-left: 0.65em;
    line-height: 1.3em;
    font-size: 4rem;
  }
}
.access_shop_head::before {
  content: "";
  position: absolute;
  background: var(--title-key-color);
  top: 50%;
  transform: translate(0, -50%);
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  .access_shop_head::before {
    border-radius: 0.182em;
    width: 0.137em;
    height: 1.182em;
    left: 0.046em;
  }
}
@media screen and (max-width: 768px) {
  .access_shop_head::before {
    border-radius: 0.15em;
    width: 0.15em;
    height: 1.3em;
    left: 0;
  }
}
@media screen and (min-width: 769px) {
  .access_shop_body {
    margin-top: 3.4rem;
  }
}
@media screen and (max-width: 768px) {
  .access_shop_body {
    margin-top: 6.6rem;
  }
}
@media screen and (min-width: 769px) {
  .access_shop_items {
    display: flex;
    flex-wrap: wrap;
  }
}
.access_shop_items > li {
  display: block;
  list-style: none;
}
@media screen and (min-width: 769px) {
  .access_shop_items > li {
    width: 33.3333333333%;
  }
  .access_shop_items > li:nth-child(n+4) {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .access_shop_items > li + li {
    margin-top: 5.8rem;
  }
}
.access_shop_item {
  display: block;
  position: relative;
  letter-spacing: 0.07em;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .access_shop_item {
    padding: 0.143em 0 0.143em 2.143em;
    line-height: 1.429em;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .access_shop_item {
    padding: 0 0 0 1.715em;
    line-height: 1.143em;
    font-size: 2.8rem;
  }
}
.access_shop_item::before, .access_shop_item::after {
  content: "";
  position: absolute;
  color: #fff;
}
.access_shop_item::before {
  background: #000;
  border-radius: 50%;
  left: 0;
  top: 0;
}
@media screen and (min-width: 769px) {
  .access_shop_item::before {
    width: 24px;
    width: 1.715em;
    height: 24px;
    height: 1.715em;
  }
}
@media screen and (max-width: 768px) {
  .access_shop_item::before {
    width: 1.143em;
    height: 1.143em;
  }
}
.access_shop_item::after {
  transform: rotateZ(45deg);
}
@media screen and (min-width: 769px) {
  .access_shop_item::after {
    border-right: 0.215em solid;
    border-top: 0.215em solid;
    width: 0.643em;
    height: 0.643em;
    left: 0.429em;
    top: 0.5em;
  }
}
@media screen and (max-width: 768px) {
  .access_shop_item::after {
    border-right: 0.143em solid;
    border-top: 0.143em solid;
    width: 0.465em;
    height: 0.465em;
    left: 0.25em;
    top: 0.322em;
  }
}

.banner_wrapper {
  padding: 8rem 0;
}
.banner_wrapper + .catchup_wrapper {
  margin-top: 4rem;
}
.banner_inner {
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .banner_inner {
    max-width: 114rem;
  }
}
@media screen and (max-width: 768px) {
  .banner_inner {
    width: 67rem;
  }
}
@media screen and (min-width: 769px) {
  .banner_inner.wid2 {
    max-width: 80rem;
  }
}
@media screen and (min-width: 769px) {
  .banner_inner.wid3 {
    width: 81.667%;
    max-width: calc(980px + 6rem);
    padding: 0 3rem;
    box-sizing: border-box;
  }
}

.bnrrow_wrapper {
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .bnrrow_wrapper {
    max-width: 980px;
    width: 98rem;
  }
}
@media screen and (max-width: 768px) {
  .bnrrow_wrapper {
    width: 63rem;
  }
}
@media screen and (max-width: 768px) {
  .bnrrow_wrapper + .program_cont_wrapper {
    margin-top: 8rem !important;
  }
}
@media screen and (min-width: 769px) {
  .bnrrow_inner {
    display: flex;
    justify-content: space-between;
  }
}
.bnrrow_inner > a {
  display: block;
  line-height: 0;
}
@media screen and (max-width: 768px) {
  .bnrrow_inner > a + a {
    margin-top: 6rem;
  }
}
@media screen and (min-width: 769px) {
  .bnrrow_inner > a.wid01 {
    width: 47.96%;
  }
}

.pdflink_wrapper {
  margin: 0 auto 10rem;
}
@media screen and (max-width: 768px) {
  .pdflink_wrapper {
    margin-top: 10rem;
  }
}
.pdflink_inner {
  background: #fff;
  border-radius: 1.6rem;
  margin: 0 auto;
  box-shadow: 0 5px 7px rgba(0, 0, 0, 0.1), 0 0 7px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .pdflink_inner {
    max-width: calc(1140px + 6rem);
    padding: 4rem 11rem;
  }
}
@media screen and (max-width: 768px) {
  .pdflink_inner {
    width: 67rem;
    padding: 4rem 5.6rem;
  }
}

.gc_wrapper {
  margin: 0 auto 10rem;
}
@media screen and (max-width: 768px) {
  .gc_wrapper {
    margin-top: 10rem;
  }
}
@media screen and (min-width: 769px) {
  .gc_wrapper .cal_wrapper {
    max-width: calc(1140px + 6rem);
    padding: 0 3rem;
  }
}
@media screen and (max-width: 768px) {
  .gc_wrapper .cal_wrapper {
    width: 67rem;
  }
}
@media screen and (min-width: 769px) {
  .gc_wrapper .cal_wrapper > p {
    padding-top: 1rem;
    line-height: 1.182em;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .gc_wrapper .cal_wrapper > p {
    padding-top: 2rem;
    line-height: 1.143em;
    font-size: 2.8rem;
  }
}

@media screen and (min-width: 769px) {
  .page-404 .main_section {
    padding-top: 22rem;
  }
}
@media screen and (max-width: 768px) {
  .page-404 .main_section {
    padding-top: 16rem;
  }
}
.page-404 .text01-p-404 {
  line-height: 1;
  font-weight: 900;
  text-align: center;
  color: var(--title-key-color);
}
@media screen and (min-width: 769px) {
  .page-404 .text01-p-404 {
    padding-bottom: 2.8rem;
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 768px) {
  .page-404 .text01-p-404 {
    padding-bottom: 15rem;
    font-size: 7.2rem;
  }
}
.page-404 .text01-p-404 strong {
  display: inline-block;
  font-size: 3.334em;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .page-404 .text01-p-404 strong {
    padding-bottom: 2.2rem;
  }
}

.recpart_wrapper {
  margin: 6rem auto 0;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .recpart_wrapper {
    width: 95%;
    max-width: calc(1140px + 6rem);
    padding: 8rem 3rem;
  }
}
@media screen and (max-width: 768px) {
  .recpart_wrapper {
    width: 67rem;
    padding-bottom: 10rem;
  }
}
.recpart_wrapper * {
  box-sizing: border-box;
}
.recpart_wrapper *::before, .recpart_wrapper *::after {
  box-sizing: border-box;
}
.recpart_wrapper + .banner_wrapper {
  padding-top: 0;
}
.recpart_wrapper + .banner_wrapper .banner_inner {
  position: relative;
}
.recpart_wrapper + .banner_wrapper .banner_inner::before {
  content: "";
  position: absolute;
  border-top: 1px solid var(--title-key-color-ash);
  left: 0;
  right: 0;
  top: -4rem;
}
.recpart_title {
  line-height: 0;
  text-align: center;
}
.recpart_buttons {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .recpart_buttons {
    padding-top: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .recpart_buttons {
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 2rem;
  }
}
.recpart_button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  font-weight: 700;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 769px) {
  .recpart_button {
    width: 24.299%;
    min-height: 7rem;
  }
  .recpart_button + .recpart_button {
    margin-left: 0.936%;
  }
}
@media screen and (max-width: 768px) {
  .recpart_button {
    width: 48.508%;
    min-height: 10.4rem;
    margin-top: 2rem;
  }
}
.recpart_button::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  transform: rotateZ(45deg);
}
@media screen and (min-width: 769px) {
  .recpart_button::after {
    border-right: 0.3rem solid;
    border-top: 0.3rem solid;
    width: 0.9rem;
    height: 0.9rem;
    right: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .recpart_button::after {
    border-right: 0.4rem solid;
    border-top: 0.4rem solid;
    width: 1.3rem;
    height: 1.3rem;
    right: 1.5rem;
  }
}
@media screen and (min-width: 769px) {
  .recpart_button > strong {
    line-height: 1.2em;
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .recpart_button > strong {
    line-height: 1.322em;
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 769px) {
  .recpart_button > small {
    line-height: 1.5em;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .recpart_button > small {
    line-height: 1.542em;
    font-size: 2.4rem;
  }
}
.recpart_button.col01 {
  background: #e5687c;
}
.recpart_button.col02 {
  background: #5dcf93;
}
.recpart_button.col03 {
  background: #edbf39;
}
.recpart_button.col04 {
  background: #ef9579;
}
.recpart_button.col05 {
  background: #806dd1;
}
.recpart_button.col06 {
  background: #ef7cc0;
}
.recpart_button.col07 {
  background: #f8a819;
}
.recpart_button.col08 {
  background: #59cec6;
}
.recpart_button.col09 {
  background: #7d87e4;
}

html[lang=en] header .outsideLink .link_btn a {
  font-size: 1.55rem;
  padding: 0.5rem 0.8rem;
  text-align: center;
}
html[lang=en] header .language > li::before {
  left: 1rem;
}
html[lang=en] header .language > li::after {
  right: 1rem;
}