@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500&family=Playfair+Display:wght@400;500&display=swap");
.l-contents {
  --section-padding-top: 60px;
  --section-padding-x: 80px;
  --section-padding-bottom: 60px;
  --section-margin-bottom: 80px;
  --title-margin-bottom: 45px;
  --button-color: #fff;
  --button-icon-arrow-size: 8px;
  --button-icon-arrow-top: calc(50% - 8px);
  --button-icon-arrow-right: 40px;
}

.contents {
  width: 100%;
}
.contents .breadcrumbs {
  width: 1000px;
}

.main {
  background-image: linear-gradient(178deg, #faeff6, #e7f0f8 100%);
  padding-bottom: 120px;
  font-family: "Noto Sans JP", sans-serif;
}

.l-contents {
  width: 940px;
  max-width: 100%;
  padding: 0 30px;
  margin: 0 auto;
  letter-spacing: 0.05em;
}
.l-contents p {
  margin: 0;
}
.l-contents a {
  transition: all linear 0.08s;
}
.l-contents img {
  max-width: 100%;
}

.l-section {
  padding: var(--section-padding-top) var(--section-padding-x) var(--section-padding-bottom);
  border-radius: 8px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
  font-size: 14px;
  line-height: 2.29;
  letter-spacing: 0.7px;
  position: relative;
}
.l-section .l-button {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  transform: translateY(calc(50% + 5px));
}
.l-section:not(:last-child) {
  margin-bottom: var(--section-margin-bottom);
}

.l-title {
  color: #D61676;
}
.l-title:not(:last-child) {
  margin-bottom: var(--title-margin-bottom);
}
.l-title h2 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  position: relative;
  line-height: 1.1;
}
.l-title h2 > span::after {
  display: inline-block;
  content: "";
  height: 1px;
  width: 80px;
  background: #D61676;
  vertical-align: middle;
  margin-left: 20px;
}

.l-title + .l-title-02 {
  margin-top: -20px;
}
.l-title-02:not(:last-child) {
  margin-bottom: 40px;
}
.l-title-02 h3 {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: 1.4px;
}

.l-lead {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 1.6px;
}
.l-lead:not(:last-child) {
  margin-bottom: 80px;
}

.l-button {
  text-align: center;
}
.l-button .button {
  width: 360px;
  height: 75px;
  font-size: 18px;
  max-width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
  color: var(--button-color);
  background: url(../img/button.png) no-repeat;
  background-size: 100% auto;
  position: relative;
}
.l-button .button, .l-button .button::before {
  transition: all ease 0.3s;
}
.l-button .button > span {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 67px;
  position: relative;
}
.l-button .button:hover {
  background-image: url(../img/button_hover.png);
  text-decoration: none;
  --button-icon-arrow-right: 30px;
  --button-color: #D61676;
}
.l-button .button::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  width: var(--button-icon-arrow-size);
  height: var(--button-icon-arrow-size);
  border: 1px solid var(--button-color);
  border-width: 1px 1px 0 0;
  top: var(--button-icon-arrow-top);
  transform: rotate(45deg);
  right: var(--button-icon-arrow-right);
}

.l-banner {
  text-align: center;
}
.l-banner a {
  transition: all linear 0.2s;
}
.l-banner a:hover {
  opacity: 0.7;
}
.l-banner:not(:last-child) {
  margin-bottom: 54px;
}

.inview {
  opacity: 0;
  transition: all ease 1.2s;
  transition-delay: 0s;
  transform: translateY(50px);
}
.inview.is-fadein {
  transform: translateY(0px);
  transition-duration: 1s;
}
.inview.is-inview {
  transform: translateY(0px);
  opacity: 1;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.l-main {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
  height: 560px;
  margin: 0 auto -40px;
  background: url(../img/main_bg.jpg) no-repeat center center;
  background-size: auto 100%;
}
.l-main h1 img {
  width: 483px;
}
.l-main h1.is-fadein {
  animation: fadeIn 2s ease 0s both;
}

.l-abuot {
  --section-padding-bottom: 70px;
  --title-margin-bottom: 20px;
}

.l-detail {
  --section-padding-top: 85px;
}
.l-detail-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.l-detail-list-item {
  display: flex;
  gap: 30px;
  padding-top: 60px;
  background: var(--detail-list-item-bg, none) no-repeat top right;
  background-size: 640px auto;
}
.l-detail-list-item.type-01 {
  --detail-list-item-bg: url(../img/detail_01_bg.png);
}
.l-detail-list-item.type-02 {
  --detail-list-item-bg: url(../img/detail_02_bg.png);
}
.l-detail-list-item.type-03 {
  --detail-list-item-bg: url(../img/detail_03_bg.png);
}
.l-detail-list-item.type-04 {
  --detail-list-item-bg: url(../img/detail_04_bg.png);
}
.l-detail-list-item > * {
  flex: 1;
}
.l-detail-list-item > *:first-child {
  flex-basis: 33.7%;
  flex-grow: 0;
}
.l-detail-list-item > *:last-child {
  margin-top: -10px;
}
.l-detail-list-item h3 {
  margin-top: 20px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.33;
  letter-spacing: 2.4px;
  color: #D61676;
}
.l-detail-list-item h4 {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 1.6px;
  border-left: 4px solid #000;
  padding-left: 10px;
  margin-top: 30px;
}
.l-detail-list-item h4:not(:last-child) {
  margin-bottom: 20px;
}
.l-detail-list-item strong {
  display: inline;
  background: #e7f0f8;
  padding: 5px 0;
  font-weight: normal;
}
.l-detail-list-item-skill {
  display: flex;
  gap: 10px;
  line-height: 1;
  flex-wrap: wrap;
}
.l-detail-list-item-skill:not(:last-child) {
  margin-bottom: 30px;
}
.l-detail-list-item-skill::before, .l-detail-list-item-skill::after {
  display: none;
}
.l-detail-list-item-skill li {
  border-radius: 13px;
  background-color: #f8e7f2;
  color: #D61676;
  text-align: center;
  padding: 5px 20px;
}

.l-point {
  --section-padding-top: 85px;
  --section-padding-bottom: 110px;
  background: url(../img/point_bg.png) no-repeat calc(100% - 80px) 60px #fff;
  background-size: 230px auto;
}
.l-point-title:not(:last-child) {
  margin-bottom: 40px;
}
.l-point-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.l-point-list:not(:last-child) {
  margin-bottom: 80px;
}
.l-point-list-item {
  display: flex;
  gap: 30px;
}
.l-point-list-item > * {
  flex: 1;
}
.l-point-list-item > *:first-child {
  flex-basis: 160px;
  flex-grow: 0;
  border-radius: 8px;
  height: 160px;
  background: #FCFAF5;
}
.l-point-list-item-title {
  line-height: 1.4;
}
.l-point-list-item-title:not(:last-child) {
  margin-bottom: 16px;
}
.l-point-list-item-title h3 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #D61676;
  border-bottom: 2px solid #D61676;
  padding-bottom: 7px;
  display: inline-block;
}
/*# sourceMappingURL=sourcemaps/style.css.map */