html {
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
  word-break: normal;
}

*, :after, :before {
  background-repeat: no-repeat;
  box-sizing: inherit;
}

:after, :before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  margin: 0;
  padding: 0;
}

hr {
  color: inherit;
  height: 0;
  overflow: visible;
}

details, main {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden] {
  display: none;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

a {
  background-color: transparent;
}

a:active, a:hover {
  outline-width: 0;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
}

pre {
  font-size: 1em;
}

b, strong {
  font-weight: bolder;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit;
  text-indent: 0;
}

iframe {
  border-style: none;
}

input {
  border-radius: 0;
}

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

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

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

textarea {
  overflow: auto;
  resize: vertical;
}

button, input, optgroup, select, textarea {
  font: inherit;
}

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

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

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=reset], [type=submit], button, html [type=button] {
  -webkit-appearance: button;
}

button, input, select, textarea {
  background-color: transparent;
  border-style: none;
}

a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline-width: 0;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

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

[disabled] {
  cursor: default;
}

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true] {
  cursor: default;
}

html {
  font-size: 62.5%;
}

body {
  color: #3a3d43;
  line-height: 1;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
}
body * {
  box-sizing: border-box;
}

.arvo-bold {
  font-family: "Arvo", serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: #0098ea;
  text-decoration: none;
}

ul {
  list-style: none;
}

.section-ttl {
  font-size: 2.2rem;
  line-height: 1.27;
  margin-bottom: 1rem;
  color: #1155c7;
}
.section-ttl span {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 0.5rem;
}

#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: #0098ea;
  text-align: center;
  color: #fff;
}

#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#splash_logo img {
  width: 100px;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.container {
  width: 100%;
  height: 100vh;
  background: #fff;
  max-width: 450px;
  margin: 0 auto;
}

header {
  position: fixed;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 450px;
  z-index: 99;
  background: #fff;
}

header h1 {
  width: 180px;
}

.toggle-btn {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 9999;
  transition: all 0.5s;
}
.toggle-btn span {
  position: relative;
  width: 20px;
  height: 2px;
  border-radius: 1px;
  background-color: #0098ea;
  transition: all 0.5s;
}
.toggle-btn span::before, .toggle-btn span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 1px;
  background-color: #0098ea;
  position: absolute;
  left: 50%;
  translate: -50% 0;
}
.toggle-btn span::before {
  top: -5px;
}
.toggle-btn span::after {
  bottom: -5px;
}
.toggle-btn.active {
  transform: rotateX(720deg);
}
.toggle-btn.active span {
  width: 0;
}
.toggle-btn.active span::before {
  transform: translateY(5px) rotate(-45deg);
}
.toggle-btn.active span::after {
  transform: translateY(-5px) rotate(45deg);
}

.g-nav {
  position: fixed;
  z-index: 999;
  top: -120%;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  transition: all 0.6s;
  border-left: 10px solid #0098ea;
  display: flex;
  align-items: center;
  justify-content: center;
}

header.active .g-nav {
  top: 0;
}

.g-nav__list {
  width: 100%;
  max-width: 450px;
}
.g-nav__list li a {
  display: block;
  padding: 2.5rem 3rem;
  font-weight: bold;
  color: #1155c7;
}
.g-nav__list li a span {
  display: block;
}

.mv {
  padding-top: 60px;
}

.about {
  background: #FFFFFF;
}

.about__inner-top {
  padding: 4rem 3rem 3rem;
  background: #FFFFFF;
  background: linear-gradient(0deg, rgb(255, 255, 255) 40%, rgb(206, 235, 251) 100%);
  color: #1155c7;
}
.about__inner-top .about__txt {
  font-size: 1.4rem;
  line-height: 1.6;
}

.about__list {
  padding: 0 0.4rem 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.interview .section-ttl {
  background: url(../img/interview-ttl.webp) no-repeat center/100%;
  height: 160px;
  padding-left: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 3rem;
}
.interview .interview__txt {
  padding: 0 3rem 3rem;
  line-height: 1.6;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
}

.cv-wrap .cv-ttl {
  margin-bottom: 2rem;
}
.cv-wrap .cv-btn {
  padding: 0 3rem;
  display: flex;
  gap: 0.4rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.cv-wrap .cv-btn > a {
  display: block;
  width: calc((100% - 0.8rem) / 3);
}

.works {
  padding: 5rem 0 0;
  background-color: #dbe6f7;
  position: relative;
}
.works::before {
  content: "";
  display: block;
  background: url(../img/works-before.webp) no-repeat top center/contain;
  position: absolute;
  width: 100%;
  height: 60px;
  top: -1px;
  left: 0;
}
.works .section-ttl {
  padding: 0 3rem 2rem;
}
.works .works__list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-bottom: 1.4rem;
  padding: 0 2rem;
}
.works .works__job-duties {
  margin-bottom: 2.4rem;
  padding: 0 2rem;
}
.works .cv-wrap .cv-ttl {
  margin-bottom: 0;
}
.works .cv-wrap .cv-btn {
  padding: 2rem 3rem 4rem;
  margin-bottom: 0;
  background: #fff;
}

.accordion-area {
  background: #1155c7;
  padding: 1rem 0 3rem;
}
.accordion-area .accordion__ttl {
  color: #fff;
  padding: 2rem 1.5rem 2rem;
  position: relative;
}
.accordion-area .accordion__ttl::before, .accordion-area .accordion__ttl::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  position: absolute;
  right: 45px;
  top: 50%;
  translate: 0 -50%;
  transition: all 0.3s ease-in-out;
}
.accordion-area .accordion__ttl::after {
  rotate: 90deg;
}
.accordion-area .accordion__ttl.open::before {
  rotate: 225deg;
}
.accordion-area .accordion__ttl.open::after {
  rotate: 315deg;
}
.accordion-area .accordion__txt {
  display: none;
  padding: 0 1.5rem;
}
.accordion-area .accordion__txt dl {
  background: #fff;
  padding: 2rem 1.5rem 1rem;
}
.accordion-area .accordion__txt dl dt {
  color: #1155c7;
  font-weight: bold;
  border-left: 4px solid #1155c7;
  padding-left: 0.8rem;
  margin-bottom: 1.5rem;
}
.accordion-area .accordion__txt dl div {
  margin-bottom: 3rem;
}
.accordion-area .accordion__txt dl div dd {
  line-height: 1.375;
  letter-spacing: 0.03em;
}

footer {
  background: #1155c7;
  color: #fff;
  font-size: 1.3rem;
  text-align: center;
  padding: 4.35rem 0;
}
footer.top-footer {
  padding: 0 0 15rem;
}

.footnav {
  position: fixed;
  left: 50%;
  bottom: 0;
  width: 100%;
  max-width: 450px;
  animation: slideUp 0.6s ease-out;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.6);
  padding-top: 1rem;
}
.footnav .cv-ttl {
  font-size: 1.6rem;
  text-align: center;
  color: #1155c7;
  margin-bottom: 1rem;
}
.footnav .cv-btn {
  margin-bottom: 1rem;
}/*# sourceMappingURL=style.css.map */