/* 
remedy.css
*/
*, ::before, ::after {
  box-sizing: border-box;
}

html {
  line-sizing: normal;
}

body {
  margin: 0;
}

[hidden] {
  display: none;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.17rem;
}

h4 {
  font-size: 1rem;
}

h5 {
  font-size: 0.83rem;
}

h6 {
  font-size: 0.67rem;
}

h1 {
  margin: 0.67em 0;
}

pre {
  white-space: pre-wrap;
}

hr {
  border-style: solid;
  border-width: 1px 0 0;
  color: inherit;
  height: 0;
  overflow: visible;
}

img, svg, video, canvas, audio, iframe, embed, object {
  display: block;
  vertical-align: middle;
  max-width: 100%;
}

audio:not([controls]) {
  display: none;
}

picture {
  display: contents;
}

source {
  display: none;
}

img, svg, video, canvas {
  height: auto;
}

audio {
  width: 100%;
}

img {
  border-style: none;
}

svg {
  overflow: hidden;
}

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

[type=checkbox], [type=radio] {
  box-sizing: border-box;
  padding: 0;
}

html, body, input, textarea {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}

:target {
  scroll-margin-top: 88px;
}

body {
  background: #ffffff;
  color: #070707;
  line-height: 1.4;
  overflow-wrap: break-word;
}

a {
  color: #070707;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

p {
  margin: 0;
}

ul, li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.for-tablet {
  display: none;
}
@media screen and (max-width: 1000px) {
  .for-tablet {
    display: block;
  }
}

.for-sp {
  display: none;
}
@media screen and (max-width: 750px) {
  .for-sp {
    display: block;
  }
}

.for-sp-narrow {
  display: none;
}
@media screen and (max-width: 480px) {
  .for-sp-narrow {
    display: block;
  }
}

.section__inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-right: 80px;
  padding-left: 80px;
  transition: padding 0.3s ease;
}
@media screen and (max-width: 1000px) {
  .section__inner {
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media screen and (max-width: 750px) {
  .section__inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.section__title h2 {
  font-size: min(3.6vw, 2.25rem);
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .section__title h2 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .section__title h2 {
    font-size: min(6.6666666667vw, 2rem);
  }
}
.section__title span {
  display: inline-block;
}

header.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  padding: 16px 16px 0;
}

.header__inner {
  display: flex;
  width: 100%;
  max-width: 1200px;
  height: 56px;
  background: white;
  align-items: center;
  justify-content: space-between;
  margin-right: auto;
  margin-left: auto;
  border-radius: 9999px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.header__title {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0 1.875rem;
}
@media screen and (max-width: 750px) {
  .header__title {
    gap: 1rem;
    padding-left: 1.5rem;
    padding-right: 0;
  }
}

.header__title-logo {
  display: block;
  width: 5.75rem;
  height: auto;
  transition: width 0.3s ease;
}
@media screen and (max-width: 750px) {
  .header__title-logo {
    width: 3.75rem;
  }
}
.header__title-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.header__title-text {
  font-size: min(1.8461538462vw, 1.5rem);
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 750px) {
  .header__title-text {
    font-size: min(3.75vw, 1.5rem);
  }
}
.header__title-text a {
  color: #070707;
  text-decoration: none;
}
@media screen and (hover: hover) {
  .header__title-text a {
    opacity: 1;
    transition: opacity 0.3s ease-in;
  }
}
@media screen and (hover: hover) {
  .header__title-text a:hover {
    opacity: 0.6;
  }
}
.header__title-text em {
  display: inline-block;
  font-style: normal;
}
.header__title-text small {
  display: inline-block;
  font-size: 1em;
}
@media screen and (max-width: 750px) {
  .header__title-text small {
    font-size: 0.75em;
  }
}

.header__navi {
  display: flex;
  padding: 0 10px;
}

.header__navi-list {
  margin-right: 1.875rem;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 1000px) {
  .header__navi-list {
    display: none;
  }
}
.header__navi-list li a {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
}
@media screen and (hover: hover) {
  .header__navi-list li a {
    opacity: 1;
    transition: opacity 0.3s ease-in;
  }
}
@media screen and (hover: hover) {
  .header__navi-list li a:hover {
    opacity: 0.6;
  }
}

@media screen and (max-width: 1000px) {
  .header__cta {
    display: none;
  }
}
.header__cta a {
  display: block;
  background: #870000;
  color: #ffffff;
  font-size: min(1.1538461538vw, 0.9375rem);
  font-weight: 700;
  padding: 0.5625rem 0.625rem 0.625rem;
  border-radius: 9999px;
}
@media screen and (hover: hover) {
  .header__cta a {
    opacity: 1;
    transition: opacity 0.3s ease-in;
  }
}
@media screen and (hover: hover) {
  .header__cta a:hover {
    opacity: 0.6;
  }
}

.header__navi-toggle {
  display: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #870000;
  border: 0 transparent;
  border-radius: 999px;
  width: 40px;
  height: 0;
  padding-top: 40px;
  overflow: hidden;
  color: transparent;
  position: relative;
  cursor: pointer;
}
@media screen and (hover: hover) {
  .header__navi-toggle {
    opacity: 1;
    transition: opacity 0.3s ease-in;
  }
}
@media screen and (hover: hover) {
  .header__navi-toggle:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 1000px) {
  .header__navi-toggle {
    display: block;
  }
}
.header__navi-toggle:before, .header__navi-toggle:after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: #ffffff;
  position: absolute;
  top: 50%;
  left: 10px;
  transition: transform 0.3s ease;
}
.header__navi-toggle:before {
  transform: translateY(-6px);
  transform-origin: 50% 50%;
}
.header__navi-toggle:after {
  transform: translateY(4px);
  transform-origin: 50% 50%;
}
.is-menu-open .header__navi-toggle:before {
  transform: translateY(-1px) rotate(135deg);
  transform-origin: 50% 50%;
}
.is-menu-open .header__navi-toggle:after {
  transform: translateY(-1px) rotate(-135deg);
  transform-origin: 50% 50%;
}

.header__navi-for-smartphone {
  display: block;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  background: #F3ECEB;
  padding: 88px 40px 40px;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (max-width: 750px) {
  .header__navi-for-smartphone {
    padding: 88px 20px 20px;
  }
}
@media screen and (max-width: 1000px) {
  .is-menu-open .header__navi-for-smartphone {
    opacity: 1;
    visibility: visible;
  }
}

.header__navi-list-for-smartphone {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  gap: 20px;
  row-gap: 0;
}
.header__navi-list-for-smartphone li {
  width: calc((100% - 20px) / 2);
}
@media screen and (max-width: 480px) {
  .header__navi-list-for-smartphone li {
    width: 100%;
  }
}
.header__navi-list-for-smartphone li a {
  display: block;
  text-align: center;
  font-size: 1.125rem;
  font-weight: bold;
  padding: 1rem;
  border-bottom: 1px solid #070707;
}
@media screen and (hover: hover) {
  .header__navi-list-for-smartphone li a {
    opacity: 1;
    transition: opacity 0.3s ease-in;
  }
}
@media screen and (hover: hover) {
  .header__navi-list-for-smartphone li a:hover {
    opacity: 0.6;
  }
}

.header__cta-for-smartphone {
  display: block;
  margin-top: 20px;
}
.header__cta-for-smartphone a {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  background: #870000;
  color: #ffffff;
  font-size: 1.25rem;
  max-width: 400px;
  margin-right: auto;
  margin-left: auto;
  height: 3em;
  padding: 0 1rem 2px;
  border-radius: 9999px;
}
@media screen and (hover: hover) {
  .header__cta-for-smartphone a {
    opacity: 1;
    transition: opacity 0.3s ease-in;
  }
}
@media screen and (hover: hover) {
  .header__cta-for-smartphone a:hover {
    opacity: 0.6;
  }
}

.section-intro {
  background: #161517 url("../img/intro_bg.jpg") no-repeat 50% 0;
  background-size: 1920px auto;
  width: 100%;
  height: 748px;
  overflow: hidden;
  padding-right: 80px;
  padding-left: 80px;
  transition: padding 0.3s ease, background-position 0.3s ease;
}
@media screen and (max-width: 1440px) {
  .section-intro {
    background-position: 75% 0;
  }
}
@media screen and (max-width: 1000px) {
  .section-intro {
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media screen and (max-width: 750px) {
  .section-intro {
    height: unset;
    background-size: auto 100%;
    padding-right: 20px;
    padding-bottom: max(8%, 60px);
    padding-left: 20px;
  }
}
@media screen and (max-width: 480px) {
  .section-intro {
    padding-bottom: 30px;
  }
}
.section-intro .section__content {
  padding-top: 138px;
  position: relative;
  z-index: 10;
  transition: padding-top 0.3s ease;
}
@media screen and (max-width: 1000px) {
  .section-intro .section__content {
    padding-top: 13.8%;
  }
}
@media screen and (max-width: 750px) {
  .section-intro .section__content {
    padding-top: calc(88px + 5.3333333333%);
  }
}
@media screen and (max-width: 480px) {
  .section-intro .section__content {
    padding-top: calc(88px + 5.3333333333%);
  }
}

.intro__inner {
  width: 100%;
  max-width: 1372px;
  margin: 0 auto;
  position: relative;
}

.intro__text-001 h1 {
  font-size: min(7vw, 4.375rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}
@media screen and (max-width: 750px) {
  .intro__text-001 h1 {
    font-size: min(8vw, 3.75rem);
  }
}

.intro__cta {
  margin-top: 2rem;
}
@media screen and (max-width: 750px) {
  .intro__cta {
    margin-top: 1.875rem;
  }
}
.intro__cta a {
  display: inline-block;
  padding: 1.25rem 2rem;
  background-color: #870000;
  color: #ffffff;
  font-size: 1.25rem;
  border-radius: 9999px;
}
@media screen and (hover: hover) {
  .intro__cta a {
    transform: scale(1);
    transform-origin: 50% 50%;
    transition: transform 0.2s ease-in;
  }
}
@media screen and (hover: hover) {
  .intro__cta a:hover {
    transform: scale(1.05);
    transform-origin: 50% 50%;
  }
}

.intro__text-002 {
  display: flex;
  margin-top: 2.5rem;
}
@media screen and (max-width: 750px) {
  .intro__text-002 {
    margin-top: 1.875rem;
  }
}

.intro__text-002-inner {
  border: 1px solid #ffffff;
  padding: 1rem 1.5rem;
}

.intro__text-002-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}
@media screen and (max-width: 750px) {
  .intro__text-002-title {
    font-size: min(5.3333333333vw, 2.5rem);
  }
}
@media screen and (max-width: 480px) {
  .intro__text-002-title {
    font-size: 1.75rem;
    line-height: 1.2;
  }
}

.intro__text-002-text {
  margin-top: 0.9375rem;
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.4;
}
@media screen and (max-width: 750px) {
  .intro__text-002-text {
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .intro__text-002-text {
    margin-top: 0.5rem;
  }
}

.section-about-us {
  background-color: #ffffff;
  color: #070707;
}
.section-about-us .section__inner {
  padding-top: 112px;
  padding-bottom: 120px;
}
@media screen and (max-width: 750px) {
  .section-about-us .section__inner {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}
.section-about-us .section__title h2 {
  color: #690000;
}
.section-about-us .section__content {
  margin-top: 40px;
}
@media screen and (max-width: 750px) {
  .section-about-us .section__content {
    margin-top: 30px;
  }
}

.about-us__contents-001 {
  display: flex;
  align-items: flex-start;
  gap: 48px;
}
@media screen and (max-width: 1000px) {
  .about-us__contents-001 {
    flex-direction: column;
  }
}
@media screen and (max-width: 750px) {
  .about-us__contents-001 {
    gap: 1.5rem;
  }
}

.about-us__text-wrap {
  flex: 1;
}

.about-us__title {
  padding-left: 2.125rem;
}
@media screen and (max-width: 1000px) {
  .about-us__title {
    padding-left: 0;
  }
}
.about-us__title h3 {
  font-size: min(3.2vw, 2rem);
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 750px) {
  .about-us__title h3 {
    font-size: 1.75rem;
  }
}

.about-us__text {
  margin-top: 0.625rem;
  padding-left: 2.125rem;
}
@media screen and (max-width: 1000px) {
  .about-us__text {
    padding-left: 0;
  }
}
.about-us__text p {
  font-size: 1rem;
  line-height: 1.8;
}
.about-us__text strong {
  font-weight: 700;
}

.about-us__img-wrap {
  width: min(50%, 640px);
}
@media screen and (max-width: 1000px) {
  .about-us__img-wrap {
    width: 100%;
  }
}

.about-us__img {
  display: block;
  border-radius: 1.5rem;
  overflow: hidden;
}
.about-us__img img {
  display: block;
  width: 100%;
  height: auto;
}

.section-advantages {
  background-color: #870000;
  color: #ffffff;
}
.section-advantages .section__inner {
  padding-top: 110px;
  padding-bottom: 100px;
}
@media screen and (max-width: 750px) {
  .section-advantages .section__inner {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.section-advantages .section__content {
  margin-top: 55px;
}
@media screen and (max-width: 750px) {
  .section-advantages .section__content {
    margin-top: 30px;
  }
}

.advantages__list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 46px;
  transition: gap 0.3s ease;
}
@media screen and (max-width: 1000px) {
  .advantages__list {
    gap: 40px;
  }
}
@media screen and (max-width: 750px) {
  .advantages__list {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }
}
.advantages__list li {
  width: 344px;
}
@media screen and (max-width: 480px) {
  .advantages__list li {
    width: 100%;
    max-width: 344px;
  }
}

.advantages__list-item-img {
  display: block;
  border-radius: 1.5rem;
  overflow: hidden;
}
.advantages__list-item-img img {
  display: block;
  width: 100%;
  height: auto;
}

.advantages__list-item-title {
  display: block;
  font-size: min(2.1686746988vw, 1.125rem);
  font-weight: 700;
  text-align: center;
  margin-top: 1.5rem;
}
@media screen and (max-width: 750px) {
  .advantages__list-item-title {
    font-size: 1.125rem;
  }
}
.advantages__list-item-title span {
  display: inline-block;
}

.advantages__list-item-text {
  display: block;
  max-width: 272px;
  font-size: min(1.9277108434vw, 1rem);
  margin-top: 0.5rem;
}
@media screen and (max-width: 750px) {
  .advantages__list-item-text {
    max-width: 100%;
    font-size: 1rem;
  }
}

.section-event {
  background-color: #F3ECEB;
}
.section-event .section__inner {
  padding-top: 110px;
  padding-bottom: 120px;
}
@media screen and (max-width: 750px) {
  .section-event .section__inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.section-event .section__title h2 {
  line-height: 1.3;
}
.section-event .section__content {
  margin-top: 60px;
}
@media screen and (max-width: 750px) {
  .section-event .section__content {
    margin-top: 30px;
  }
}

.event__caption {
  text-align: center;
}

.event__list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 48px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  counter-reset: event-counter;
  margin-top: 60px;
}
@media screen and (max-width: 1000px) {
  .event__list {
    gap: 24px;
  }
}
@media screen and (max-width: 750px) {
  .event__list {
    flex-direction: column;
    align-items: center;
    gap: 48px;
    margin-top: 30px;
  }
}
@media screen and (max-width: 480px) {
  .event__list {
    gap: 20px;
  }
}

.event__list li {
  width: calc((100% - 48px) / 2);
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .event__list li {
    width: calc((100% - 24px) / 2);
  }
}
@media screen and (max-width: 750px) {
  .event__list li {
    width: 100%;
  }
}

.event__list-item {
  display: block;
}

.event__list-item-img {
  display: block;
}
.event__list-item-img img {
  display: block;
  width: 100%;
  height: auto;
}

.event__list-item-text-wrap {
  display: block;
  position: relative;
  counter-increment: event-counter;
  padding: 3rem;
  transition: padding 0.3s ease;
}
@media screen and (max-width: 1000px) {
  .event__list-item-text-wrap {
    padding: 2.25rem;
  }
}
@media screen and (max-width: 750px) {
  .event__list-item-text-wrap {
    padding: 1.5rem;
  }
}
.event__list-item-text-wrap::before {
  content: counter(event-counter, decimal-leading-zero);
  display: inline-block;
  border-radius: 0.5rem;
  background-color: #070707;
  font-size: 0.9375rem;
  color: #ffffff;
  line-height: 1;
  padding: 0.25rem 1rem;
}

.event__list-item-title {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #690000;
  line-height: 1.6;
  margin-top: 1rem;
}

.event__list-item-text {
  display: block;
  font-size: 1rem;
  line-height: 1.8;
  margin-top: 1.25rem;
}
.event__list-item-text strong {
  color: #870000;
}
.event__list-item-text small {
  display: block;
  font-size: 0.875rem;
  margin-top: 1em;
}

.event__list-item-table {
  display: block;
  margin-top: 1rem;
}
.event__list-item-table dl {
  width: 100%;
}
.event__list-item-table .event__list-item-table-row {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
}
.event__list-item-table .event__list-item-table-row + .event__list-item-table-row {
  margin-top: 0.5rem;
}
.event__list-item-table dt {
  width: 100px;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: #690000;
}
.event__list-item-table dd {
  flex: 1;
  text-align: left;
  font-size: 1rem;
  margin: 0;
  padding: 0;
}

.event__list-item-comment {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  align-items: flex-end;
  padding: 1rem;
  border: 1px solid #690000;
}
@media screen and (max-width: 480px) {
  .event__list-item-comment {
    flex-direction: column;
    gap: 0.25rem;
  }
}
.event__list-item-comment:after {
  content: "";
  display: block;
  width: 7.4375rem;
  height: 0;
  padding-top: 8.75rem;
  background: url(../img/event_comment_img-001.png) no-repeat 0 0;
  background-size: 100% auto;
}
@media screen and (max-width: 1000px) {
  .event__list-item-comment:after {
    width: 5rem;
    height: 0;
    padding-top: 5.8125rem;
  }
}

.event__list-item-comment-inner {
  flex: 1;
}

.event__list-item-comment-title {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
}

.event__list-item-comment-text {
  display: block;
  font-size: 1rem;
  line-height: 1.8;
}

.event__list-item-button {
  display: block;
  margin-top: 1.125rem;
}
.event__list-item-button a {
  display: inline-block;
  padding: 0.625rem 2.375rem 0.6875rem 2.375rem;
  background-color: #870000;
  color: #ffffff;
  font-size: 0.875rem;
  border-radius: 9999px;
}
@media screen and (hover: hover) {
  .event__list-item-button a {
    transform: scale(1);
    transform-origin: 50% 50%;
    transition: transform 0.2s ease-in;
  }
}
@media screen and (hover: hover) {
  .event__list-item-button a:hover {
    transform: scale(1.05);
    transform-origin: 50% 50%;
  }
}

.event__banner-wrap {
  margin-top: 3.5rem;
}
@media screen and (max-width: 750px) {
  .event__banner-wrap {
    margin-top: 1.875rem;
  }
}

.event__banner-item {
  display: block;
  width: 100%;
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
}
.event__banner-item a {
  display: block;
}
@media screen and (hover: hover) {
  .event__banner-item a {
    opacity: 1;
    transition: opacity 0.3s ease-in;
  }
}
@media screen and (hover: hover) {
  .event__banner-item a:hover {
    opacity: 0.6;
  }
}
.event__banner-item img {
  display: block;
  width: 100%;
  height: auto;
}
.event__banner-item + .event__banner-item {
  margin-top: 1.5rem;
}

.section-profile {
  background-color: #ffffff;
  color: #070707;
}
.section-profile .section__inner {
  padding-top: 111px;
  padding-bottom: 120px;
}
@media screen and (max-width: 750px) {
  .section-profile .section__inner {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}
.section-profile .section__title h2 {
  color: #690000;
}
.section-profile .section__content {
  margin-top: 42px;
}
@media screen and (max-width: 750px) {
  .section-profile .section__content {
    margin-top: 30px;
  }
}

.profile__contents-001 {
  display: flex;
  align-items: flex-start;
  gap: 48px;
}
@media screen and (max-width: 1000px) {
  .profile__contents-001 {
    flex-direction: column;
  }
}
@media screen and (max-width: 750px) {
  .profile__contents-001 {
    gap: 1.5rem;
  }
}

.profile__text-wrap {
  flex: 1;
}

.profile__title {
  padding-right: 2.125rem;
}
@media screen and (max-width: 1000px) {
  .profile__title {
    padding-right: 0;
  }
}
.profile__title h3 {
  font-size: min(3.2vw, 2rem);
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 750px) {
  .profile__title h3 {
    font-size: 1.75rem;
  }
}
.profile__text + .profile__title {
  margin-top: 1.25rem;
}

.profile__text {
  margin-top: 0.625rem;
  padding-right: 2.125rem;
}
@media screen and (max-width: 1000px) {
  .profile__text {
    padding-right: 0;
  }
}
.profile__text p {
  font-size: 1rem;
  line-height: 1.8;
}
.profile__text strong {
  font-weight: 700;
}

.profile__img-wrap {
  width: min(50%, 640px);
}
@media screen and (max-width: 1000px) {
  .profile__img-wrap {
    width: 100%;
  }
}

.profile__img {
  display: block;
  border-radius: 1.5rem;
  overflow: hidden;
}
.profile__img img {
  display: block;
  width: 100%;
  height: auto;
}
.profile__img + .profile__img {
  margin-top: 1rem;
}

.section-flow {
  background-color: #F3ECEB;
}
.section-flow .section__inner {
  padding-top: 109px;
  padding-bottom: 120px;
}
@media screen and (max-width: 750px) {
  .section-flow .section__inner {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}
.section-flow .section__content {
  margin-top: 64px;
}
@media screen and (max-width: 750px) {
  .section-flow .section__content {
    margin-top: 32px;
  }
}

.flow__list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
  counter-reset: flow-counter;
}
@media screen and (max-width: 1000px) {
  .flow__list {
    flex-wrap: wrap;
    row-gap: 48px;
  }
}
@media screen and (max-width: 480px) {
  .flow__list {
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }
}
.flow__list li {
  width: 100%;
  max-width: 296px;
}
@media screen and (max-width: 1000px) {
  .flow__list li {
    width: calc((100% - 32px) / 2);
  }
}
@media screen and (max-width: 480px) {
  .flow__list li {
    width: 100%;
    max-width: unset;
  }
}

.flow__list-item {
  display: block;
  position: relative;
  counter-increment: flow-counter;
}
.flow__list-item::before {
  content: counter(flow-counter, decimal-leading-zero);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -1rem;
  left: -1rem;
  z-index: 10;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background-color: #690000;
  color: #ffffff;
}

.flow__list-item-img {
  display: block;
  border-radius: 0.75rem;
  overflow: hidden;
}
.flow__list-item-img img {
  display: block;
  width: 100%;
  height: auto;
}

.flow__list-item-title {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: #690000;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  margin-top: 1.3125rem;
}

.flow__list-item-text {
  display: block;
  font-size: 1rem;
  line-height: 1.8;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  margin-top: 0.5rem;
}

.flow__note {
  margin-top: 7.375rem;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  .flow__note {
    margin-top: 3.75rem;
  }
}
@media screen and (max-width: 750px) {
  .flow__note {
    margin-top: 3.125rem;
  }
}
.flow__note p {
  font-size: 1rem;
  line-height: 1.3;
}

.section-faq {
  background-color: #ffffff;
  color: #070707;
}
.section-faq .section__inner {
  padding-top: 110px;
  padding-bottom: 120px;
}
@media screen and (max-width: 750px) {
  .section-faq .section__inner {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}
.section-faq .section__title h2 {
  color: #690000;
}
.section-faq .section__content {
  margin-top: 32px;
}
@media screen and (max-width: 750px) {
  .section-faq .section__content {
    margin-top: 24px;
  }
}

.faq__item {
  margin: 0;
  padding: 1.5rem;
  border: 1px solid #F3ECEB;
}
@media screen and (max-width: 750px) {
  .faq__item {
    padding: 1rem;
  }
}
.faq__item + .faq__item {
  margin-top: 1rem;
}
.faq__item dt {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.5em;
  margin: 0;
  padding: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #690000;
}
.faq__item dt:before {
  content: "Q.";
  font-size: 1rem;
  font-weight: 700;
  color: #870000;
}
.faq__item dt p {
  flex: 1;
}
.faq__item dd {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.5em;
  margin: 0.625rem 0 0;
  padding: 0;
  font-size: 1rem;
}
.faq__item dd:before {
  content: "A.";
  font-size: 1rem;
  font-weight: 700;
  color: #870000;
}
.faq__item dd p {
  flex: 1;
}

.footer {
  background-color: #ffffff;
}

.footer__inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-right: 80px;
  padding-left: 80px;
  transition: padding 0.3s ease;
  color: #070707;
  text-align: center;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 1000px) {
  .footer__inner {
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media screen and (max-width: 750px) {
  .footer__inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.footer__text-001 {
  font-size: 1rem;
  font-weight: 400;
}

.footer__company-name {
  margin-top: 1.5rem;
  font-size: 0.9375rem;
  font-weight: 400;
}

.footer__copyright {
  margin-top: 1.5rem;
  font-size: 1rem;
  font-weight: 400;
}