@charset "UTF-8";
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes fadeinUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
}
@keyframes fadeoutBottom {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
  }
}
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, b, u, i, center, 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, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
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;
}
picture, img {
  display: block;
  width: 100%;
}
*, *:before, *:after {
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
body {
  color: #87543b;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.7;
  position: relative;
}
a {
  transition: 0.4s;
  color: inherit;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}
a:hover {
  text-decoration: none;
}
img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}
input {
  margin: 0;
  padding: 0;
}
textarea {
  font: inherit;
  color: inherit;
  padding: 0;
}
button {
  background-color: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: 0;
}
/*——————————————————————
コンテンツ幅
——————————————————————*/
.l-container {
  margin: 0 auto;
  width: min(95vw, 98rem);
}
@media screen and (min-width: 1024px) {
  .l-container--separate {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr auto;
  }
  .l-container--separate .l-main {
    margin-top: -12px;
  }
}
.l-footer {
  margin-top: 5rem;
}
.l-footer-subnav {
  border: 1px solid #0089ff;
  display: grid;
  grid-template-columns: 100%;
}
@media screen and (min-width: 744px) {
  .l-footer-subnav {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 1024px) {
  .l-footer-subnav {
    display: flex;
  }
}
.l-footer-subnav-item {
  align-items: center;
  display: flex;
  height: 9rem;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 743px) {
  .l-footer-subnav-item + .l-footer-subnav-item {
    border-top: 1px solid #0089ff;
  }
}
@media screen and (min-width: 744px) {
  .l-footer-subnav-item:nth-child(2n) {
    border-left: 1px solid #0089ff;
  }
  .l-footer-subnav-item:nth-child(n + 3) {
    border-top: 1px solid #0089ff;
  }
}
@media screen and (min-width: 1024px) {
  .l-footer-subnav-item {
    flex-grow: 1;
  }
  .l-footer-subnav-item:nth-child(n + 3) {
    border-top: none;
  }
  .l-footer-subnav-item + .l-footer-subnav-item {
    border-left: 1px solid #0089ff;
  }
}
.l-footer-subnav-item::after {
  background: #0089ff;
  bottom: 5px;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  content: "";
  display: block;
  height: 20px;
  position: absolute;
  right: 5px;
  width: 20px;
}
.l-footer-subnav-item__txt {
  color: #373737;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .l-footer-subnav-item__txt {
    font-size: 12px;
  }
}
.l-footer-subnav-item__txt::after {
  border-top: 1px dotted #0089ff;
  color: #646464;
  content: attr(data-en);
  display: block;
  font-size: 1rem;
  margin-top: 3px;
  padding-top: 3px;
}
.l-footer-banner {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}
.l-footer-banner img {
  width: auto;
}
.l-footer-contact {
  background: #0089ff;
  margin-top: 3rem;
}
@media screen and (min-width: 744px) {
  .l-footer-contact {
    background: linear-gradient(to top, #0089ff 0%, #0089ff 65%, transparent 65.1%, transparent 100%);
  }
}
.l-footer-contact-wrapper {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 2rem 0;
}
@media screen and (min-width: 744px) {
  .l-footer-contact-wrapper {
    gap: 2rem;
    padding: 0;
  }
}
.l-footer-contact__woman {
  align-self: flex-end;
  width: auto;
}
@media screen and (max-width: 743px) {
  .l-footer-contact__woman {
    display: none;
  }
}
.l-footer-contact__tel {
  width: 65%;
}
@media screen and (min-width: 744px) {
  .l-footer-contact__tel {
    margin-top: 6rem;
  }
}
@media screen and (min-width: 1024px) {
  .l-footer-contact__tel {
    width: auto;
  }
  .l-footer-contact__tel img {
    width: 454px;
  }
}
.l-footer-contact__contact {
  width: 33%;
}
@media screen and (min-width: 744px) {
  .l-footer-contact__contact {
    margin-top: 6rem;
  }
}
@media screen and (min-width: 1024px) {
  .l-footer-contact__contact {
    width: auto;
  }
  .l-footer-contact__contact img {
    width: 169px;
  }
}
.l-footer-main {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 3rem;
}
@media screen and (min-width: 744px) {
  .l-footer-main {
    flex-direction: row;
  }
}
.l-footer-main-info {
  color: #373737;
}
.l-footer-main-info__logo {
  margin: 0 auto;
  max-width: 300px;
}
.l-footer-main-info-company {
  align-items: center;
  display: flex;
  gap: 5px;
  justify-content: center;
  margin-top: 2rem;
}
@media screen and (min-width: 744px) {
  .l-footer-main-info-company {
    justify-content: flex-start;
  }
}
.l-footer-main-info-company__link {
  width: 150px;
}
.l-footer-main-info-address {
  margin-top: 2rem;
}
.l-footer-main-info-address-content + .l-footer-main-info-address-content {
  margin-top: 1em;
}
.l-footer-main-info-address-content dt {
  font-weight: 700;
}
@media screen and (min-width: 744px) {
  .l-footer-main-nav {
    flex-grow: 1;
  }
}
.l-footer-main-nav-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media screen and (min-width: 1024px) {
  .l-footer-main-nav-inner {
    flex-direction: row;
    gap: 2rem;
  }
}
.l-footer-main-nav-list {
  display: flex;
  flex-direction: column;
  font-size: 0.875em;
  gap: 0.5rem;
}
.l-footer-main-nav-list a {
  text-decoration: underline;
}
.l-footer-main-nav-list__item {
  align-items: center;
  display: flex;
  gap: 0.5rem;
}
.l-footer-main-nav-list__item::before {
  background: url(../../images/common/icon/cube.svg) no-repeat center/contain;
  content: "";
  display: block;
  height: 1em;
  width: 1em;
}
.l-footer-partner {
  margin-top: 3rem;
}
@media screen and (min-width: 1024px) {
  .l-footer-partner {
    align-items: center;
    display: flex;
    gap: 2rem;
  }
}
.l-footer-partner__title {
  flex-grow: 1;
}
@media screen and (min-width: 1024px) {
  .l-footer-partner__title {
    margin-bottom: 0 !important;
  }
}
.l-footer-partner__title::before {
  display: none !important;
}
.l-footer-partner-links {
  display: flex;
  gap: 1rem;
}
.l-footer-partner-links__item img {
  width: auto;
}
.l-footer__attention {
  color: #373737;
  font-size: 12px;
  margin-top: 2rem;
  text-align: right;
}
.l-footer-credit {
  background: #0089ff;
  color: #fff;
  display: block;
  font-size: 14px;
  margin: 2rem 0;
  padding: 0.5rem 0;
  text-align: center;
}
.l-header {
  border-top: 3px solid #0089ff;
}
@media screen and (max-width: 1023px) {
  .l-header {
    background: #fff;
    display: flex;
    height: 60px;
    left: 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 100;
  }
}
.l-header-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 22px 0;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .l-header-inner {
    height: 100%;
    padding: 5px 0;
  }
}
@media screen and (min-width: 1024px) {
  .l-header-inner {
    gap: 2rem;
  }
}
@media screen and (max-width: 743px) {
  .l-header__logo {
    flex-grow: 1;
  }
}
@media screen and (min-width: 1024px) {
  .l-header__logo {
    flex-shrink: 0;
    width: 530px;
  }
}
@media screen and (max-width: 1023px) {
  .l-header__logo img {
    height: 50px;
    width: auto;
  }
}
@media screen and (max-width: 743px) {
  .l-header__logo img {
    height: auto;
    width: calc(100% - 75px);
  }
}
.l-header-contact {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
@media screen and (max-width: 1023px) {
  .l-header-contact {
    display: none;
  }
}
.l-header-nav {
  border: solid #0089ff;
  border-width: 1px 0;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 1023px) {
  .l-header-nav {
    display: none;
  }
}
.l-header-nav-list {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
}
.l-header-nav-list__item {
  background: url(../../images/common/menu_back.svg) no-repeat right bottom / 20px 20px;
  border-left: 1px solid #0089ff;
  font-size: 0.75em;
  font-weight: 500;
  padding: 15px 10px;
  text-align: center;
}
.l-header-nav-list__item:last-child {
  border-right: 1px solid #0089ff;
}
.l-header-nav-list__item--ja {
  align-items: center;
  border-bottom: 1px dotted #0089ff;
  color: #000;
  display: flex;
  height: calc(1.5em * 2);
  justify-content: center;
  line-height: 1.5;
}
.l-header-nav-list-acc {
  position: relative;
}
.l-header-nav-list-acc-body {
  background: #fff;
  border: solid #0089ff;
  border-width: 0 1px 1px;
  left: -1px;
  opacity: 0;
  padding: 0 30px;
  position: absolute;
  top: 100%;
  transition: 0.4s;
  visibility: hidden;
  width: max-content;
  z-index: 1;
}
.l-header-nav-list-acc-body__item {
  color: #000;
  display: block;
  text-align: center;
}
.l-header-nav-list-acc-body__item:not(:first-child) {
  border-top: 1px dotted #0089ff;
  margin-top: 5px;
  padding-top: 5px;
}
.l-header-nav-list-acc:hover > .l-header-nav-list-acc-body {
  opacity: 1;
  padding: 10px 30px;
  visibility: visible;
}
@media screen and (min-width: 1024px) {
  .l-header-hamburger {
    display: none;
  }
}
.l-header-hamburger__btn {
  background: #ed6d00;
  border-radius: 8px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  color: #fff;
  display: block;
  font-size: 11px;
  height: 50px;
  padding-top: 3px;
  position: relative;
  text-align: center;
  width: 60px;
}
.l-header-hamburger__btn::before {
  content: "MENU";
}
.l-header-hamburger__btn span {
  background: #fff;
  display: block;
  height: 2px;
  left: 15px;
  position: absolute;
  transition: 0.4s;
  width: 30px;
}
.l-header-hamburger__btn span:nth-child(1) {
  top: 23px;
}
.l-header-hamburger__btn span:nth-child(2) {
  top: 31px;
}
.l-header-hamburger__btn span:nth-child(3) {
  top: 39px;
}
.l-header-hamburger-wrapper {
  background: rgba(0, 137, 255, 0.9);
  height: 0;
  left: 0;
  overflow-y: scroll;
  opacity: 0;
  padding: 0 1rem;
  position: fixed;
  top: 60px;
  transition: 0.4s;
  visibility: hidden;
  width: 100%;
}
.l-header-hamburger.open .l-header-hamburger__btn span:nth-child(1) {
  top: 34px;
  transform: rotate(315deg);
}
.l-header-hamburger.open .l-header-hamburger__btn span:nth-child(2) {
  transform: translate(15px, 0);
  width: 0;
}
.l-header-hamburger.open .l-header-hamburger__btn span:nth-child(3) {
  top: 34px;
  transform: rotate(-315deg);
}
.l-header-hamburger.open .l-header-hamburger-wrapper {
  height: calc(100svh - 60px);
  opacity: 1;
  padding: 2rem 1rem;
  visibility: visible;
}
.l-header-hamburger-nav {
  color: #fff;
}
.l-header-hamburger-nav__title {
  background: #fff;
  border-radius: 5px;
  color: #ff6600;
  font-size: 0.875em;
  font-weight: 700;
  text-align: center;
}
.l-header-hamburger-nav__item {
  display: block;
  padding: 5px 10px;
}
.l-header-hamburger-nav__item + .l-header-hamburger-nav__item {
  border-top: 1px dotted;
}
.l-header-hamburger-nav-contact {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}
.l-header-hamburger-nav-contact__item {
  align-items: center;
  background: #fff;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  padding: 10px;
  width: max-content;
}
@media screen and (max-width: 743px) {
  .l-header-hamburger-nav-contact__item {
    padding: 5px 10px;
    width: auto;
  }
}
.l-main * + p {
  margin-top: 1em;
}
.l-main section {
  padding: 3rem 0;
}
.l-sidebar {
  width: 260px;
}
@media screen and (max-width: 1023px) {
  .l-sidebar {
    display: none;
  }
}
.l-sidebar__title {
  background: #0089ff;
  color: #fff;
  font-size: 1.125em;
  font-weight: 700;
  line-height: 1.4;
  padding: 5px;
  text-align: center;
}
.l-sidebar-section + .l-sidebar-section {
  margin-top: 2rem;
}
.l-sidebar-contact {
  background: url(../../images/common/sidebar/contact_bg.png) no-repeat center/cover;
  height: 182px;
  padding-top: 115px;
}
.l-sidebar-contact a {
  display: block;
  margin: 0 auto;
  width: 233px;
}
.l-sidebar-qualification {
  background: url(../../images/common/sidebar/qualification_bg.jpg) no-repeat center/cover;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 241px;
  padding: 80px 10px 10px;
}
.l-sidebar-officechecker {
  background: url(../../images/common/sidebar/officechecker_bg.jpg) no-repeat center/cover;
  height: 239px;
  padding-top: 194px;
}
.l-sidebar-officechecker a {
  display: block;
  margin: 0 auto;
  width: 235px;
}
.l-sidebar-commonlink {
  border: 1px solid;
  color: #0089ff;
  font-size: 1.125em;
  font-weight: 700;
  height: 75px;
}
.l-sidebar-commonlink a {
  align-items: center;
  display: flex;
  gap: 5px;
  height: 100%;
  padding: 0 1rem;
  position: relative;
}
.l-sidebar-commonlink a::before {
  background: url(../../images/common/icon/cube.svg) no-repeat center/contain;
  content: "";
  display: block;
  flex-shrink: 0;
  height: 1.2em;
  position: relative;
  width: 1.2em;
}
.l-sidebar-commonlink__bg {
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
}
.l-sidebar-commonlink__bg img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.l-sidebar-commonlink__txt {
  text-shadow: 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff;
  line-height: 1.4;
  position: relative;
}
.l-sidebar-ranking {
  border: 1px solid #0089ff;
}
.l-sidebar-ranking ul {
  padding: 1rem;
}
.l-sidebar-ranking-list__item {
  font-size: 1em !important;
  font-weight: 400 !important;
}
.l-sidebar-ranking-list__item + .l-sidebar-ranking-list__item {
  margin-top: 1rem;
}
.l-sidebar-service {
  border: 1px solid #0089ff;
  color: #0089ff;
}
.l-sidebar-service-list {
  padding: 1rem;
}
.l-sidebar-service-list__item {
  align-items: center;
  border-bottom: 1px solid;
  display: flex;
  gap: 5px;
  padding: 0 5px 1rem;
}
.l-sidebar-service-list__item::before {
  background: url(../../images/common/icon/cube.svg) no-repeat center/contain;
  content: "";
  display: block;
  flex-shrink: 0;
  height: 1.2em;
  position: relative;
  width: 1.2em;
}
.l-sidebar-service-list__item + .l-sidebar-service-list__item {
  margin-top: 1rem;
}
.c-heading01 {
  align-items: center;
  background: #0089ff;
  color: #fff;
  display: flex;
  font-size: 1.125em;
  font-weight: 900;
  gap: 1.5rem;
  margin-bottom: 1em;
  padding: 2rem 1.5rem;
}
@media screen and (min-width: 744px) {
  .c-heading01 {
    font-size: 1.5em;
  }
}
.c-heading01::before {
  background: url(../../images/common/icon/hand.svg) no-repeat center/contain;
  content: "";
  display: block;
  height: 47px;
  width: 39px;
}
@media screen and (min-width: 744px) {
  .c-heading01 br.sp {
    display: none;
  }
}
.c-heading02 {
  align-items: center;
  color: #0089ff;
  display: flex;
  font-size: 1.125em;
  font-weight: 900;
  gap: 1em;
  line-height: 1.5;
  margin-bottom: 1em;
  text-align: center;
}
@media screen and (min-width: 744px) {
  .c-heading02 {
    font-size: 1.5em;
  }
}
.c-heading02::before, .c-heading02::after {
  background: currentColor;
  content: "";
  display: block;
  flex-grow: 1;
  height: 1px;
}
@media screen and (min-width: 744px) {
  .c-heading02 br.sp {
    display: none;
  }
}
.c-btn01 {
  margin-top: 2rem;
}
.c-btn01 a {
  transition: 0.4s;
  background: linear-gradient(to bottom, #ff9900 0%, #ffa608 51%, #ff9900 52%, #ff9900 52%, #ff9900 100%);
  border-radius: 1rem;
  color: #fff;
  display: block;
  font-size: 1.125em;
  font-weight: 500;
  margin: 0 auto;
  padding: 0.3em 0;
  text-align: center;
  width: min(645px, 100%);
}
.c-btn01 a:hover {
  opacity: 0.7;
}
@media screen and (min-width: 744px) {
  .c-btn01 a {
    font-size: 1.5em;
  }
}
.wp-pagenavi {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 3rem;
}
.wp-pagenavi > * {
  background: #fff;
  border: 1px solid #ff6600;
  border-radius: 50%;
  color: #373737;
  display: grid;
  font-size: 1.2em;
  font-weight: 700;
  height: clamp(2.9rem, 8vw, 3.8rem);
  line-height: 1;
  place-items: center;
  transition: 0.4s;
  width: clamp(2.9rem, 8vw, 3.8rem);
}
.wp-pagenavi > *:not(.current):not(.extend) {
  cursor: pointer;
}
.wp-pagenavi > *:not(.current):not(.extend):hover {
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.3);
}
.wp-pagenavi .current {
  background: #ff6600;
  color: #fff;
}
.wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink {
  color: transparent;
  position: relative;
}
.wp-pagenavi .previouspostslink::before, .wp-pagenavi .nextpostslink::before {
  bottom: 0;
  color: #ff6600;
  content: ">";
  display: block;
  font-size: 1em;
  font-weight: 700;
  height: 1em;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 0.6em;
}
.wp-pagenavi .previouspostslink::before {
  transform: scale(-1, 1);
}
.c-page-flex {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.c-page-flex + .c-page-flex {
  margin-top: 4rem;
}
@media screen and (min-width: 1024px) {
  .c-page-flex {
    align-items: flex-start;
    flex-direction: row-reverse;
    gap: 3rem;
    justify-content: space-between;
  }
  .c-page-flex--rev {
    flex-direction: row;
  }
}
.c-page-flex__image {
  flex-shrink: 0;
  margin: 0 auto;
}
@media screen and (min-width: 744px) {
  .c-page-flex__image {
    width: auto;
  }
}
.c-page-flex__image--shadow {
  box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.38);
}
.c-page-flex-content {
  flex-grow: 1;
  text-align: justify;
}
.c-page-flex + .c-page-grid {
  margin-top: 4rem;
}
.c-page-kv {
  text-shadow: 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff;
  border: 1px solid #0089ff;
  display: flex;
  flex-direction: column;
  min-height: 200px;
  justify-content: center;
  margin-top: 1.5rem;
  padding: 3.5rem 2rem;
  position: relative;
}
@media screen and (min-width: 744px) {
  .c-page-kv {
    padding: 3.5rem;
  }
}
.c-page-kv__bg {
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
}
.c-page-kv__bg img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.c-page-kv__title {
  border-bottom: 1px dotted;
  color: #0089ff;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 744px) {
  .c-page-kv__title {
    width: 49rem;
  }
  .c-page-kv__title br.sp {
    display: none;
  }
}
.c-page-kv__desc {
  font-size: 0.875em;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 5px;
  position: relative;
  text-align: justify;
}
@media screen and (min-width: 744px) {
  .c-page-kv__desc {
    width: 49rem;
  }
}
.c-breadcrumbs {
  font-size: 12px;
  margin-bottom: 2rem;
}
.c-breadcrumbs a {
  color: #007acc;
}
.c-breadcrumbs br {
  display: none;
}
.c-form {
  margin-top: 3rem;
}
.c-form input:not([name*=tel]):not([name*=zip]):not([name*=birthday]):not([type=submit]):not([type=radio]):not([type=checkbox]), .c-form textarea {
  width: 100%;
}
.c-form input[name*=tel], .c-form input[name*=zip], .c-form input[name*=birthday] {
  width: 5em;
}
.c-form input, .c-form select, .c-form textarea {
  background: #f7f7f7;
  border: 1px solid #d1d1d1;
  font-family: inherit;
  font-size: 1em;
  padding: 3px 5px;
}
.c-form-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media screen and (min-width: 744px) {
  .c-form-content {
    align-items: center;
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
  }
}
.c-form-content + .c-form-content {
  border-top: 1px dotted #0089ff;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
}
.c-form-content dt {
  font-size: 1.125em;
  font-weight: 700;
}
@media screen and (min-width: 744px) {
  .c-form-content dt {
    flex-shrink: 0;
    text-align: center;
    width: 35%;
  }
}
.c-form-content dt.hissu {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 744px) {
  .c-form-content dt.hissu {
    flex-direction: column;
  }
}
.c-form-content dt.hissu::after {
  background: #f954f4;
  border-radius: 0 10px 10px 0;
  content: "必須";
  color: #fff;
  font-size: 12px;
  text-align: center;
  width: 10rem;
}
@media screen and (min-width: 744px) {
  .c-form-content dd {
    width: 63%;
  }
}
.c-form-content input[name="address"] {
  margin-top: 1rem;
}
.c-form-privacy {
  align-items: center;
  background: #e7e7e7;
  color: #373737;
  margin: 3rem auto 0;
  padding: 2rem;
  text-align: center;
  width: min(100%, 500px);
}
.c-form-privacy a {
  color: #007acc;
  text-decoration: underline;
}
.c-form-btn {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 3rem;
}
.c-form-btn input {
  background: #ff6600;
  border: 1px solid #ff6600;
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
  font-size: 1.25em;
  font-weight: 700;
  padding: 0.5rem 1.5rem;
  transition: 0.4s;
}
.c-form-btn input:hover {
  background: #fff;
  color: #ff6600;
}
.c-form-btn input[name="submitBack"] {
  filter: grayscale(1);
}
.mw_wp_form_confirm .c-form-privacy {
  display: none;
}
.c-checklist {
  color: #373737;
  list-style: none;
}
.c-checklist__item {
  display: flex;
  gap: 5px;
}
.c-checklist__item + .c-checklist__item {
  margin-top: 1rem;
}
.c-checklist__item::before {
  background: url("../../images/common/icon/check.svg") no-repeat center/contain;
  content: "";
  display: block;
  flex-shrink: 0;
  height: 1.4em;
  width: 1.5em;
}
.c-flow-list {
  counter-reset: flow;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.c-flow-list-item {
  padding-bottom: 20px;
  position: relative;
}
.c-flow-list-item:not(:last-child)::before {
  background: #ffc972;
  bottom: 0;
  clip-path: polygon(100% 25%, 0 25%, 50% 100%);
  content: "";
  display: block;
  height: 3rem;
  left: 0;
  position: absolute;
  width: 3rem;
}
.c-flow-list-item:last-child::before {
  background: #ffc972;
  border-radius: 50%;
  bottom: 0;
  content: "";
  display: block;
  height: 2rem;
  left: 0.5rem;
  position: absolute;
  width: 2rem;
}
.c-flow-list-item::after {
  background: linear-gradient(to top, #ffc972, #ffc972) repeat-y center/1px;
  bottom: 0;
  content: "";
  display: block;
  height: calc(100% - 4rem);
  left: 0;
  position: absolute;
  width: 3rem;
}
.c-flow-list-item__title {
  align-items: center;
  color: #373737;
  display: flex;
  font-size: 1.25em;
  font-weight: 700;
  gap: 10px;
}
@media screen and (min-width: 744px) {
  .c-flow-list-item__title {
    font-size: 1.5em;
  }
}
.c-flow-list-item__title::before {
  background: #f4a11c;
  border-radius: 50%;
  content: counter(flow);
  counter-increment: flow;
  color: #fff;
  display: grid;
  flex-shrink: 0;
  height: 3rem;
  line-height: 1;
  place-items: center;
  position: static;
  width: 3rem;
}
.c-flow-list-item__txt {
  margin-top: 0 !important;
  padding-left: 40px;
}
.c-list01 {
  list-style: none;
}
.c-list01__item {
  border-bottom: 1px solid #0089ff;
  display: flex;
  gap: 1rem;
  line-height: 1.4;
  padding: 8px 0;
}
.c-list01__item::before {
  background: url(../../images/common/icon/cube.svg) no-repeat center/contain;
  content: "";
  flex-shrink: 0;
  height: 1em;
  margin-top: 0.25em;
  width: 1em;
}
.p-index-heading {
  background: #0089ff;
}
.p-index-heading-01 {
  justify-content: space-between;
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 743px) {
  .p-index-heading-01 {
    padding: 2rem 0;
  }
}
.p-index-heading-01::after {
  content: "";
  display: block;
  width: 39px;
}
.p-index-heading-01 span::after {
  content: "～" attr(data-en) "～";
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
}
.p-index-heading-02 span::after {
  color: #373737;
  content: attr(data-en);
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
}
.p-index-slider {
  margin: 1rem auto 0;
}
.p-index-slider-item {
  display: grid;
}
.p-index-slider-item__bg {
  grid-area: 1/1;
}
.p-index-slider-item__bg img {
  height: auto;
  width: 100%;
}
.p-index-slider-item-btns {
  grid-area: 1/1;
  max-width: calc(100% - 5vw);
}
.p-index-slider-item-btns a {
  transition: 0.4s;
}
.p-index-slider-item-btns a:hover {
  opacity: 0.7;
}
.p-index-slider-item-btns img {
  width: auto;
}
.p-index-slider-item--01-btns {
  display: grid;
  gap: 1rem;
  grid-template-columns: auto auto;
  margin: auto auto 1rem;
}
@media screen and (min-width: 1024px) {
  .p-index-slider-item--01-btns {
    margin: auto auto 4%;
  }
}
@media screen and (min-width: 744px) {
  .p-index-slider-item--01-btns a {
    width: max-content;
  }
}
.p-index-slider-item--02-btns {
  display: grid;
  grid-template-columns: auto auto auto;
  margin: auto auto 4%;
}
@media screen and (max-width: 743px) {
  .p-index-slider-item--02-btns {
    margin: auto auto 10%;
  }
}
@media screen and (max-width: 743px) {
  .p-index-slider-item--02-btns a:not(:first-child) {
    display: none;
  }
}
.p-index-slider-item--03-btns {
  margin: auto auto 1rem 1rem;
  width: 53%;
}
@media screen and (min-width: 744px) {
  .p-index-slider-item--03-btns {
    margin: auto auto 3% 6%;
    width: 63%;
  }
}
.p-index-slider-item--04-btns {
  display: grid;
  gap: 1rem;
  grid-template-columns: 100%;
  margin: auto auto 1rem;
  width: max-content;
}
@media screen and (min-width: 744px) {
  .p-index-slider-item--04-btns {
    grid-template-columns: 1fr 1fr;
    margin: auto auto 4%;
    width: auto;
  }
}
.p-index-improvement-wrapper {
  padding: 4rem 0;
  position: relative;
}
.p-index-improvement__bg {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.p-index-improvement__bg img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.p-index-improvement .l-container {
  position: relative;
}
.p-index-improvement-content {
  align-items: center;
  background: #fff;
  box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.38);
  display: flex;
  gap: 1.5rem;
  max-width: 77rem;
  padding: 1rem;
  position: relative;
}
@media screen and (min-width: 744px) {
  .p-index-improvement-content {
    height: 86px;
  }
}
@media screen and (min-width: 1024px) {
  .p-index-improvement-content:nth-child(2) {
    margin-left: 7rem;
  }
  .p-index-improvement-content:nth-child(3) {
    margin-left: 14rem;
  }
  .p-index-improvement-content:nth-child(4) {
    margin-left: auto;
  }
}
.p-index-improvement-content + .p-index-improvement-content {
  margin-top: 1rem;
}
@media screen and (min-width: 744px) {
  .p-index-improvement-content + .p-index-improvement-content {
    margin-top: 3rem;
  }
}
.p-index-improvement-content::before {
  align-self: flex-end;
  background: url(../../images/common/icon/presentation.svg) no-repeat center/contain;
  content: "";
  display: block;
  height: 51px;
  width: 32px;
}
.p-index-improvement-content__bg {
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
}
.p-index-improvement-content__bg img {
  height: 100%;
  width: auto;
}
.p-index-improvement-content__txt {
  color: #373737;
  font-size: 1.125em;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 0 !important;
  position: relative;
}
@media screen and (min-width: 744px) {
  .p-index-improvement-content__txt {
    font-size: 1.375em;
  }
}
@media screen and (min-width: 744px) {
  .p-index-improvement-content__txt br.sp {
    display: none;
  }
}
.p-index-improvement-content__txt strong {
  background: linear-gradient(transparent 60%, #ff0 0%);
}
.p-index-improvement-article {
  margin-top: 3rem;
}
.p-index-diagnosis .c-heading01 {
  margin-bottom: 0;
}
.p-index-diagnosis-wrapper {
  background: #f4ffff;
  padding: 3rem 0;
}
.p-index-diagnosis__title {
  align-items: center;
  color: #373737;
  display: flex;
  font-size: 1.125em;
  font-weight: 900;
  gap: 1em;
}
.p-index-diagnosis__title::after {
  background: currentColor;
  content: "";
  display: block;
  flex-grow: 1;
  height: 1px;
}
.p-index-diagnosis__image {
  box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.38);
  margin-top: 1em;
}
.p-index-example__lead {
  color: #0089ff;
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 744px) {
  .p-index-example__lead {
    font-size: 1.5em;
  }
}
@media screen and (min-width: 1024px) {
  .p-index-example__lead br.tablet {
    display: none;
  }
}
.p-index-example-images {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
@media screen and (min-width: 744px) {
  .p-index-example-images {
    align-items: flex-start;
    flex-direction: row;
    justify-content: space-between;
  }
}
.p-index-example-images__arrow {
  background: #0089ff;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  flex-shrink: 0;
  height: 33px;
  width: 156px;
}
@media screen and (min-width: 744px) {
  .p-index-example-images__arrow {
    align-self: center;
    clip-path: polygon(100% 50%, 0 0, 0 100%);
    height: 156px;
    width: 33px;
  }
}
@media screen and (min-width: 1024px) {
  .p-index-technique-ranking {
    background: url(../../images/index/technique_ranking_bg.jpg) no-repeat right bottom/contain;
  }
}
@media screen and (min-width: 1024px) {
  .p-index-technique-ranking ul {
    width: max-content;
  }
}
.p-index-technique-ranking-list__item, .l-sidebar-ranking-list__item, .p-case-archive-list-item-content__title {
  align-items: center;
  border-bottom: 1px solid;
  color: #0089ff;
  display: flex;
  font-size: 1.125em;
  font-weight: 700;
  gap: 1rem;
  line-height: 1.4;
  padding-bottom: 1rem;
}
@media screen and (min-width: 744px) {
  .p-index-technique-ranking-list__item, .l-sidebar-ranking-list__item, .p-case-archive-list-item-content__title {
    font-size: 1.25em;
  }
}
.p-index-technique-ranking-list__item::before, .l-sidebar-ranking-list__item::before, .p-case-archive-list-item-content__title::before {
  background: no-repeat center/contain;
  content: "";
  display: block;
  flex-shrink: 0;
  height: 2em;
  width: 2em;
}
.p-index-technique-ranking-list__item:nth-child(1)::before, .l-sidebar-ranking-list__item:nth-child(1)::before, .p-case-archive-list-item-content__title:nth-child(1)::before {
  background-image: url(../../images/index/technique_ranking01.png);
}
.p-index-technique-ranking-list__item:nth-child(2)::before, .l-sidebar-ranking-list__item:nth-child(2)::before, .p-case-archive-list-item-content__title:nth-child(2)::before {
  background-image: url(../../images/index/technique_ranking02.png);
}
.p-index-technique-ranking-list__item:nth-child(3)::before, .l-sidebar-ranking-list__item:nth-child(3)::before, .p-case-archive-list-item-content__title:nth-child(3)::before {
  background-image: url(../../images/index/technique_ranking03.png);
}
.p-index-technique-ranking-list__item:nth-child(4)::before, .l-sidebar-ranking-list__item:nth-child(4)::before, .p-case-archive-list-item-content__title:nth-child(4)::before {
  background-image: url(../../images/index/technique_ranking04.png);
}
.p-index-technique-ranking-list__item:nth-child(5)::before, .l-sidebar-ranking-list__item:nth-child(5)::before, .p-case-archive-list-item-content__title:nth-child(5)::before {
  background-image: url(../../images/index/technique_ranking05.png);
}
.p-index-technique-ranking-list__item:nth-child(6)::before, .l-sidebar-ranking-list__item:nth-child(6)::before, .p-case-archive-list-item-content__title:nth-child(6)::before {
  background-image: url(../../images/index/technique_ranking06.png);
}
.p-index-technique-ranking-list__item:nth-child(7)::before, .l-sidebar-ranking-list__item:nth-child(7)::before, .p-case-archive-list-item-content__title:nth-child(7)::before {
  background-image: url(../../images/index/technique_ranking07.png);
}
.p-index-technique-ranking-list__item:nth-child(8)::before, .l-sidebar-ranking-list__item:nth-child(8)::before, .p-case-archive-list-item-content__title:nth-child(8)::before {
  background-image: url(../../images/index/technique_ranking08.png);
}
.p-index-technique-ranking-list__item:nth-child(9)::before, .l-sidebar-ranking-list__item:nth-child(9)::before, .p-case-archive-list-item-content__title:nth-child(9)::before {
  background-image: url(../../images/index/technique_ranking09.png);
}
.p-index-technique-ranking-list__item:nth-child(10)::before, .l-sidebar-ranking-list__item:nth-child(10)::before, .p-case-archive-list-item-content__title:nth-child(10)::before {
  background-image: url(../../images/index/technique_ranking10.png);
}
.p-index-technique-ranking-list__item + .p-index-technique-ranking-list__item, .l-sidebar-ranking-list__item + .p-index-technique-ranking-list__item, .p-case-archive-list-item-content__title + .p-index-technique-ranking-list__item, .p-index-technique-ranking-list__item + .l-sidebar-ranking-list__item, .p-index-technique-ranking-list__item + .p-case-archive-list-item-content__title {
  margin-top: 1rem;
}
.p-index-technique-category {
  border-top: 10px solid #0089ff;
  padding: 4rem 0;
  position: relative;
}
.p-index-technique-category__bg {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.p-index-technique-category__bg img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.p-index-technique-category .p-index-heading-02 {
  justify-content: center;
  position: relative;
}
.p-index-technique-category .p-index-heading-02::before, .p-index-technique-category .p-index-heading-02::after {
  display: none;
}
.p-index-technique-category-wrapper {
  display: grid;
  gap: 2rem;
  grid-template-columns: 100%;
  position: relative;
}
@media screen and (min-width: 744px) {
  .p-index-technique-category-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
.p-index-technique-category-content {
  align-items: center;
  background: #fff;
  box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.38);
  display: flex;
  gap: 1rem;
  padding: 2rem 1rem;
  position: relative;
}
.p-index-technique-category-content::before {
  background: url(../../images/common/icon/cube.svg) no-repeat center/contain;
  content: "";
  display: block;
  height: 23px;
  width: 25px;
}
.p-index-technique-category-content__bg {
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
}
.p-index-technique-category-content__bg img {
  height: 100%;
  width: auto;
}
.p-index-technique-category-content__txt {
  text-shadow: 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff;
  color: #373737;
  font-size: 0.875em;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 0 !important;
  position: relative;
}
@media screen and (min-width: 744px) {
  .p-index-technique-category-content__txt {
    font-size: 1.375em;
  }
}
.p-index-technique-category .c-btn01 {
  position: relative;
}
.p-index-service {
  background: #f4ffff;
  padding-top: 0 !important;
}
@media screen and (min-width: 1024px) {
  .p-index-service__lead {
    text-align: center;
  }
}
.p-index-service-wrapper {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
  margin: 2rem auto 0;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-index-service-wrapper {
    display: flex;
    justify-content: space-between;
  }
}
.p-index-service-content__image picture {
  border-radius: 50%;
  margin: 0 auto 10px;
  max-width: 176px;
  overflow: hidden;
  width: 70%;
}
@media screen and (min-width: 1024px) {
  .p-index-service-content__image picture {
    width: auto;
  }
}
.p-index-service-content figcaption {
  font-size: 1.2em;
  font-weight: 600;
  margin: 0;
}
.p-index-qualification .c-heading01 {
  margin-bottom: 0;
}
.p-index-qualification-wrapper {
  background: url(../../images/index/qualification_bg.jpg) no-repeat center/cover;
  padding: 4rem 0;
}
.p-index-qualification-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}
@media screen and (min-width: 744px) {
  .p-index-qualification-links {
    flex-direction: row;
    justify-content: center;
  }
}
.p-index-seminar .c-heading01 {
  margin-bottom: 0;
}
.p-index-seminar-wrapper {
  background: url(../../images/index/seminar_bg.jpg) no-repeat right bottom/cover;
  padding: 3rem 0;
}
@media screen and (min-width: 744px) {
  .p-index-seminar-wrapper {
    background-position: right center;
    background-size: contain;
    padding: 3rem 0 6rem 16rem;
  }
}
@media screen and (min-width: 744px) {
  .p-index-seminar-content {
    width: max-content;
  }
}
.p-index-seminar-content__image {
  margin: 0 auto;
  width: 63px;
}
.p-index-seminar-content__txt {
  text-shadow: 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff;
  color: #373737;
  font-weight: 700;
  text-align: center;
}
.p-index-seminar-content__link {
  background: #0089ff;
  color: #fff;
  display: block;
  font-weight: 700;
  margin: 2rem auto 0;
  padding: 1rem 2rem;
  width: max-content;
}
@media screen and (min-width: 1024px) {
  .p-index-advisor__lead {
    text-align: center;
  }
}
.p-index-advisor .c-heading02 {
  margin-top: 1.5em;
}
.p-index-advisor-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (min-width: 744px) {
  .p-index-advisor-wrapper {
    align-items: flex-start;
    flex-direction: row;
  }
}
.p-index-advisor__image {
  margin: 0 auto;
  width: auto;
}
@media screen and (min-width: 744px) {
  .p-index-advisor__image {
    margin: 0;
  }
}
.p-index-advisor__image img {
  width: auto;
}
.p-index-advisor-links {
  display: grid;
  flex-grow: 1;
  grid-template-columns: 1fr 1fr;
}
@media screen and (min-width: 744px) {
  .p-index-advisor-links {
    gap: 2rem 0;
  }
}
.p-index-advisor-links__item {
  color: #fff;
  font-size: 1.125em;
  font-weight: 500;
  padding: 2rem 0;
  text-align: center;
}
.p-index-advisor-links__item[data-area="hokkaido"] {
  background: #2aab39;
}
.p-index-advisor-links__item[data-area="kanto"] {
  background: #00caff;
}
.p-index-advisor-links__item[data-area="chubu"] {
  background: #2ca6e0;
}
.p-index-advisor-links__item[data-area="kinki"] {
  background: #ff9fd4;
}
.p-index-advisor-links__item[data-area="chugoku"] {
  background: #e95711;
}
.p-index-advisor-links__item[data-area="kyushu"] {
  background: #d6e20e;
}
.p-advisor-merit__title {
  margin-top: 1.5em;
}
.p-advisor-point__txt strong {
  background: linear-gradient(transparent 60%, #ff0 0%);
  color: #373737;
  font-weight: 700;
}
.p-advisor-archive-search-form label {
  display: inline-block;
  font-size: 1.125em;
  width: 32%;
}
@media screen and (max-width: 743px) {
  .p-advisor-archive-search-form label {
    width: 48%;
  }
}
.p-advisor-archive-search-form label input:checked ~ span {
  color: #ff6600;
}
.p-advisor-archive-search-form input[type="submit"] {
  background: linear-gradient(to bottom, #ff9900 0%, #ffa608 51%, #ff9900 52%, #ff9900 52%, #ff9900 100%);
  border: 1px solid #ff6600;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  display: block;
  font-family: inherit;
  font-size: 1.125em;
  font-weight: 700;
  margin: 2rem auto 0;
  padding: 0.5rem;
  width: 80%;
}
.p-advisor-archive-table {
  border: 2px solid #0089ff;
  width: 100%;
}
.p-advisor-archive-table + .p-advisor-archive-table {
  margin-top: 3rem;
}
.p-advisor-archive-table th, .p-advisor-archive-table td {
  border: solid #0089ff;
  border-width: 0 2px 2px 0;
  padding: 1rem;
}
.p-advisor-archive-table th {
  font-size: 1.125em;
  font-weight: 700;
  width: 0;
  white-space: nowrap;
}
.p-advisor-archive-table td {
  color: #373737;
}
.p-advisor-archive-table td img {
  width: auto;
}
.p-advisor-archive-table a {
  color: #007acc;
  text-decoration: underline;
}
@media screen and (max-width: 743px) {
  .p-advisor-archive-table, .p-advisor-archive-table tbody, .p-advisor-archive-table tr, .p-advisor-archive-table th, .p-advisor-archive-table td {
    display: block;
    width: 100%;
  }
  .p-advisor-archive-table th {
    border-width: 0;
  }
  .p-advisor-archive-table tr:not(:first-child) th {
    border-width: 2px 0 0;
  }
  .p-advisor-archive-table td {
    border-width: 1px 0 0;
    text-align: center;
  }
  .p-advisor-archive-table td img {
    margin: 0 auto;
  }
}
.p-works-archive-item {
  border: 2px solid #0089ff;
  padding: 1.5rem;
}
.p-works-archive-item + .p-works-archive-item {
  margin-top: 3rem;
}
.p-works-archive-item__title {
  color: #0089ff;
  font-size: 1.5em;
  font-weight: 700;
  text-align: center;
}
.p-works-archive-item-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}
@media screen and (min-width: 744px) {
  .p-works-archive-item-inner {
    flex-direction: row;
  }
}
.p-works-archive-item__thumbnail {
  aspect-ratio: 1/1;
  flex-shrink: 0;
  height: 15rem;
  width: 100%;
}
@media screen and (min-width: 744px) {
  .p-works-archive-item__thumbnail {
    height: auto;
    width: 20rem;
  }
}
.p-works-archive-item__thumbnail img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.p-works-archive-item-content {
  flex-grow: 1;
}
.p-works-archive-item__excerpt {
  font-size: 0.875em;
}
.p-works-single__title {
  color: #0089ff;
  font-size: 1.5em;
  font-weight: 700;
  margin: 1em 0;
  text-align: center;
}
.p-guidebook-about-include {
  border: 1px solid #0089ff;
  margin-top: 3rem;
  padding: 1.5rem;
}
.p-guidebook-about-include__title {
  justify-content: center;
  margin-bottom: 1rem;
  text-align: center;
}
.p-guidebook-about-include__title::before, .p-guidebook-about-include__title::after {
  display: none;
}
@media screen and (min-width: 744px) {
  .p-guidebook-about-include-list {
    display: grid;
    gap: 0 1rem;
    grid-template-columns: 1fr 1fr;
    list-style: none;
  }
}
.p-guidebook-about-include-list__item::before {
  content: "・";
}
.p-service-nav-wrapper {
  background: #f4ffff;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr;
  margin-top: 3rem;
  padding: 3rem;
  text-align: center;
}
.p-service-nav-item__image {
  border-radius: 50%;
  margin: 0 auto;
  width: 70%;
}
.p-service-nav-item__txt {
  font-size: 1.2em;
  font-weight: 600;
  margin-top: 1rem !important;
}
.p-service-section {
  --base: #167fbf;
  --sub: #fff;
}
.p-service-content {
  border: 1px solid var(--base);
  margin-top: 3rem;
}
.p-service-content-btn {
  align-items: center;
  background: var(--base);
  color: var(--sub);
  cursor: pointer;
  display: flex;
  font-size: 1.2em;
  gap: 1rem;
  justify-content: space-between;
  padding: 1.5rem 1rem;
  transition: 0.4s;
}
@media screen and (max-width: 1023px) {
  .p-service-content-btn {
    flex-wrap: wrap;
  }
}
.p-service-content-btn:hover {
  --base: #fff;
  --sub: #167fbf;
}
@media screen and (max-width: 1023px) {
  .p-service-content-btn__txt {
    width: 100%;
  }
}
.p-service-content-btn__price {
  align-items: flex-end;
  background: var(--sub);
  border-radius: 10px;
  color: var(--base);
  display: flex;
  flex-shrink: 0;
  line-height: 1;
  margin-left: auto;
  padding: 1rem;
  transition: 0.4s;
}
@media screen and (max-width: 1023px) {
  .p-service-content-btn__price {
    margin-left: 0;
  }
}
.p-service-content-btn__price span {
  font-size: 0.8em;
}
.p-service-content-btn__more {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  gap: 10px;
  justify-content: flex-end;
  width: 4.5em;
}
@media screen and (max-width: 1023px) {
  .p-service-content-btn__more {
    margin-left: auto;
  }
}
.p-service-content-btn__more::before {
  content: "詳細";
}
.p-service-content-btn__more::after {
  border: solid;
  border-width: 0 3px 3px 0;
  content: "";
  display: block;
  height: 0.7em;
  margin-top: -0.4em;
  transform: rotate(45deg);
  transition: transform 0.4s, margin-top 0.4s;
  width: 0.7em;
}
.p-service-content.active .p-service-content-btn__more::before {
  content: "閉じる";
}
.p-service-content.active .p-service-content-btn__more::after {
  margin-top: 0.2em;
  transform: rotate(-135deg);
}
.p-service-content-article {
  overflow: hidden;
  padding: 0 2rem;
  transition: 0.4s;
}
.p-service-content-article__title {
  align-items: center;
  color: #373737;
  display: flex;
  font-weight: 700;
  gap: 5px;
  margin-bottom: 10px;
}
.p-service-content-article__title::before {
  content: "◆";
}
.p-service-content-article__title::after {
  background: currentColor;
  content: "";
  display: block;
  flex-grow: 1;
  height: 1px;
}
* + .p-service-content-article__title {
  margin-top: 2rem;
}
.p-service-content-article p {
  margin-top: 0.5rem !important;
}
.p-service-content-article-contact a {
  color: #007acc;
  text-decoration: underline;
}
.p-service-content-article-contact__tel, .p-service-content-article-contact__form {
  align-items: center;
  display: inline-flex;
  gap: 5px;
}
.p-service-content-article-contact__tel::before, .p-service-content-article-contact__form::before {
  background: no-repeat center/contain;
  content: "";
  display: block;
  flex-shrink: 0;
  height: 1em;
  width: 1em;
}
@media screen and (min-width: 744px) {
  .p-service-content-article-contact__tel {
    color: inherit;
    pointer-events: none;
    text-decoration: none;
  }
}
.p-service-content-article-contact__tel::before {
  background-image: url(../../images/pages/service/tel.svg);
}
.p-service-content-article-contact__form::before {
  background-image: url(../../images/pages/service/mail.svg);
}
.p-service-content.active .p-service-content-article {
  border-top: 1px solid var(--base);
  padding: 2rem;
}
.p-aboutoc-about-wrapper {
  margin-top: 3rem;
}
@media screen and (min-width: 744px) {
  .p-aboutoc-about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.p-aboutoc-flow__image {
  margin-top: 1em;
}
.p-aboutoc-able-wrapper + .p-aboutoc-able-wrapper {
  margin-top: 3rem;
}
.p-aboutoc-able__image {
  box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.38);
  margin: 0 auto;
  width: min(100%, 60rem);
}
.p-aboutoc-able-list {
  margin-top: 1em;
}
.p-aboutoc-lets-link {
  display: block;
  margin-top: 1em;
}
.p-premium-problem__lead {
  color: #f954f4;
  font-size: 1.125em;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
@media screen and (min-width: 744px) {
  .p-premium-problem__lead {
    font-size: 1.5em;
  }
  .p-premium-problem__lead br.sp {
    display: none;
  }
}
.p-premium-problem__lead::before {
  background: #0089ff;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  content: "";
  display: block;
  height: 1.5em;
  margin: 2rem auto;
  width: 4em;
}
.p-premium-about-wrapper {
  margin-top: 3rem;
}
.p-premium-about-wrapper picture {
  width: 200px;
}
.p-premium-sample-slider {
  max-width: 700px;
  overflow: hidden;
  position: relative;
}
.p-premium-sample-slider picture {
  width: 100%;
}
.p-premium-sample-slider__prev, .p-premium-sample-slider__next {
  background: rgba(255, 102, 0, 0.15);
  border-radius: 50%;
  bottom: 0;
  cursor: pointer;
  display: grid;
  height: 4rem;
  margin: auto;
  place-items: center;
  position: absolute;
  top: 0;
  width: 4rem;
  z-index: 2;
}
.p-premium-sample-slider__prev::before, .p-premium-sample-slider__next::before {
  border: solid #ff6600;
  border-width: 6px 6px 0 0;
  content: "";
  display: block;
  height: 2rem;
  margin-left: -0.5rem;
  transform: rotate(45deg);
  width: 2rem;
}
.p-premium-sample-slider__prev {
  left: 1rem;
  transform: scale(-1, 1);
}
.p-premium-sample-slider__next {
  right: 1rem;
}
.p-premium-cost-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media screen and (min-width: 744px) {
  .p-premium-cost-wrapper {
    flex-direction: row;
    gap: 2rem;
  }
}
@media screen and (min-width: 744px) {
  .p-premium-cost .c-heading02 {
    font-size: 1.125em;
    gap: 1rem;
  }
}
.p-premium-contact-wrapper {
  align-items: center;
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}
/** common **/
img.lecture-flRight {
  float: right;
  margin-left: 1em;
  width: auto;
}
.lecture-application {
  display: flex;
  justify-content: center;
  margin: 3em 0;
}
.lecture-application a {
  align-items: center;
  background: #ffca4c;
  border-radius: 10px;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  font-size: 1.125em;
  font-weight: 700;
  padding: 1em 2em;
  position: relative;
}
.lecture-application a::before {
  background: url("../../images/pages/lecture/lecture_application.svg") no-repeat center center/contain;
  content: "";
  display: block;
  height: 2em;
  margin-right: 1em;
  position: relative;
  width: 2.3em;
  z-index: 1;
}
.lecture-application a::after {
  background: #edb94b;
  border-radius: 0 0 10px 10px;
  bottom: 0;
  content: "";
  display: block;
  height: 50%;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 0;
}
@media screen and (max-width: 743px) {
  .lecture-application a {
    font-size: 1em;
  }
}
.lecture-application a span {
  position: relative;
  z-index: 1;
}
/** about **/
@media screen and (max-width: 768px) {
  .lecture-about img {
    width: 200px;
  }
}
/** merit **/
.lecture-merit ul {
  background: url("../../images/pages/lecture/lecture_02.jpg") no-repeat right center/auto 100%;
  list-style: none;
  margin: 0;
  padding: 3em 0;
}
.lecture-merit li {
  align-items: flex-start;
  color: #890000;
  display: flex;
  font-weight: bold;
  line-height: 1.75;
  text-shadow: 3px 3px 6px #fff, -3px 3px 6px #fff, 3px -3px 6px #fff, -3px -3px 6px #fff, 3px 0 6px #fff, 0px 3px 6px #fff, -3px 0 6px #fff, 0px -3px 6px #fff;
}
.lecture-merit li:not(:last-child) {
  margin-bottom: 1em;
}
.lecture-merit li::before {
  background: url("../../images/pages/lecture/lecture_check.png") no-repeat center center/contain;
  content: "";
  display: block;
  flex-shrink: 0;
  height: 1.75em;
  margin-right: 0.5em;
  width: 2em;
}
.lecture-merit li p {
  color: inherit;
  font-size: 1em;
  margin: 0;
}
.lecture-merit li span {
  font-size: 12px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .lecture-merit li p {
    width: calc(100% - 2.5em);
  }
}
/** recommend **/
.lecture-recommend ul {
  background: url("../../images/pages/lecture/lecture_03.jpg") no-repeat right center/auto 100%;
  list-style: none;
  margin: 0;
  padding: 3em 0;
}
.lecture-recommend li {
  align-items: flex-start;
  color: #0ab36d;
  display: flex;
  font-weight: bold;
  line-height: 1.625;
  text-shadow: 3px 3px 6px #fff, -3px 3px 6px #fff, 3px -3px 6px #fff, -3px -3px 6px #fff, 3px 0 6px #fff, 0px 3px 6px #fff, -3px 0 6px #fff, 0px -3px 6px #fff;
}
.lecture-recommend li:not(:last-child) {
  margin-bottom: 1em;
}
.lecture-recommend li::before {
  background: url("../../images/pages/lecture/lecture_arrow.svg") no-repeat center center/contain;
  content: "";
  display: block;
  flex-shrink: 0;
  height: 1.625em;
  margin-right: 0.5em;
  width: 2em;
}
.lecture-recommend li p {
  color: inherit;
  font-size: 1em;
  margin: 0;
}
.lecture-recommend li span {
  font-size: 12px;
  font-weight: 400;
}
/** overview **/
.lecture-overview table, .lecture-overview th, .lecture-overview td {
  border: none;
}
.lecture-overview table {
  color: #87543b;
}
.lecture-overview th, .lecture-overview td {
  border-bottom: 1px solid #0d82ff;
  padding: 0.8em 0;
}
.lecture-overview th {
  color: #0d82ff;
  width: 30%;
}
.lecture-overview td {
  font-size: 0.8em;
  width: 70%;
}
.lecture-overview td strong {
  font-size: 1.2em;
}
/** curriculum **/
.lecture-curriculum {
  counter-reset: curriculum;
  margin-bottom: 3em;
}
.lecture-curriculum ul {
  background: url("../../images/pages/lecture/lecture_04.jpg") no-repeat left center/cover;
  list-style: none;
  margin: 0;
  padding: 2em 3em;
}
.lecture-curriculum02 ul {
  background: url("../../images/pages/lecture/lecture_17.jpg") no-repeat left center/cover;
}
.lecture-curriculum li {
  align-items: center;
  color: #890000;
  display: flex;
  font-weight: bold;
  text-shadow: 3px 3px 6px #fff, -3px 3px 6px #fff, 3px -3px 6px #fff, -3px -3px 6px #fff, 3px 0 6px #fff, 0px 3px 6px #fff, -3px 0 6px #fff, 0px -3px 6px #fff;
}
.lecture-curriculum li:not(:last-child) {
  margin-bottom: 1em;
}
.lecture-curriculum li::before {
  content: "第" counter(curriculum) "章";
  color: #3c3c3c;
  counter-increment: curriculum;
  display: block;
  font-weight: 400;
  margin-right: 1em;
  padding: 0.6em 0;
  text-align: center;
  text-shadow: none;
  width: 130px;
}
.lecture-curriculum li.matome::before {
  content: "まとめ";
}
.lecture-curriculum li:nth-child(n + 6)::before {
  color: #fff;
}
.lecture-curriculum li:nth-child(1)::before {
  background: #edf3ff;
}
.lecture-curriculum li:nth-child(2)::before {
  background: #e3edff;
}
.lecture-curriculum li:nth-child(3)::before {
  background: #cee3ff;
}
.lecture-curriculum li:nth-child(4)::before {
  background: #a3ceff;
}
.lecture-curriculum li:nth-child(5)::before {
  background: #80b8ff;
}
.lecture-curriculum li:nth-child(6)::before {
  background: #55a3ff;
}
.lecture-curriculum li:nth-child(7)::before {
  background: #2b8eff;
}
.lecture-curriculum li:nth-child(8)::before {
  background: #0080ff;
}
.lecture-curriculum li:nth-child(9)::before {
  background: #006ace;
}
.lecture-curriculum li:nth-child(10)::before {
  background: #0055a3;
}
.lecture-curriculum li:nth-child(10) ~ li::before {
  background: #004080;
}
.lecture-curriculum li p {
  color: inherit;
  font-size: 1em;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .lecture-curriculum02 ul {
    padding: 2em 1em 3em;
  }
  .lecture-curriculum li::before {
    font-size: 12px;
    width: 80px;
  }
  .lecture-curriculum li p {
    width: calc(100% - 80px - 1em);
  }
}
/** voice **/
.lecture-voice {
  margin-bottom: 4em;
}
.voice-wrap {
  align-items: flex-end;
  display: flex;
}
.voice-wrap:nth-child(odd) {
  flex-direction: row-reverse;
}
.voice-wrap:not(:last-child) {
  margin-bottom: 3em;
}
@media screen and (max-width: 743px) {
  .voice-wrap {
    align-items: flex-start;
    flex-direction: column-reverse;
  }
  .voice-wrap:nth-child(odd) {
    align-items: flex-end;
    flex-direction: column-reverse;
  }
}
.voice-img {
  width: 15%;
}
.voice-img img {
  border: 2px solid #0d82ff;
  border-radius: 50%;
}
.voice-article {
  align-items: center;
  display: flex;
  height: 10.8em;
  margin: 0 5%;
  padding: 0 2em 1.5em;
  width: 70%;
}
.voice-wrap:nth-child(even) .voice-article {
  background: url("../../images/pages/lecture/balloon01.svg") no-repeat center center/contain;
}
.voice-wrap:nth-child(odd) .voice-article {
  background: url("../../images/pages/lecture/balloon02.svg") no-repeat center center/contain;
}
.voice-article p {
  color: #4b4b4b;
  font-size: 0.875em;
  margin: 0;
}
.lecture-voice figure {
  box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.4);
  padding: 1em;
  margin: 0 auto;
  width: 60%;
}
.lecture-voice figcaption {
  color: #666666;
  font-weight: bold;
  margin-top: 1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .voice-wrap:not(:last-child) {
    margin-bottom: 1em;
  }
  .voice-article {
    height: 8em;
    margin: 0;
    padding: 0 1em 1.5em;
    width: 85%;
  }
  .voice-article p {
    font-size: 12px;
  }
  .lecture-voice figure {
    width: 90%;
  }
}
@media screen and (max-width: 743px) {
  .voice-article {
    width: 100%;
  }
}
/** attention **/
.lecture-attention {
  margin-bottom: 4em;
}
.lecture-attention ul {
  list-style: none;
  margin: 0;
}
.lecture-attention li {
  align-items: center;
  color: #890000;
  display: flex;
  font-weight: bold;
}
.lecture-attention li:not(:last-child) {
  margin-bottom: 1em;
}
.lecture-attention li::before {
  background: url("../../images/pages/lecture/lecture_attention.svg") no-repeat center center/contain;
  content: "";
  display: block;
  height: 1.4em;
  margin-right: 1em;
  width: 1.6em;
}
.lecture-attention li p {
  color: inherit;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .lecture-attention li p {
    width: calc(100% - 2.6em);
  }
}
/** contact **/
.lecture-contact {
  margin-bottom: 4em;
}
.lecture-contact ul {
  background: url("../../images/pages/lecture/lecture_13.jpg") no-repeat right center/auto 100%;
  list-style: none;
  margin: 0;
  padding: 1em 0;
}
.lecture-contact li {
  align-items: center;
  border-bottom: 1px solid #0d82ff;
  color: #80543b;
  display: flex;
  font-weight: bold;
  width: 50%;
}
.lecture-contact li:not(:last-child) {
  margin-bottom: 1em;
}
.lecture-contact li p {
  color: inherit;
  font-size: 1em;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .lecture-contact ul {
    background: url("../../images/pages/lecture/lecture_13-sp.jpg") no-repeat right center/auto 100%;
  }
  .lecture-contact li {
    margin: 1em;
    padding: 0 1em;
    width: auto;
  }
}
/** coach **/
.coach-wrap {
  margin-bottom: 2em;
}
.coach-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1em;
}
.coach-head > div {
  padding-top: 2em;
  width: 60%;
}
.coach-head img {
  width: 35%;
}
.coach-head p {
  font-size: 1em;
}
@media screen and (max-width: 768px) {
  .coach-head {
    padding-top: 40px;
    position: relative;
  }
  .coach-head h3 {
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }
  .coach-head > div {
    padding-top: 0;
    width: 100%;
  }
  .coach-head p {
    font-size: 14px;
  }
}
/** 一覧 **/
.lecture-list-nav {
  align-items: center;
  display: flex;
  justify-content: space-around;
  margin-bottom: 3rem;
}
.lecture-list-trigger {
  border-radius: 5px;
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.4);
  color: #fff;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  padding: 0.5em 1em;
  transition: 0.5s;
}
.lecture-list-trigger:first-child {
  background: #ff6617;
}
.lecture-list-trigger:last-child {
  background: #00941d;
}
.lecture-list-trigger.open {
  box-shadow: none;
  transform: translateY(5px);
}
.lecture-list-article {
  height: 0;
  overflow: hidden;
  transition: 0.5s;
}
.lecture-list-article.open {
  height: auto;
}
.lecture-list-wrap {
  box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.2);
  margin: 0 8px 3em;
  padding: 1em;
}
.lecture-list-content {
  align-items: center;
  border-bottom: 1px solid #0680fa;
  display: flex;
  padding: 1em 0;
}
.lecture-list-content dt {
  color: #0680fa;
  font-weight: 600;
  width: 25%;
}
.lecture-list-content dd {
  color: #80543d;
  font-weight: bold;
  margin: 0;
  width: 75%;
}
.lecture-list-content dd span {
  font-size: 0.8em;
}
.lecture-list-content__title span {
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  font-size: 12px;
  padding: 0.5em;
}
.lecture-list-article01 .lecture-list-content__title span {
  background: #ff6617;
}
.lecture-list-article02 .lecture-list-content__title span {
  background: #00941d;
}
.lecture-list-content__title dd, .lecture-list-content__title p {
  color: #000;
  font-size: 1.2em;
  margin: 0;
}
.lecture-list-content__title p {
  font-weight: 700;
}
.lecture-list-wrap .lecture-application {
  margin: 1em 0 0;
}
@media screen and (max-width: 768px) {
  .lecture-list-nav {
    flex-direction: column;
    gap: 3rem;
  }
  .lecture-list-content {
    flex-direction: column;
  }
  .lecture-list-content dt, .lecture-list-content dd {
    width: 100%;
  }
}
/** シングル **/
.zipform::after {
  content: "郵便番号を入力すると自動的に住所が表示されます。";
  color: #ff0000;
  font-size: 12px;
}
.birthday {
  align-items: center;
  display: inline-flex !important;
}
.birthday input {
  margin: 0 0.5em 0 1em;
}
.birthday input[name="year"] {
  width: 5em;
}
.birthday input:not([name="year"]) {
  width: 3em;
}
@media screen and (max-width: 768px) {
  span.mwform-tel-field input {
    width: 30% !important;
  }
  .birthday {
    font-size: 12px;
  }
  .birthday input[name="year"] {
    width: 3.5em;
  }
  .birthday input:not([name="year"]) {
    width: 2.5em;
  }
}
.seminarinfo_head {
  background-image: url("../../images/pages/seminarinfo/seminar_title_back.jpg");
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #0089ff;
  height: 410px;
  position: relative;
}
.subtitle {
  text-shadow: 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff;
  position: absolute;
  width: 96%;
  padding: 2%;
  text-align: center;
  font-size: 24px;
  color: #00A0E9;
}
div.seminarinfo_head > h2 {
  text-shadow: 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff;
  position: absolute;
  line-height: 1.4;
  top: 50px;
  background: none;
  border: 0px;
  font-size: 24px;
  font-weight: 700;
  color: #0089ff;
  text-align: center;
  padding: 0 1em;
  width: 100%;
}
.seminarinfo_head ~ h2 {
  margin-top: 20px;
}
div.seminarinfo_head > div {
  padding: 15px;
  position: relative;
  top: 279px;
  font-size: 14px;
  line-height: 1.6;
}
div.seminarinfo_head > div > div {
  display: inline-block;
  vertical-align: top;
}
div.seminarinfo_head > div > div:first-child {
  width: max-content;
}
div.seminarinfo_head > div > div:last-child {
  width: 80%;
  padding: 0 0 0 10px;
}
div.seminarinfo_head > div > div:first-child > div {
  background-color: #fff;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  font-size: 17px;
  margin-bottom: 10px;
  padding: 5px;
  text-align: center;
  color: #0089ff;
  font-weight: bold;
}
div.seminarinfo_head > div > div:first-child > div > span {
  font-size: 14px;
}
div.seminarinfo_head > div > div:last-child > div > div {
  display: inline-block;
  vertical-align: top;
  color: #fff;
  font-size: 14px;
}
div.seminarinfo_head > div > div:last-child > div > div:first-child {
  width: 10%;
  font-weight: bold;
}
div.seminarinfo_head > div > div:last-child > div > div:last-child {
  width: 85%;
  padding-left: 20px;
}
div.seminarinfo_head > div > div:last-child > div > div:last-child > p {
  margin-bottom: 0px;
  color: #fff;
}
.archive_seminarinfo {
  background-image: url("../../images/pages/seminarinfo/seminar_title_back.jpg");
  height: 500px;
}
.seminar_cap {
  width: 95%;
  padding-top: 0px !important;
  color: #fff;
}
.recommende_li {
  list-style: none;
}
.recommende_li li {
  font-size: 14px;
  padding: 3px 0 3px 0;
  border-bottom: 1px dotted #0089ff;
}
#gaiyou_table {
  font-size: 14px;
  width: 100%;
}
#gaiyou_table th {
  background: #0089ff;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid #fff;
  width: 20%;
}
#gaiyou_table td {
  border-bottom: 1px solid #757575;
  padding: 5px;
}
#gaiyou_table a {
  color: #007acc;
  text-decoration: underline;
}
.end_event {
  font-size: 22px !important;
  color: red !important;
  text-align: center !important;
}
.more_button {
  display: block;
  width: 180px;
  height: 50px;
  text-align: center;
  background-color: #0a89ff;
  font-size: 16px;
  line-height: 47px;
  color: #FFF;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid #0a89ff;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin: 20px auto;
  margin-bottom: 50px;
}
.more_button a {
  color: #FFF;
}
.more_button a:hover {
  color: #0a89ff;
}
.more_button:after {
  width: 100%;
  height: 0;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #FFF;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transition: 0.2s;
  z-index: -1;
}
.more_button:hover {
  color: #0a89ff;
}
.more_button:hover:after {
  height: 240%;
  opacity: 1;
}
.more_button:active:after {
  height: 340%;
  opacity: 1;
}
.arcimg {
  width: 20%;
  top: 154px !important;
}
@media screen and (max-width: 700px) {
  .seminarinfo_head {
    height: 330px;
  }
  .archive_seminarinfo {
    height: 530px;
  }
  div.seminarinfo_head > h2 {
    padding-top: 48px;
    font-size: 20px;
    top: 0;
  }
  div.seminarinfo_head > div {
    top: 150px;
  }
  div.seminarinfo_head > div > div:last-child > div > div {
    font-size: 12px;
  }
  div.seminarinfo_head > div > div:first-child {
    display: block;
  }
  div.seminarinfo_head > div > div:first-child > div {
    font-size: 18px;
  }
  div.seminarinfo_head > div > div:last-child {
    width: 100%;
  }
  div.seminarinfo_head > div > div:last-child > div > div:first-child {
    width: 15%;
  }
  div.seminarinfo_head > div > div:last-child > div > div:last-child {
    width: 77%;
  }
  .subtitle {
    font-size: 18px;
  }
  .end_event {
    font-size: 26px;
  }
  .arcimg {
    width: 33%;
    top: 154px !important;
  }
}
.seminarinfo-single-article pre {
  white-space: pre-wrap;
}
.seminarinfo-single-article img {
  max-width: 100%;
  width: auto;
}
.p-case-archive-category {
  padding: 2rem;
}
@media screen and (min-width: 744px) {
  .p-case-archive-category {
    padding: 3rem;
  }
}
.p-case-archive-category .p-index-technique-category-content__txt {
  font-size: 0.875em;
}
.p-case-archive-list {
  display: grid;
  gap: 2rem;
  grid-template-columns: 100%;
}
.p-case-archive-list-item {
  border: 1px solid #0089ff;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
}
@media screen and (min-width: 744px) {
  .p-case-archive-list-item {
    flex-direction: row;
  }
}
@media screen and (min-width: 744px) {
  .p-case-archive-list-item__thumbnail {
    flex-shrink: 0;
    width: 200px;
  }
}
.p-case-archive-list-item-content__title:not(.p-case-archive-ranking__title)::before {
  display: none;
}
.p-case-archive-list-item-content__excerpt {
  margin-top: 1rem;
}
.p-case-archive-list-item:nth-child(1) .p-case-archive-ranking__title::before {
  background-image: url(../../images/index/technique_ranking01.png);
}
.p-case-archive-list-item:nth-child(2) .p-case-archive-ranking__title::before {
  background-image: url(../../images/index/technique_ranking02.png);
}
.p-case-archive-list-item:nth-child(3) .p-case-archive-ranking__title::before {
  background-image: url(../../images/index/technique_ranking03.png);
}
.p-case-archive-list-item:nth-child(4) .p-case-archive-ranking__title::before {
  background-image: url(../../images/index/technique_ranking04.png);
}
.p-case-archive-list-item:nth-child(5) .p-case-archive-ranking__title::before {
  background-image: url(../../images/index/technique_ranking05.png);
}
.p-case-archive-list-item:nth-child(6) .p-case-archive-ranking__title::before {
  background-image: url(../../images/index/technique_ranking06.png);
}
.p-case-archive-list-item:nth-child(7) .p-case-archive-ranking__title::before {
  background-image: url(../../images/index/technique_ranking07.png);
}
.p-case-archive-list-item:nth-child(8) .p-case-archive-ranking__title::before {
  background-image: url(../../images/index/technique_ranking08.png);
}
.p-case-archive-list-item:nth-child(9) .p-case-archive-ranking__title::before {
  background-image: url(../../images/index/technique_ranking09.png);
}
.p-case-archive-list-item:nth-child(10) .p-case-archive-ranking__title::before {
  background-image: url(../../images/index/technique_ranking10.png);
}
.p-case-single__title {
  color: #0089ff;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.4;
}
.p-case-single-banner p {
  font-weight: 600;
}
.p-case-single-banner-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}
.p-case-single-banner__item {
  align-items: center;
  background: #ff6600;
  border: 2px solid #ff6600;
  border-radius: 10px;
  color: #fff;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  font-size: 1.25em;
  font-weight: 700;
  justify-content: center;
  line-height: 1.5;
  padding: 1rem;
  text-align: center;
  transition: 0.4s;
  width: 100%;
}
.p-case-single-banner__item:hover {
  background: #fff;
  color: #ff6600;
}
.p-case-single-banner__item--nobg {
  background: none;
  border-radius: 0;
  padding: 0;
}
@media screen and (min-width: 744px) {
  .p-case-single-banner__item:nth-child(2), .p-case-single-banner__item:nth-child(3) {
    width: calc((100% - 2rem) / 2);
  }
  .p-case-single-banner__item:nth-child(4), .p-case-single-banner__item:nth-child(5), .p-case-single-banner__item:nth-child(6) {
    width: calc((100% - 4rem) / 3);
  }
}
.p-case-single-banner__item span {
  font-size: 0.75em;
}
.p-case-single-nav {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.p-case-single-nav__item {
  border: 1px solid;
  color: #0089ff;
  font-size: 1.25em;
  font-weight: 700;
  padding: 1rem;
}
.p-case-single-nav__item.after {
  text-align: right;
}
.p-case-single-nav__item span {
  border-bottom: 1px dotted #0089ff;
  color: #373737;
  display: block;
  font-size: 0.75em;
}
.p-flow-nav-wrapper {
  display: grid;
  grid-template-columns: 100%;
}
@media screen and (min-width: 744px) {
  .p-flow-nav-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
.p-flow-nav__item {
  color: #fff;
  display: grid;
  font-size: 1.125em;
  font-weight: 700;
  line-height: 1.4;
  min-height: 71px;
  padding: 1rem 0;
  place-items: center;
  text-align: center;
}
.p-flow-nav__item:nth-child(1) {
  background: #2aab39;
}
.p-flow-nav__item:nth-child(2) {
  background: #00caff;
}
.p-flow-nav__item:nth-child(3) {
  background: #2ca6e0;
}
.p-flow-nav__item:nth-child(4) {
  background: #ff9fd4;
}
.p-flow-lecture-wrapper {
  margin-top: 3rem;
}
.p-company-about-images {
  display: grid;
  gap: 2rem;
  grid-template-columns: 100%;
  margin-top: 2rem;
}
@media screen and (min-width: 744px) {
  .p-company-about-images {
    gap: 0.5rem;
    grid-template-columns: 1fr 1fr;
  }
}
.p-company-about-images figcaption {
  font-size: 0.875em;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 0.5rem;
  text-align: center;
}
.p-company-data-table {
  border: 2px solid #0089ff;
  width: 100%;
}
.p-company-data-table th, .p-company-data-table td {
  border: solid #0089ff;
  border-width: 0 2px 2px 0;
  padding: 2rem;
}
.p-company-data-table th {
  font-size: 1.125em;
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
  width: 0;
  white-space: nowrap;
}
.p-company-data-table td {
  color: #373737;
}
.p-company-data-table a {
  color: #007acc;
  text-decoration: underline;
}
.p-company-data-table-wrapper + .p-company-data-table-wrapper {
  margin-top: 2rem;
}
.p-company-data-table-wrapper .c-heading02 {
  font-size: 1.125em;
  margin-bottom: 1rem;
}
@media screen and (max-width: 743px) {
  .p-company-data-table, .p-company-data-table tbody, .p-company-data-table tr, .p-company-data-table th, .p-company-data-table td {
    display: block;
    width: 100%;
  }
  .p-company-data-table tr:not(:first-child) {
    border-top: 2px solid #0089ff;
  }
  .p-company-data-table th, .p-company-data-table td {
    border: none;
  }
  .p-company-data-table th {
    background: #f4ffff;
    border-bottom: 1px solid #0089ff;
    padding: 1rem 2rem;
    text-align: left;
  }
}
.p-company-message__image {
  box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.3);
  float: right;
  margin: 0 0 1rem 1rem;
  width: auto;
}
@media screen and (max-width: 743px) {
  .p-company-message__image {
    width: 180px;
  }
}
.p-company-access-wrapper + .p-company-access-wrapper {
  margin-top: 3rem;
}
.p-company-access__map {
  aspect-ratio: 3/2;
}
.p-company-access__map iframe {
  height: 100%;
  width: 100%;
}
.p-officechecker-question-wrapper {
  background: #f1f1f1;
  counter-reset: q;
  font-size: 1.125em;
  padding: 2rem;
}
.p-officechecker-question-content {
  align-items: center;
  color: #373737;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}
.p-officechecker-question-content + .p-officechecker-question-content {
  border-top: 1px dotted #676667;
  margin-top: 2rem;
  padding-top: 2rem;
}
.p-officechecker-question-content span {
  align-items: center;
  display: flex;
  gap: 0.5rem;
  line-height: 1.4;
}
@media screen and (max-width: 1023px) {
  .p-officechecker-question-content span {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }
}
.p-officechecker-question-content span::before {
  background: #f954f4;
  border-radius: 5px;
  color: #fff;
  content: "Q" counter(q) ".";
  counter-increment: q;
  font-weight: 500;
  padding: 3px 7px;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .p-officechecker-question-content span::before {
    width: 100%;
  }
}
.p-officechecker-question-content label {
  background: #fff;
  border-radius: 5px;
  cursor: pointer;
  padding: 5px 10px;
}
@media screen and (max-width: 1023px) {
  .p-officechecker-question-content label {
    margin: 0 !important;
    width: 49%;
  }
}
.p-officechecker-question-content label:nth-child(2) {
  margin-left: auto;
}
.p-officechecker-question-content label input {
  margin-right: 0.5rem;
}
.p-officechecker-question__submit {
  background: linear-gradient(to bottom, #ff9900 0%, #ffa608 51%, #ff9900 52%, #ff9900 52%, #ff9900 100%);
  border: 1px solid #ff6600;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  display: block;
  font-family: inherit;
  font-size: 1.125em;
  font-weight: 700;
  margin: 2rem auto 0;
  padding: 0.5rem;
  width: 80%;
}
.p-officechecker-question__submit[disabled] {
  cursor: inherit;
  filter: grayscale(1);
}
.p-officechecker-result__title {
  font-size: 1.125em;
}
.p-officechecker-result__title strong {
  font-size: 1.125em;
}
@media screen and (min-width: 744px) {
  .p-officechecker-result__title strong {
    font-size: 1.35em;
  }
}
.p-officechecker-result-points {
  align-items: center;
  background: #f9f9f9;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  text-align: center;
}
@media screen and (min-width: 744px) {
  .p-officechecker-result-points {
    flex-direction: row;
    gap: 3rem;
    justify-content: center;
  }
}
.p-officechecker-result-points dl {
  align-items: flex-end;
  display: flex;
  gap: 0.5rem;
}
.p-officechecker-result-points dl dd {
  background: linear-gradient(transparent 60%, #ff0 0%);
  font-size: 1.125em;
  font-weight: 700;
}
.p-officechecker-result-content {
  display: flex;
  flex-direction: column-reverse;
  gap: 2rem;
  margin-top: 3rem;
}
@media screen and (min-width: 1024px) {
  .p-officechecker-result-content {
    flex-direction: row;
  }
}
.u-fadeinUp {
  opacity: 0;
  visibility: hidden;
}
.u-fadeinUp-active {
  animation-name: fadeinUp;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  animation-delay: 0.2s;
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
}
