@charset "UTF-8";
* {
  box-sizing: border-box;
  word-wrap: break-word;
  background-repeat: no-repeat;
  overflow-wrap: break-word;
}

html,
body,
h1,
h2,
h3,
h4,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  scroll-behavior: smooth;
}

html {
  overflow-x: hidden;
  height: -webkit-fill-available;
}

body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Verdana, Meiryo, sans-serif;
  font-size: 62.5%;
  line-height: 1.2;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: 0.2s;
}

article,
header,
footer,
aside,
figure,
figcaption,
nav,
section,
img,
video,
a {
  display: block;
}

img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

ol,
ul {
  list-style: none;
  list-style-type: none;
}

input,
button,
select,
textarea {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-appearance: none;
  max-width: 100%;
  outline: 0;
  border: 1px solid #0C58A7;
  font-size: 1.6rem;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.pcView {
  display: block !important;
}
@media (max-width: 568px) {
  .pcView {
    display: none !important;
  }
}

.spView {
  display: none !important;
}
@media (max-width: 568px) {
  .spView {
    display: block !important;
  }
}

.widthKeeper {
  margin-left: auto;
  margin-right: auto;
  max-width: 1280px;
}
@media (max-width: 768px) {
  .widthKeeper {
    max-width: 100%;
  }
}

.jelly {
  -webkit-animation: gelatine 1s infinite;
          animation: gelatine 1s infinite;
}

@-webkit-keyframes gelatine {
  from, to {
    transform: scale(0.95, 0.95);
  }
  50% {
    transform: scale(1, 1);
  }
}

@keyframes gelatine {
  from, to {
    transform: scale(0.95, 0.95);
  }
  50% {
    transform: scale(1, 1);
  }
}
header {
  border-bottom: 5px solid #0C58A7;
  display: flex;
  padding: 0 10px;
  align-items: center;
  position: fixed;
  z-index: 15;
  background: #fff;
  width: 100%;
  height: 75px;
}
header a {
  width: 16%;
}
@media (max-width: 568px) {
  header {
    height: 54px;
  }
}
header .topLogo {
  padding-left: 10px;
}
@media (max-width: 568px) {
  header .topLogo {
    width: 150px;
  }
}
header ul {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 568px) {
  header ul {
    display: none;
  }
}
header ul li {
  color: #0C58A7;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 25px 0;
  text-align: center;
}
@media (max-width: 568px) {
  header ul li {
    font-size: 1rem;
  }
}

.callBtn {
  width: 80%;
  margin: 10px auto 40px;
}

#FV {
  padding-top: 75px;
  max-height: 920px;
  overflow-y: hidden;
}
@media (max-width: 568px) {
  #FV {
    padding-top: 50px;
  }
}
#FV .widthKeeper {
  position: relative;
}
@media (max-width: 568px) {
  #FV .widthKeeper .FV__bgImg {
    overflow: hidden;
    width: 100vw;
  }
  #FV .widthKeeper .FV__bgImg img {
    transform: scale(1.1) translateY(5px);
  }
}
#FV .widthKeeper .FV__icon {
  position: absolute;
  width: 19%;
  top: 41%;
  left: 16%;
}
@media (max-width: 568px) {
  #FV .widthKeeper .FV__icon {
    width: 32%;
    top: 28%;
    left: 8%;
  }
}
#FV .widthKeeper button {
  width: 27%;
  position: absolute;
  top: 69%;
  left: 12%;
}
@media (max-width: 568px) {
  #FV .widthKeeper button {
    width: 80%;
    position: relative;
    top: 0;
    left: 0;
    margin-top: 30px;
    margin-bottom: 20px;
  }
}

button {
  margin: 50px auto 0;
  display: block;
}

.halfBlock__container {
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 568px) {
  .reverse {
    flex-direction: column-reverse;
  }
}

.text {
  font-size: 1.5rem;
  line-height: 3rem;
}
@media (max-width: 568px) {
  .text {
    font-size: 1.2rem;
    line-height: 2.2rem;
  }
}

#about {
  width: 50%;
  background-image: url(../img/back_1.svg);
  background-size: cover;
  padding: 3% 5%;
  min-height: 450px;
}
@media (max-width: 568px) {
  #about {
    width: 100%;
    background-position: center;
    min-height: 370px;
  }
}
#about h2 {
  font-size: 2.9rem;
  text-align: center;
  color: #0C58A7;
  margin-bottom: 50px;
}
@media (max-width: 568px) {
  #about h2 {
    font-size: 1.8rem;
    padding-top: 15px;
  }
}

#white {
  width: 50%;
}
@media (max-width: 568px) {
  #white {
    width: 100%;
    padding-top: 5%;
  }
}
#white ul {
  padding-left: 19%;
  margin-top: -25px;
  margin-bottom: 60px;
}
@media (max-width: 568px) {
  #white ul {
    margin-top: 10px;
  }
}
@media (max-width: 568px) {
  #white ul {
    padding-left: 10px;
  }
}
#white li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
#white li .white__check {
  width: 2rem;
  display: inline-block;
}
#white li .white__text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2994d6;
  padding-left: 15px;
}
@media (max-width: 568px) {
  #white li .white__text {
    font-size: 1.3rem;
    padding-left: 9px;
  }
}

#life {
  width: 50%;
  padding: 3% 5%;
  min-height: 450px;
}
@media (max-width: 568px) {
  #life {
    width: 100%;
    padding: 8% 3%;
  }
}
#life h2 {
  text-align: center;
  font-size: 1.8rem;
  line-height: 2.8rem;
  margin-bottom: 10px;
}
@media (max-width: 568px) {
  #life h2 {
    font-size: 1.3rem;
    line-height: 1.8rem;
  }
}

#office {
  width: 50%;
  min-height: 450px;
  background-image: url(../img/office.jpg);
  background-size: cover;
  background-position: center;
}
@media (max-width: 568px) {
  #office {
    width: 100%;
    min-height: 300px;
  }
}

.reverse__box {
  width: 50%;
}
@media (max-width: 568px) {
  .reverse__box {
    width: 100%;
  }
}

.middle {
  padding-top: 50px !important;
}

#easy {
  width: 100%;
  padding: 3% 3% 1.5%;
  min-height: 450px;
  background-color: #0C58A7;
  color: #fff;
}
#easy h2 {
  text-align: center;
  font-size: 1.8rem;
  line-height: 2.8rem;
  color: #0C58A7;
  background-image: url(../img/balloon.svg);
  background-position: center;
  background-size: 400px;
  height: 150px;
  padding-top: 20px;
  transform: rotateZ(352deg);
  margin-bottom: 19px;
}
@media (max-width: 568px) {
  #easy h2 {
    transform: none;
  }
}
#easy li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
@media (max-width: 568px) {
  #easy li {
    flex-direction: column;
  }
}
#easy li .easy__title {
  display: flex;
  font-weight: 700;
  width: 52%;
  align-items: center;
  font-weight: 700;
}
@media (max-width: 568px) {
  #easy li .easy__title {
    width: 100%;
    align-items: flex-start;
  }
}
#easy li .easy__title img {
  width: 80px;
}
@media (max-width: 568px) {
  #easy li .easy__title img {
    width: 65px;
  }
}
#easy li .easy__title p {
  font-size: 1.8rem;
  transform: scale(0.95, 1);
  padding-left: 10px;
}
#easy li .easy__text {
  font-size: 0.9rem;
  width: 48%;
}
@media (max-width: 568px) {
  #easy li .easy__text {
    font-size: 0.7rem;
    width: 100%;
    padding-left: 80px;
    margin-top: -28px;
  }
}
#easy .easy__boldText {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.8rem;
}

.triangle {
  position: relative;
}

@media (max-width: 568px) {
  .triangle:after {
    content: "";
    position: absolute;
    top: 100%;
    box-sizing: border-box;
    border-right: 50vw solid transparent;
    border-left: 50vw solid transparent;
    border-top: 30px solid #0C58A7;
    z-index: 10;
    left: 0;
    right: 0;
  }
}

.sec {
  padding: 50px 0px 30px;
}

.sec02 {
  padding-top: 150px;
  background-color: #00bfff;
}

.spButton {
  padding: 50px 10px;
  font-weight: 700;
  line-height: 1.7rem;
}
.spButton p {
  padding: 0 15px;
  font-size: 1rem;
}
.spButton:last-of-type {
  padding: 0 10px;
}

#raku {
  width: 50%;
  padding: 3.5% 3% 2%;
}
@media (max-width: 568px) {
  #raku {
    width: 100%;
  }
}
#raku h2 {
  width: 90%;
  margin: 0 auto 30px;
}
#raku .raku__container {
  display: flex;
}
#raku .raku__container .raku__img {
  width: 45%;
}
#raku .raku__container .raku__text {
  width: 55%;
  font-size: 1.3rem;
  line-height: 2.4rem;
  color: #0C58A7;
  position: relative;
}
@media (max-width: 568px) {
  #raku .raku__container .raku__text {
    font-size: 0.9rem;
    line-height: 1.5rem;
  }
}
#raku .raku__container .raku__text .raku__bgImg {
  position: absolute;
  width: 80%;
  opacity: 0.16;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}

#interview .widthKeeper {
  position: relative;
  background: #E4F2FD;
  padding: 0px 40px 50px;
}
@media (max-width: 568px) {
  #interview .widthKeeper {
    padding: 0 20px 50px;
  }
}
#interview .interview__titleContainer {
  position: absolute;
  width: 36%;
  margin: auto;
  left: 0;
  right: 0;
  top: 40px;
}
@media (max-width: 568px) {
  #interview .interview__titleContainer {
    position: relative;
    width: 100%;
  }
}
#interview .interview__titleContainer .interview__titleCap {
  font-size: 1.2rem;
  text-align: center;
  font-weight: 700;
  margin-top: 30px;
  line-height: 2rem;
}
#interview .interview__container {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 568px) {
  #interview .interview__container {
    flex-direction: column;
  }
}
#interview .interview__container .interview__parts {
  width: 48%;
}
@media (max-width: 568px) {
  #interview .interview__container .interview__parts {
    width: 100%;
  }
}
#interview .interview__container .interview__parts .interview__parts__icon {
  position: relative;
  width: 40%;
  margin: 50px auto 5px;
}
@media (max-width: 568px) {
  #interview .interview__container .interview__parts .interview__parts__icon {
    width: 65%;
  }
}
#interview .interview__container .interview__parts .interview__parts__icon .icon__mic {
  position: absolute;
  width: 30px;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 10px;
}
#interview .interview__container .interview__parts .interview__parts__caption {
  text-align: center;
}
#interview .interview__container .interview__parts .interview__parts__caption .caption__name {
  font-size: 1rem;
  font-weight: 700;
  margin: 10px auto;
}
#interview .interview__container .interview__parts .interview__parts__text .text__title {
  color: #0C58A7;
  font-weight: 700;
  font-size: 1.2rem;
  text-align: center;
  margin: 23px auto;
}
#interview .interview__container .interview__parts .interview__parts__text .text__main {
  font-size: 1rem;
  line-height: 2rem;
}

#flow .widthKeeper {
  padding: 50px;
  background: #0C58A7;
  color: #fff;
}
@media (max-width: 568px) {
  #flow .widthKeeper {
    padding: 30px;
  }
}
#flow h2 {
  width: 33%;
  max-width: 400px;
  margin: 0 auto 50px;
}
@media (max-width: 568px) {
  #flow h2 {
    width: 100%;
  }
}
#flow ul {
  width: 85%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 568px) {
  #flow ul {
    width: 100%;
  }
}
#flow ul li {
  width: 30%;
  margin-bottom: 70px;
}
@media (max-width: 568px) {
  #flow ul li {
    width: 100%;
  }
}
#flow ul li .flow__stepTitle {
  display: flex;
  margin-bottom: 20px;
}
@media (max-width: 568px) {
  #flow ul li .flow__stepTitle {
    align-items: center;
  }
}
#flow ul li .flow__stepTitle .stepTitle__icon {
  width: 23%;
}
#flow ul li .flow__stepTitle .stepTitle__title {
  font-weight: 700;
  font-size: 1.5rem;
  width: 75%;
  padding-left: 15px;
}
#flow ul li .flow__stepTitle .stepTitle__title .stepTitle__img {
  width: 75%;
  margin-top: 5px;
}
@media (max-width: 568px) {
  #flow ul li .flow__stepTitle .stepTitle__title .stepTitle__img {
    display: none;
  }
}
#flow ul li .flow__text {
  font-size: 1rem;
  line-height: 2rem;
}
#flow button {
  margin: 0 auto;
}

footer {
  position: relative;
  min-height: 350px;
}
footer .footer__logo {
  width: 200px;
  margin: 50px auto;
}
footer .footer__arrow {
  width: 50px;
  margin: 50px auto;
}
footer ul {
  display: flex;
  width: 50%;
  justify-content: space-between;
  margin: 0 auto;
}
@media (max-width: 568px) {
  footer ul {
    width: 90%;
  }
}
footer .footer__copyright {
  background: #0C58A7;
  width: 100%;
  height: 80px;
  color: #fff;
  position: absolute;
  bottom: 0;
  text-align: center;
  padding: 30px;
  font-size: 1rem;
}

/*　ハンバーガーボタン　*/
.hamburger {
  display: block;
  position: fixed;
  z-index: 3;
  right: 13px;
  top: 3px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 4px;
  left: 6px;
  background: #0C58A7;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 10px;
}

.hamburger span:nth-child(2) {
  top: 20px;
}

.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 20px;
  left: 6px;
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 20px;
  transform: rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  color: #000;
  background: #fff;
  text-align: center;
  transform: translateY(-120%);
  transition: all 0.6s;
  width: 100%;
  min-height: 360px;
  margin-top: 52px;
}

nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 50px 25px;
  width: 100%;
  display: block;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
}

nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

nav.globalMenuSp ul li:hover {
  background: #ddd;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #0C58A7;
  padding: 1em 0;
  text-decoration: none;
  width: 100%;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateY(0%);
}

.phone {
  width: 12%;
  position: absolute;
  top: 0;
  right: 18%;
}
.phone a:hover {
  transform: translateY(0);
}

main {
  padding-top: 150px;
}
main h1 {
  text-align: center;
  color: #0C58A7;
  font-size: 2rem;
  margin-bottom: 50px;
}
main .widthKeeper {
  font-size: 1rem;
  line-height: 2rem;
  padding: 0 60px;
  margin-bottom: 150px;
}
@media (max-width: 568px) {
  main .widthKeeper {
    padding: 0 20px;
  }
}
main .widthKeeper p {
  margin-bottom: 50px;
}
main dl {
  display: flex;
  margin: auto;
  margin-bottom: 15px;
  width: 50%;
}
@media (max-width: 568px) {
  main dl {
    width: 90%;
    flex-direction: column;
  }
}
main dl dt {
  font-weight: 700;
  width: 33%;
}
@media (max-width: 568px) {
  main dl dt {
    width: 100%;
    text-align: center;
  }
}
main dl dd {
  width: 60%;
  padding-left: 50px;
}
@media (max-width: 568px) {
  main dl dd {
    width: 100%;
    padding-left: 0;
    text-align: center;
  }
}
main .pms__list li {
  list-style-type: disc;
  margin-bottom: 15px;
}
main .right {
  text-align: right;
}

#floating {
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  right: 0;
  bottom: 0;
  transition: 0.3s;
  width: 100%;
  background: #E4F2FD;
  z-index: 30;
}
#floating.btn_active {
  opacity: 1;
  visibility: visible;
}
#floating.absolute {
  opacity: 0;
  visibility: hidden;
}
#floating p {
  color: #0C58A7;
  font-size: 160%;
  line-height: 3rem;
}/*# sourceMappingURL=main.css.map */