@charset "UTF-8";

/* animation */

.opa0 {
  opacity: 0;
  transition: 0.6s;
  &.active {
    opacity: 1;
  }
}

/* common */

.recruit-footer {
  color: #fff !important;
  a {
    color: #fff !important;
  }
}

.con {
  max-width: 1000px;
  width: 90%;
  margin-right: auto;
  margin-left: auto;
}

.m-con {
  max-width: 800px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

/* ================================
  variable
================================ */
:root {
  --teal: #5ab4be;
  --teal-dark: #3e97a1;
  --teal-light: #eaf6f7;
  --flow-bg: #d7edf0;
  --black: #231815;
  --black2: #262220;
  --text: #333333;
  --gray-tab: #a3a6a6;
  --gray-line: #dcdcdc;
  --blue: #26b7bc;
}


/* ================================
  voice
================================ */

/* font・背景系 */

.fs-30 {
  font-size: 3rem;
}

.fs-24 {
  font-size: 2.4rem;
}

.fs-21 {
  font-size: 2.1rem;
}

.b-t {
  color: var(--blue);
}

.lb-b {
  background-color: var(--teal-light);
}

/*  */

.voice-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

.voice-item:last-child {
  margin-bottom: 0;
}

.voice-item.r {
  flex-direction: row-reverse;
}

.voice-avatar {
  width: 20%;

  img {
    width: auto;
    height: 145px;
  }
}

.voice-bubble {
  width: 75%;
  position: relative;
  border: 1px solid var(--black);
  border-radius: 60px;
  padding: 25px 40px;
  text-align: left;
}

.voice-item:not(.r) .voice-bubble::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -39px;
  margin-top: -20px;
  border: 20px solid transparent;
  border-right: 20px solid #fff;
  z-index: 2;
}

.voice-item:not(.r) .voice-bubble::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -40px;
  margin-top: -20px;
  border: 20px solid transparent;
  border-right: 20px solid #555;
  z-index: 1;
}

.voice-item.r .voice-bubble::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -39px;
  margin-top: -20px;
  border: 20px solid transparent;
  border-left: 20px solid #fff;
  z-index: 2;
}

.voice-item.r .voice-bubble::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -40px;
  margin-top: -20px;
  border: 20px solid transparent;
  border-left: 20px solid #555;
  z-index: 1;
}


/* ================================
  guidelines
================================ */

.guide-block {
  text-align: left;
}

.guide-block-title {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.guide-cards {
  margin-top: 20px;
}

.guide-card {
  padding: 25px 30px;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}

.guide-card+.guide-card {
  border-top: none;
}

.guide-card-name {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.guide-row {
  display: flex;
  margin-bottom: 6px;
}

.guide-row:last-child {
  margin-bottom: 0;
}

.guide-row dt {
  flex: none;
  width: 130px;
}

.guide-row dd {
  flex: 1;
}


.guide-other-title {
  margin-bottom: 20px;
}

.guide-table {
  width: 100%;
  min-width: 800px;
  border-collapse: collapse;
  border-bottom: 1px solid var(--black);
}

.guide-table th,
.guide-table td {
  padding: 16px 20px;
  text-align: left;
  vertical-align: top;
  border-top: 1px solid var(--black);
}

.guide-table th {
  font-weight: bold;
  width: 180px;
}

.guide-table .label-cell {
  width: 145px;
  font-weight: bold;
  background-color: #fff;
}

.guide-other {
  overflow-x: scroll;
}

/* ================================
  flow
================================ */
.flow-sec {
  padding: 90px 0 80px;
  background-color: var(--flow-bg);
}

.flow-list {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.flow-item {
  flex: 1;
  max-width: 240px;
  min-height: 300px;
  background-color: #fff;
  border-radius: 16px;
  padding: 25px 25px 30px;
  text-align: center;
}

.flow-arrow {
  flex: none;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-icon {
  width: 105px;
  height: 100px;
  margin: 15px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;

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

.flow-text {
  margin-top: 15px;
  text-align: left;
}

/* ================================
  contact
================================ */

.contact-sec {
  padding: 90px 0 100px;
}

.contact-btns {
  display: flex;
  justify-content: space-between;
}

.c-btn {
  width: 45%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  border-radius: 33px;
  font-size: 2.1rem;
  transition: 0.3s;
  padding-top: 3px;
}

.c-btn.teal {
  border: 2px solid var(--teal);
  background-color: var(--teal);
  color: #fff;

  &:hover {
    background-color: #fff !important;
    color: var(--teal) !important;
  }
}

.c-btn.black {
  border: 2px solid var(--black);
  background-color: var(--black);
  color: #fff;

  &:hover {
    background-color: #fff !important;
    color: var(--black) !important;
  }
}

.contact-info .tel {
  font-size: 2.1rem;
}

.contact-info p {
  margin-top: 6px;
  font-size: 1.5rem;
}


/* ================================
  entry form page
================================ */
.entry-sec {
  padding: 140px 0 90px;
}

.entry-form {
  max-width: 800px;
  margin: 50px auto 0;
  text-align: left;
}

.f-row {
  display: flex;
  align-items: flex-start;
  padding: 15px 0;
}

.f-label {
  padding-top: 6px;
  flex: none;
  width: 220px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  font-weight: bold;
  margin-right: 15px;
}

.f-required {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--teal);
  color: #fff;
  font-size: 1.5rem;
  padding: 3px 8px;
  border-radius: 4px;
}

.f-input {
  flex: 1;
}

.f-input input[type="text"],
.f-input input[type="tel"],
.f-input input[type="email"],
.f-input select,
.f-input textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-line);
  background-color: #f4f4f4;
  border-radius: 2px;
  font-family: inherit;
}

.f-input textarea {
  min-height: 140px;
  resize: vertical;
}

.f-check-list {
  padding-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.f-check-list label,
.f-agree label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.f-birth {
  display: flex;
  align-items: center;
  gap: 10px;
}

.f-birth select {
  width: auto;
  min-width: 100px;
}

.privacy-box {
  text-align: left;
}

.privacy-scroll {
  height: 180px;
  overflow-y: auto;
  border: 1px solid var(--gray-line);
  padding: 20px;
  font-size: 1.3rem;
  text-align: left;
}

.privacy-scroll h3 {
  font-weight: bold;
  margin-bottom: 10px;
}

.privacy-scroll p {
  margin-bottom: 10px;
}

.f-agree {
  margin-top: 25px;
  text-align: center;
  font-size: 1.5rem;
}

.f-submit {
  margin-top: 40px;
  text-align: center;
}

.f-submit button {
  padding-top: 3px;
  min-width: 320px;
  max-width: 320px;
  height: 60px;
  border-radius: 20px;
  border: none;
  background-color: var(--teal);
  border: 2px solid var(--teal);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: 0.3s;
  font-family: inherit;

  &:hover {
    background-color: #fff;
    color: var(--teal);
  }
}

.contact-banner {
  padding: 50px 0;
  text-align: center;
  margin-bottom: 50px;
}

.contact-banner-title {
  width: 300px;
  display: inline-block;
  padding: 15px 20px 12px;
  /* background-color: #3a332f; */
  border-radius: 40px;
  font-size: 2.1rem;
  color: #fff;

 background-color: #241716;
  background-image:
    radial-gradient(#5D4842 15%, transparent 15%),
    radial-gradient(#5D4842 15%, transparent 15%);
  background-size: 14px 14px;
  background-position: 0 0, 7px 7px;
}

.contact-banner-info {
  font-size: 1.5rem;
}

.entry-confirm-form {
  .f-check-list {
    padding-top: 0;
  }
  .f-label {
    padding-top: 0;
  }
}


@media screen and (max-width: 768px) {


  .voice-item,
  .voice-item.r {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .voice-bubble {
    margin: 30px auto 0;
    width: 100%;
    max-width: 400px;
    padding: 30px 25px;
  }

  .voice-item .voice-bubble::before {
    top: -19px !important;
    right: auto !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin-top: -20px !important;
    border: 20px solid transparent !important;
    border-bottom: 20px solid #fff !important;
  }

  .voice-item .voice-bubble::after {
    top: -20px !important;
    right: auto !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin-top: -20px !important;
    border: 20px solid transparent !important;
    border-bottom: 20px solid #555 !important;
  }

  .voice-avatar {
    width: fit-content;
    margin: 0 auto;
  }

  .guide-row {
    flex-direction: column;
  }

  .guide-row dt {
    width: 100%;
    margin-bottom: 0px;
  }

  .guide-row dd {
  padding-bottom: 10px;
}


  .flow-list {
    width: 100%;
    display: block;
    li.flow-item {
      margin: 0 auto;
      width: 100% !important;
      max-width: 400px !important;
    }
  }

  .flow-arrow {
    margin: 20px auto;
    transform: rotate(90deg);
  }

  .contact-btns {
    flex-direction: column;
    align-items: center;
  }

  .c-btn {
    min-width: auto;
    width: 100%;
    max-width: 380px;
  }

  .ta-c-s {
    text-align: center !important;
  }

  .f-cols {
    flex-direction: column;
    gap: 30px;
  }

  .f-row {
    flex-direction: column;
    gap: 10px;
  }

  .f-label {
    width: 100%;
    padding-top: 0;
    justify-content: flex-start;
  }

  .f-input {
    width: 100% !important;
    .input-normal {
      width: 100% !important;
    }
  }

  .f-submit button {
    width: 100%;
  }

  .contact-banner-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .contact-banner-info .honbu {
    margin-right: 0;
  }
}