@charset "UTF-8";
/*! destyle.css v4.0.1 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

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

/* Sections */
/* ============================================ */
body {
  margin: 0;
}

main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

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

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

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

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

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

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;
}

/* Replaced content */
/* ============================================ */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
button,
input,
optgroup,
select,
textarea {
  -webkit-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;
}

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;
}

/* Interactive */
/* ============================================ */
details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
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;
}

/* Base */
/* ============================================ */
html {
  font-size: 10px;
}

body {
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  font-size: 1.4rem;
  line-height: 1.5;
}

body,
main {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
}

a {
  color: inherit;
}

small {
  display: block;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-inline: auto;
}

:root {
  --color-bg: #fff;
  --color-text: #111;
  --color-border: #ccc;
  --color-border-focus: #2684FF;
  --color-disabled: #f5f5f5;
  --radius: 6px;
  --padding: 0.5em 0.75em;
  --font-size: 1.6rem;
  --transition: 0.2s ease;
}

input,
select,
textarea,
button {
  font: inherit;
  font-size: var(--font-size);
  color: var(--color-text);
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--padding);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  text-align: left;
}
input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
  border-color: var(--color-border-focus);
  box-shadow: 0 0 0 3px rgba(38, 132, 255, 0.2);
}
input:disabled,
select:disabled,
textarea:disabled,
button:disabled {
  background-color: var(--color-disabled);
  color: #888;
  cursor: not-allowed;
}

button {
  cursor: pointer;
  display: inline-block;
  width: auto;
  background-color: var(--color-border-focus);
  color: white;
  font-weight: 500;
}
button:hover {
  background-color: #1a6fe5;
}

textarea {
  resize: vertical;
  min-height: 6em;
}

/* checkbox/radio の復元 */
input[type=checkbox],
input[type=radio] {
  appearance: auto;
  display: inline-block;
  width: auto;
  margin-right: 0.5em;
}

label {
  display: inline-block;
  margin-bottom: 0.5em;
  font-weight: 500;
  cursor: pointer;
}

/* フィールドセットとレジェンド（任意） */
fieldset {
  border: 1px solid var(--color-border);
  padding: 1em;
  margin-bottom: 1em;
  border-radius: var(--radius);
}

legend {
  font-weight: bold;
  padding: 0 0.5em;
}

/* セレクトボックスにカスタム矢印（任意） */
select {
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg fill="%23111" height="20" viewBox="0 0 24 24" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 0.75em center;
  background-size: 1em;
  padding-right: 2.5em;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.container {
  padding: 4rem 2rem;
}

.inner {
  position: relative;
  max-width: 980px;
  margin-inline: auto;
}

.content {
  display: flex;
  flex-flow: column wrap;
  justify-content: space-between;
  align-items: center;
}

.list {
  list-style: none;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}
.section-title small {
  width: 50%;
  max-width: 22rem;
  margin-inline: auto;
  font-size: 1.6rem;
  font-weight: 100;
  font-family: "Didot", serif;
  margin-block-start: 0.5rem;
  padding-block-start: 0.5rem;
  border-block-start: 1px solid #333;
}

.section-description {
  margin-bottom: 2rem;
}

.header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header.container {
  padding-block: 0;
  padding-inline-end: 0;
}
@media screen and (min-width: 769px) {
  .header.container {
    padding-block: 2rem;
  }
}
.header .content {
  flex-flow: row nowrap;
  justify-content: space-between;
}
.header .logo img {
  height: 3.2rem;
}
.header .nav {
  display: flex;
  flex-flow: row nowrap;
}
.header .nav a {
  display: block;
}
.header .nav a img {
  width: 4.8rem;
}
.header .nav.nav_pc {
  display: none;
}
@media screen and (min-width: 769px) {
  .header .nav.nav_sp {
    display: none;
  }
  .header .nav.nav_pc {
    display: flex;
    gap: 3rem;
  }
  .header .nav.nav_pc a img {
    width: auto;
    height: 4rem;
  }
}

.footer {
  background: #fff;
  color: #333;
}
.footer p {
  text-align: center;
}

.kv {
  background: #fff url(../img/bg_kv.png) no-repeat 50% 50%;
  background-size: cover;
}

.menu {
  background: #fff;
}
.menu .list {
  display: flex;
  flex-flow: row wrap;
  gap: 2rem;
  justify-content: center;
}
.menu .list .card {
  width: 100%;
}
.menu .list .card img {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .menu .list .card {
    width: calc((100% - 2rem) / 2);
  }
}

.reasons {
  background: #fff;
}
.reasons .section-title {
  color: #005bac;
  text-align: left;
}
@media screen and (min-width: 769px) {
  .reasons .section-title {
    font-size: 3.2rem;
    font-weight: 700;
  }
}
@media screen and (min-width: 769px) {
  .reasons .section-description {
    font-size: 2rem;
  }
}
.reasons .list li {
  margin-bottom: 2.5rem;
}
.reasons .list li figure img {
  width: 100%;
}
.reasons .list li h3 {
  display: flex;
  flex-direction: row;
  margin-block: 2rem;
  gap: 1rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #005bac;
}
.reasons .list li h3 div:first-child {
  font-size: 3rem;
  border-block-end: 0.5rem solid #f4e003;
}
.reasons .list li h3 div:first-child + div {
  color: #333;
}
.reasons .list li p {
  font-size: 1.4rem;
  line-height: 2;
}
@media screen and (min-width: 769px) {
  .reasons .list li {
    display: flex;
    flex-flow: row-reverse nowrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 2rem;
  }
  .reasons .list li figure {
    flex: 1 1 300px;
  }
  .reasons .list li figure img {
    display: block;
  }
  .reasons .list li > div {
    width: 70%;
    flex-basis: auto;
  }
  .reasons .list li > div h3 {
    font-size: 2.4rem;
  }
  .reasons .list li > div h3 div:first-child {
    font-size: 4rem;
  }
  .reasons .list li > div p {
    width: 100%;
    font-size: 1.6rem;
  }
}

.works {
  background: #f5f5f5;
}
.works .swiper-wrapper {
  transition-timing-function: linear;
  width: 100%;
}
.works .swiper-slide {
  width: 100%;
  height: auto;
  padding: 1rem;
}
.works .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
}

.staff {
  background: #fff;
}
.staff .list {
  display: flex;
  flex-flow: row wrap;
  gap: 1rem;
  justify-content: flex-start;
  padding-block: 2rem;
}
@media screen and (min-width: 769px) {
  .staff .list {
    gap: 3rem;
  }
}
.staff .card {
  width: calc((100% - 1rem) / 2);
  background: #fff;
  border: 1px solid #c5c5c5;
  border-radius: 6px;
}
.staff .card img {
  width: 100%;
}
.staff .card dl {
  padding: 1rem;
}
.staff .card dl dt {
  text-align: center;
}
.staff .card dl dd {
  text-align: left;
}
@media screen and (min-width: 769px) {
  .staff .card {
    width: calc((100% - 6rem) / 3);
  }
  .staff .card dl dt {
    font-size: 1.6rem;
  }
  .staff .card dl dt small {
    font-size: 1.4rem;
  }
  .staff .card dl dd {
    font-size: 1.4rem;
    padding: 1rem 2rem;
  }
}

.voice {
  background: #ddeefa;
}
.voice .list {
  display: flex;
  flex-flow: column nowrap;
  gap: 2rem;
  justify-content: center;
}
.voice .list .card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.voice .list .card figure {
  display: block;
  width: 100px;
}
.voice .list .card figure img {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .voice .list .card {
    flex-direction: row;
  }
  .voice .list .card figure {
    width: 20%;
  }
}
.voice .list .card div {
  font-size: 1.4rem;
  background: #fff;
  padding: 2rem;
  border-radius: 6px;
}

.message .section-header {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.message .section-header figure {
  width: 65%;
}
.message .section-header figcaption {
  display: block;
  position: absolute;
  left: 0;
  top: calc(33% - 2rem);
  font-size: 2rem;
  font-weight: 700;
}
.message .section-header figcaption small {
  font-size: 1.4rem;
}
.message p {
  margin-block-start: 2rem;
}
@media screen and (min-width: 769px) {
  .message .inner {
    display: flex;
    flex-flow: row-reverse nowrap;
    position: relative;
  }
  .message .section-header {
    display: block;
    position: static;
  }
  .message .section-header figcaption {
    top: 0;
    font-size: 2.4rem;
  }
  .message .section-header figcaption small {
    font-size: 1.6rem;
  }
  .message .content {
    display: block;
    width: 60%;
    padding-block-start: 6rem;
    padding-inline-end: 3rem;
  }
}

.flow {
  background: #f5f5f5;
}
.flow .list {
  display: flex;
  flex-flow: row wrap;
  gap: 3rem;
  justify-content: flex-start;
  padding-block: 2rem;
}
.flow .list li {
  width: 100%;
  margin-block-end: 4rem;
}
@media screen and (min-width: 769px) {
  .flow .list li {
    width: calc((100% - 6rem) / 3);
  }
}
.flow .list li figure {
  margin-bottom: 0.5rem;
}
.flow .list li figure img {
  width: 100%;
}
.flow .list li figcaption {
  font-size: 1.6rem;
  font-weight: bold;
  color: #005bac;
  margin-block-start: 1rem;
  padding: 1rem 1rem 0;
}
.flow .list li p {
  padding: 1rem;
}

.area {
  background: #fff;
}
.area .list li {
  margin-bottom: 2rem;
}
.area .list li h3 {
  background: #005bac;
  color: #fff;
  padding-block: 1rem;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
}
.area .list li dl {
  margin: 0;
}
.area .list li dl dt {
  font-weight: bold;
  margin-top: 0.5rem;
}
.area .list li dl dd {
  margin: 0 0 0.5rem 1rem;
}

.contact {
  padding-block-start: 4rem;
  background: url(../img/bg_cta.png) 50% 0 no-repeat;
  background-size: cover;
  color: #fff;
  text-align: center;
}
.contact#contact-2 {
  background-color: #ddeefa;
}
.contact .inner {
  position: relative;
  padding-block-start: 4rem;
}
@media screen and (min-width: 769px) {
  .contact .inner {
    padding-block-start: 8rem;
  }
}
.contact .contact__label {
  position: absolute;
  top: -5rem;
  left: 0;
}
.contact .contact__label img {
  display: block;
  width: 8rem;
  height: auto;
}
@media screen and (min-width: 769px) {
  .contact .contact__label {
    top: -6rem;
    left: 8rem;
  }
  .contact .contact__label img {
    width: 16rem;
  }
}
.contact h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.contact h2 small {
  font-size: 1.6rem;
}
.contact h2 span {
  color: #f4e003;
}
@media screen and (min-width: 769px) {
  .contact h2 {
    font-size: 3.2rem;
  }
  .contact h2 small {
    font-size: 2.4rem;
  }
}
.contact .contact__phone {
  display: block;
  margin: 2.4rem auto;
}
.contact .contact__phone img {
  width: auto;
}
.contact .contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-inline: auto;
}
.contact .contact-form label {
  display: block;
  margin-block-start: 2.4rem;
  text-align: left;
}
.contact .contact-form label .required {
  display: inline-block;
  margin-inline-start: 1rem;
  border-radius: 1rem;
  padding-inline: 1rem;
  color: #ef1818;
  background: #f4e003;
  font-size: 1rem;
  font-weight: 700;
  line-height: 2;
}
.contact .contact-form input, .contact .contact-form textarea {
  padding: 0.75rem;
  border: none;
  border-radius: 4px;
}
.contact .contact-form button {
  background: inherit;
  margin-block-start: 4rem;
  border: none;
  padding: 0;
}
.contact .contact-form button img {
  width: auto;
}
@media screen and (min-width: 769px) {
  .contact .contact-form_input {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
  }
  .contact .contact-form_input > div {
    width: calc((100% - 2rem) / 2);
  }
  .contact .contact-form_input textarea {
    height: calc(100% - 2.1rem - 0.5em - 2.4rem);
  }
}

.thanks-section {
  text-align: center;
  padding: 5vw 2rem;
}
.thanks-section h1 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 600;
  color: #333;
  margin-bottom: 1.5rem;
}
.thanks-section p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.thanks-section .btn {
  display: inline-block;
  padding: 0.75em 2em;
  font-size: 1rem;
  border-radius: 6px;
  background-color: #2684FF;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.thanks-section .btn:hover {
  background-color: #1a6fe5;
}

.container, .card {
  opacity: 0;
  transform: translateY(30px);
  transition: none;
}

.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease-out;
}

.no-js .container, .no-js .card {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.error-message {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.5;
}