html, body, div, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, img, dl, dt, dd, ol, ul, li, form, label, legend, table, tbody, tr, th, td, article, embed, footer, header, hgroup, nav, section, time {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

img {
  vertical-align: bottom;
  max-width: 100%;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  color: #212121;
  line-height: 1.6;
  background: #ffffff;
  font-family: fot-tsukuardgothic-std, sans-serif;
  word-break: break-all;
  letter-spacing: 0.05em;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  overflow-y: visible;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.5em;
    letter-spacing: 0.02em;
  }
}
body.dw-open {
  height: 100%;
  overflow: hidden;
}

:focus {
  outline: none;
}

a {
  color: #0082BE;
  transition: all 0.3s;
  text-decoration: none;
}

input {
  font-family: inherit;
}

button,
input[type=submit] {
  cursor: pointer;
  font-family: inherit;
  font-size: initial;
}

select {
  cursor: pointer;
  font-family: inherit;
}

label {
  /* cursor: pointer; */
  font-family: inherit;
}

textarea {
  font-family: inherit;
}

strong span {
  font-weight: bold;
}

.l-header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 0 6px rgba(33, 33, 33, 0.1);
}
.l-header__inner {
  height: 120px;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: height 0.3s;
}
@media screen and (max-width: 1023px) {
  .l-header__inner {
    height: 60px !important;
    padding: 0 10px;
  }
}
.l-header.is-min .l-header__inner {
  height: 80px;
}
.l-header__logo {
  transition: all 0.3s;
  margin: 0 auto 0 0;
}
.l-header__logo img {
  width: 200px;
}
.is-min .l-header__logo img {
  width: 180px;
}
.l-header__logo a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.l-header__logo a span {
  background: #0082BE;
  color: #ffffff;
  font-size: 1.1rem;
  border-radius: 4px;
  line-height: 1;
  padding: 0.4em 0.8em;
  font-weight: bold;
}
@media screen and (max-width: 1023px) {
  .l-header__logo img {
    width: 120px !important;
  }
  .l-header__logo a {
    flex-direction: row;
    gap: 8px;
  }
  .l-header__logo a span {
    font-size: 1rem;
  }
}
.l-header__menu ul {
  gap: 16px;
  font-size: 1.4rem;
  font-weight: bold;
  display: flex;
}
.l-header__menu__item {
  position: relative;
}
.l-header__menu__item.is-sp {
  display: none;
}
.l-header__menu__item.is-pc {
  display: block;
}
.l-header__menu__item .item-link {
  color: #0082BE;
  padding: 1em 0.2em;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  white-space: nowrap;
}
.l-header__menu__item .item-link::before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #0082BE;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transition: all 0.3s;
}
@media (hover: hover) {
  .l-header__menu__item .item-link:hover::before {
    transform: scaleX(1);
  }
}
.l-header__menu__item .item-link[target=_blank]::after {
  content: "";
  width: 14px;
  height: 14px;
  background: url(../img/ico-blank.svg) no-repeat center/contain;
  margin: 0 0 0 5px;
}
.l-header__menu__item.has-submenu .item-link::after {
  content: "";
  border-top: 2px solid #0082BE;
  border-right: 2px solid #0082BE;
  transform: rotate(135deg);
  width: 4px;
  height: 4px;
  margin: -2px 0 0 8px;
}
.l-header__menu__item .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 20px;
  border-radius: 4px;
  box-shadow: 0 0 6px rgba(33, 33, 33, 0.1);
}
.l-header__menu__item .submenu a {
  white-space: nowrap;
  color: #212121;
  padding: 5px 0;
  display: block;
  font-size: 1.2rem;
}
@media (hover: hover) {
  .l-header__menu__item .submenu a:hover {
    color: #0082BE;
  }
}
@media screen and (max-width: 1023px) {
  .l-header__menu {
    width: 340px;
    position: fixed;
    top: 60px;
    right: 0;
    z-index: 1;
    background: #ffffff;
    box-shadow: 0 3px 3px rgba(33, 33, 33, 0.2);
    height: calc(100dvh - 60px);
    overflow: auto;
    transform: translateX(100%);
    transition: all 0.3s;
  }
  .l-header__menu ul {
    flex-direction: column;
    gap: 0;
  }
  .l-header__menu.is-active {
    transform: translateX(0);
  }
  .l-header__menu__item:not(:last-of-type) {
    border-bottom: 1px solid #D8D8D8;
  }
  .l-header__menu__item.is-sp {
    display: block;
  }
  .l-header__menu__item.is-pc {
    display: none;
  }
  .l-header__menu__item .item-link {
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .l-header__menu__item .item-link::before {
    display: none;
  }
  .l-header__menu__item.has-submenu .item-link::after {
    content: "";
    border-top: 2px solid #0082BE;
    border-right: 2px solid #0082BE;
    transform: rotate(135deg);
    width: 4px;
    height: 4px;
    margin: -2px 0 0 8px;
  }
  .l-header__menu__item.has-submenu .item-link.is-active::after {
    transform: rotate(-45deg);
    margin-top: -1px;
  }
  .l-header__menu__item .submenu {
    position: static;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    background: #f9f9f9;
  }
  .l-header__menu__item .submenu a {
    border-top: 1px dotted #D8D8D8;
    padding: 12px 16px 12px 24px;
    font-size: 1.3rem;
    white-space: initial;
    font-weight: normal;
  }
}
@media screen and (max-width: 1023px) {
  .l-header .c-btn {
    min-height: 36px;
    font-size: 1.3rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }
}
.l-header__cta {
  margin: 0 0 0 24px;
}
@media screen and (max-width: 480px) {
  .l-header__cta {
    display: none;
  }
}
.l-header__cta2 {
  display: none;
}
@media screen and (max-width: 480px) {
  .l-header__cta2 {
    display: block;
    margin: 20px 0 0;
    text-align: center;
  }
}
.l-header__ham {
  display: none;
}
@media screen and (max-width: 1023px) {
  .l-header__ham {
    display: flex;
    align-items: center;
    margin: 0 0 0 10px;
  }
  .l-header__ham a {
    width: 40px;
    height: 40px;
    color: #0082BE;
    transition: none;
    position: relative;
  }
  .l-header__ham a .menu-bar::before, .l-header__ham a::before, .l-header__ham a::after {
    content: "";
    width: 30px;
    height: 2px;
    background: #0082BE;
    border-radius: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s;
  }
  .l-header__ham a::before {
    top: calc(50% - 10px);
  }
  .l-header__ham a::after {
    top: calc(50% + 10px);
  }
  .l-header__ham a.is-active span::before {
    width: 0;
  }
  .l-header__ham a.is-active::before, .l-header__ham a.is-active::after {
    content: "";
    top: 20px;
    width: 36px;
    transform: translateX(-50%) rotate(45deg);
  }
  .l-header__ham a.is-active::after {
    transform: translateX(-50%) rotate(-45deg);
  }
}
.l-header__overlay {
  display: none;
}
@media screen and (max-width: 1023px) {
  .l-header__overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    background: rgba(33, 33, 33, 0.5);
  }
}

.l-breadcrumb {
  background: #0082BE;
  padding: 0.8em 0;
}
.l-breadcrumb * {
  color: #ffffff;
  font-size: 1.4rem;
}
.l-breadcrumb__inner {
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
@media screen and (max-width: 767px) {
  .l-breadcrumb {
    padding: 0.4em 0;
  }
  .l-breadcrumb__inner {
    text-overflow: initial;
    overflow-x: auto;
  }
}

.l-contact {
  background: #EFEFEF;
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .l-contact {
    padding: 30px 0;
  }
}
.l-contact__bnr {
  max-width: 900px;
  margin: 0 auto 60px;
}
@media screen and (max-width: 767px) {
  .l-contact__bnr {
    margin: 0 auto 40px;
  }
}
.l-contact__bnr a {
  background-color: #ffffff;
}
.l-contact__bnr a img {
  display: inline-block;
  transition: all 0.3s;
}
@media (hover: hover) {
  .l-contact__bnr a:hover img {
    opacity: 0.7;
  }
}
.l-contact__form {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 8px;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .l-contact__form {
    padding: 20px;
  }
}
.l-contact__body {
  margin: 40px 0 0;
}
.l-contact__body tr {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .l-contact__body tr {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.l-contact__body tr:nth-of-type(2) td {
  display: flex;
}
.l-contact__body th {
  color: #0082BE;
  width: 184px;
  text-align: left;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .l-contact__body th {
    width: 100%;
    margin: 0 0 10px;
  }
}
.l-contact__body th .required {
  color: #DA3A13;
  font-size: 1.2rem;
  margin: 0 0 0 0.5em;
}
.l-contact__body td {
  width: calc(100% - 184px);
  text-align: left;
}
@media screen and (max-width: 767px) {
  .l-contact__body td {
    width: 100%;
  }
}
.l-contact__body label {
  margin: 0;
}
.l-contact__body input, .l-contact__body textarea {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-appearance: none;
  max-width: 100%;
}
.l-contact__body input[type=text],
.l-contact__body input[type=email],
.l-contact__body input[type=tel],
.l-contact__body .wpcf7-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  background: transparent;
  border-radius: 4px;
  border: 1px solid #A2A2A2;
  padding: 10px 16px;
}
.l-contact__body .wpcf7-select {
  background: url(../../public/img/common/arrow-bottom-black.svg) no-repeat center right 10px;
}
@media screen and (max-width: 767px) {
  .l-contact__body .input_sei,
  .l-contact__body .input_mei {
    width: 130px;
    margin-right: 8px;
  }
}
@media screen and (min-width:769px) {
  .l-contact__body .input_sei,
  .l-contact__body .input_mei {
    width: 168px;
    margin-right: 16px;
  }
}
@media screen and (max-width: 767px) {
  .l-contact__body input[name=your-tel],
  .l-contact__body input[name=your-email] {
    width: 100%;
    max-width: calc(100% - 60px);
  }
}
.l-contact__body .wpcf7-radio,
.l-contact__body .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
}
.l-contact__body .wpcf7-list-item input[type=checkbox],
.l-contact__body .wpcf7-list-item input[type=radio] {
  display: none;
}
.l-contact__body .wpcf7-list-item input[type=checkbox] + .wpcf7-list-item-label:before {
  border-radius: 4px;
}
.l-contact__body .wpcf7-list-item input[type=checkbox] + .wpcf7-list-item-label:after {
  opacity: 0;
  transform: scale(0) rotate(45deg);
  transition: 0.1s ease-out;
  left: 6px;
  top: 6px;
  width: 4px;
  height: 8px;
  border-bottom: 2px solid #0082BE;
  border-right: 2px solid #0082BE;
}
.l-contact__body .wpcf7-list-item input[type=checkbox]:checked + .wpcf7-list-item-label {
  font-weight: 600;
  color: #0082BE;
}
.l-contact__body .wpcf7-list-item input[type=checkbox]:checked + .wpcf7-list-item-label:after {
  opacity: 1;
  transform: scale(1.2) rotate(45deg);
}
.l-contact__body .wpcf7-list-item input[type=radio] + .wpcf7-list-item-label:before {
  border-radius: 50%;
  flex-shrink: 0;
}
.l-contact__body .wpcf7-list-item input[type=radio] + .wpcf7-list-item-label:after {
  opacity: 0;
  transform: scale(0);
  border-radius: 50%;
  transition: 0.1s ease-out;
  left: 4px;
  width: 10px;
  height: 10px;
  background: #0082BE;
  transform: scale(0);
}
.l-contact__body .wpcf7-list-item input[type=radio]:checked + .wpcf7-list-item-label {
  font-weight: 600;
  color: #0082BE;
}
.l-contact__body .wpcf7-list-item input[type=radio]:checked + .wpcf7-list-item-label:after {
  opacity: 1;
  transform: scale(1);
}
.l-contact__body .schoolCheckbox .wpcf7-list-item {
  width: 100%;
}
.l-contact__body .schoolCheckbox .wpcf7-list-item + .wpcf7-list-item {
  margin: 8px 0 0 1em;
}
.l-contact__body .your-contact .wpcf7-list-item {
  width: 100%;
}
.l-contact__body .your-contact .wpcf7-list-item + .wpcf7-list-item {
  margin: 8px 0 0 1em;
}
.l-contact__body .contactCheckbox .wpcf7-list-item {
  margin: 8px 0 0 1em;
}
.l-contact__body .wpcf7-list-item-label {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: color 0.2s ease-out;
}
@media screen and (min-width:769px) {
  .l-contact__body .wpcf7-list-item-label {
    margin-bottom: 5px;
  }
}
.l-contact__body .wpcf7-list-item-label:before, .l-contact__body .wpcf7-list-item-label:after {
  content: "";
  display: block;
}
.l-contact__body .wpcf7-list-item-label:before {
  width: 16px;
  height: 16px;
  border: 1px solid #A2A2A2;
  margin-right: 10px;
}
.l-contact__body .wpcf7-list-item-label:after {
  position: absolute;
  opacity: 0;
}
.l-contact__body .wpcf7-list-item-label:hover {
  color: #0082BE;
}
@media screen and (max-width: 767px) {
  .l-contact__body .info-source-th br {
    display: none;
  }
}
@media screen and (min-width:769px) {
  .l-contact__body .info-source-th br {
    display: inherit;
  }
}
@media screen and (max-width: 1023px) {
  .l-contact__body .info-source-th br {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .l-contact__body .info-source-td {
    width: 100%;
  }
}
@media screen and (min-width:769px) {
  .l-contact__body .info-source-td {
    width: calc(100% - 260px);
  }
}
@media screen and (max-width: 1023px) {
  .l-contact__body .info-source-td {
    width: 100%;
  }
}
.l-contact__body select[name=info-source] {
  width: 100%;
}
.l-contact__body .l-contact_privacy {
  font-size: 1.4rem;
}
.l-contact__body .l-contact_privacy a {
  font-weight: bold;
}
.l-contact__body .contact-hidden {
  display: none;
}
.l-contact__body .contactSubmitWrap {
  display: inline-block;
  width: 100%;
  max-width: 250px;
  padding: 0 !important;
  margin: 30px 0 0;
}
.l-contact__body .contactSubmitWrap input {
  border: none;
  transition: all 0.3s;
  padding: 0.5em 1.5em;
}
@media screen and (max-width: 767px) {
  .l-contact__body .contactSubmitWrap input {
    font-size: 1.7rem;
    padding: 0.6em 1.5em;
  }
}
.l-contact__body .contactList {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .l-contact__body .contactList {
    width: 260px;
  }
}
.l-contact__body dd.contactList__item {
  margin-bottom: 10px;
}
.l-contact__body .wpcf7-submit {
  background: none;
  color: #ffffff;
}
.l-contact__body span.is-ended small {
  line-height: 1.3;
  font-size: 12px;
  color: #DA3A13;
}
.l-contact__body .address-open {
  display: block !important;
}
.l-contact__body .wpcf7-spinner {
  position: absolute !important;
}
.l-contact .align-center {
  text-align: center;
}

.l-information {
  background: #F2FBFF;
  padding: 40px 0;
  font-weight: bold;
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  .l-information {
    padding: 20px 0;
    font-size: 1.2rem;
  }
}
.l-information * {
  color: #757575;
}
.l-information__list {
  display: flex;
  justify-content: space-between;
}
.l-information__list .list-item {
  line-height: 2;
}
.l-information__list .list-item:first-of-type {
  margin: 0 auto 0 0;
}
.l-information__list .list-item:not(:first-of-type) {
  margin: 0 0 0 80px;
}
@media screen and (max-width: 767px) {
  .l-information__list {
    display: block;
  }
  .l-information__list .list-item:not(:first-of-type) {
    margin: 0;
  }
  .l-information__list .list-item:nth-child(2) {
    margin: 10px 0 0;
  }
  .l-information__list .list-item span {
    width: 5em;
    display: inline-block;
  }
}

.l-footer {
  background: #0082BE;
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 30px 0;
  }
}
.l-footer * {
  color: #ffffff;
  font-weight: bold;
}
.l-footer__main {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .l-footer__main {
    display: block;
  }
}
.l-footer__main__logo {
  width: 200px;
  margin: 0 80px 0 0;
}
@media screen and (max-width: 767px) {
  .l-footer__main__logo {
    width: 230px;
    margin: 0 auto 30px;
  }
}
.l-footer__main__menu {
  display: flex;
  gap: 70px;
  margin: 0 auto 0 0;
}
.l-footer__main__menu a {
  display: block;
  padding: 0.2em 0;
  position: relative;
  margin: 0 0 0.3em;
  width: fit-content;
}
.l-footer__main__menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left center;
  transition: all 0.15s;
}
@media (hover: hover) {
  .l-footer__main__menu a:hover::after {
    transform: scaleX(1);
  }
}
@media screen and (max-width: 767px) {
  .l-footer__main__menu {
    gap: 30px;
    justify-content: space-between;
  }
}
.l-footer__main__sns ul {
  display: flex;
  gap: 16px;
}
.l-footer__main__sns ul a img {
  width: 40px;
}
@media (hover: hover) {
  .l-footer__main__sns ul a:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__main__sns {
    margin: 20px 0 0;
  }
  .l-footer__main__sns ul {
    gap: 12px;
    justify-content: center;
  }
}
.l-footer__sub {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  margin: 40px 0 0;
  padding: 40px 0 0;
  border-top: 1px solid #F2FBFF;
}
.l-footer__sub__list {
  display: flex;
  gap: 1em;
}
@media screen and (max-width: 767px) {
  .l-footer__sub {
    display: block;
    margin: 30px 0 0;
    padding: 30px 0 0;
  }
  .l-footer__sub__list {
    justify-content: center;
  }
  .l-footer__sub__copy {
    text-align: center;
    margin: 10px 0 0;
  }
}

.c-inner {
  max-width: 1140px;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .c-inner {
    padding: 0 15px;
  }
}

.c-sectit {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.3;
  font-weight: bold;
  margin: 0 0 50px;
  text-align: center;
}
.c-sectit .txt-en {
  font-size: 1.6rem;
  margin: 0 0 0.5em;
}
.c-sectit .txt-jp {
  font-size: 3.6rem;
  color: #0082BE;
}
.c-sectit .txt-jp.width-icon {
  display: flex;
  align-items: center;
}
.c-sectit .txt-jp.width-icon img {
  margin: 0 5px 0 0;
}
@media screen and (max-width: 767px) {
  .c-sectit {
    margin: 0 0 25px;
  }
  .c-sectit .txt-en {
    font-size: 1.4rem;
    margin: 0 0 0.4em;
  }
  .c-sectit .txt-jp {
    font-size: 2.6rem;
  }
  .c-sectit .txt-jp.width-icon img {
    width: 24px;
  }
}
.c-sectit.is-white * {
  color: #ffffff;
}
.c-sectit.is-black * {
  color: #212121;
}

.c-pagetit {
  margin: 0 0 40px;
  padding: 0 0 20px;
  border-bottom: 1px solid #D8D8D8;
}
.c-pagetit__tit {
  border-left: 4px solid #0082BE;
  line-height: 1.3;
  font-weight: bold;
  font-size: 2.8rem;
  padding: 0 0 0 15px;
}
@media screen and (max-width: 767px) {
  .c-pagetit {
    margin: 0 0 30px;
    padding: 0 0 10px;
  }
  .c-pagetit__tit {
    font-size: 2.2rem;
    padding: 0 0 0 10px;
  }
}

.c-btn {
  background: #757575;
  color: #ffffff;
  padding: 0 4.5rem 0 2em;
  line-height: 1.3;
  border-radius: 50px;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: bold;
  position: relative;
}
.c-btn::after {
  content: "";
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(45deg);
  width: 6px;
  height: 6px;
  position: absolute;
  top: 50%;
  right: 26px;
  margin-top: -3px;
  transition: all 0.3s;
}
@media (hover: hover) {
  .c-btn:hover::after {
    right: 22px;
  }
}
@media screen and (max-width: 767px) {
  .c-btn {
    font-size: 1.3rem;
    min-height: 36px;
    padding: 0.5em 2.2rem 0.5em 1em;
  }
  .c-btn::after {
    width: 4px;
    height: 4px;
    right: 12px;
    margin-top: -3px;
  }
}
.c-btn.is-red {
  background: #DA3A13;
}
@media (hover: hover) {
  .c-btn.is-red:hover {
    background-color: rgba(218, 58, 19, 0.8);
  }
}
.c-btn.is-blue {
  background: #0082BE;
}
@media (hover: hover) {
  .c-btn.is-blue:hover {
    background-color: rgba(0, 130, 190, 0.8);
  }
}
.c-btn.is-white {
  background: #ffffff;
  border: 1px solid #0082BE;
  color: #0082BE;
}
.c-btn.is-white::after {
  border-color: #0082BE;
}
@media (hover: hover) {
  .c-btn.is-white:hover {
    background-color: #F2FBFF;
  }
}
.c-btn__wrap {
  text-align: center;
  margin: 60px 0 0;
}
@media screen and (max-width: 767px) {
  .c-btn__wrap {
    margin: 30px 0 0;
  }
}

.c-btn2 {
  display: flex;
  align-content: center;
  padding: 0 30px 0 40px;
  min-height: 60px;
  border-radius: 60px;
  line-height: 1.3;
  background: #ffffff;
  align-items: center;
  justify-content: space-between;
  font-weight: bold;
  font-size: 1.6rem;
  color: #0082BE;
  box-shadow: 0 0 6px rgba(33, 33, 33, 0.1);
}
.c-btn2::after {
  content: "";
  width: 15px;
  height: 15px;
  background: url(../img/ico-arrow_blue.svg) no-repeat center/contain;
  flex: 0 0 auto;
  margin: 0 0 0 1em;
}
@media (hover: hover) {
  .c-btn2:hover {
    background: #F2FBFF;
    padding-right: 24px;
  }
}
@media screen and (max-width: 767px) {
  .c-btn2 {
    padding: 5px 10px 5px 15px;
    min-height: 40px;
    font-size: 1.5rem;
  }
  .c-btn2::after {
    width: 12px;
    height: 12px;
    margin: 0 0 0 0.3em;
  }
}
.c-btn2.is-tag {
  padding: 0 40px;
  width: fit-content;
}
.c-btn2.is-tag::before {
  content: "#";
  margin: 0 0.3em 0 0;
}
.c-btn2.is-tag::after {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-btn2.is-tag {
    padding: 0 15px;
  }
}

.c-button-sc {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  border-bottom: unset !important;
  text-decoration: none !important;
  margin: 1.5em auto;
}
.c-button-sc:hover {
  opacity: 0.8;
}
.c-button-sc__main {
  display: block;
  color: #fff;
  background: #DA3A13;
  font-size: 16px;
  width: 100%;
  min-width: 240px;
  text-align: center;
  padding: 20px 1em;
}
.c-button-sc__sub {
  color: #212121;
  display: block;
  width: fit-content;
  background: #FFCC01;
  font-size: 12px;
  padding: 2px 1rem 5px;
  border-radius: 1000px;
  transform: translateY(50%);
}
.c-button-sc__sub:empty {
  display: none;
}

.c-itemcat, .c-postlist__item .item-cat, .c-voicelist__item .item-cat {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  background: #ffffff;
  border-radius: 0 8px 0 8px;
  overflow: hidden;
}
.c-itemcat a, .c-postlist__item .item-cat a, .c-voicelist__item .item-cat a {
  background: #FFCC01;
  padding: 0.5em 0.8em;
  line-height: 1.2;
  font-weight: bold;
  color: #212121;
  font-size: 1.2rem;
  display: block;
}
@media (hover: hover) {
  .c-itemcat a:hover, .c-postlist__item .item-cat a:hover, .c-voicelist__item .item-cat a:hover {
    background: rgba(255, 204, 1, 0.8);
  }
}
@media screen and (max-width: 767px) {
  .c-itemcat, .c-postlist__item .item-cat, .c-voicelist__item .item-cat {
    border-radius: 0 4px 0 4px;
  }
  .c-itemcat a, .c-postlist__item .item-cat a, .c-voicelist__item .item-cat a {
    font-size: 1rem;
  }
}

.c-voicelist {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .c-voicelist {
    gap: 20px 0;
    justify-content: space-between;
  }
}
.c-voicelist__item {
  width: calc((100% - 40px) / 2);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  .c-voicelist__item {
    width: 48.5%;
  }
}
.c-voicelist__item .item-body .item-img {
  aspect-ratio: 2/1;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-voicelist__item .item-body .item-img {
    aspect-ratio: 16/9;
    border-radius: 4px;
  }
}
.c-voicelist__item .item-body .item-img img {
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  object-fit: cover;
}
.c-voicelist__item .item-body .item-tit {
  margin: 15px 0 0;
  font-size: 1.6rem;
  font-weight: bold;
  color: #212121;
  transition: all 0.3s;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .c-voicelist__item .item-body .item-tit {
    font-size: 1.4rem;
    margin: 5px 0 0;
  }
}
@media (hover: hover) {
  .c-voicelist__item .item-body:hover .item-img img {
    transform: scale(1.1);
    opacity: 0.8;
  }
  .c-voicelist__item .item-body:hover .item-tit {
    color: #0082BE;
  }
}

.c-postlist {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.c-postlist__item {
  width: calc((100% - 80px) / 3);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: #ffffff;
  box-shadow: 0 0 6px rgba(33, 33, 33, 0.1);
  padding: 10px 10px 15px;
}
.c-postlist__item .item-body .item-img {
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
}
.c-postlist__item .item-body .item-img img {
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  object-fit: cover;
}
.c-postlist__item .item-body .item-date {
  color: #D8D8D8;
  font-size: 1.2rem;
  font-weight: bold;
  margin: 10px 0 5px;
}
.c-postlist__item .item-body .item-tit {
  font-size: 1.5rem;
  font-weight: bold;
  color: #212121;
  transition: all 0.3s;
}
@media (hover: hover) {
  .c-postlist__item .item-body:hover .item-img img {
    transform: scale(1.1);
    opacity: 0.8;
  }
  .c-postlist__item .item-body:hover .item-tit {
    color: #0082BE;
  }
}
@media screen and (max-width: 767px) {
  .c-postlist__item {
    border-radius: 4px;
  }
  .c-postlist__item .item-body .item-img {
    border-radius: 4px;
  }
  .c-postlist__item .item-body .item-date {
    font-size: 1.1rem;
  }
  .c-postlist__item .item-body .item-tit {
    line-height: 1.4;
    font-size: 1.4rem;
  }
  .c-postlist.is-normal {
    gap: 20px 0;
    justify-content: space-between;
  }
  .c-postlist.is-normal .c-postlist__item {
    width: 48.5%;
  }
  .c-postlist.is-overflow {
    gap: 20px;
    flex-wrap: nowrap;
    overflow: auto;
  }
  .c-postlist.is-overflow .c-postlist__item {
    width: 44vw;
    flex: 0 0 auto;
  }
}
@media screen and (max-width: 480px) {
  .c-postlist.is-normal {
    gap: 18px;
  }
  .c-postlist.is-normal .c-postlist__item {
    padding: 5px;
    width: 100%;
  }
  .c-postlist.is-normal .c-postlist__item .item-cat {
    right: initial;
    left: 0;
    border-radius: 4px 0 4px 0;
  }
  .c-postlist.is-normal .c-postlist__item .item-body {
    overflow: hidden;
  }
  .c-postlist.is-normal .c-postlist__item .item-body .item-img {
    width: 146px;
    float: left;
    margin: 0 10px 0 0;
    aspect-ratio: 3/2;
  }
  .c-postlist.is-normal .c-postlist__item .item-body .item-date {
    margin: 5px 0 1px;
    overflow: hidden;
  }
  .c-postlist.is-normal .c-postlist__item .item-body .item-tit {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
  .c-postlist.is-overflow {
    gap: 12px;
  }
  .c-postlist.is-overflow .c-postlist__item {
    width: 50vw;
  }
}

.c-pager {
  margin: 40px 0 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  gap: 8px;
}
.c-pager a, .c-pager .current {
  height: 34px;
  width: 34px;
  background: #ffffff;
  border: 1px solid #0082BE;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0082BE;
  border-radius: 4px;
  font-size: 1.6rem;
  text-decoration: none;
}
.c-pager .prev, .c-pager .next {
  color: #0082BE;
  font-weight: 700;
}
.c-pager .current {
  background-color: #0082BE;
  border-color: #0082BE;
  color: #ffffff;
}
@media (hover: hover) {
  .c-pager a:hover {
    background-color: #0082BE;
    border-color: #0082BE;
    color: #ffffff;
  }
}
@media screen and (max-width: 767px) {
  .c-pager {
    margin: 32px 0 0;
  }
  .c-pager > * {
    margin: 0 4px;
  }
}

/*utility*/
.u-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.5s, transform 1s;
}
.u-fade.is-stay {
  transform: translateY(0px);
}
.u-fade.is-active {
  opacity: 1;
  transform: translateY(0px);
}
.slick-slide .u-fade {
  transform: translateY(0px);
  opacity: 1;
}

@media screen and (min-width:769px) {
  .u-sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}
@media screen and (min-width: 481px) {
  .u-sps {
    display: none;
  }
}
/*----------
p-top
----------*/
.p-top__mv {
  position: relative;
  overflow: hidden;
}
.p-top__mv::before {
  content: "";
  width: 100%;
  height: 100%;
  filter: blur(12px);
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/mv.jpg) no-repeat center/cover;
  z-index: -1;
}
.p-top__mv img {
  display: block;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .p-top__mv img {
    max-width: initial;
    width: 125%;
    transform: translateX(-9%);
  }
}
@media screen and (max-width: 480px) {
  .p-top__mv img {
    transform: none;
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .p-top__mv__cta {
    position: absolute;
    z-index: 1;
    left: 5%;
    bottom: 6%;
  }
}

.p-top__movie {
  background: #0082BE;
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .p-top__movie {
    padding: 40px 0 30px;
  }
}
.p-top__movie__inner {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 20px 60px;
  position: relative;
}
.p-top__movie__inner::before {
  content: "";
  width: 400px;
  height: 58px;
  border-radius: 50%/100% 100% 0 0;
  background: #ffffff;
  position: absolute;
  left: 50%;
  top: -30px;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-top__movie__inner {
    padding: 20px 15px 15px;
    border-radius: 10px;
  }
  .p-top__movie__inner::before {
    width: 240px;
    height: 50px;
    top: -20px;
  }
}
.p-top__movie__subtit {
  display: flex;
  justify-content: center;
  gap: 5px;
  font-weight: bold;
}
.p-top__movie__subtit span {
  border-radius: 5px;
  background: #FFCC01;
  color: #0082BE;
  font-size: 2rem;
  line-height: 1;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-top__movie__subtit span {
    font-size: 1.7rem;
    width: 25px;
    height: 25px;
  }
}
.p-top__movie__tit {
  font-size: 3.6rem;
  line-height: 1.2;
  margin: 20px 0 40px;
  text-align: center;
  font-weight: bold;
}
.p-top__movie__tit strong {
  color: #0082BE;
}
@media screen and (max-width: 767px) {
  .p-top__movie__tit {
    font-size: 2.6rem;
    margin: 15px 0 20px;
  }
}
.p-top__movie__iframe {
  max-width: 740px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.p-top__movie__iframe iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.p-top__voice {
  padding: 60px 0 80px;
}
.p-top__voice__more {
  margin: 60px 0 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top__voice {
    padding: 30px 0 40px;
  }
  .p-top__voice__more {
    margin: 30px 0 0;
  }
}

.p-top__contents {
  padding: 60px 0;
  background: #0082BE;
}
.p-top__contents__list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.p-top__contents__list a {
  width: calc((100% - 24px) / 2);
}
@media screen and (max-width: 767px) {
  .p-top__contents {
    padding: 30px 0;
  }
  .p-top__contents__list {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  .p-top__contents__list a {
    width: 96%;
    min-height: 48px;
  }
}

.p-top__favorite {
  padding: 60px 0 80px;
  background: #F2FBFF;
}
@media screen and (max-width: 767px) {
  .p-top__favorite {
    padding: 30px 0 40px;
  }
}

.p-top__search {
  padding: 60px 0 80px;
  background: #0082BE;
}
@media screen and (max-width: 767px) {
  .p-top__search {
    padding: 30px 0 40px;
  }
}
.p-top__search__block {
  background: #DAEEF7;
  border-radius: 8px;
  padding: 40px 40px 60px;
}
.p-top__search__block:not(:last-of-type) {
  margin: 0 0 60px;
}
@media screen and (max-width: 767px) {
  .p-top__search__block {
    border-radius: 40px 40px 4px 4px;
    padding: 20px 15px 30px;
  }
  .p-top__search__block:not(:last-of-type) {
    margin: 0 0 30px;
  }
}
.p-top__search__block__tit {
  padding: 10px 0;
  margin: 0 0 40px;
  border-bottom: 2px solid #0082BE;
  display: flex;
  align-items: center;
}
.p-top__search__block__tit .txt-en {
  margin: 0 20px 0 0;
  display: flex;
  align-items: center;
  font-size: 3.8rem;
  color: #DAEEF7;
  text-shadow: 1px 1px 1px #0082BE, -1px 1px 1px #0082BE, -1px -1px 0 #0082BE, 1px -1px 0 #0082BE;
}
.p-top__search__block__tit .txt-en::before {
  content: "";
  background: url(../img/ico-search_solid.svg) no-repeat center/contain;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  margin: 0 15px 0 0;
}
.p-top__search__block__tit .txt-jp {
  font-weight: bold;
  font-size: 1.8rem;
  color: #0082BE;
}
@media screen and (max-width: 767px) {
  .p-top__search__block__tit {
    padding: 0 0 15px;
    margin: 0 0 30px;
    flex-direction: column;
  }
  .p-top__search__block__tit .txt-en {
    margin: -10px 0 -3px;
    font-size: 3.6rem;
  }
  .p-top__search__block__tit .txt-en::before {
    width: 24px;
    height: 24px;
    margin: 0 5px 0 0;
  }
  .p-top__search__block__tit .txt-jp {
    font-size: 1.4rem;
  }
}
.p-top__search__block .grade-block:not(:last-of-type) {
  margin: 0 0 40px;
  padding: 0 0 40px;
  border-bottom: 1px dashed rgba(117, 117, 117, 0.4);
}
@media screen and (max-width: 767px) {
  .p-top__search__block .grade-block:not(:last-of-type) {
    margin: 0 0 20px;
    padding: 0 0 20px;
  }
}
.p-top__search__block .grade-block__tit {
  display: flex;
  align-items: center;
  margin: 0 0 40px;
}
.p-top__search__block .grade-block__tit h4 {
  flex: 0 0 auto;
  font-weight: bold;
  color: #0082BE;
  border-left: 5px solid #0082BE;
  padding: 0 20px 0 15px;
  font-size: 3.2rem;
  line-height: 1.1;
}
.p-top__search__block .grade-block__tit p {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-top__search__block .grade-block__tit {
    flex-direction: column;
    margin: 0 0 20px;
    align-items: flex-start;
  }
  .p-top__search__block .grade-block__tit h4 {
    border-width: 4px;
    font-size: 2.8rem;
    padding: 0 0 0 8px;
    margin: 0 0 10px;
  }
  .p-top__search__block .grade-block__tit p {
    line-height: 1.4;
  }
}
@media screen and (min-width:769px) {
  .p-top__search__block .grade-block .c-postlist {
    gap: 30px;
  }
  .p-top__search__block .grade-block .c-postlist__item {
    width: calc((100% - 60px) / 3);
  }
  .p-top__search__block .grade-block .c-postlist__item:nth-of-type(n+4) {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-top__search__block .grade-block .c-postlist {
    margin: 0 -15px;
    padding: 0 15px;
  }
}
.p-top__search__block .grade-block__more {
  text-align: center;
  margin: 60px 0 0;
}
@media screen and (max-width: 767px) {
  .p-top__search__block .grade-block__more {
    margin: 30px 0 0;
  }
}
.p-top__search__block .univ-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.p-top__search__block .univ-block a {
  width: calc((100% - 72px) / 4);
}
@media screen and (max-width: 767px) {
  .p-top__search__block .univ-block {
    gap: 10px;
  }
  .p-top__search__block .univ-block a {
    width: calc((100% - 10px) / 2);
  }
}
.p-top__search__block .tag-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 15px;
}
@media screen and (max-width: 767px) {
  .p-top__search__block .tag-block {
    justify-content: flex-start;
    gap: 10px 8px;
  }
}

.p-top__faq {
  padding: 60px 0 80px;
}
@media screen and (max-width: 767px) {
  .p-top__faq {
    padding: 30px 0 40px;
  }
}
.p-top__faq__list {
  max-width: 900px;
  margin: 0 auto;
}
.p-top__faq__list dl {
  background: #ffffff;
}
.p-top__faq__list dl:not(:last-of-type) {
  margin: 0 0 25px;
  padding: 0 0 25px;
  border-bottom: 1px solid #D8D8D8;
}
@media screen and (max-width: 767px) {
  .p-top__faq__list dl:not(:last-of-type) {
    margin: 0 0 15px;
    padding: 0 0 15px;
  }
}
.p-top__faq__list dl dt {
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  cursor: pointer;
}
.p-top__faq__list dl dt span {
  margin-top: 0.4em;
  padding: 0 1em 0 0;
}
.p-top__faq__list dl dt::before {
  content: "Q";
  width: 34px;
  height: 34px;
  background: #FFCC01;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  font-size: 1.4rem;
  flex: 0 0 auto;
  margin: 0 20px 0 0;
}
.p-top__faq__list dl dt::after {
  content: "";
  border-right: 2px solid #212121;
  border-bottom: 2px solid #212121;
  transform: rotate(45deg);
  width: 6px;
  height: 6px;
  margin: 12px 10px 0 auto;
  flex: 0 0 auto;
  transition: all 0.3s;
}
.p-top__faq__list dl dt.is-active::after {
  transform: rotate(-135deg);
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .p-top__faq__list dl dt {
    font-size: 1.5rem;
  }
  .p-top__faq__list dl dt span {
    margin-top: 0.1em;
  }
  .p-top__faq__list dl dt::before {
    width: 24px;
    height: 24px;
    font-size: 1.2rem;
    margin: 0 10px 0 0;
  }
  .p-top__faq__list dl dt::after {
    margin: 8px 10px 0 auto;
  }
  .p-top__faq__list dl dt.is-active::after {
    margin-top: 12px;
  }
}
.p-top__faq__list dl dd {
  display: none;
  margin: 20px 0 0;
}
.p-top__faq__list dl dd .list-cont {
  line-height: 1.6;
  font-size: 1.4rem;
  display: flex;
}
.p-top__faq__list dl dd .list-cont::before {
  content: "A";
  width: 34px;
  height: 34px;
  background: #0082BE;
  color: #ffffff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  font-size: 1.4rem;
  flex: 0 0 auto;
  margin: 0 20px 0 0;
  font-weight: bold;
}
.p-top__faq__list dl dd .list-cont__inner {
  padding: 0.3em 0 0;
}
.p-top__faq__list dl dd .list-cont__inner p + p {
  margin: 1em 0 0;
}
@media screen and (max-width: 767px) {
  .p-top__faq__list dl dd {
    margin: 15px 0 0;
  }
  .p-top__faq__list dl dd .list-cont {
    font-size: 1.2rem;
  }
  .p-top__faq__list dl dd .list-cont::before {
    width: 24px;
    height: 24px;
    margin: 0 10px 0 0;
  }
  .p-top__faq__list dl dd .list-cont__inner {
    padding: 0.15em 0 0;
  }
}

.p-archive {
  padding: 60px 0 100px;
  background: #F2FBFF;
}
@media screen and (max-width: 480px) {
  .p-archive {
    padding: 30px 0 50px;
  }
}

.p-404 {
  padding: 60px 0 100px;
  background: #F2FBFF;
}
.p-404__tit {
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
}
.p-404__txt {
  text-align: center;
  margin: 40px 0 0;
}
@media screen and (max-width: 480px) {
  .p-404 {
    padding: 30px 0 50px;
  }
  .p-404__tit {
    font-size: 1.8rem;
  }
  .p-404__txt {
    margin: 20px 0 0;
  }
  .p-404__txt br {
    display: none;
  }
}

/*----------
p-post
----------*/
.p-post {
  padding: 60px 0 100px;
  background: #F2FBFF;
}
@media screen and (max-width: 767px) {
  .p-post {
    padding: 30px 0 50px;
  }
}

.p-postsingle__head {
  margin: 0 0 30px;
}
.p-postsingle__head__tit {
  font-weight: bold;
  font-size: 4rem;
  line-height: 1.3;
}
.p-postsingle__head__date {
  font-size: 1.4rem;
  font-weight: bold;
  color: #A2A2A2;
  display: flex;
  margin: 1em 0 0;
  padding: 0 0 0 10px;
}
.p-postsingle__head__date .date-update {
  display: inline-flex;
  align-items: center;
  margin: 0 1em 0 0;
}
.p-postsingle__head__date .date-update::before {
  content: "";
  width: 15px;
  height: 15px;
  background: url(../img/ico-update.svg) no-repeat center/contain;
  margin: 0 5px 0 0;
}
@media screen and (max-width: 767px) {
  .p-postsingle__head {
    margin: 0 0 20px;
  }
  .p-postsingle__head__tit {
    font-size: 2.6rem;
  }
  .p-postsingle__head__date {
    font-size: 1.2rem;
  }
}
.p-postsingle__body {
  background: #ffffff;
  border-radius: 8px;
  padding: 40px 100px;
  box-shadow: 0 0 6px rgba(33, 33, 33, 0.1);
}
@media screen and (max-width: 767px) {
  .p-postsingle__body {
    padding: 20px;
    border-radius: 4px;
  }
}
.p-postsingle__thumb img {
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-postsingle__thumb img {
    border-radius: 4px;
  }
}
.p-postsingle__terms {
  padding: 0 0 30px;
  margin: 30px 0;
  border-bottom: 1px solid #DAEEF7;
  display: flex;
  flex-wrap: wrap;
  gap: 15px 20px;
}
.p-postsingle__terms * {
  font-size: 1.4rem;
  color: #0082BE;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-postsingle__terms {
    padding: 0 0 20px;
    margin: 20px 0;
  }
  .p-postsingle__terms * {
    font-size: 1.3rem;
  }
}
.p-postsingle__terms .termblock {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 15px;
}
@media screen and (max-width: 767px) {
  .p-postsingle__terms .termblock {
    gap: 6px 10px;
  }
}
.p-postsingle__terms .termblock .term-tit {
  margin: 0 -0.5em 0 0;
}
.p-postsingle__terms .termblock .school-name {
  color: #212121;
}
.p-postsingle__terms .termblock.term-cat a {
  text-decoration: underline;
}
.p-postsingle__terms .termblock.term-tag a {
  background: #ffffff;
  height: 30px;
  border-radius: 30px;
  box-shadow: 0 0 6px rgba(33, 33, 33, 0.1);
  padding: 0 0.8em;
  display: inline-flex;
  align-items: center;
  border: 1px solid #DAEEF7;
}
@media (hover: hover) {
  .p-postsingle__terms .termblock.term-tag a:hover {
    background: #DAEEF7;
  }
}

.p-postcontent {
  line-height: 1.8;
}
.p-postcontent #ez-toc-container {
  padding: 20px;
  margin: 2em 0;
}
.p-postcontent #ez-toc-container .ez-toc-title-container {
  font-size: 1.6rem;
}
@media screen and (min-width:769px) {
  .p-postcontent #ez-toc-container .ez-toc-title-container {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .p-postcontent #ez-toc-container .ez-toc-title-container {
    font-size: 1.4rem;
    text-align: left;
  }
}
.p-postcontent #ez-toc-container .ez-toc-title {
  display: flex !important;
  align-items: center;
}
.p-postcontent #ez-toc-container .ez-toc-title::after {
  margin: 0 0 0 1.5em;
  content: "";
  display: block;
  background: #212121;
  height: 6.9282032303px;
  width: 12px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.p-postcontent #ez-toc-container .toc_close .ez-toc-title::after {
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.p-postcontent #ez-toc-container .ez-toc-title-toggle {
  display: none;
}
.p-postcontent #ez-toc-container .ez-toc-list {
  padding: 10px 0 0 !important;
  margin: 15px 0 0 !important;
  border-top: 1px solid #D8D8D8;
  font-size: 1.4rem;
  border-radius: 0;
}
@media screen and (max-width: 767px) {
  .p-postcontent #ez-toc-container .ez-toc-list {
    font-size: 1.2rem;
    text-align: left;
  }
}
.p-postcontent #ez-toc-container .ez-toc-list li {
  margin: 8px 0 !important;
}
.p-postcontent h2, .p-postcontent h3, .p-postcontent h4, .p-postcontent h5 {
  margin-top: 2.5em;
  margin-bottom: 1em;
  line-height: 1.4;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-postcontent h2, .p-postcontent h3, .p-postcontent h4, .p-postcontent h5 {
    margin-top: 2em;
  }
}
.p-postcontent h2 {
  font-size: 2.8rem;
  border-left: 5px solid #0082BE;
  color: #0082BE;
  background: #EFEFEF;
  padding: 0.3em 0.5em 0.3em 0.5em;
  margin-top: 2em;
}
@media screen and (max-width: 767px) {
  .p-postcontent h2 {
    font-size: 2.2rem;
  }
}
.p-postcontent h3 {
  font-size: 2.4rem;
  border-bottom: 2px solid #0082BE;
  color: #0082BE;
  padding: 0 0 0.3em 0;
}
@media screen and (max-width: 767px) {
  .p-postcontent h3 {
    font-size: 1.8rem;
  }
}
.p-postcontent h4 {
  font-size: 2rem;
  border-left: 3px solid #0082BE;
  padding: 0 0 0 0.5em;
}
@media screen and (max-width: 767px) {
  .p-postcontent h4 {
    font-size: 1.6rem;
  }
}
.p-postcontent h5 {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .p-postcontent h5 {
    font-size: 1.5rem;
  }
}
.p-postcontent a {
  text-decoration: underline;
}
.p-postcontent .wp-block-buttons {
  margin: 1.5em 0;
}
.p-postcontent .wp-block-buttons a {
  text-decoration: none;
}
.p-postcontent .wp-block-button__link {
  background-color: #0082BE;
}
@media (hover: hover) {
  .p-postcontent .wp-block-button__link:hover {
    opacity: 0.8;
  }
}
.p-postcontent .wp-caption {
  max-width: 100%;
}
.p-postcontent p {
  margin-bottom: 1.5em;
}
.p-postcontent .aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.p-postcontent .wp-block-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.p-postcontent .wp-block-image figcaption {
  margin-top: 0.5em;
  color: #555;
  font-size: 0.9em;
  text-align: center;
}
.p-postcontent ul, .p-postcontent ol {
  margin-bottom: 1.5em;
  border-radius: 5px;
  list-style: disc;
  padding-left: 1.5em;
}
.p-postcontent ul li, .p-postcontent ol li {
  margin: 0.5em 0;
}
.p-postcontent ul ul, .p-postcontent ul ol, .p-postcontent ol ul, .p-postcontent ol ol {
  margin-top: 0.5em;
  padding: 1em 1em 1em 2.5em;
  background-color: #f9f9f9;
  font-size: 90%;
}
.p-postcontent ol {
  list-style: decimal;
}
.p-postcontent .wp-block-quote {
  margin: 1.5em 0;
  padding: 1em 1.5em;
  border-left: 4px solid #ccc;
  background-color: #f7f7f7;
  font-style: italic;
}
.p-postcontent .wp-block-quote p {
  margin-bottom: 0.5em;
}
.p-postcontent .wp-block-quote cite {
  display: block;
  text-align: right;
  font-style: normal;
  font-size: 0.9em;
  color: #555;
}
.p-postcontent .wp-block-columns {
  gap: 2em;
}/*# sourceMappingURL=style.css.map */