@charset "UTF-8";
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*,
*::before,
*::after {
  font-style: normal;
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

/* original */
p {
  line-height: 1.75;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

:root {
  --brand: #e4b7a0;
  --accent: #c7a97e;
  --gray-600: #757575;
  --gray-300: #e0e0e0;
  --gray-100: #f5f5f5;
  --color-white: #ffffff;
  --color-grey: #212121;
  --color-black: #000000;
  --color-grey-lightness: #f0f0f0;
  --color-primary: #e4b7a0;
  --color-secondary: #c7a97e;
  --color-text: #3a2e25;
  --color-background: #fbfaf7;
}

html {
  font-size: 16px;
}

body {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  line-height: 1.6;
  color: #000000;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: var(--color-text);
  background: var(--color-background);
}

.container {
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
}
.container.u-wrap-side {
  max-width: 1048px;
  padding-inline: 24px;
}

.container-l {
  max-width: 1200px;
  margin-inline: auto;
}
.container-l.u-wrap-side {
  max-width: 1248px;
  padding-inline: 24px;
}

.container-s {
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
}
.container-s.u-wrap-side {
  max-width: 848px;
  padding-inline: 24px;
}

.container-xs {
  max-width: 640px;
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  color: #fff;
  background: var(--color-primary);
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn.line {
  background-color: #06c755;
}
.btn:hover {
  background: rgb(219.4131147541, 160.1016393443, 129.7868852459);
}
.btn.btn-round {
  border-radius: calc(infinity * 1px);
  padding-block: 14px;
  padding-inline: 32px;
}
.btn.arrow-right {
  padding-inline: 32px 16px;
}
.btn.arrow-right::after {
  content: "\f138";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  margin-bottom: -0.2em;
}
.btn.arrow-right:has(i) {
  padding-left: 16px;
}

.u-sr-only {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.u-center {
  margin-inline: auto;
}

.pc {
  display: inline-block;
}
@media (max-width: 1023px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media (max-width: 599px) {
  .sp {
    display: inline-block;
  }
}

.align-center {
  text-align: center;
}

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

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

@media (max-width: 599px) {
  .sp-align-center {
    text-align: center;
  }
  .sp-align-left {
    text-align: justify;
  }
  .sp-align-right {
    text-align: right;
  }
}
.mb8 {
  margin-bottom: 8px;
}

.mb16 {
  margin-bottom: 16px;
}

.mb24 {
  margin-bottom: 24px;
}

.mb32 {
  margin-bottom: 32px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb48 {
  margin-bottom: 48px;
}

.mb56 {
  margin-bottom: 56px;
}

.mb64 {
  margin-bottom: 64px;
}

@media (max-width: 599px) {
  .sp-mb8 {
    margin-bottom: 8px;
  }
  .sp-mb16 {
    margin-bottom: 16px;
  }
  .sp-mb24 {
    margin-bottom: 24px;
  }
  .sp-mb32 {
    margin-bottom: 32px;
  }
  .sp-mb40 {
    margin-bottom: 40px;
  }
  .sp-mb48 {
    margin-bottom: 48px;
  }
  .sp-mb56 {
    margin-bottom: 56px;
  }
  .sp-mb64 {
    margin-bottom: 64px;
  }
}
header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  padding-inline: 32px;
  background-color: var(--color-white);
  box-shadow: 0 -1px 6px #ccc;
}
@media (max-width: 1023px) {
  header {
    z-index: 100;
    padding-inline: 0;
    max-height: 70px;
    overflow: hidden;
  }
}
header .container-l {
  display: grid;
  grid-template-columns: max-content auto;
  gap: 24px;
  justify-content: space-between;
}
@media (max-width: 599px) {
  header .container-l {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    max-width: 100%;
    min-height: 70px;
  }
}
header .logo {
  display: inline-block;
  transition: color 0.3s ease;
}
header .logo.is-dark {
  color: var(--brand);
}
header .logo svg {
  width: 300px;
  height: auto;
  max-width: 20vw;
}
header .logo svg .cls-1 {
  fill: #a69d92;
}
@media (max-width: 599px) {
  header .logo svg {
    width: 200px;
    max-width: calc(100vw - 100px);
  }
}
header .logo.active .cls-1 {
  fill: var(--color-white);
}
header .site__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
  padding-block: 16px;
  line-height: 1;
  z-index: 100;
}
@media (max-width: 1023px) {
  header .site__title {
    padding-block: 0;
    padding-inline: 16px;
    gap: 2px;
  }
}
header .site__title p {
  font-size: 14px;
}
@media (max-width: 1023px) {
  header .site__title p {
    font-size: 10px;
  }
}
header .site__nav {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 32px;
}
@media (max-width: 1023px) {
  header .site__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-primary);
    flex-direction: column;
    justify-content: center;
    padding: 32px;
    /* 最初は非表示（透明＋少し上にずらす） */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  header .site__nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
header .site__nav a {
  text-decoration: none;
  transition: all 0.2s;
}
header .site__nav a:hover {
  opacity: 0.8;
}
@media (max-width: 599px) {
  header .site__nav a {
    font-size: 18px;
  }
}
header .site__nav .site__nav-global {
  display: flex;
  flex-direction: row;
  gap: 0;
  list-style: none;
  align-items: center;
  padding: 0;
}
@media (max-width: 1023px) {
  header .site__nav .site__nav-global {
    flex-direction: column;
    gap: 24px;
  }
}
header .site__nav .site__nav-global li {
  position: relative;
  height: 100%;
}
header .site__nav .site__nav-global li::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 4px;
  background-color: var(--color-primary);
  opacity: 0;
  transition: all 0.2s;
}
header .site__nav .site__nav-global li.current-menu-item::after {
  opacity: 1;
}
header .site__nav .site__nav-global a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  padding-inline: 16px;
  height: 100%;
  color: var(--color-text);
}
@media (max-width: 1023px) {
  header .site__nav .site__nav-global a {
    font-size: 22px;
  }
}
header .site__nav .site__nav-global a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 4px;
  background-color: var(--color-primary);
  opacity: 0;
  transition: all 0.2s;
}
header .site__nav .site__nav-global a:hover::after {
  opacity: 1;
}
header .site__nav .site__nav-global a.active::after {
  opacity: 1;
}
header .site__nav .site__nav-submenu {
  display: none;
}
@media (max-width: 1023px) {
  header .site__nav .site__nav-submenu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
header .site__nav .site__nav-submenu a {
  display: block;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
header .site__nav .site__nav-cta {
  border-right: 1px solid #ccc;
}
@media (max-width: 1023px) {
  header .site__nav .site__nav-cta {
    border-right: unset;
  }
}
header .site__nav .site__nav-cta a {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  background-color: var(--color-primary);
  padding-inline: 16px;
  font-size: 14px;
  color: #fff;
}
@media (max-width: 1023px) {
  header .site__nav .site__nav-cta a {
    font-size: 18px;
    background-color: var(--color-white);
    color: var(--color-primary);
    border-radius: calc(infinity * 1px);
    padding: 16px;
  }
}
header .site__nav-sp {
  position: relative;
  aspect-ratio: 1/1;
  display: none;
}
@media (max-width: 1023px) {
  header .site__nav-sp {
    width: 70px;
    display: block;
    background-color: var(--color-primary);
  }
}
header .site__nav-sp:hover {
  cursor: pointer;
}
header .site__nav-sp span {
  position: absolute;
  display: block;
  transition: all 0.2s;
  color: var(--color-white);
}
header .site__nav-sp span:nth-of-type(-n + 3) {
  width: 30px;
  height: 2px;
  border-radius: 4px;
  background-color: var(--color-white);
  left: 20px;
}
header .site__nav-sp span:nth-of-type(1) {
  top: 18px;
}
header .site__nav-sp span:nth-of-type(2) {
  top: 28px;
}
header .site__nav-sp span:nth-of-type(3) {
  top: 38px;
}
header .site__nav-sp span:nth-of-type(4) {
  width: 100%;
  bottom: 4px;
  font-size: 12px;
  text-align: center;
}
header .site__nav-sp.active span:nth-of-type(1) {
  top: 28px;
  transform: rotate(45deg);
}
header .site__nav-sp.active span:nth-of-type(2) {
  display: none;
}
header .site__nav-sp.active span:nth-of-type(3) {
  top: 28px;
  transform: rotate(-45deg);
}
header .header-menu {
  position: relative;
  top: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 50px;
  padding-block: 24px;
  background-color: var(--color-white);
  border-radius: calc(infinity * 1px);
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1023px) {
  header .header-menu {
    padding-block: 12px;
    z-index: auto;
  }
}
@media (max-width: 1023px) {
  header .header-menu .site-title {
    width: 100%;
  }
  header .header-menu .site-title img {
    margin-inline: auto;
  }
}
@media (max-width: 1023px) and (max-width: 1023px) {
  header .header-menu .site-title img {
    height: 29px;
  }
}
header .header-menu .global-sp_navi {
  position: relative;
  display: none;
}
@media (max-width: 1023px) {
  header .header-menu .global-sp_navi {
    display: block;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 100;
  }
}
header .header-menu .global-sp_navi span {
  position: absolute;
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 4px;
  background-color: var(--color-black);
  left: 16px;
  transition: all 0.2s;
}
header .header-menu .global-sp_navi span:nth-of-type(1) {
  top: 18px;
}
header .header-menu .global-sp_navi span:nth-of-type(2) {
  top: 25px;
}
header .header-menu .global-sp_navi span:nth-of-type(3) {
  top: 32px;
}
header .header-menu .global-sp_navi span:nth-of-type(4) {
  bottom: 0;
}
header .header-menu .global-sp_navi.active span:nth-of-type(1) {
  top: 25px;
  transform: rotate(45deg);
}
header .header-menu .global-sp_navi.active span:nth-of-type(2) {
  display: none;
}
header .header-menu .global-sp_navi.active span:nth-of-type(3) {
  top: 25px;
  transform: rotate(-45deg);
}
header .header-menu .global-menu {
  display: block;
}
@media (max-width: 1023px) {
  header .header-menu .global-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s;
    z-index: -1;
    padding-inline: 32px;
    background-color: var(--color-pink-light);
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
}
header .header-menu .global-menu.active {
  right: 0;
}
header .header-menu .global-menu ul {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 1023px) {
  header .header-menu .global-menu ul {
    width: 100%;
    flex-direction: column;
    gap: 0;
  }
}
@media (max-width: 1023px) {
  header .header-menu .global-menu ul li {
    width: 100%;
  }
  header .header-menu .global-menu ul li:not(:last-of-type) {
    border-bottom: 1px solid var(--color-black);
  }
}
header .header-menu .global-menu ul li a {
  position: relative;
  display: inline-block;
  color: var(--color-black);
  transition: all 0.2s;
}
@media (max-width: 1023px) {
  header .header-menu .global-menu ul li a {
    display: block;
    padding: 16px 40px;
    text-align: center;
  }
  header .header-menu .global-menu ul li a::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 24px;
    font-size: 16px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f105";
  }
}
header .header-menu .global-menu ul li a:hover {
  color: var(--color-pink-dark);
}
header .header-menu .global-menu ul li.current-menu-item a {
  color: var(--color-pink-dark);
}

.contents_2col {
  display: grid;
  grid-template-columns: auto 300px;
  gap: 100px;
  padding-bottom: 120px;
}
@media (max-width: 1023px) {
  .contents_2col {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}

/* side */
.side {
  display: flex;
  flex-direction: column;
  gap: 54px;
}
@media (max-width: 599px) {
  .side {
    gap: 48px;
  }
}
.side .side_author {
  position: relative;
  padding: 40px 24px;
  border: 1px solid #000;
  border-radius: 20px;
  background-color: var(--white);
}
.side .side_author .side_author-title {
  position: absolute;
  width: max-content;
  text-align: center;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../images/speech_pink.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  padding: 8px 32px 16px;
  font-size: 21px;
  font-weight: 700;
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
}
.side .side_author .side_author-image img {
  width: 130px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--color-grey);
  object-fit: cover;
  margin-inline: auto;
  margin-bottom: 20px;
}
.side .side_author .side_author-name {
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}
.side .side_author .side_author-desc {
  font-size: 14px;
  text-align: center;
  margin-bottom: 16px;
}
.side .side_author .side_author-link {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
  list-style: none;
  font-size: 20px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
.side .side_author .side_author-link a {
  color: var(--color-black);
}
.side .side_box .side_box-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.side .side_related .side_related-posts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
}
.side .side_related .side_related-posts .post_detail {
  display: grid;
  grid-template-columns: 120px auto;
  gap: 0;
  align-items: center;
  background-color: var(--color-grey-lightness);
  color: var(--color-black);
}
.side .side_related .side_related-posts .post_detail:not(:last-of-type) {
  border-bottom: 1px solid var(--color-white);
}
.side .side_related .side_related-posts .post_detail .post_detail-thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  background-color: var(--color-grey);
}
.side .side_related .side_related-posts .post_detail .post_detail-title {
  padding: 24px;
  font-size: 14px;
}
.side .side_category .side_category-list {
  display: grid;
  grid-template-columns: 1fr;
  list-style: none;
  border: 1px solid var(--color-black);
  padding-inline: 0;
}
.side .side_category .side_category-list:not(:last-of-type) {
  border-bottom: none;
}
.side .side_category .side_category-list li:not(:last-of-type) {
  border-bottom: 1px solid var(--color-black);
  background-color: var(--color-white);
}
.side .side_category .side_category-list li.cat-item-none {
  position: relative;
  padding: 16px;
}
.side .side_category .side_category-list li.cat-item-none::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 24px;
  font-size: 16px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f105";
}
.side .side_category .side_category-list li a {
  position: relative;
  color: var(--color-black);
  display: block;
  padding: 16px;
}
.side .side_category .side_category-list li a::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.2s;
  right: 24px;
  font-size: 16px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f105";
}
.side .side_category .side_category-list li a:hover::after {
  right: 16px;
}
.side .side_archive select {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  background-color: var(--color-pink-light);
  border: none;
  border-radius: 6px;
}

main {
  overflow: clip;
}

/* footer */
footer {
  position: relative;
  overflow: hidden;
}
footer .breadcrumbs {
  font-size: 14px;
  background-color: var(--color-white);
  padding-block: 8px;
}
@media (max-width: 599px) {
  footer .breadcrumbs {
    font-size: 12px;
  }
}
footer .footer {
  padding-block: 40px;
}
footer .footer .container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}
@media (max-width: 599px) {
  footer .footer .container {
    flex-direction: column;
    gap: 40px;
  }
}
footer .footer .container .footer-left svg {
  width: 260px;
  height: auto;
}
footer .footer .container .footer-left svg .cls-1 {
  fill: #a69d92;
}
@media (max-width: 599px) {
  footer .footer .container .footer-left svg {
    margin-inline: auto;
  }
}
footer .footer .container .footer-right .footer-link {
  display: grid;
  grid-auto-flow: column;
  grid-auto-rows: auto;
  grid-template-rows: repeat(4, auto);
  gap: 16px 64px;
  list-style: none;
  padding: 0;
}
@media (max-width: 599px) {
  footer .footer .container .footer-right .footer-link {
    grid-auto-flow: row;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 16px 32px;
    padding-inline: 24px;
  }
}
footer .footer .container .footer-right .footer-link li {
  position: relative;
  padding-left: 1em;
}
footer .footer .container .footer-right .footer-link li::before {
  position: absolute;
  top: 0.5em;
  left: 0;
  content: "\f105";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  font-size: 0.7em;
  color: var(--color-secondary);
}
footer .footer .container .footer-right .footer-link a {
  text-decoration: none;
  color: var(--color-text);
}
@media (max-width: 1023px) {
  footer .footer .container .footer-right .footer-link a {
    font-size: 12px;
  }
}
footer .footer-info {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding-block: 16px;
}
footer .footer-info .container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}
@media (max-width: 599px) {
  footer .footer-info .container {
    flex-direction: column;
  }
}
footer .footer-info .container .company-link {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  padding: 0;
  list-style: none;
  gap: 32px;
  font-size: 14px;
}
@media (max-width: 599px) {
  footer .footer-info .container .company-link {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 16px;
  }
}
footer .footer-info .container .copy {
  text-align: center;
  font-size: 12px;
}
footer .footer-info .container a {
  color: var(--color-white);
}

.footer {
  position: relative;
}
.footer .footer_cta {
  position: relative;
  width: 100%;
  max-width: 860px;
  margin-inline: auto;
  margin-top: -200px;
  margin-bottom: 48px;
  padding: 56px 50px 40px 50px;
  border: 1px solid var(--color-black);
  border-radius: 20px;
  background-color: var(--color-white);
  z-index: 1;
}
@media (max-width: 1023px) {
  .footer .footer_cta {
    margin-top: -300px;
  }
}
.footer .footer_cta .footer_cta-title {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  font-size: 22px;
  font-weight: 700;
  font-family: "Quicksand", sans-serif;
  letter-spacing: 1px;
  color: var(--color-white);
  text-align: center;
  background-image: url(../images/speech_black.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  padding: 8px 32px 16px;
}
.footer .footer_cta .footer_cta-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}
@media (max-width: 1023px) {
  .footer .footer_cta .footer_cta-list {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.footer .footer_cta .footer_cta-list .catch {
  width: fit-content;
  padding-inline: 8px;
  position: relative;
  text-align: center;
  margin-inline: auto;
  margin-bottom: 12px;
}
.footer .footer_cta .footer_cta-list .catch::before, .footer .footer_cta .footer_cta-list .catch::after {
  position: absolute;
  width: 1px;
  height: 14px;
  bottom: 0.5em;
  transform: translateY(-50%);
  background-color: var(--color-black);
  content: "";
}
.footer .footer_cta .footer_cta-list .catch::before {
  left: 0;
  transform: rotate(-20deg);
}
.footer .footer_cta .footer_cta-list .catch::after {
  right: 0;
  transform: rotate(20deg);
}
.footer .footer_cta .footer_cta-list .btn {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 16px 40px;
  background-color: var(--color-pink);
  border-radius: calc(infinity * 1px);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  line-height: 1;
  color: var(--color-black);
}
.footer .footer_cta .footer_cta-list .btn i {
  font-size: 20px;
  margin-right: 12px;
}
.footer .footer_cta .footer_cta-list .btn::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 24px;
  font-size: 16px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f105";
  transition: right 0.2s;
}
.footer .footer_cta .footer_cta-list .btn:hover::after {
  right: 16px;
}
.footer .breadcrumbs {
  margin-bottom: 64px;
  font-size: 14px;
}
@media (max-width: 599px) {
  .footer .breadcrumbs {
    margin-bottom: 40px;
  }
}
.footer .footer_main .footer_logo {
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 40px;
}
.footer .footer_main .footer_sitelink {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: 64px;
  padding-inline: 0;
  list-style: none;
  font-size: 15px;
}
@media (max-width: 599px) {
  .footer .footer_main .footer_sitelink {
    flex-direction: column;
    margin-bottom: 40px;
  }
}
.footer .footer_main .footer_sitelink a {
  color: var(--color-black);
}
.footer .footer_main .footer_copy {
  font-size: 12px;
  text-align: center;
}

/* sp */
.sp-fixed {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 60px;
}
@media (max-width: 599px) {
  .sp-fixed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    z-index: 200;
    background-color: var(--color-pink);
  }
}
.sp-fixed a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  color: var(--color-black);
  font-size: 11px;
  font-weight: normal;
  text-align: center;
}
.sp-fixed a i {
  font-size: 18px;
}

/* parts */
.breadcrumbs i {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 8px;
}
.breadcrumbs a {
  text-decoration: underline;
  color: var(--color-black);
}

.wp-pagenavi {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  padding-block: 64px;
}
@media (max-width: 1023px) {
  .wp-pagenavi {
    padding-block: 40px;
  }
}
.wp-pagenavi a {
  color: var(--color-black);
}

.navigation {
  padding-block: 48px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
@media (max-width: 599px) {
  .navigation {
    flex-direction: column;
  }
}

div.wpcf7 .wpcf7-spinner {
  display: block;
}

.general-cta {
  padding-block: 80px;
  background-color: var(--color-primary);
}
@media (max-width: 599px) {
  .general-cta {
    padding-block: 40px;
  }
}
.general-cta .general-cta--header {
  margin-bottom: 32px;
  color: var(--color-white);
}
.general-cta .general-cta--header .title {
  font-size: 24px;
  margin-bottom: 24px;
}
@media (max-width: 599px) {
  .general-cta .general-cta--header .title {
    font-size: 20px;
    margin-bottom: 16px;
  }
}
@media (max-width: 599px) {
  .general-cta .general-cta--header .desc {
    font-size: 14px;
  }
}
.general-cta .general-cta--body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
}
@media (max-width: 599px) {
  .general-cta .general-cta--body {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.general-cta .general-cta--body .general-cta--detail {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  background-color: var(--color-white);
  padding: 24px;
  border-radius: 8px;
  text-align: center;
}
.general-cta .general-cta--body .general-cta--detail .title {
  font-size: 18px;
  font-weight: 500;
}

.headline-primary .en {
  font-size: 16px;
  font-family: "Inter", sans-serif;
  color: var(--color-secondary);
}
@media (max-width: 599px) {
  .headline-primary .en {
    font-size: 12px;
  }
}
.headline-primary .ja {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.4;
}
@media (max-width: 599px) {
  .headline-primary .ja {
    font-size: 22px;
  }
}
.headline-primary.align-center {
  text-align: center;
}

/* single */
.single-contents {
  padding-bottom: 64px;
}
@media (max-width: 599px) {
  .single-contents {
    padding-bottom: 40px;
  }
}
.single-contents .page-header {
  margin-bottom: 64px;
}
@media (max-width: 599px) {
  .single-contents .page-header {
    margin-bottom: 40px;
  }
}
.single-contents .container {
  display: grid;
  grid-template-columns: auto 240px;
  gap: 64px;
  align-items: flex-start;
}
@media (max-width: 599px) {
  .single-contents .container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.single-contents .container .post_content,
.single-contents .container .post_side {
  background-color: var(--color-white);
}
.single-contents .container .post_content {
  padding: 40px;
}
@media (max-width: 599px) {
  .single-contents .container .post_content {
    padding: 24px;
  }
}
.single-contents .container .post_side {
  padding: 40px 24px;
}
@media (max-width: 599px) {
  .single-contents .container .post_side {
    padding: 24px;
  }
}
.single-contents .container .post_side .widget_block:not(:last-of-type) {
  margin-bottom: 24px;
}
.single-contents .container .post_side .widget_block .wp-block-heading {
  width: 100%;
  padding: 8px 16px;
  border-radius: 3px;
  font-size: 14px;
  color: var(--color-white);
  background-color: var(--color-secondary);
}
.single-contents .container .post_side .widget_block .wp-block-categories-list,
.single-contents .container .post_side .widget_block .wp-block-archives-list {
  list-style: disc;
  padding-left: 2em;
  font-size: 14px;
}
.single-contents .container .post_side .widget_block .wp-block-tag-cloud a {
  color: var(--color-text);
}
.single-contents .post_head {
  margin-bottom: 40px;
}
.single-contents .post_head .post-thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  margin-bottom: 16px;
}
.single-contents .post_head .post-thumb.works {
  aspect-ratio: 1/1;
}
.single-contents .post_head .post_title {
  font-size: 24px;
  margin-bottom: 8px;
}
@media (max-width: 599px) {
  .single-contents .post_head .post_title {
    font-size: 20px;
  }
}
.single-contents .post_head .post-info {
  margin-bottom: 16px;
}
.single-contents .post_head .post-info .post-info--date {
  font-size: 12px;
}
.single-contents .post_head .post-info .post-info--category {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 4px 16px;
  line-height: 1;
  font-size: 12px;
  margin-left: 16px;
  border-radius: 3px;
}
.single-contents .post_head .post-author {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}
.single-contents .post_head .post-author .post-author--image {
  width: 60px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  object-fit: cover;
}
.single-contents .post_head .post-author .post-author--name dt {
  font-size: 12px;
}
.single-contents .post_head .post-author .post-author--name dd {
  font-size: 15px;
}
.single-contents .post_body {
  font-size: 15px;
}
.single-contents .post_body h1,
.single-contents .post_body h2,
.single-contents .post_body h3,
.single-contents .post_body h4,
.single-contents .post_body h5,
.single-contents .post_body h6 {
  font-weight: bold;
  margin-block: 1em 0.5em;
}
.single-contents .post_body h2 {
  font-size: 24px;
  border-left: 4px solid var(--color-primary);
  padding: 4px 8px;
}
@media (max-width: 599px) {
  .single-contents .post_body h2 {
    font-size: 20px;
  }
}
.single-contents .post_body h3 {
  font-size: 18px;
  padding: 8px 16px;
  background-color: var(--color-primary);
  border-radius: 3px;
}
@media (max-width: 599px) {
  .single-contents .post_body h3 {
    font-size: 16px;
  }
}
.single-contents .post_body h4,
.single-contents .post_body h5,
.single-contents .post_body h6 {
  font-size: 16px;
}
.single-contents .post_body p {
  font-size: 15px;
  line-height: 1.75;
  text-align: justify;
}
@media (max-width: 599px) {
  .single-contents .post_body p {
    font-size: 15px;
  }
}
.single-contents .post_body p:not(:last-of-type) {
  margin-bottom: 1em;
}
.single-contents .post_body ul,
.single-contents .post_body ol {
  padding-left: 2em;
  margin-bottom: 1em;
}
.single-contents .post_body ul {
  list-style: disc;
}
.single-contents .post_body ul li:not(:last-of-type) {
  margin-bottom: 8px;
}
.single-contents .post_body ol {
  list-style: decimal;
}
.single-contents .post_body blockquote {
  padding: 16px;
  font-style: italic;
  background-color: var(--color-background);
  margin-bottom: 1em;
}
.single-contents .post_body .wp-block-image {
  margin-block: 2em 1em;
}
.single-contents .post_body .wp-block-image .wp-element-caption {
  font-size: 0.8em;
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  margin-block: 24px 40px;
}
@media (max-width: 599px) {
  .post-navigation {
    flex-direction: row;
    gap: 20px;
  }
}
.post-navigation__item {
  flex: 1;
  display: flex;
  align-items: center;
}
.post-navigation__item--prev {
  justify-content: flex-start;
}
.post-navigation__item--list {
  justify-content: center;
}
.post-navigation__item--next {
  justify-content: flex-end;
}
.post-navigation--link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 6px;
  transition: opacity 0.2s ease;
}
@media (max-width: 599px) {
  .post-navigation--link {
    font-size: 14px;
  }
}
.post-navigation--link.is-prev {
  justify-content: flex-start;
}
.post-navigation--link.is-next {
  justify-content: flex-end;
}
.post-navigation--link:hover {
  opacity: 0.75;
}
.post-navigation--label {
  letter-spacing: 0.08em;
}
.post-navigation--icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #3b2e27;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
}

.post-relation {
  background-color: var(--color-white);
  padding: 24px 40px;
}
@media (max-width: 599px) {
  .post-relation {
    padding: 24px;
  }
}
.post-relation .headline {
  font-size: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-primary);
  margin-bottom: 24px;
}
.post-relation .post-relation--list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 599px) {
  .post-relation .post-relation--list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.post-relation .post-relation--list .archive-post--article {
  display: grid;
  gap: 8px;
  color: var(--color-text);
  text-decoration: none;
  transition: transform 0.2s ease;
}
.post-relation .post-relation--list .archive-post--article:hover {
  transform: scale(1.05);
}
.post-relation .post-relation--list .archive-post--article .post-thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 3px;
}
.post-relation .post-relation--list .archive-post--article .post-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}
.post-relation .post-relation--list .archive-post--article .post-info .post-info--category {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 6px 16px;
  border-radius: 3px;
}
.post-relation .post-relation--list .archive-post--article .post-title {
  font-size: 14px;
}
.post-relation .faq-relation--list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  list-style: disc;
  padding-left: 2em;
}
.post-relation .faq-relation--list .archive-post--article {
  display: grid;
  gap: 8px;
  color: var(--color-text);
  text-decoration: none;
}
.post-relation .faq-relation--list .archive-post--article .post-title {
  font-size: 16px;
}
@media (max-width: 599px) {
  .post-relation .faq-relation--list .archive-post--article .post-title {
    font-size: 14px;
  }
}
.post-relation .post-relation--empty {
  text-align: center;
  font-size: 14px;
  color: #888;
  margin: 0;
}/*# sourceMappingURL=common.css.map */