@charset "UTF-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
/*------------------------------------------------------------
	Default
------------------------------------------------------------*/
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, dialog, figure, footer, header, button,
hgroup, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 1em;
}

html {
  margin-top: 0 !important;
  font-size: 62.5%;
}

body, table,
input, textarea, select, option, button,
h1, h2, h3, h4, h5, h6 {
  line-height: 1.1;
  font-family: 'Noto Sans Japanese', sans-serif;
}

b, strong, .bold {
  font-family: 'Noto Sans Japanese', sans-serif;
}

/* IE11だけに適応 */
_:lang(x)::-ms-backdrop, .selector {
  font-family: 'Noto Sans Japanese', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

table,
input, textarea, select, option {
  line-height: 1.1;
}

::placeholder {
  color: #C3C3C3;
}

/* IE */
:-ms-input-placeholder {
  color: #C3C3C3;
}

/* Edge */
::-ms-input-placeholder {
  color: #C3C3C3;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

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

a {
  text-decoration: none;
  color: #000;
}

a:hover {
  opacity: 0.85;
}

* {
  box-sizing: border-box;
}

.under_link {
  text-decoration: underline;
}

.sp-only {
  display: none;
}

@media screen and (max-width: 640px) {
  .sp-only {
    display: block;
  }
}

.pc-only {
  display: block;
}

@media screen and (max-width: 640px) {
  .pc-only {
    display: none;
  }
}

.no_scroll {
  overflow: hidden;
}

form label {
  white-space: nowrap;
}

form .input_radio {
  margin-right: 16px;
}

form .input_radio input[type="radio"] {
  display: none;
}

form .input_radio input[type=radio]:checked + label::after {
  opacity: 1;
}

form .input_radio label {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding-left: 24px;
  position: relative;
  width: auto;
}

form .input_radio label::before {
  content: '';
  display: block;
  border: 1px solid #000;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -8px;
}

form .input_radio label::after {
  content: '';
  display: block;
  background: #000;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  opacity: 0;
  position: absolute;
  left: 4px;
  top: 50%;
  margin-top: -4px;
}

form .input_checkbox {
  margin-right: 16px;
}

form .input_checkbox input[type=checkbox] {
  display: none;
}

form .input_checkbox input[type=checkbox]:checked + label::before {
  background-color: #000;
}

form .input_checkbox input[type=checkbox]:checked + label::after {
  opacity: 1;
}

form .input_checkbox label {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding-left: 24px;
  position: relative;
  width: auto;
}

form .input_checkbox label::before {
  content: '';
  display: block;
  border: 1px solid #000;
  width: 14px;
  height: 14px;
  position: absolute;
  border-radius: 2px;
  left: 0;
  top: 50%;
  margin-top: -7px;
}

form .input_checkbox label::after {
  content: '';
  display: block;
  background-image: url(../img/common/icon_check.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 12px;
  height: 10px;
  position: absolute;
  left: 2px;
  top: 50%;
  margin-top: -3px;
  opacity: 0;
}

form input[type="text"] {
  width: 100%;
  background-color: #F5F5F5;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 1.4rem;
  line-height: 1.85714;
}

@media screen and (max-width: 640px) {
  form input[type="text"] {
    font-size: 1.6rem;
    line-height: 1.5;
    padding: 10px;
  }
}

form textarea {
  width: 100%;
  background-color: #F5F5F5;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 1.6rem;
  line-height: 1.5;
}

@media screen and (max-width: 640px) {
  form textarea {
    padding: 10px;
  }
}

.drawer--right .drawer-nav {
  right: -600px;
}

@media screen and (max-width: 640px) {
  .drawer--right .drawer-nav {
    right: -100%;
  }
}

.drawer--right.drawer-open .drawer-hamburger {
  right: 0;
}

.drawer-hamburger {
  position: relative;
  width: 30px;
  padding: 0 35px;
}

@media screen and (max-width: 640px) {
  .drawer-hamburger {
    padding: 0 8px;
  }
}

.drawer-hamburger:hover {
  background-color: #006782;
}

.drawer-hamburger-icon {
  margin-top: 0;
  background-color: #fff;
  height: 3px;
  border-radius: 1px;
}

@media screen and (max-width: 640px) {
  .drawer-hamburger-icon {
    width: 14px;
    margin: auto;
    height: 1px;
  }
}

.drawer-hamburger-icon::before {
  background-color: #fff;
  height: 3px;
  border-radius: 1px;
}

@media screen and (max-width: 640px) {
  .drawer-hamburger-icon::before {
    height: 1px;
    top: -3px;
  }
}

.drawer-hamburger-icon::after {
  background-color: #fff;
  height: 3px;
  border-radius: 1px;
}

@media screen and (max-width: 640px) {
  .drawer-hamburger-icon::after {
    height: 1px;
    top: 3px;
  }
}

.drawer-nav {
  top: 100px;
  z-index: 10;
}

@media screen and (max-width: 640px) {
  .drawer-nav {
    top: 89px;
  }
}

.drawer-overlay {
  top: 100px;
  background-color: rgba(0, 103, 130, 0.5);
}

@media screen and (max-width: 640px) {
  .drawer-overlay {
    top: 89px;
  }
}

.scroll-nav {
  width: 165px;
  border: 0.6px solid #A9C9D1;
  background-color: #fff;
  border-radius: 20px;
  position: fixed;
  right: 30px;
  bottom: 40px;
  z-index: 3;
  padding: 14px 10px 44px;
}

@media screen and (max-width: 1360px) {
  .scroll-nav {
    display: none;
  }
}

.scroll-nav__list {
  position: relative;
}

.scroll-nav__item {
  font-size: 1.1rem;
  line-height: 1.72727;
  padding: 10px 0 10px 24px;
  margin-bottom: auto !important;
  position: relative;
}

.scroll-nav__item:first-of-type {
  padding-top: 13px;
}

.scroll-nav__item:first-of-type::after {
  top: 50%;
}

.scroll-nav__item:last-of-type::after {
  height: 50%;
}

.scroll-nav__item::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  background: #006782;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
  z-index: 2;
}

.scroll-nav__item::after {
  content: '';
  display: block;
  width: 1px;
  height: 100%;
  background: #006782;
  position: absolute;
  left: 5.5px;
  top: 0;
  bottom: 0;
}

.scroll-nav__link {
  color: #006782;
}

.scroll-nav .scroll-nav__item--active {
  font-weight: normal;
}

.scroll-nav .scroll-nav__item--active a {
  color: #DE8538;
}

.scroll-nav .scroll-nav__item--active::before {
  width: 12px;
  height: 12px;
  left: 0;
  background: #DE8538;
}

.scroll-nav .c-toppage {
  position: absolute;
  margin: auto;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  background-color: #006782;
  color: #fff;
  border-radius: 0 0 20px 20px;
  padding: 10px 0;
  cursor: pointer;
}

.scroll-nav .c-toppage span {
  display: block;
  text-align: center;
}

.scroll-nav .c-toppage span::before {
  content: '';
  display: block;
  border-style: solid;
  border-width: 0 5px 8.7px 5px;
  border-color: transparent transparent #ffffff transparent;
  position: absolute;
  left: 14px;
  top: 11px;
}

.scroll-nav__item {
  margin-bottom: 5px;
}

.scroll-nav__item--active {
  font-weight: 600;
  position: relative;
}

.scroll-nav__item--active:before {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  background: black;
  position: absolute;
  left: -20px;
  top: 0;
}

.modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999999999999;
}

.modal__bg {
  background: rgba(240, 248, 250, 0.85);
  height: 100vh;
  position: absolute;
  width: 100%;
}

.modal__content {
  position: fixed;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 960px) {
  .modal__content {
    width: 96%;
  }
}

@media screen and (max-width: 960px) {
  .modal__content .search_box {
    width: 100%;
  }
}

/*------------------------------------------------------------
  Layout
------------------------------------------------------------*/
.wrapper {
  margin: 0 auto;
  width: 100%;
}

.container {
  margin: 0 auto;
  width: 960px;
}

@media screen and (max-width: 960px) {
  .container {
    padding: 0 10px;
    width: 100%;
  }
}

.page_container {
  margin: 0 auto;
  width: 920px;
}

@media screen and (max-width: 960px) {
  .page_container {
    padding: 0 10px;
    width: 100%;
  }
}

.c-header {
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999996;
  background-color: #fff;
  height: 100px;
}

@media screen and (max-width: 640px) {
  .c-header {
    height: 90px;
  }
}

.c-header__inner {
  height: 100px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 640px) {
  .c-header__inner {
    height: 60px;
  }
}

.c-header__title {
  color: #006782;
  font-size: 1.2rem;
  font-weight: normal;
  padding-left: 60px;
}

@media screen and (max-width: 834px) {
  .c-header__title {
    padding-left: 0;
  }
}

@media screen and (max-width: 640px) {
  .c-header__title {
    background-color: #F0F8FA;
    padding: 8px 36px;
    font-size: 1rem;
  }
}

.c-header__title span {
  font-size: 1.4rem;
  font-weight: 500;
  margin-left: 5px;
}

@media screen and (max-width: 640px) {
  .c-header__title span {
    font-size: 1.2rem;
  }
}

.c-header__logo {
  position: absolute;
  left: 0;
  right: 0;
  width: 416px;
  margin: auto;
}

@media screen and (max-width: 960px) {
  .c-header__logo {
    width: 260px;
  }
}

@media screen and (max-width: 834px) {
  .c-header__logo {
    width: 200px;
  }
}

@media screen and (max-width: 640px) {
  .c-header__logo {
    position: relative;
    width: 194px;
    margin-left: 20px;
  }
}

.c-header__logo a {
  display: block;
}

.c-header__logo a img {
  max-width: 100%;
  height: auto;
}

.c-header__right {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.c-header__search {
  height: 100%;
  width: 100px;
  background-color: #A9C9D1;
  cursor: pointer;
}

@media screen and (max-width: 640px) {
  .c-header__search {
    width: 46px;
  }
}

.c-header__search img {
  width: 28px;
  height: 28px;
}

@media screen and (max-width: 640px) {
  .c-header__search img {
    width: 13px;
    height: 13px;
  }
}

.c-header__btn-menu {
  height: 100%;
  background-color: #006782;
}

.c-header__nav {
  background-color: #006782;
  width: 600px;
  padding: 76px 0 0 66px;
}

@media screen and (max-width: 640px) {
  .c-header__nav {
    width: 100%;
    padding: 38px 0;
  }
}

.c-header__nav_inner > ul {
  max-width: 100%;
  width: 400px;
  font-size: 2rem;
  font-weight: 500;
}

@media screen and (max-width: 640px) {
  .c-header__nav_inner > ul {
    font-size: 1.7rem;
    width: 100%;
    padding: 0 30px;
  }
}

.c-header__nav_inner > ul > li {
  letter-spacing: 0.02em;
  line-height: 1.47059;
  margin-bottom: 40px;
}

@media screen and (max-width: 640px) {
  .c-header__nav_inner > ul > li {
    margin-bottom: 30px;
  }
}

.c-header__nav_inner > ul > li a {
  color: #fff;
  display: block;
}

.c-header__nav_inner_top {
  border-bottom: 1px solid #fff;
}

.c-header__nav_inner_bottom {
  margin-top: 30px;
}

.c-header__nav_inner_bottom > li a {
  position: relative;
  padding-left: 30px;
}

.c-header__nav_inner_bottom > li a::before {
  content: url("../img/common/icon_white_link.svg");
  position: absolute;
  top: 0;
  left: 0;
}

.sec_ttl {
  font-size: 2.4rem;
  letter-spacing: 0.02em;
  line-height: 1.15;
  text-align: center;
  color: #006782;
  position: relative;
}

@media screen and (max-width: 640px) {
  .sec_ttl {
    font-size: 2rem;
    line-height: 1.47059;
  }
}

.sec_ttl::after {
  content: '';
  position: absolute;
  background-color: #006782;
  width: 100px;
  height: 1px;
  margin: auto;
  right: 0;
  left: 0;
  bottom: -20px;
}

@media screen and (max-width: 640px) {
  .sec_ttl::after {
    bottom: -10px;
  }
}

.sp_toppage {
  display: none;
  width: 40px;
  height: 40px;
  background-color: #00738f;
  cursor: pointer;
  position: fixed;
  right: 30px;
  bottom: 90px;
  border-radius: 50%;
  z-index: 9998;
}

@media screen and (max-width: 1360px) {
  .sp_toppage {
    display: block;
  }
}

@media screen and (max-width: 640px) {
  .sp_toppage {
    right: 10px;
    bottom: 50px;
  }
}

.sp_toppage::before {
  content: '';
  position: absolute;
  border-style: solid;
  border-width: 0 6px 10.4px 6px;
  border-color: transparent transparent #ffffff transparent;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.c-footer .sec__support_box {
  background-color: #FFF8F8;
  padding: 80px 0 78px;
}

@media screen and (max-width: 640px) {
  .c-footer .sec__support_box {
    padding: 50px 0 52px;
  }
}

.c-footer__copyright {
  background-color: #006782;
  padding: 20px 0;
}

.c-footer__copyright_text {
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 300;
}

.search_box {
  max-width: 100%;
  width: 860px;
  background-color: #FFFFFF;
  border: 0.6px solid #A9C9D1;
  margin: auto;
}

@media screen and (max-width: 900px) {
  .search_box {
    width: 96%;
  }
}

.search_box .search_box_inner {
  width: 800px;
  margin: auto;
  margin-top: 30px;
}

@media screen and (max-width: 840px) {
  .search_box .search_box_inner {
    width: 100%;
    padding: 20px 10px;
  }
}

@media screen and (max-width: 640px) {
  .search_box .search_box_inner {
    margin-top: auto;
  }
}

.search_box .search_box_inner_ttl {
  font-size: 1.8rem;
  line-height: 1.44444;
  color: #006782;
  padding-left: 40px;
  padding-bottom: 16px;
  border-bottom: 0.6px solid #A9C9D1;
  position: relative;
}

@media screen and (max-width: 640px) {
  .search_box .search_box_inner_ttl {
    font-size: 1.4rem;
    padding-bottom: 10px;
    padding-left: 26px;
    margin-bottom: 10px;
  }
}

.search_box .search_box_inner_ttl::before {
  content: '';
  background-image: url(../img/common/icon_blue_search.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: -2px;
  left: 0;
  width: 30px;
  height: 30px;
}

@media screen and (max-width: 640px) {
  .search_box .search_box_inner_ttl::before {
    width: 22px;
    height: 22px;
  }
}

.search_box .search_box_inner_form form dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #F5F5F5;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

@media screen and (max-width: 640px) {
  .search_box .search_box_inner_form form dl {
    display: block;
    padding: 10px 0;
    font-size: 1.4rem;
    line-height: 1.42857;
  }
}

.search_box .search_box_inner_form form dl dt {
  width: 150px;
}

@media screen and (max-width: 640px) {
  .search_box .search_box_inner_form form dl dt {
    width: 100%;
    margin-bottom: 10px;
  }
}

.search_box .search_box_inner_form form dl dd {
  width: calc(100% - 150px);
}

@media screen and (max-width: 640px) {
  .search_box .search_box_inner_form form dl dd {
    width: 100%;
  }
}

.search_box .search_box_inner_form form dl dd.input_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.search_box .search_box_inner_form form dl dd.input_list_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 640px) {
  .search_box .search_box_inner_form form dl dd.input_list_bottom {
    display: block;
  }
}

.search_box .search_box_inner_form form dl dd.input_list_bottom .input_checkbox {
  margin-right: auto;
}

@media screen and (max-width: 640px) {
  .search_box .search_box_inner_form form dl dd.input_list_bottom .input_checkbox {
    margin-bottom: 6px;
  }
}

.search_box .search_box_inner_form form .btn_search {
  margin-top: 26px;
  margin-bottom: 36px;
}

@media screen and (max-width: 640px) {
  .search_box .search_box_inner_form form .btn_search {
    margin-bottom: 22px;
  }
}

.news_list {
  width: 880px;
  margin: auto;
}

@media screen and (max-width: 940px) {
  .news_list {
    width: 100%;
  }
}

.news_list_inner {
  padding: 20px 0;
  border-bottom: 1px solid #C3C3C3;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.625;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 640px) {
  .news_list_inner {
    display: block;
    padding: 16px 0 10px;
    font-size: 1.4rem;
    line-height: 1.71429;
  }
}

.news_list_inner_date {
  font-weight: 500;
  margin-right: 20px;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 640px) {
  .news_list_inner_date {
    margin-right: auto;
    margin-bottom: 4px;
  }
}

.support_box {
  background-color: #fff;
  padding: 60px 40px 50px 60px;
}

@media screen and (max-width: 960px) {
  .support_box {
    padding: 60px 30px 60px;
  }
}

@media screen and (max-width: 640px) {
  .support_box {
    padding: 30px 20px 36px;
  }
}

.support_box .sec_ttl {
  margin-bottom: 80px;
}

@media screen and (max-width: 640px) {
  .support_box .sec_ttl {
    margin-bottom: 38px;
  }
}

.support_box_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 640px) {
  .support_box_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.support_box_inner_text {
  width: 440px;
  font-size: 1.6rem;
  line-height: 1.625;
  font-weight: 300;
}

@media screen and (max-width: 960px) {
  .support_box_inner_text {
    width: 70%;
    margin-right: 20px;
  }
}

@media screen and (max-width: 640px) {
  .support_box_inner_text {
    width: 100%;
    order: 2;
    font-size: 1.4rem;
    line-height: 1.71429;
  }
}

.support_box_inner_text p {
  margin-bottom: 34px;
}

@media screen and (max-width: 640px) {
  .support_box_inner_text p {
    margin-bottom: 26px;
  }
}

@media screen and (max-width: 640px) {
  .support_box_inner_img {
    width: 100%;
    order: 1;
    margin-bottom: 36px;
  }
}

.rank_box {
  width: 460px;
}

@media screen and (max-width: 640px) {
  .rank_box {
    width: 100%;
  }
}

.rank_box.page_rank {
  width: 800px;
  margin: auto;
  margin-top: 102px;
}

@media screen and (max-width: 820px) {
  .rank_box.page_rank {
    width: 100%;
  }
}

@media screen and (max-width: 640px) {
  .rank_box.page_rank {
    margin-top: 20px;
  }
}

.rank_box.page_rank .rank_box_inner {
  padding: 40px 40px 30px;
}

@media screen and (max-width: 640px) {
  .rank_box.page_rank .rank_box_inner {
    padding: 40px 10px 30px;
  }
}

.rank_box.page_rank .rank_box_inner_top {
  margin-top: 20px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 640px) {
  .rank_box.page_rank .rank_box_inner_top {
    display: block;
    margin-bottom: 16px;
  }
}

.rank_box.page_rank .rank_box_inner_select select {
  width: 230px;
  padding: 12px 22px 12px 10px;
}

@media screen and (max-width: 640px) {
  .rank_box.page_rank .rank_box_inner_select select {
    padding: 6px 22px 6px 10px;
  }
}

.rank_box.page_rank .rank_box_inner_list {
  padding: 0;
}

.rank_box.page_rank .rank_box_inner_list li {
  background-color: #F5F5F5;
  padding-top: 5px;
  padding-left: 10px;
  padding-right: 14px;
}

@media screen and (max-width: 640px) {
  .rank_box.page_rank .rank_box_inner_list li {
    font-size: 1.4rem;
    line-height: 1.42857;
  }
}

.rank_box.page_rank .rank_box_inner_list li:nth-child(-n+5) {
  padding-top: 0;
  background-color: transparent;
}

.rank_box.page_rank .rank_box_inner_list li:nth-child(n+21) {
  padding-top: 0;
  background-color: transparent;
}

.rank_box.page_rank .rank_box_inner_list li.ttl_box {
  background: transparent;
  border: none;
  padding: 0;
  margin: auto;
}

.rank_box.page_rank .rank_box_years {
  width: 386px;
  margin: 0;
}

@media screen and (max-width: 640px) {
  .rank_box.page_rank .rank_box_years {
    width: 280px;
    margin: auto;
    margin-bottom: 6px;
  }
}

.rank_box_years {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 36px 18px 22px;
}

@media screen and (max-width: 960px) {
  .rank_box_years {
    margin: 0 0 18px 16px;
  }
}

@media screen and (max-width: 840px) {
  .rank_box_years {
    margin: auto;
    margin-bottom: 18px;
  }
}

@media screen and (max-width: 640px) {
  .rank_box_years {
    width: 278px;
  }
}

.rank_box_years .tab {
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  line-height: 1.44444;
  font-weight: 400;
  cursor: pointer;
  margin: 0 18px 10px;
  margin-bottom: 10px;
  position: relative;
}

@media screen and (max-width: 810px) {
  .rank_box_years .tab {
    margin: 0 10px 10px;
  }
}

@media screen and (max-width: 680px) {
  .rank_box_years .tab {
    font-size: 1.4rem;
  }
}

.rank_box_years .tab span {
  position: relative;
}

.rank_box_years .tab span::before {
  content: '';
  position: absolute;
  background-color: #000;
  height: 2px;
  margin: auto;
  right: 0;
  left: 0;
  bottom: 0;
}

.rank_box_years .tab span::after {
  content: '';
  position: absolute;
  background-color: #000;
  width: 2px;
  height: 20px;
  margin: auto;
  right: -20px;
  top: 0;
  bottom: 0;
}

@media screen and (max-width: 810px) {
  .rank_box_years .tab span::after {
    right: -10px;
  }
}

.rank_box_years .tab:nth-of-type(4n) span::after {
  content: none;
}

.rank_box_years .tab.active span {
  position: relative;
}

.rank_box_years .tab.active span::before {
  content: none;
}

.rank_box_inner {
  background: #fff;
  border: 0.6px solid #A9C9D1;
  border-radius: 5px;
  padding: 30px 22px 26px;
  min-height: 647px;
  margin-bottom: 40px;
}

@media screen and (max-width: 640px) {
  .rank_box_inner {
    padding: 26px 20px 26px 12px;
    margin-bottom: 20px;
  }
}

.rank_box_inner_ttl {
  font-size: 1.8rem;
  line-height: 1.44444;
  padding-left: 40px;
  position: relative;
  padding-bottom: 14px;
}

.rank_box_inner_ttl::before {
  content: '';
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  width: 22px;
  height: 26px;
}

.rank_box_inner_select {
  text-align: right;
  margin-bottom: 16px;
  position: relative;
}

.rank_box_inner_select::after {
  content: '';
  background-image: url(../img/common/icon_select_down.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 10px;
  width: 10px;
  height: 7px;
}

.rank_box_inner_select select {
  width: 206px;
  border: 1px solid #DE8538;
  border-radius: 6px;
  color: #DE8538;
  padding: 7px 22px 7px 14px;
}

@media screen and (max-width: 640px) {
  .rank_box_inner_select select {
    width: 230px;
    font-size: 1.6rem;
    padding: 6px 22px 6px 10px;
  }
}

.rank_box_inner_list {
  padding: 0 18px;
  margin-bottom: 14px;
}

@media screen and (max-width: 640px) {
  .rank_box_inner_list {
    padding-right: 0;
    padding-left: 10px;
  }
}

.rank_box_inner_list li {
  padding-bottom: 10px;
  border-bottom: 1px solid #C3C3C3;
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin-bottom: 10px;
}

.rank_box_inner_list li.is-hidden {
  display: none;
}

.rank_box_inner_list li dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.rank_box_inner_list li dl dt {
  max-width: 70%;
  padding-left: 1em;
  text-indent: -1em;
}

@media screen and (max-width: 640px) {
  .rank_box_inner_list li dl dt {
    max-width: 52%;
  }
}

.rank_box_inner_list li dl dt a {
  text-decoration: underline;
  margin-left: 2px;
}

.rank_box.company_rank .rank_box_years .tab.active {
  color: #DE8538;
}

.rank_box.company_rank .rank_box_inner_ttl {
  color: #DE8538;
  border-bottom: 1px solid #DE8538;
  margin-bottom: 14px;
}

.rank_box.company_rank .rank_box_inner_ttl::before {
  background-image: url(../img/common/icon_orange_search.svg);
}

.rank_box.director_rank .rank_box_years .tab.active {
  color: #006782;
}

.rank_box.director_rank .rank_box_inner_ttl {
  color: #006782;
  border-bottom: 1px solid #006782;
  margin-bottom: 55px;
}

@media screen and (max-width: 640px) {
  .rank_box.director_rank .rank_box_inner_ttl {
    margin-bottom: 20px;
  }
}

.rank_box.director_rank .rank_box_inner_ttl::before {
  background-image: url(../img/common/icon_blue_search.svg);
}

.rank_box.director_rank .btn_link_ranking {
  background-color: #006782;
}

.tab_content .content {
  display: none;
}

.tab_content .content.show {
  display: block;
}

.box01_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 60px;
}

@media screen and (max-width: 640px) {
  .box01_top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 30px;
  }
}

.box01_top_left {
  width: 580px;
}

@media screen and (max-width: 960px) {
  .box01_top_left {
    width: 60%;
  }
}

@media screen and (max-width: 640px) {
  .box01_top_left {
    width: 100%;
    order: 2;
  }
}

.box01_top_left p {
  font-size: 1.6rem;
  line-height: 1.625;
  font-weight: 300;
  margin-bottom: 30px;
}

@media screen and (max-width: 640px) {
  .box01_top_left p {
    font-size: 1.4rem;
    line-height: 1.71429;
  }
}

.box01_top_right {
  width: calc(100% - 600px);
}

@media screen and (max-width: 960px) {
  .box01_top_right {
    width: calc(100% - 62%);
  }
}

@media screen and (max-width: 640px) {
  .box01_top_right {
    width: 200px;
    margin: auto;
    margin-bottom: 40px;
    order: 1;
  }
}

.youtube_box_inner {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  margin-bottom: 20px;
}

@media screen and (max-width: 640px) {
  .youtube_box_inner {
    margin-bottom: 10px;
  }
}

.youtube_box_inner iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.youtube_box_text {
  font-size: 1.6rem;
  line-height: 1.625;
  font-weight: 300;
}

@media screen and (max-width: 640px) {
  .youtube_box_text {
    font-size: 1.2rem;
    line-height: 1.66667;
  }
}

.term_box_list {
  margin-bottom: 10px;
  font-size: 1.6rem;
  line-height: 1.625;
}

@media screen and (max-width: 640px) {
  .term_box_list {
    margin-bottom: 20px;
  }
}

.term_box_list dt {
  font-weight: bold;
  margin-bottom: 6px;
}

.term_box_list dd {
  font-weight: 300;
}

@media screen and (max-width: 640px) {
  .term_box_list dd {
    font-size: 1.4rem;
    line-height: 1.71429;
  }
}

.rank_table {
  width: 800px;
  margin: auto;
  border-collapse: collapse;
  border-spacing: 0;
}

@media screen and (max-width: 820px) {
  .rank_table {
    width: 100%;
  }
}

.rank_table thead tr th {
  background-color: #F0F8FA;
  border-collapse: collapse;
  border: 0.6px solid #000;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  line-height: 1.42857;
  font-weight: 400;
  padding: 15px 0;
}

.rank_table thead tr th:nth-of-type(1) {
  width: 100px;
}

@media screen and (max-width: 640px) {
  .rank_table thead tr th:nth-of-type(1) {
    display: none;
  }
}

.rank_table thead tr th:nth-of-type(2) {
  width: 230px;
}

@media screen and (max-width: 820px) {
  .rank_table thead tr th:nth-of-type(2) {
    width: 160px;
  }
}

@media screen and (max-width: 640px) {
  .rank_table thead tr th:nth-of-type(2) {
    width: 30%;
  }
}

.rank_table thead tr th:nth-of-type(3) {
  width: 230px;
}

@media screen and (max-width: 820px) {
  .rank_table thead tr th:nth-of-type(3) {
    width: 160px;
  }
}

@media screen and (max-width: 640px) {
  .rank_table thead tr th:nth-of-type(3) {
    width: 78px;
  }
}

.rank_table tbody tr:nth-child(even) td {
  background-color: #F5F5F5;
}

.rank_table tbody tr td {
  border-collapse: collapse;
  border: 0.6px solid #000;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  line-height: 1.5;
  font-weight: 400;
  text-align: center;
  padding: 13px 0;
}

@media screen and (max-width: 640px) {
  .rank_table tbody tr td {
    padding-left: 10px;
    text-align: left;
  }
}

.rank_table tbody tr td a {
  text-decoration: underline;
}

@media screen and (max-width: 640px) {
  .rank_table tbody tr td:nth-of-type(1) {
    display: none;
  }
}

.sec__use_inner {
  padding-bottom: 60px;
}

@media screen and (max-width: 640px) {
  .sec__use_inner {
    padding-bottom: 30px;
  }
}

.sec__use_inner .box_ttl {
  margin-bottom: 30px;
}

.sec__use_inner_box {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.625;
}

@media screen and (max-width: 640px) {
  .sec__use_inner_box {
    font-size: 1.4rem;
    line-height: 1.71429;
  }
}

.sec__use_inner_box p {
  margin-bottom: 36px;
}

@media screen and (max-width: 640px) {
  .sec__use_inner_box p {
    margin-bottom: 26px;
  }
}

.sec__use_inner_box p a {
  text-decoration: underline;
}

.sec__use_inner .link {
  margin-top: 30px;
}

/*------------------------------------------------------------
　Parts
------------------------------------------------------------*/
.box_ttl {
  font-size: 2.2rem;
  letter-spacing: 0.02em;
  line-height: 1.04545;
  color: #006782;
  position: relative;
  padding-left: 20px;
  margin-bottom: 25px;
}

@media screen and (max-width: 640px) {
  .box_ttl {
    font-size: 1.8rem;
    line-height: 1.27778;
    padding-left: 14px;
  }
}

.box_ttl::before {
  content: '';
  position: absolute;
  background-color: #006782;
  width: 4px;
  height: 40px;
  margin: auto;
  left: 0;
  top: 0;
  bottom: 0;
}

.page_ttl {
  padding: 76px 0;
  background-color: #F0F8FA;
}

@media screen and (max-width: 640px) {
  .page_ttl {
    padding: 48px 0;
  }
}

.rank_ttl {
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  line-height: 1.3;
  text-align: center;
  margin: 40px 0 20px;
}

.link {
  text-align: center;
}

.link .btn_link_ranking {
  display: inline-block;
  width: 274px;
  background-color: #DE8538;
  color: #fff;
  border-radius: 30px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.44444;
  padding: 18px 0;
}

@media screen and (max-width: 640px) {
  .link .btn_link_ranking {
    font-size: 1.4rem;
    padding: 15px 0;
  }
}

.link .btn_link_ranking span {
  padding-left: 20px;
  position: relative;
}

.link .btn_link_ranking span::before {
  content: '';
  background-image: url(../img/common/icon_right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  width: 7px;
  height: 12px;
}

.btn_link {
  display: block;
  width: 354px;
  margin: auto;
  background-color: #006782;
  padding: 16px 0px;
  border-radius: 30px;
}

@media screen and (max-width: 640px) {
  .btn_link {
    width: 80%;
  }
}

.btn_link span {
  font-size: 1.8rem;
  color: #fff;
  font-weight: bold;
  padding-left: 26px;
  position: relative;
}

@media screen and (max-width: 640px) {
  .btn_link span {
    font-size: 1.4rem;
  }
}

.btn_link span::before {
  content: '';
  background-image: url(../img/common/icon_btn_link.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  width: 10px;
  height: 13px;
}

.top_link span {
  padding-left: 10px;
}

.top_link span::before {
  background-image: url("../img/common/icon_top_link.svg");
  left: -60px;
}

@media screen and (max-width: 640px) {
  .top_link span::before {
    left: -20%;
  }
}

.link_page {
  text-align: right;
}

.link_page_text {
  font-size: 1.4rem;
  color: #006782;
  font-weight: bold;
  padding-left: 20px;
  padding-bottom: 6px;
  position: relative;
  border-bottom: 1px solid #006782;
  line-height: 1.71429;
}

@media screen and (max-width: 640px) {
  .link_page_text {
    padding-bottom: 0;
  }
}

.link_page_text::before {
  content: '';
  background-image: url(../img/common/icon_link.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 5px;
  left: 0;
  width: 14px;
  height: 12px;
}

.btn {
  text-align: center;
}

.btn_box {
  width: 200px;
  font-size: 1.8rem;
  line-height: 1.44444;
  color: #fff;
  background-color: #006782;
  padding: 12px 0;
  cursor: pointer;
}

.btn_box:hover {
  opacity: 0.85;
}

.btn_box span {
  position: relative;
  padding-left: 30px;
}

.btn_box span::before {
  content: '';
  background-image: url(../img/common/icon_search.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 6px;
  left: 0;
  width: 17px;
  height: 17px;
}

.btn_box.btn_send span::before {
  background-image: url(../img/common/icon_send.svg);
}

.btn_more {
  width: 170px;
  background-color: #F5F5F5;
  border: 0.6px solid #C3C3C3;
  border-radius: 20px;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  line-height: 1.41667;
  font-weight: 400;
  padding: 6px 0;
  cursor: pointer;
}

.btn_more span {
  padding-left: 16px;
  position: relative;
}

.btn_more span::before {
  content: '';
  background-image: url(../img/common/icon_more.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  width: 8px;
  height: 5px;
}

.breadcrumb {
  margin: 20px 0 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  line-height: 1.42857;
}

@media screen and (max-width: 640px) {
  .breadcrumb {
    margin: 16px 0 30px;
  }
}

.breadcrumb li:not(:first-child) {
  padding-left: 16px;
  position: relative;
}

.breadcrumb li:not(:first-child)::before {
  content: '>';
  position: absolute;
  width: 7px;
  height: 7px;
  left: 4px;
  display: block;
}

.breadcrumb li a {
  text-decoration: underline;
}

/*------------------------------------------------------------
	Top
------------------------------------------------------------*/
.top .sec__database {
  background-color: #F0F8FA;
  padding-top: 20px;
}

@media screen and (max-width: 640px) {
  .top .sec__database {
    padding-bottom: 40px;
  }
}

.top .sec__database_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  position: relative;
}

@media screen and (max-width: 640px) {
  .top .sec__database_inner {
    display: block;
  }
}

.top .sec__database_inner_img {
  width: calc(100% - 43%);
}

@media screen and (max-width: 840px) {
  .top .sec__database_inner_img {
    width: calc(100% - 50%);
  }
}

@media screen and (max-width: 745px) {
  .top .sec__database_inner_img {
    width: calc(100% - 60%);
  }
}

@media screen and (max-width: 640px) {
  .top .sec__database_inner_img {
    width: 100%;
    height: 220px;
  }
}

@media screen and (max-width: 865px) {
  .top .sec__database_inner_img img {
    height: 100%;
    object-fit: cover;
  }
}

.top .sec__database_inner_right {
  width: 43%;
  padding: 50px 34px 70px;
  background-color: #fff;
  border: 1px solid #A9C9D1;
}

@media screen and (max-width: 840px) {
  .top .sec__database_inner_right {
    width: 50%;
    padding: 18px 20px 70px;
  }
}

@media screen and (max-width: 745px) {
  .top .sec__database_inner_right {
    width: 60%;
    padding: 20px 20px 70px;
  }
}

@media screen and (max-width: 640px) {
  .top .sec__database_inner_right {
    width: 100%;
    padding: 20px;
  }
}

.top .sec__database_inner_right_ttl {
  font-size: 2.9rem;
  letter-spacing: 0.02em;
  line-height: 1.55172;
  color: #006782;
  margin-bottom: 10px;
}

@media screen and (max-width: 745px) {
  .top .sec__database_inner_right_ttl {
    font-size: 2rem;
  }
}

@media screen and (max-width: 640px) {
  .top .sec__database_inner_right_ttl {
    font-size: 1.6rem;
    margin-bottom: 6px;
  }
}

.top .sec__database_inner_right_text {
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  line-height: 1.625;
  font-weight: 300;
}

@media screen and (max-width: 640px) {
  .top .sec__database_inner_right_text {
    font-size: 1.1rem;
    letter-spacing: 0em;
    line-height: 1.72727;
  }
}

.top .sec__database .search_box {
  position: relative;
  margin-top: -52px;
  margin-bottom: -122px;
}

@media screen and (max-width: 640px) {
  .top .sec__database .search_box {
    margin-top: 20px;
    margin-bottom: 34px;
  }
}

.top .sec__news {
  background-color: #FAFAFA;
}

@media screen and (max-width: 640px) {
  .top .sec__news {
    background-color: #fff;
  }
}

.top .sec__news_inner {
  padding-top: 192px;
  padding-bottom: 90px;
}

@media screen and (max-width: 640px) {
  .top .sec__news_inner {
    padding-top: 40px;
    padding-bottom: 16px;
  }
}

.top .sec__news_inner .sec_ttl {
  margin-bottom: 40px;
}

@media screen and (max-width: 640px) {
  .top .sec__news_inner .sec_ttl {
    margin-bottom: 20px;
  }
}

.top .sec__site_inner {
  padding-top: 70px;
  padding-bottom: 112px;
}

@media screen and (max-width: 640px) {
  .top .sec__site_inner {
    padding-top: 20px;
    padding-bottom: 42px;
  }
}

.top .sec__site_inner .sec_ttl {
  margin-bottom: 60px;
}

@media screen and (max-width: 640px) {
  .top .sec__site_inner .sec_ttl {
    margin-bottom: 56px;
  }
}

.top .sec__site_inner_box {
  width: 920px;
  margin: auto;
}

@media screen and (max-width: 960px) {
  .top .sec__site_inner_box {
    width: 100%;
  }
}

@media screen and (max-width: 640px) {
  .top .sec__site_inner_box .box_ttl {
    margin-bottom: 44px;
  }
}

.top .sec__site_inner_box_top {
  margin-bottom: 60px;
}

@media screen and (max-width: 640px) {
  .top .sec__site_inner_box_top {
    margin-bottom: 30px;
  }
}

.top .sec__site_inner_box_top_left {
  width: 580px;
}

@media screen and (max-width: 960px) {
  .top .sec__site_inner_box_top_left {
    width: 60%;
  }
}

@media screen and (max-width: 640px) {
  .top .sec__site_inner_box_top_left {
    width: 100%;
    order: 2;
  }
}

.top .sec__site_inner_box_top_left p {
  font-size: 1.6rem;
  line-height: 1.625;
  font-weight: 300;
  margin-bottom: 30px;
}

@media screen and (max-width: 640px) {
  .top .sec__site_inner_box_top_left p {
    font-size: 1.4rem;
    line-height: 1.71429;
  }
}

.top .sec__site_inner_box_top_right {
  width: calc(100% - 600px);
}

@media screen and (max-width: 960px) {
  .top .sec__site_inner_box_top_right {
    width: calc(100% - 62%);
  }
}

@media screen and (max-width: 640px) {
  .top .sec__site_inner_box_top_right {
    width: 200px;
    margin: auto;
    margin-bottom: 40px;
    order: 1;
  }
}

.top .sec__site_inner_box .youtube_box {
  margin-bottom: 28px;
}

.top .sec__ranking {
  background: linear-gradient(90deg, #FAF9E8 50%, #F0F8FA 50%);
}

@media screen and (max-width: 640px) {
  .top .sec__ranking {
    background: linear-gradient(#FAF9E8 53%, #F0F8FA 47%);
  }
}

.top .sec__ranking_inner {
  padding-top: 56px;
  padding-bottom: 66px;
}

@media screen and (max-width: 640px) {
  .top .sec__ranking_inner {
    padding-bottom: 12px;
  }
}

.top .sec__ranking_inner .sec_ttl {
  margin-bottom: 82px;
}

.top .sec__ranking_inner_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 60px;
}

@media screen and (max-width: 640px) {
  .top .sec__ranking_inner_box {
    display: block;
  }
}

@media screen and (max-width: 940px) {
  .top .sec__ranking_inner_box_left {
    margin-right: 20px;
  }
}

@media screen and (max-width: 640px) {
  .top .sec__ranking_inner_box_left {
    margin-right: auto;
    margin-bottom: 28px;
  }
}

@media screen and (max-width: 640px) {
  .top .sec__ranking_inner_box_right {
    padding-top: 42px;
  }
}

@media screen and (max-width: 640px) {
  .top .sec__ranking_inner_box .rank_box_inner_ttl {
    font-size: 1.6rem;
    line-height: 1.5;
    padding-bottom: 12px;
  }
}

.top .sec__term {
  background: linear-gradient(90deg, #FAF9E8 50%, #F0F8FA 50%);
  padding-bottom: 66px;
}

@media screen and (max-width: 960px) {
  .top .sec__term {
    padding-right: 10px;
    padding-left: 10px;
  }
}

@media screen and (max-width: 640px) {
  .top .sec__term {
    background: #F0F8FA;
    padding-bottom: 44px;
  }
}

.top .sec__term_inner .term_box {
  background-color: #fff;
  border: 1px solid #C3C3C3;
  padding: 30px 30px 50px;
}

@media screen and (max-width: 640px) {
  .top .sec__term_inner .term_box {
    padding: 36px 10px 30px;
  }
}

.top .sec__term_inner .term_box .box_ttl {
  font-size: 1.8rem;
  line-height: 1.27778;
}

@media screen and (max-width: 640px) {
  .top .sec__term_inner .term_box .box_ttl {
    margin-bottom: 22px;
  }
}

.top .sec__term_inner .term_box .box_ttl::before {
  height: 28px;
}

.top .sec__article_inner {
  padding-top: 60px;
  padding-bottom: 60px;
}

@media screen and (max-width: 640px) {
  .top .sec__article_inner {
    padding-top: 40px;
    padding-bottom: 12px;
  }
}

.top .sec__article_inner .sec_ttl {
  margin-bottom: 82px;
}

@media screen and (max-width: 640px) {
  .top .sec__article_inner .sec_ttl {
    margin-bottom: 42px;
  }
}

.top .sec__article_inner_box_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}

@media screen and (max-width: 640px) {
  .top .sec__article_inner_box_list {
    display: block;
  }
}

.top .sec__article_inner_box_list_img {
  width: calc(100% - 660px);
}

@media screen and (max-width: 960px) {
  .top .sec__article_inner_box_list_img {
    width: calc(100% - 60%);
  }
}

@media screen and (max-width: 640px) {
  .top .sec__article_inner_box_list_img {
    width: 100%;
    height: 145px;
  }
}

@media screen and (max-width: 960px) {
  .top .sec__article_inner_box_list_img img {
    height: 100%;
    object-fit: cover;
  }
}

.top .sec__article_inner_box_list_img.top_img {
  border: 1px solid #707070;
}

.top .sec__article_inner_box_list_img.bottom_img {
  border: 1px solid #A9C9D1;
}

@media screen and (max-width: 960px) {
  .top .sec__article_inner_box_list_img.bottom_img img {
    object-fit: contain;
  }
}

@media screen and (max-width: 640px) {
  .top .sec__article_inner_box_list_img.bottom_img img {
    object-fit: cover;
  }
}

.top .sec__article_inner_box_list_text {
  width: 660px;
  background-color: #F0F8FA;
  border: 1px solid #A9C9D1;
  padding: 36px 40px 30px 30px;
  font-size: 1.6rem;
  line-height: 1.625;
  font-weight: 300;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 960px) {
  .top .sec__article_inner_box_list_text {
    width: 60%;
  }
}

@media screen and (max-width: 640px) {
  .top .sec__article_inner_box_list_text {
    width: 100%;
    padding: 22px 20px 26px;
    font-size: 1.4rem;
    line-height: 1.71429;
  }
}

@media screen and (max-width: 640px) {
  .top .sec__article_inner_box_list_text .box_ttl {
    margin-bottom: 12px;
  }
}

@media screen and (max-width: 640px) {
  .top .sec__article_inner_box_list_text .box_ttl::before {
    height: 30px;
  }
}

.top .sec__support {
  background-color: #FFF8F8;
}

.top .sec__support_inner {
  padding-top: 80px;
  padding-bottom: 78px;
}

@media screen and (max-width: 640px) {
  .top .sec__support_inner {
    padding-top: 50px;
    padding-bottom: 52px;
  }
}

.top .sec__effort {
  background-color: #FAFAFA;
}

.top .sec__effort_inner {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media screen and (max-width: 640px) {
  .top .sec__effort_inner {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.top .sec__effort_inner .sec_ttl {
  margin-bottom: 106px;
}

@media screen and (max-width: 640px) {
  .top .sec__effort_inner .sec_ttl {
    margin-bottom: 32px;
  }
}

.top .sec__effort_inner_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 640px) {
  .top .sec__effort_inner_box {
    display: block;
  }
}

.top .sec__effort_inner_box_img {
  margin-left: 20px;
}

@media screen and (max-width: 960px) {
  .top .sec__effort_inner_box_img {
    margin-left: auto;
  }
}

@media screen and (max-width: 640px) {
  .top .sec__effort_inner_box_img {
    margin-bottom: 28px;
  }
}

.top .sec__effort_inner_box_text {
  width: 480px;
  font-size: 1.6rem;
  line-height: 1.625;
  font-weight: 300;
}

@media screen and (max-width: 960px) {
  .top .sec__effort_inner_box_text {
    width: 60%;
    margin-left: 20px;
  }
}

@media screen and (max-width: 640px) {
  .top .sec__effort_inner_box_text {
    width: 100%;
    margin-left: auto;
    font-size: 1.4rem;
    line-height: 1.71429;
  }
}

.top .sec__effort_inner_box_text p {
  margin-bottom: 14px;
}

@media screen and (max-width: 640px) {
  .top .sec__effort_inner_box_text p {
    margin-bottom: 10px;
  }
}

.top .sec__effort_inner_box_text_link {
  color: #006782;
  font-style: 1.4rem;
  font-weight: bold;
}

.top .sec__effort_inner_box_text_link a {
  color: #006782;
  padding-bottom: 4px;
  border-bottom: 1px solid #006782;
}

.top .sec__team {
  background-color: #F0F8FA;
}

.top .sec__team_inner {
  padding-top: 86px;
  padding-bottom: 80px;
}

@media screen and (max-width: 640px) {
  .top .sec__team_inner {
    padding-top: 30px;
    padding-bottom: 40px;
  }
}

.top .sec__team_inner .sec_ttl {
  margin-bottom: 84px;
}

@media screen and (max-width: 640px) {
  .top .sec__team_inner .sec_ttl {
    margin-bottom: 46px;
  }
}

.top .sec__team_inner_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 640px) {
  .top .sec__team_inner_list {
    display: block;
  }
}

.top .sec__team_inner_list_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 640px) {
  .top .sec__team_inner_list_box {
    display: block;
    width: 190px;
    margin: auto;
  }
}

.top .sec__team_inner_list_box_img {
  margin-right: 30px;
}

@media screen and (max-width: 960px) {
  .top .sec__team_inner_list_box_img {
    margin-right: 10px;
  }
}

@media screen and (max-width: 640px) {
  .top .sec__team_inner_list_box_img {
    margin-bottom: 18px;
  }
}

.top .sec__team_inner_list_box_text {
  font-size: 1.6rem;
  line-height: 1.625;
  font-weight: 300;
}

.top .sec__team_inner_list_box_text a {
  text-decoration: underline;
}

.top .sec__team_inner_list_box_text_top {
  font-size: 1.4rem;
}

.top .sec__team_inner_list_box_text_bottom {
  font-size: 1.2rem;
  line-height: 1.66667;
}

.top .sec__team_inner_list_box:first-child {
  margin-right: 32px;
}

@media screen and (max-width: 960px) {
  .top .sec__team_inner_list_box:first-child {
    margin-right: 10px;
  }
}

@media screen and (max-width: 640px) {
  .top .sec__team_inner_list_box:first-child {
    width: 240px;
    margin: auto;
    margin-bottom: 30px;
  }
}

/*------------------------------------------------------------
	About
------------------------------------------------------------*/
.about .sec__everyone {
  padding-bottom: 24px;
}

@media screen and (max-width: 640px) {
  .about .sec__everyone {
    padding-bottom: 0;
  }
}

.about .sec__everyone_inner .box01_top {
  margin-bottom: auto;
}

.about .sec__result_inner {
  padding-bottom: 60px;
}

@media screen and (max-width: 640px) {
  .about .sec__result_inner {
    padding-bottom: 30px;
  }
}

.about .sec__result_inner .box_ttl {
  margin-bottom: 30px;
}

.about .sec__result_inner_text {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.625;
  margin-bottom: 36px;
}

@media screen and (max-width: 640px) {
  .about .sec__result_inner_text {
    font-size: 1.4rem;
    line-height: 1.71429;
  }
}

.about .sec__result_inner_box {
  width: 870px;
  margin: auto;
  background-color: #FAF9E8;
  padding: 30px 34px 20px;
}

@media screen and (max-width: 890px) {
  .about .sec__result_inner_box {
    width: 100%;
  }
}

@media screen and (max-width: 640px) {
  .about .sec__result_inner_box {
    padding: 30px 10px 16px;
  }
}

.about .sec__result_inner_box_ttl {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.45;
  padding-bottom: 12px;
  border-bottom: 1px solid #000;
  margin-bottom: 26px;
}

@media screen and (max-width: 640px) {
  .about .sec__result_inner_box_ttl {
    font-size: 1.6rem;
    line-height: 1.5;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
}

.about .sec__result_inner_box_list {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.625;
  padding-right: 14px;
  list-style-type: disc;
}

@media screen and (max-width: 640px) {
  .about .sec__result_inner_box_list {
    font-size: 1.4rem;
    line-height: 1.71429;
  }
}

.about .sec__result_inner_box_list li {
  margin-bottom: 30px;
  margin-left: 40px;
}

@media screen and (max-width: 640px) {
  .about .sec__result_inner_box_list li {
    margin-bottom: 20px;
    margin-left: 22px;
  }
}

.about .sec__reason_inner {
  padding-bottom: 40px;
}

@media screen and (max-width: 640px) {
  .about .sec__reason_inner {
    padding-bottom: 30px;
  }
}

.about .sec__reason_inner .box_ttl {
  margin-bottom: 30px;
}

.about .sec__reason_inner_text {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.71429;
  margin-bottom: 26px;
}

@media screen and (max-width: 640px) {
  .about .sec__reason_inner_text {
    margin-bottom: 12px;
  }
}

.about .sec__reason_inner_box {
  margin: 0 40px 30px;
  background-color: #F0F8FA;
  padding: 32px 26px 42px;
}

@media screen and (max-width: 640px) {
  .about .sec__reason_inner_box {
    margin: auto;
    margin-bottom: 30px;
    padding: 20px 20px 30px;
  }
}

.about .sec__reason_inner_box p {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.625;
  color: #006782;
  padding-bottom: 36px;
}

@media screen and (max-width: 640px) {
  .about .sec__reason_inner_box p {
    font-size: 1.4rem;
  }
}

.about .sec__reason_inner_box p:last-of-type {
  padding-bottom: 20px;
}

.about .sec__reason_inner_box .link_page {
  text-align: left;
}

.about .sec__information_inner {
  padding-bottom: 20px;
}

.about .sec__information_inner .box_ttl {
  margin-bottom: 30px;
}

.about .sec__information_inner .box01_top {
  margin-bottom: 30px;
}

@media screen and (max-width: 640px) {
  .about .sec__information_inner .box01_top {
    margin-bottom: auto;
  }
}

.about .sec__information_inner_text {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.625;
}

@media screen and (max-width: 640px) {
  .about .sec__information_inner_text {
    font-size: 1.4rem;
    line-height: 1.71429;
  }
}

.about .sec__information_inner_text p {
  margin-bottom: 36px;
}

@media screen and (max-width: 640px) {
  .about .sec__information_inner_text p {
    margin-bottom: 26px;
  }
}

.about .sec__youtube_inner {
  padding-bottom: 96px;
}

@media screen and (max-width: 640px) {
  .about .sec__youtube_inner {
    padding-bottom: 20px;
  }
}

/*------------------------------------------------------------
  director_ranking
------------------------------------------------------------*/
@media screen and (max-width: 640px) {
  .payment_ranking .sec__ranking {
    background-color: #FAF9E8;
    padding-top: 22px;
  }
}

.payment_ranking .sec__ranking_inner {
  padding-bottom: 80px;
}

@media screen and (max-width: 640px) {
  .payment_ranking .sec__ranking_inner {
    padding-bottom: 20px;
  }
}

.payment_ranking .sec__ranking_inner .rank_box_inner {
  border: 0.6px solid #DE8538;
}

.payment_ranking .sec__ranking_inner .rank_box_inner_list li:nth-child(-n+5) {
  border-bottom: 1px solid #DE8538;
  color: #DE8538;
}

.payment_ranking .sec__ranking_inner .rank_box_inner_list li:nth-child(-n+5) dl dt a {
  color: #DE8538;
}

@media screen and (max-width: 640px) {
  .payment_ranking .sec__term {
    margin-top: 40px;
  }
}

.payment_ranking .sec__term_inner {
  padding-bottom: 60px;
}

@media screen and (max-width: 640px) {
  .payment_ranking .sec__term_inner {
    padding-bottom: 30px;
  }
}

.payment_ranking .sec__term_inner .box_ttl {
  margin-bottom: 35px;
}

@media screen and (max-width: 640px) {
  .payment_ranking .sec__term_inner .box_ttl {
    margin-bottom: 22px;
  }
}

.payment_ranking .sec__term_inner .term_box {
  padding: 0 10px;
  margin-bottom: 60px;
}

@media screen and (max-width: 640px) {
  .payment_ranking .sec__term_inner .term_box {
    padding: 0;
    margin-bottom: 36px;
  }
}

/*------------------------------------------------------------
  Director_ranking
------------------------------------------------------------*/
.director_ranking .sec__director {
  background-color: #F0F8FA;
  padding-top: 60px;
  padding-bottom: 96px;
}

.director_ranking .sec__director_inner .rank_box.page_rank {
  margin-top: auto;
}

.director_ranking .sec__director_inner .rank_box.page_rank .rank_box_inner {
  margin-bottom: 60px;
}

.director_ranking .sec__director_inner .rank_box_inner_ttl {
  margin-bottom: 26px;
}

.director_ranking .sec__director_inner .rank_box_inner_list li:nth-child(-n+5) {
  border-bottom: 1px solid #006782;
  color: #006782;
}

.director_ranking .sec__director_inner .rank_box_inner_list li:nth-child(-n+5) dl dt a {
  color: #006782;
}

.director_ranking .sec__director_inner_text {
  margin: 35px 0 30px;
  font-size: 1.6rem;
  line-height: 1.625;
  font-weight: 300;
}

/*------------------------------------------------------------
  Money_data
------------------------------------------------------------*/
.money_data .sec__search_inner {
  padding-bottom: 96px;
}

@media screen and (max-width: 640px) {
  .money_data .sec__search_inner {
    padding-bottom: 30px;
  }
}

.money_data .sec__search_inner .search_box {
  margin-bottom: 82px;
}

@media screen and (max-width: 640px) {
  .money_data .sec__search_inner .search_box {
    margin-bottom: 50px;
  }
}

.money_data .sec__search_inner .search_result {
  margin-bottom: 72px;
}

@media screen and (max-width: 640px) {
  .money_data .sec__search_inner .search_result {
    margin-bottom: 36px;
  }
}

.money_data .sec__search_inner .search_result .sec_ttl {
  margin-bottom: 64px;
}

.money_data .sec__search_inner .search_result_content {
  background-color: #F0F8FA;
  border-radius: 10px;
  margin-bottom: 44px;
}

@media screen and (max-width: 640px) {
  .money_data .sec__search_inner .search_result_content {
    margin-bottom: 36px;
  }
}

.money_data .sec__search_inner .search_result_content_box {
  padding: 30px 20px 24px;
}

@media screen and (max-width: 640px) {
  .money_data .sec__search_inner .search_result_content_box {
    padding: 20px 10px 24px;
  }
}

.money_data .sec__search_inner .search_result_content_box_ttl {
  font-size: 2rem;
  letter-spacing: 0.02em;
  line-height: 1.45;
  font-weight: 500;
  padding-bottom: 10px;
  border-bottom: 1px solid #000;
  margin-bottom: 24px;
}

@media screen and (max-width: 640px) {
  .money_data .sec__search_inner .search_result_content_box_ttl {
    font-size: 1.6rem;
    line-height: 1.5;
    padding-bottom: 6px;
    margin-bottom: 10px;
  }
}

.money_data .sec__search_inner .search_result_content_box_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  line-height: 1.8125;
  font-weight: 500;
  margin-bottom: 8px;
}

@media screen and (max-width: 640px) {
  .money_data .sec__search_inner .search_result_content_box_list {
    font-size: 1.4rem;
    line-height: 1.71429;
  }
}

.money_data .sec__search_inner .search_result_content_box_list dt {
  min-width: 110px;
  text-align: right;
}

@media screen and (max-width: 640px) {
  .money_data .sec__search_inner .search_result_content_box_list dt {
    min-width: 84px;
  }
}

.money_data .sec__search_inner .search_result_content_box_text {
  font-size: 1.2rem;
  line-height: 2.16667;
  font-weight: 300;
  margin-top: 20px;
  text-align: right;
}

@media screen and (max-width: 640px) {
  .money_data .sec__search_inner .search_result_content_box_text {
    margin-top: 10px;
  }
}

.money_data .sec__search_inner .search_result_box {
  margin-bottom: 44px;
}

.money_data .sec__search_inner .search_result_box_list li {
  padding-bottom: 10px;
  border-bottom: 1px solid #006782;
  margin-bottom: 20px;
}

.money_data .sec__search_inner .search_result_box_list li dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 10px;
}

@media screen and (max-width: 640px) {
  .money_data .sec__search_inner .search_result_box_list li dl {
    display: block;
  }
}

.money_data .sec__search_inner .search_result_box_list li dl dt {
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  line-height: 1.5;
  font-weight: 300;
}

@media screen and (max-width: 640px) {
  .money_data .sec__search_inner .search_result_box_list li dl dt {
    margin-bottom: 6px;
  }
}

.money_data .sec__search_inner .search_result_box_list li dl dt a {
  margin-left: 10px;
  text-decoration: underline;
}

.money_data .sec__search_inner .search_result_box_list li dl dd {
  line-height: 1.42857;
}

.money_data .sec__search_inner .search_result_box_list li dl dd span {
  display: inline-block;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  line-height: 1.42857;
  font-weight: 500;
  color: #C3C3C3;
  background-color: #F5F5F5;
  border-radius: 5px;
  padding: 5px 16px;
  margin-left: 10px;
}

@media screen and (max-width: 640px) {
  .money_data .sec__search_inner .search_result_box_list li dl dd span {
    margin-left: 8px;
    font-size: 1.2rem;
    line-height: 1.41667;
    padding: 5px 10px;
  }
}

.money_data .sec__search_inner .search_result_box_list li dl dd span.item1.active {
  color: #fff;
  background-color: #DE8538;
}

.money_data .sec__search_inner .search_result_box_list li dl dd span.item2.active {
  color: #fff;
  background-color: #006782;
}

.money_data .sec__search_inner .search_result_box_list li dl dd span.item3.active {
  color: #000;
  background-color: #A9C9D1;
}

/*------------------------------------------------------------
  Detail
------------------------------------------------------------*/
.detail .sec__detail_inner {
  padding-top: 40px;
  padding-bottom: 60px;
}

@media screen and (max-width: 640px) {
  .detail .sec__detail_inner {
    padding-top: 22px;
    padding-bottom: 30px;
  }
}

.detail .sec__detail_inner .rank_box_years {
  width: 386px;
  margin: auto;
  margin-bottom: 58px;
}

@media screen and (max-width: 640px) {
  .detail .sec__detail_inner .rank_box_years {
    width: 278px;
    margin-bottom: 30px;
  }
}

.detail .sec__detail_inner .rank_box_years .tab.active {
  color: #006782;
}

.detail .sec__detail_inner .tab_content {
  margin-bottom: 60px;
}

.detail .sec__detail_inner_summary .box_ttl {
  margin-bottom: 34px;
}

.detail .sec__detail_inner_summary_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 830px;
  margin: auto;
  margin-bottom: 46px;
}

@media screen and (max-width: 850px) {
  .detail .sec__detail_inner_summary_box {
    width: 100%;
  }
}

@media screen and (max-width: 640px) {
  .detail .sec__detail_inner_summary_box {
    display: block;
  }
}

.detail .sec__detail_inner_summary_box_table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 0.6px solid #000;
}

@media screen and (max-width: 850px) {
  .detail .sec__detail_inner_summary_box_table {
    width: 33%;
  }
}

@media screen and (max-width: 640px) {
  .detail .sec__detail_inner_summary_box_table {
    width: 100%;
  }
}

@media screen and (max-width: 640px) {
  .detail .sec__detail_inner_summary_box_table:nth-child(-n+2) {
    border-bottom: none;
  }
}

.detail .sec__detail_inner_summary_box_table dt {
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  line-height: 1.42857;
  font-weight: 400;
  background-color: #F0F8FA;
  border-right: 0.6px solid #000;
  height: 100%;
  width: 132px;
  text-align: center;
  padding: 14px 0;
}

@media screen and (max-width: 850px) {
  .detail .sec__detail_inner_summary_box_table dt {
    width: 30%;
  }
}

.detail .sec__detail_inner_summary_box_table dd {
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  line-height: 1.5;
  font-weight: bold;
  height: 100%;
  width: 134px;
  text-align: center;
}

@media screen and (max-width: 850px) {
  .detail .sec__detail_inner_summary_box_table dd {
    width: 70%;
  }
}

@media screen and (max-width: 640px) {
  .detail .sec__detail_inner_summary_box_table dd {
    padding-left: 22px;
    text-align: left;
  }
}

.detail .sec__detail_inner_summary_box_table dd.price {
  width: 160px;
}

@media screen and (max-width: 850px) {
  .detail .sec__detail_inner_summary_box_table dd.price {
    width: 70%;
  }
}

.detail .sec__detail_inner_table .box_ttl {
  margin-bottom: 46px;
}

/*------------------------------------------------------------
  Result
------------------------------------------------------------*/
.result .sec__result_inner {
  margin-bottom: 60px;
}

@media screen and (max-width: 640px) {
  .result .sec__result_inner {
    margin-bottom: 30px;
  }
}

.result .sec__result_inner_data {
  width: 920px;
  margin: auto;
  background-color: #F0F8FA;
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 40px;
}

@media screen and (max-width: 940px) {
  .result .sec__result_inner_data {
    width: 100%;
  }
}

@media screen and (max-width: 640px) {
  .result .sec__result_inner_data {
    padding: 16px 10px;
    margin-bottom: 20px;
  }
}

.result .sec__result_inner_data p {
  font-size: 1.6rem;
  line-height: 1.8125;
  font-weight: 500;
}

@media screen and (max-width: 640px) {
  .result .sec__result_inner_data p {
    font-size: 1.4rem;
    line-height: 1.71429;
  }
}

.result .sec__result_inner_data span {
  font-size: 1.2rem;
  line-height: 2.16667;
  display: inline-block;
}

@media screen and (max-width: 640px) {
  .result .sec__result_inner_data span {
    line-height: 1.58333;
    margin-top: 6px;
  }
}

.result .sec__result_inner_summary {
  margin-bottom: 56px;
}

@media screen and (max-width: 640px) {
  .result .sec__result_inner_summary {
    margin-bottom: 50px;
  }
}

.result .sec__result_inner_summary .box_ttl {
  margin-bottom: 34px;
}

@media screen and (max-width: 640px) {
  .result .sec__result_inner_summary .box_ttl {
    margin-bottom: 26px;
  }
}

.result .sec__result_inner_summary_box {
  width: 830px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 850px) {
  .result .sec__result_inner_summary_box {
    width: 100%;
  }
}

@media screen and (max-width: 640px) {
  .result .sec__result_inner_summary_box {
    display: block;
  }
}

.result .sec__result_inner_summary_box_table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 33.8%;
  margin: 0;
  text-align: center;
}

@media screen and (max-width: 640px) {
  .result .sec__result_inner_summary_box_table {
    width: 100%;
  }
}

.result .sec__result_inner_summary_box_table tr td {
  border-collapse: collapse;
  border: 0.6px solid #000;
}

.result .sec__result_inner_summary_box_table tr td:first-of-type {
  background-color: #F0F8FA;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  line-height: 1.42857;
  padding: 40px 0;
  width: 132px;
  min-width: 60px;
}

@media screen and (max-width: 640px) {
  .result .sec__result_inner_summary_box_table tr td:first-of-type {
    width: 104px;
    height: 82px;
    padding: 0;
    padding-bottom: 36px;
  }
}

.result .sec__result_inner_summary_box_table tr td:last-of-type {
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  line-height: 1.5;
  font-weight: bold;
}

@media screen and (max-width: 640px) {
  .result .sec__result_inner_summary_box_table tr td:last-of-type {
    text-align: left;
    padding: 0 20px;
  }
}

.result .sec__result_inner_summary_box_table tr td:last-of-type p {
  font-size: 1.2rem;
  line-height: 1.41667;
  font-weight: 300;
  color: #818181;
  margin-top: 4px;
}

.result .sec__result_inner_summary_box_table tr:last-of-type td:last-of-type {
  min-width: 158px;
}

.result .sec__result_inner_summary_box_table:not(:first-of-type) {
  margin-left: -2px;
}

@media screen and (max-width: 640px) {
  .result .sec__result_inner_summary_box_table:not(:first-of-type) {
    margin-left: auto;
  }
}

@media screen and (max-width: 640px) {
  .result .sec__result_inner_summary_box_table:not(:first-of-type) td {
    border-top: none;
  }
}

.result .sec__result_inner .chart_container {
  margin-left: -30px;
}

@media screen and (max-width: 960px) {
  .result .sec__result_inner .chart_container {
    margin-left: -10px;
  }
}

@media screen and (max-width: 640px) {
  .result .sec__result_inner .chart_container {
    margin-left: 0;
  }
}

.result .sec__result_inner .chart_container_inner {
  margin-bottom: 30px;
}

.result .sec__result_inner .chart_container_inner text {
  font-size: 1.4rem;
}

.result .sec__ranking_inner {
  margin-bottom: 65px;
}

@media screen and (max-width: 640px) {
  .result .sec__ranking_inner {
    margin-bottom: 40px;
  }
}

.result .sec__ranking_inner .sec_ttl {
  margin-bottom: 86px;
}

@media screen and (max-width: 640px) {
  .result .sec__ranking_inner .sec_ttl {
    margin-bottom: 56px;
  }
}

.result .sec__ranking_inner_item {
  margin-bottom: 64px;
}

@media screen and (max-width: 640px) {
  .result .sec__ranking_inner_item {
    margin-bottom: 40px;
  }
}

.result .sec__ranking_inner_item .box_ttl {
  margin-bottom: 44px;
}

@media screen and (max-width: 640px) {
  .result .sec__ranking_inner_item .box_ttl {
    margin-bottom: 36px;
  }
}

.result .sec__ranking_inner_item .rank_table {
  width: 100%;
}

@media screen and (max-width: 640px) {
  .result .sec__ranking_inner_item .rank_table thead tr th:nth-of-type(1) {
    display: table-cell;
    width: 40px;
  }
}

.result .sec__ranking_inner_item .rank_table thead tr th:nth-of-type(2) {
  width: auto;
}

.result .sec__ranking_inner_item .rank_table thead tr th:nth-of-type(3) {
  width: 90px;
}

@media screen and (max-width: 640px) {
  .result .sec__ranking_inner_item .rank_table thead tr th:nth-of-type(3) {
    width: 54px;
  }
}

@media screen and (max-width: 640px) {
  .result .sec__ranking_inner_item .rank_table thead tr th:last-of-type {
    min-width: 110px;
  }
}

@media screen and (max-width: 640px) {
  .result .sec__ranking_inner_item .rank_table tbody tr td {
    padding-left: 0;
    padding: 2px;
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.71429;
  }
}

@media screen and (max-width: 640px) {
  .result .sec__ranking_inner_item .rank_table tbody tr td:nth-of-type(1) {
    display: table-cell;
  }
}

.result .sec__ranking_inner_item .rank_table tbody tr td:nth-of-type(2) {
  text-align: left;
  padding: 13px 22px;
}

@media screen and (max-width: 640px) {
  .result .sec__ranking_inner_item .rank_table tbody tr td:nth-of-type(2) {
    padding: 8px;
  }
}

.result .sec__ranking_inner_company .box_ttl {
  margin-bottom: 44px;
}

@media screen and (max-width: 640px) {
  .result .sec__ranking_inner_company .box_ttl {
    margin-bottom: 36px;
  }
}

.result .sec__ranking_inner_company .rank_table {
  width: 100%;
}

@media screen and (max-width: 640px) {
  .result .sec__ranking_inner_company .rank_table thead tr th:nth-of-type(1) {
    display: table-cell;
    width: 40px;
  }
}

.result .sec__ranking_inner_company .rank_table thead tr th:nth-of-type(2) {
  width: auto;
}

.result .sec__ranking_inner_company .rank_table thead tr th:nth-of-type(3) {
  width: 90px;
}

@media screen and (max-width: 640px) {
  .result .sec__ranking_inner_company .rank_table thead tr th:nth-of-type(3) {
    width: 54px;
  }
}

@media screen and (max-width: 640px) {
  .result .sec__ranking_inner_company .rank_table thead tr th:last-of-type {
    min-width: 110px;
  }
}

@media screen and (max-width: 640px) {
  .result .sec__ranking_inner_company .rank_table tbody tr td {
    padding-left: 0;
    padding: 2px;
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.71429;
  }
}

@media screen and (max-width: 640px) {
  .result .sec__ranking_inner_company .rank_table tbody tr td:nth-of-type(1) {
    display: table-cell;
  }
}

.result .sec__ranking_inner_company .rank_table tbody tr td:nth-of-type(2) {
  text-align: left;
  padding: 13px 22px;
}

@media screen and (max-width: 640px) {
  .result .sec__ranking_inner_company .rank_table tbody tr td:nth-of-type(2) {
    padding: 8px;
  }
}

/*------------------------------------------------------------
  Contact
------------------------------------------------------------*/
.contact .sec__contact_inner {
  padding-bottom: 60px;
}

.contact .sec__contact_inner_text {
  font-size: 1.6rem;
  line-height: 1.625;
  font-weight: 300;
  margin-bottom: 42px;
}

@media screen and (max-width: 640px) {
  .contact .sec__contact_inner_text {
    font-size: 1.4rem;
    line-height: 1.71429;
    margin-bottom: 30px;
  }
}

.contact .sec__contact_inner_text p {
  margin-bottom: 26px;
}

@media screen and (max-width: 640px) {
  .contact .sec__contact_inner_text p {
    margin-bottom: 22px;
  }
}

.contact .sec__contact_inner_form {
  width: 860px;
  margin: auto;
  border: 0.6px solid #A9C9D1;
  padding: 30px 20px 52px 20px;
}

@media screen and (max-width: 880px) {
  .contact .sec__contact_inner_form {
    width: 100%;
  }
}

@media screen and (max-width: 640px) {
  .contact .sec__contact_inner_form {
    padding: 20px 20px 50px 20px;
  }
}

.contact .sec__contact_inner_form form label {
  white-space: normal;
}

.contact .sec__contact_inner_form form input[type="text"] {
  font-size: 1.6rem;
  line-height: 1.5;
}

.contact .sec__contact_inner_form form dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #C3C3C3;
}

@media screen and (max-width: 640px) {
  .contact .sec__contact_inner_form form dl {
    display: block;
    padding-bottom: 10px;
    margin-bottom: 16px;
  }
}

.contact .sec__contact_inner_form form dl dt {
  width: 240px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-left: 10px;
  margin-right: 20px;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  line-height: 1.5;
  font-weight: 300;
}

@media screen and (max-width: 880px) {
  .contact .sec__contact_inner_form form dl dt {
    width: 260px;
  }
}

@media screen and (max-width: 640px) {
  .contact .sec__contact_inner_form form dl dt {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 14px;
    display: block;
  }
}

@media screen and (max-width: 640px) {
  .contact .sec__contact_inner_form form dl dt p {
    display: inline-block;
  }
}

.contact .sec__contact_inner_form form dl dt span {
  font-size: 1.2rem;
  line-height: 1.41667;
  color: #fff;
  padding: 6px 12px;
  background-color: #006782;
}

@media screen and (max-width: 640px) {
  .contact .sec__contact_inner_form form dl dt span {
    margin-left: 10px;
  }
}

.contact .sec__contact_inner_form form dl dd {
  width: 100%;
}

.contact .sec__contact_inner_form form .input_checkbox {
  margin: 40px 0 60px;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.5;
}

@media screen and (max-width: 640px) {
  .contact .sec__contact_inner_form form .input_checkbox {
    margin: 16px 0 40px;
  }
}

.contact .sec__contact_inner_form form .input_checkbox a {
  text-decoration: underline;
}
