html {
  color: #09355F;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: normal;
  line-height: 1;
}
@media print, screen and (min-width: 768px) and (max-width: 1366px) {
  html {
    font-size: 0.7320644217vw;
  }
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 1.3020833333vw;
  }
}
html * {
  box-sizing: border-box;
}

body {
  font-size: 1.7rem;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 3rem;
  }
}

a {
  cursor: pointer;
  transition: all ease-in-out 0.3s;
}
a:hover {
  opacity: 0.7;
}

img {
  width: 100%;
  height: auto;
}

#wrapper {
  overflow: hidden;
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fwb {
  font-weight: bold;
}

.tar {
  text-align: right;
}

.tac {
  text-align: center;
}

.noFind {
  text-align: center;
  width: 100%;
}

.scrollbar {
  padding-right: 1rem;
}
.scrollbar::-webkit-scrollbar {
  width: 1rem;
}
.scrollbar::-webkit-scrollbar-track {
  background-color: #E6E6E6;
}
.scrollbar::-webkit-scrollbar-thumb {
  background-color: #B3B3B3;
}

.fadeInLeft, .fadeInRight {
  position: relative;
}
.fadeInLeft::after, .fadeInRight::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  transition: all ease-in-out 0.6s;
  transform-origin: center right;
}
.fadeInLeft.scrollActive::after, .fadeInRight.scrollActive::after {
  transform: scaleX(0);
}

.fadeInRight::after {
  transform-origin: center left;
}

.flowLink {
  position: relative;
  padding: 2px 0;
}
@media print, screen and (min-width: 768px) {
  .flowLink::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #fff;
    height: 2px;
    width: 100%;
    transform: scale(0);
    transform-origin: left center;
    transition: all ease 0.3s;
  }
}
.flowLink:hover::after {
  transform: scale(1);
}

.maker {
  display: inline;
  background: linear-gradient(transparent 70%, #fdd8d8 0%);
  padding: 0 0.4rem;
}

.scrollItem, .scrollListItem {
  opacity: 0;
  transition: all ease-in-out 0.6s;
}
.scrollItem.scrollActive, .scrollListItem.scrollActive {
  opacity: 1 !important;
  transform: translate(0) scale(1) !important;
}

@media print, screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
  #wrapper:not(.preload) * {
    transition: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@keyframes zoom {
  from {
    transform: scale(1) rotate(0.001deg);
  }
  to {
    transform: scale(1.15) rotate(0.001deg);
  }
}
.fadein {
  opacity: 0;
}
.fadein.scrollActive {
  opacity: 1;
}

.fadeTop {
  transform: translateY(5rem);
}
.fadeTop.scrollActive {
  transform: translate(0);
}

.fadeRight {
  transform: translateX(5rem);
}
.fadeRight.scrollActive {
  transform: translate(0);
}

.fadeBottom {
  transform: translateY(-5rem);
}
.fadeBottom.scrollActive {
  transform: translate(0);
}

.fadeLeft {
  transform: translateX(-5rem);
}
.fadeLeft.scrollActive {
  transform: translate(0);
}

.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background-color: #fff;
  height: 8rem;
  width: 100%;
  z-index: 10000;
}
@media only screen and (max-width: 767px) {
  .header {
    position: static;
    height: 10rem;
  }
}
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: auto;
  width: 98.5%;
}
@media only screen and (max-width: 767px) {
  .header__wrapper {
    width: 96%;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media only screen and (max-width: 767px) {
  .header__logo {
    gap: 2rem;
  }
}
.header__logo .logo {
  width: 26rem;
}
@media only screen and (max-width: 767px) {
  .header__logo .logo {
    width: 40rem;
  }
}
.header__logo .text {
  color: #178BD1;
  font-size: 1.4rem;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .header__logo .text {
    font-size: 2.2rem;
  }
}
.header__detail {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
@media only screen and (max-width: 767px) {
  .header__detail {
    justify-content: space-between;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 10rem;
    background-color: #fff;
    padding: 0 4%;
    transition: all ease-in-out 0.6s;
    transform: translateY(-100%);
    z-index: 10000;
  }
  .header__detail.active {
    transform: translate(0);
  }
}
.header__tel {
  display: flex;
  align-items: flex-end;
}
.header__tel .text01 {
  font-weight: bold;
  margin: 0 0.2rem 0.2rem 0;
}
@media only screen and (max-width: 767px) {
  .header__tel .text02 {
    font-size: 2.2rem;
    letter-spacing: normal;
  }
}
.header__tel .nmb {
  font-weight: bold;
  font-size: 3.2rem;
}
@media only screen and (max-width: 767px) {
  .header__tel .nmb {
    font-size: 4.6rem;
    letter-spacing: 0.8px;
  }
}
.header__contact {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 2.5rem;
  border: 1.5px solid #09355F;
  border-radius: 1rem;
}
@media only screen and (max-width: 767px) {
  .header__contact {
    border-radius: 2rem;
    padding: 1.6rem 3.6rem;
    gap: 2rem;
  }
}
.header__contact .icon {
  width: 2.4rem;
}
@media only screen and (max-width: 767px) {
  .header__contact .icon {
    width: 4rem;
  }
}
.header__contact .text {
  font-size: 1.8rem;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .header__contact .text {
    font-size: 2.8rem;
  }
}
.header__site {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #09355F;
  color: #fff;
  width: 19rem;
  height: 8rem;
}
@media only screen and (max-width: 767px) {
  .header__site {
    height: 10rem;
    width: 16rem;
  }
}
.header__site span {
  font-size: 1.4rem;
  font-weight: bold;
  padding-bottom: 1rem;
  border-bottom: 2px solid;
  -o-border-image: linear-gradient(to right, #004BE2 0%, #6DD8D0 100%);
     border-image: linear-gradient(to right, #004BE2 0%, #6DD8D0 100%);
  border-image-slice: 1;
}
@media only screen and (max-width: 767px) {
  .header__site span {
    font-size: 2.2rem;
  }
}

#wrapper {
  background-color: #F5F5F5;
}

.main {
  line-height: 2;
  margin-top: 8rem;
}
@media only screen and (max-width: 767px) {
  .main {
    margin-top: 4rem;
  }
}

.wrapper {
  max-width: 1100px;
  width: 90%;
  margin: auto;
}
@media print, screen and (min-width: 768px) {
  .wrapper.big {
    max-width: 1310px;
    width: 98%;
  }
}
.wrapper .inner {
  width: 95%;
}
@media only screen and (max-width: 767px) {
  .wrapper .inner {
    width: 92%;
  }
}

.inner {
  max-width: 1000px;
  width: calc(90% - 6rem);
  margin: auto;
}

.titleType01 {
  text-align: center;
}
.titleType01 .en {
  height: 8rem;
  margin: 0 auto -2rem;
}
.titleType01 .en.big {
  height: 9.6rem;
}
.titleType01 .en img {
  height: 100%;
  width: auto;
}
.titleType01 .ja {
  position: relative;
  display: inline-block;
  font-size: 2.6rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid;
  -o-border-image: linear-gradient(to right, #004BE2 0%, #6DD8D0 100%);
     border-image: linear-gradient(to right, #004BE2 0%, #6DD8D0 100%);
  border-image-slice: 1;
  line-height: 1;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .titleType01 .ja {
    font-size: 3rem;
  }
}

.color-sky {
  color: #178BD1;
}

.mv {
  position: relative;
  margin-left: auto;
  width: 98.5%;
  padding-bottom: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .mv {
    padding-bottom: 0;
    width: 96%;
  }
}
.mv::before {
  content: "";
  position: absolute;
  top: 1.5rem;
  right: 0;
  bottom: 0;
  left: 0;
  border-top-left-radius: 3rem;
  border-bottom-left-radius: 3rem;
  background: rgb(109, 216, 208);
  background: linear-gradient(180deg, rgba(109, 216, 208, 0.8) 0%, rgba(0, 75, 226, 0.8) 100%);
}
@media only screen and (max-width: 767px) {
  .mv::before {
    top: 0;
  }
}
.mv__wrapper {
  position: relative;
  display: flex;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .mv__wrapper {
    flex-direction: column;
    padding: 12rem 0 6rem 6rem;
  }
}
.mv__detail {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 40%;
}
@media only screen and (max-width: 767px) {
  .mv__detail {
    display: block;
    position: static;
    margin-top: 6rem;
    width: 94%;
  }
}
.mv__detail .note {
  position: absolute;
  top: 3rem;
  left: 3rem;
  width: 20rem;
}
@media only screen and (max-width: 767px) {
  .mv__detail .note {
    top: 1rem;
    left: 4rem;
    width: 30rem;
  }
}
.mv__detail .title {
  width: 34rem;
}
.mv__detail .info {
  position: absolute;
  right: 2.5rem;
  bottom: 0.5rem;
  color: #fff;
  font-weight: bold;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .mv__detail .info {
    position: static;
    font-size: 3.2rem;
    margin-top: 3rem;
  }
}
.mv__detail .info small {
  font-size: 1.4rem;
}
@media only screen and (max-width: 767px) {
  .mv__detail .info small {
    font-size: 2.8rem;
  }
}
@media print, screen and (min-width: 768px) {
  .mv__img {
    border-radius: 1rem;
    height: 70rem;
    width: 60%;
    overflow: hidden;
  }
}
@media only screen and (max-width: 767px) {
  .mv__img {
    order: -1;
  }
}
.mv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}

@media print, screen and (min-width: 768px) {
  .intro {
    background-image: url("../img/top/intro-bg.svg");
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 100%;
  }
}
.intro__content {
  position: relative;
  margin-top: 8rem;
}
@media only screen and (max-width: 767px) {
  .intro__content {
    margin-top: 0;
    padding-top: 8rem;
    background-image: url("../img/top/intro-bg.svg");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .intro__content .inner {
    width: 90%;
  }
}
.intro__content .text {
  width: 47.5%;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .intro__content .text {
    margin-top: 5rem;
    width: 100%;
  }
}
.intro__content .text p:not(:first-child) {
  margin-top: 3rem;
}
@media only screen and (max-width: 767px) {
  .intro__content .text p:not(:first-child) {
    margin-top: 4rem;
  }
}
.intro__content .text strong {
  font-size: 2rem;
}
@media only screen and (max-width: 767px) {
  .intro__content .text strong {
    font-size: 3.2rem;
  }
}
.intro__content .lower {
  position: absolute;
  top: 0;
  right: 0;
  width: 48%;
}
@media only screen and (max-width: 767px) {
  .intro__content .lower {
    position: static;
    margin: 5rem 0 0 auto;
    width: 95%;
  }
}

.voice {
  margin-top: 8rem;
}
@media print, screen and (min-width: 1600px) and (max-width: 2500px) {
  .voice {
    margin-top: 14vw;
  }
}
@media only screen and (max-width: 767px) {
  .voice {
    margin-top: 12rem;
  }
}
.voice .wrapper {
  position: relative;
  background-color: #fff;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  padding: 5rem 0;
}
@media only screen and (max-width: 767px) {
  .voice .wrapper {
    padding: 6rem 0;
  }
}
.voice .wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 38rem;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  background-color: #09355F;
}
.voice .wrapper > * {
  position: relative;
  z-index: 2;
}
.voice .wrapper .titleType01 {
  color: #fff;
}
.voice__content {
  display: flex;
  justify-content: space-between;
  margin-top: 5rem;
}
@media only screen and (max-width: 767px) {
  .voice__content {
    display: block;
    margin-top: 4rem;
  }
}
.voice__item {
  width: 48%;
}
@media only screen and (max-width: 767px) {
  .voice__item {
    width: 100%;
  }
  .voice__item:last-child {
    margin-top: 5rem;
  }
  .voice__item:last-child .no {
    width: 22rem;
  }
}
.voice__item .info {
  position: relative;
  margin-top: 4rem;
}
@media only screen and (max-width: 767px) {
  .voice__item .info {
    padding: 0 3rem;
  }
}
.voice__item .no {
  position: absolute;
  top: 10.2rem;
  right: 0;
}
@media only screen and (max-width: 767px) {
  .voice__item .no {
    top: 0;
    width: 20rem;
  }
}
.voice__item .carrer {
  color: #888888;
  font-size: 1.4rem;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .voice__item .carrer {
    font-size: 2.8rem;
  }
}
.voice__item .name {
  font-weight: bold;
}
.voice__item .commnet {
  position: relative;
  display: inline-block;
  padding: 1.2rem 1.8rem;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.6;
  color: #178BD1;
  margin: 2rem 0;
}
@media only screen and (max-width: 767px) {
  .voice__item .commnet {
    font-size: 4.2rem;
    padding: 2rem 3.5rem;
    margin: 3rem 0;
  }
}
.voice__item .commnet::before, .voice__item .commnet::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../img/top/icon-brackets.png");
  background-size: cover;
  height: 2.4rem;
  width: 2.4rem;
}
@media only screen and (max-width: 767px) {
  .voice__item .commnet::before, .voice__item .commnet::after {
    height: 6rem;
    width: 6rem;
  }
}
.voice__item .commnet::after {
  inset: auto 0 0 auto;
  transform: scale(-1, -1);
}
.voice__item .text {
  font-size: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .voice__item .text {
    font-size: 3rem;
  }
}

.wantend .wrapper {
  background-color: #09355F;
  padding: 5rem 0;
}
@media only screen and (max-width: 767px) {
  .wantend .wrapper {
    padding: 6rem 0;
  }
}
.wantend .wrapper > * {
  position: relative;
  z-index: 2;
}
.wantend .wrapper .titleType01 {
  color: #fff;
}
.wantend__mv {
  margin: 5rem 0 0 -9%;
  width: 98vw;
  max-width: 1310px;
}
@media print, screen and (min-width: 768px) and (max-width: 1366px) {
  .wantend__mv {
    margin-left: -6rem;
  }
}
@media only screen and (max-width: 767px) {
  .wantend__mv {
    margin: 4rem 0 0 -5vw;
    width: 105vw;
  }
}
.wantend__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem 0;
  margin-top: 5rem;
}
@media only screen and (max-width: 767px) {
  .wantend__list {
    margin-top: 4rem;
    gap: 4rem;
  }
}
.wantend__list .item {
  width: 48%;
}
@media only screen and (max-width: 767px) {
  .wantend__list .item {
    width: 100%;
  }
}

.occupation, .welfare, .flow, .faq, .entry {
  margin-top: 5rem;
}
@media only screen and (max-width: 767px) {
  .occupation, .welfare, .flow, .faq, .entry {
    margin-top: 8rem;
  }
}
@media only screen and (max-width: 767px) {
  .occupation .titleType01, .welfare .titleType01, .flow .titleType01, .faq .titleType01, .entry .titleType01 {
    margin-bottom: 4rem;
  }
}

.occupation__content {
  margin-top: 10rem;
}
@media only screen and (max-width: 767px) {
  .occupation__content {
    margin-top: 6rem;
  }
}
.occupation__item {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .occupation__item {
    margin: auto;
    width: 92%;
  }
  .occupation__item::before {
    content: "";
    position: absolute;
    top: 0;
    right: -9vw;
    bottom: 10rem;
    background-color: #E9EBEE;
    width: 54rem;
  }
}
.occupation__item:not(:first-child) {
  margin-top: 8rem;
}
@media only screen and (max-width: 767px) {
  .occupation__item:not(:first-child) {
    margin-top: 14rem;
  }
}
.occupation__item .img {
  position: relative;
  width: 47.5%;
  z-index: 5;
}
@media only screen and (max-width: 767px) {
  .occupation__item .img {
    margin-left: -4%;
    width: 120%;
  }
}
.occupation__wrapper {
  display: flex;
  align-items: flex-start;
  margin-left: auto;
  width: 96%;
  max-width: 1210px;
  margin-top: -29rem;
}
@media only screen and (max-width: 767px) {
  .occupation__wrapper {
    display: block;
    margin-top: -6rem;
    width: 100%;
  }
}
.occupation__wrapper .info {
  position: relative;
  padding: 26rem 5rem 5rem;
  width: 59rem;
}
@media print, screen and (min-width: 768px) and (max-width: 1366px) {
  .occupation__wrapper .info {
    width: 64rem;
  }
}
@media only screen and (max-width: 767px) {
  .occupation__wrapper .info {
    padding: 0;
    width: 100%;
  }
}
@media print, screen and (min-width: 768px) {
  .occupation__wrapper .info::before {
    content: "";
    position: absolute;
    inset: 0 0 0 0;
    background-color: #E9EBEE;
    border-radius: 1rem;
    height: 100%;
    width: 100%;
  }
}
.occupation__wrapper .info > * {
  position: relative;
  z-index: 10;
}
.occupation__wrapper .info .title {
  font-size: 2.6rem;
  font-weight: bold;
  color: #178BD1;
}
@media only screen and (max-width: 767px) {
  .occupation__wrapper .info .title {
    font-size: 5.2rem;
  }
}
.occupation__wrapper .info .title .cad {
  width: 26rem;
}
@media only screen and (max-width: 767px) {
  .occupation__wrapper .info .title .cad {
    width: 47rem;
  }
}
.occupation__wrapper .info .title .sales {
  width: 18rem;
}
@media only screen and (max-width: 767px) {
  .occupation__wrapper .info .title .sales {
    width: 36rem;
  }
}
.occupation__wrapper .info .title .management {
  width: 45rem;
}
@media only screen and (max-width: 767px) {
  .occupation__wrapper .info .title .management {
    width: 62rem;
  }
}
.occupation__wrapper .info .text {
  font-size: 1.5rem;
  margin-top: 3rem;
}
@media only screen and (max-width: 767px) {
  .occupation__wrapper .info .text {
    font-size: 3rem;
    margin-top: 4rem;
  }
}
.occupation__wrapper .info .text p:not(:first-child) {
  margin-top: 3rem;
}
@media only screen and (max-width: 767px) {
  .occupation__wrapper .info .text p:not(:first-child) {
    margin-top: 4rem;
  }
}
.occupation__wrapper .detail {
  position: relative;
  width: 79rem;
  background-color: #fff;
  border-radius: 1rem;
  padding: 15rem 16rem;
  margin: 5rem 0 0 -16rem;
  z-index: 2;
}
@media print, screen and (min-width: 768px) and (max-width: 1366px) {
  .occupation__wrapper .detail {
    border-radius: 2rem;
    width: 78rem;
    padding: 15rem 11rem;
    margin: 5rem 0 0 -12rem;
  }
}
@media only screen and (max-width: 767px) {
  .occupation__wrapper .detail {
    padding: 12rem 5rem;
    margin: 4rem 0 0;
    width: 100%;
  }
}
.occupation__wrapper .detail::before, .occupation__wrapper .detail::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-image: url("../img/top/occupation-brackets.png");
  background-size: cover;
  height: 10rem;
  width: 10rem;
}
@media only screen and (max-width: 767px) {
  .occupation__wrapper .detail::before, .occupation__wrapper .detail::after {
    background-image: url("../img/top/occupation-brackets-sp.png");
  }
}
.occupation__wrapper .detail::after {
  inset: auto auto 0 0;
  transform: scale(-1, -1);
}
.occupation__wrapper .detail .about {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  font-size: 1.8rem;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .occupation__wrapper .detail .about {
    font-size: 3.2rem;
    gap: 3rem;
  }
}
.occupation__wrapper .detail .about .item01 {
  background-color: #09355F;
  color: #fff;
  padding: 0.3rem 2.4rem;
}
@media only screen and (max-width: 767px) {
  .occupation__wrapper .detail .about .item01 {
    padding: 0.6rem;
    width: 100%;
    text-align: center;
  }
}
.occupation__wrapper .detail .about .item02 {
  background-color: #E9EBEE;
  border-radius: 5rem;
  border: 1px solid #09355F;
  padding: 0.3rem 2.4rem;
}
@media only screen and (max-width: 767px) {
  .occupation__wrapper .detail .about .item02 {
    padding: 0.6rem;
    width: 100%;
    text-align: center;
  }
}
.occupation__wrapper .detail .list {
  display: flex;
  flex-wrap: wrap;
  font-weight: bold;
  font-size: 1.5rem;
  border-top: 1px solid #09355F;
  margin-top: 3rem;
}
@media only screen and (max-width: 767px) {
  .occupation__wrapper .detail .list {
    border-top: 0;
    display: block;
    margin-top: 5rem;
    font-size: 3rem;
  }
}
.occupation__wrapper .detail .list .term, .occupation__wrapper .detail .list .desc {
  padding: 2.5rem 0;
  border-bottom: 1px solid #09355F;
}
@media only screen and (max-width: 767px) {
  .occupation__wrapper .detail .list .term, .occupation__wrapper .detail .list .desc {
    padding: 0;
    border-bottom: 0;
  }
}
.occupation__wrapper .detail .list .term {
  width: 30%;
}
@media only screen and (max-width: 767px) {
  .occupation__wrapper .detail .list .term {
    border-top: 1px solid #09355F;
    padding-top: 3rem;
    margin-bottom: 1.5rem;
    width: 100%;
    margin-top: -1px;
  }
}
.occupation__wrapper .detail .list .desc {
  width: 70%;
}
@media only screen and (max-width: 767px) {
  .occupation__wrapper .detail .list .desc {
    padding-bottom: 3rem;
    border-bottom: 1px solid #09355F;
    width: 100%;
  }
}

.welfare__content {
  border-radius: 1rem;
  background-color: #fff;
  padding: 8rem 0;
}
@media only screen and (max-width: 767px) {
  .welfare__content {
    border-radius: 2rem;
    padding: 8rem 3rem;
  }
}
.welfare__content .list {
  display: flex;
  flex-wrap: wrap;
  margin: auto;
  max-width: 1000px;
  width: 80%;
  gap: 6rem 0;
}
@media only screen and (max-width: 767px) {
  .welfare__content .list {
    gap: 8rem 0;
    width: 100%;
  }
}
.welfare__content .item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 33.3333%;
}
@media only screen and (max-width: 767px) {
  .welfare__content .item {
    width: 50%;
  }
}
.welfare__content .item .icon {
  margin: 0 auto;
  width: 5rem;
}
@media only screen and (max-width: 767px) {
  .welfare__content .item .icon {
    width: 10rem;
  }
}
.welfare__content .item .icon.icon05 {
  width: 7rem;
}
@media only screen and (max-width: 767px) {
  .welfare__content .item .icon.icon05 {
    width: 14rem;
  }
}
.welfare__content .item .text {
  text-align: center;
  font-size: 2.2rem;
  font-weight: bold;
  margin-top: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .welfare__content .item .text {
    font-size: 3.2rem;
  }
}

.flow__content {
  margin-top: 6rem;
}

.faq__list {
  border-radius: 1rem;
  background-color: #fff;
  padding: 10rem 15rem 15rem;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .faq__list {
    border-radius: 2rem;
    padding: 6rem 3rem;
  }
}
.faq__list .item {
  position: relative;
  padding: 5rem 0 5rem 12rem;
  border-bottom: 1px solid #E9EBEE;
}
@media only screen and (max-width: 767px) {
  .faq__list .item {
    padding: 1rem 0 0 10rem;
    margin-bottom: 3rem;
    border-bottom: 0;
  }
}
.faq__list .item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
  margin-bottom: 0;
}
.faq__list .item::before {
  content: "";
  position: absolute;
  top: 5rem;
  left: 0;
  background-image: url("../img/top/icon-question.svg");
  background-size: cover;
  height: 8rem;
  width: 8rem;
}
@media only screen and (max-width: 767px) {
  .faq__list .item::before {
    top: 0;
  }
}
.faq__list .question {
  font-size: 2.2rem;
  margin: 2rem 0 1rem;
}
@media only screen and (max-width: 767px) {
  .faq__list .question {
    font-size: 3.6rem;
    margin-top: 0;
    line-height: 1.4;
  }
}
.faq__list .answer {
  font-size: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .faq__list .answer {
    font-size: 2.8rem;
  }
}

@media only screen and (max-width: 767px) {
  .entry__mv {
    margin-left: -5vw;
    width: 102vw;
  }
}
.entry__wrapper {
  position: relative;
  margin-top: 5rem;
  padding: 8rem 0 15rem;
}
@media only screen and (max-width: 767px) {
  .entry__wrapper {
    width: 100%;
  }
}
.entry__wrapper::before, .entry__wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background-image: url("../img/top/entry-brackets.png");
  background-size: cover;
  height: 10rem;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .entry__wrapper::before, .entry__wrapper::after {
    background-image: url("../img/top/entry-brackets-sp.png");
    height: 13rem;
  }
}
.entry__wrapper::after {
  inset: auto 0 0 auto;
  transform: scale(-1, -1);
}
.entry__wrapper > * {
  position: relative;
  z-index: 10;
}
.entry__form {
  margin: 8rem auto 0;
  max-width: 680px;
  width: 80%;
}
@media only screen and (max-width: 767px) {
  .entry__form {
    margin-top: 4rem;
    width: 92%;
  }
}
.entry__form .privacy {
  text-align: center;
  margin-top: 3rem;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .entry__form .privacy {
    margin-top: 4rem;
  }
}
.entry__form .privacy a {
  text-decoration: underline;
}
.entry__form .btn {
  position: relative;
  height: 7.3rem;
  width: 30rem;
  background-image: url("../img/top/entry-btn.png");
  background-size: cover;
  margin: 3rem auto 0;
}
@media only screen and (max-width: 767px) {
  .entry__form .btn {
    margin-top: 4rem;
    height: 15.4rem;
    width: 100%;
  }
}
.entry__form .btn input {
  font-size: 2.2rem;
  position: absolute;
  font-weight: bold;
  inset: 0 0 0 0;
  line-height: 7.3rem;
  width: 100%;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .entry__form .btn input {
    font-size: 3.6rem;
  }
}
.entry__content {
  border-radius: 1rem;
  background-color: #fff;
  border-radius: 1rem;
  padding: 5rem;
}
@media only screen and (max-width: 767px) {
  .entry__content {
    padding: 0;
    background-color: unset;
  }
}
.entry__content .item:not(:first-child) {
  margin-top: 4rem;
}
.entry__content .question {
  font-weight: bold;
  margin-bottom: 1rem;
}
.entry__content .answer input, .entry__content .answer select {
  line-height: 5rem;
  border: 1px solid #E9EBEE;
  padding: 0 2rem;
  width: 100%;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .entry__content .answer input, .entry__content .answer select {
    line-height: 8rem;
    padding: 0 3rem;
  }
}
.entry__content .answer textarea {
  border: 1px solid #E9EBEE;
  background-color: #fff;
  padding: 2rem;
  height: 30rem;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .entry__content .answer textarea {
    height: 60rem;
    padding: 3rem;
  }
}
.entry .wpcf7 form .wpcf7-response-output {
  line-height: 1.6;
  margin: 3rem auto 0;
  padding: 1rem 2rem;
  max-width: 680px;
  width: 80%;
}
@media only screen and (max-width: 767px) {
  .entry .wpcf7 form .wpcf7-response-output {
    padding: 2rem 3rem;
    margin-top: 4rem;
    width: 92%;
  }
}

.thanks__wrapper {
  position: relative;
  margin-top: 5rem;
  padding: 8rem 0 18rem;
}
@media only screen and (max-width: 767px) {
  .thanks__wrapper {
    padding: 12rem 0 24rem;
  }
}
.thanks__wrapper::before, .thanks__wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background-image: url("../img/top/entry-brackets.png");
  background-size: cover;
  height: 10rem;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .thanks__wrapper::before, .thanks__wrapper::after {
    background-image: url("../img/top/entry-brackets-sp.png");
    height: 13rem;
  }
}
.thanks__wrapper::after {
  inset: auto 0 0 auto;
  transform: scale(-1, -1);
}
.thanks__wrapper > * {
  position: relative;
  z-index: 10;
}
.thanks__text {
  margin-top: 10rem;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .thanks__text {
    margin-top: 15rem;
  }
}
.thanks__text .note {
  color: #178BD1;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .thanks__text .note {
    font-size: 4rem;
    margin-bottom: 2rem;
    line-height: 1.4;
  }
}
.thanks__text .link {
  text-decoration: underline;
  font-weight: bold;
}

.footer {
  padding: 4rem;
}
@media only screen and (max-width: 767px) {
  .footer {
    padding: 6rem;
  }
}
.footer .copy {
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .footer .copy {
    font-size: 2.8rem;
  }
}