@keyframes blur-circle-bounce {
  0% {
    margin-top: 0;
  }
  50% {
    margin-top: -30px;
  }
  100% {
    margin-top: 0;
  }
}
/* .c-cards */
.c-cards__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.c-cards__item {
  display: inline-block;
}
.c-cards__itemLink {
  display: block;
  border-radius: 30px;
  background: #fff;
  padding-bottom: 30px;
}
.c-cards__itemImage {
  border-radius: 30px 30px 0 0;
  width: 100%;
  height: auto;
}
.c-cards__itemTitle {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 20px 0;
  padding: 0 20px;
  font-size: 20px;
  text-align: center;
  font-weight: var(--font-weight-bold);
  color: var(--color-brand);
}
.c-cards__itemText {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  height: 4.8em;
  margin-bottom: 20px;
  padding: 0 20px 20px;
  text-overflow: ellipsis;
  line-height: 1.6em;
}
.c-cards__itemMore.btn {
  width: 160px;
  height: 50px;
  padding: 0 15px;
}

/* =============================================
for PC
============================================= */
@media screen and (min-width: 1025px) {
  /* .c-cards */
  .c-cards__list {
    flex-wrap: wrap;
    grid-column: 1/3;
    flex-direction: row;
    gap: 30px;
  }
  .c-cards__item {
    width: 340px;
  }
  .c-cards__itemLink {
    display: flex;
    flex-direction: column;
  }
  .c-cards__itemImage {
    width: 100%;
    height: auto;
  }
  .c-cards__itemTitle {
    font-size: 23px;
  }
}
:root {
  --color-background: #FFFBF6;
  --color-font-base: #1F2333;
  --color-brand: #E60012;
  --font-weight-regular: 400;
  --font-weight-bold: 700;
  --color-cta-primary: var(--color-brand);
}

body {
  background: var(--color-background);
  font-family: "Noto Sans JP", YuGothic, sans-serif;
  font-size: 16px;
  line-height: 26px;
  color: var(--color-font-base);
}

img {
  vertical-align: bottom;
}

p + p {
  margin-top: 1.25em;
}

.only-sp,
.only-tablet,
.only-pc,
.sp-tablet,
.tablet-pc,
.sp-pc {
  display: none;
}

@media screen and (max-width: 599px) {
  .only-sp,
  .sp-tablet,
  .sp-pc {
    display: initial;
  }
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .only-tablet,
  .sp-tablet,
  .tablet-pc {
    display: initial;
  }
}
@media screen and (min-width: 1025px) {
  .only-pc,
  .tablet-pc,
  .sp-pc {
    display: initial;
  }
}
.btn {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
  align-items: center;
  border-radius: 100px;
  background: var(--color-font-base);
  width: 100%;
  height: 60px;
  margin: 0 auto;
  padding: 20px;
  font-size: 16px;
  line-height: 1;
  font-weight: var(--font-weight-bold);
  color: #fff;
}
.btn::before {
  content: "";
}
.btn::after {
  display: inline-block;
  justify-self: end;
  content: url(../img/arrow-right-white.svg);
  font-size: 1px;
  line-height: 1px;
  width: 9px;
  height: 12px;
}
.btn.is-primary {
  background: var(--color-cta-primary);
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--color-background);
}

.pagehead__breadcrumb {
  background: #fafafa;
  display: flex;
  overflow: scroll;
  padding: 2px 10px;
}
.pagehead__breadcrumbItem {
  white-space: nowrap;
  font-size: 12px;
}
.pagehead__breadcrumbItem:has(.pagehead__breadcrumbItemLink) {
  background: url(../img/arrow-breadcrumb-sp.svg) no-repeat right center/6px auto;
  margin-right: 7px;
  padding-right: 12px;
}
.pagehead__breadcrumbItemLink {
  color: #bdbdbd;
}
.pagehead__breadcrumbItemLabel {
  color: #505050;
}
.pagehead__title {
  background: url(../img/pagehead-title-bg.svg) no-repeat calc(100% + 50px) 0/220px #FFF3E0;
  padding: 45px 20px;
  font-size: 23px;
  font-weight: var(--font-weight-bold);
}

.section {
  padding: 60px 20px;
}
.section__headerLabel {
  font-family: "Outfit", "Noto Sans JP", YuGothic, sans-serif;
  font-optical-sizing: auto;
  font-weight: var(--font-weight-bold);
  font-size: 40px;
  line-height: 1;
}
.section__headerTitle {
  margin: 10px 0 40px;
  font-size: 15px;
  line-height: 1;
  font-weight: var(--font-weight-bold);
}
.section__headerTitle::before {
  content: "";
  display: inline-block;
  border-radius: 100%;
  background: var(--color-brand);
  width: 5px;
  height: 5px;
  margin-right: 4px;
  vertical-align: middle;
  translate: 0 -2px;
}
.section__more {
  margin-top: 40px;
}

.reason {
  background: url(../img/reason-bg-sp.svg) no-repeat top/800px #EB6653;
  padding: 60px 20px 30px;
}
.reason__header {
  color: #fff;
}
.reason__headerLabel {
  margin-left: -2px;
  font-size: 60px;
}
.reason__headerTitle {
  margin-bottom: 50px;
  font-size: 19px;
}
.reason__headerTitle::before {
  background: #fff;
  margin-right: 8px;
}
.reason__list {
  counter-reset: reason-item-counter;
  border-radius: 40px;
  background: #fff;
  padding-bottom: 30px;
}
.reason__item {
  display: flex;
  flex-direction: column;
  padding: 30px 20px 0;
}
.reason__item::before {
  display: block;
  background: url(../img/reason-item-header-sp.svg) no-repeat center;
  content: counter(reason-item-counter);
  counter-increment: reason-item-counter;
  width: 213px;
  height: 63px;
  margin: 0 auto;
  padding: 26px 0 0;
  color: #fff;
  text-align: center;
  font-size: 28px;
}
.reason__itemTitle {
  order: 2;
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 34px;
  font-weight: var(--font-weight-bold);
}
.reason__itemImage {
  order: 1;
  border-radius: 40px;
  border: 15px solid #fff;
  background-color: #fff;
  max-width: none;
  width: calc(100% + 80px);
  height: auto;
  margin: 10px 0;
  translate: -40px 0;
}
.reason__itemText {
  order: 3;
}
.reason__more {
  margin-top: 30px;
}

.ctasec {
  background: url(../img/ctasec-bg-sp.svg) no-repeat center/1565px #35A491;
  padding: 50px 20px;
  color: #fff;
  overflow: hidden;
}
.ctasec__inner {
  position: relative;
}
.ctasec__inner::after {
  content: "";
  display: inline-block;
  z-index: -1;
  opacity: 0.7;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #FFFF9B;
  background: linear-gradient(0deg, #FFEEBE 0%, #FFFF9B 100%);
  transform: translate(-50%, -50%);
  filter: blur(30px);
  animation: blur-circle-bounce 5s ease-in-out infinite;
  position: absolute;
  top: 60%;
  left: 0;
  z-index: 1;
  opacity: 0.3;
  background: #18B259;
  background: linear-gradient(0deg, #9BEB91 0%, #18B259 100%);
  width: 330px;
  height: 330px;
}
.ctasec__header, .ctasec__intro, .ctasec__company, .ctasec__cta {
  position: relative;
  z-index: 2;
}
.ctasec__headerLabel {
  font-size: 60px;
}
.ctasec__headerTitle {
  margin-bottom: 20px;
  font-size: 19px;
}
.ctasec__headerTitle::before {
  background: #fff;
}
.ctasec__intro {
  margin-bottom: 30px;
}
.ctasec__company {
  border-radius: 40px;
  background: #fff;
  margin-bottom: 20px;
  padding: 15px;
  color: var(--color-font-base);
  text-align: center;
}
.ctasec__contactPhone {
  font-family: "Outfit", "Noto Sans JP", YuGothic, sans-serif;
  font-optical-sizing: auto;
  font-weight: var(--font-weight-bold);
  margin: 20px 0 7px;
  font-size: 28px;
}
.ctasec__contactPhone::before {
  display: inline-block;
  content: url(../img/icon-tel-black.svg);
  width: 25px;
  height: 25px;
  margin-right: 5px;
  line-height: 25px;
  vertical-align: bottom;
}
.ctasec__contactHours {
  font-family: "Outfit", "Noto Sans JP", YuGothic, sans-serif;
  font-optical-sizing: auto;
  font-weight: var(--font-weight-regular);
  margin: 0;
  font-size: 16px;
}
.ctasec__cta {
  border: 4px solid #fff;
  height: 100px;
  padding: 0 20px;
  font-size: 24px;
  line-height: 34px;
  text-align: center;
  box-shadow: 0 7px 0 #35A591;
}
.ctasec__cta::after {
  width: 12px;
  height: 21px;
}

.footer {
  background: url(../img/footer-bg.svg) repeat-x 0 100%/3000px;
  animation: footerBackgroundScroll 180s linear infinite;
  padding-bottom: 80px;
}
.footer__inner {
  padding: 30px 0 0;
}
.footer__header {
  text-align: center;
}
.footer__logo {
  display: inline-block;
}
.footer__address {
  margin-top: 20px;
  font-weight: var(--font-weight-bold);
}
.footer__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}
.footer__contactPhone {
  font-family: "Outfit", "Noto Sans JP", YuGothic, sans-serif;
  font-optical-sizing: auto;
  font-weight: var(--font-weight-bold);
  font-size: 18px;
  line-height: 1;
}
.footer__contactPhone::before {
  display: inline-block;
  content: url(../img/icon-tel-black.svg);
  width: 17px;
  height: 17px;
  margin-right: 5px;
  line-height: 18px;
  vertical-align: bottom;
}
.footer__contactHours {
  font-family: "Outfit", "Noto Sans JP", YuGothic, sans-serif;
  font-optical-sizing: auto;
  font-weight: var(--font-weight-bold);
  line-height: 18px;
}
.footer__sns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0 40px;
}
.footer__snsLink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-font-base);
  width: 50px;
  height: 50px;
}
.footer__nav {
  padding: 0 20px;
  font-size: 13px;
  line-height: 19px;
}
.footer__navList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px 20px;
}
.footer__navItem {
  border-top: 5px solid var(--color-brand);
  width: calc(50% - 10px);
  padding: 10px 0 0;
}
.footer__navLink {
  font-weight: var(--font-weight-bold);
}
.footer__navSubmenuItem {
  margin-top: 0.5em;
}
.footer__copyright {
  font-family: "Outfit", "Noto Sans JP", YuGothic, sans-serif;
  font-optical-sizing: auto;
  font-weight: var(--font-weight-regular);
  background-color: var(--color-background);
  padding: 40px 20px 30px;
  color: var(--color-brand);
  font-size: 14px;
  line-height: 18px;
}

@keyframes footerBackgroundScroll {
  0% {
    background-position: 0 100%;
  }
  100% {
    background-position: -3000px 100%;
  }
}
/* .go-pagetop */
.go-pagetop {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: -1;
  border-radius: 100px;
  background: rgba(230, 0, 18, 0.5);
  width: 40px;
  height: 40px;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.75s ease;
}
.go-pagetop.is-shown {
  visibility: visible;
  opacity: 1;
  z-index: 3;
}
.go-pagetop__icon {
  vertical-align: bottom;
}

/* =============================================
for Mobile
============================================= */
@media screen and (max-width: 599px) {
  body:has(.header__gMenu.is-opened) {
    overflow: hidden;
  }
  .header__inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0;
  }
  .header__logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 56px;
    padding: 0 10px;
  }
  .header__button {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    align-items: center;
    width: 64px;
    padding-bottom: 15px;
  }
  .header__buttonBar {
    content: "";
    display: inline-block;
    border-radius: 2px;
    background: var(--color-font-base);
    width: 24px;
    height: 2px;
    opacity: 1;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .header__buttonText {
    background-color: pink;
    position: absolute;
    left: 0;
    bottom: 13px;
    font-family: "Outfit", "Noto Sans JP", YuGothic, sans-serif;
    font-optical-sizing: auto;
    font-weight: var(--font-weight-bold);
    font-size: 9px;
    line-height: 9px;
    text-align: center;
    width: 100%;
  }
  .header__buttonText::before, .header__buttonText::after {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.3s ease;
  }
  .header__buttonText::before {
    content: "MENU";
    opacity: 1;
  }
  .header__buttonText::after {
    content: "CLOSE";
    opacity: 0;
  }
  .header:has(.header__gMenu.is-opened) .header__buttonBar.is-top {
    transform: translate(0, 7px) rotate(45deg);
  }
  .header:has(.header__gMenu.is-opened) .header__buttonBar.is-middle {
    opacity: 0;
  }
  .header:has(.header__gMenu.is-opened) .header__buttonBar.is-bottom {
    transform: translate(0, -7px) rotate(-45deg);
  }
  .header:has(.header__gMenu.is-opened) .header__buttonText::before {
    opacity: 0;
  }
  .header:has(.header__gMenu.is-opened) .header__buttonText::after {
    opacity: 1;
  }
  .header__content {
    opacity: 0;
    position: fixed;
    top: 56px;
    overflow: scroll;
    background: var(--color-background);
    width: 100%;
    height: calc(100% - 56px);
    padding: 0 20px 30px;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }
  .header__content:has(.header__gMenu.is-opened) {
    opacity: 1;
    pointer-events: auto;
  }
  .header__gMenu {
    margin-bottom: 40px;
  }
  .header__gMenuItem {
    border-bottom: 1px solid #D2CFCF;
  }
  .header__gMenuLabel {
    display: block;
    padding: 20px;
    font-weight: var(--font-weight-bold);
  }
  .header__gMenuItem:has(.header__gMenuSubList) .header__gMenuLabel {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header__gMenuItem:has(.header__gMenuSubList) .header__gMenuLabel::after {
    display: inline-block;
    content: url(../img/gmenu-arrow-down.svg);
    width: 10px;
    height: 8px;
    line-height: 1px;
    transition: rotate 0.3s ease;
  }
  .header__gMenuItem:has(.header__gMenuSubList.is-opened) .header__gMenuLabel::after {
    rotate: 180deg;
  }
  .header__gMenuSubList {
    max-height: 0;
    overflow: hidden;
    border-top: 1px dashed transparent;
    transition: max-height 0.3s ease, border 0.3s ease;
  }
  .header__gMenuSubList.is-opened {
    border-top: 1px dashed #D2CFCF;
    max-height: 280px;
  }
  .header__gMenuSubItem {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
  }
  .header__gMenuSubItem::after {
    display: inline-block;
    content: url(../img/gmenu-arrow-down.svg);
    width: 10px;
    height: 8px;
    line-height: 1px;
    rotate: -90deg;
  }
  .header__gMenuSubItem:not(:last-child) {
    border-bottom: 1px dashed #D2CFCF;
  }
  .header__gMenuSubItem.is-category-top {
    display: none;
  }
  .header__ctasItem {
    margin-bottom: 10px;
  }
  .header__contact {
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  .header__contactPhone {
    font-family: "Outfit", "Noto Sans JP", YuGothic, sans-serif;
    font-optical-sizing: auto;
    font-weight: var(--font-weight-bold);
    display: inline;
    font-size: 19px;
  }
  .header__contactPhone::before {
    display: inline-block;
    content: url(../img/icon-tel-black.svg);
    width: 17px;
    height: 17px;
    margin-right: 3px;
    line-height: 17px;
    vertical-align: baseline;
    translate: 0 2px;
  }
  .header__contactHours {
    font-family: "Outfit", "Noto Sans JP", YuGothic, sans-serif;
    font-optical-sizing: auto;
    font-weight: var(--font-weight-regular);
    display: inline;
    font-size: 15px;
  }
}
/* =============================================
for Tablet and larger
============================================= */
/* =============================================
for PC
============================================= */
@media screen and (min-width: 1025px) {
  :root {
    --width-section: 1080px;
    --width-header: 1200px;
  }
  body {
    font-size: 18px;
    line-height: 30px;
    min-width: 1300px;
  }
  .btn {
    display: inline-grid;
    width: auto;
  }
  .header {
    height: 100px;
    line-height: 1;
  }
  .header__inner {
    align-items: center;
    display: flex;
    justify-content: space-between;
    width: var(--width-header);
    height: 100%;
    margin: 0 auto;
  }
  .header__logo {
    display: inline;
  }
  .header__logoImage {
    width: 235px;
    height: auto;
  }
  .header__button {
    display: none;
  }
  .header__content {
    display: flex;
  }
  .header__gMenu {
    display: flex;
    align-items: end;
  }
  .header__gMenuList {
    display: flex;
    justify-content: space-between;
    margin-right: 30px;
  }
  .header__gMenuItem {
    display: flex;
    align-items: center;
  }
  .header__gMenuLabel {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 7px;
    align-items: center;
    border-bottom: 4px solid transparent;
    height: 100%;
    padding: 0 20px;
    font-size: 16px;
    line-height: 1;
    font-weight: var(--font-weight-bold);
    color: var(--color-font-base);
    cursor: pointer;
    transition: color 0.3s ease, border-color 0.5s ease;
  }
  .header__gMenuLabel::after {
    transition: transform 0.4s ease;
  }
  .header__gMenuItem:has(.header__gMenuSubList) .header__gMenuLabel::after {
    content: url(../img/gmenu-arrow-down.svg);
    display: inline-block;
    width: 10px;
    height: 6px;
    line-height: 6px;
  }
  .header__gMenuItem:has(.header__gMenuSubList.is-opened) .header__gMenuLabel::after {
    transform: translate(0, 8px) rotate(-180deg);
  }
  .header__gMenuSubItem.is-category-top {
    position: relative;
    border-bottom: 3px solid transparent;
    width: var(--width-section);
    margin: 0 auto 20px;
    padding: 0 10px;
    color: var(--color-link-default) !important;
    font-size: 18px;
    line-height: 1;
    font-weight: var(--font-weight-bold);
    transition: border 0.3s ease;
  }
  .header__gMenuSubList {
    overflow: hidden;
    position: absolute;
    top: 100px;
    left: 0;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    background: #fcf8f2;
    width: 100%;
    max-height: 0;
    padding: 0;
    opacity: 0;
    transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease, 0.3s ease, border 0.3s ease;
  }
  .header__gMenuSubList.is-opened {
    z-index: 40;
    max-height: 200px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 30px 0 35px;
    opacity: 1;
  }
  .header__gMenuSubListInner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
    width: var(--width-section);
    margin: 0 auto;
  }
  .header__gMenuSubItem:not(.is-category-top) .header__gMenuSubLabel {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 100px;
    border: 2px solid #f2f2f2;
    background: #fff;
    width: 258px;
    height: 60px;
    padding: 20px;
    font-size: 14px;
    font-weight: var(--font-weight-bold);
    box-shadow: 2px 2px 0 rgb(238, 238, 238);
    transition: border 0.3s ease, padding 0.3s ease;
  }
  .header__ctaWrapper {
    text-align: right;
    display: flex;
    flex-direction: column;
  }
  .header__ctas {
    order: 2;
    padding-top: 7px;
  }
  .header__ctasItem {
    display: inline-block;
  }
  .header__ctasBtn {
    width: 200px;
    height: 33px;
    padding: 0 10px 2px;
    font-size: 15px;
  }
  .header__ctasBtn::after {
    width: 7px;
    height: auto;
  }
  .header__ctasBtn.is-primary {
    margin-left: 11px;
  }
  .header__contact {
    order: 1;
    padding-right: 3px;
  }
  .header__contactPhone {
    font-family: "Outfit", "Noto Sans JP", YuGothic, sans-serif;
    font-optical-sizing: auto;
    font-weight: var(--font-weight-bold);
    display: inline;
    font-size: 19px;
  }
  .header__contactPhone::before {
    display: inline-block;
    content: url(../img/icon-tel-black.svg);
    width: 17px;
    height: 17px;
    margin-right: 3px;
    line-height: 17px;
    vertical-align: baseline;
    translate: 0 2px;
  }
  .header__contactHours {
    font-family: "Outfit", "Noto Sans JP", YuGothic, sans-serif;
    font-optical-sizing: auto;
    font-weight: var(--font-weight-regular);
    display: inline;
    margin-left: 9px;
    font-size: 15px;
  }
  .pagehead {
    position: relative;
    background: url(../img/pagehead-title-bg.svg) no-repeat 100% 0/430px #FFF3E0;
    padding: 100px 0 80px;
  }
  .pagehead.is-bg-none {
    background: none;
    padding: 0;
  }
  .pagehead__breadcrumb {
    position: absolute;
    top: 10px;
    left: 50%;
    background: none;
    width: var(--width-header);
    padding: 0;
    transform: translateX(-50%);
  }
  .pagehead__breadcrumbItem {
    font-size: 14px;
  }
  .pagehead__breadcrumbItemLink {
    color: #6A5C36;
    text-decoration: underline;
    font-weight: var(--font-weight-bold);
  }
  .pagehead__breadcrumbItemLink:hover {
    text-decoration: none;
  }
  .pagehead__breadcrumbItemLabel {
    color: #6A5C36;
  }
  .pagehead__title {
    background: none;
    width: var(--width-header);
    margin: 0 auto;
    padding: 0;
    font-size: 45px;
    line-height: 1;
  }
  .section {
    padding: 100px 0;
  }
  .section__inner {
    width: var(--width-section);
    margin: 0 auto;
  }
  .section__headerLabel {
    font-size: 60px;
  }
  .section__headerTitle {
    margin: 20px 0 60px;
    font-size: 20px;
  }
  .section__headerTitle::before {
    width: 8px;
    height: 8px;
    margin-right: 10px;
  }
  .section__more {
    width: 400px;
    margin-top: 60px;
  }
  .reason {
    background: url(../img/reason-bg-pc.svg) no-repeat 50% -10px/2840px #EB6653;
    padding-bottom: 80px;
  }
  .reason__inner {
    display: flex;
    flex-direction: column;
  }
  .reason__headerLabel {
    font-size: 100px;
  }
  .reason__headerTitle {
    margin: 30px 0 80px;
    font-size: 30px;
  }
  .reason__list {
    padding: 35px 0 0;
  }
  .reason__item {
    display: grid;
    grid-template-columns: 360px auto 445px;
    grid-template-rows: auto auto;
    background: url(../img/reason-item-dot-pc-1.svg) no-repeat 522px 100%/64px;
    padding: 20px 60px 42px;
  }
  .reason__item::before {
    grid-column: 2/3;
    grid-row: 1/3;
    background: url(../img/reason-item-header-pc-1.svg) no-repeat center;
    width: 74px;
    height: 315px;
    padding: 110px 0 0;
    font-size: 48px;
    translate: -20px 10px;
  }
  .reason__itemTitle {
    margin: 0;
    padding: 20px 0 0;
    font-size: 34px;
    line-height: 49px;
  }
  .reason__itemImage {
    grid-column: 1/2;
    grid-row: 1/3;
    border-width: 20px;
    width: 490px;
    height: auto;
    margin: 0;
    translate: -120px -15px;
  }
  .reason__itemText {
    padding: 0 0 10px;
    font-size: 20px;
    line-height: 32px;
  }
  .reason__item:nth-child(2n) {
    background: url(../img/reason-item-dot-pc-2.svg) no-repeat 497px 100%/64px;
    grid-template-columns: 445px auto 370px;
    margin: -20px 0 -15px;
    padding-bottom: 46px;
  }
  .reason__item:nth-child(2n)::before {
    background-image: url(../img/reason-item-header-pc-2.svg);
    translate: 28px 13px;
  }
  .reason__item:nth-child(2n) .reason__itemImage {
    grid-column: 3/4;
    translate: 0 -15px;
  }
  .reason__item:last-child {
    background: none;
    padding-bottom: 30px;
  }
  .ctasec {
    background: url(../img/ctasec-bg-pc.svg) no-repeat bottom/6124px #35A491;
    padding: 100px 0 80px;
  }
  .ctasec__inner {
    display: grid;
    gap: 30px;
    grid-template-columns: 450px auto 520px;
    grid-template-rows: auto auto;
  }
  .ctasec__inner::after {
    width: 500px;
    height: 500px;
    top: 50%;
    left: 10%;
  }
  .ctasec__header {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .ctasec__headerLabel {
    font-size: 91px;
  }
  .ctasec__headerTitle {
    margin: 0;
    font-size: 23px;
  }
  .ctasec__intro {
    align-self: center;
    grid-column: 1/2;
    grid-row: 2/3;
    margin: 0;
    font-size: 20px;
    line-height: 32px;
  }
  .ctasec__company {
    grid-column: 3/4;
    grid-row: 1/2;
    align-self: end;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border-radius: 100px;
    width: 520px;
    height: 100px;
    margin: 0;
  }
  .ctasec__contactPhone {
    margin: 0 0 5px;
  }
  .ctasec__contactHours {
    font-size: 14px;
    line-height: 14px;
  }
  .ctasec__cta {
    grid-column: 3/4;
    grid-row: 2/3;
    width: 520px;
  }
  .footer {
    animation-duration: 100s;
  }
  .footer__inner {
    background: var(--color-background);
    display: grid;
    grid-template-columns: 320px auto 750px;
    grid-template-rows: 150px auto 50px;
    width: 1300px;
    margin: 0 auto;
    padding: 60px 50px 0;
  }
  .footer__header {
    text-align: left;
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .footer__logo {
    display: inline-block;
  }
  .footer__address {
    font-size: 16px;
    line-height: 1;
  }
  .footer__contact {
    justify-content: start;
  }
  .footer__sns {
    grid-column: 1/2;
    grid-row: 3/4;
    justify-content: start;
    margin: 0;
  }
  .footer__nav {
    display: grid;
    grid-column: 3/4;
    grid-row: 1/4;
    padding: 0;
    font-size: 16px;
    line-height: 24px;
  }
  .footer__navList {
    display: grid;
    grid-template-columns: repeat(3, auto);
    align-items: start;
    gap: 60px 0;
  }
  .footer__navItem {
    border-top: none;
    border-left: 5px solid var(--color-brand);
    width: auto;
    padding: 5px 10px;
  }
  .footer__copyright {
    width: 1300px;
    margin: 0 auto;
    padding: 80px 50px 40px;
    font-size: 16px;
    line-height: 1;
    text-align: center;
  }
  /* .go-pagetop */
  .go-pagetop {
    right: 40px;
    bottom: 40px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: opacity 0.75s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  }
  .go-pagetop:hover {
    background: var(--color-brand);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
  }
  .go-pagetop__icon {
    width: 23px;
    height: auto;
  }
}/*# sourceMappingURL=style.css.map */