@charset "UTF-8";
/**
 * Style.css
 * このファイルは QWEL Project の一部です。
 * Part of the QWEL Project © QWEL.DESIGN 2025
 * Licensed under GPL v3 – see https://qwel.design/
 */
/**
 * Normalize
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: min(3.84vw, 16px);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: #ffffff;
  color: #262626;
  font-family: "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0;
  -webkit-text-size-adjust: 100%;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-family: "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
}

h1 {
  font-size: 1.5rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.125rem;
}

h5 {
  font-weight: bold;
  font-size: 1rem;
}

h6 {
  font-weight: bold;
  font-size: 0.875rem;
}

p,
ol, ul,
li {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

small {
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0;
}

blockquote {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  padding-left: 1em;
  border-left: 0.375rem solid #262626;
}
blockquote p, blockquote cite {
  font-style: italic;
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0;
}

a, a:active {
  color: #4d4d4d;
  text-decoration: none;
}
a:hover, a:focus {
  color: #209fdf;
  text-decoration: underline;
}

img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

figure {
  display: block;
  margin: 0.75rem auto;
}

figcaption {
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0;
  text-align: center;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  text-align: left;
}

button, input, select, textarea {
  font: inherit;
}

/**
 * Header
 */
.header {
  width: min(100%, 768px);
  margin: 0 auto;
  padding: 0 clamp(0.75rem, 2%, 1.5rem);
}

#logo {
  width: 7.2rem;
}

/**
 * Breadcrumb
 */
.breadcrumb {
  list-style: none;
  display: flex;
  flex-flow: row wrap;
  padding: 0;
}
.breadcrumb__item {
  flex: 0 0 auto;
  margin: 0;
}
.breadcrumb__item:not(.breadcrumb__item--current)::after {
  content: ">";
  margin: 0 0.75rem;
}
.breadcrumb__item a, .breadcrumb__item span {
  display: inline-block;
  font-weight: 600;
  font-style: normal;
  font-size: 0.875rem;
  color: #4d4d4d;
  background-color: rgba(255, 192, 128, 0.15);
  padding: 0 0.2em;
  border-radius: 0.2em;
}
.breadcrumb__item span {
  background-color: rgba(32, 159, 223, 0.1);
}

/**
 * Main
 */
.main {
  width: min(100%, 768px);
  min-height: calc(100vh - 18rem);
  margin: 0 auto;
  padding: 0 clamp(0.75rem, 2%, 1.5rem);
}
.main__title::after {
  content: "✶";
  color: #ffc080;
  font-size: 1.25em;
  margin-left: 0.375rem;
}
.main__title > span {
  font-family: "Cormorant Garamond", serif;
}
.main__list {
  list-style-type: none;
  margin: 1.5rem 0;
  padding: 0;
}
.main__listItem::before {
  content: "✶";
  padding-right: 0.5em;
  color: #79c6ec;
  font-size: 1.5em;
}
.main__listItem--spec {
  color: #808080;
  font-size: 0.875rem;
  letter-spacing: 0;
}
.main__listItem--spec::before {
  content: "―";
  padding-right: 0.5em;
  color: #ffc080;
  font-weight: 700;
  margin-right: 0.375rem;
}

/**
 * Layout - Footer
 */
.footer {
  padding: 6rem 0;
  background-color: #209fdf;
  color: #ffffff;
  text-align: center;
}
.footer a, .footer a:active {
  color: #ffffff;
  text-decoration: none;
}
.footer a:hover, .footer a:focus {
  color: #ffffff;
  text-decoration: underline;
}
.footer__inner {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  width: 100%;
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(0.75rem, 2%, 1.5rem);
  padding-right: clamp(0.75rem, 2%, 1.5rem);
}
.footer__item {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0;
}
.footer__item .icon {
  margin-right: 0.375rem;
}
.footer small {
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

/**
 * Component - Icon
 */
.icon {
  position: relative;
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  overflow: hidden;
  fill: currentColor;
}
.icon--md {
  width: 2.25rem;
  height: 2.25rem;
}
.icon--lg {
  width: 3rem;
  height: 3rem;
}
.icon__span {
  position: relative;
  display: block;
  border-width: 0;
  border-style: solid;
  border-color: #ffffff;
  transition: border-color 0.25s ease;
}
.icon--menu .icon__span {
  width: 60%;
  height: 20%;
  margin: 40% 20%;
  border-top-width: 2px;
  border-bottom-width: 2px;
}
.icon--close .icon__span::before, .icon--close .icon__span::after {
  content: "";
  position: absolute;
  display: block;
  width: 60%;
  height: 4%;
  margin: 48% 20%;
  border: 1px solid #b3b3b3;
  transform: rotate(-45deg);
}
.icon--close .icon__span::after {
  transform: rotate(45deg);
}
.icon--chevron-up .icon__span {
  width: 30%;
  height: 30%;
  margin: 35%;
  border-top-width: 2px;
  border-left-width: 2px;
  transform: rotate(45deg) translate(10%, 10%);
}
.icon--chevron-down .icon__span {
  width: 30%;
  height: 30%;
  margin: 35%;
  border-right-width: 2px;
  border-bottom-width: 2px;
  transform: rotate(45deg) translate(-10%, -10%);
}
.icon--chevron-left .icon__span {
  width: 30%;
  height: 30%;
  margin: 35%;
  border-left-width: 2px;
  border-bottom-width: 2px;
  transform: rotate(45deg) translate(10%, -10%);
}
.icon--chevron-right .icon__span {
  width: 30%;
  height: 30%;
  margin: 35%;
  border-top-width: 2px;
  border-right-width: 2px;
  transform: rotate(45deg) translate(-10%, 10%);
}