@charset "UTF-8";
/* ------------- */
/* index         */
/* ------------- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
:root {
  --fontColor: #000000;
  --green: #1D7E80;
  --darkgreen: #176566;
  --blue: #0098D0;
  --darkblue: #0086B8;
  --alart: #FFFFD7;
}

* {
  position: relative;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "Lato", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
}

h1 {
  font-family: "mizolet", sans-serif;
}

img,
svg {
  width: 100%;
  font-size: 0;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  color: #4c61cb;
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  transition: 0.3s;
  text-decoration: none;
}

em {
  font-style: normal;
}

button {
  border: none;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.displaynone {
  display: none !important;
}

.wrapper {
  background: linear-gradient(227.39deg, #8DE2A0 4.33%, #3BBCB8 73.96%);
}

.header {
  height: 72px;
  padding: 8px 24px;
  border-bottom: 1px solid rgb(213, 213, 213);
  background-color: #fff;
}
.header img {
  max-width: 164px;
}

.main {
  width: 80%;
  min-height: calc(100vh - 72px);
  padding: 72px 0;
  margin: 0 auto;
}

.alert {
  background-color: var(--alart);
  padding: 12px;
  border-radius: 24px;
  margin-bottom: 32px;
}
.alert span {
  display: block;
  font-size: clamp(2.0rem, 1.3295774648rem + 0.1877934272vw, 1.6rem);
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.04em;
  overflow-y: scroll;
  max-height: 62px;
}

.containerInfo {
  background-color: #fff;
  padding: 80px 4.3vw;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 960px) {
  .containerInfo {
    border-radius: 24px;
  }
}

.containerInfo_title {
  font-size: 0;
}

.containerInfo_label {
  font-size: clamp(1.8rem, 1.6591549296rem + 0.3755868545vw, 2.2rem);
  font-weight: 600;
  line-height: 33px;
  letter-spacing: 0.02em;
  margin-top: 40px;
}

.contaierText_split {
  position: relative;
  width: 100%;
}
.contaierText_split p {
  position: relative;
  font-size: clamp(1.4rem, 1.3295774648rem + 0.1877934272vw, 1.6rem);
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.04em;
  text-align: center;
  z-index: 1;
}
.contaierText_split p:after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 5em;
  height: 100%;
  background-color: #fff;
  z-index: -1;
}
.contaierText_split:after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 50%;
  height: 1px;
  width: 100%;
  background-color: rgb(213, 213, 213);
}

.button {
  width: 100%;
}
.button a {
  color: #fff;
  display: block;
  font-size: clamp(1.6rem, 1.5295774648rem + 0.1877934272vw, 1.8rem);
  font-weight: 700;
  line-height: 27px;
  letter-spacing: 0.04em;
  height: 60px;
  line-height: 60px;
  box-shadow: 0 2px 2px 0 rgba(100, 109, 109, 0.35);
  text-align: center;
  border-radius: 12px;
}
.button._memberLogin {
  margin-top: 28px;
  margin-bottom: 30px;
}
.button._memberLogin a {
  position: relative;
  background-color: var(--green);
}
.button._memberLogin a:hover {
  background-color: var(--darkgreen);
}
.button._memberLogin a svg {
  width: 40px;
  position: absolute;
  top: 8px;
  left: 12px;
}
.button._gBizLogin {
  margin-top: 16px;
  margin-bottom: 38px;
}
.button._gBizLogin a {
  background-color: var(--blue);
}
.button._gBizLogin a:hover {
  background-color: var(--darkblue);
}
.button._signUp {
  margin-top: 28px;
  margin-bottom: 32px;
}
.button._signUp a {
  color: var(--green);
  border: 1px solid var(--green);
  background-color: #fff;
}
.button._signUp a:hover {
  background-color: #E8F0F0;
}

.contaierText_a a {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  justify-content: center;
  align-items: center;
  color: var(--green);
  margin: 0 auto;
}
.contaierText_a a:hover {
  opacity: 0.7;
}
.contaierText_a a span {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.04em;
  border-bottom: 2px solid var(--green);
}
.contaierText_a a svg {
  width: 24px;
}

.containerImage {
  display: none;
  width: 50%;
  background-color: #d4f5e7;
  border-radius: 0 24px 24px 0;
  align-items:center;
  background: #ccf7e6 50% 50% no-repeat;
  background-size: 80%;
}
@media screen and (min-width: 960px) {
  .containerImage {
    display: block;
  }
}

.main:has(.containerImage) .mainContainer {
  display: flex;
}
.main:has(.containerImage) .containerInfo {
  width: 100%;
}
@media screen and (min-width: 960px) {
  .main:has(.containerImage) .containerInfo {
    width: 50%;
    border-radius: 24px 0 0 24px;
  }
}

.messageSection {
  text-align: center;
}

.messageSection_hero {
  max-width: 50%;
  margin: clamp(0rem, -1.4084507042rem + 3.7558685446vw, 4rem) auto 0;
}

.messageSection_title {
  font-size: clamp(2.2rem, 1.8478873239rem + 0.9389671362vw, 3.2rem);
  font-weight: 700;
  line-height: clamp(3.2rem, 2.6366197183rem + 1.5023474178vw, 4.8rem);
  letter-spacing: 0.02em;
  margin-top: clamp(0rem, -1.4084507042rem + 3.7558685446vw, 4rem);
}

.messageSection_p {
  font-size: clamp(1.6rem, 1.3887323944rem + 0.5633802817vw, 2.2rem);
  font-weight: 400;
  line-height: clamp(2.4rem, 2.0830985915rem + 0.8450704225vw, 3.3rem);
  letter-spacing: 0.02em;
  margin-top: clamp(0.8rem, 0.2366197183rem + 1.5023474178vw, 2.4rem);
}/*# sourceMappingURL=index.css.map */