@charset "UTF-8";
.header__logo, .header__nav__list__item, .footer__wrap__nav__list__item {
  transition: all 0.3s ease-in-out;
}
.header__logo:hover, .header__nav__list__item:hover, .footer__wrap__nav__list__item:hover {
  opacity: 0.6;
}

.red-button, .white-button {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-radius: 4rem;
  border: 0.1rem solid;
  border-bottom: 0.25rem solid;
  box-shadow: -0.2rem 0.2rem 0.2rem rgba(0, 0, 0, 0.08), 0.2rem 0.2rem 0.2rem rgba(0, 0, 0, 0.08);
}
.red-button img, .white-button img {
  width: 2.4rem;
  height: auto;
}
.red-button:hover, .white-button:hover {
  border-top: 0.26rem solid;
  border-bottom: 0;
  box-shadow: inset 0.3rem 0.3rem 0.6rem rgba(0, 0, 0, 0.3);
}

@media screen and (width <= 767px) {
  .red-button, .white-button {
    font-size: 1.4rem;
    justify-content: space-between;
    padding: 1.4rem 4rem 1.6rem;
  }
}
@media screen and (width > 767px) {
  .red-button, .white-button {
    font-size: 1.6rem;
    justify-content: center;
    padding-block: 1.6rem 1.8rem;
  }
}
.nml-section-title, .wht-section-title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.nml-section-title div, .wht-section-title div {
  display: flex;
  align-items: center;
}
.nml-section-title div img, .wht-section-title div img {
  width: 5.6rem;
  height: auto;
}
.nml-section-title div span, .wht-section-title div span {
  padding-inline: 0.4rem;
}
.nml-section-title h2, .wht-section-title h2 {
  line-height: 1.5;
}

@media screen and (width <= 767px) {
  .nml-section-title, .wht-section-title {
    gap: 1rem;
  }
  .nml-section-title div, .wht-section-title div {
    justify-content: center;
    flex-direction: column;
    gap: 0.8rem;
  }
  .nml-section-title div span, .wht-section-title div span {
    font-size: 1.6rem;
  }
  .nml-section-title h2, .wht-section-title h2 {
    font-size: 2.4rem;
  }
  .nml-section-title h2 small, .wht-section-title h2 small {
    font-size: 1.6rem;
    display: block;
  }
}
@media screen and (width > 767px) {
  .nml-section-title div, .wht-section-title div {
    justify-content: flex-start;
  }
  .nml-section-title div span, .wht-section-title div span {
    font-size: 2.4rem;
    margin-inline: 1.2rem;
  }
  .nml-section-title h2, .wht-section-title h2 {
    font-size: 3.2rem;
  }
  .nml-section-title h2 small, .wht-section-title h2 small {
    font-size: 2.4rem;
  }
}
html {
  font-size: 2.5641vw;
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
h5,
p,
ul {
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
  animation: opacityAnime 0.8s ease-out;
}

@keyframes opacityAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

* {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
p,
li,
a,
button {
  line-height: 1;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  color: #333;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "Arial", "メイリオ", "Meiryo", sans-serif;
}

main {
  background: #FFF8F8;
}

.red-button {
  color: white;
  border-color: white;
  background: #D84A68;
}

.white-button {
  color: #D84A68;
  border-color: #D84A68;
  background: white;
}

.nml-section-title span {
  color: white;
  background: #D84A68;
}

.wht-section-title h2 {
  color: white;
}
.wht-section-title span {
  color: #D84A68;
  background: white;
}

@media screen and (width <= 767px) {
  main {
    overflow: hidden;
    margin-top: 8.4rem;
  }
  .pc_only {
    display: none !important;
  }
  section {
    scroll-margin-top: 10rem;
  }
}
@media screen and (width > 767px) {
  html {
    font-size: 0.625vw;
  }
  .sp_only {
    display: none !important;
  }
  main {
    margin-top: 9.7rem;
  }
  section {
    scroll-margin-top: 12rem;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 6rem;
  border-bottom: 0.3rem solid #D84A68;
  background: white;
}
.header__logo img {
  display: block;
  height: auto;
}
@media screen and (width <= 767px) {
  .header {
    padding: 1.2rem 0.5rem;
  }
  .header__logo img {
    width: 22rem;
  }
  .header__nav__cv {
    width: 14.8rem;
    padding-inline: 2rem;
  }
}
@media screen and (width > 767px) {
  .header {
    padding: 1.6rem 6rem;
  }
  .header__logo img {
    width: 29.4rem;
  }
  .header__nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 3.2rem;
  }
  .header__nav__list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 3.2rem;
  }
  .header__nav__list__item {
    font-size: 1.6rem;
  }
  .header__nav__cv {
    width: 17.6rem;
  }
}
.footer__wrap {
  display: flex;
  align-items: center;
}
.footer__wrap__contents__logo {
  display: block;
  height: auto;
}
.footer__wrap__contents__links__item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  line-height: 1.6;
  width: -moz-fit-content;
  width: fit-content;
}
.footer__wrap__contents__links__item img {
  width: 2.4rem;
  height: auto;
}
.footer__wrap__contents__links__item:not(:last-child) {
  margin-bottom: 1.6rem;
}
.footer__wrap__nav__list {
  display: flex;
  align-items: center;
}
.footer__other {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__other__link {
  flex-direction: column;
}
.footer__other__link img {
  rotate: -90deg;
}

@media screen and (width <= 767px) {
  .footer {
    padding: 4.8rem 3.5rem 2rem;
    border-top: 0.8rem solid #D84A68;
  }
  .footer__wrap {
    justify-content: center;
    gap: 3.2rem;
    flex-direction: column-reverse;
    margin-bottom: 3.2rem;
  }
  .footer__wrap__contents {
    width: 100%;
  }
  .footer__wrap__contents__logo {
    width: 24rem;
    margin-bottom: 2.4rem;
  }
  .footer__wrap__contents__links__item {
    gap: 0.8rem;
    font-size: 1.4rem;
    margin-inline: auto 0;
  }
  .footer__wrap__nav__list {
    justify-content: center;
    flex-wrap: wrap;
    gap: 4rem;
    margin-bottom: 3.2rem;
  }
  .footer__wrap__nav__list__item {
    font-size: 1.4rem;
  }
  .footer__wrap__nav__cv {
    width: 20rem;
    margin-inline: auto;
  }
  .footer__other__copy {
    font-size: 1.2rem;
  }
  .footer__other__link {
    width: 7.7rem;
  }
}
@media screen and (width > 767px) {
  .footer {
    padding: 6.4rem 18rem 8rem;
    border-top: 0.3rem solid #D84A68;
  }
  .footer__wrap {
    justify-content: space-between;
    margin-bottom: 4rem;
  }
  .footer__wrap__contents__logo {
    width: 29.4rem;
    margin-bottom: 4rem;
  }
  .footer__wrap__contents__links__item {
    gap: 1.6rem;
    font-size: 1.6rem;
    line-height: 1.6;
  }
  .footer__wrap__nav__list {
    justify-content: flex-end;
    gap: 6.4rem;
    margin-bottom: 4rem;
  }
  .footer__wrap__nav__list__item {
    font-size: 1.6rem;
  }
  .footer__wrap__nav__cv {
    width: 17.6rem;
    margin-inline: auto 0;
  }
  .footer__other__copy {
    font-size: 1.6rem;
  }
  .footer__other__link {
    width: 8rem;
  }
}/*# sourceMappingURL=global.css.map */