@charset "UTF-8";
:root {
  --font-jp: "Noto Sans JP", sans-serif;
  --font-en: "Lato", sans-serif;
  --color-text: #333333;
  --color-primary: #162E59;
  --color-secondary: #13477A;
  --color-btn: #F1FAA5;
  --color-link: #4A9FD8;
  --bg: #E9F3FF;
}

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

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  cursor: pointer;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/* # =================================================================
# Forms # ================================================================= */
input {
  border-radius: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto; /* Correct the cursor style of increment and decrement buttons in Chrome */
}

[type=search] {
  -webkit-appearance: textfield; /* Correct the odd appearance in Chrome and Safari */
  outline-offset: -2px; /* Correct the outline style in Safari */
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none; /* Remove the inner padding in Chrome and Safari on macOS */
}

textarea {
  overflow: auto; /* Internet Explorer 11+ */
  resize: vertical; /* Specify textarea resizability */
}

button,
input,
optgroup,
select,
textarea {
  font: inherit; /* Specify font inheritance of form elements */
}

optgroup {
  font-weight: bold; /* Restore the font weight unset by the previous rule */
}

button {
  overflow: visible; /* Address `overflow` set to `hidden` in IE 8/9/10/11 */
}

button,
select {
  text-transform: none; /* Firefox 40+, Internet Explorer 11- */
}

/* Apply cursor pointer to button elements */
button,
[type=button],
[type=reset],
[type=submit],
[role=button] {
  cursor: pointer;
}

/* Remove inner padding and border in Firefox 4+ */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/* Replace focus style removed in the border reset above */
button:-moz-focusring,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  outline: 1px dotted #000;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* Correct the inability to style clickable types in iOS */
}

/* Remove the default button styling in all browsers */
button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline-width: 0;
  outline: none;
}

/* Style select like a standard input */
select {
  -moz-appearance: none; /* Firefox 36+ */
  -webkit-appearance: none; /* Chrome 41+ */
}

select::-ms-expand {
  display: none; /* Internet Explorer 11+ */
}

select::-ms-value {
  color: currentColor; /* Internet Explorer 11+ */
}

legend {
  border: 0; /* Correct `color` not being inherited in IE 8/9/10/11 */
  color: inherit; /* Correct the color inheritance from `fieldset` elements in IE */
  display: table; /* Correct the text wrapping in Edge and IE */
  max-width: 100%; /* Correct the text wrapping in Edge and IE */
  white-space: normal; /* Correct the text wrapping in Edge and IE */
  max-width: 100%; /* Correct the text wrapping in Edge 18- and IE */
}

::-webkit-file-upload-button {
  /* Correct the inability to style clickable types in iOS and Safari */
  -webkit-appearance: button;
  color: inherit;
  font: inherit; /* Change font properties to `inherit` in Chrome and Safari */
}

/* Replace pointer cursor in disabled elements */
[disabled] {
  cursor: default;
}

/* org-add */
*,
*::before,
*::after {
  background-repeat: no-repeat;
  box-sizing: border-box;
}

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
    user-select: initial !important;
    -webkit-user-select: initial !important;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  font-family: var(--font-jp);
  font-size: 1rem;
  font-weight: 400;
  font-optical-sizing: auto;
  color: var(--color-text);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #fff;
}
_::-webkit-full-page-media, _:future, :root body {
  min-height: -webkit-fill-available;
}

main {
  flex: 1;
  background-color: var(--bg);
  padding-top: 20px;
  padding-bottom: clamp(94px, 10.69vw, 154px);
}
@media screen and (min-width: 768px) {
  main {
    padding-top: 60px;
  }
}

section {
  scroll-margin-top: 50px;
}
@media screen and (min-width: 768px) {
  section {
    scroll-margin-top: 80px;
  }
}

p {
  text-align: justify;
}

a {
  color: var(--color-text);
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

input, textarea {
  cursor: auto;
  resize: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

label {
  cursor: auto;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* l-header */
.l-header {
  position: relative;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid var(--color-primary);
  padding-bottom: 20px;
}

.l-header__inner {
  width: 100%;
  padding: 0 clamp(1.125rem, 2.78vw, 2.5rem);
}

.l-header__heading {
  position: relative;
  height: 1.75rem;
  background-color: var(--color-primary);
  margin-bottom: 20px;
}

.l-header__headingtext {
  position: absolute;
  bottom: -14px;
  left: 0;
  right: 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
  background-color: var(--color-primary);
  padding: 0 28px;
  margin: 0 auto;
  border-radius: 20px;
  max-width: max-content;
}
@media screen and (min-width: 1025px) {
  .l-header__headingtext {
    margin-right: clamp(1.125rem, 2.78vw, 2.5rem);
  }
}

.l-header__logoarea {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 24px;
  padding-top: 6px;
}

.l-header__logo {
  width: min(90%, 15rem);
  height: auto;
  display: block;
  margin: 0 auto;
}

.l-header__logoimg {
  width: 100%;
  height: 100%;
}

.l-header__spmenu {
  width: 2.1875rem;
  height: 2.1875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 5px;
  background-color: var(--color-primary);
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .l-header__spmenu {
    display: none;
  }
}

.l-header__spham--3, .l-header__spham--2, .l-header__spham {
  display: block;
  width: 1.25rem;
  height: 0.125rem;
  border-radius: 0.8125rem;
  background-color: #fff;
  transition: 0.3s;
}

.l-header__spham {
  transform: translateY(-0.3125rem);
}

.l-header__spham--3 {
  transform: translateY(0.3125rem);
}

.l-header__nav {
  position: fixed;
  top: 50px;
  right: 0;
  z-index: -5;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  background-color: var(--color-primary);
  opacity: 0;
  visibility: hidden;
  transition: opacity ease-out 0.3s, visibility ease-out 0.3s;
  display: none;
}
@media screen and (min-width: 1025px) {
  .l-header__nav {
    position: relative;
    top: 0;
    z-index: 10;
    opacity: 1;
    visibility: visible;
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    padding: 0;
    background-color: transparent;
    margin-top: 36px;
  }
}

.l-header__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  width: 100%;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.l-header__list::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 1025px) {
  .l-header__list {
    flex-direction: row;
    gap: 0;
    width: auto;
    overflow-y: auto;
  }
}

.l-header__item {
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .l-header__item {
    width: auto;
    text-align: left;
    border: none;
  }
}
.l-header__item:nth-of-type(n + 6) .l-header__link {
  border-right: none;
}
.l-header__item:last-of-type .l-header__link {
  border-right: none;
}
.l-header__item:nth-of-type(n + 6) {
  display: none;
}

.l-header__link {
  display: block;
  color: #fff;
  font-weight: bold;
}
@media screen and (min-width: 1025px) {
  .l-header__link {
    color: var(--color-primary);
    padding: 0 28px;
    border-right: 1px solid #4A9FD8;
  }
}

.l-header__fixbtn {
  position: fixed;
  z-index: 10;
  left: 0;
  right: 0;
  bottom: 10px;
  width: min(100%, 20rem);
  height: clamp(3.75rem, 8.89vw, 8rem);
  background-color: var(--color-btn);
  font-size: clamp(1.25rem, 2.08vw, 1.875rem);
  color: var(--color-primary);
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  box-shadow: clamp(4px, 0.42vw, 6px) clamp(4px, 0.42vw, 6px) 0 var(--color-primary);
  margin: 0 auto;
  overflow: hidden;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.4s ease, visibility 0.4s ease, transform ease 0.3s, box-shadow ease 0.3s;
}
@media screen and (min-width: 768px) {
  .l-header__fixbtn {
    left: unset;
    bottom: 20px;
    right: 20px;
    margin: 0;
  }
}
@media (hover: hover) {
  .l-header__fixbtn:hover, .l-header__fixbtn:focus-visible {
    transform: translate(clamp(4px, 0.42vw, 6px), clamp(4px, 0.42vw, 6px));
    box-shadow: none;
  }
}
.l-header__fixbtn::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  display: block;
  width: 21.9%;
  height: auto;
  max-height: 100%;
  aspect-ratio: 79/128;
  background-image: url(../../uploads/freeleft-icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.l-header__fixbtn::after {
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  display: block;
  width: 21.9%;
  height: auto;
  max-height: 100%;
  aspect-ratio: 79/128;
  background-image: url(../../uploads/freeright-icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.l-header__fixbtn .span {
  font-size: clamp(1rem, 1.67vw, 1.5rem);
}

.l-header__fixbtnspan {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

/* l-footer */
.l-footer__copyrightarea {
  background-color: var(--bg);
  padding: 20px 0;
}

.l-footer__copybox {
  display: flex;
  align-items: center;
  flex-direction: column;
  row-gap: 20px;
  padding: 30px 0;
  color: var(--color-secondary);
  font-weight: 700;
  background-color: #fff;
  border-radius: 16px;
}
@media screen and (min-width: 768px) {
  .l-footer__copybox {
    flex-direction: row;
    justify-content: space-between;
    padding: 20px 30px;
  }
}

.l-footer__logoimg {
  width: 10.4375rem;
  height: auto;
  display: block;
}

.l-footer__ctaarea {
  position: relative;
  color: #fff;
  background-color: var(--color-secondary);
  padding: 30px 0;
}
.l-footer__ctaarea::before {
  position: absolute;
  top: -34px;
  left: 0;
  right: 0;
  content: "";
  display: block;
  width: 69px;
  height: 34.5px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background-color: var(--color-secondary);
  margin: 0 auto;
}

.l-footer__ctabox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 20px;
}

@media screen and (min-width: 768px) {
  .l-footer__ctatext {
    text-align: center;
  }
}

.l-footer__telbox {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 4px;
  color: #fff;
}

.l-footer__tel {
  display: flex;
  align-items: center;
  column-gap: 8px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}
.l-footer__tel::before {
  content: "";
  display: block;
  width: 1.25rem;
  height: auto;
  aspect-ratio: 1/1;
  background-color: #fff;
  -webkit-mask-image: url(../../uploads/tel-icon_img.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

/* l-container */
.l-container, .l-container--main, .l-container--front {
  padding: 0 clamp(1.125rem, 2.78vw, 2.5rem);
}

.l-container--front {
  width: 100%;
  max-width: 85rem;
  margin: 0 auto;
}

.l-container--main {
  max-width: 85rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-container--main {
    display: flex;
    flex-wrap: wrap;
    column-gap: 2.9%;
  }
}

.l-container--mail {
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .l-container--mail {
    display: flex;
    justify-content: space-between;
  }
}

/* l-inner */
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 60rem;
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px) {
  .l-inner--mid {
    max-width: 42.5rem;
    margin: 0 auto;
  }
}

/* l-contents */
.l-contents {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-contents {
    flex: 1;
  }
}

/* l-sidebar */
.l-sidebar {
  width: 100%;
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .l-sidebar {
    min-width: 15.625rem;
    width: 26.5%;
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .l-sidebar__inner {
    position: sticky;
    top: 20px;
    right: 0;
  }
}

.l-sidebar__banner {
  display: block;
  width: 100%;
}
.l-sidebar__banner .c-img {
  height: auto;
}
@media (hover: hover) {
  .l-sidebar__banner {
    transition: opacity ease 0.3s;
  }
  .l-sidebar__banner:hover, .l-sidebar__banner:focus-visible {
    opacity: 0.8;
  }
}

.l-sidebar__bannerbox {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.l-sidebar__nav {
  padding: 20px;
  border: 1px solid var(--color-primary);
  background-color: #fff;
  box-shadow: 4px 4px 0 var(--color-primary);
  margin-top: 20px;
}

.l-sidebar__title {
  font-size: clamp(1.25rem, 2.6vw, 1.5rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.17;
  background-color: var(--color-primary);
  padding: 10px 24px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .l-sidebar__title {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 1025px) {
  .l-sidebar__title {
    font-size: min(1.67vw, 1.5rem);
  }
}

.l-sidebar__catlist {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  margin-bottom: 40px;
}

.l-sidebar__catitem a {
  font-size: 0.9375rem;
  line-height: 1.33;
  font-weight: 700;
  color: var(--color-primary);
  display: flex;
  column-gap: 12px;
}
.l-sidebar__catitem a::before {
  content: "";
  display: block;
  width: 1.25rem;
  height: auto;
  aspect-ratio: 1/1;
  flex: none;
  background-image: url(../../uploads/category-icon_img.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.l-sidebar__search {
  margin-bottom: 40px;
}

.l-sidebar__pickuplink {
  color: var(--color-primary);
  display: flex;
  align-items: flex-start;
  column-gap: 10px;
  padding: clamp(15px, 1.39vw, 20px) 0;
}

.l-sidebar__pickuptitle {
  font-size: 1rem;
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.75;
  flex: 1;
}

.l-sidebar__pickupitem {
  border-bottom: 1px solid var(--color-primary);
}
.l-sidebar__pickupitem:first-of-type a {
  padding-top: 0;
}

.l-sidebar__pickupimg {
  width: 6.25rem;
  flex: none;
}
.l-sidebar__pickupimg .c-img {
  height: auto;
  aspect-ratio: 16/9;
  border: 1px solid rgba(22, 46, 89, 0.2);
}

.c-form form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 40px 0;
}
.c-form form label {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 8px;
}
.c-form form input[type=radio], .c-form form input[type=checkbox] {
  margin: 0;
  padding: 0;
}
.c-form form input[type=radio] + span, .c-form form input[type=checkbox] + span {
  font-size: clamp(0.875rem, 3.73vw, 1rem);
  line-height: 1.5;
  font-weight: 500;
  display: inline-block;
}
.c-form form input[type=radio] + span::after, .c-form form input[type=checkbox] + span::after {
  content: "";
  display: block;
  position: absolute;
}
.c-form form input[type=radio] {
  border: 1px solid var(--color-primary);
  background-color: #fff;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
}
.c-form form input[type=radio] + span::after {
  width: 0.875rem;
  height: 0.875rem;
  background: var(--color-primary);
  opacity: 0;
  border-radius: 50%;
  transition: opacity ease 0.2s;
}
.c-form form input[type=checkbox] {
  border: 1px solid var(--color-primary);
  background-color: #fff;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 0.125rem;
}
@media screen and (min-width: 768px) {
  .c-form form input[type=checkbox] {
    width: 1.5625rem;
    height: 1.5625rem;
  }
}
.c-form form input[type=checkbox] + span::after {
  top: 0;
  left: 1px;
  width: 0.5625rem;
  height: 0.875rem;
  transform: rotate(45deg);
  transform-origin: bottom;
  border-bottom: 3px solid var(--color-primary);
  border-right: 3px solid var(--color-primary);
  opacity: 0;
  transition: opacity ease 0.2s;
}
@media screen and (min-width: 768px) {
  .c-form form input[type=checkbox] + span::after {
    left: 2px;
    width: 0.75rem;
    height: 1rem;
    border-bottom: 4px solid var(--color-primary);
    border-right: 4px solid var(--color-primary);
  }
}
.c-form form input[type=radio]:checked + span::after, .c-form form input[type=checkbox]:checked + span::after {
  opacity: 1;
}

.c-form__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px 40px;
  width: 100%;
}
.c-form__item input, .c-form__item select {
  background-color: #fff;
  width: 100%;
  height: 2.5rem;
  padding: 5px 10px;
  border-radius: 0.4rem;
  border: 1px solid var(--color-text);
  font-size: clamp(0.875rem, 3.73vw, 1rem);
}
.c-form__item select {
	max-width: 300px;
    background-image: url(../../uploads/chev.svg);
    background-position: center right 5px;
    background-repeat: no-repeat;
    background-size: contain;
}
.c-form__item textarea {
  font-size: clamp(0.875rem, 3.73vw, 1rem);
  white-space: pre-wrap;
  word-break: break-all;
  line-height: 1.6;
  border: 1px solid var(--color-text);
  background-color: #fff;
  width: 100%;
  height: 11.875rem;
  padding: 5px 10px;
  overflow-y: scroll;
  border-radius: 0.5rem;
}
@media screen and (min-width: 768px) {
  .c-form__item textarea {
    padding: 10px;
  }
}

.c-form__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  flex: none;
}
@media screen and (min-width: 768px) {
  .c-form__title {
    width: 30%;
  }
}
.c-form__title + p {
  width: 100%;
}

.c-form__content {
  width: inherit;
}

.c-form__imp {
  color: #D63636;
  font-weight: 700;
}

.c-form__btnwp {
  width: 100%;
}

.c-form__btnbox {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-form__btnbox p {
  position: relative;
  font-weight: 700;
  font-size: clamp(1.125rem, 2.34vw, 1.25rem);
  width: calc(min(100%, 17.5rem) + 4px);
  height: 3rem;
  display: block;
  padding-bottom: 4px;
  box-sizing: content-box;
}
.c-form__btnbox p::after {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  content: "";
  display: block;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background-color: var(--color-primary);
  border-radius: 0.75rem;
}
.c-form__btnbox input {
  position: relative;
  z-index: 2;
  width: calc(100% - 4px);
  height: 100%;
  border-radius: 0.75rem;
  background-color: var(--color-btn);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
@media (hover: hover) {
  .c-form__btnbox input {
    transition: transform linear 0.3s;
  }
  .c-form__btnbox:hover input, .c-form__btnbox:focus-visible input {
    transform: translate(4px, 4px);
  }
}

.wpcf7-checkbox {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px 20px;
}

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

.wpcf7-not-valid-tip {
  font-size: 0.75rem !important;
  margin-top: 5px;
}

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

.wpcf7-spinner {
  display: none !important;
}

.wpcf7-previous {
  font-weight: 600 !important;
  color: var(--color-primary) !important;
  background: #fff !important;
  border: 1px solid var(--color-primary) !important;
}

.wpcf7-list-item-label a {
  color: var(--color-primary);
  text-decoration: underline;
}

.wpcf7 .wpcf7-submit:disabled {
  opacity: 0.5;
}

.c-form__agree a {
  color: var(--color-link);
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.c-form__search {
  display: flex;
  align-items: center;
  column-gap: 3.1%;
}

.c-form__searchlabel {
  position: relative;
  flex: 1;
  height: 2.5rem;
  background-color: #fff;
  border: 2px solid var(--color-primary);
}
.c-form__searchlabel::after {
  position: absolute;
  left: 10px;
  bottom: 0;
  top: 0;
  margin: auto 0;
  content: "";
  display: block;
  width: 1rem;
  height: auto;
  aspect-ratio: 1/1;
  background-image: url(../../uploads/search-icon_img.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.c-form__searchlabel:focus-within::after {
  display: none;
}
.c-form__searchlabel input {
  width: 100%;
  height: 100%;
  display: block;
  font-size: 1rem;
  padding: 0 5px;
}

.c-form__searchbtn {
  background-color: var(--color-btn);
  color: var(--color-primary);
  width: 20%;
  height: 2rem;
  flex: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(0.75rem, 0.97vw, 0.875rem);
  font-weight: 700;
  line-height: 1;
  border: 2px solid var(--color-primary);
  border-radius: 0.75rem;
  box-shadow: 4px 4px 0 var(--color-primary);
}
@media (hover: hover) {
  .c-form__searchbtn {
    transition: box-shadow linear 0.3s, transform linear 0.3s;
  }
  .c-form__searchbtn:hover, .c-form__searchbtn:focus-visible {
    box-shadow: none;
    transform: translate(4px, 4px);
  }
}

/* c-img */
.c-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* c-btn */
.c-btn, .c-btn--header {
  position: relative;
  font-weight: 700;
  font-size: clamp(1.125rem, 1.39vw, 1.25rem);
  width: calc(min(100%, 17.5rem) + 4px);
  height: 3rem;
  display: block;
  padding-bottom: 4px;
  box-sizing: content-box;
}
.c-btn span, .c-btn--header span {
  position: relative;
  z-index: 2;
  width: calc(100% - 4px);
  height: 100%;
  border-radius: 0.75rem;
  background-color: var(--color-btn);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.c-btn::after, .c-btn--header::after {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  content: "";
  display: block;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background-color: var(--color-primary);
  border-radius: 0.75rem;
}
@media (hover: hover) {
  .c-btn span, .c-btn--header span {
    transition: transform linear 0.3s;
  }
  .c-btn:hover span, .c-btn--header:hover span, .c-btn:focus-visible span, .c-btn--header:focus-visible span {
    transform: translate(4px, 4px);
  }
}

.c-btn--header {
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  width: min(90%, 15rem);
  height: clamp(2.5625rem, 6.25vw, 3rem);
  border-radius: 8px;
}
@media screen and (min-width: 1025px) {
  .c-btn--header {
    position: absolute;
    right: 0;
    bottom: 12px;
  }
}
.c-btn--header span {
  column-gap: 6px;
}
.c-btn--header span::before {
  content: "";
  display: block;
  width: 1.6875rem;
  height: auto;
  aspect-ratio: 1/1;
  background-color: var(--color-primary);
  -webkit-mask-image: url(../../uploads/mail-icon_img.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.c-btntag__list, .c-btntag__list-side {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 5px;
}

.c-btntag__list-side {
  row-gap: 5px;
  margin-bottom: 40px;
}

.c-btntag, .c-btntag--large {
  font-weight: 700;
  font-size: clamp(0.625rem, 1.56vw, 0.75rem);
  line-height: 2.33;
  width: max-content;
  height: 1.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 4px;
  box-sizing: content-box;
  border-radius: 0.875rem;
  box-shadow: 2px 2px 0 var(--color-primary);
  background-color: var(--color-btn);
  border: 2px solid var(--color-primary);
  padding: 0 8px;
}
@media (hover: hover) {
  .c-btntag, .c-btntag--large {
    transition: box-shadow linear 0.3s, transform linear 0.3s;
  }
  .c-btntag:hover, .c-btntag--large:hover, .c-btntag:focus-visible, .c-btntag--large:focus-visible {
    box-shadow: none;
    transform: translate(2px, 2px);
  }
}

.c-btntag--large {
  font-size: clamp(0.625rem, 1.56vw, 0.75rem);
}

/* c-bread */
.c-breadcrumb__list {
  display: flex;
  gap: 0 1em;
  overflow-x: auto;
  overflow-y: hidden;
}

.c-breadcrumb__item {
  white-space: nowrap;
}
.c-breadcrumb__item a {
  color: var(--color-text);
}
.c-breadcrumb__item a::after {
  content: ">";
  display: inline-block;
  color: var(--color-text);
  margin-left: 1em;
  text-decoration: initial;
}

.c-breadcrumb__link {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.21;
}

/* c-title */
.c-title, .c-title--mail, .c-title--terms, .c-title--news {
  font-size: clamp(1.375rem, 1.94vw, 1.75rem);
  font-weight: 700;
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 12px;
  display: flex;
  align-items: center;
  column-gap: clamp(10px, 1.39vw, 20px);
}
.c-title::before, .c-title--mail::before, .c-title--terms::before, .c-title--news::before {
  content: "";
  display: block;
  width: clamp(2rem, 2.5vw, 2.25rem);
  height: auto;
  background-repeat: no-repeat;
  background-size: contain;
}

.c-title--news::before {
  aspect-ratio: 1/1;
  background-image: url(../../uploads/news-icon_img.png);
}

.c-title--terms::before {
  aspect-ratio: 1/1;
  background-image: url(../../uploads/file-icon_img.png);
}

.c-titlemid {
  font-size: clamp(1.125rem, 1.39vw, 1.25rem);
  font-weight: 700;
  line-height: 1.45;
  color: var(--color-primary);
}

.c-title--mail {
  width: 100%;
  text-align: center;
  justify-content: center;
  border: none;
}
.c-title--mail::before {
  display: none;
}

/* c-news__ */
.c-news__list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 0;
  margin-top: 36px;
}
@media screen and (min-width: 768px) {
  .c-news__list {
    gap: 20px 0;
  }
}

.c-news__item {
  width: 100%;
}

.c-news__link {
  display: flex;
  flex-direction: column;
  row-gap: clamp(10px, 1.39vw, 20px);
}
@media screen and (min-width: 768px) {
  .c-news__link {
    align-items: flex-start;
    flex-direction: row;
    column-gap: 18px;
  }
}

.c-news__box {
  display: flex;
  flex-direction: column;
  row-gap: clamp(12px, 1.67vw, 24px);
  flex: 1;
}

.c-news__imgbox {
  position: relative;
  flex: none;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-news__imgbox {
    width: 37.5%;
  }
}
.c-news__imgbox .c-img {
  height: auto;
  aspect-ratio: 16/9;
}

.c-news__inbox {
  margin-top: auto;
}

.c-news__title {
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .c-news__title {
    margin-bottom: 10px;
  }
}

.c-news__date {
  text-align: right;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .c-news__date {
    margin-bottom: 10px;
  }
}

.c-news__catlist {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.c-news__cat {
  font-size: 0.75rem;
  line-height: 1.4;
  font-weight: 500;
  background-color: var(--color-primary);
  color: #fff;
  padding: 3px;
}
@media screen and (min-width: 768px) {
  .c-news__cat {
    font-size: min(1.3vw, 0.75rem);
  }
}

.c-news__catitem {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  max-width: 100%;
  background-color: var(--color-secondary);
}

.c-news__catlink {
  width: 100%;
  font-weight: 700;
  display: block;
  font-size: clamp(0.75rem, 0.97vw, 0.875rem);
  color: #fff;
  line-height: 1.2;
  text-align: left;
  padding: 8px 16px;
}

.c-news__toplist {
  display: flex;
  flex-wrap: wrap;
  gap: 60px clamp(20px, 2.78vw, 40px);
  padding: 0 10px;
  margin-top: 36px;
}
@media screen and (min-width: 768px) {
  .c-news__toplist {
    padding: 0;
  }
}

.c-news__topitem, .c-news__topitem--new {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-news__topitem, .c-news__topitem--new {
    width: calc((100% - clamp(18px, 1.94vw, 28px) * (2 - 1)) / 2);
    height: 100%;
  }
}
@media screen and (min-width: 1025px) {
  .c-news__topitem, .c-news__topitem--new {
    width: calc((100% - clamp(18px, 1.94vw, 28px) * (3 - 1)) / 3);
  }
}

@media screen and (min-width: 768px) {
  .c-news__topitem--new {
    height: auto;
    width: calc((100% - clamp(20px, 2.78vw, 40px) * (2 - 1)) / 2);
  }
}
@media screen and (min-width: 1025px) {
  .c-news__topitem--new {
    width: calc((100% - clamp(20px, 2.78vw, 40px) * (3 - 1)) / 3);
  }
}

@media screen and (min-width: 768px) {
  .c-news__toplink {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
}

.c-news__topimgbox {
  position: relative;
  width: 100%;
}
.c-news__topimgbox .c-img {
  height: auto;
  aspect-ratio: 16/9;
}

.c-news__topbox {
  margin-top: clamp(10px, 1.04vw, 15px);
}
@media screen and (min-width: 768px) {
  .c-news__topbox {
    flex: 1;
  }
}

.c-news__toptitle {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.5;
}

.c-news__topexcerpt {
  font-size: 1rem;
  margin-top: clamp(5px, 0.69vw, 10px);
}

/* c-single */
.c-single {
  font-size: clamp(1rem, 1.39vw, 1.13rem);
}
.c-single p {
  line-height: 2;
  margin-bottom: 0.5em;
}
.c-single h2 {
  font-size: clamp(1.25rem, 1.67vw, 1.5rem);
  line-height: 1.4;
  margin-top: 36px;
  margin-bottom: 1em;
  background-color: var(--color-primary);
  color: #fff;
  padding: 20px;
  word-break: break-all;
}
.c-single h3 {
  font-size: clamp(1.125rem, 1.53vw, 1.375rem);
  line-height: 1.4;
  margin-top: 36px;
  margin-bottom: 1em;
  color: var(--color-primary);
  word-break: break-all;
  background-color: #fff;
  border-left: 7px solid var(--color-primary);
  border-right: 1px solid var(--color-primary);
  border-top: 1px solid var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  padding: 8px 12px;
}
.c-single h4 {
  font-size: clamp(1rem, 1.39vw, 1.25rem);
  line-height: 1.4;
  margin-top: 36px;
  margin-bottom: 1em;
  word-break: break-all;
}
.c-single h5 {
  line-height: 1.4;
  margin-top: 36px;
  margin-bottom: 1em;
}
.c-single h6 {
  line-height: 1.4;
  margin-top: 36px;
}
.c-single ul {
  margin-bottom: 1em;
}
.c-single ul li {
  line-height: 2;
  display: flex;
}
.c-single ul li::before {
  content: "・";
  display: block;
}
.c-single ol {
  counter-reset: number 0;
  margin-bottom: 1em;
}
.c-single ol li {
  line-height: 2;
  display: flex;
  column-gap: 2px;
}
.c-single ol li::before {
  counter-increment: number 1;
  content: counter(number) ".";
  display: block;
}
.c-single figure {
  margin-top: 1em !important;
  margin-bottom: 1em !important;
}
.c-single figure img {
  height: auto;
  max-width: 100%;
}
.c-single a {
  color: var(--color-link);
  text-decoration: underline;
  text-decoration-skip-ink: none;
}
@media (hover: hover) {
  .c-single a {
    transition: opacity ease 0.3s;
  }
  .c-single a:hover, .c-single a:focus-visible {
    opacity: 0.8;
  }
}
.c-single a[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: auto;
  aspect-ratio: 1/1;
  background-image: url(../../uploads/blanklink-icon_img.png);
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: -4px;
}
.c-single strong {
  background: linear-gradient(to top, var(--color-btn) 40%, transparent 40%);
}
.c-single .wp-block-quote {
  position: relative;
  background-color: #E8EFF3;
  padding: clamp(25px, 2.08vw, 30px);
}
.c-single .wp-block-quote::after {
  position: absolute;
  left: 10px;
  top: 10px;
  content: "";
  display: block;
  width: clamp(0.9375rem, 2.6vw, 1.25rem);
  height: auto;
  aspect-ratio: 1/1;
  background-image: url(../../uploads/quoteleft-icon_img.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.c-single .wp-block-quote::before {
  position: absolute;
  right: 10px;
  bottom: 10px;
  content: "";
  display: block;
  width: clamp(0.9375rem, 2.6vw, 1.25rem);
  height: auto;
  aspect-ratio: 1/1;
  background-image: url(../../uploads/quoteright-icon_img.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.c-single cite {
  font-size: 0.75rem;
  text-align: right;
}
.c-single #toc_container ul li {
  flex-direction: column;
}
.c-single #toc_container ul li::before {
  display: none;
}
.c-single #toc_container {
  width: min(100%, 40.625rem) !important;
  margin: 36px auto 0;
  padding: clamp(10px, 1.95vw, 20px) clamp(15px, 2.6vw, 30px);
}
.c-single .toc_title {
  color: var(--color-secondary);
  font-size: clamp(1.125rem, 1.39vw, 1.25rem);
}
.c-single #toc_container span.toc_toggle {
  font-size: 1rem;
  margin-left: 0.25em;
}
.c-single #toc_container a {
  color: var(--color-primary);
}
.c-single .toc_list {
  font-size: 1rem;
}

.wp-pattern-point {
  position: relative;
  border: 2px solid #13477A;
  border-radius: 12px;
  padding: 20px;
  background-color: #fff;
  margin-bottom: 1.5em;
}

.wp-pattern-point-title {
  font-family: "Lato", sans-serif;
  font-size: clamp(1.125rem, 1.39vw, 1.25rem);
  font-weight: 700;
  line-height: 1 !important;
  color: #13477A;
  margin-bottom: 0.5em !important;
}

.wp-pattern-point-list {
  margin-bottom: 0 !important;
}

.wp-pattern-point-list li {
  color: #13477A;
  font-weight: 500;
}

/* p-404 */
.p-404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 40px;
  margin-top: 45px;
}

.p-404__btn {
  margin-top: 20px;
}

.p-404__pickup {
  margin-top: 100px;
}

.p-404__pickuptitle::before {
  background-image: url(../../uploads/pickup-icon_img.png);
  aspect-ratio: 32/36;
}

/* p-privacy */
.p-privacy {
  margin-top: 36px;
}
.p-privacy h2 {
  font-size: clamp(1.125rem, 1.39vw, 1.25rem);
  font-weight: 700;
  line-height: 1.45;
  color: var(--color-primary);
  margin-bottom: clamp(10px, 2.6vw, 20px);
}
.p-privacy h2:not(:first-of-type) {
  margin-top: 40px;
}
.p-privacy p, .p-privacy a, .p-privacy li {
  line-height: 2;
}

/* p-contact */
.p-contact {
  margin-top: 36px;
  max-width: 42.5rem;
}

.p-contact__title {
  margin-bottom: 30px;
}

.p-contact__btn {
  margin: 36px auto 0;
}

/* p-single */
.p-single {
  margin-top: 36px;
}

.p-single__date {
  font-size: clamp(0.75rem, 0.97vw, 0.875rem);
  font-weight: 700;
  margin-bottom: 8px;
}

.p-single__metabox {
  position: relative;
  margin-top: 24px;
  margin-bottom: 36px;
}

.p-single__imgbox {
  border: 1px solid var(--color-primary);
}
.p-single__imgbox .c-img {
  vertical-align: middle;
  aspect-ratio: 16/9;
}

.p-single__taglist {
  margin-top: clamp(60px, 8.33vw, 120px);
}

/* p-top */
.p-topcategory__container {
  display: flex;
  flex-direction: column;
  padding: 0 10px;
}
@media screen and (min-width: 768px) {
  .p-topcategory__container {
    padding: 0;
  }
}

.p-topcategory {
  display: flex;
  flex-wrap: wrap;
  gap: 60px clamp(18px, 1.94vw, 28px);
  padding: 36px 0;
  border-bottom: 2px solid var(--color-primary);
}
@media screen and (min-width: 768px) {
  .p-topcategory {
    align-items: flex-start;
  }
}

.p-topcategory__titlebox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: clamp(20px, 2.08vw, 30px);
  width: 100%;
  background-color: #fff;
  box-shadow: 4px 5px 0 var(--color-primary);
  border: 2px solid var(--color-primary);
  padding: clamp(20px, 2.78vw, 40px) 20px;
}
@media screen and (min-width: 768px) {
  .p-topcategory__titlebox {
    width: max(12.5rem, 23.4%);
    flex: none;
  }
}

.p-topcategory__imgbox .c-img {
  width: auto;
  height: clamp(5rem, 5.56vw, 6.25rem);
  object-fit: contain;
}

.p-topcategory__title {
  font-size: clamp(1.375rem, 1.94vw, 1.75rem);
  font-weight: 700;
  color: var(--color-primary);
}

.p-topcategory__list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  row-gap: 60px;
}
@media screen and (min-width: 768px) {
  .p-topcategory__list {
    gap: clamp(18px, 1.94vw, 28px);
    flex: 1;
  }
}

.p-top__subtaglist {
  padding-top: clamp(10px, 1.04vw, 15px);
  margin-top: clamp(14px, 1.67vw, 24px);
  border-top: 1px solid var(--color-primary);
}

.p-top__newsbtn {
  margin: 60px auto 0;
}

.p-top__search {
  column-gap: 15px;
  margin-bottom: 60px;
}

.p-top__searchbtn {
  width: 4rem;
}

.p-top__tag {
  position: relative;
  margin-top: clamp(100px, 9.86vw, 142px);
}

.p-top__tagwrapper {
  background-color: #fff;
  padding: 60px 10px 30px;
  margin-bottom: 54px;
}

.p-top__taglist {
  max-width: 59.375rem;
  margin: 0 auto;
}

.p-top__tagtitle {
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  font-size: clamp(1.375rem, 1.67vw, 1.5rem);
  font-weight: 700;
  color: var(--color-primary);
  padding: 16px clamp(28px, 3.75vw, 54px);
  border-radius: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  width: max-content;
  margin: 0 auto;
}

.p-top__sliderimg {
  border: 1px solid var(--color-primary);
  border-top: none;
}
@media screen and (min-width: 768px) {
  .p-top__sliderimg {
    border-right: none;
  }
}
.p-top__sliderimg .c-img {
  height: auto;
  aspect-ratio: 16/9;
}

.p-top__sliderlink {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.p-top__sliderbox {
  position: relative;
  z-index: 2;
  width: calc(100% - clamp(1.125rem, 2.78vw, 2.5rem) * 2);
  margin: -11.2vw auto 0;
  flex: 1;
  background-color: #fff;
  border: 1px solid var(--color-secondary);
  padding: 0 clamp(15px, 2.08vw, 30px) clamp(20px, 2.78vw, 40px);
}
@media screen and (min-width: 768px) {
  .p-top__sliderbox {
    width: 80%;
    margin-top: -5.14vw;
  }
}

.p-top__slidercat {
  background-color: var(--color-primary);
  color: #fff;
  font-weight: 700;
  max-width: 100%;
  width: max-content;
  padding: 0 24px;
  border-radius: 20px;
  margin-top: -14px;
}

.p-top__slidertitle {
  padding-top: clamp(5px, 1.81vw, 26px);
}

/* p-mail */
@media screen and (min-width: 1025px) {
  .p-mail__contents {
    width: calc(100% - 25rem - 40px);
  }
}

.p-mail__form {
  width: 100%;
  margin-top: 40px;
}
@media screen and (min-width: 1025px) {
  .p-mail__form {
    max-width: 25rem;
    flex: none;
    margin-top: 0;
  }
  .p-mail__form .c-form__title {
    width: 100%;
  }
}
.p-mail__form form {
  gap: 20px !important;
}

.p-mail__title {
  font-size: clamp(1.5rem, 2.22vw, 2rem);
  margin: 40px 0 60px;
  text-align: center;
  width: 100%;
  color: var(--color-primary);
}

.p-mail__subtitle {
  padding: 15px;
  background-color: var(--color-primary);
  color: #fff;
  font-size: clamp(1.375rem, 1.94vw, 1.75rem);
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.03em;
}
.p-mail__subtitle span {
  color: var(--color-btn);
}

.p-mail__contentslist {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.p-mail__thumb {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-mail__thumb {
    width: calc((100% - 5px * (2 - 1)) / 2);
  }
}

.p-mail__text {
  line-height: 2;
  font-weight: 500;
}
.p-mail__text:first-of-type {
  margin-top: 2em;
}

.p-mail__btn {
  height: 3.75rem;
  width: calc(min(100%, 23.75rem) + 4px);
}

.p-mail__submit input {
  font-size: 1.125rem;
}

.p-mail__policy {
  height: 15.625rem;
  background-color: #fff;
  overflow-y: scroll;
  padding: 10px;
  border-radius: 10px;
}
.p-mail__policy .wp-block-heading {
  font-weight: 700;
  font-size: 1.0625rem;
  margin-top: 1em;
}
.p-mail__policy p, .p-mail__policy li, .p-mail__policy a {
  line-height: 1.8;
  font-size: 0.875rem;
}

/* WP */
/* 前後の記事へのリンク */
.post-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 50px;
  margin-top: 60px;
}
.post-navigation a {
  line-height: 1.75;
  width: 100%;
  height: 100%;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  column-gap: 16px;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  background-color: #fff;
  border: 2px solid var(--color-primary);
}
@media (hover: hover) {
  .post-navigation a {
    transition: background-color ease 0.3s, color ease 0.3s;
  }
  .post-navigation a::before, .post-navigation a::after {
    transition: background-color ease 0.3s;
  }
}

.post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  flex-direction: column-reverse;
  row-gap: 10px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .post-navigation .nav-links {
    flex-direction: row;
    flex-direction: row-reverse;
    row-gap: 0;
  }
}

.post-navigation .nav-previous {
  width: 100%;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .post-navigation .nav-previous {
    width: 41.7%;
  }
}
.post-navigation .nav-previous span {
  flex: 1;
}
.post-navigation .nav-previous a::after {
  flex: none;
  content: "";
  display: block;
  width: 1rem;
  height: auto;
  aspect-ratio: 16/19;
  background-color: var(--color-primary);
  -webkit-mask-image: url(../../uploads/arrownext-icon_img.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
}
@media (hover: hover) {
  .post-navigation .nav-previous:hover a, .post-navigation .nav-previous:focus-visible a {
    background-color: var(--color-primary);
    color: #fff;
  }
  .post-navigation .nav-previous:hover a::after, .post-navigation .nav-previous:focus-visible a::after {
    background-color: #fff;
  }
}

.post-navigation .nav-next {
  margin-right: auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .post-navigation .nav-next {
    width: 41.7%;
  }
}
.post-navigation .nav-next span {
  flex: 1;
}
.post-navigation .nav-next a::before {
  flex: none;
  content: "";
  display: block;
  width: 1rem;
  height: auto;
  aspect-ratio: 16/19;
  background-color: var(--color-primary);
  -webkit-mask-image: url(../../uploads/arrowprev-icon_img.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
}
@media (hover: hover) {
  .post-navigation .nav-next:hover a, .post-navigation .nav-next:focus-visible a {
    background-color: var(--color-primary);
    color: #fff;
  }
  .post-navigation .nav-next:hover a::before, .post-navigation .nav-next:focus-visible a::before {
    background-color: #fff;
  }
}

/* ページネーション */
.pagination .nav-links {
  position: relative;
  font-family: var(--font-en);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0 3px;
  user-select: none;
  -webkit-user-select: none;
  max-width: max-content;
  margin: clamp(60px, 5.56vw, 80px) auto 0;
}

.pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-en);
  font-size: clamp(1rem, 2.34vw, 1.25rem);
  width: clamp(2.375rem, 4.95vw, 3rem);
  height: clamp(2.375rem, 4.95vw, 3rem);
  border-radius: 0;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  border: 1px solid transparent;
  border-radius: 50%;
  color: rgba(22, 46, 89, 0.3);
}
@media (hover: hover) {
  .pagination .page-numbers {
    transition: color ease 0.3s, border-color ease 0.3s;
  }
  .pagination .page-numbers:hover, .pagination .page-numbers:focus-visible {
    color: var(--color-primary);
    border-color: var(--color-primary);
  }
}

.pagination .nav-links .page-numbers.current {
  color: var(--color-secondary);
}

.pagination .nav-links .page-numbers.dots {
  color: var(--color-secondary);
  pointer-events: none;
}

.page-numbers.prev,
.page-numbers.next {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-secondary);
  background-color: var(--color-secondary);
}
@media (hover: hover) {
  .page-numbers.prev,
  .page-numbers.next {
    transition: background-color ease 0.3s;
  }
  .page-numbers.prev span::after,
  .page-numbers.next span::after {
    transition: background-color ease 0.3s;
  }
  .page-numbers.prev:hover, .page-numbers.prev:focus-visible,
  .page-numbers.next:hover,
  .page-numbers.next:focus-visible {
    background-color: #fff;
  }
  .page-numbers.prev:hover span::after, .page-numbers.prev:focus-visible span::after,
  .page-numbers.next:hover span::after,
  .page-numbers.next:focus-visible span::after {
    background-color: var(--color-secondary);
  }
}
.page-numbers.prev span,
.page-numbers.next span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.page-numbers.prev span::after,
.page-numbers.next span::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  content: "";
  display: block;
  width: clamp(0.9375rem, 1.39vw, 1.25rem);
  height: auto;
  aspect-ratio: 20/24;
  background-color: #fff;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
}

.page-numbers.prev {
  left: calc(1.5 * clamp(1.75rem, 3.33vw, 3rem) * -1);
}
.page-numbers.prev span::after {
  -webkit-mask-image: url(../../uploads/arrowprev-icon_img.png);
}

.page-numbers.next {
  right: calc(1.5 * clamp(1.75rem, 3.33vw, 3rem) * -1);
}
.page-numbers.next span::after {
  -webkit-mask-image: url(../../uploads/arrownext-icon_img.png);
}

/* u-display */
.u-hidden {
  display: none;
}

.u-block {
  display: block;
}

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

.u-inline {
  display: inline;
}

.u-flex {
  display: flex;
}

.u-grid {
  display: grid;
}

@media screen and (min-width: 768px) {
  .md\:u-hidden {
    display: none;
  }
  .md\:u-block {
    display: block;
  }
  .md\:u-inline-block {
    display: inline-block;
  }
  .md\:u-inline {
    display: inline;
  }
  .md\:u-flex {
    display: flex;
  }
  .md\:u-grid {
    display: grid;
  }
}
@media screen and (min-width: 1025px) {
  .lg\:u-hidden {
    display: none;
  }
  .lg\:u-block {
    display: block;
  }
  .lg\:u-inline-block {
    display: inline-block;
  }
  .lg\:u-inline {
    display: inline;
  }
  .lg\:u-flex {
    display: flex;
  }
  .lg\:u-grid {
    display: grid;
  }
}
/* u-weight */
.u-font-light {
  font-weight: 300;
}

.u-font-normal {
  font-weight: 400;
}

.u-font-medium {
  font-weight: 500;
}

.u-font-semibold {
  font-weight: 600;
}

.u-font-bold {
  font-weight: 700;
}

.u-font-black {
  font-weight: 900;
}

/* u-cursor */
.u-cursor-pointer {
  cursor: pointer;
}

.u-pointer-events-none {
  pointer-events: none;
}

.u-select-none {
  user-select: none;
  -webkit-user-select: none;
}

/* u-textalign */
.u-text-center {
  text-align: center;
}

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

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

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

/* position */
.u-fixed {
  position: fixed;
}

.u-static {
  position: static;
}

.u-absolute {
  position: absolute;
}

.u-relative {
  position: relative;
}

.u-sticky {
  position: sticky;
}

.u-z-2 {
  z-index: 2;
}

/* u-margin */
.u-mt-36 {
  margin-top: 36px;
}

.u-mt-80 {
  margin-top: clamp(60px, 10.42vw, 80px);
}

.u-pt-0 {
  padding-top: 0;
}

/* line-height */
.u-leading-none {
  line-height: 1;
}

.u-leading-tight {
  line-height: 1.25;
}

.u-leading-normal {
  line-height: 1.5;
}

.u-leading-loose {
  line-height: 1.75;
}

/* word-break */
.u-break-all {
  word-break: break-all;
}

/* decolation */
.u-underline {
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

/* indent */
.u-indent {
  padding-left: 1em;
  text-indent: -1em;
}

/* javascript*/
.is-navi-open .l-header__spmenu {
  position: relative;
  z-index: 10;
}
.is-navi-open .l-header__spham {
  transform: translateY(0.125rem) rotate(-45deg);
}
.is-navi-open .l-header__spham--2 {
  display: none;
}
.is-navi-open .l-header__spham--3 {
  transform: rotate(45deg);
}
.is-navi-open .l-header__nav {
  z-index: 8;
  opacity: 1;
  visibility: visible;
}

.is-body-fixed {
  overflow: clip;
}

.js-url {
  cursor: pointer;
}

.is-faq--open .p-faq__answerbox {
  display: flex;
  opacity: 1;
}

.is-hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

/* animation */
@media (hover: hover) {
  .a-hover {
    transition: opacity ease 0.3s;
  }
  .a-hover:hover, .a-hover:focus-visible {
    opacity: 0.6;
  }
}