@charset "UTF-8";
.wrapper {
  width: min(95%, 1000px);
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .wrapper {
    width: 90%;
  }
}

.main {
  overflow-x: hidden;
}
.main::-webkit-scrollbar {
  display: none;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
  gap: 20px;
}

ul {
  list-style-type: none;
}
ul li {
  font-size: clamp(1rem, 0.928rem + 0.31vw, 1.125rem);
}

.red {
  color: red;
}

.sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .sp {
    display: inline;
  }
}

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

.home-btn {
  display: inline-block;
  width: 170px;
  margin: 20px 0;
  padding: 10px 30px;
  border: 2px solid #3c6fdf;
  color: #3c6fdf;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s;
  box-sizing: border-box;
}
.home-btn:hover {
  background-color: #3c6fdf;
  color: #fff;
  letter-spacing: 0.05em;
}

/* パンくずリスト */
.bread__list.flex {
  align-items: center;
}
.bread__list .bread__item {
  padding: 5px;
}
.bread__list .bread__item .bread__link {
  display: block;
  color: #3c6fdf;
  font-size: 13px;
  text-decoration: underline;
}
.bread__list .bread__item .bread__no-link {
  font-size: 13px;
}

/* 共通余白 */
.mb-15 {
  margin-bottom: 15px;
}

.sec__mb-60 {
  margin-bottom: 60px;
}

.id-name {
  padding-top: 90px;
  margin-top: -90px;
}

/* トップータイトル類 */
.top-sub__ttl {
  margin: 80px 0 50px;
  font-size: clamp(1.438rem, 1.182rem + 1.09vw, 2rem);
  font-family: "Shippori Mincho", serif;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .top-sub__ttl {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* 疑似要素 矢印 */
.arrow {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 1px;
  margin: 5px;
  border-radius: 9999px;
  background-color: #333;
}
.arrow::before, .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 8px;
  height: 1px;
  border-radius: 9999px;
  background-color: #333;
  transform-origin: calc(100% - 0.5px) 50%;
}
.arrow::before {
  transform: rotate(45deg);
}
.arrow::after {
  transform: rotate(-45deg);
}

.arrow_s {
  display: block;
  width: 0;
  height: 0;
  margin: 0 auto;
  border-style: solid;
  border-right: 26px solid transparent;
  border-left: 26px solid transparent;
  border-top: 20px solid #ccc;
  border-bottom: 0;
}

/* サブページ共通 */
.sub-p__heading {
  margin-bottom: clamp(3.438rem, 2.535rem + 3.85vw, 5rem);
  background: linear-gradient(270deg, #FEF8F5, #D6F0FC);
}
.sub-p__heading .sub-p__ttl {
  margin: 0;
  padding: 50px 0;
}
.sub-p__heading .sub-p__ttl span {
  display: block;
}
.sub-p__heading .sub-p__ttl .ttl-en {
  font-family: "Aboreto", system-ui;
  font-size: clamp(1.563rem, 1.382rem + 0.77vw, 1.875rem);
  font-weight: normal;
  letter-spacing: 0.2em;
}
.sub-p__heading .sub-p__ttl .ttl-ja {
  margin-top: 15px;
  font-size: clamp(1rem, 0.856rem + 0.62vw, 1.25rem);
  font-weight: normal;
  letter-spacing: 0.5em;
}

.sub-p__sec-ttl {
  margin: 50px 0;
  font-size: clamp(1.375rem, 1.267rem + 0.46vw, 1.563rem);
  font-family: "Shippori Mincho", serif;
  font-weight: normal;
}/*# sourceMappingURL=common.css.map */