@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

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

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

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

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

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Base styles */
html {
  font-size: 16px;
}

body {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  color: #222222;
  line-height: 1.6;
  background-color: #F7F5F2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.is-menu-open {
  overflow: hidden;
}

/* Breadcrumb */
.c-breadcrumb {
  padding: 1rem 0;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb {
    padding: 0.75rem 0;
  }
}
.c-breadcrumb__list,
.c-breadcrumb ol,
.c-breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__list,
  .c-breadcrumb ol,
  .c-breadcrumb ul {
    gap: 0.25rem;
  }
}
.c-breadcrumb__item,
.c-breadcrumb li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__item,
  .c-breadcrumb li {
    gap: 0.25rem;
  }
}
.c-breadcrumb__separator,
.c-breadcrumb .breadcrumb_sep,
.c-breadcrumb .breadcrumb-sep {
  color: #d9d9d9;
  font-size: 0.75rem;
  margin: 0 0.5rem;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__separator,
  .c-breadcrumb .breadcrumb_sep,
  .c-breadcrumb .breadcrumb-sep {
    font-size: 0.75rem;
    margin: 0 0.25rem;
  }
}
.c-breadcrumb a {
  color: #222222;
  text-decoration: none;
  font-size: 0.75rem;
  transition: color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb a {
    font-size: 0.75rem;
  }
}
.c-breadcrumb a:hover {
  color: #E95C2B;
}
.c-breadcrumb__current,
.c-breadcrumb .breadcrumb_last,
.c-breadcrumb .breadcrumb-current {
  color: #222222;
  font-size: 0.75rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__current,
  .c-breadcrumb .breadcrumb_last,
  .c-breadcrumb .breadcrumb-current {
    font-size: 0.75rem;
  }
}
.c-breadcrumb span {
  font-size: 0.75rem;
}

/* Button */
.c-btn {
  border-radius: 0.625rem;
  border: 0.0625rem solid #2e97d4;
  background: linear-gradient(90deg, #3c6ce7 0%, #1fbaf2 100%);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  padding: 1.125rem 1.875rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-weight: 500;
  min-width: 7.5rem;
  position: relative;
  overflow: hidden;
  height: fit-content;
  width: 100%;
  white-space: nowrap;
}
.c-btn:hover {
  transform: translateY(-0.125rem);
}
.c-btn--header {
  padding: 0.625rem 1.875rem;
  width: fit-content;
}
.c-btn--secondary {
  border-radius: 2.1875rem;
  border: 0.0625rem solid #3c6ce7;
  background: #fff;
  color: #3c6ce7;
  width: fit-content;
}

/* Inner container */
.inner {
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 25px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .inner {
    max-width: 640px;
    padding: 0 20px;
  }
}

/* More button */
.c-morebtn {
  width: 21.875rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #E95C2B;
  gap: 1rem;
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.3s ease;
  border-radius: 0.625rem;
  padding: 1rem 1.5rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.c-morebtn:hover {
  opacity: 0.8;
}
.c-morebtn__icon {
  width: 1.5rem;
  height: 1.5rem;
}
.c-morebtn__text {
  font-size: 1rem;
}
.c-morebtn--white .c-morebtn__text {
  background: #fff;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Text */
.c-text {
  color: #222222;
  line-height: 1.6;
  font-size: 1rem;
  letter-spacing: 0.03em;
}

/* Title */
.c-title {
  line-height: 1.6;
  text-align: left;
  padding-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .c-title {
    padding-bottom: 2.5rem;
  }
}
.c-title__label {
  font-size: 1.125rem;
  font-family: "Cormorant Infant", serif;
  letter-spacing: 0.03em;
  color: #E95C2B;
}
@media screen and (max-width: 767px) {
  .c-title__label {
    font-size: 1rem;
  }
}
.c-title__title {
  margin-top: 0.5rem;
  font-size: 2rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 500;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .c-title__title {
    font-size: 1.75rem;
  }
}
.c-title--white .c-title__label {
  color: #fff;
}
.c-title--white .c-title__title {
  color: #fff;
}
.c-title--center {
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  text-align: center;
}
.c-title--center .c-title__title-line {
  left: 50%;
  transform: translateX(-50%);
}

/* News detail content - WordPress content styles */
.p-news-detail__content h1 {
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-news-detail__content h1 {
    font-size: 1.75rem;
  }
}
.p-news-detail__content h2 {
  margin-top: 1.5rem;
  font-size: 1.375rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .p-news-detail__content h2 {
    font-size: 1.25rem;
  }
}
.p-news-detail__content h3 {
  margin-top: 1rem;
  font-size: 1.25rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-news-detail__content h3 {
    font-size: 1.125rem;
  }
}
.p-news-detail__content p {
  margin-top: 0.5rem;
  color: #222222;
  line-height: 1.6;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-news-detail__content p {
    font-size: 1rem;
  }
}
.p-news-detail__content a {
  margin-top: 0.5rem;
  color: #357ee9;
}
.p-news-detail__content ul {
  font-size: 1.125rem;
  margin-top: 0.5rem;
  list-style: disc;
  padding-left: 1.25rem;
}
.p-news-detail__content figure,
.p-news-detail__content img {
  margin-top: 0.5rem;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
