@charset "UTF-8";
/* リキッドレイアウト対応 */
@media only screen and (max-width: 767px) {
  .br-pc {
    display: none;
  }
}

html {
  font-size: 1.4814814815vw;
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media (min-width: 1080px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.075em;
  color: #000;
}

/* pcの電話番号発信対応 */
@media only screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* FAX発信対応 */
a[href^="fax:"] {
  pointer-events: none;
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
}

/* 表示領域外へはスクロールさせない */
.no_scroll {
  overflow: hidden;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin: 0;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* --------------------------------
l-drawer
----------------------------------- */
.l-drawer {
  position: fixed;
  z-index: 150;
  top: 60px;
  top: 3.75rem;
  right: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.l-drawer.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/* --------------------------------
l-header
----------------------------------- */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

/* --------------------------------
l-inner
----------------------------------- */
.l-inner {
  max-width: 1130px;
  padding-right: 40px;
  padding-left: 40px;
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (max-width: 767px) {
  .l-inner {
    max-width: 680px;
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }
}

/* --------------------------------
c-border-btn
----------------------------------- */
.c-border-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: 2px solid #0a4774;
  border: 0.125rem solid #0a4774;
  border-radius: 3.125rem;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.c-border-btn span {
  font-size: max(14px, 12px);
  font-size: max(0.875rem, 12px);
  font-weight: 600;
  color: #0a4774;
  padding: 0 20px 0 10px;
  padding: 0 1.25rem 0 0.625rem;
  position: relative;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media only screen and (max-width: 767px) {
  .c-border-btn span {
    font-size: 0.8125rem;
  }
}
.c-border-btn span::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: transparent;
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
  background-color: #0a4774;
  -webkit-mask-image: url(../images/svg/arrow-right.svg);
          mask-image: url(../images/svg/arrow-right.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.c-border-btn--download span {
  padding: 0 30px 0 10px;
  padding: 0 1.875rem 0 0.625rem;
}
@media only screen and (max-width: 767px) {
  .c-border-btn--download span {
    padding: 0 1.25rem 0 0.3125rem;
  }
}
.c-border-btn--download span::after {
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  -webkit-mask-image: url(../images/svg/download.svg);
          mask-image: url(../images/svg/download.svg);
}

@media screen and (min-width: 768px) {
  .c-border-btn:hover {
    background-color: #0a4774;
  }
  .c-border-btn:hover span {
    color: #fff;
  }
  .c-border-btn:hover span::after {
    background-color: #fff;
  }
}
.c-border-btn.is-full {
  border: 2px solid #bf000f;
  border: 0.125rem solid #bf000f;
  pointer-events: none;
  cursor: default;
}
.c-border-btn.is-full span {
  padding: 0;
  color: #bf000f;
}
.c-border-btn.is-full span::after {
  display: none;
}

.c-border-btn--top span {
  text-transform: uppercase;
  font-size: max(16px, 13px);
  font-size: max(1rem, 13px);
  padding-left: 20px;
  padding-left: 1.25rem;
}

/* --------------------------------
c-btn
----------------------------------- */
.c-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 3.125rem;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.c-btn span {
  position: relative;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.c-btn span::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.c-btn--blue {
  background-color: #0a4774;
}
.c-btn--blue span {
  color: #f4c21e;
  font-size: 18px;
  font-size: 1.125rem;
  padding: 0 24px 0 16px;
  padding: 0 1.5rem 0 1rem;
}
.c-btn--blue span::after {
  width: 10px;
  width: 0.625rem;
  height: 8px;
  height: 0.5rem;
  background-color: #f4c21e;
  -webkit-mask-image: url(../images/svg/arrow-down.svg);
          mask-image: url(../images/svg/arrow-down.svg);
}

.c-btn--orange {
  background-color: #f4c21e;
}
.c-btn--orange span {
  color: #0a4774;
  font-size: 16px;
  font-size: 1rem;
  padding: 0 24px 0 16px;
  padding: 0 1.5rem 0 1rem;
}
.c-btn--orange span::after {
  width: 10px;
  width: 0.625rem;
  height: 8px;
  height: 0.5rem;
  background-color: #0a4774;
  -webkit-mask-image: url(../images/svg/arrow-up.svg);
          mask-image: url(../images/svg/arrow-up.svg);
}

.c-btn--white {
  background-color: #fff;
  color: #0a4774;
}
.c-btn--white span {
  color: #0a4774;
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  font-size: 18px;
  font-size: 1.125rem;
  padding-left: 34px;
  padding-left: 2.125rem;
}
.c-btn--white span::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 26px;
  width: 1.625rem;
  height: 27px;
  height: 1.6875rem;
  background-color: #0a4774;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.c-btn--white span::after {
  display: none;
}

.c-btn--tel span {
  padding-left: 34px;
  padding-left: 2.125rem;
}

.c-btn--tel span::before {
  -webkit-mask-image: url(../images/svg/tel.svg);
          mask-image: url(../images/svg/tel.svg);
}

.c-btn--fax span {
  padding-left: 48px;
  padding-left: 3rem;
}

.c-btn--fax span::before {
  width: 41px;
  width: 2.5625rem;
  height: 26px;
  height: 1.625rem;
  -webkit-mask-image: url(../images/svg/fax.svg);
          mask-image: url(../images/svg/fax.svg);
}

.c-btn--mail {
  background-color: #fff;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.c-btn--mail span {
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.025em;
  padding-left: 35px;
  padding-left: 2.1875rem;
}

.c-btn--mail span::before {
  width: 28px;
  width: 1.75rem;
  height: 21px;
  height: 1.3125rem;
  -webkit-mask-image: url(../images/svg/mail.svg);
          mask-image: url(../images/svg/mail.svg);
}

.c-btn--orange {
  background-color: #f4c21e;
}
.c-btn--orange span {
  color: #0a4774;
  font-size: 16px;
  font-size: 1rem;
  padding: 0 24px 0 16px;
  padding: 0 1.5rem 0 1rem;
}
.c-btn--orange span::after {
  width: 10px;
  width: 0.625rem;
  height: 8px;
  height: 0.5rem;
  background-color: #0a4774;
  -webkit-mask-image: url(../images/svg/arrow-up.svg);
          mask-image: url(../images/svg/arrow-up.svg);
}

.c-btn--top {
  background-color: #f4c21e;
}
.c-btn--top span {
  color: #0a4774;
  font-size: 16px;
  font-size: 1rem;
  padding: 0 24px 0 16px;
  padding: 0 1.5rem 0 1rem;
}
.c-btn--top span::after {
  width: 10px;
  width: 0.625rem;
  height: 8px;
  height: 0.5rem;
  background-color: #0a4774;
  -webkit-mask-image: url(../images/svg/arrow-right.svg);
          mask-image: url(../images/svg/arrow-right.svg);
}

.c-btn--404 {
  background-color: #0a4774;
}
.c-btn--404 span {
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  text-transform: uppercase;
  padding: 0 24px 0 16px;
  padding: 0 1.5rem 0 1rem;
}
.c-btn--404 span::after {
  width: 10px;
  width: 0.625rem;
  height: 8px;
  height: 0.5rem;
  background-color: #fff;
  -webkit-mask-image: url(../images/svg/arrow-down.svg);
          mask-image: url(../images/svg/arrow-down.svg);
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
}

.c-btn--news {
  background-color: #0a4774;
}
.c-btn--news span {
  color: #fff;
  font-size: max(14px, 12px);
  font-size: max(0.875rem, 12px);
  padding: 0 24px 0 16px;
  padding: 0 1.5rem 0 1rem;
}
@media only screen and (max-width: 767px) {
  .c-btn--news span {
    font-size: 0.8125rem;
  }
}
.c-btn--news span::after {
  top: 52%;
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
  background-color: #fff;
  -webkit-mask-image: url(../images/svg/arrow-right.svg);
          mask-image: url(../images/svg/arrow-right.svg);
}

@media screen and (min-width: 768px) {
  .c-btn--blue:hover {
    background-color: #f4c21e;
  }
  .c-btn--blue:hover span {
    color: #0a4774;
  }
  .c-btn--blue:hover span::after {
    background-color: #0a4774;
  }
  .c-btn--orange:hover {
    background-color: #fff;
  }
  .c-btn--top:hover {
    background-color: #efb703;
  }
  .c-btn--404:hover {
    background-color: #fff #0a4774;
    border: 0.125rem solid;
  }
  .c-btn--404:hover span {
    color: #0a4774;
  }
  .c-btn--404:hover span::after {
    background-color: #0a4774;
  }
  .c-btn--news:hover {
    background-color: #dfe4eb;
  }
  .c-btn--news:hover span {
    color: #0a4774;
  }
  .c-btn--news:hover span::after {
    background-color: #0a4774;
  }
  .c-btn--mail:hover {
    background-color: #dfe4eb;
  }
}
.c-entry-narrow {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
  max-width: 50rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
}
@media only screen and (max-width: 767px) {
  .c-entry-narrow {
    max-width: 31.25rem;
    padding: 0;
  }
}

.c-entry-narrow__lists {
  display: grid;
  grid-template-columns: repeat(5, auto);
  place-content: center;
  gap: 15px 30px;
  gap: 0.9375rem 1.875rem;
}
@media only screen and (max-width: 767px) {
  .c-entry-narrow__lists {
    grid-template-columns: repeat(3, auto);
    gap: 0.5rem 0.625rem;
  }
}

@media screen and (min-width: 550px) and (max-width: 767px) {
  .c-entry-narrow__lists {
    display: grid;
    grid-template-columns: repeat(4, auto);
    place-content: center;
    gap: 1.25rem;
  }
}
.c-entry-narrow__list {
  cursor: pointer;
  width: 120px;
  width: 7.5rem;
  font-size: 17px;
  font-size: 1.0625rem;
  height: 45px;
  height: 2.8125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.25em;
  border: 1px solid #0a4774;
  color: #0a4774;
  background-color: #fff;
  border-radius: 0.3125rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (max-width: 767px) {
  .c-entry-narrow__list {
    width: 5.625rem;
    font-size: 0.875rem;
    height: 2.1875rem;
  }
}

.c-entry-narrow__list.is-active {
  color: #fff;
  background-color: #0a4774;
}

@media screen and (min-width: 768px) {
  .c-entry-narrow__list:hover {
    color: #fff;
    background-color: #0a4774;
  }
}
/* --------------------------------
c-hamburger
----------------------------------- */
.c-hamburger {
  display: none;
}
@media (max-width: 1100px) {
  .c-hamburger {
    display: block;
    position: relative;
    width: 3.5rem;
    height: inherit;
    z-index: 999;
  }
}
@media only screen and (max-width: 767px) {
  .c-hamburger {
    width: 2.75rem;
  }
}

.c-hamburger span {
  position: absolute;
  display: block;
  height: 2px;
  width: 20px;
  width: 1.25rem;
  background-color: #0a4774;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
  opacity: 1;
  top: 50%;
  right: 20px;
  right: 1.25rem;
}
@media only screen and (max-width: 767px) {
  .c-hamburger span {
    right: 0.9375rem;
  }
}

.c-hamburger:hover {
  cursor: pointer;
}

.c-hamburger span:nth-child(1) {
  top: 36%;
  width: 24px;
  width: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .c-hamburger span:nth-child(1) {
    width: 1.25rem;
  }
}

.c-hamburger span:nth-child(2) {
  width: 29px;
  width: 1.8125rem;
}
@media only screen and (max-width: 767px) {
  .c-hamburger span:nth-child(2) {
    width: calc(1.25rem + 3px);
  }
}

.c-hamburger span:nth-child(3) {
  top: 64%;
  width: 34px;
  width: 2.125rem;
}
@media only screen and (max-width: 767px) {
  .c-hamburger span:nth-child(3) {
    width: calc(1.25rem + 6px);
  }
}

.c-hamburger.is-open span:nth-child(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-135deg);
          transform: translateY(-50%) rotate(-135deg);
  width: 15px;
}

.c-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.c-hamburger.is-open span:nth-child(3) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
  width: 15px;
}

/* --------------------------------
c-page-title
----------------------------------- */
.c-page-title {
  background-color: #0a4774;
  padding: 83px 0;
  padding: 5.1875rem 0;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .c-page-title {
    padding: 1.875rem 0;
  }
}
.c-page-title h1 {
  display: inline-block;
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: #f4c21e;
}
@media only screen and (max-width: 767px) {
  .c-page-title h1 {
    font-size: 1.375rem;
  }
}

/* --------------------------------
c-privacy-policy-text
----------------------------------- */
.c-privacy-policy-text {
  font-size: max(14px, 12px);
  font-size: max(0.875rem, 12px);
  line-height: 1.7142857143;
  text-align: justify;
}
@media only screen and (max-width: 767px) {
  .c-privacy-policy-text {
    font-size: 0.8125rem;
    letter-spacing: 0.025em;
  }
}

/* --------------------------------
c-section-title
----------------------------------- */
.c-section-title {
  display: inline-block;
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.25;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
  position: relative;
  color: #0a4774;
  border-bottom: 2px solid #0a4774;
  border-bottom: 0.125rem solid #0a4774;
}
@media only screen and (max-width: 767px) {
  .c-section-title {
    font-size: 1.375rem;
    padding-bottom: 0.5rem;
  }
}
.c-section-title::after {
  position: absolute;
  content: "";
  bottom: -2px;
  bottom: -0.125rem;
  right: 0;
  width: 40px;
  width: 2.5rem;
  height: 2px;
  height: 0.125rem;
  background-color: #f4c21e;
}
@media only screen and (max-width: 767px) {
  .c-section-title::after {
    width: 1.875rem;
  }
}

.c-section-title--bg-yellow {
  color: #0a4774;
  border-bottom: 2px solid #0a4774;
  border-bottom: 0.125rem solid #0a4774;
}
.c-section-title--bg-yellow::after {
  background-color: #fff;
}

.c-section-title--bg-blue {
  color: #fff;
  border-bottom: 2px solid #fff;
  border-bottom: 0.125rem solid #fff;
}
.c-section-title--bg-blue::after {
  background-color: #f4c21e;
}

@media only screen and (max-width: 434px) {
  .c-section-title--sp {
    width: 14.375rem;
  }
}

/* --------------------------------
c-section
----------------------------------- */
.c-section {
  padding: 91px 0 96px;
  padding: 5.6875rem 0 6rem;
}
@media only screen and (max-width: 767px) {
  .c-section {
    padding: 2.5rem 0;
  }
}

.c-section.p-top-price {
  padding-top: 0;
}

@media only screen and (max-width: 767px) {
  .c-section.p-top-news {
    padding-block: 3.75rem;
  }
}

/* --------------------------------
c-text-14
----------------------------------- */
.c-text-14 {
  font-size: max(14px, 12px);
  font-size: max(0.875rem, 12px);
  line-height: 1.7142857143;
  text-align: justify;
}
@media only screen and (max-width: 767px) {
  .c-text-14 {
    font-size: 0.8125rem;
    letter-spacing: 0.025em;
  }
}

/* --------------------------------
c-text
----------------------------------- */
.c-text {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.7777;
  color: #0a4774;
}
@media only screen and (max-width: 767px) {
  .c-text {
    font-size: 0.875rem;
    line-height: 1.6;
    letter-spacing: 0.04em;
    text-align: left;
  }
}

.c-text--white {
  color: #fff;
}

.c-text--left {
  text-align: justify;
}

/* --------------------------------
p-404
----------------------------------- */
.p-404 {
  margin: 120px auto 0;
  margin: 7.5rem auto 0;
  padding: 87px 0 100px;
  padding: 5.4375rem 0 6.25rem;
  max-width: 700px;
  width: 100%;
  text-align: center;
  color: #0a4774;
}
@media only screen and (max-width: 767px) {
  .p-404 {
    max-width: 450px;
    margin-top: 3.75rem;
    padding: 3.125rem 1.25rem 3.75rem;
  }
}

.p-404__head {
  font-family: "Open Sans", sans-serif;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  .p-404__head {
    font-size: 1.875rem;
  }
}

.p-404__head span {
  font-family: "Open Sans", sans-serif;
  font-size: 80px;
  font-size: 5rem;
  letter-spacing: 0.025em;
}
@media only screen and (max-width: 767px) {
  .p-404__head span {
    font-size: 3.75rem;
    margin-right: 0;
  }
}

.p-404__text {
  font-size: max(16px, 12px);
  font-size: max(1rem, 12px);
  font-weight: 600;
  margin-top: 37px;
  margin-top: 2.3125rem;
  line-height: 1.875;
}
@media only screen and (max-width: 767px) {
  .p-404__text {
    font-size: 0.875rem;
    margin-top: 1.5rem;
    line-height: 1.7;
  }
}

.p-404__btn {
  margin-top: 44px;
  margin-top: 2.75rem;
  width: 240px;
  width: 15rem;
  height: 48px;
  height: 3rem;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .p-404__btn {
    margin-top: 1.875rem;
  }
}

/* --------------------------------
p-accordion
----------------------------------- */
.p-accordion {
  position: relative;
}

.p-accordion__title {
  background-color: #0a4774;
  padding: 32px 0;
  padding: 2rem 0;
  text-align: center;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .p-accordion__title {
    padding: 1.25rem 0;
  }
}

.p-accordion__title span {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #f4c21e;
  position: relative;
  padding-right: 45px;
  padding-right: 2.8125rem;
  display: block;
}
@media only screen and (max-width: 767px) {
  .p-accordion__title span {
    font-size: 1.25rem;
  }
}

.p-accordion__title span::before {
  position: absolute;
  content: "";
  top: 57%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  background-image: url(../images/svg/open.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  .p-accordion__title span::before {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.p-accordion__title span::after {
  position: absolute;
  content: "";
  top: 57%;
  right: 11px;
  right: 0.6875rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2px;
  width: 0.125rem;
  height: 14px;
  height: 0.875rem;
  background-image: url(../images/svg/close.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media only screen and (max-width: 767px) {
  .p-accordion__title span::after {
    right: 0.5625rem;
    width: 0.1rem;
    height: 0.8125rem;
  }
}

span:has(#js-accordion),
#js-accordion {
  display: block;
}

#js-accordion span {
  display: inline-block;
}

/* --------------------------------
p-completion
----------------------------------- */
.p-completion {
  margin-top: 120px;
  margin-top: 7.5rem;
}
@media only screen and (max-width: 767px) {
  .p-completion {
    margin-top: 3.75rem;
  }
}

.p-completion__container {
  padding: 128px 0;
  padding: 8rem 0;
}
@media only screen and (max-width: 767px) {
  .p-completion__container {
    padding: 2.5rem 0;
  }
}

.p-completion__btn {
  margin: 80px auto 0;
  margin: 5rem auto 0;
  width: 230px;
  width: 14.375rem;
  height: 48px;
  height: 3rem;
}
@media only screen and (max-width: 767px) {
  .p-completion__btn {
    margin-top: 40px;
  }
}

/* --------------------------------
p-confirm
----------------------------------- */
.p-confirm {
  margin-top: 120px;
  margin-top: 7.5rem;
  padding-bottom: 130px;
  padding-bottom: 8.125rem;
}
@media only screen and (max-width: 767px) {
  .p-confirm {
    margin-top: 3.75rem;
    padding-bottom: 3.125rem;
  }
}

.p-confirm__body {
  background-color: #dfe4eb;
  padding: 48px 0 80px;
  padding: 3rem 0 5rem;
}
@media only screen and (max-width: 767px) {
  .p-confirm__body {
    padding: 0.5rem 0 5.25rem;
  }
}

/* --------------------------------
p-consent-form
----------------------------------- */
.p-consent-form {
  margin-top: 120px;
  margin-top: 7.5rem;
  padding-bottom: 130px;
  padding-bottom: 8.125rem;
}
@media only screen and (max-width: 767px) {
  .p-consent-form {
    margin-top: 3.75rem;
    padding-bottom: 3.125rem;
  }
}

.p-consent-form__container {
  padding-top: 95px;
  padding-top: 5.9375rem;
}
@media only screen and (max-width: 767px) {
  .p-consent-form__container {
    padding-top: 2.5rem;
  }
}

.p-consent-form__head {
  padding-bottom: 78px;
  padding-bottom: 4.875rem;
  border-bottom: 2px solid #0a4774;
  border-bottom: 0.125rem solid #0a4774;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-consent-form__head {
    padding-bottom: 2.5rem;
  }
}
.p-consent-form__head::after {
  position: absolute;
  content: "";
  bottom: -2px;
  bottom: -0.125rem;
  right: 0;
  width: 100px;
  width: 6.25rem;
  height: 2px;
  height: 0.125rem;
  background-color: #f4c21e;
}

.p-consent-form__text {
  font-size: max(14px, 12px);
  font-size: max(0.875rem, 12px);
  line-height: 1.7142857143;
  text-align: justify;
}
@media only screen and (max-width: 767px) {
  .p-consent-form__text {
    font-size: 0.8125rem;
    letter-spacing: 0.025em;
  }
}

.p-consent-form__body {
  margin-top: 77px;
  margin-top: 4.8125rem;
}
@media only screen and (max-width: 767px) {
  .p-consent-form__body {
    margin-top: 2.3125rem;
  }
}

.p-consent-form__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 36px;
  row-gap: 2.25rem;
}
@media only screen and (max-width: 767px) {
  .p-consent-form__items {
    row-gap: 1.625rem;
  }
}

.p-consent-form__item p {
  position: relative;
  padding-left: 28px;
  padding-left: 1.75rem;
}
@media only screen and (max-width: 767px) {
  .p-consent-form__item p {
    font-size: 0.8125rem;
    padding-left: 1.25rem;
    letter-spacing: 0.025em;
  }
}

.p-consent-form__item p::before {
  position: absolute;
  content: "";
  top: 2px;
  top: 0.125rem;
  left: 0;
  width: 22px;
  width: 1.375rem;
  height: 22px;
  height: 1.375rem;
  background-color: #0a4774;
  border-radius: 50%;
}
@media only screen and (max-width: 767px) {
  .p-consent-form__item p::before {
    top: 0.25rem;
    width: 1rem;
    height: 1rem;
  }
}

.p-consent-form__item ol {
  margin-top: 24px;
  margin-top: 1.5rem;
  padding-left: 26px;
  padding-left: 1.625rem;
}
@media only screen and (max-width: 767px) {
  .p-consent-form__item ol {
    margin-top: 0.875rem;
    padding-left: 1.125rem;
  }
}

.p-consent-form__item ol li {
  padding-left: 31px;
  padding-left: 1.9375rem;
  position: relative;
}

.p-consent-form__item ol li::before {
  position: absolute;
  content: attr(data-text);
  top: 0;
  left: 0;
  font-size: max(14px, 12px);
  font-size: max(0.875rem, 12px);
}

/* --------------------------------
p-course-card
----------------------------------- */
.p-course-card {
  background-color: #fff;
  width: 480px;
  width: 30rem;
  padding-top: 40px;
  padding-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #000;
}
@media only screen and (max-width: 767px) {
  .p-course-card {
    width: 100%;
    margin: 0 auto;
    padding-top: 1.5rem;
  }
}

.p-course-card__title {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #0a4774;
  padding-bottom: 32px;
  padding-bottom: 2rem;
  border-bottom: 2px solid #0a4774;
  border-bottom: 0.125rem solid #0a4774;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-course-card__title {
    font-size: 1.125rem;
    padding-bottom: 1.375rem;
  }
}
.p-course-card__title::after {
  position: absolute;
  content: "";
  bottom: -2px;
  bottom: -0.125rem;
  right: 0;
  width: 40px;
  width: 2.5rem;
  height: 2px;
  height: 0.125rem;
  background-color: #f4c21e;
}
@media only screen and (max-width: 767px) {
  .p-course-card__title::after {
    width: 1.875rem;
  }
}
.p-course-card__title span {
  font-size: 14px;
  font-size: 0.875rem;
}
@media only screen and (max-width: 767px) {
  .p-course-card__title span {
    font-size: 0.75rem;
  }
}

.p-course-card__body {
  padding-top: 31px;
  padding-top: 1.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (max-width: 767px) {
  .p-course-card__body {
    padding-top: 1.25rem;
  }
}

.p-course-card__lists {
  padding: 0 30px 0 60px;
  padding: 0 1.875rem 0 3.75rem;
  list-style: decimal-leading-zero;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (max-width: 767px) {
  .p-course-card__lists {
    padding: 0 0.875rem 0 3rem;
  }
}

.p-course-card__list {
  font-size: max(14px, 12px);
  font-size: max(0.875rem, 12px);
  line-height: 2.2857;
}
@media only screen and (max-width: 767px) {
  .p-course-card__list {
    font-size: 0.8125rem;
    line-height: 1.4;
    margin-top: 0.5rem;
  }
}

.p-course-card__img {
  margin-top: 32px;
  margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
  .p-course-card__img {
    margin-top: 1.5rem;
  }
}

.p-course-card {
  -webkit-transition: all 1s;
  transition: all 1s;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.p-course-card.is-inview {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

/* --------------------------------
p-document-item
----------------------------------- */
.p-document-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 80px;
  min-height: 5rem;
  background-color: #fff;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 40px;
  padding: 0 2.5rem;
}
@media only screen and (max-width: 767px) {
  .p-document-item {
    padding: 0 0.9375rem;
    min-height: 0;
    min-height: initial;
    height: 3.75rem;
  }
}

.p-document-item:not(:last-child) {
  border-bottom: 2px solid #dfe4eb;
  border-bottom: 0.125rem solid #dfe4eb;
}

.p-document-item__title {
  position: relative;
  font-size: max(16px, 12px);
  font-size: max(1rem, 12px);
  padding-left: 48px;
  padding-left: 3rem;
  line-height: 1;
  letter-spacing: 0.075em;
}
@media only screen and (max-width: 767px) {
  .p-document-item__title {
    font-size: 0.875rem;
    padding-left: 1.625rem;
  }
}
.p-document-item__title::before {
  position: absolute;
  content: attr(data-text);
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  background-color: #0a4774;
  border-radius: 50%;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  display: grid;
  place-content: center;
  padding-left: 2px;
  padding-left: 0.125rem;
}
@media only screen and (max-width: 767px) {
  .p-document-item__title::before {
    font-size: 0.75rem;
    width: 1.25rem;
    height: 1.25rem;
    padding-left: 0.0625rem;
  }
}

.p-document-item__btn {
  width: 202px;
  width: 12.625rem;
  height: 50px;
  height: 3.125rem;
}
@media only screen and (max-width: 767px) {
  .p-document-item__btn {
    width: 9.25rem;
    height: 2.5rem;
  }
}

@media only screen and (max-width: 767px) {
  .p-document-item__btn a {
    min-width: 9.25rem;
  }
}

/* --------------------------------
p-drawer-nav
----------------------------------- */
.p-drawer-nav__lists {
  border-top: 2px solid #0a4774;
  border-top: 0.125rem solid #0a4774;
}

.p-drawer-nav__list a {
  display: block;
  text-align: center;
  color: #0a4774;
  font-size: 14px;
  font-size: 0.875rem;
  padding: 20px 0;
  padding: 1.25rem 0;
  border-bottom: 2px solid #0a4774;
  border-bottom: 0.125rem solid #0a4774;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.p-drawer-nav__list a:hover {
  background-color: #fff;
}

/* --------------------------------
p-drawer
----------------------------------- */
.p-drawer {
  background-color: #f4c21e;
}

/* --------------------------------
p-entry
----------------------------------- */
.p-entry {
  margin-top: 120px;
  margin-top: 7.5rem;
  padding-bottom: 130px;
  padding-bottom: 8.125rem;
}
@media only screen and (max-width: 767px) {
  .p-entry {
    margin-top: 3.75rem;
    padding-bottom: 3.125rem;
  }
}

.p-entry__head {
  padding: 87px 0;
  padding: 5.4375rem 0;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-entry__head {
    padding: 2.5rem 0;
  }
}

.p-entry__body {
  background-color: #dfe4eb;
  padding: 80px 0;
  padding: 5rem 0;
}
@media only screen and (max-width: 767px) {
  .p-entry__body {
    padding: 2.5rem 0;
  }
}

/* --------------------------------
p-footer-nav
----------------------------------- */
.p-footer-nav__lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(5, 1fr);
  grid-auto-flow: column;
  gap: 18px 16px;
  gap: 1.125rem 1rem;
}
@media only screen and (max-width: 900px) {
  .p-footer-nav__lists {
    -webkit-column-gap: 1.125rem;
       -moz-column-gap: 1.125rem;
            column-gap: 1.125rem;
  }
}

.p-footer-nav__list {
  font-size: max(14px, 12px);
  font-size: max(0.875rem, 12px);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.p-footer-nav__list a {
  white-space: nowrap;
}

.p-footer-nav__list:hover {
  opacity: 0.7;
  cursor: pointer;
}

/* --------------------------------
p-footer
----------------------------------- */
.p-footer__head {
  background-color: #0a4774;
  padding: 59px 0 70px;
  padding: 3.6875rem 0 4.375rem;
}
@media only screen and (max-width: 767px) {
  .p-footer__head {
    padding: 2.5rem 0 3.125rem;
  }
}

.p-footer__inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  padding: 0 2.5rem;
}
@media only screen and (max-width: 1080px) {
  .p-footer__inner {
    padding: 0 1.875rem;
  }
}

.p-footer__contents {
  margin-right: auto;
  display: grid;
  grid-template-columns: 19.25rem 21.875rem 18.625rem;
  -webkit-column-gap: 2.6%;
     -moz-column-gap: 2.6%;
          column-gap: 2.6%;
}
@media only screen and (max-width: 1080px) {
  .p-footer__contents {
    margin-left: auto;
    grid-template-columns: 31% 35% 28.2%;
    -webkit-column-gap: 2%;
       -moz-column-gap: 2%;
            column-gap: 2%;
  }
}
@media only screen and (max-width: 900px) {
  .p-footer__contents {
    margin-left: auto;
    grid-template-columns: 30% 37% 28.2%;
    grid-template-columns: 27% 39% 29%;
    -webkit-column-gap: 2%;
       -moz-column-gap: 2%;
            column-gap: 2%;
  }
}
@media only screen and (max-width: 767px) {
  .p-footer__contents {
    display: block;
    text-align: center;
  }
}

.p-footer__left {
  grid-column: 1/2;
}
@media only screen and (max-width: 767px) {
  .p-footer__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-footer__center {
  margin-top: 43px;
  margin-top: 2.6875rem;
  grid-column: 2/3;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .p-footer__center {
    grid-column: 1/2;
  }
}

.p-footer__right {
  margin-top: 43px;
  margin-top: 2.6875rem;
  grid-column: 3/4;
}
@media only screen and (max-width: 1260px) {
  .p-footer__right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    row-gap: 1.875rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-footer__right {
    margin-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 0;
  }
}

.p-footer__logo {
  width: 308px;
  width: 19.25rem;
}

.p-footer__entry {
  margin-top: 16px;
  margin-top: 1rem;
  width: 230px;
  width: 14.375rem;
  height: 48px;
  height: 3rem;
}
@media only screen and (max-width: 767px) {
  .p-footer__entry {
    margin-top: 2.5rem;
  }
}

.p-footer__company {
  margin-top: 45px;
  margin-top: 2.8125rem;
  color: #fff;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media only screen and (max-width: 767px) {
  .p-footer__company {
    margin-top: 3.125rem;
    text-align: center;
  }
}

.p-footer__company a {
  padding-left: 54px;
  padding-left: 3.375rem;
  text-align: left;
  display: inline-block;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-footer__company a {
    padding-left: 2.75rem;
  }
}

.p-footer__company a span:nth-child(1) {
  display: block;
  font-size: max(16px, 13px);
  font-size: max(1rem, 13px);
}
@media only screen and (max-width: 767px) {
  .p-footer__company a span:nth-child(1) {
    font-size: 0.875rem;
  }
}

.p-footer__company a span:nth-child(2) {
  margin-top: 12.8px;
  margin-top: 0.8rem;
  display: block;
  font-size: max(14px, 12px);
  font-size: max(0.875rem, 12px);
}
@media only screen and (max-width: 767px) {
  .p-footer__company a span:nth-child(2) {
    font-size: 0.8125rem;
  }
}

.p-footer__company a::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 42px;
  width: 2.625rem;
  height: 46px;
  height: 2.875rem;
  background-image: url(../images/common/company-logo.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  .p-footer__company a::before {
    width: 2.25rem;
    height: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__company:hover {
    opacity: 0.7;
  }
}
.p-footer__tel {
  width: 230px;
  width: 14.375rem;
  height: 48px;
  height: 3rem;
}
@media only screen and (max-width: 767px) {
  .p-footer__tel {
    margin-top: 1.25rem;
  }
}

.p-footer__fax {
  margin-top: 16px;
  margin-top: 1rem;
  width: 230px;
  width: 14.375rem;
  height: 48px;
  height: 3rem;
}
@media only screen and (max-width: 767px) {
  .p-footer__fax {
    margin-top: 1.25rem;
  }
}

.p-footer__mail {
  margin-top: 16px;
  margin-top: 1rem;
  width: 296px;
  width: 18.5rem;
  height: 48px;
  height: 3rem;
}
@media only screen and (max-width: 767px) {
  .p-footer__mail {
    margin-top: 1.25rem;
    width: 18.75rem;
  }
}

.p-footer__text {
  margin-top: 15px;
  margin-top: 0.9375rem;
  text-align: center;
  font-size: 12px;
  font-size: 0.75rem;
  color: #fff;
  padding-left: 1em;
}

.p-footer__foot {
  background-color: #fff;
  height: 40px;
  height: 2.5rem;
  display: grid;
  place-content: center;
}

.p-footer__copy-right {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 10px;
  font-size: 0.625rem;
  color: #0a4774;
  letter-spacing: 0.075em;
}

/* --------------------------------
p-form-confirm 確認画面
----------------------------------- */
.p-confirm .p-form__list dd {
  font-size: max(14px, 13px);
  font-size: max(0.875rem, 13px);
  padding: 30px 32px;
  padding: 1.875rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  .p-confirm .p-form__list dd {
    padding: 1.25rem 0.9375rem;
  }
}

.p-form__seminar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  row-gap: 10px;
  row-gap: 0.625rem;
}

.p-form__seminar .p-form__date {
  font-size: max(14px, 13px);
  font-size: max(0.875rem, 13px);
}

.p-form__seminar .p-form__place {
  margin-top: 0;
}

.p-confirm .p-form__flex {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-column-gap: 0.9375rem;
     -moz-column-gap: 0.9375rem;
          column-gap: 0.9375rem;
}

.p-confirm dd.p-form__textarea {
  line-height: 1.6;
}

.p-confirm .p-form__file {
  word-break: break-all;
  line-height: 1.4;
}

/*--- 戻るボタン・送信ボタン ---*/
.p-confirm .p-form__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  width: auto;
}
@media only screen and (max-width: 767px) {
  .p-confirm .p-form__btn {
    margin-top: 4.25rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 1.25rem;
  }
}

.p-confirm .p-form__btn input {
  width: 230px;
  width: 14.375rem;
}
@media only screen and (max-width: 767px) {
  .p-confirm .p-form__btn input {
    height: 3rem;
    padding: 1rem 0 1.25rem;
  }
}

.p-confirm .p-form__btn input.submit-btn {
  background-position: 73% 53%;
}
@media only screen and (max-width: 767px) {
  .p-confirm .p-form__btn input.submit-btn {
    height: 3rem;
  }
}

.p-confirm .p-form__btn input.return-btn {
  background-image: url(../images/svg/arrow-left.svg);
  background-position: 36% 53%;
  background-color: #0a4774;
  color: #fff;
  padding-left: 20px;
  padding-left: 1.25rem;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.p-confirm .p-form__btn input.return-btn:hover {
  background-color: #093e66;
}

/* --------------------------------
p-form-health 健康状態申告確認画面
----------------------------------- */
.p-confirm .p-form-health {
  display: block;
}

.p-confirm .p-form-health__list--border-yellow {
  border-bottom: 4px solid #f4c21e;
  border-bottom: 0.25rem solid #f4c21e;
}

.p-confirm .p-form-health__note {
  margin-top: 32px;
  margin-top: 2rem;
  background-color: #f4c21e;
  text-align: center;
  display: block;
  width: 100%;
  padding: 10px 20px;
  padding: 0.625rem 1.25rem;
  font-size: max(16px, 13px);
  font-size: max(1rem, 13px);
}
@media only screen and (max-width: 767px) {
  .p-confirm .p-form-health__note {
    font-size: 0.9375rem;
  }
}

/* -----------------------------------------------------
p-form-health 健康状態申告 条件分岐させたものを表示させる
-------------------------------------------------------- */
.p-confirm [data-class=wpcf7cf_group] {
  display: block !important;
}

.p-confirm .p-form-health__flex {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-column-gap: 3rem;
     -moz-column-gap: 3rem;
          column-gap: 3rem;
}

.p-confirm .p-form-health__list dd {
  font-size: max(14px, 13px);
  font-size: max(0.875rem, 13px);
}
@media only screen and (max-width: 767px) {
  .p-confirm .p-form-health__list dd {
    font-size: 0.875rem;
  }
}

.p-confirm .p-form-health__textarea {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 1.6;
  font-size: max(14px, 13px);
  font-size: max(0.875rem, 13px);
}
@media only screen and (max-width: 767px) {
  .p-confirm .p-form-health__textarea {
    width: 100%;
    margin-top: 0.625rem;
    font-size: 0.875rem;
  }
}

.p-confirm .p-form-health__list dd {
  padding: 30px 32px 30px 32px;
  padding: 1.875rem 2rem 1.875rem 2rem;
}
@media only screen and (max-width: 767px) {
  .p-confirm .p-form-health__list dd {
    padding: 1.25rem 0.9375rem;
  }
}

.p-confirm .p-form-health__radio {
  line-height: 1.6;
  width: 80px;
  width: 5rem;
}

.p-confirm .p-form-health__radio + div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* --------------------------------
p-form-health
----------------------------------- */
.p-form-health {
  display: none;
}

.wpcf7-form-control-wrap:has(input[name=acceptance-336]:checked) + .p-form-health {
  display: block;
}

.wpcf7-form-control-wrap:has(input[name=acceptance-336]:checked) span::after {
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
}

.p-form-health__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.125rem;
     -moz-column-gap: 0.125rem;
          column-gap: 0.125rem;
  border-bottom: 2px solid #dfe4eb;
  border-bottom: 0.125rem solid #dfe4eb;
}
@media only screen and (max-width: 767px) {
  .p-form-health__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-bottom: none;
  }
}

.p-form-health__list dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #0a4774;
  width: 340px;
  width: 21.25rem;
  padding: 14px 30px;
  padding: 0.875rem 1.875rem;
  color: #fff;
  font-size: max(16px, 13px);
  font-size: max(1rem, 13px);
  line-height: 2;
  min-height: 150px;
  min-height: 9.375rem;
}
@media only screen and (max-width: 767px) {
  .p-form-health__list dt {
    width: 100%;
    padding: 0.9375rem;
    font-size: 0.9375rem;
    min-height: 0;
    min-height: initial;
  }
}

.p-form-health__list dt span {
  display: inline-block;
  position: relative;
  padding-bottom: 32px;
  padding-bottom: 2rem;
}

.p-form-health__list dt span::after {
  position: absolute;
  content: "必須";
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1;
  letter-spacing: 0.075em;
  bottom: -4px;
  bottom: -0.25rem;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #f4c21e;
  border: 1px solid #f4c21e;
  border: 0.0625rem solid #f4c21e;
  padding: 3.5px 7.9px 4.1px 8.5px;
  padding: 0.21875rem 0.49375rem 0.25625rem 0.53125rem;
}

.p-form-health__list dd {
  background-color: #fff;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 30px 110px 30px 32px;
  padding: 1.875rem 6.875rem 1.875rem 2rem;
  min-height: 84px;
  min-height: 5.25rem;
}
@media only screen and (max-width: 767px) {
  .p-form-health__list dd {
    padding: 1.25rem 0.9375rem;
    min-height: 4.375rem;
  }
}

.p-form-health__list--yellow dt,
.p-form-health__list--yellow dd {
  background-color: #f4c21e;
  min-height: 0;
  min-height: initial;
}

.p-form-health__list--yellow dt {
  color: #0a4774;
  font-size: 18px;
  font-size: 1.125rem;
}
@media only screen and (max-width: 767px) {
  .p-form-health__list--yellow dt {
    border-bottom: 0.0625rem solid #dfe4eb;
    font-size: 1rem;
    padding: 0.75rem;
  }
}

.p-form-health__list--yellow dd {
  padding: 20px 30px;
  padding: 1.25rem 1.875rem;
}
@media only screen and (max-width: 767px) {
  .p-form-health__list--yellow dd {
    padding: 0.625rem 0.9375rem;
  }
}

.p-form-health__note {
  font-size: max(14px, 13px);
  font-size: max(0.875rem, 13px);
  line-height: 1.857;
  color: #0a4774;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 767px) {
  .p-form-health__note {
    line-height: 1.6;
    font-size: 0.875rem;
  }
}

.p-form-health__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .p-form-health__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media only screen and (max-width: 767px) {
  .p-form-health__textarea {
    margin-top: 1.25rem;
  }
}

.p-form-health__textarea textarea {
  font-size: max(14px, 12px);
  font-size: max(0.875rem, 12px);
  line-height: 1.6;
  letter-spacing: 0.075em;
  width: 300px;
  width: 18.75rem;
  height: 90px;
  height: 5.625rem;
  background-color: #dfe4eb;
  padding: 10px;
  padding: 0.625rem;
}
@media only screen and (max-width: 767px) {
  .p-form-health__textarea textarea {
    padding: 0.625rem;
    font-size: 0.875rem;
    width: 100%;
  }
}

.p-form-health dd ::-webkit-input-placeholder {
  color: #b5bac1;
}

.p-form-health dd ::-moz-placeholder {
  color: #b5bac1;
}

.p-form-health dd ::-ms-input-placeholder {
  color: #b5bac1;
}

.p-form-health dd ::placeholder {
  color: #b5bac1;
}

/* --------------------------------
ラジオボタン
----------------------------------- */
.p-form-health__radio {
  -webkit-column-gap: 1.875rem;
     -moz-column-gap: 1.875rem;
          column-gap: 1.875rem;
}
@media only screen and (max-width: 767px) {
  .p-form-health__radio {
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
  }
}

.p-form-health__radio input + span {
  position: relative;
  padding-left: 28px;
  padding-left: 1.75rem;
  font-size: max(16px, 13px);
  font-size: max(1rem, 13px);
}
@media only screen and (max-width: 767px) {
  .p-form-health__radio input + span {
    font-size: 0.875rem;
    padding-left: 1.25rem;
    white-space: nowrap;
  }
}

.p-form-health__radio input + span::before {
  position: absolute;
  content: "";
  top: 54%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #aaaaaa;
}
@media only screen and (max-width: 767px) {
  .p-form-health__radio input + span::before {
    width: 1rem;
    height: 1rem;
  }
}

.p-form-health__radio input + span::after {
  position: absolute;
  content: "";
  top: 54%;
  left: 4px;
  left: 0.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 12px;
  width: 0.75rem;
  height: 12px;
  height: 0.75rem;
  border-radius: 50%;
  background-color: #0a4774;
  display: none;
}
@media only screen and (max-width: 767px) {
  .p-form-health__radio input + span::after {
    width: 0.5rem;
    height: 0.5rem;
  }
}

[type=radio]:checked + span::after {
  display: block;
}

/* --------------------------------
p-form
----------------------------------- */
.p-form__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.125rem;
     -moz-column-gap: 0.125rem;
          column-gap: 0.125rem;
  border-bottom: 2px solid #dfe4eb;
  border-bottom: 0.125rem solid #dfe4eb;
}
@media only screen and (max-width: 767px) {
  .p-form__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-bottom: none;
  }
}

.p-form__list dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #0a4774;
  width: 340px;
  width: 21.25rem;
  padding-left: 30px;
  padding-left: 1.875rem;
  color: #fff;
  font-size: max(16px, 13px);
  font-size: max(1rem, 13px);
}
@media only screen and (max-width: 767px) {
  .p-form__list dt {
    width: 100%;
    padding: 0.9375rem;
    font-size: 0.9375rem;
  }
}

.p-form__list dt span {
  display: inline-block;
  position: relative;
  padding-right: 58px;
  padding-right: 3.625rem;
}

.p-form__list dt span::after {
  position: absolute;
  content: "必須";
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1;
  letter-spacing: 0.075em;
  top: 57%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #f4c21e;
  border: 1px solid #f4c21e;
  border: 0.0625rem solid #f4c21e;
  padding: 3.5px 7.9px 4.1px 8.5px;
  padding: 0.21875rem 0.49375rem 0.25625rem 0.53125rem;
}

.p-form__list dd {
  background-color: #fff;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 30px 110px 30px 32px;
  padding: 1.875rem 6.875rem 1.875rem 2rem;
  min-height: 84px;
  min-height: 5.25rem;
}
@media only screen and (max-width: 767px) {
  .p-form__list dd {
    padding: 1.25rem 0.9375rem;
    min-height: 4.375rem;
  }
}

.p-form__list dd input,
.p-form__list dd textarea {
  background-color: #dfe4eb;
  font-size: max(14px, 12px);
  font-size: max(0.875rem, 12px);
  line-height: 1;
  letter-spacing: 0.075em;
}

.p-form__list dd textarea {
  width: 100%;
  resize: vertical;
  min-height: 140px;
  min-height: 8.75rem;
  height: 140px;
  height: 8.75rem;
  padding: 20px;
  padding: 1.25rem;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .p-form__list dd textarea {
    padding: 0.9375rem;
  }
}

.p-form__list dd [type=text],
.p-form__list dd [type=email] {
  display: block;
  width: 100%;
  height: 40px;
  height: 2.5rem;
  padding: 0 20px;
  padding: 0 1.25rem;
}
@media only screen and (max-width: 767px) {
  .p-form__list dd [type=text],
  .p-form__list dd [type=email] {
    padding: 0 0.9375rem;
  }
}

.p-form__list dd ::-webkit-input-placeholder {
  color: #b5bac1;
}

.p-form__list dd ::-moz-placeholder {
  color: #b5bac1;
}

.p-form__list dd ::-ms-input-placeholder {
  color: #b5bac1;
}

.p-form__list dd ::placeholder {
  color: #b5bac1;
}

.p-form__dt-note {
  margin-top: 16px;
  margin-top: 1rem;
  font-size: max(14px, 11px);
  font-size: max(0.875rem, 11px);
}

.p-form__dt-text {
  margin-top: 32px;
  margin-top: 2rem;
  font-size: max(16px, 12px);
  font-size: max(1rem, 12px);
  position: relative;
  margin-left: 6px;
  margin-left: 0.375rem;
  padding-left: 12px;
  padding-left: 0.75rem;
}
@media only screen and (max-width: 767px) {
  .p-form__dt-text {
    margin-top: 0.7rem;
    font-size: 0.9375rem;
  }
}

.p-form__dt-text::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 4px;
  width: 0.25rem;
  height: 4px;
  height: 0.25rem;
  border-radius: 50%;
  background-color: #f4c21e;
}

.p-form__list--border-yellow {
  border-bottom: 4px solid #f4c21e;
  border-bottom: 0.25rem solid #f4c21e;
}

@media only screen and (max-width: 767px) {
  .p-form__list label {
    font-size: 0.9375rem;
  }
}

.p-form__note {
  margin-top: 16px;
  margin-top: 1rem;
  font-size: max(12px, 11px);
  font-size: max(0.75rem, 11px);
  line-height: 1.2;
}
@media only screen and (max-width: 767px) {
  .p-form__note {
    line-height: 1.4;
  }
}

.p-form__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.9375rem;
     -moz-column-gap: 0.9375rem;
          column-gap: 0.9375rem;
}
@media only screen and (max-width: 767px) {
  .p-form__flex {
    -webkit-column-gap: 0.625rem;
       -moz-column-gap: 0.625rem;
            column-gap: 0.625rem;
  }
}

.p-form__flex--checkbox,
.p-form__flex--radio {
  -webkit-column-gap: 1.875rem;
     -moz-column-gap: 1.875rem;
          column-gap: 1.875rem;
}
@media only screen and (max-width: 767px) {
  .p-form__flex--checkbox,
  .p-form__flex--radio {
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
  }
}

/*======================================================
  講習内容
======================================================*/
.p-form__list--yellow dt {
  color: #0a4774;
}
.p-form__list--yellow dt {
  background-color: #f4c21e;
}

.p-form__date {
  font-size: max(16px, 13px);
  font-size: max(1rem, 13px);
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .p-form__date {
    font-size: 0.9375rem;
  }
}

.p-form__place {
  margin-top: 9px;
  margin-top: 0.5625rem;
  font-size: max(14px, 12px);
  font-size: max(0.875rem, 12px);
  line-height: 1;
}

.p-form__deadline {
  margin-top: 3px;
  margin-top: 0.1875rem;
  font-size: max(14px, 12px);
  font-size: max(0.875rem, 12px);
  line-height: 1;
}

.p-form .p-form__list.p-form__list--yellow dd input {
  background-color: #fff;
}

.p-form .p-form__list.p-form__list--yellow dd input[type=text] {
  padding: 0;
  height: auto;
}

.p-form .p-form__list.p-form__list--yellow dd .p-form__date input[type=text] {
  font-size: max(16px, 13px);
  font-size: max(1rem, 13px);
}

/*======================================================
  生年月日
======================================================*/
.p-form__date-of-birth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 7px;
     -moz-column-gap: 7px;
          column-gap: 7px;
}
@media only screen and (max-width: 767px) {
  .p-form__date-of-birth {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 1rem;
  }
}

.p-form__date-of-birth .p-form__select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 7px;
     -moz-column-gap: 7px;
          column-gap: 7px;
}

.p-form__date-of-birth .p-form__select .p-form__select-box {
  background-color: #dfe4eb;
  height: 40px;
  height: 2.5rem;
  position: relative;
}

.p-form__date-of-birth .p-form__select .p-form__select-box::after {
  position: absolute;
  content: "";
  top: 54%;
  right: 14px;
  right: 0.875rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
  width: 0.625rem;
  height: 8px;
  height: 0.5rem;
  -webkit-mask-image: url(../images/svg/arrow-down.svg);
          mask-image: url(../images/svg/arrow-down.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #000;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .p-form__date-of-birth .p-form__select .p-form__select-box::after {
    right: 0.5rem;
  }
}

.p-form__date-of-birth .p-form__select select {
  width: 100%;
  height: 100%;
  padding-left: 20px;
  padding-left: 1.25rem;
  font-size: max(14px, 12px);
  font-size: max(0.875rem, 12px);
  line-height: 1;
  letter-spacing: 0.075em;
  color: #000;
}
@media only screen and (max-width: 767px) {
  .p-form__date-of-birth .p-form__select select {
    padding-left: 0.75rem;
  }
}

.p-form__date-of-birth .p-form__select:nth-child(1) .p-form__select-box {
  width: 90px;
  width: 5.625rem;
}
@media only screen and (max-width: 767px) {
  .p-form__date-of-birth .p-form__select:nth-child(1) .p-form__select-box {
    width: 4.375rem;
  }
}

.p-form__date-of-birth .p-form__select:nth-child(2) .p-form__select-box,
.p-form__date-of-birth .p-form__select:nth-child(3) .p-form__select-box {
  width: 70px;
  width: 4.375rem;
}
@media only screen and (max-width: 767px) {
  .p-form__date-of-birth .p-form__select:nth-child(2) .p-form__select-box,
  .p-form__date-of-birth .p-form__select:nth-child(3) .p-form__select-box {
    width: 3.75rem;
  }
}

.p-form__date-of-birth .p-form__select:nth-child(3) {
  margin-right: 23px;
  margin-right: 1.4375rem;
}

.p-form__select-box--age {
  width: 70px;
  width: 4.375rem;
}
@media only screen and (max-width: 767px) {
  .p-form__select-box--age {
    width: 3.75rem;
  }
}

/*======================================================
  本籍・住所
======================================================*/
dd.p-form__permanent-domicile [type=text] {
  width: 250px;
  width: 15.625rem;
}

.p-form__address-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 16px;
  row-gap: 1rem;
}
.p-form__address-box [type=text]:nth-child(1) {
  width: 250px;
  width: 15.625rem;
}

.p-form__address .p-form__select-box {
  background-color: #dfe4eb;
  width: 114px;
  width: 7.125rem;
  width: max(114px, 90px);
  width: max(7.125rem, 90px);
  height: 40px;
  height: 2.5rem;
  position: relative;
}
.p-form__address .p-form__select-box::after {
  position: absolute;
  content: "";
  top: 54%;
  right: 14px;
  right: 0.875rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
  width: 0.625rem;
  height: 8px;
  height: 0.5rem;
  -webkit-mask-image: url(../images/svg/arrow-down.svg);
          mask-image: url(../images/svg/arrow-down.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #000;
  pointer-events: none;
}

.p-form__address select {
  width: 100%;
  height: 100%;
  padding-left: 20px;
  padding-left: 1.25rem;
  font-size: max(14px, 12px);
  font-size: max(0.875rem, 12px);
  line-height: 1;
  letter-spacing: 0.075em;
  color: #000;
}
@media only screen and (max-width: 767px) {
  .p-form__address select {
    padding-left: 0.9375rem;
  }
}

/*======================================================
  緊急連絡先・服のサイズ
======================================================*/
.p-form__flex--emergency-contact {
  margin-top: 16px;
  margin-top: 1rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .p-form__flex--emergency-contact {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    row-gap: 1rem;
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
  }
}

.p-form__flex--size {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 1.875rem;
     -moz-column-gap: 1.875rem;
          column-gap: 1.875rem;
  row-gap: 16px;
  row-gap: 1rem;
}
@media only screen and (max-width: 767px) {
  .p-form__flex--size {
    max-width: 500px;
  }
}

.p-form__relatives,
.p-form__relationship,
.p-form__height,
.p-form__weight,
.p-form__shoes,
.p-form__clothes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-form__relatives label,
.p-form__relationship label {
  width: 40px;
  width: 2.5rem;
  display: block;
}

.p-form__relatives input[type=text] {
  width: 238px;
  width: 14.875rem;
}

.p-form__relationship input[type=text] {
  width: 150px;
  width: 9.375rem;
}

.p-form__height,
.p-form__weight,
.p-form__shoes,
.p-form__clothes {
  -webkit-column-gap: 0.3125rem;
     -moz-column-gap: 0.3125rem;
          column-gap: 0.3125rem;
}

.p-form__height label,
.p-form__weight label,
.p-form__shoes label,
.p-form__clothes label {
  letter-spacing: 0.02em;
}

.p-form__height input[type=text],
.p-form__weight input[type=text],
.p-form__shoes input[type=text],
.p-form__clothes input[type=text] {
  width: 90px;
  width: 5.625rem;
}

/*======================================================
  チェックボックス
======================================================*/
.p-form__flex--checkbox input + span {
  position: relative;
  padding-left: 28px;
  padding-left: 1.75rem;
  font-size: max(16px, 13px);
  font-size: max(1rem, 13px);
}
@media only screen and (max-width: 767px) {
  .p-form__flex--checkbox input + span {
    font-size: 0.875rem;
    padding-left: 1.25rem;
    line-height: 1.6;
  }
}

.p-form__flex--checkbox input + span::before {
  position: absolute;
  content: "";
  top: 55%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #aaaaaa;
}
@media only screen and (max-width: 767px) {
  .p-form__flex--checkbox input + span::before {
    width: 1rem;
    height: 1rem;
    top: 0.25rem;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.p-form__flex--checkbox input + span::after {
  position: absolute;
  content: "";
  top: 55%;
  left: 4px;
  left: 0.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 12px;
  width: 0.75rem;
  height: 12px;
  height: 0.75rem;
  border-radius: 50%;
  background-color: #0a4774;
  display: none;
}
@media only screen and (max-width: 767px) {
  .p-form__flex--checkbox input + span::after {
    width: 0.5rem;
    height: 0.5rem;
    top: 0.5rem;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.p-form__flex--checkbox input + span a {
  color: #0a4774;
  text-decoration: underline;
}

[type=checkbox]:checked + span::after {
  display: block;
}

@media only screen and (max-width: 767px) {
  .p-form__flex--privacy {
    white-space: nowrap;
  }
}

@media only screen and (max-width: 767px) {
  .p-form__flex--consent {
    line-height: 1.5;
  }
}

/*======================================================
  ラジオボックス
======================================================*/
.p-form__flex--radio input + span {
  position: relative;
  padding-left: 28px;
  padding-left: 1.75rem;
  font-size: max(16px, 13px);
  font-size: max(1rem, 13px);
}
@media only screen and (max-width: 767px) {
  .p-form__flex--radio input + span {
    font-size: 0.875rem;
    padding-left: 1.25rem;
    white-space: nowrap;
  }
}

.p-form__flex--radio input + span::before {
  position: absolute;
  content: "";
  top: 54%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #aaaaaa;
}
@media only screen and (max-width: 767px) {
  .p-form__flex--radio input + span::before {
    width: 1rem;
    height: 1rem;
  }
}

.p-form__flex--radio input + span::after {
  position: absolute;
  content: "";
  top: 54%;
  left: 4px;
  left: 0.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 12px;
  width: 0.75rem;
  height: 12px;
  height: 0.75rem;
  border-radius: 50%;
  background-color: #0a4774;
  display: none;
}
@media only screen and (max-width: 767px) {
  .p-form__flex--radio input + span::after {
    width: 0.5rem;
    height: 0.5rem;
  }
}

[type=radio]:checked + span::after {
  display: block;
}

.wpcf7-list-item.last {
  margin-left: 30px;
  margin-left: 1.875rem;
}

/*======================================================
  デフォルトスタイルの変更
======================================================*/
.wpcf7-list-item:first-child {
  margin-left: 0;
}

@media only screen and (max-width: 767px) {
  .wpcf7-list-item:nth-child(odd) {
    margin-left: 0;
  }
}

@media only screen and (max-width: 767px) {
  .wpcf7-list-item:nth-child(n+3) {
    margin-top: 0.5rem;
  }
}

.wpcf7-not-valid-tip {
  margin-top: 2px;
  margin-top: 0.125rem;
  margin-bottom: -13px;
  margin-bottom: -0.8125rem;
  font-size: 12px;
  font-size: 0.75rem;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .wpcf7-not-valid-tip {
    font-size: 0.75rem;
  }
}

.wpcf7 form.sent .wpcf7-response-output {
  display: none;
}

/*======================================================
送信ボタン
======================================================*/
.p-form__btn {
  margin: 78px auto 0;
  margin: 4.875rem auto 0;
  width: 300px;
  width: 18.75rem;
  height: 48px;
  height: 3rem;
}
@media only screen and (max-width: 767px) {
  .p-form__btn {
    margin-top: 2.5rem;
  }
}

.p-form__btn input {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #0a4774;
  background-image: url(../images/svg/arrow-right.svg);
  background-repeat: no-repeat;
  background-size: 0.8125rem 0.6875rem;
  background-position: 81% 51%;
  background-repeat: no-repeat;
  color: #0a4774;
  background-color: #f4c21e;
  border-radius: 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
}

.p-form__btn input:disabled {
  opacity: 0.3;
  color: #0a4774;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.p-form__btn input:hover {
  background-color: #efb803;
}

.wpcf7-spinner {
  display: none;
}

/*======================================================
  ファイル添付ボタンカスタマイズ
======================================================*/
.p-form__list dd [type=file] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100px;
  height: 6.25rem;
  padding: 36px 20px 0 36px;
  padding: 2.25rem 1.25rem 0 2.25rem;
}
@media only screen and (max-width: 767px) {
  .p-form__list dd [type=file] {
    padding: 2.25rem 0 2.25rem 2.25rem;
  }
}

.p-form__file {
  position: relative;
}

.file-attachment {
  z-index: 5;
  position: absolute;
  top: max(52px, 38px);
  top: max(3.25rem, 38px);
  left: 40px;
  left: 2.5rem;
  background-color: #dfe4eb;
  display: inline-block;
  padding: 18px 7px 20px 30px;
  padding: 1.125rem 0.4375rem 1.25rem 1.875rem;
}
@media only screen and (max-width: 767px) {
  .file-attachment {
    top: 2.5rem;
    left: 1.0625rem;
    padding: 1.25rem 0.75rem 1.25rem 1.875rem;
  }
}

.file-attachment .file-btn {
  font-size: max(14px, 13px);
  font-size: max(0.875rem, 13px);
  color: #0a4774;
  position: relative;
  border-bottom: 1px solid #0a4774;
  border-bottom: 0.0625rem solid #0a4774;
}

.file-attachment .file-btn::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -19px;
  left: -1.1875rem;
  -webkit-transform: translateY(-50%) rotate(-10deg);
          transform: translateY(-50%) rotate(-10deg);
  width: 17px;
  width: 1.0625rem;
  height: 21px;
  height: 1.3125rem;
  background-image: url(../images/svg/clip.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.p-form__wrap--health {
  margin-top: 32px;
  margin-top: 2rem;
}

.codedropz-upload-inner h3 {
  font-size: 14px !important;
  font-size: 0.875rem !important;
  line-height: 1 !important;
}

.codedropz-upload-inner span {
  font-size: 14px !important;
  font-size: 0.875rem !important;
}

.codedropz-btn-wrap {
  margin-top: 10px;
  margin-top: 0.625rem;
  color: #0a4774;
  font-size: 14px !important;
  font-size: 0.875rem !important;
}

.dnd-upload-counter {
  display: none;
}

@media only screen and (max-width: 767px) {
  .codedropz-upload-container {
    padding: 15px 10px !important;
  }
}

/* --------------------------------
p-header-head
----------------------------------- */
.p-header-head {
  height: 80px;
  height: 5rem;
  background-color: #fff;
}
@media (max-width: 1100px) {
  .p-header-head {
    background-color: transparent;
    height: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .p-header-head {
    height: 3.75rem;
  }
}

.p-header-head__inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  height: inherit;
  padding: 0 40px;
  padding: 0 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1100px) {
  .p-header-head__inner {
    padding: 0 0 0 1.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-header-head__inner {
    padding: 0 0 0 0.9375rem;
  }
}

.p-header-head__left {
  height: inherit;
  background-color: #f4c21e;
  position: relative;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  .p-header-head__left {
    background-color: transparent;
  }
}
.p-header-head__left::before {
  position: absolute;
  z-index: -1;
  content: "";
  top: 0;
  right: 0;
  width: 100vw;
  height: 100%;
  background-color: #f4c21e;
}
@media only screen and (max-width: 767px) {
  .p-header-head__left::before {
    display: none;
  }
}
.p-header-head__left::after {
  position: absolute;
  content: "";
  top: 0;
  right: -57px;
  right: -3.5625rem;
  width: 57px;
  width: 3.5625rem;
  height: 100%;
  -webkit-clip-path: polygon(0 0, 100% 0, 36% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 36% 100%, 0% 100%);
  background-color: #f4c21e;
}
@media only screen and (max-width: 767px) {
  .p-header-head__left::after {
    display: none;
  }
}

.p-header-head__logo {
  height: inherit;
}
.p-header-head__logo a {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 325px;
  width: 20.3125rem;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media only screen and (max-width: 767px) {
  .p-header-head__logo a {
    width: 14.25rem;
  }
}

.p-header-head__logo.is-white a {
  color: #fff;
}

.p-header-head__btn {
  width: 256px;
  width: 16rem;
  height: 48px;
  height: 3rem;
}
@media (max-width: 1100px) {
  .p-header-head__btn {
    width: 11.25rem;
    height: inherit;
  }
}
@media only screen and (max-width: 767px) {
  .p-header-head__btn {
    width: 5.625rem;
  }
}

.p-header-head__btn.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.p-header-head__right {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 1100px) {
  .p-header-head__btn a {
    display: grid;
    place-content: center;
    height: inherit;
    font-size: max(1rem, 13px);
    line-height: 1.4;
    letter-spacing: 0.2em;
    -webkit-clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
            clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
    background-color: #0a4774;
    color: #fff;
    padding: 0 1.5rem;
    -webkit-transition: background-color 0.3s, color 0.3s;
    transition: background-color 0.3s, color 0.3s;
  }
}
@media only screen and (max-width: 767px) {
  .p-header-head__btn a {
    font-size: 0.875rem;
  }
}

.p-header-head__btn a:hover {
  background-color: #dfe4eb;
  color: #0a4774;
}
@media only screen and (max-width: 767px) {
  .p-header-head__btn a:hover {
    background-color: #0a4774;
    color: #fff;
  }
}

/* --------------------------------
p-header-nav
----------------------------------- */
.p-header-nav {
  height: 40px;
  height: 2.5rem;
  background-color: #dfe4eb;
}

.p-header-nav__inner {
  height: inherit;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

.p-header-nav__lists {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-header-nav__list {
  height: inherit;
}
.p-header-nav__list a {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: max(16px, 12px);
  font-size: max(1rem, 12px);
  color: #0a4774;
  padding: 0 30px;
  padding: 0 1.875rem;
  position: relative;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.p-header-nav__list a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2px;
  width: 0.125rem;
  height: 40%;
  background-color: #0a4774;
}

.p-header-nav__list:last-child a::after {
  display: none;
}

.p-header-nav__list:hover a {
  color: #607a9c;
}

/* --------------------------------
p-header
----------------------------------- */
@media (max-width: 1100px) {
  .p-header {
    background-color: #f4c21e;
    border-bottom: 0.0625rem solid #fff;
  }
}

/* --------------------------------
p-information-tab
----------------------------------- */
.p-information-tab__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  margin-top: 9px;
  margin-top: 0.5625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (max-width: 767px) {
  .p-information-tab__lists {
    margin-top: 0.3125rem;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    -webkit-column-gap: 0.625rem;
       -moz-column-gap: 0.625rem;
            column-gap: 0.625rem;
    row-gap: 0.625rem;
  }
}

.p-information-tab__title {
  font-size: 16px;
  font-size: 1rem;
  text-transform: uppercase;
  color: #0a4774;
}

/* --------------------------------
p-information
----------------------------------- */
.p-information {
  margin-top: 120px;
  margin-top: 7.5rem;
  padding-bottom: 119px;
  padding-bottom: 7.4375rem;
}
@media only screen and (max-width: 767px) {
  .p-information {
    margin-top: 3.75rem;
    padding-bottom: 3.125rem;
  }
}

.p-information__container {
  max-width: 1170px;
  width: 100%;
  margin-inline: auto;
  padding-top: 96px;
  padding-top: 6rem;
  padding-inline: 40px;
  padding-inline: 2.5rem;
}
@media only screen and (max-width: 767px) {
  .p-information__container {
    max-width: 500px;
    padding-top: 3.125rem;
    padding-inline: 1.25rem;
  }
}

.p-information__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .p-information__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-information__select {
  margin-top: 25px;
  margin-top: 1.5625rem;
  width: 179px;
  width: 11.1875rem;
  height: 45px;
  height: 2.8125rem;
  position: relative;
  z-index: 10;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .p-information__select {
    width: 100%;
  }
}

.p-information__select::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 50%;
  right: calc(4.8077vw - 11.9231px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
  width: 0.625rem;
  height: 9px;
  height: 0.5625rem;
  background-color: #0a4774;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
  pointer-events: none;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media (min-width: 1081px) {
  .p-information__select::after {
    right: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-information__select::after {
    right: 1.5625rem;
  }
}

.p-information__select form {
  width: 100%;
  height: 100%;
}

.p-information__select select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: 2px solid #0a4774;
  border: 0.125rem solid #0a4774;
  border-radius: 3.125rem;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
  font-size: max(14px, 12px);
  font-size: max(0.875rem, 12px);
  line-height: 1;
  letter-spacing: 0.075em;
  font-weight: 600;
  color: #0a4774;
  padding: 0 20px 0 10px;
  padding: 0 1.25rem 0 0.625rem;
  text-align: center;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  .p-information__select select {
    font-size: 0.875rem;
  }
}

.p-information__lists {
  margin-top: 73px;
  margin-top: 4.5625rem;
  width: 845px;
  width: 52.8125rem;
}
@media only screen and (max-width: 767px) {
  .p-information__lists {
    width: 100%;
    margin-top: 2.5rem;
  }
}

.p-information__note {
  font-size: max(16px, 13px);
  font-size: max(1rem, 13px);
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-information__note {
    font-size: 0.875rem;
  }
}

.p-information__paginavi {
  margin-top: 68px;
  margin-top: 4.25rem;
}
@media only screen and (max-width: 767px) {
  .p-information__paginavi {
    margin-top: 1.875rem;
  }
}

.p-information__paginavi .wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 0.625rem;
     -moz-column-gap: 0.625rem;
          column-gap: 0.625rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  color: #0a4774;
}
.p-information__paginavi .wp-pagenavi span,
.p-information__paginavi .wp-pagenavi a {
  display: block;
  padding: 10px 10px;
  padding: 0.625rem 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.p-information__paginavi .wp-pagenavi span:hover,
.p-information__paginavi .wp-pagenavi a:hover {
  color: #7f91ab;
}
.p-information__paginavi .wp-pagenavi span:last-child,
.p-information__paginavi .wp-pagenavi a:last-child {
  margin-right: 0;
}
.p-information__paginavi .wp-pagenavi span.current {
  color: #7f91ab;
  cursor: default;
}
.p-information__paginavi .wp-pagenavi .nextpostslink,
.p-information__paginavi .wp-pagenavi .previouspostslink {
  position: relative;
}
.p-information__paginavi .wp-pagenavi .nextpostslink::before {
  content: "";
  position: absolute;
  top: 53%;
  right: 9px;
  right: 0.5625rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background-color: #0a4774;
  width: 9px;
  width: 0.5625rem;
  height: 10px;
  height: 0.625rem;
}
.p-information__paginavi .wp-pagenavi .previouspostslink::before {
  content: "";
  position: absolute;
  top: 53%;
  left: 9px;
  left: 0.5625rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-clip-path: polygon(100% 0, 0 50%, 100% 100%);
          clip-path: polygon(100% 0, 0 50%, 100% 100%);
  background-color: #0a4774;
  width: 9px;
  width: 0.5625rem;
  height: 10px;
  height: 0.625rem;
}
@media only screen and (max-width: 767px) {
  .p-information__paginavi .wp-pagenavi {
    font-size: 1rem;
  }
  .p-information__paginavi .wp-pagenavi span,
  .p-information__paginavi .wp-pagenavi a {
    width: 30px;
    height: 30px;
  }
}

.p-information__paginavi .wp-pagenavi a:hover {
  color: #7f91ab;
}

/* --------------------------------
p-news-list
----------------------------------- */
.p-news-list {
  border-bottom: 2px solid #0a4774;
  border-bottom: 0.125rem solid #0a4774;
}
@media only screen and (max-width: 767px) {
  .p-news-list {
    border-bottom: 0.0625rem solid #0a4774;
  }
}

.p-news-list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 145px 60px;
  padding-inline: 9.0625rem 3.75rem;
  padding-inline: 145px;
  padding-inline: 9.0625rem;
  height: 88px;
  height: 5.5rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-news-list a {
    padding-inline: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 3.75rem;
  }
}

.p-news-list__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.9375rem;
     -moz-column-gap: 1.9375rem;
          column-gap: 1.9375rem;
  width: 254px;
  width: 15.875rem;
}
@media only screen and (max-width: 767px) {
  .p-news-list__meta {
    width: 100%;
    -webkit-column-gap: 0.9375rem;
       -moz-column-gap: 0.9375rem;
            column-gap: 0.9375rem;
  }
}

.p-news-list__time {
  font-size: max(18px, 13px);
  font-size: max(1.125rem, 13px);
}
@media only screen and (max-width: 767px) {
  .p-news-list__time {
    font-size: 0.8125rem;
  }
}

.p-news-list__category,
.p-news-list__btn {
  color: #fff;
  min-width: 95px;
  min-width: 5.9375rem;
  padding: 4.5px 10px 5.5px 12px;
  padding: 0.28125rem 0.625rem 0.34375rem 0.75rem;
  display: block;
  text-align: center;
  font-size: max(16px, 13px);
  font-size: max(1rem, 13px);
}
@media only screen and (max-width: 767px) {
  .p-news-list__category,
  .p-news-list__btn {
    min-width: 4.375rem;
    padding: 0.1875rem 0.3125rem 0.25rem 0.3125rem;
    font-size: max(0.75rem, 10px);
  }
}

.p-news-list__category.news,
.p-news-list__btn.news {
  background-color: #f4c21e;
}

.p-news-list__category.event,
.p-news-list__btn.event {
  background-color: #1171b7;
}

.p-news-list__category.other,
.p-news-list__btn.other {
  background-color: #7f91ab;
}

.p-news-list__title {
  font-size: max(18px, 13px);
  font-size: max(1.125rem, 13px);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1; /* 任意の行数を指定 */
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media only screen and (max-width: 767px) {
  .p-news-list__title {
    font-size: 0.9375rem;
    margin-top: 0.625rem;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}

.p-news-list__new {
  position: absolute;
  top: 50%;
  left: 63px;
  left: 3.9375rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 60px;
  width: 3.75rem;
  height: 60px;
  height: 3.75rem;
  border-radius: 50%;
  background-color: #bf000f;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.075em;
}
@media only screen and (max-width: 767px) {
  .p-news-list__new {
    width: 2.625rem;
    height: 2.625rem;
    font-size: 0.75rem;
    left: 0.0625rem;
  }
}

.p-news-list a:hover .p-news-list__title {
  color: #606060;
}

/* --------------------------------
p-post-detail
----------------------------------- */
.p-post-detail {
  margin-top: 120px;
  margin-top: 7.5rem;
  padding-bottom: 130px;
  padding-bottom: 8.125rem;
}
@media only screen and (max-width: 767px) {
  .p-post-detail {
    margin-top: 3.75rem;
    padding-bottom: 3.125rem;
  }
}

.p-post-detail__container {
  padding-block: 96px 162px;
  padding-block: 6rem 10.125rem;
}
@media only screen and (max-width: 767px) {
  .p-post-detail__container {
    padding-block: 2.5rem 0;
  }
}

.p-post-detail__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 3.125rem;
     -moz-column-gap: 3.125rem;
          column-gap: 3.125rem;
}
@media only screen and (max-width: 767px) {
  .p-post-detail__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-post-detail__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.25rem;
     -moz-column-gap: 1.25rem;
          column-gap: 1.25rem;
  padding-top: 15px;
  padding-top: 0.9375rem;
}

.p-post-detail__time {
  font-size: max(16px, 13px);
  font-size: max(1rem, 13px);
  line-height: 1;
  letter-spacing: 0.075em;
}
@media only screen and (max-width: 767px) {
  .p-post-detail__time {
    font-size: 0.8125rem;
  }
}

.p-post-detail__category {
  color: #fff;
  min-width: 95px;
  min-width: 5.9375rem;
  padding: 4px 10px 6px 12px;
  padding: 0.25rem 0.625rem 0.375rem 0.75rem;
  display: block;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-post-detail__category {
    font-size: 0.8125rem;
    padding: 0.25rem 0.5rem 0.3125rem 0.625rem;
  }
}

.p-post-detail__category.news {
  background-color: #f4c21e;
}

.p-post-detail__category.event {
  background-color: #1171b7;
}

.p-post-detail__category.other {
  background-color: #7f91ab;
}

.p-post-detail__title {
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .p-post-detail__title {
    margin-top: 1rem;
    font-size: 1.375rem;
  }
}

.p-post-detail__content {
  margin-top: 38px;
  margin-top: 2.375rem;
}
@media only screen and (max-width: 767px) {
  .p-post-detail__content {
    margin-top: 1.875rem;
  }
}

.p-post-detail__content p {
  margin-block: 20px;
  margin-block: 1.25rem;
  font-size: mx(16px, 13px);
  font-size: mx(1rem, 13px);
  line-height: 2;
  letter-spacing: 0.075em;
}
@media only screen and (max-width: 767px) {
  .p-post-detail__content p {
    font-size: 0.875rem;
    text-align: justify;
    letter-spacing: 0.05em;
  }
}

.p-post-detail__content figure {
  margin-block: 20px;
  margin-block: 1.25rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-post-detail__content figure img {
  max-width: 100%;
}

.p-post-detail__btn {
  margin-top: 54px;
  margin-top: 3.375rem;
  width: 172px;
  width: 10.75rem;
  height: 50px;
  height: 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .p-post-detail__btn {
    margin-top: 2.25rem;
    width: 9.375rem;
    height: 2.875rem;
  }
}

/* --------------------------------
p-privacy-policy
----------------------------------- */
.p-privacy-policy {
  margin-top: 120px;
  margin-top: 7.5rem;
  padding-bottom: 130px;
  padding-bottom: 8.125rem;
}
@media only screen and (max-width: 767px) {
  .p-privacy-policy {
    margin-top: 3.75rem;
    padding-bottom: 3.125rem;
  }
}

.p-privacy-policy__container {
  padding-top: 95px;
  padding-top: 5.9375rem;
}
@media only screen and (max-width: 767px) {
  .p-privacy-policy__container {
    padding-top: 2.5rem;
  }
}

.p-privacy-policy__head {
  padding-bottom: 78px;
  padding-bottom: 4.875rem;
  border-bottom: 2px solid #0a4774;
  border-bottom: 0.125rem solid #0a4774;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-privacy-policy__head {
    padding-bottom: 2.5rem;
  }
}
.p-privacy-policy__head::after {
  position: absolute;
  content: "";
  bottom: -2px;
  bottom: -0.125rem;
  right: 0;
  width: 100px;
  width: 6.25rem;
  height: 2px;
  height: 0.125rem;
  background-color: #f4c21e;
}

.p-privacy-policy__item {
  margin-top: 80px;
  margin-top: 5rem;
}
@media only screen and (max-width: 767px) {
  .p-privacy-policy__item {
    margin-top: 2.5rem;
  }
}
.p-privacy-policy__item dt {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #0a4774;
  position: relative;
  padding-left: 28px;
  padding-left: 1.75rem;
}
@media only screen and (max-width: 767px) {
  .p-privacy-policy__item dt {
    font-size: 1.125rem;
    padding-left: 1.25rem;
  }
}
.p-privacy-policy__item dt::before {
  position: absolute;
  content: "";
  top: 2px;
  top: 0.125rem;
  left: 0;
  width: 22px;
  width: 1.375rem;
  height: 22px;
  height: 1.375rem;
  background-color: #0a4774;
  border-radius: 50%;
}
@media only screen and (max-width: 767px) {
  .p-privacy-policy__item dt::before {
    width: 1rem;
    height: 1rem;
  }
}
.p-privacy-policy__item dd p {
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media only screen and (max-width: 767px) {
  .p-privacy-policy__item dd p {
    margin-top: 1rem;
  }
}
.p-privacy-policy__item ul {
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media only screen and (max-width: 767px) {
  .p-privacy-policy__item ul {
    margin-top: 1rem;
  }
}
.p-privacy-policy__item li {
  position: relative;
  padding-left: 18px;
  padding-left: 1.125rem;
}
@media only screen and (max-width: 767px) {
  .p-privacy-policy__item li {
    padding-left: 1rem;
  }
}
.p-privacy-policy__item li::before {
  position: absolute;
  content: "";
  top: 54%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 13px;
  width: 0.8125rem;
  height: 13px;
  height: 0.8125rem;
  background-color: #b5bac1;
  border-radius: 50%;
}
@media only screen and (max-width: 767px) {
  .p-privacy-policy__item li::before {
    top: 0.375rem;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    width: 0.75rem;
    height: 0.75rem;
  }
}

.p-privacy-policy__address {
  margin-top: 30px;
  margin-top: 1.875rem;
  font-style: normal;
}
.p-privacy-policy__address span {
  display: block;
}

/* --------------------------------
p-sidebar
----------------------------------- */
.p-sidebar {
  padding-top: 23px;
  padding-top: 1.4375rem;
  width: 179px;
  width: 11.1875rem;
}

/* --------------------------------
p-tab
----------------------------------- */
.p-tab {
  width: 163px;
  width: 10.1875rem;
  height: 45px;
  height: 2.8125rem;
}
@media only screen and (max-width: 767px) {
  .p-tab {
    width: auto;
  }
}

.p-tab__btn {
  width: 100%;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 2px solid;
  border: 0.125rem solid;
  border-color: #0a4774;
  background-color: #0a4774;
  color: #0a4774;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .p-tab__btn {
    font-size: 0.875rem;
  }
}

.p-tab__btn.news {
  border-color: #f4c21e;
  background-color: #f4c21e;
  color: #f4c21e;
  color: #fff;
}

.p-tab__btn.event {
  border-color: #1171b7;
  background-color: #1171b7;
  color: #1171b7;
  color: #fff;
}

.p-tab__btn.other {
  border-color: #7f91ab;
  background-color: #7f91ab;
  color: #7f91ab;
  color: #fff;
}

/*カレントクラス-------------*/
.p-tab__btn:hover,
.p-tab__btn.current {
  background-color: #fff;
  color: #0a4774;
}

.p-tab__btn.news:hover,
.p-tab__btn.current.news {
  background-color: #fff;
  color: #f4c21e;
}

.p-tab__btn.event:hover,
.p-tab__btn.current.event {
  background-color: #fff;
  color: #1171b7;
}

.p-tab__btn.other:hover,
.p-tab__btn.current.other {
  background-color: #fff;
  color: #7f91ab;
}

.p-tab__btn.current {
  cursor: default;
}

/* --------------------------------
p-top-basic-training
----------------------------------- */
.p-top-basic-training__head {
  text-align: center;
}

.p-top-basic-training__body {
  margin-top: 70px;
  margin-top: 4.375rem;
}
@media only screen and (max-width: 767px) {
  .p-top-basic-training__body {
    margin-top: 1.5rem;
  }
}

.p-top-basic-training__text {
  font-size: max(16px, 12.8px);
  font-size: max(1rem, 12.8px);
  line-height: 2;
  text-align: justify;
  max-width: 980px;
  max-width: 61.25rem;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .p-top-basic-training__text {
    font-size: 0.875rem;
  }
}

.p-top-basic-training__text {
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

.p-top-basic-training__text.is-inview {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

/* --------------------------------
p-top-course-outline
----------------------------------- */
.p-top-course-outline {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(85.3%, #0a4774), color-stop(85.3%, #fff));
  background: linear-gradient(to bottom, #0a4774 85.3%, #fff 85.3%);
}
@media only screen and (max-width: 767px) {
  .p-top-course-outline {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(94%, #0a4774), color-stop(94%, #fff));
    background: linear-gradient(to bottom, #0a4774 94%, #fff 94%);
  }
}

.p-top-course-outline__head {
  text-align: center;
}

.p-top-course-outline__body {
  margin-top: 70px;
  margin-top: 4.375rem;
}
@media only screen and (max-width: 767px) {
  .p-top-course-outline__body {
    margin-top: 1.5rem;
  }
}

.p-top-course-outline__contents {
  margin-top: 34px;
  margin-top: 2.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 2.5rem;
     -moz-column-gap: 2.5rem;
          column-gap: 2.5rem;
}
@media only screen and (max-width: 767px) {
  .p-top-course-outline__contents {
    margin-top: 1.25rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 1.875rem;
  }
}

/* --------------------------------
p-top-documents
----------------------------------- */
.p-top-documents {
  background-image: url(../images/top/documents.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-bottom: 90px;
  padding-bottom: 5.625rem;
}
@media only screen and (max-width: 767px) {
  .p-top-documents {
    padding-bottom: 3.125rem;
  }
}

.p-top-documents__head {
  text-align: center;
}

.p-top-documents__body {
  margin-top: 80px;
  margin-top: 5rem;
}
@media only screen and (max-width: 767px) {
  .p-top-documents__body {
    margin-top: 1.5rem;
  }
}

.p-top-documents__items {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media only screen and (max-width: 767px) {
  .p-top-documents__items {
    margin-top: 1.25rem;
  }
}

.p-top-documents__items {
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

.p-top-documents__items.is-inview {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.p-top-documents__foot {
  margin-top: 89.6px;
  margin-top: 5.6rem;
}
@media only screen and (max-width: 767px) {
  .p-top-documents__foot {
    margin-top: 2.5rem;
  }
}

/* --------------------------------
p-top-entry-table
----------------------------------- */
@media only screen and (max-width: 767px) {
  .p-top-entry-table {
    overflow: scroll;
    margin-right: calc(50% - 50vw);
    padding-right: 1.25rem;
  }
}
.p-top-entry-table table {
  width: 100%;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-top-entry-table table {
    width: 900px;
  }
}
.p-top-entry-table th {
  background-color: #0a4774;
  color: #fff;
  padding: 22px 0;
  padding: 1.375rem 0;
  width: 20%;
  font-size: max(14px, 12px);
  font-size: max(0.875rem, 12px);
}
@media only screen and (max-width: 767px) {
  .p-top-entry-table th {
    padding: 1rem 0;
    font-size: 0.8125rem;
  }
}
.p-top-entry-table td {
  background-color: #fff;
  padding: 18px 10px;
  padding: 1.125rem 0.625rem;
  font-size: max(14px, 12px);
  font-size: max(0.875rem, 12px);
}
@media only screen and (max-width: 767px) {
  .p-top-entry-table td {
    padding: 0.625rem 0.375rem;
    font-size: 0.8125rem;
  }
}
.p-top-entry-table td.p-top-entry-table__place a span {
  line-height: 1.75;
  color: #0a4774;
  padding-bottom: 1px;
  padding-bottom: 0.0625rem;
  border-bottom: 1px solid #0a4774;
  border-bottom: 0.0625rem solid #0a4774;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-top-entry-table td.p-top-entry-table__place a:hover span {
  color: #607a9c;
  border-bottom: 1px solid #607a9c;
  border-bottom: 0.0625rem solid #607a9c;
}
.p-top-entry-table tr:nth-child(even) td {
  background-color: #dfe4eb;
}

.p-top-entry-table__btn {
  margin: 0 auto;
  width: 172px;
  width: 10.75rem;
  height: 50px;
  height: 3.125rem;
}
@media only screen and (max-width: 767px) {
  .p-top-entry-table__btn {
    width: 7.75rem;
    height: 2.25rem;
  }
}

.p-top-entry-table__scroll {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-family: "Open Sans", sans-serif;
  font-size: 10px;
  font-size: 0.625rem;
  text-transform: uppercase;
  position: relative;
  padding-left: 3px;
  padding-left: 0.1875rem;
  padding-right: 24px;
  padding-right: 1.5rem;
}
.p-top-entry-table__scroll::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  width: 1.25rem;
  height: 4px;
  height: 0.25rem;
  background-image: url(../images/svg/scroll-arrow.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media only screen and (min-width: 660px) {
  .p-top-entry-table__scroll {
    display: none;
  }
}

.p-top-entry-table__dead {
  color: #C00000;
}

.p-top-entry-table__open {
  width: 17% !important;
}

.p-top-entry-table__prefectures {
  width: 12% !important;
}

.p-top-entry-table {
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

.p-top-entry-table.is-inview {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

/* --------------------------------
p-top-entry
----------------------------------- */
.p-top-entry {
  background-color: #f4c21e;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #efb703), color-stop(50%, #f4c21e));
  background: linear-gradient(to right, #efb703 50%, #f4c21e 50%);
  position: relative;
}
.p-top-entry::after {
  position: absolute;
  content: "";
  top: 0;
  right: 50%;
  width: 330px;
  width: 20.625rem;
  height: 100%;
  background-color: #f4c21e;
}
@media only screen and (max-width: 767px) {
  .p-top-entry::after {
    width: 26.6666666667vw;
  }
}

.p-top-entry__inner {
  position: relative;
  z-index: 5;
}

.p-top-entry__head {
  text-align: center;
}

.p-top-entry__body {
  margin-top: 70px;
  margin-top: 4.375rem;
}
@media only screen and (max-width: 767px) {
  .p-top-entry__body {
    margin-top: 1.5rem;
  }
}

.p-top-entry__table {
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media only screen and (max-width: 767px) {
  .p-top-entry__table {
    margin-top: 1.875rem;
  }
}

.p-top-entry__narrow {
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media only screen and (max-width: 767px) {
  .p-top-entry__narrow {
    margin-top: 1.875rem;
  }
}

/* --------------------------------
p-top-kv
----------------------------------- */
.p-top-kv {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(72%, #0a4774), color-stop(72%, #fff));
  background: linear-gradient(180deg, #0a4774 72%, #fff 72%);
  padding-top: 80px;
  padding-top: 5rem;
}
@media only screen and (max-width: 767px) {
  .p-top-kv {
    padding-top: 1.875rem;
  }
}

.p-top-kv__inner {
  max-width: 1080px;
  padding-right: 40px;
  padding-left: 40px;
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (max-width: 767px) {
  .p-top-kv__inner {
    padding-right: 5.3333333333vw;
    padding-left: 5.3333333333vw;
  }
}

.p-top-kv__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 24.375vw;
}
@media only screen and (max-width: 1095px) {
  .p-top-kv__contents {
    height: auto;
  }
}
@media only screen and (min-width: 1280px) {
  .p-top-kv__contents {
    height: 19.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-top-kv__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
  }
}

.p-top-kv__left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-top-kv__title-en {
  width: 267px;
  width: 16.6875rem;
}
@media only screen and (max-width: 767px) {
  .p-top-kv__title-en {
    font-size: 1rem;
  }
}

.p-top-kv__title-ja {
  margin-top: 30px;
  margin-top: 1.875rem;
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .p-top-kv__title-ja {
    margin-top: 0.875rem;
    font-size: 1.5rem;
  }
}

.p-top-kv__desc {
  margin-top: 15px;
  margin-top: 0.9375rem;
  font-size: 16px;
  font-size: 1rem;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .p-top-kv__desc {
    margin-top: 0.625rem;
    font-size: 0.875rem;
  }
}

.p-top-kv__right {
  width: 574px;
  width: 35.875rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-top-kv__right {
    width: 86%;
    margin-top: 1.25rem;
    margin-left: auto;
  }
}

.p-top-kv__box {
  position: absolute;
  top: 0;
  left: 0;
  width: 52.5vw;
  aspect-ratio: 672/312;
  background-color: #f4c21e;
  display: grid;
  place-content: center;
}
@media only screen and (max-width: 1095px) {
  .p-top-kv__box {
    position: static;
    width: 100%;
  }
}
@media only screen and (min-width: 1280px) {
  .p-top-kv__box {
    width: 42rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-top-kv__box {
    width: 100%;
  }
}

.p-top-kv__logo {
  width: 437px;
  width: 27.3125rem;
}
@media only screen and (min-width: 768px) and (max-width: 1280px) {
  .p-top-kv__logo {
    width: 34.140625vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-top-kv__logo {
    width: 56vw;
    max-width: 335px;
  }
}

.p-top-kv__box {
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

.p-top-kv__box.is-inview {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

/* --------------------------------
p-top-news
----------------------------------- */
.p-top-news__head {
  text-align: center;
}

.p-top-news__contents {
  margin-top: 42px;
  margin-top: 2.625rem;
}
@media only screen and (max-width: 767px) {
  .p-top-news__contents {
    margin-top: 1.5rem;
  }
}

.p-top-news__btn {
  margin-top: 54px;
  margin-top: 3.375rem;
  width: 172px;
  width: 10.75rem;
  height: 50px;
  height: 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .p-top-news__btn {
    margin-top: 2.25rem;
    width: 9.375rem;
    height: 2.875rem;
  }
}

.p-top-news__note {
  margin-top: 80px;
  margin-top: 5rem;
  font-size: max(16px, 13px);
  font-size: max(1rem, 13px);
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-top-news__note {
    margin-top: 2.5rem;
    font-size: 0.875rem;
  }
}

.p-top-news__contents {
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

.p-top-news__contents.is-inview {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

/* --------------------------------
p-top-price-table
----------------------------------- */
.p-top-price-table table {
  width: 100%;
  text-align: center;
}
.p-top-price-table th {
  width: 50%;
  background-color: #0a4774;
  color: #fff;
  padding: 22px 0;
  padding: 1.375rem 0;
  font-size: max(16px, 12px);
  font-size: max(1rem, 12px);
}
@media only screen and (max-width: 767px) {
  .p-top-price-table th {
    padding: 1rem 0;
    font-size: 0.8125rem;
  }
}
.p-top-price-table td {
  background-color: #dfe4eb;
  padding: 30px 10px;
  padding: 1.875rem 0.625rem;
  font-size: max(16px, 12px);
  font-size: max(1rem, 12px);
}
@media only screen and (max-width: 767px) {
  .p-top-price-table td {
    padding: 1rem 0 1rem 0.875rem;
    font-size: 0.8125rem;
  }
}
.p-top-price-table td span {
  font-family: "Noto Serif JP", serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  color: #0a4774;
}
@media only screen and (max-width: 767px) {
  .p-top-price-table td span {
    display: block;
    margin-top: 0.3125rem;
    font-size: 0.75rem;
  }
}

.p-top-price-table {
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

.p-top-price-table.is-inview {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

/* --------------------------------
p-top-price
----------------------------------- */
.p-top-price__head {
  text-align: center;
}

.p-top-price__body {
  margin-top: 80px;
  margin-top: 5rem;
}
@media only screen and (max-width: 767px) {
  .p-top-price__body {
    margin-top: 1.5rem;
  }
}

.p-top-price__text {
  margin-top: 36px;
  margin-top: 2.25rem;
}
@media only screen and (max-width: 767px) {
  .p-top-price__text {
    margin-top: 1.5rem;
  }
}

/* --------------------------------
p-top-send
----------------------------------- */
.p-top-send {
  text-align: center;
}

.p-top-send__title {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  width: 500px;
  width: 31.25rem;
  padding: 14px 0;
  padding: 0.875rem 0;
  background-color: #0a4774;
  color: #fff;
  border-radius: 3.125rem;
}
@media only screen and (max-width: 767px) {
  .p-top-send__title {
    max-width: 20rem;
    width: 100%;
    margin: 0 auto;
    font-size: 0.9375rem;
    line-height: 1.4;
    padding: 0.625rem 0;
  }
}

.p-top-send__text {
  margin-top: 30px;
  margin-top: 1.875rem;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.7777;
  color: #0a4774;
}
@media only screen and (max-width: 767px) {
  .p-top-send__text {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    line-height: 1.6;
    letter-spacing: 0.04em;
    text-align: left;
  }
}

@media only screen and (max-width: 767px) {
  .p-top-send__text:nth-of-type(1) {
    text-align: justify;
  }
}

@media only screen and (max-width: 767px) {
  .p-top-send__text:nth-of-type(2) {
    margin-top: 1.2rem;
    text-align: center;
    line-height: 2;
  }
}

@media only screen and (max-width: 767px) {
  .p-top-send__text:nth-of-type(2) p:nth-child(2) {
    margin-top: 1rem;
  }
}

.p-top-send {
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

.p-top-send.is-inview {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

/* --------------------------------
p-top-target
----------------------------------- */
.p-top-target {
  background-image: url(../images/top/target.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.p-top-target__inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}
@media only screen and (max-width: 767px) {
  .p-top-target__inner {
    padding: 0 20px;
  }
}

.p-top-target__head {
  text-align: center;
}

.p-top-target__body {
  margin-top: 80px;
  margin-top: 5rem;
}
@media only screen and (max-width: 767px) {
  .p-top-target__body {
    margin-top: 2.5rem;
  }
}

.p-top-target__items {
  background-color: #fff;
  max-width: 840px;
  max-width: 52.5rem;
  margin-inline: auto;
  padding-top: 35px;
  padding-top: 2.1875rem;
  padding-bottom: 35px;
  padding-bottom: 2.1875rem;
}
@media only screen and (max-width: 767px) {
  .p-top-target__items {
    padding-top: 1.5625rem;
    padding-bottom: 1.5625rem;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

.p-top-target__item {
  width: 23.05%;
  text-align: center;
  padding: 32px 17px;
  padding: 2rem 1.0625rem;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-top-target__item {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    padding: 1.5rem 1rem;
  }
}
.p-top-target__item::before {
  position: absolute;
  content: attr(data-text);
  top: -40px;
  top: -2.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 60px;
  width: 3.75rem;
  height: 60px;
  height: 3.75rem;
  background-color: #0a4774;
  border-radius: 50%;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 24px;
  font-size: 1.5rem;
  color: #fff;
  display: grid;
  place-content: center;
}
@media only screen and (max-width: 767px) {
  .p-top-target__item::before {
    top: -1.75rem;
    font-size: 1.125rem;
    width: 2.875rem;
    height: 2.875rem;
  }
}

.p-top-target__text {
  font-size: max(16px, 12px);
  font-size: max(1rem, 12px);
  line-height: 2;
}
@media only screen and (max-width: 767px) {
  .p-top-target__text {
    font-size: 0.9375rem;
  }
}
.p-top-target__text span {
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(93%, #fff), color-stop(93%, #f4c21e));
  background: linear-gradient(to bottom, #fff 93%, #f4c21e 93%);
}
@media only screen and (max-width: 767px) {
  .p-top-target__text span {
    padding-bottom: 0.1875rem;
  }
}

.p-top-target__note {
  margin-top: 6px;
  margin-top: 0.375rem;
  display: block;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  white-space: nowrap;
  line-height: 1.4;
}
@media only screen and (max-width: 1280px) {
  .p-top-target__note {
    white-space: normal;
  }
}

.p-top-target__detail {
  letter-spacing: 0.075em;
  line-height: 2;
  font-size: max(16px, 13px);
  font-size: max(1rem, 13px);
  max-width: 520px;
  max-width: 32.5rem;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .p-top-target__detail {
    font-size: 0.875rem;
  }
}

.p-top-target__detail li {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.p-top-target__detail li span {
  text-decoration: underline;
  -webkit-text-decoration-color: #f4c21e;
          text-decoration-color: #f4c21e;
  text-decoration-thickness: 2px;
  text-decoration-thickness: 0.125rem;
  text-underline-offset: 4px;
  text-underline-offset: 0.25rem;
}

.p-top-target__items {
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

.p-top-target__items.is-inview {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

/* --------------------------------
p-top
----------------------------------- */
.p-top {
  margin-top: 120px;
  margin-top: 7.5rem;
  padding-bottom: 98px;
  padding-bottom: 6.125rem;
}
@media (max-width: 1100px) {
  .p-top {
    margin-top: 3.75rem;
    padding-bottom: 3.125rem;
  }
}

/* --------------------------------
utility
----------------------------------- */
@media only screen and (max-width: 767px) {
  .u-desktop {
    display: none;
  }
}

@media only screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

.u-ib {
  display: inline-block;
}

.u-orange {
  color: #f4c21e;
}

.u-justify {
  text-align: justify;
}

@media only screen and (min-width: 540px) {
  .u-540 {
    display: none;
  }
}

@media (max-width: 1100px) {
  .u-1100-hidden {
    display: none;
  }
}

@media (min-width: 1101px) {
  .u-1101-hidden {
    display: none;
  }
}

.u-hidden {
  display: none;
  visibility: hidden;
}
/*# sourceMappingURL=styles.css.map */
