@charset "UTF-8";
*,
*:before,
*:after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

html {
  color: #000;
  background: #FFF;
}

body {
  -webkit-text-size-adjust: 100%;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
input, textarea, button, select,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

td, th {
  vertical-align: top;
}

img {
  vertical-align: bottom;
}

ul, ol, li {
  list-style: none;
}

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

p, li, dd, dt, td, th {
  word-wrap: break-word;
}

select, input {
  word-wrap: normal;
}

address, caption, cite, code, dfn, em, strong, th, var, time, mark {
  font-style: normal;
  font-weight: normal;
}

caption, th {
  text-align: left;
}

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

abbr, acronym {
  border: 0;
  font-variant: normal;
}

mark {
  color: #000;
  background: #FFF;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input, textarea, select, keygen {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

legend {
  color: #000;
}

pre, code,
kbd, samp, tt {
  font-family: monospace;
  line-height: 100%;
}

input:not([type=radio]):not([type=checkbox]), textarea, button {
  /* iosでボタンなどのデフォルト装飾を解除 */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
}

/* Firefoxでボタン系の高さが1pxずれる対策 */
button::-moz-focus-inner,
input[type=button]::-moz-focus-inner,
input[type=reset]::-moz-focus-inner,
input[type=submit]::-moz-focus-inner {
  border: 0px;
}

/*----------------------
     html base
---------------------------------------- */
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  font-size: 10px; /* 1rem = 10px */
  background: #fff;
}

body,
body.__parts_body {
  min-height: 100%;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  font-family: Noto Sans JP, ヒラギノ角ゴ ProN W3, Hiragino Kaku Gothic ProN, 游ゴシック, YuGothic, メイリオ, Meiryo, Arimo, sans-serif;
  font-weight: 400;
}

html,
body {
  width: 100%;
}

a {
  color: #000;
  text-decoration: none;
  transition: all 0.3s;
}
a.-inner {
  color: #641344;
  text-decoration: underline;
}
a:hover {
  opacity: 0.5;
}

@media screen and (max-width: 767px) {
  img {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  img {
    max-width: 100%;
  }
}
.l-header {
  margin: 0;
  background: #0F9EB4;
  color: #fff;
  z-index: 200;
  display: flex;
  justify-content: space-between;
}
.l-header_inner {
  display: flex;
  gap: 1.6rem;
  align-items: center;
  padding: 1em;
}
@media (max-width: 767px) {
  .l-header_inner {
    padding: 1em 0.8em;
    width: 100%;
  }
  .l-header_inner .__logo {
    width: 50vw;
  }
  .l-header_inner .__member_only {
    width: 15vw;
  }
}
.l-header_title {
  width: 50%;
  text-align: left;
  font-weight: 900;
}
.l-header_login {
  width: 50%;
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
}
.l-header_association {
  background: #0A5F6C;
  width: 20rem;
  text-align: center;
  display: grid;
  place-content: center;
}
.l-header_association a {
  color: #fff;
}
.l-header_association a:hover {
  text-decoration: underline;
}
.l-header_menu {
  display: none;
}
@media (max-width: 767px) {
  .l-header_association {
    display: none;
  }
  .l-header_menu {
    display: block;
    position: relative; /*ボタン内側の基点となるためrelativeを指定*/
    cursor: pointer;
    width: 3.2rem;
    height: 2rem;
    margin-left: auto;
  }
  .l-header_menu span {
    display: inline-block;
    transition: all 0.4s; /*アニメーションの設定*/
    position: absolute;
    left: 0px;
    height: 3px;
    border-radius: 2px;
    background: #fff;
    width: 70%;
  }
  .l-header_menu span:nth-of-type(1) {
    top: 0px;
  }
  .l-header_menu span:nth-of-type(2) {
    top: 8px;
  }
  .l-header_menu span:nth-of-type(3) {
    top: 16px;
  }
  .l-header_menu.__active span:nth-of-type(1) {
    top: 2px;
    left: 0px;
    transform: translateY(6px) rotate(-45deg);
    width: 80%;
  }
  .l-header_menu.__active span:nth-of-type(2) {
    opacity: 0; /*真ん中の線は透過*/
  }
  .l-header_menu.__active span:nth-of-type(3) {
    top: 14px;
    left: auto;
    right: 6px;
    bottom: 0px;
    transform: translateY(-6px) rotate(45deg);
    width: 80%;
  }
}

.l-footer {
  text-align: center;
  padding: 1.6rem;
  background: #E9F2F4;
  color: #555555;
  display: flex;
  gap: 1.6rem;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .l-footer {
    flex-direction: column;
  }
}

.login .l-main {
  flex-direction: column;
  justify-content: center;
}

.login .l-container {
  width: 100%;
  max-width: 40%;
  margin-left: auto;
  margin-right: auto;
  height: auto;
}
@media (max-width: 767px) {
  .login .l-container {
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}

.l-login_field {
  padding: 0.5em 0;
}
.l-login_field label {
  margin-bottom: 0.5em;
}

body.page-mypage {
  font-family: "メイリオ";
}

body.__menu_open {
  overflow: hidden;
}

.l-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-content: space-between;
  min-height: 100vh;
}

.l-contents {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .l-contents {
    padding: 5vw;
  }
}

.l-maincontents {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 4rem;
  padding: 4rem 0;
}
@media (max-width: 767px) {
  .l-maincontents {
    justify-content: center;
  }
}

.l-news {
  width: 65%;
}
@media (max-width: 767px) {
  .l-news {
    width: 100%;
  }
}

.l-links {
  background: #F5F5F5;
  padding: 4rem 0;
}

.l-information {
  padding: 4rem 0;
}

.l-breadcrumbs {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.l-back_link {
  width: 100%;
  padding: 4rem 0;
  display: flex;
  justify-content: center;
}

.l-pager {
  padding: 0 1em;
  margin-bottom: 2.4rem;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .l-pager {
    padding: 0;
    margin-bottom: 0.8rem;
  }
}
.l-pager_main {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 767px) {
  .l-pager_main {
    flex-direction: column-reverse;
    align-items: start;
  }
}
.l-pagination {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 3rem;
}
.l-pagination .page_link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  line-height: 1.25;
  border: 1px solid;
  background-color: #fff;
  margin-left: -1px;
}
.l-pagination .active .page_link {
  background: #0F9EB4;
  border: 1px solid #0F9EB4;
  z-index: 10;
}

body.page-top {
  font-family: "メイリオ";
}

.l-menu {
  width: 100%;
}

.l-maincontents {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  color: #555555;
}

.c-btn {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  padding: 0.5em 1em;
  background: #0F9EB4;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 4px;
  font-weight: 400;
  font-size: 1.2rem;
}
.c-btn:hover {
  color: #0F9EB4;
  background: #fff;
  border: 1px solid #0F9EB4;
}

.c-btn_w {
  color: #0F9EB4;
  background: #fff;
  border: 1px solid #0F9EB4;
  border-radius: 4px;
  padding: 0.4em 1em;
  font-weight: 400;
  font-size: 1.8rem;
  display: block;
  text-align: center;
}
.c-btn_w:hover {
  background: #0F9EB4;
  color: #fff;
  border: 1px solid #0F9EB4;
  opacity: 1;
}

.p-footer_address {
  font-weight: 400;
  font-size: 1.2rem;
  text-align: left;
  line-height: 1.6;
}
.p-footer_name {
  text-align: right;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .p-footer_name {
    text-align: center;
  }
}
.p-footer_logo {
  color: #0F9EB4;
  font-weight: 400;
  font-size: 1.8rem;
}
.p-footer_copy {
  font-weight: 400;
  font-size: 1rem;
}

input {
  border: 1px solid #555555;
  padding: 0.5em 1em;
}

.p-contents_title {
  text-align: center;
  border-bottom: 1px solid #0F9EB4;
  padding-bottom: 1em;
  font-weight: 400;
  font-size: 1.8rem;
}

.p-page_title {
  text-align: center;
  color: #0F9EB4;
  font-weight: 400;
  font-size: 2rem;
  width: 100%;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .p-page_title {
    margin-bottom: 0rem;
  }
}

.p-pagetop {
  position: fixed;
  bottom: 30px;
  right: 40px;
  opacity: 0.5;
}

.p-login {
  display: grid;
  gap: 1.6rem;
  padding: 1em 0;
}
.p-login_wrap {
  border: 1px solid #0F9EB4;
  padding: 2.4rem;
  width: 100%;
  max-width: 40%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .p-login_wrap {
    max-width: 90%;
    margin: 0 auto;
  }
}
.p-login_input {
  display: flex;
  gap: 1em;
  align-items: center;
  justify-content: space-around;
}
@media (max-width: 767px) {
  .p-login_input {
    flex-direction: column;
    overflow: hidden;
  }
  .p-login_input label {
    width: 100%;
  }
  .p-login_input .__input {
    width: 100%;
    text-align: center;
  }
  .p-login_input input {
    max-width: 100%;
  }
}
.p-login_btn {
  background-color: #0F9EB4;
  color: #fff;
  padding: 0.5em 1em;
  cursor: pointer;
  transition: all 0.3s;
}
.p-login_btn:hover {
  opacity: 0.7;
}

.p-member_back {
  text-align: center;
}
@media (min-width: 1024px) {
  .p-member_back {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-member_back {
    margin-top: calc(5.6rem * 0.5);
    margin-bottom: calc(5.6rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-member_back {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
.p-member_back_link {
  text-decoration: underline;
  color: #0F9EB4;
}
.p-member_license_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
@media (min-width: 1024px) {
  .p-member_license_list {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-member_license_list {
    margin-top: calc(5.6rem * 0.5);
    margin-bottom: calc(5.6rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-member_license_list {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-member_license_list {
    grid-template-columns: 1fr;
  }
}
.p-member_license_link {
  display: block;
  padding: 0.5em;
  background: #0F9EB4;
  color: #fff;
  text-align: center;
  width: 100%;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.6;
}
.p-member_license_link span {
  display: block;
  font-weight: 500;
  font-size: 1.2rem;
}
.p-member_license_link.__disabled {
  pointer-events: none;
  background: #ccc;
}
.p-member_license_item {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 1.6rem;
}
@media (min-width: 1024px) {
  .p-member_license_item {
    margin-top: calc(7.2rem * 0.25);
    margin-bottom: calc(7.2rem * 0.25);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-member_license_item {
    margin-top: calc(5.6rem * 0.25);
    margin-bottom: calc(5.6rem * 0.25);
  }
}
@media (max-width: 767px) {
  .p-member_license_item {
    margin-top: calc(4rem * 0.25);
    margin-bottom: calc(4rem * 0.25);
  }
}
@media (max-width: 767px) {
  .p-member_license_item {
    padding: 5vw;
    grid-template-columns: 1fr;
  }
}
.p-member_license_item .__image img {
  width: 100%;
}
.p-member_license_item .__desc {
  display: grid;
  gap: 0.5rem;
}
.p-member_license_item .__item {
  display: flex;
  gap: 1em;
  align-items: center;
}
.p-member_license_item .__label {
  width: 6em;
  font-weight: 400;
  font-size: 1.2rem;
}
.p-member_license_item .__label.__multi {
  align-self: flex-start;
}
.p-member_license_item .__list_item {
  display: block;
  line-height: 1.4;
}
.p-member_license_err {
  text-align: center;
}

.p-license img {
  max-width: 100%;
}
.p-license_err {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .p-license_err {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-license_err {
    margin-top: calc(5.6rem * 0.5);
    margin-bottom: calc(5.6rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-license_err {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
.p-license_card {
  margin-left: auto;
  margin-right: auto;
  max-width: 40rem;
  border: 1px solid #eee;
  position: relative;
  padding: 0.5rem;
  height: 80rem;
}
@media (min-width: 1024px) {
  .p-license_card {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-license_card {
    margin-top: calc(5.6rem * 0.5);
    margin-bottom: calc(5.6rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-license_card {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-license_card {
    height: 66rem;
  }
}
@media (max-width: 767px) and (min-width: 1024px) {
  .p-license_card {
    margin-top: calc(7.2rem * 0);
    margin-bottom: calc(7.2rem * 0);
  }
}
@media (max-width: 767px) and (min-width: 768px) and (max-width: 1023px) {
  .p-license_card {
    margin-top: calc(5.6rem * 0);
    margin-bottom: calc(5.6rem * 0);
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .p-license_card {
    margin-top: calc(4rem * 0);
    margin-bottom: calc(4rem * 0);
  }
}
.p-license_card:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 20%;
  background: url(../images/license_corner_r.png) no-repeat top right;
  background-size: contain;
  aspect-ratio: 28/39;
  z-index: 2;
}
.p-license_card:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20%;
  background: url(../images/license_corner_l.png) no-repeat top left;
  background-size: contain;
  aspect-ratio: 28/39;
  z-index: 2;
}
.p-license_border {
  background: radial-gradient(circle, rgb(247, 222, 125) 0%, rgb(244, 214, 98) 30%, rgb(169, 119, 45) 100%);
  padding: 0.5rem;
  height: 100%;
}
.p-license_item {
  background: #fff;
  height: 100%;
  position: relative;
  display: flex;
  gap: 2.4rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .p-license_item {
    padding: 5vw;
    grid-template-columns: 1fr;
  }
}
.p-license_item.__badge1:after {
  display: block;
  content: "";
  background: url(../images/icon_meister_gold.png) no-repeat center center;
  background-size: contain;
  aspect-ratio: 188/276;
  width: 20%;
  position: absolute;
  top: 20%;
  left: 0.8rem;
}
.p-license_item.__badge2:after {
  display: block;
  content: "";
  background: url(../images/icon_meister_silver.png) no-repeat center center;
  background-size: contain;
  aspect-ratio: 188/276;
  width: 20%;
  position: absolute;
  top: 20%;
  left: 0.8rem;
}
.p-license_item .__head {
  text-align: center;
}
.p-license_item .__title {
  text-align: center;
}
.p-license_item .__title img {
  width: 80%;
}
.p-license_item .__license_name {
  font-weight: 700;
  font-size: 2rem;
}
.p-license_item .__photo {
  text-align: center;
}
.p-license_item .__photo img {
  width: 50%;
  aspect-ratio: 548/644;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
}
.p-license_item .__class_name {
  text-align: center;
  font-weight: 700;
  font-size: 1.8rem;
  display: grid;
  gap: 2.4rem;
}
.p-license_item .__name {
  font-weight: 700;
  font-size: 2.4rem;
}
.p-license_item .__image img {
  width: 100%;
}
.p-license_item .__desc {
  display: grid;
  gap: 1.6rem;
}
.p-license_item .__logo {
  text-align: center;
}
.p-license_item .__logo img {
  width: 70%;
}
.p-license_item .__item {
  display: flex;
  gap: 1em;
  align-items: center;
}
.p-license_item .__label {
  width: 6em;
  font-weight: 400;
  font-size: 1.6rem;
  text-align: justify;
  text-justify: inter-ideograph;
  -moz-text-align-last: justify;
       text-align-last: justify;
  display: block;
}
.p-license_item .__label.__multi {
  align-self: flex-start;
}
.p-license_license_err {
  text-align: center;
}

.message_section {
  margin-bottom: 1.6rem;
}

.message {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
  border: 1px solid transparent;
  border-radius: 0.5rem;
}

.message_inline {
  font-size: 1.4rem;
  padding: 0.5rem 0.75rem;
}

.success {
  color: #18603a;
  background-color: #d5f1de;
  border-color: #c4ebd1;
}

.error {
  color: #772b35;
  background-color: #fadddd;
  border-color: #f8cfcf;
}

.p-breadcrumbs {
  padding: 1.6rem 0;
}
@media (max-width: 767px) {
  .p-breadcrumbs {
    padding: 1.6rem;
  }
}
.p-breadcrumbs_list {
  display: flex;
}
.p-breadcrumbs_list li {
  color: #555555;
  font-weight: 400;
  font-size: 1.2rem;
}
.p-breadcrumbs_list li:not(:last-child):after {
  content: ">";
  margin: 0 1em;
}
.p-breadcrumbs_list li a {
  color: inherit;
}
.p-breadcrumbs_list li a:hover {
  color: #0F9EB4;
  text-decoration: underline;
}

.p-menu {
  display: flex;
  justify-content: center;
  width: 100%;
  border-bottom: 1px solid #ccc;
  padding: 0.8rem 0;
}
.p-menu_list {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .p-menu_list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.p-menu_list .__item {
  width: 100%;
  max-width: 166px;
  text-align: center;
  border-left: 1px solid #ccc;
  padding: 1.6rem;
}
.p-menu_list .__item:last-of-type {
  border-right: 1px solid #ccc;
}
@media (max-width: 767px) {
  .p-menu_list .__item:nth-of-type(-n+3) {
    border-bottom: 1px solid #ccc;
  }
  .p-menu_list .__item:last-of-type {
    border-right: none;
  }
}
.p-menu_list .__item a {
  width: 100%;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .p-menu_sp_hide {
    display: none;
  }
}
.p-menu_association {
  background: #0A5F6C;
  width: 100%;
  text-align: center;
  display: grid;
  place-content: center;
  padding: 1.6rem;
}
.p-menu_association a {
  color: #fff;
}
.p-menu_association a:hover {
  text-decoration: underline;
}

.page-association .p-menu .__item {
  padding: 0.2rem 0.8rem;
}
.page-association .p-menu .__item a {
  height: 90px;
}
.page-association .p-menu .__item a.__middle {
  align-items: center;
}
@media (max-width: 767px) {
  .page-association .p-menu_list {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-association .p-menu .__item {
    padding: 0.4rem 0.8rem;
  }
  .page-association .p-menu .__item:nth-of-type(2), .page-association .p-menu .__item:nth-of-type(5), .page-association .p-menu .__item:nth-of-type(8) {
    border-left: none;
  }
  .page-association .p-menu .__item:nth-of-type(-n+7) {
    border-bottom: 1px solid #ccc;
  }
  .page-association .p-menu .__item:last-of-type {
    border-right: none;
  }
  .page-association .p-menu .__item a.__middle {
    align-items: center;
  }
}

.p-top_notice {
  width: 100%;
  padding: 1.6rem;
  display: grid;
  grid-template-columns: 160px auto;
  align-items: center;
  background: #F5F5F5;
  border: dotted 2pt #d3d3d3;
}
@media (max-width: 767px) {
  .p-top_notice {
    grid-template-columns: 80px auto;
  }
  .p-top_notice .__image {
    padding: 2vw;
  }
}

.p-news {
  position: relative;
  border-top: 1px solid #0F9EB4;
  border-bottom: 1px solid #0F9EB4;
}
.p-news_title {
  color: #0F9EB4;
  text-align: center;
  padding: 1.6rem;
}
.p-news_more {
  position: absolute;
  top: 1.6rem;
  right: 0;
}
@media (max-width: 767px) {
  .p-news_more {
    position: relative;
    top: auto;
    margin-bottom: 0.8rem;
  }
  .p-news_more a {
    margin-left: auto;
    margin-right: auto;
  }
}
.p-news_list .__item {
  display: flex;
  align-items: center;
  gap: 1em;
  border-top: 1px solid #ccc;
  padding: 1.6rem;
}
.p-news_list .__item .__time {
  color: #0F9EB4;
  flex-shrink: 0;
  font-size: 90%;
}
.p-news_list .__item a {
  transition: all 0.1s;
}
.p-news_list .__item a:hover {
  text-decoration: underline;
  color: #0F9EB4;
}

.p-onepoint {
  background: url(../images/top/emi.png) no-repeat center center;
  background-size: contain;
  font-weight: 400;
  font-size: 1.4rem;
  width: 30rem;
  padding: 2.4rem 2.4rem 4.8rem;
}

.p-links {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  border-top: 2px dotted #d3d3d3;
}
.p-links_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 767px) {
  .p-links_list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-links_list .__item {
  padding: 1.6rem 2.4rem;
  display: grid;
  grid-template-rows: 32px auto 64px;
  gap: 2.4rem;
  border-bottom: 2px dotted #d3d3d3;
}
.p-links_list .__item:not(:nth-of-type(3n)) {
  border-right: 2px dotted #d3d3d3;
}
@media (max-width: 767px) {
  .p-links_list .__item {
    gap: 1.6rem;
  }
  .p-links_list .__item:not(:nth-of-type(3n)) {
    border-right: none;
  }
}
.p-links_list .__title {
  font-weight: 400;
  font-size: 2rem;
  padding: 0.2em 1em;
  border-bottom: 1px solid #0F9EB4;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  color: #0F9EB4;
  flex-shrink: 0;
}
.p-links_list .__detail {
  padding: 0 1.6rem;
}
.p-links_list .__desc {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.4;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.p-links_list .__desc.__center {
  text-align: center;
}
.p-links_list .__list {
  display: flex;
  gap: 1.6rem;
  justify-content: center;
}
.p-links_list .__list .__image {
  flex-shrink: 0;
}
.p-links_list .__inner_list {
  display: grid;
  gap: 0.4em;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.4;
}
.p-links_list .__inner_item {
  font-weight: 400;
  font-size: 1.2rem;
}
.p-links_list .__inner_item:before {
  content: attr(data-icon);
  display: inline-block;
  margin-right: 0.2em;
}
.p-links_list .__link {
  display: flex;
  justify-content: center;
  align-items: end;
  padding: 1rem;
}
@media (max-width: 767px) {
  .p-links_list .__link {
    padding-top: 1.6rem;
  }
}

.p-information {
  display: grid;
  gap: 2.4rem;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .p-information {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.6rem;
    padding: 0 3vw;
  }
}
.p-information .__item {
  padding: 1.6rem;
  border: 1px solid #0F9EB4;
  display: grid;
  gap: 2.4rem;
}
@media (max-width: 767px) {
  .p-information .__item {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.6rem;
  }
}
.p-information .__item .__title {
  font-weight: 400;
  font-size: 2rem;
  text-align: center;
  margin-top: 1.6rem;
}
.p-information .__item .__detail {
  border-top: 1px solid #0F9EB4;
  padding: 1.6rem 1.6rem 0;
  display: flex;
  gap: 1.6rem;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.6;
}
.p-information .__item .__desc {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.p-information .__item .__link {
  padding: 1.6rem 0 0 0;
}
.p-information .__item .__link a {
  margin-left: auto;
  margin-right: 0;
}

.p-association_booklets {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 4.2rem;
}
@media (max-width: 767px) {
  .p-association_booklets {
    padding: 0 1.6rem;
  }
}
.p-association_booklet {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}
.p-association_booklet .__item {
  background: #F5F5F5;
  padding: 1.6rem;
}
.p-association_booklet .__item a {
  display: grid;
  gap: 0.8rem;
  text-align: center;
}
.p-association_booklet .__title {
  color: #0F9EB4;
}
.p-association_booklet .__title:hover {
  text-decoration: underline;
}
.p-association_booklet .__title .__prefix {
  font-size: 80%;
  display: block;
}
.p-association_booklet .__size {
  font-size: 80%;
}
.p-association_apps {
  background: #D1F2E1;
  padding: 1.6rem 1.6rem;
  display: flex;
  gap: 1.6rem;
  justify-content: space-between;
  align-items: center;
}
.p-association_apps .__image {
  width: 6rem;
}
.p-association_apps .__image img {
  width: 100%;
}
.p-association_apps .__link {
  text-align: center;
}
.p-association_apps .__link:hover {
  text-decoration: underline;
  color: #0F9EB4;
  opacity: 1;
}
@media (max-width: 767px) {
  .p-association_apps .__link {
    font-size: 1.4rem;
  }
}
.p-association_docs {
  border-top: 1px solid #0F9EB4;
  width: 60%;
  display: grid;
  grid-template-rows: 6rem 46rem;
}
@media (max-width: 767px) {
  .p-association_docs {
    width: 100%;
  }
}
.p-association_docs .__title {
  text-align: center;
  padding: 1.6rem 0;
}
.p-association_docs .__docs {
  overflow-y: scroll;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.p-association_docs .__docs_list {
  padding: 0.8rem;
}
.p-association_docs .__docs_list .__group {
  border-bottom: 3px dotted #ccc;
  padding-bottom: 0.8rem;
}
.p-association_docs .__docs_list .__list_title {
  display: flex;
  gap: 1em;
  padding: 1em;
}
.p-association_docs .__docs_list .__list_title:before {
  content: attr(data-icon);
  display: inline-block;
  color: #0F9EB4;
}
@media (max-width: 767px) {
  .p-association_docs .__docs_list .__list_title {
    flex-wrap: wrap;
    gap: 0.8rem;
    row-gap: 0.2rem;
  }
}
.p-association_docs .__docs_list .__title_link {
  display: flex;
  color: #0F9EB4;
  gap: 1em;
}
.p-association_docs .__docs_list .__title_link:hover {
  text-decoration: underline;
}
.p-association_docs .__docs_list .__title_link.__no_link:hover {
  text-decoration: none;
}
.p-association_docs .__docs_list .__title_link .__suffix {
  font-size: 90%;
}
.p-association_docs .__docs_list .__date {
  font-size: 90%;
}
@media (max-width: 767px) {
  .p-association_docs .__docs_list .__date {
    width: 100%;
    text-align: right;
  }
}
.p-association_docs .__docs_list .__list_item {
  margin-left: 3.2rem;
  margin-right: 1.6rem;
}
.p-association_docs .__docs_list .__list_item .__link {
  padding: 1.6rem 0;
}
.p-association_docs .__docs_list .__list_item .__link_item {
  background: #F5F5F5;
  text-align: center;
  padding: 1.6rem 0;
  display: block;
  color: #0F9EB4;
}
.p-association_docs .__docs_list .__list_item .__link_item:hover {
  text-decoration: underline;
  opacity: 1;
}
.p-association_docs .__docs_list .__list_item_list {
  border-top: 2px dotted #ccc;
}
.p-association_docs .__docs_list .__list_item_list .__item {
  display: grid;
  grid-template-columns: 1fr 3fr;
  padding: 0.4em 0;
  border-bottom: 2px dotted #ccc;
  font-weight: 400;
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .p-association_docs .__docs_list .__list_item_list .__item {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .p-association_docs .__docs_list .__list_item_list .__docs_no {
    margin-bottom: 0.5rem;
  }
}
.p-association_docs .__docs_list .__list_item_list .__file {
  display: flex;
  gap: 0.2em;
}
.p-association_docs .__docs_list .__list_item_list .__file:before {
  content: url(../images/icon_pdf.gif);
}
.p-association_docs .__docs_list .__list_item_list .__pdf {
  font-weight: 400;
  font-size: 1.4rem;
}

@media (min-width: 1024px) {
  .h-pc_hide,
  .h-pc_tab_hide {
    display: none;
  }
}
@media (min-width: 768px) {
  .sp_only {
    display: none;
  }
  .event_consent.sp_only {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .h-tab_hide,
  .h-pc_tab_hide,
  .h-sp_tab_hide {
    display: none;
  }
}
@media (max-width: 767px) {
  .h-sp_hide,
  .h-sp_tab_hide {
    display: none;
  }
  .pc_only {
    display: none;
  }
}
.ellipsis {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hp_mb0 {
  margin-bottom: 0rem !important;
}
@media (max-width: 767px) {
  .hp_mb0 {
    margin-bottom: 0rem !important;
  }
}

.hp_mt0 {
  margin-top: 0rem !important;
}

.hp_pb0 {
  padding-bottom: 0rem !important;
}
@media (max-width: 767px) {
  .hp_pb0 {
    padding-bottom: 0rem !important;
  }
}

.hp_mb10 {
  margin-bottom: 1.6rem !important;
}
@media (max-width: 767px) {
  .hp_mb10 {
    margin-bottom: 0.8rem !important;
  }
}

.hp_mt10 {
  margin-top: 1.6rem !important;
}

.hp_pb10 {
  padding-bottom: 1.6rem !important;
}
@media (max-width: 767px) {
  .hp_pb10 {
    padding-bottom: 0.8rem !important;
  }
}

.hp_mb20 {
  margin-bottom: 3.2rem !important;
}
@media (max-width: 767px) {
  .hp_mb20 {
    margin-bottom: 1.6rem !important;
  }
}

.hp_mt20 {
  margin-top: 3.2rem !important;
}

.hp_pb20 {
  padding-bottom: 3.2rem !important;
}
@media (max-width: 767px) {
  .hp_pb20 {
    padding-bottom: 1.6rem !important;
  }
}

.hp_mb30 {
  margin-bottom: 4.8rem !important;
}
@media (max-width: 767px) {
  .hp_mb30 {
    margin-bottom: 2.4rem !important;
  }
}

.hp_mt30 {
  margin-top: 4.8rem !important;
}

.hp_pb30 {
  padding-bottom: 4.8rem !important;
}
@media (max-width: 767px) {
  .hp_pb30 {
    padding-bottom: 2.4rem !important;
  }
}

.hp_mb40 {
  margin-bottom: 6.4rem !important;
}
@media (max-width: 767px) {
  .hp_mb40 {
    margin-bottom: 3.2rem !important;
  }
}

.hp_mt40 {
  margin-top: 6.4rem !important;
}

.hp_pb40 {
  padding-bottom: 6.4rem !important;
}
@media (max-width: 767px) {
  .hp_pb40 {
    padding-bottom: 3.2rem !important;
  }
}

.hp_mb50 {
  margin-bottom: 8rem !important;
}
@media (max-width: 767px) {
  .hp_mb50 {
    margin-bottom: 4rem !important;
  }
}

.hp_mt50 {
  margin-top: 8rem !important;
}

.hp_pb50 {
  padding-bottom: 8rem !important;
}
@media (max-width: 767px) {
  .hp_pb50 {
    padding-bottom: 4rem !important;
  }
}

.hp_mb60 {
  margin-bottom: 9.6rem !important;
}
@media (max-width: 767px) {
  .hp_mb60 {
    margin-bottom: 4.8rem !important;
  }
}

.hp_mt60 {
  margin-top: 9.6rem !important;
}

.hp_pb60 {
  padding-bottom: 9.6rem !important;
}
@media (max-width: 767px) {
  .hp_pb60 {
    padding-bottom: 4.8rem !important;
  }
}

.hp_mb70 {
  margin-bottom: 11.2rem !important;
}
@media (max-width: 767px) {
  .hp_mb70 {
    margin-bottom: 5.6rem !important;
  }
}

.hp_mt70 {
  margin-top: 11.2rem !important;
}

.hp_pb70 {
  padding-bottom: 11.2rem !important;
}
@media (max-width: 767px) {
  .hp_pb70 {
    padding-bottom: 5.6rem !important;
  }
}

.hp_mb80 {
  margin-bottom: 12.8rem !important;
}
@media (max-width: 767px) {
  .hp_mb80 {
    margin-bottom: 6.4rem !important;
  }
}

.hp_mt80 {
  margin-top: 12.8rem !important;
}

.hp_pb80 {
  padding-bottom: 12.8rem !important;
}
@media (max-width: 767px) {
  .hp_pb80 {
    padding-bottom: 6.4rem !important;
  }
}

.hp_mb90 {
  margin-bottom: 14.4rem !important;
}
@media (max-width: 767px) {
  .hp_mb90 {
    margin-bottom: 7.2rem !important;
  }
}

.hp_mt90 {
  margin-top: 14.4rem !important;
}

.hp_pb90 {
  padding-bottom: 14.4rem !important;
}
@media (max-width: 767px) {
  .hp_pb90 {
    padding-bottom: 7.2rem !important;
  }
}

.hp_mb100 {
  margin-bottom: 16rem !important;
}
@media (max-width: 767px) {
  .hp_mb100 {
    margin-bottom: 8rem !important;
  }
}

.hp_mt100 {
  margin-top: 16rem !important;
}

.hp_pb100 {
  padding-bottom: 16rem !important;
}
@media (max-width: 767px) {
  .hp_pb100 {
    padding-bottom: 8rem !important;
  }
}

.-mb5 {
  margin-bottom: 0.5rem !important;
}

.-mb10 {
  margin-bottom: 1rem !important;
}

.-mb20 {
  margin-bottom: 2rem !important;
}

.-mt5 {
  margin-top: 0.5rem !important;
}

.-mt10 {
  margin-top: 1rem !important;
}

.-mt20 {
  margin-top: 2rem !important;
}

.-tac {
  text-align: center;
}

.hp_bold {
  font-weight: 700;
}

.hp_white {
  color: #fff;
}

.hp_black {
  color: #000;
}

.hp_tac {
  text-align: center;
}

@media (max-width: 767px) {
  .hp_sp_tal {
    text-align: left;
  }
}

.hp_tal {
  text-align: left;
}

@media (max-width: 767px) {
  .hp_sp_padding {
    padding-right: 5vw;
    padding-left: 5vw;
  }
}

.hp_bg_white {
  background: #fff;
}
.hp_bg_white .__note {
  color: #000;
}

.hp_bg_radius {
  border-radius: 1.4rem;
}

.hp_contents_padding {
  padding: 2.4rem;
}

.hp_image_org_width img {
  width: auto !important;
}

.hp_fontL {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .hp_fontL {
    font-size: 1.8rem;
  }
}

.hp_fontS {
  font-size: 80%;
}

.hp_notice {
  font-size: 80%;
}

.hp_hide {
  display: none;
}