@charset "UTF-8";
/* リキッドレイアウト対応 */
@media (max-width: 1250px) {
  html {
    font-size: 1.28vw;
  }
}
@media (min-width: 1250px) {
  html {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

/* ホバー */
a, input[type=submit] {
  text-decoration: none;
  color: inherit;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover, input[type=submit]:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

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

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

html.is-fixed {
  overflow: hidden;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  color: #000;
  background: #FFF9E6;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #CCCCCC calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #CCCCCC calc(100% - 1px));
  background-size: 32px 32px;
  background-repeat: repeat;
  background-position: center center;
}

.bg-yellow {
  background: #FCC81D;
}

.bg-light-yellow {
  background: #FFF4D0;
}

.bg-blue {
  background: #2D65A7;
}

.bg-light-blue {
  background: #D6E9FF;
}

.bg-green {
  background: #6ACA9C;
}

.bg-light-green {
  background: #EDFFF6;
}

.bg-orange {
  background: #FE9E43;
}

.bg-black {
  background: #000;
}

.bg-light-black {
  background: #ededed;
}

.bg-red {
  background: #F14F4C;
}

.bg-light-red {
  background: #FFD7D6;
}

.bg-pink {
  background: #FEA3D5;
}

.bg-light-pink {
  background: #FFE3FE;
}

.bg-purple {
  background: #5057AB;
}

.bg-light-purple {
  background: #D0D2F2;
}

.bg-gray {
  background: #CCCCCC;
}

*,
*::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 */
html {
  scroll-behavior: smooth;
}

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

/* 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 {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* 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;
}

.article {
  background: #fff;
  border: 2px solid #000;
  margin-top: 54px;
  margin-top: 3.375rem;
}
@media screen and (max-width: 767px) {
  .article {
    margin-top: 1.75rem;
  }
}

.article__title-wrap {
  border-bottom: 2px solid #000;
  padding: 25px 20px 20px 20px;
  padding: 1.5625rem 1.25rem 1.25rem 1.25rem;
}

.article__date {
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .article__date {
    font-size: 0.875rem;
  }
}

.article__title {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  padding-top: 10px;
  padding-top: 0.625rem;
  letter-spacing: 0.06em;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .article__title {
    font-size: 1.25rem;
  }
}

.article__tags {
  padding-top: 20px;
  padding-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .article__tags {
    padding-top: 0.875rem;
  }
}

.article__tag {
  margin-left: 8px;
  margin-left: 0.5rem;
}

.article__body {
  padding: 20px 20px 60px 20px;
  padding: 1.25rem 1.25rem 3.75rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .article__body {
    padding: 2rem 1.25rem;
  }
}

.article__content p {
  font-size: 16px;
  font-size: 1rem;
  padding-top: 32px;
  padding-top: 2rem;
}
@media screen and (max-width: 767px) {
  .article__content p {
    font-size: 0.875rem;
    padding-top: 1.25rem;
  }
}

.article__content h2 {
  background: #FFF4D0;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 12px;
  padding: 0.75rem;
  border: 2px solid #000;
  margin-top: 32px;
  margin-top: 2rem;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .article__content h2 {
    font-size: 1.25rem;
    width: calc(100% + 2.5rem);
    margin-left: -1.25rem;
    border-left: none;
    border-right: none;
    padding: 1.25rem;
  }
}

.article__content h3 {
  color: #FE9E43;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  margin-top: 32px;
  margin-top: 2rem;
  border-left: 2px solid #FE9E43;
  padding-left: 8px;
  padding-left: 0.5rem;
}
@media screen and (max-width: 767px) {
  .article__content h3 {
    font-size: 1.125rem;
    margin-top: 1.5625rem;
  }
}

.article__content h4 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .article__content h4 {
    font-size: 1.125rem;
    margin-top: 1.5625rem;
  }
}

.article__content a {
  text-decoration: underline;
  cursor: pointer;
}

.article__content a:after {
  content: "";
  display: inline-block;
  width: 18px;
  width: 1.125rem;
  height: 18px;
  height: 1.125rem;
  background-image: url(../images/common/link-icon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: scroll;
  background-size: cover;
  vertical-align: bottom;
  margin-left: 5px;
  margin-left: 0.3125rem;
}

.article__content blockquote {
  background: #f2f2f2;
  margin-top: 32px;
  margin-top: 2rem;
  padding: 20px 20px 20px 84px;
  padding: 1.25rem 1.25rem 1.25rem 5.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .article__content blockquote {
    padding: 0.5625rem 1.0625rem 1.1875rem 3.5625rem;
    margin-top: 1.5625rem;
  }
}

.article__content blockquote:before {
  content: "";
  display: inline-block;
  width: 44px;
  width: 2.75rem;
  height: 30px;
  height: 1.875rem;
  background-image: url(../images/common/quote-mark.png);
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: scroll;
  background-size: cover;
  position: absolute;
  top: 20px;
  top: 1.25rem;
  left: 20px;
  left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .article__content blockquote:before {
    width: 2.4375rem;
    height: 1.625rem;
    top: 0.5625rem;
    left: 0.5625rem;
  }
}

.article__subtitle {
  background: #FFF4D0;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 12px;
  padding: 0.75rem;
  border: 2px solid #000;
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .article__subtitle {
    font-size: 1.25rem;
    width: calc(100% + 2.5rem);
    margin-left: -1.25rem;
    border-left: none;
    border-right: none;
    padding: 1.25rem;
  }
}

.article__subtitle--white {
  background: #fff;
}

#ez-toc-container {
  padding: 20px !important;
  padding: 1.25rem !important;
  box-shadow:none !important;
}

.ez-toc-title-container {
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}

.ez-toc-link:after {
  display: none !important;
}

#ez-toc-container ul, #ez-toc-container li, #ez-toc-container ul li, div.ez-toc-widget-container, div.ez-toc-widget-container li {
  color: #2D65A7;
}

.ez-toc-heading-level-3, .ez-toc-heading-level-4, .ez-toc-heading-level-5, .ez-toc-heading-level-6 {
  list-style: none !important;
  text-decoration: underline;
  text-indent: -0.5em;
}

#ez-toc-container ul, #ez-toc-container li, #ez-toc-container ul li, div.ez-toc-widget-container, div.ez-toc-widget-container li {
  overflow: visible !important;
}

#ez-toc-container {
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  #ez-toc-container {
    margin-top: 1.25rem;
  }
}

.breadcrumbs {
  width: 100%;
  background: #fff;
  border: 2px solid #000;
  padding: 20px;
  padding: 1.25rem;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .breadcrumbs {
    margin-top: 2.5rem;
  }
}

.breadcrumbs a {
  text-decoration: underline;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .breadcrumbs a {
    font-size: 0.75rem;
  }
}

.breadcrumbs span {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .breadcrumbs span {
    font-size: 0.75rem;
  }
}

.btn {
  display: block;
  background: #fff;
  height: 48px;
  height: 3rem;
  border: 2px solid #000;
  border-radius: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0px 2px #000;
          box-shadow: 0px 2px #000;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn:hover {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn__img {
  width: 60px;
  width: 3.75rem;
  border-radius: 1.5rem 0 0 1.5rem;
  position: relative;
  border-right: 2px solid #000;
}

.btn__img img {
  width: 24px;
  width: 1.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.btn__text {
  padding: 0 20px;
  padding: 0 1.25rem;
  min-width: 176px;
  min-width: 11rem;
  text-align: center;
  height: 100%;
  line-height: 44px;
  line-height: 2.75rem;
}

.btn__text span {
  font-size: 16px;
  font-size: 1rem;
  line-height: 45px;
  line-height: 2.8125rem;
  font-weight: 500;
}

.card {
  padding: 20px;
  padding: 1.25rem;
  border: 2px solid #000;
  -webkit-box-shadow: 0px 2px #000;
          box-shadow: 0px 2px #000;
  border-radius: 0.25rem;
  width: calc(33.33333% - 1rem);
  margin-right: 24px;
  margin-right: 1.5rem;
  background: #fff;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .card {
    width: 100%;
    margin-right: 0;
    padding: 0;
  }
}

.card:nth-last-child(-n+3) {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .card:nth-last-child(-n+3) {
    margin-bottom: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .card:last-child {
    margin-bottom: 0;
  }
}

.card.sidebar-box__card {
  width: 100%;
  margin-right: 0;
  padding: 0;
}

.card:nth-child(3n) {
  margin-right: 0;
}

.card.sidebar-box__card {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}

@media screen and (max-width: 767px) {
  .card:last-child {
    margin-bottom: 0;
  }
}

.card.sidebar-box__card:last-child {
  margin-bottom: 0;
}

.card:hover {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.card:hover .card__img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.card__date {
  font-size: 12px;
  font-size: 0.75rem;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (max-width: 767px) {
  .card__date {
    padding-top: 0.625rem;
    padding-left: 0.625rem;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.card.sidebar-box__card .card__date {
  padding-top: 10px;
  padding-top: 0.625rem;
  padding-left: 10px;
  padding-left: 0.625rem;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.card__img {
  margin-top: 8px;
  margin-top: 0.5rem;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .card__img {
    margin-top: 0;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.card__img img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.card.sidebar-box__card .card__img {
  margin-top: 0;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.card__title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  padding-top: 10px;
  padding-top: 0.625rem;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  word-wrap: break-word;
}
@media screen and (max-width: 767px) {
  .card__title {
    font-size: 0.875rem;
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    padding-bottom: 0.625rem;
  }
}

.card.sidebar-box__card .card__title {
  font-size: 14px;
  font-size: 0.875rem;
  padding-left: 10px;
  padding-left: 0.625rem;
  padding-right: 10px;
  padding-right: 0.625rem;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
}

.card__bottom {
  margin-top: auto;
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

.card__tags {
  padding-top: 23px;
  padding-top: 1.4375rem;
  gap: 4px;
  gap: 0.25rem;
}
@media screen and (max-width: 767px) {
  .card__tags {
    padding-left: 0.625rem;
    padding-right: 0.875rem;
    padding-bottom: 0.75rem;
    padding-top: 0;
  }
}

.card.sidebar-box__card .card__tags {
  padding-left: 10px;
  padding-left: 0.625rem;
  padding-right: 10px;
  padding-right: 0.625rem;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
  padding-top: 0;
}

.cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.contact-bottom {
  background: #2D65A7;
  border-radius: 0.625rem;
  padding: 20px 20px 33px 20px;
  padding: 1.25rem 1.25rem 2.0625rem 1.25rem;
  border: 2px solid #000;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.contact-bottom__title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 70px;
  height: 4.375rem;
  width: 100%;
  position: relative;
  z-index: 10;
}

.contact-bottom__icon {
  width: 70px;
  width: 4.375rem;
  height: 70px;
  height: 4.375rem;
  background: #fff;
  border: 2px solid #000;
  border-radius: 2.1875rem 0 0 2.1875rem;
  position: relative;
}

.contact-bottom__icon img {
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.contact-bottom__title {
  display: block;
  width: calc(100% - 4.375rem);
  background: #fff;
  border-right: 2px solid #000;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  border-radius: 0 2.1875rem 2.1875rem 0;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 18px;
  padding-left: 1.125rem;
}
@media screen and (max-width: 767px) {
  .contact-bottom__title {
    width: 100%;
    border-radius: 2.75rem;
    font-size: 1.0625rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 5.4375rem;
    padding-left: 0;
  }
}

.contact-bottom__body {
  background: #fff;
  width: calc(100% - 2.5rem);
  margin-right: auto;
  margin-left: auto;
  border: 2px solid #000;
  padding: 30px 20px 40px;
  padding: 1.875rem 1.25rem 2.5rem;
  position: relative;
  top: -10px;
  top: -0.625rem;
}
@media screen and (max-width: 767px) {
  .contact-bottom__body {
    width: 100%;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .contact-bottom__body {
    padding: 3.125rem 1.125rem 1.875rem;
  }
}

.contact-bottom__text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3125;
}
@media screen and (max-width: 767px) {
  .contact-bottom__text {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

.contact-bottom__btn {
  margin-top: 28px;
  margin-top: 1.75rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .contact-bottom__btn {
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 390px) {
  .contact-bottom__btn {
    margin-right: calc(50% - 50vw - 2.5rem);
    margin-left: calc(50% - 50vw + 2.5rem);
    width: calc(100vw - 5rem);
  }
}

.content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.content__main {
  max-width: 862px;
  max-width: 53.875rem;
  width: 100%;
}

.content__sidebar {
  max-width: 298px;
  max-width: 18.625rem;
  width: 100%;
  margin-left: 40px;
  margin-left: 2.5rem;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .content__sidebar {
    max-width: none;
    max-width: initial;
    margin-left: 0;
    margin-top: 2.5rem;
  }
}

.error {
  padding: 118px 80px;
  padding: 7.375rem 5rem;
}
@media screen and (max-width: 767px) {
  .error {
    padding: 5.375rem 0;
  }
}

.error__img {
  width: 266px;
  width: 16.625rem;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .error__img {
    width: 13.125rem;
  }
}

.error__notfound {
  font-size: 60px;
  font-size: 3.75rem;
  font-weight: 700;
  color: #FE9E43;
  text-align: center;
  margin-top: -30px;
  margin-top: -1.875rem;
}
@media screen and (max-width: 767px) {
  .error__notfound {
    font-size: 2.5rem;
  }
}

.error__text {
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
  padding-top: 25px;
  padding-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .error__text {
    font-size: 0.875rem;
  }
}

.error__text--large {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .error__text--large {
    font-size: 1.125rem;
  }
}

.footer-body {
  background: #F7F7F7;
  padding: 52px 20px 78px 20px;
  padding: 3.25rem 1.25rem 4.875rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .footer-body {
    padding: 2.5625rem 0 2.125rem 0;
  }
}

.footer-body__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .footer-body__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

@media screen and (max-width: 767px) {
  .footer-body__info {
    margin-top: 2.1875rem;
  }
}

.footer-body__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 22px;
  padding-top: 1.375rem;
}

.footer-body__sns img {
  width: 38px;
  width: 2.375rem;
  height: 38px;
  height: 2.375rem;
}

.footer-body__sns a:not(:first-child) {
  margin-left: 12px;
  margin-left: 0.75rem;
}

.footer-body__btn {
  margin-top: 20px;
  margin-top: 1.25rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.footer-body__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
  margin-top: 1.875rem;
}

.footer-body__tel-img img {
  width: 29px;
  width: 1.8125rem;
  height: 37px;
  height: 2.3125rem;
}

.footer-body__tel-text {
  margin-left: 12px;
  margin-left: 0.75rem;
}

.footer-body__tel-text a {
  color: #2D65A7;
  font-weight: 700;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1;
}

.footer-body__tel-text p {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
}

.footer-body__nav {
  margin-left: 80px;
  margin-left: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .footer-body__nav {
    margin-left: 0;
  }
}

.footer-body__lists {
  width: 50%;
}

.footer-body__link {
  line-height: 3;
  display: block;
  width: 100%;
  margin-left: 120px;
  margin-left: 7.5rem;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .footer-body__link {
    margin-left: 0;
  }
}

.footer {
  width: 100%;
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .footer {
    margin-top: 2rem;
  }
}

.footer__title {
  width: 100%;
  background: #fff;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  padding: 20px 0;
  padding: 1.25rem 0;
}
@media screen and (max-width: 767px) {
  .footer__title {
    padding: 2rem 0;
  }
}

.footer__logo {
  width: 308px;
  width: 19.25rem;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 14.375rem;
  }
}

.footer__text {
  font-size: 12px;
  font-size: 0.75rem;
  padding-top: 10px;
  padding-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .footer__text {
    font-size: 0.625rem;
    padding-top: 0.3125rem;
  }
}

.footer__bottom {
  background: #FE9E43;
  width: 100%;
  height: 60px;
  height: 3.75rem;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  position: relative;
}

.footer__bottom p {
  font-size: 14px;
  font-size: 0.875rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.form__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 32px;
  margin-top: 2rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .form__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    margin-top: 1.25rem;
  }
}

.form__item:first-child {
  margin-top: 0;
}

.form__input, .form__textarea {
  width: calc(100% - 13.75rem);
  padding: 20px 20px;
  padding: 1.25rem 1.25rem;
  background: #F7F7F7;
  border: 2px solid #000;
  margin-left: 40px;
  margin-left: 2.5rem;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .form__input, .form__textarea {
    margin-left: 0;
    width: 100%;
    margin-top: 0.4375rem;
    padding: 0.9375rem;
  }
}

.form__textarea {
  height: 120px;
  height: 7.5rem;
}

.form__input:focus, .form__textarea:focus {
  border-color: #FCC81D;
}

.form__input::-webkit-input-placeholder, .form__textarea::-webkit-input-placeholder {
  color: #CCCCCC;
}

.form__input::-moz-placeholder, .form__textarea::-moz-placeholder {
  color: #CCCCCC;
}

.form__input::-ms-input-placeholder, .form__textarea::-ms-input-placeholder {
  color: #CCCCCC;
}

.form__input::placeholder, .form__textarea::placeholder {
  color: #CCCCCC;
}

.form__name {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  width: 180px;
  width: 11.25rem;
}
@media screen and (max-width: 767px) {
  .form__name {
    width: 100%;
  }
}

.form__name--s {
  font-size: 12px;
  font-size: 0.75rem;
}

.required {
  font-size: 14px;
  font-size: 0.875rem;
  color: #F14F4C;
  padding-right: 6px;
  padding-right: 0.375rem;
}

.form__btns {
  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;
}
@media screen and (max-width: 767px) {
  .form__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.form__btn {
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 0;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.form__btn .btn__img {
  width: 60px;
  width: 3.75rem;
  height: 48px;
  height: 3rem;
  border-radius: 1.3rem 0 0 1.3rem;
}

.btn__img:after {
  content: "";
  display: inline-block;
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: scroll;
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.form__btn--confirm .btn__img:after, .form__btn--send .btn__img:after {
  background-image: url(../images/common/arrow-icon.png);
}

.form__btn--back .btn__img:after {
  background-image: url(../images/common/arrow-icon--back.png);
}

.form__btn--back {
  margin-right: 28px;
  margin-right: 1.75rem;
}
@media screen and (max-width: 767px) {
  .form__btn--back {
    margin-top: 0.75rem;
    margin-right: auto;
  }
}

.mw_wp_form .error {
  position: absolute;
  bottom: -142px;
  bottom: -8.875rem;
  left: 142px;
  left: 8.875rem;
  color: #F14F4C !important;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .mw_wp_form .error {
    position: static;
    padding: 0.625rem 0;
  }
}

.mw_wp_form .error:before {
  content: "※";
  font-size: 14px;
  font-size: 0.875rem;
  margin-right: 5px;
  margin-right: 0.3125rem;
}

.form__input.error-item, .form__textarea.error-item {
  border-color: #F14F4C;
}

.form__input.error-item::-webkit-input-placeholder, .form__textarea.error-item::-webkit-input-placeholder {
  color: #F14F4C;
}

.form__input.error-item::-moz-placeholder, .form__textarea.error-item::-moz-placeholder {
  color: #F14F4C;
}

.form__input.error-item::-ms-input-placeholder, .form__textarea.error-item::-ms-input-placeholder {
  color: #F14F4C;
}

.form__input.error-item::placeholder, .form__textarea.error-item::placeholder {
  color: #F14F4C;
}

#mw_wp_form_mw-wp-form-125 .form__item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

#mw_wp_form_mw-wp-form-125 .form__name {
  width: 100%;
}

#mw_wp_form_mw-wp-form-125 .form__input {
  margin-left: 0;
  max-width: 370px;
  max-width: 23.125rem;
  width: 100%;
}

#mw_wp_form_mw-wp-form-125 .form__btns {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

#mw_wp_form_mw-wp-form-125 .form__btn {
  margin-left: 0;
}

#mw_wp_form_mw-wp-form-125 .form__btn--back {
  margin-right: 0;
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.hamburger {
  width: 64px;
  width: 4rem;
  height: 64px;
  height: 4rem;
  border-left: 2px solid #000;
  display: none;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .hamburger {
    display: block;
  }
}

.hamburger span {
  width: 28px;
  width: 1.75rem;
  height: 2px;
  background: #000;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.hamburger span:first-child {
  top: 22px;
  top: 1.375rem;
}

.hamburger span:nth-child(2) {
  top: 31px;
  top: 1.9375rem;
}

.hamburger span:last-child {
  bottom: 22px;
  bottom: 1.375rem;
}

.hamburger.active span {
  left: 30%;
}

.hamburger.active span:first-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 31px;
  top: 1.9375rem;
}

.hamburger.active span:nth-child(2) {
  display: none;
}

.hamburger.active span:last-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  bottom: 31px;
  bottom: 1.9375rem;
}

.header {
  width: 100%;
  background: #F7F7F7;
}
@media screen and (max-width: 767px) {
  .header {
    border: 2px solid #000;
  }
}

.header__inner {
  max-width: 1250px;
  max-width: 78.125rem;
  width: 100%;
  padding-left: 25px;
  padding-left: 1.5625rem;
  padding-right: 25px;
  padding-right: 1.5625rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding-left: 1.25rem;
    padding-right: 0;
  }
}

.header__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 0;
  padding: 1.25rem 0;
}
@media screen and (max-width: 767px) {
  .header__flex {
    padding: 0;
  }
}

.header__logo img {
  width: 307px;
  width: 19.1875rem;
}
@media screen and (max-width: 767px) {
  .header__logo img {
    width: 10.5rem;
  }
}

.header__text {
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  padding-top: 10px;
  padding-top: 0.625rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .header__text {
    display: none;
  }
}

.header__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .header__btns {
    display: none;
  }
}

.header__btn:first-child {
  margin-right: 20px;
  margin-right: 1.25rem;
}

.header__nav {
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  height: 53px;
  height: 3.3125rem;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}

.header__lists {
  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;
}

.header__link {
  display: block;
  padding: 0 40px;
  padding: 0 2.5rem;
  line-height: 53px;
  line-height: 3.3125rem;
  font-size: 20px;
  font-size: 1.25rem;
  border-left: 2px solid #000;
  font-weight: 500;
}

.header__list:last-child .header__link {
  border-right: 2px solid #000;
}

.header__link:hover {
  background: #000;
  color: #fff;
}

.inner {
  max-width: 1300px;
  width: 100%;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.main-box {
  border: 2px solid #000;
  width: 100%;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .main-box {
    margin-top: 1.75rem;
  }
}

.main-box__title {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  background: #F7F7F7;
  padding: 20px;
  padding: 1.25rem;
  border-bottom: 2px solid #000;
}
@media screen and (max-width: 767px) {
  .main-box__title {
    font-size: 1.25rem;
  }
}

.main-box__body {
  background: #fff;
  padding: 40px 20px;
  padding: 2.5rem 1.25rem;
}

.main-box__subtitle {
  background: #FFF4D0;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 12px;
  padding: 0.75rem;
  border: 2px solid #000;
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .main-box__subtitle {
    font-size: 1.25rem;
    width: calc(100% + 2.5rem);
    margin-left: -1.25rem;
    border-left: none;
    border-right: none;
    padding: 1.25rem;
  }
}

.page {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .page {
    margin-top: 1rem;
  }
}

.page__title {
  padding: 0 20px;
  padding: 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .page__title {
    padding: 0;
  }
}

.page__title span {
  font-size: 27px;
  font-size: 1.6875rem;
  letter-spacing: 0.06em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .page__title span {
    font-size: 0.875rem;
  }
}

.page__title img {
  height: 70px;
  height: 4.375rem;
  width: auto;
}
@media screen and (max-width: 767px) {
  .page__title img {
    max-height: 4.375rem;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    width: 100%;
    height: auto;
  }
}

.page__body {
  background: #fff;
  border: 2px solid #000;
  padding: 60px 95px;
  padding: 3.75rem 5.9375rem;
  margin-top: 45px;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .page__body {
    padding: 1.25rem 1.25rem 2.5rem 1.25rem;
    margin-top: 1.4375rem;
  }
}

.page__text {
  font-size: 16px;
  font-size: 1rem;
  padding-top: 30px;
  padding-top: 1.875rem;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .page__text {
    font-size: 0.875rem;
    padding-top: 1.25rem;
  }
}

.page__text--large {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .page__text--large {
    font-size: 1.125rem;
  }
}

.page__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 30px;
  padding-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .page__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 0;
  }
}

.page__flex .page__text, .page__flex .page__img {
  width: calc(50% - 1.25rem);
}
@media screen and (max-width: 767px) {
  .page__flex .page__text, .page__flex .page__img {
    width: 100%;
  }
}

.page__flex > .page__text, .page__flex > .page__img {
  margin-right: 20px;
  margin-right: 1.25rem;
}
@media screen and (max-width: 767px) {
  .page__flex > .page__text, .page__flex > .page__img {
    width: 100%;
  }
}

.page__flex > .page__text + .page__img, .page__flex > .page__img + .page__text {
  margin-left: 20px;
  margin-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .page__flex > .page__text + .page__img, .page__flex > .page__img + .page__text {
    margin-left: 0;
  }
}

.page__img {
  padding-top: 30px;
  padding-top: 1.875rem;
}

.page__text:first-child, .page__img:first-child {
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .page__text:first-child, .page__img:first-child {
    padding-top: 1.875rem;
  }
}

.page__flex .page__text, .page__flex .page__img {
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .page__flex .page__text, .page__flex .page__img {
    padding-top: 1.875rem;
  }
}

.page__comment {
  font-size: 16px;
  font-size: 1rem;
  padding-top: 10px;
  padding-top: 0.625rem;
  padding-left: 20px;
  padding-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .page__comment {
    font-size: 0.75rem;
    padding-left: 0;
  }
}

.page__btn {
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-left: 20px;
  margin-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .page__btn {
    margin-left: 0;
  }
}

.page__table th, td {
  text-align: left;
  padding: 10px;
  padding: 0.625rem;
}
@media screen and (max-width: 767px) {
  .page__table th, td {
    display: block;
    width: 100%;
    padding: 0.3125rem;
  }
}

.page__table th {
  width: 160px;
  width: 10rem;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .page__table th {
    width: 100%;
  }
}

.page__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .page__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.page__btns .sidebar-btn {
  width: 298px;
  width: 18.625rem;
}
@media screen and (max-width: 767px) {
  .page__btns .sidebar-btn {
    width: 100%;
  }
}

.page__btns .sidebar-btn + .sidebar-btn {
  margin-top: 0;
  margin-left: 20px;
  margin-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .page__btns .sidebar-btn + .sidebar-btn {
    margin-left: 0;
    margin-top: 0.9375rem;
  }
}

.page__btns.pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .page__btns.pc {
    display: none;
  }
}

.page__btns.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .page__btns.sp {
    display: block;
  }
}

.sidebar-box {
  width: 100%;
  border: 2px solid #000;
}

.sidebar-box--top {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.sidebar-box + .sidebar-box {
  border-top: none;
}

.sidebar-box + .sidebar-box.sidebar-box--top {
  border-top: 2px solid #000;
}

.sidebar-box__title {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 22px 0;
  padding: 1.375rem 0;
  background: #F7F7F7;
  border-bottom: 2px solid #000;
}

.sidebar-box__body {
  padding: 20px;
  padding: 1.25rem;
  background: #fff;
}

.sidebar-box__banner:not(:first-child) {
  display: block;
  margin-top: 12px;
  margin-top: 0.75rem;
}

.sidebar-box__banner img {
  -webkit-box-shadow: 0 2px #000;
          box-shadow: 0 2px #000;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sidebar-box__banner img:hover {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sidebar-box__tags {
  gap: 8px;
  gap: 0.5rem;
}

.sidebar-box__names {
  background: #fff;
}

.sidebar-box__name {
  font-size: 16px;
  font-size: 1rem;
  line-height: 3;
  padding: 0 20px;
  padding: 0 1.25rem;
  display: block;
}

.sidebar-box__name:not(:last-child) {
  border-bottom: 2px solid #000;
}

.sidebar-box__name:before {
  content: "・";
}

.sidebar-btn {
  width: 100%;
  height: 81px;
  height: 5.0625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0 2px #000;
          box-shadow: 0 2px #000;
}

.sidebar-btn + .sidebar-btn {
  margin-top: 12px;
  margin-top: 0.75rem;
}

.sidebar-btn:hover {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.sidebar-btn__img {
  width: 64px;
  width: 4rem;
  height: 81px;
  height: 5.0625rem;
  border: 2px solid #000;
  position: relative;
}

.sidebar-btn__img img {
  width: 24px;
  width: 1.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.sidebar-btn__text {
  width: calc(100% - 1.5rem);
  border-right: 2px solid #000;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  font-weight: 700;
  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;
  padding-left: 24px;
  padding-left: 1.5rem;
  background: #fff;
}

.sidebar-btn__text p {
  font-size: 16px;
  font-size: 1rem;
}

.sidebar-btn__text span {
  font-size: 18px;
  font-size: 1.125rem;
  color: #2D65A7;
}

.sidebar-popular__img {
  position: relative;
}

.sidebar-popular__img:after {
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: scroll;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 12px;
  right: 0.75rem;
  z-index: 10;
  width: 33px;
  width: 2.0625rem;
  height: 43px;
  height: 2.6875rem;
}

.sidebar-popular:first-child .sidebar-popular__img:after {
  background-image: url(../images/common/no1-tag.png);
}

.sidebar-popular:nth-child(2) .sidebar-popular__img:after {
  background-image: url(../images/common/no2-tag.png);
}

.sidebar-popular:last-child .sidebar-popular__img:after {
  background-image: url(../images/common/no3-tag.png);
}

.sns-share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .sns-share {
    margin-top: 1.25rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.sns-share__btn {
  width: 25%;
}
@media screen and (max-width: 767px) {
  .sns-share__btn {
    width: calc(50% - 0.21875rem);
  }
}

@media screen and (max-width: 767px) {
  .sns-share__btn:nth-child(odd) {
    margin-right: 0.4375rem;
  }
}

@media screen and (max-width: 767px) {
  .sns-share__btn:nth-child(n+3) {
    margin-top: 0.4375rem;
  }
}

a.sns-share__btn:after {
  display: none;
}

.sp-nav {
  width: 100%;
  height: 464px;
  height: 29rem;
  text-align: center;
  position: fixed;
  top: 66px;
  top: 4.125rem;
  display: none;
  overflow: scroll;
  z-index: 100;
  background: #fff;
}

.sp-nav__link {
  display: block;
  width: 100%;
  height: 58px;
  height: 3.625rem;
  line-height: 58px;
  line-height: 3.625rem;
  border-bottom: 2px solid #000;
  border-left: 2px solid #000;
  border-right: 2px solid #000;
  cursor: pointer;
  font-size: 16px;
  font-size: 1rem;
}

.sp-nav__list:first-child .sp-nav__link {
  border-top: 2px solid #000;
}

.sp-nav__link:hover {
  background: #000;
  color: #fff;
}

.sp-nav__link span:before {
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: scroll;
  background-size: cover;
  margin-right: 10px;
  margin-right: 0.625rem;
  vertical-align: text-bottom;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sp-nav__link span.sp-nav__about:before {
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  background-image: url(../images/common/q-icon.png);
}

.sp-nav__link:hover span.sp-nav__about:before {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-image: url(../images/common/q-icon--white.png);
}

.sp-nav__link span.sp-nav__contact:before {
  width: 24px;
  width: 1.5rem;
  height: 18px;
  height: 1.125rem;
  background-image: url(../images/common/mail-icon--black.png);
}

.sp-nav__link:hover span.sp-nav__contact:before {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-image: url(../images/common/mail-icon.png);
}

.swiper, .swiper--sp {
  overflow: hidden;
}

.swiper-slide {
  padding-bottom: 2px;
  padding-bottom: 0.125rem;
}
@media screen and (max-width: 767px) {
  .swiper-slide {
    padding-bottom: 0;
  }
}

.swiper-button-next {
  right: 32px;
  right: 2rem;
}

.swiper-button-prev {
  left: -37px;
  left: -2.3125rem;
}
@media screen and (max-width: 767px) {
  .swiper-button-prev {
    left: -0.8125rem;
  }
}

.swiper-button-prev:after, .swiper-button-next:after {
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: scroll;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  border-radius: 2.125rem;
  -webkit-box-shadow: 0 2px #000;
          box-shadow: 0 2px #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 68px;
  width: 4.25rem;
  height: 68px;
  height: 4.25rem;
}
@media screen and (max-width: 767px) {
  .swiper-button-prev:after, .swiper-button-next:after {
    width: 3rem;
    height: 3rem;
  }
}

.swiper-button-prev:after {
  background-image: url(../images/top/swiper-arrow-prev.png);
}

.swiper-button-next:after {
  background-image: url(../images/top/swiper-arrow-next.png);
}

.swiper-button-prev:hover:after, .swiper-button-next:hover:after {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 40px;
  bottom: 2.5rem;
}

.tag-list {
  width: 100%;
  background: #fff;
  border: 2px solid #000;
  padding: 40px 20px;
  padding: 2.5rem 1.25rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .tag-list {
    padding: 1.25rem;
  }
}

.tag-list__tag {
  margin-left: 8px;
  margin-left: 0.5rem;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .tag-list__tag {
    margin-right: 0.25rem;
    margin-bottom: 0.25rem;
  }
}

.tag {
  color: #2D65A7;
  border: 1px solid #2D65A7;
  padding: 2px;
  padding: 0.125rem;
  white-space: nowrap;
  font-size: 14px;
  font-size: 0.875rem;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.tag:hover {
  color: #fff;
  background: #2D65A7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.thumbnail-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.thumbnail-img img {
  width: 100%;
  height: auto;
}

.wp-pagenavi {
  width: 100%;
  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;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.wp-pagenavi .page, .wp-pagenavi .current {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 10px 13px;
  padding: 0.625rem 0.8125rem;
  color: #000;
  border-radius: 0.25rem;
  border: 2px solid #000;
  margin: 0 5px;
  margin: 0 0.3125rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: inline-block;
  -webkit-box-shadow: 0 2px #000;
          box-shadow: 0 2px #000;
  transition: 0.3s;
}
.wp-pagenavi .page:hover, .wp-pagenavi .current:hover {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.wp-pagenavi .current {
  background: #FFF9E6;
}

.author-profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 20px;
  padding: 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .author-profile {
    -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;
  }
}

.author-profile__img {
  position: relative;
  width: 140px;
  width: 8.75rem;
  height: 140px;
  height: 8.75rem;
}
@media screen and (max-width: 767px) {
  .author-profile__img {
    width: 11.25rem;
    height: 11.25rem;
  }
}

.author-profile__img:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.author-profile__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.author-profile__text {
  margin-left: 20px;
  margin-left: 1.25rem;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.06em;
  line-height: 1.5;
  width: calc(100% - 10rem);
}
@media screen and (max-width: 767px) {
  .author-profile__text {
    font-size: 0.875rem;
    margin-top: 0.625rem;
    margin-left: 0;
  }
}

.article-author {
  padding: 25px 20px 20px 20px;
  padding: 1.5625rem 1.25rem 1.25rem 1.25rem;
  border: 2px solid #000;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .article-author {
    margin-top: 1.25rem;
  }
}

.article-author__title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  color: #000;
}

.article-author__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 17px;
  padding-top: 1.0625rem;
  width: 100%;
}

.article-author__img {
  position: relative;
  width: 140px;
  width: 8.75rem;
  height: 140px;
  height: 8.75rem;
}
@media screen and (max-width: 767px) {
  .article-author__img {
    width: 5rem;
    height: 5rem;
  }
}

.article-author__img:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.article-author__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.article-author__text {
  margin-left: 20px;
  margin-left: 1.25rem;
  width: calc(100% - 10rem);
}
@media screen and (max-width: 767px) {
  .article-author__text {
    width: calc(100% - 6.25rem);
  }
}

.article-author__text h4 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .article-author__text h4 {
    font-size: 0.875rem;
  }
}

.article-author p {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  padding-top: 12px;
  padding-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .article-author p {
    font-size: 0.75rem;
  }
}

.prevnext {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 45px;
  margin-top: 2.8125rem;
}

.prevnext__title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .prevnext__title {
    font-size: 1rem;
    font-weight: 500;
  }
}

.prevnext__item {
  width: calc(50% - 1.25rem);
}

.prevnext__item:first-child {
  margin-right: 40px;
  margin-right: 2.5rem;
}

.prevnext__item:nth-child(2) .prevnext__title {
  text-align: right;
}

.prevnext__card {
  padding: 20px;
  padding: 1.25rem;
  border: 2px solid #000;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 0.25rem;
  -webkit-box-shadow: 0 2px #000;
          box-shadow: 0 2px #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .prevnext__card {
    display: none;
  }
}

.prevnext__card:hover {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.prevnext__img {
  width: 163px;
  width: 10.1875rem;
  height: 92px;
  height: 5.75rem;
}

.prevnext__text {
  width: calc(100% - 11.0625rem);
  margin-left: 14px;
  margin-left: 0.875rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
}

.mv {
  padding: 75px 0 70px 0;
  padding: 4.6875rem 0 4.375rem 0;
}
@media screen and (max-width: 767px) {
  .mv {
    padding: 2.375rem 0 2.1875rem 0;
  }
}

.mv__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .mv__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.mv__text {
  width: calc(50% - 2.5rem);
  margin-right: 40px;
  margin-right: 2.5rem;
}
@media screen and (max-width: 767px) {
  .mv__text {
    width: 100%;
    max-width: 28.125rem;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 1.875rem;
  }
}

.mv__movie {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .mv__movie {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

.mv__movie video {
  width: 100%;
  border: 2px solid #000;
}

.popular-article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 60px 68px 80px 60px;
  padding: 3.75rem 4.25rem 5rem 3.75rem;
}

.popular-article__img {
  width: 50%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .popular-article__img {
    width: 100%;
  }
}

.popular-article .popular-article__img:after, .popular-article--sp .popular-article__img:after {
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: scroll;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 12px;
  right: 0.75rem;
  z-index: 10;
}

.popular-article .popular-article__img:after {
  width: 67px;
  width: 4.1875rem;
  height: 85px;
  height: 5.3125rem;
}

.popular-article--sp .popular-article__img:after {
  width: 33px;
  width: 2.0625rem;
  height: 43px;
  height: 2.6875rem;
}

.popular-article:first-child .popular-article__img:after, .popular-article--sp:first-child .popular-article__img:after {
  background-image: url(../images/common/no1-tag.png);
}

.popular-article:nth-child(2) .popular-article__img:after, .popular-article--sp:nth-child(2) .popular-article__img:after {
  background-image: url(../images/common/no2-tag.png);
}

.popular-article:nth-child(3) .popular-article__img:after, .popular-article--sp:nth-child(3) .popular-article__img:after {
  background-image: url(../images/common/no3-tag.png);
}

.popular-article:nth-child(4) .popular-article__img:after, .popular-article--sp:nth-child(4) .popular-article__img:after {
  background-image: url(../images/common/no4-tag.png);
}

.popular-article:last-child .popular-article__img:after, .popular-article--sp:last-child .popular-article__img:after {
  background-image: url(../images/common/no5-tag.png);
}

.popular-article__text {
  width: calc(50% - 2.5rem);
  margin-right: 40px;
  margin-right: 2.5rem;
}

.popular-article__tag {
  margin-right: 8px;
  margin-right: 0.5rem;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}

.popular-article__date {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  padding-top: 17px;
  padding-top: 1.0625rem;
}

.popular-article__title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  padding-top: 13px;
  padding-top: 0.8125rem;
  line-height: 1.714;
}

.popular-article__btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 45px;
  margin-top: 2.8125rem;
}

.top-article {
  background: #fff;
  border: 2px solid #000;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.top-article:first-child {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .top-article:first-child {
    margin-top: 2.5rem;
  }
}

.top-article__title-wrap {
  width: 100%;
  height: 70px;
  height: 4.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 2px solid #000;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 767px) {
  .top-article__title-wrap {
    height: 3.875rem;
  }
}

.top-article__img {
  width: 80px;
  width: 5rem;
  height: inherit;
  border-right: 2px solid #000;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-article__img {
    width: 4.375rem;
  }
}

.top-article__img img {
  width: 40px;
  width: 2.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.top-article__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}

@media screen and (max-width: 767px) and (max-width: 767px) {
  .top-article-title--long {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.top-article__title img {
  height: 40px;
  height: 2.5rem;
  width: auto;
  margin-left: 15px;
  margin-left: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .top-article__title img {
    height: 1.75rem;
    margin-left: 0.5rem;
  }
}

.top-article__title span {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
  padding-left: 10px;
  padding-left: 0.625rem;
}
@media screen and (max-width: 767px) {
  .top-article__title span {
    font-size: 0.875rem;
    padding-left: 0.3125rem;
  }
}

.top-article__body {
  padding: 40px 30px;
  padding: 2.5rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .top-article__body {
    padding: 2rem 1.25rem;
  }
}

.top-article__btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .top-article__btn {
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.25rem;
  }
}

.top-popular__box {
  width: calc(100% - 2.5rem);
  margin: auto;
  position: relative;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .top-popular__box {
    width: 100%;
  }
}

.top-popular__box:before {
  content: "";
  display: block;
  width: calc(100% + 2.5rem);
  height: 100%;
  background: #FCC81D;
  border-radius: 0.625rem;
  border: 2px solid #000;
  position: absolute;
  bottom: -20px;
  bottom: -1.25rem;
  left: -20px;
  left: -1.25rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top-popular__box:before {
    width: 100%;
    left: 0;
  }
}

.top-popular__box .card.popular-article--sp {
  margin-bottom: 0;
}

.top-popular__title-wrap {
  background: #FE9E43;
  border-radius: 0.625rem 0.625rem 0 0;
  border: 2px solid #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 8px 40px 8px 12px;
  padding: 0.5rem 2.5rem 0.5rem 0.75rem;
}
@media screen and (max-width: 767px) {
  .top-popular__title-wrap {
    padding: 0.75rem 1.25rem 0.25rem 0.8125rem;
  }
}

.top-popular__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top-popular__title:before {
  content: "";
  display: inline-block;
  width: 50px;
  width: 3.125rem;
  height: 62px;
  height: 3.875rem;
  background-image: url(../images/top/popular-icon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: scroll;
  background-size: cover;
  margin-right: 10px;
  margin-right: 0.625rem;
}
@media screen and (max-width: 767px) {
  .top-popular__title:before {
    width: 2.1875rem;
    height: 2.75rem;
    margin-right: 0.53125rem;
  }
}

.top-popular__title img {
  width: 172px;
  width: 10.75rem;
}
@media screen and (max-width: 767px) {
  .top-popular__title img {
    width: 6.25rem;
  }
}

.top-popular__title span {
  display: inline-block;
  margin-left: 20px;
  margin-left: 1.25rem;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .top-popular__title span {
    font-size: 0.875rem;
    margin-left: 0.9375rem;
  }
}

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

.top-popular__circle {
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  border-radius: 0.625rem;
  border: 2px solid #000;
  margin-left: 10px;
  margin-left: 0.625rem;
}
@media screen and (max-width: 767px) {
  .top-popular__circle {
    width: 0.625rem;
    height: 0.625rem;
    margin-left: 0.375rem;
  }
}

.top-popular__circle:first-child {
  background: #F14F4C;
}

.top-popular__circle:nth-child(2) {
  background: #FCC81D;
}

.top-popular__circle:last-child {
  background: #0FC94A;
}

.top-popular__body {
  background: #fff;
  border-left: 2px solid #000;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
}
@media screen and (max-width: 767px) {
  .top-popular__body {
    width: calc(100% - 2.75rem);
    margin-left: auto;
    margin-right: auto;
    border: 0;
    background: #FCC81D;
  }
}

.top-popular__article--sp {
  border-top: 0;
  overflow: hidden;
}

.top-popular__article--sp:hover {
  border-top: 2px solid #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.top-popular__article--sp:hover .card__body {
  border-bottom: 2px solid #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
/*# sourceMappingURL=styles.css.map */
