@charset "UTF-8";
/* -------------------------------------------*/
/* Google Fonts: load via CSS so theme CSS includes fonts directly */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Noto+Serif+JP:wght@400;700&family=League+Spartan:wght@400;700&family=Fira+Sans:wght@400;700&display=swap");
/* -------------------------------------------*/
/* -------------------------------------------*/
/* -------------------------------------------*/
:root {
  --content_width: 1280px;
  --content-both_space: 40px;
  --header_height:142px;
  --waves_height: 60px;
}

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

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

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

html {
  -ms-overflow-style: scrollbar;
  font-size: 62.5% !important;
  overflow: auto;
}

body {
  color: #000000;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem !important;
  font-weight: 400;
  height: 100%;
  letter-spacing: normal;
  line-height: 1.5 !important;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

section {
  position: relative;
  width: 100%;
}

a,
button {
  color: inherit;
  text-decoration: none;
}

picture {
  display: block;
  line-height: 0;
}

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

svg:not(:root) {
  overflow: hidden;
}

input,
button,
select,
optgroup,
textarea {
  background-color: transparent;
  border: none;
  border: none;
  box-sizing: border-box;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
  position: relative;
  vertical-align: middle;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-border-radius: 0;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

input[type=radio],
input[type=checkbox] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  border: 0;
  margin: 0;
  min-width: 0;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  border-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}
/* -------------------------------------------*/
/*underline*/
/*arrow-fade*/
@-webkit-keyframes arrow-fade {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  49% {
    -webkit-transform: translateX(15px);
            transform: translateX(15px);
  }
  50% {
    opacity: 0;
  }
  51% {
    opacity: 1;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}
@keyframes arrow-fade {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  49% {
    -webkit-transform: translateX(15px);
            transform: translateX(15px);
  }
  50% {
    opacity: 0;
  }
  51% {
    opacity: 1;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}
/* fade */
.js-fade__view {
  display: block;
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: 800ms;
  transition: 800ms;
}
.js-fade__view--delay1 {
  -webkit-transition-delay: 100ms;
          transition-delay: 100ms;
}
.js-fade__view--delay2 {
  -webkit-transition-delay: 300ms;
          transition-delay: 300ms;
}

.is-fade__view.js-fade__view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.js-fade__down {
  opacity: 0;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
  -webkit-transition: 800ms;
  transition: 800ms;
}
.js-fade__down--delay1 {
  -webkit-transition-delay: 100ms;
          transition-delay: 100ms;
}
.js-fade__down--delay2 {
  -webkit-transition-delay: 300ms;
          transition-delay: 300ms;
}

.is-fade__down.js-fade__down {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* -------------------------------------------*/
/* layout
-------------------------------------------------------*/
/**
 * input
 *
 */
.wpcf7-spinner {
  display: none;
}

.wpcf7-list-item {
  margin-left: 0;
}

input[type=text],
input[type=date],
input[type=password],
input[type=email],
input[type=time],
input[type=tel],
input[type=number] {
  letter-spacing: 0.1em;
  position: relative;
  width: 100%;
}
input[type=number] {
  -moz-appearance: textfield;
}

/**
 * textarea
 *
 */
textarea {
  border: none;
  border: none;
  border-radius: 5px;
  height: 300px;
  letter-spacing: 0.1em;
  padding: 10px;
  position: relative;
  width: 100%;
}

input[type=text]:disabled {
  background: transparent;
  cursor: not-allowed;
}
input[type=text]:disabled::-webkit-input-placeholder {
  color: #F1F8FE;
  opacity: 1;
}
input[type=text]:disabled::-moz-placeholder {
  color: #F1F8FE;
  opacity: 1;
}
input[type=text]:disabled:-ms-input-placeholder {
  color: #F1F8FE;
  opacity: 1;
}
input[type=text]:disabled::-ms-input-placeholder {
  color: #F1F8FE;
  opacity: 1;
}
input[type=text]:disabled::placeholder {
  color: #F1F8FE;
  opacity: 1;
}

/**
 * radio
 *
 */
input[type=radio] {
  display: none;
  vertical-align: middle;
}

.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0;
}

input[type=radio] + .mwform-radio-field-text {
  display: inline-block;
  margin: 0 20px 10px 0;
  padding: 10px 10px 10px 40px;
  position: relative;
  vertical-align: middle;
  -webkit-transition: 0.5;
  transition: 0.5;
  -webkit-transition-property: color;
  cursor: pointer;
  transition-property: color;
}

input[type=radio] + .mwform-radio-field-text::before {
  content: "";
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  border: 1px solid #7f7f7f;
  border-radius: 50%;
  height: 20px;
  transform: translateY(-50%);
  width: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  z-index: 2;
}

input[type=radio] + .mwform-radio-field-text::after {
  content: "";
  left: 4px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  background-color: #37B9BE;
  border-radius: 50%;
  display: block;
  height: 12px;
  transform: translateY(-50%);
  width: 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  opacity: 0;
  z-index: 5;
}

input[type=radio]:checked + .mwform-radio-field-text::after {
  opacity: 1;
}

/**
 * checkbox
 *
 */
input[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
  vertical-align: middle;
}

input[type=checkbox] + label {
  display: inline-block;
  line-height: 1;
  padding: 0 0 0 35px;
  position: relative;
  -webkit-transition: 0.5;
  transition: 0.5;
  -webkit-transition-property: color;
  cursor: pointer;
  transition-property: color;
}

input[type=checkbox] + label::before {
  content: "";
  height: 16px;
  left: 0;
  position: absolute;
  top: 50%;
  width: 16px;
  -webkit-transform: translateY(-50%);
  background: #FFFFFF;
  border: 2px #818181 solid;
          transform: translateY(-50%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 2;
}

input[type=checkbox] + label::after {
  border-bottom: 3px solid #F1F8FE;
  border-left: 3px solid #F1F8FE;
  content: "";
  display: block;
  height: 5px;
  left: 3px;
  position: absolute;
  top: 5px;
  width: 10px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition-property: color;
  opacity: 0;
  transition-property: color;
  z-index: 3;
}

input[type=checkbox]:checked + label::after {
  opacity: 1;
}

/**
 * tel(column)
 *
 */
.mwform-tel-field {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.mwform-tel-field > input {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100% !important;
}

/**
 * select
 *
 */
.select-parts {
  border: 1px #F1F8FE solid;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.select-parts::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  background: url(../img/contact/select_arrow.png) no-repeat top center/contain;
  height: 10px;
  margin-top: 2px;
  pointer-events: none;
  transform: translateY(-50%);
  width: 15px;
  z-index: 5;
}
.select-parts select {
  background: #fbefe3;
  border: none;
  border: none;
  color: #7f7f7f;
  cursor: pointer;
  font-size: 2rem;
  height: 45px;
  letter-spacing: 0.1em;
  padding: 0 20px 0 15px;
  position: relative;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  width: 100%;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  text-align: center;
}

/**
 * file
 *
 */
input[type=file] + label {
  margin: 0 10px 0 0;
  padding: 15px 0;
  width: 160px;
}
input[type=file] + label:after {
  left: 170px;
}

/* -------------------------------------------*/
.p-index-news__item {
  display: grid;
  grid-template-areas: "category date" "category title";
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  grid-column-gap: 70px;
  -webkit-column-gap: 70px;
     -moz-column-gap: 70px;
          column-gap: 70px;
  grid-row-gap: 4px;
  row-gap: 4px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #000;
  padding: 70px 0px;
}
.p-index-news__item:hover .p-index-news__title {
  text-decoration: underline;
}
.p-index-news__item:first-of-type {
  border-top: none;
  padding-top: 0;
}
.p-index-news__category {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  grid-area: category;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 24px;
  padding: 11px 26px;
  text-align: center;
}
.p-index-news__content {
  padding-left: 90px;
}
.p-index-news__date {
  color: #858585;
  font-weight: bold;
  grid-area: date;
  padding-bottom: 10px;
}
.p-index-news__title {
  align-self: start;
  font-size: 2rem;
  font-weight: 500;
  grid-area: title;
}

.p-pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #98A6B5;
  margin-top: 20px;
}
.p-pagination .current {
  color: #000;
}
.p-pagination .page-numbers {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.8rem;
  gap: 24px;
  margin: 0 20px;
}
.p-pagination .prev,
.p-pagination .next {
  background-color: #fff;
  border: 1px solid #37B9BE;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 48px;
  width: 48px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
  color: #fff;
  cursor: pointer;
          justify-content: center;
  position: relative;
}
.p-pagination .prev::after,
.p-pagination .next::after {
  border-bottom: 3px solid #37B9BE;
  border-left: 3px solid #37B9BE;
  content: "";
  height: 10px;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 10px;
}
.p-pagination .next::after {
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
          transform: translate(-50%, -50%) rotate(-135deg);
}
.p-pagination .prev::after {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

/* 記事コンテンツセクション */
.p-news-content__meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.p-news-content__category {
  background-color: #fff;
  border-radius: 24px;
  padding: 11px 26px;
}
.p-news-content__date {
  color: #858585;
  font-weight: bold;
}
.p-news-content__body {
  margin: 135px auto 0;
  max-width: 878px;
  width: 100%;
}
.p-news-content__body p {
  font-size: 1.6rem;
  line-height: 1.75;
  margin-bottom: 2.4rem;
}
.p-news-content__body a {
  text-decoration: underline;
}
.p-news-content__body h2.wp-block-heading {
  color: #333;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
  margin: 4.8rem 0 2.4rem;
}
.p-news-content__body h3.wp-block-heading {
  color: #333;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.6;
  margin: 3.6rem 0 2rem;
}
.p-news-content__body strong {
  font-size: 1.6rem;
  font-weight: bold;
}
.p-news-content__body ul.wp-block-list {
  font-size: 1.6rem;
  line-height: 1.75;
  margin: 2.4rem 0;
  padding-left: 2rem;
}
.p-news-content__body ul.wp-block-list li {
  list-style: disc;
  margin-bottom: 1.2rem;
  position: relative;
}
.p-news-content__body ul.wp-block-list li:last-child {
  margin-bottom: 0;
}
.p-news-content__body ul.wp-block-list li::marker {
  color: #666;
}
.p-news-content__body ul.wp-block-list li ul.wp-block-list {
  margin: 1.2rem 0 0 2rem;
}
.p-news-content__body ol.wp-block-list {
  font-size: 1.6rem;
  line-height: 1.75;
  list-style: decimal;
  margin: 2.4rem 0;
  padding-left: 2rem;
}
.p-news-content__body ol.wp-block-list li {
  margin-bottom: 1.2rem;
  position: relative;
}
.p-news-content__body ol.wp-block-list li:last-child {
  margin-bottom: 0;
}
.p-news-content__body ol.wp-block-list li::marker {
  color: #666;
  font-weight: bold;
}
.p-news-content__body ol.wp-block-list li ol.wp-block-list {
  margin: 1.2rem 0 0 2rem;
}
.p-news-content__body blockquote.wp-block-quote {
  background-color: #f8f9fa;
  border-left: 4px solid #007cba;
  font-size: 1.8rem;
  line-height: 1.67;
  margin: 3.2rem 0;
  padding: 2.4rem;
  position: relative;
}
.p-news-content__body blockquote.wp-block-quote p {
  font-size: 1.8rem;
  line-height: 1.67;
  margin-bottom: 1.6rem;
}
.p-news-content__body blockquote.wp-block-quote p:last-child {
  margin-bottom: 0;
}
.p-news-content__body blockquote.wp-block-quote cite {
  color: #666;
  display: block;
  font-size: 1.4rem;
  font-style: normal;
  margin-top: 1.6rem;
  text-align: right;
}
.p-news-content__body blockquote.wp-block-quote cite::before {
  content: "— ";
}
.p-news-content__title {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 56px;
}

/* ナビゲーションセクション */
.p-news-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 120px;
}
.p-news-nav__link {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border: 1px solid #37B9BE;
  border-radius: 24px;
  gap: 0.8em;
  padding: 11px 40px;
}
.p-news-nav__link--prev::before, .p-news-nav__link--next::after {
  border-right: 2px solid #37B9BE;
  border-top: 2px solid #37B9BE;
  content: "";
  display: block;
  height: 8px;
  position: absolute;
  width: 8px;
}
.p-news-nav__link--prev::before {
  -webkit-transform: rotate(-135deg);
  left: 16px;
          transform: rotate(-135deg);
}
.p-news-nav__link--next::after {
  -webkit-transform: rotate(45deg);
  right: 16px;
          transform: rotate(45deg);
}
@media screen and (max-width: 1000px){
  :root {
    --content_width: 860px;
    --content-both_space: 20px;
    --header_height:130px;
    --waves_height: 20px;
  }
  html {
    font-size: 57.5% !important;
  }
  textarea {
    height: 170px;
  }
  input[type=radio] + .mwform-radio-field-text {
    margin: 0;
    padding: 10px 5px 12px 23px;
  }
  input[type=radio] + .mwform-radio-field-text::before {
    height: 15px;
    width: 15px;
  }
  input[type=radio] + .mwform-radio-field-text::after {
    content: "";
    height: 9px;
    left: 3px;
    width: 9px;
  }
  input[type=checkbox] + label {
    padding-left: 30px;
  }
  .select-parts select {
    font-size: 15rem;
  }
}
@media screen and (max-width: 667px){
  :root {
    --content_width: 100%;
  }
  html {
    font-size: 62.5% !important;
  }
  .p-index-news__item {
    grid-template-areas: "category date" "title    title";
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    padding: 16px 0;
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    row-gap: 8px;
  }
  .p-index-news__category {
    display: inline-block;
    font-size: 1.4rem;
  }
  .p-index-news__content {
    padding-left: 0;
  }
  .p-index-news__date {
    font-size: 1.4rem;
  }
  .p-index-news__title {
    font-size: 1.6rem;
    line-height: 1.875;
    -webkit-align-self: auto;
        -ms-flex-item-align: auto;
            align-self: auto;
  }
  .p-news-content__category {
    font-size: 1.4rem;
    padding: 6px 26px;
  }
  .p-news-content__date {
    font-size: 1.4rem;
  }
  .p-news-content__body {
    font-size: 1.4rem;
    line-height: 1.71;
    margin-top: 41px;
    padding: 0px;
  }
  .p-news-content__body p {
    font-size: 1.4rem;
    line-height: 1.71;
    margin-bottom: 2rem;
  }
  .p-news-content__body h2.wp-block-heading {
    font-size: 2rem;
    line-height: 1.6;
    margin: 4rem 0 2rem;
  }
  .p-news-content__body h3.wp-block-heading {
    font-size: 1.8rem;
    line-height: 1.67;
    margin: 3.2rem 0 1.6rem;
  }
  .p-news-content__body strong {
    font-size: 1.4rem;
  }
  .p-news-content__body ul.wp-block-list {
    font-size: 1.4rem;
    line-height: 1.71;
    margin: 2rem 0;
    padding-left: 1.6rem;
  }
  .p-news-content__body ul.wp-block-list li ul.wp-block-list {
    margin: 1rem 0 0 1.6rem;
  }
  .p-news-content__body ol.wp-block-list {
    font-size: 1.4rem;
    line-height: 1.71;
    margin: 2rem 0;
    padding-left: 1.6rem;
  }
  .p-news-content__body ol.wp-block-list li ol.wp-block-list {
    margin: 1rem 0 0 1.6rem;
  }
  .p-news-content__body blockquote.wp-block-quote {
    font-size: 1.6rem;
    line-height: 1.75;
    margin: 2.4rem 0;
    padding: 2rem 1.6rem;
  }
  .p-news-content__body blockquote.wp-block-quote p {
    font-size: 1.6rem;
    line-height: 1.75;
    margin-bottom: 1.2rem;
  }
  .p-news-content__body blockquote.wp-block-quote cite {
    font-size: 1.2rem;
    margin-top: 1.2rem;
  }
  .p-news-content__title {
    font-size: 1.6rem;
    line-height: 1.875;
    margin-top: 11px;
  }
  .p-news-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 11px;
    margin-top: 50px;
  }
  .p-news-nav__link {
    width: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
  .p-news-nav__link--prev {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .p-news-nav__link--next {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media screen and (min-width: calc(667px + 1px)){
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media all and (-ms-high-contrast: none){
  html,
  body {
    display: none;
  }
}
/*# sourceMappingURL=maps/posts.css.map */
