@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/* reset */
*, ::before, ::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

body {
  margin: 0;
}

main {
  display: block;
}

p, table, blockquote, address, pre, iframe, form, figure, dl {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

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

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg, img, embed, object, iframe {
  vertical-align: bottom;
}

button, input, optgroup, select, textarea {
  -webkit-appearance: none; /* 1 */
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

button, [type=button], [type=reset], [type=submit] {
  cursor: pointer;
}

button:disabled, [type=button]:disabled, [type=reset]:disabled, [type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=number] {
  -moz-appearance: textfield;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td, th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* color */
:root {
  --main-font:#222;
  --main-color:#3abc76;
  --bg-color:#F4F4F4;
}

/* common */
html {
  width: 100%;
  height: 100svh;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4285em;
}
@media screen and (min-width: 768px) {
  html {
    height: auto;
    font-size: 14px;
  }
}

body {
  width: 100%;
  height: 100%;
  padding: 0;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.4285em;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  letter-spacing: 0.02em;
  font-family: "MS PMincho";
}

p {
  text-align: justify;
  font-size: 15px;
  color: rgb(0, 60.0000006, 80.0000025);
}
@media screen and (min-width: 768px) {
  p {
    font-size: 16px;
  }
}

img {
  display: block;
  max-width: 100%;
}

br.spBr {
  display: inline;
}
@media screen and (min-width: 768px) {
  br.spBr {
    display: none;
  }
}

.container {
  position: relative;
  width: 100%;
}

section {
  width: 100%;
}
section .secInner {
  max-width: 1280px;
  margin: 0 auto;
}

header {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 14px 15px 10px;
}
@media screen and (min-width: 768px) {
  header {
    padding: 25px 15px 30px;
  }
}
header a {
  display: block;
  width: 109px;
}
@media screen and (min-width: 768px) {
  header a {
    width: 148px;
  }
}

section {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto 20px;
}
section h2 {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  color: var(--main-color);
  font-size: 26px;
}
@media screen and (min-width: 768px) {
  section h2 {
    margin-bottom: 30px;
    font-size: 33px;
    line-height: 1.25;
  }
}
section h2::before {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  margin-right: 10px;
  background-color: var(--main-color);
}
@media screen and (min-width: 768px) {
  section h2::before {
    width: 260px;
  }
}
section h2 mark {
  padding: 10px 12px;
  background-color: var(--main-color);
  color: #FFF;
  font-size: 40px;
  line-height: 1;
}
section h2 span.big {
  font-size: 40px;
  line-height: 1;
}
section.bgColor {
  padding-top: 12px;
  padding-bottom: 12px;
  background-color: #f3f3f3;
}
@media screen and (min-width: 768px) {
  section.bgColor {
    padding-bottom: 30px;
  }
}
section .content.prof {
  position: relative;
  margin: 0 20px;
  padding: 10px 20px 30px;
  background-color: #FFF;
}
@media screen and (min-width: 768px) {
  section .content.prof {
    padding: 30px 40px 30px 250px;
  }
}
section .content.prof .profBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 10px;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  section .content.prof .profBox {
    display: block;
    margin-bottom: 20px;
  }
}
section .content.prof .profBox .imgWrap {
  width: 116px;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  section .content.prof .profBox .imgWrap {
    position: absolute;
    top: 30px;
    left: 40px;
    width: 155px;
  }
}
section .content.prof .profBox h3 {
  display: flex;
  flex-direction: column;
  gap: 0.5em 0;
  padding-bottom: 0.8em;
  border-bottom: 1px solid var(--main-color);
  color: var(--main-color);
  font-size: 16px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  section .content.prof .profBox h3 {
    flex-direction: row;
    justify-content: flex-start;
    gap: 0 1em;
    font-size: 20px;
    text-align: left;
  }
}
section#mv {
  width: 100%;
  padding: 0 15px;
}
section#mv .secInner {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 10px 20px 50px;
  background: url(../img/lp-career_event/mv-bg-sp.png);
  background-size: cover;
  border: 1px solid #3abc76;
}
@media screen and (min-width: 768px) {
  section#mv .secInner {
    margin-bottom: 30px;
    padding: 85px 20px;
    background: url(../img/lp-career_event/mv-bg-pc.png);
    background-size: cover;
  }
}
section#mv .secInner p {
  display: block;
  width: 320px;
  margin: 0 auto 25px;
  padding: 10px 0;
  font-size: 20px;
  text-align: center;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
section#mv .secInner .mv-title {
  display: flex;
  flex-direction: column;
  gap: 15px 0;
  width: 280px;
  margin: 0 auto 50px;
}
@media screen and (min-width: 768px) {
  section#mv .secInner .mv-title {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0 10px;
    width: auto;
    margin: 0 auto 20px;
  }
}
section#mv .secInner .mv-title img:nth-child(1) {
  width: 170px;
}
@media screen and (min-width: 768px) {
  section#mv .secInner .mv-title img:nth-child(1) {
    width: 234px;
  }
}
section#mv .secInner .mv-title img:nth-child(2) {
  width: 30px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  section#mv .secInner .mv-title img:nth-child(2) {
    margin: 0;
  }
}
section#mv .secInner .mv-title img:nth-child(3) {
  width: 158px;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  section#mv .secInner .mv-title img:nth-child(3) {
    width: 271px;
    margin: 0;
  }
}
section#mv .secInner h1 {
  display: block;
  width: 96%;
  margin: 0 auto;
  padding: 15px 0;
  background: #3abc76;
  text-align: center;
  color: #FFF;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  section#mv .secInner h1 {
    width: 800px;
    font-size: 41px;
  }
}
section#purpose .content {
  padding: 0 30px;
}
@media screen and (min-width: 768px) {
  section#purpose .content {
    padding: 0 190px;
  }
}
section#company .secInner .content {
  width: 100%;
  padding: 0 16px;
}
section#company .secInner .content ul {
  display: flex;
  flex-direction: column;
  gap: 16px 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  section#company .secInner .content ul {
    flex-direction: row;
    justify-content: center;
    gap: 0 70px;
  }
}
section#company .secInner .content ul li {
  width: 100%;
  padding-bottom: 30px;
  border: 1px solid var(--main-color);
}
@media screen and (min-width: 768px) {
  section#company .secInner .content ul li {
    width: 434px;
    padding-bottom: 60px;
  }
}
section#company .secInner .content ul li h3 {
  width: 100%;
  margin-bottom: 20px;
  padding: 10px 0;
  background-color: var(--main-color);
  color: #FFF;
  font-size: 26px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 768px) {
  section#company .secInner .content ul li h3 {
    font-size: 28px;
  }
}
section#company .secInner .content ul li .imgWrap {
  width: 300px;
  margin: 0 auto 20px;
  padding: 0 0 20px;
  border-bottom: 1px dashed var(--main-color);
}
@media screen and (min-width: 768px) {
  section#company .secInner .content ul li .imgWrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 328px;
    height: 200px;
  }
}
section#company .secInner .content ul li .imgWrap img {
  width: 200px;
  margin: 0 auto;
  border: 1px solid #ccc;
}
@media screen and (min-width: 768px) {
  section#company .secInner .content ul li .imgWrap img {
    border: none;
  }
}
section#company .secInner .content ul li p {
  margin: 0 15px;
}
@media screen and (min-width: 768px) {
  section#company .secInner .content ul li p {
    margin: 0 80px;
  }
}
section#eventDetails h2 {
  margin-bottom: 0;
}
section#eventDetails picture {
  display: block;
  width: 82%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  section#eventDetails picture img {
    width: 540px;
    margin: 0 auto;
  }
}
section#scenes .sceneWrap {
  width: 75%;
  margin: 0 auto 20px;
  padding: 15px 20px 20px;
  background: #FFF;
}
@media screen and (min-width: 768px) {
  section#scenes .sceneWrap {
    width: 800px;
    margin-bottom: 50px;
    padding: 20px 30px;
  }
}
section#scenes .sceneWrap:last-child {
  margin-bottom: 0;
}
section#scenes .sceneWrap h3 {
  margin-bottom: 12px;
  color: var(--main-color);
  font-size: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  section#scenes .sceneWrap h3 {
    margin-bottom: 20px;
  }
}
section#scenes .sceneWrap ul.grid {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  section#scenes .sceneWrap ul.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 60px;
  }
}
section#scenes .sceneWrap ul.grid li {
  width: 100%;
}
section#scenes .sceneWrap ul.grid li img {
  width: 100%;
}
section#voices dl {
  width: 75%;
  margin: 0 auto 20px;
  padding: 25px 0;
  border-top: 2px solid var(--main-color);
}
@media screen and (min-width: 768px) {
  section#voices dl {
    width: 800px;
    padding: 30px 0;
  }
}
section#voices dl:last-child {
  margin-bottom: 0;
}
section#voices dl dt {
  margin-bottom: 25px;
  color: var(--main-color);
  font-size: 16px;
  text-align: center;
}
section#voices dl dd {
  width: 100%;
}
section#voices dl dd img {
  width: 100%;
}
section#companyVoices {
  padding: 15px 0;
  background-color: #e5f7f5;
}
section#companyVoices .content {
  width: 100%;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  section#companyVoices .content {
    width: 800px;
    margin: 0 auto;
  }
}
section#companyVoices .content ul {
  width: 100%;
}
section#companyVoices .content ul li {
  width: 100%;
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  section#companyVoices .content ul li {
    margin-bottom: 80px;
    text-align: center;
  }
}
section#companyVoices .content ul li h3 {
  width: 100%;
  margin-bottom: 12px;
  padding: 10px;
  background-color: var(--main-color);
  color: #FFF;
  font-size: 22px;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 768px) {
  section#companyVoices .content ul li h3 {
    display: inline-block;
    width: auto;
    margin-bottom: 30px;
    padding: 10px 30px;
    font-size: 34px;
  }
}
section#companyVoices .content ul li .voiceWrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  section#companyVoices .content ul li .voiceWrap {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }
}
section#companyVoices .content ul li .voiceWrap .imgWrap {
  width: 116px;
}
@media screen and (min-width: 768px) {
  section#companyVoices .content ul li .voiceWrap .imgWrap {
    width: 194px;
  }
}
section#companyVoices .content ul li .voiceWrap .textWrap {
  width: 100%;
  padding: 10px 5px;
  background-color: #eee;
}
@media screen and (min-width: 768px) {
  section#companyVoices .content ul li .voiceWrap .textWrap {
    padding: 40px;
  }
}/*# sourceMappingURL=lp-career_event.css.map */