@charset "UTF-8";
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  color: #0F0F0F;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

p, dd {
  text-align: justify;
  text-justify: inter-ideograph;
  word-break: break-all;
}

@media only screen and (min-width: 768px) {
  h1 {
    font-size: 3.6rem;
    font-weight: 600;
  }
  h2 {
    font-size: 2.8rem;
    font-weight: 600;
  }
  h3 {
    font-size: 2.2rem;
    font-weight: 600;
  }
  h4 {
    font-size: 1.8rem;
    font-weight: 600;
  }
  h5 {
    font-size: 1.6rem;
    font-weight: 600;
  }
  h6 {
    font-size: 1.4rem;
    font-weight: 600;
  }
  p,
  li,
  dt,
  dd,
  input,
  textarea,
  select {
    font-size: 1.6rem;
    font-weight: 500;
  }
  caption {
    font-size: 1.3rem;
    font-weight: 500;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  input,
  textarea,
  select {
    font-family: inherit;
  }
}
@media only screen and (max-width: 767px) {
  h1 {
    font-size: 2.8rem;
    font-weight: 600;
  }
  h2 {
    font-size: 2.4rem;
    font-weight: 600;
  }
  h3 {
    font-size: 2rem;
    font-weight: 600;
  }
  h4 {
    font-size: 1.6rem;
    font-weight: 600;
  }
  h5 {
    font-size: 1.4rem;
    font-weight: 600;
  }
  h6 {
    font-size: 1.3rem;
    font-weight: 600;
  }
  p,
  li,
  dt,
  dd {
    font-size: 1.5rem;
    font-weight: 500;
  }
  caption {
    font-size: 1.2rem;
    font-weight: 500;
  }
  img {
    width: 100%;
    height: auto;
  }
  input,
  textarea,
  select {
    font-family: inherit;
    font-size: 1.6rem;
    font-weight: 500;
  }
}
@media only screen and (min-width: 768px) {
  .pc-none {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .sp-none {
    display: none !important;
  }
}
.thumbnail {
  position: relative;
  overflow: hidden;
}
.thumbnail img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
  -o-object-fit: cover;
  -o-object-position: center;
  font-family: "object-fit: cover; object-position: center";
}

@media only screen and (min-width: 768px) {
  body {
    width: 100%;
    min-width: 1280px;
  }
  .inner--s {
    width: 56.25%;
    min-width: 1080px;
    margin: 0 auto;
  }
  .inner--m {
    width: 66.5%;
    min-width: 1200px;
    margin: 0 auto;
  }
  .inner--l {
    width: 87.5%;
    min-width: 1200px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  .inner--s,
  .inner--m,
  .inner--l {
    width: 95%;
    margin: 0 auto;
  }
}
.wysiwyg a {
  text-decoration: underline;
}
.wysiwyg img {
  width: 100%;
}
.wysiwyg em,
.wysiwyg i {
  font-style: italic;
}
.wysiwyg strong,
.wysiwyg b {
  font-weight: 900;
}
.wysiwyg pre,
.wysiwyg code {
  text-align: justify;
  text-justify: inter-ideograph;
}
.wysiwyg u {
  text-decoration: underline;
}
.wysiwyg del {
  text-decoration: line-through;
}
.wysiwyg ol,
.wysiwyg ul {
  padding-left: 20px;
}
.wysiwyg ol {
  list-style: decimal;
}
.wysiwyg ul {
  list-style: disc;
}
.wysiwyg blockquote {
  display: block;
  width: 100%;
  background: #efefef;
  padding: 15px;
  box-sizing: border-box;
}
.wysiwyg blockquote p {
  color: #555555;
  font-style: italic;
}
.wysiwyg blockquote p::before {
  content: "“";
}
.wysiwyg blockquote p::after {
  content: "”";
}
.wysiwyg .table_wrapper table {
  width: 100%;
  min-width: auto;
  border-collapse: collapse;
}
.wysiwyg .table_wrapper th,
.wysiwyg .table_wrapper td {
  font-weight: 600;
  padding: 10px 15px;
  box-sizing: border-box;
  border: 1px solid #cccccc;
}
@media only screen and (min-width: 768px) {
  .wysiwyg .table_wrapper th,
  .wysiwyg .table_wrapper td {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .wysiwyg .table_wrapper th,
  .wysiwyg .table_wrapper td {
    font-size: 1.5rem;
  }
}

.curtain {
  position: relative;
  display: inline-block;
  overflow: hidden;
  line-height: 1.2;
}

.curtain {
  color: transparent;
  animation: text-in 0.01s linear forwards;
  animation-delay: 0.55s;
}

.curtain::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff;
  transform: translateX(-101%);
  animation: curtain-in 0.55s ease forwards;
}

@keyframes curtain-in {
  0% {
    transform: translateX(-101%);
  }
  45% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(101%);
  }
}
@keyframes text-in {
  to {
    color: #ffffff;
  }
}
.curtain--delay::before {
  animation-delay: 0.25s;
}

.curtain--delay {
  animation-delay: 0.8s;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Zen Old Mincho", serif;
}

.heading--lv1 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.heading--lv1 .ja, .heading--lv1 .en {
  color: #ffffff;
}
.heading--lv1 .ja {
  font-family: "Zen Old Mincho", serif;
  font-size: 5.8rem;
  font-weight: 500;
  line-height: 1.2;
}
.heading--lv1 .en {
  font-family: "Libre Baskerville", serif;
  font-size: 2.8rem;
  font-weight: 300;
}
.heading--lv2 {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.heading--lv2 .ja {
  font-family: "Zen Old Mincho", serif;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.5;
}
.heading--lv2 .en {
  color: #9AC83B;
  font-family: "Libre Baskerville", serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}
.heading--lv3 {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.heading--lv3 .ja {
  font-family: "Zen Old Mincho", serif;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.5;
}
.heading--lv3 .en {
  color: #009BDF;
  font-family: "Libre Baskerville", serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
}

@media only screen and (max-width: 767px) {
  .heading--lv1 {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .heading--lv1 .ja {
    font-size: 3.4rem;
    line-height: 1.2;
  }
  .heading--lv1 .en {
    font-size: 1.8rem;
    line-height: 1.2;
  }
  .heading--lv2 {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .heading--lv2 .ja {
    font-size: 2.2rem;
    line-height: 1.5;
  }
  .heading--lv2 .en {
    font-size: 1.8rem;
  }
  .heading--lv3 {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .heading--lv3 .ja {
    font-size: 2rem;
    line-height: 1.5;
  }
  .heading--lv3 .en {
    font-size: 1.5rem;
  }
}
.button--lv1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 215px;
  background: #1A57B1;
  border: 1px solid #1A57B1;
  padding: 5px 15px;
  box-sizing: border-box;
  border-radius: 90px;
  transition: all 0.3s ease;
}
.button--lv1 .text, .button--lv1 .icon {
  color: #ffffff;
}
.button--lv1 .text {
  font-size: 1.6rem;
  font-weight: 700;
}
.button--lv1 .icon {
  font-size: 2.8rem;
}
.button--lv1:hover {
  background: #ffffff;
}
.button--lv1:hover .text, .button--lv1:hover .icon {
  color: #1A57B1;
}
.button--lv2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 215px;
  border-bottom: 1px solid #0F0F0F;
  padding-right: 10px;
}
.button--lv2 .text {
  font-size: 1.6rem;
  font-weight: 700;
}
.button--lv2 .icon {
  font-size: 2rem;
  transition: transform 0.3s ease;
}
.button--lv2:hover .icon {
  transform: translateX(10px);
}

@media only screen and (max-width: 767px) {
  .button--lv1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 215px;
    padding: 5px 15px 5px 20px;
    box-sizing: border-box;
    border-radius: 90px;
  }
  .button--lv1 .text {
    font-size: 1.5rem;
  }
  .button--lv1 .icon {
    font-size: 2.6rem;
  }
  .button--lv2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 185px;
    padding-bottom: 5px;
  }
  .button--lv2 .text {
    font-size: 1.5rem;
  }
  .button--lv2 .icon {
    font-size: 1.8rem;
  }
}
p {
  margin: 0;
  padding: 0;
}
p:empty {
  display: none;
}

.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0 !important;
}

.mwform-hidden {
  display: none !important;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.form__zip {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.form__zip .p-country-name {
  display: none;
}
.form__row {
  display: flex;
  gap: 5%;
}
.form__head {
  width: 35%;
}
.form__label {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 15px 0;
  box-sizing: border-box;
}
.form__title {
  font-size: 1.6rem;
}
.form__tag {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  padding: 5px 10px;
}
.form__tag--required {
  color: #ffffff;
  background: #B40019;
}
.form__tag--optional {
  background: #B3B2B3;
}
.form__body {
  display: flex;
  flex-direction: column;
  width: 60%;
}
.form__body input[type=text],
.form__body input[type=email],
.form__body input[type=tel],
.form__body input[type=url],
.form__body input[type=file],
.form__body textarea,
.form__body select {
  display: block;
  width: 100%;
  padding: 15px;
  box-sizing: border-box;
  border: 1px solid #cccccc;
  font-size: 1.6rem;
}
.form__body input[type=text]::-moz-placeholder, .form__body input[type=email]::-moz-placeholder, .form__body input[type=tel]::-moz-placeholder, .form__body input[type=url]::-moz-placeholder, .form__body input[type=file]::-moz-placeholder, .form__body textarea::-moz-placeholder, .form__body select::-moz-placeholder {
  color: #a5a5a5;
}
.form__body input[type=text]::placeholder,
.form__body input[type=email]::placeholder,
.form__body input[type=tel]::placeholder,
.form__body input[type=url]::placeholder,
.form__body input[type=file]::placeholder,
.form__body textarea::placeholder,
.form__body select::placeholder {
  color: #a5a5a5;
}
.form__body input[type=text]:focus,
.form__body input[type=email]:focus,
.form__body input[type=tel]:focus,
.form__body input[type=url]:focus,
.form__body input[type=file]:focus,
.form__body textarea:focus,
.form__body select:focus {
  outline: 1px solid #333333;
}
.form__radios, .form__checkboxs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.form__privacy {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.form__link {
  font-size: 1.4rem;
  font-weight: 500;
}
.form__link a {
  border-bottom: 1px solid #333333;
}
.form__buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 35px;
}
.form__button {
  display: flex;
  width: 320px;
  background: #1A57B1;
  border: none;
  box-sizing: border-box;
  border-radius: 90px;
  padding: 25px 20px;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.form__button:hover {
  cursor: pointer;
}
.form__addr-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.form__addr-zip {
  display: flex;
  align-items: center;
  gap: 2%;
  width: 100%;
}
.form__addr-zip input {
  width: 83%;
}
.form__addr-zip button {
  width: 15%;
  background: #003153;
  padding: 10px 0;
  box-sizing: border-box;
  color: #ffffff;
}
.form__addr-prefcity {
  display: flex;
  gap: 3%;
  width: 100%;
}
.form__addr-prefcity select {
  display: block;
  width: 48.5%;
}
.form__addr-rest {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .form__zip {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .form__row {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .form__head {
    width: 100%;
  }
  .form__label {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 15px 0;
    box-sizing: border-box;
  }
  .form__title {
    font-size: 1.5rem;
  }
  .form__tag {
    font-size: 1.5rem;
    padding: 5px 10px;
  }
  .form__body {
    display: flex;
    width: 100%;
  }
  .form__body input[type=text],
  .form__body input[type=email],
  .form__body input[type=tel],
  .form__body input[type=url],
  .form__body input[type=file],
  .form__body textarea,
  .form__body select {
    display: block;
    width: 100%;
    padding: 15px;
    font-size: 1.5rem;
  }
  .form__radios, .form__checkboxs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .form__privacy {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .form__link {
    font-size: 1.4rem;
  }
  .form__buttons {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 35px;
  }
  .form__button {
    display: flex;
    width: 320px;
    padding: 20px;
    font-size: 1.5rem;
  }
  .form__addr-zip {
    display: flex;
    align-items: center;
    gap: 2%;
    width: 100%;
  }
  .form__addr-zip input {
    width: 70%;
  }
  .form__addr-zip button {
    width: 28%;
    padding: 10px 0;
    font-size: 1.4rem;
  }
}
.header {
  width: 100%;
  background: url(../img/layout/header/visual.jpg) no-repeat center/cover;
  position: relative;
}
.header--top {
  height: 100vh;
}
.header--sub {
  height: 50vh;
}
.header__title--top {
  position: absolute;
  bottom: 2%;
  left: 1%;
}
.header__title--sub {
  position: absolute;
  bottom: 3%;
  left: 1%;
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
  box-sizing: border-box;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.header-bar__nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header-bar__list {
  display: flex;
  align-items: center;
  gap: 25px;
}
.header-bar__item a {
  font-size: 1.6rem;
  font-weight: 500;
}
.header-bar__button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  background: #1A57B1;
  border: 1px solid #1A57B1;
  padding: 12px 10px;
  box-sizing: border-box;
  border-radius: 90px;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 700;
  transition: all 0.3s;
}
.header-bar__button:hover {
  background: #ffffff;
  color: #1A57B1;
}

@media only screen and (max-width: 767px) {
  .header {
    width: 100%;
    position: relative;
  }
  .header--top {
    height: 70vh;
  }
  .header--sub {
    height: 35vh;
  }
  .header__title--top {
    position: absolute;
    bottom: 2%;
    left: 1%;
  }
  .header__title--sub {
    position: absolute;
    bottom: 5%;
    left: 1%;
  }
  .header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 10px;
  }
  .header-bar__logo {
    width: 50%;
  }
  .header-bar__nav {
    display: none;
  }
}
.footer {
  background: #F5F5F5;
  padding: 100px 0 30px;
}
.footer__wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}
.footer__logo {
  display: block;
  margin-bottom: 35px;
}
.footer__row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__term, .footer__desc {
  font-family: "Zen Old Mincho", serif;
}
.footer__term {
  font-size: 2rem;
  font-weight: 700;
}
.footer__desc {
  font-size: 1.4rem;
  font-weight: 700;
}
.footer__lists {
  display: flex;
  gap: 50px;
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer__item a {
  font-size: 1.5rem;
  font-weight: 500;
}
.footer__copyright {
  text-align: right;
}
.footer__copyright small {
  font-size: 1.2rem;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .footer {
    padding: 50px 0 10px;
  }
  .footer__wrapper {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    margin-bottom: 50px;
  }
  .footer__logo {
    display: block;
    width: 50%;
    margin-bottom: 35px;
  }
  .footer__row {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .footer__term {
    font-size: 1.6rem;
  }
  .footer__desc {
    font-size: 1.4rem;
  }
  .footer__nav {
    display: none;
  }
  .footer__copyright {
    text-align: center;
  }
  .footer__copyright small {
    font-size: 1.1rem;
    letter-spacing: 0;
  }
}
.drawer-off__button {
  position: fixed;
  top: 12px;
  right: 12px;
  width: 50px;
  height: 50px;
  background: #1A57B1;
  border-radius: 8px;
  cursor: pointer;
  z-index: 999;
}
.drawer-off__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.drawer-off__wrapper {
  display: flex;
  flex-direction: column;
}
.drawer-off__line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
}
.drawer-off__line span {
  display: block;
  width: 30px;
  height: 1px;
  background: #ffffff;
}
.drawer-off__title {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.drawer-on {
  width: 100%;
  height: 100vh;
  background: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.drawer-on.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 100;
}
.drawer-on__inner {
  padding: 25px 10px;
  box-sizing: border-box;
}
.drawer-on__logo {
  display: block;
  width: 50%;
  margin-bottom: 30px;
}
.drawer-on__nav {
  margin-bottom: 30px;
}
.drawer-on__item a {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 15px 0;
  border-bottom: 1px solid #cccccc;
}
.drawer-on__links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}
.drawer-on__link a {
  font-size: 1.4rem;
  font-weight: 500;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 5px;
}

.drawer-mail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #1A57B1;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.drawer-mail i, .drawer-mail span {
  color: #ffffff;
}
.drawer-mail span {
  font-size: 1.8rem;
  font-weight: 500;
}

.drawer-tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #F7F7F7;
  padding: 10px 30px 20px;
  margin-bottom: 30px;
}
.drawer-tel__link {
  display: flex;
  justify-content: center;
  align-items: self-end;
  gap: 5px;
}
.drawer-tel__link i, .drawer-tel__link span {
  color: #1A57B1;
}
.drawer-tel__link i {
  margin-bottom: 8px;
}
.drawer-tel__link span {
  font-size: 3.2rem;
  font-weight: 500;
}
.drawer-tel__caption {
  display: block;
  width: 100%;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  background: #ffffff;
  padding: 5px;
}

.drawer-sns__title {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 10px;
}
.drawer-sns__list {
  display: flex;
  gap: 5%;
}
.drawer-sns__item {
  width: 10%;
}

.action {
  padding: 80px 0;
}
.action__contents {
  background: url(../img/layout/action/bg.jpg) repeat;
  padding: 40px;
  box-sizing: border-box;
  border-radius: 8px;
  position: relative;
}
.action__contents::before {
  content: "";
  display: block;
  width: 401px;
  aspect-ratio: 401/81;
  background: url(../img/layout/action/bg--text.png) no-repeat center/contain;
  position: absolute;
  bottom: 0;
  left: 0;
}
.action__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-bottom: 25px;
}
.action__title {
  color: #ffffff;
  font-family: "Zen Old Mincho", serif;
  font-size: 3.6rem;
  font-weight: 500;
}
.action__text {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
}
.action__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.action__item--tel a {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.action__item--tel a .number {
  color: #ffffff;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}
.action__item--tel a .number span {
  font-size: 1.6rem;
}
.action__item--tel a .caption {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 400;
}
.action__button {
  width: 365px;
  background: #ffffff;
  border: 1px solid #ffffff;
  padding: 12px 15px;
  transition: all 0.3s;
}
.action__button .text, .action__button .icon {
  color: #1A57B1;
}
.action__button:hover {
  background: #1A57B1;
}
.action__button:hover .text, .action__button:hover .icon {
  color: #ffffff;
}

@media only screen and (max-width: 767px) {
  .action {
    padding: 50px 0;
  }
  .action__contents {
    padding: 30px 15px;
    border-radius: 8px;
    position: relative;
  }
  .action__contents::before {
    width: 80%;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .action__wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
  }
  .action__title {
    font-size: 3.2rem;
  }
  .action__text {
    font-size: 1.5rem;
    text-align: center;
    line-height: 1.5;
  }
  .action__list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    gap: 30px;
  }
  .action__item--tel a {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
  }
  .action__item--tel a .number {
    font-size: 3.2rem;
    line-height: 1;
  }
  .action__item--tel a .number span {
    font-size: 1.4rem;
  }
  .action__item--tel a .caption {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 400;
  }
  .action__item--mail {
    width: 90%;
    margin: 0 auto;
  }
  .action__button {
    width: 100%;
    padding: 8px 15px;
  }
  .action__button .text {
    font-size: 1.4rem;
  }
}
.breadcrumb {
  padding: 15px 0;
}
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  width: 87.5%;
  min-width: 1200px;
  margin: 0 auto;
}
.breadcrumb__item {
  font-size: 1.5rem;
  line-height: 1;
  padding-right: 10px;
  border-right: 1px solid #000000;
}
.breadcrumb__item:last-child {
  border: none;
}

@media only screen and (max-width: 767px) {
  .breadcrumb {
    display: none;
  }
}
.pagination {
  margin-top: 30px;
}

.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.page-numbers li span, .page-numbers li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #cccccc;
  border-radius: 5px;
  font-size: 1.8rem;
  line-height: 1;
}
.page-numbers li span.current {
  background: #009BDF;
  color: #ffffff;
  font-size: 2rem;
}

@media only screen and (max-width: 767px) {
  .pagination {
    margin-top: 20px;
  }
  .page-numbers li span, .page-numbers li a {
    width: 35px;
    height: 35px;
    font-size: 1.6rem;
  }
  .page-numbers li span.current {
    font-size: 1.8rem;
  }
}
.navigation {
  margin-top: 80px;
}
.navigation__list {
  display: flex;
  justify-content: center;
  position: relative;
}
.navigation__item--prev {
  position: absolute;
  top: 0;
  left: 0;
}
.navigation__item--archive {
  text-align: center;
}
.navigation__item--next {
  position: absolute;
  top: 0;
  right: 0;
}
.navigation__link {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.top-about__inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 5%;
  padding: 100px 0;
  position: relative;
}
.top-about__inner::before {
  content: "";
  display: block;
  width: 708px;
  aspect-ratio: 708/128;
  background: url(../img/pages/top/about/bg--text.png) no-repeat center/contain;
  position: absolute;
  top: 0;
  left: 0;
}
.top-about__contents {
  display: flex;
  flex-direction: column;
  gap: 35px;
  width: 520px;
}
.top-about__body {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.top-about__text {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
}
.top-about__img {
  width: 40%;
  min-width: 520px;
}

@media only screen and (max-width: 767px) {
  .top-about__inner {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 50px;
    padding: 60px 0;
    position: relative;
  }
  .top-about__inner::before {
    width: 80%;
    position: absolute;
    top: 10px;
    left: 0;
  }
  .top-about__contents {
    display: flex;
    flex-direction: column;
    gap: 35px;
    width: 100%;
  }
  .top-about__body {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  .top-about__text {
    font-size: 1.5rem;
    line-height: 1.8;
  }
  .top-about__img {
    width: 100%;
    min-width: 100%;
  }
}
.top-service {
  background: #F5F5F5;
  padding: 80px 0;
  position: relative;
}
.top-service::before {
  content: "";
  display: block;
  width: 555px;
  aspect-ratio: 555/125;
  background: url(../img/pages/top/service/bg--text.png) no-repeat center/contain;
  position: absolute;
  top: 80px;
  right: 0;
}
.top-service__title--lv2 {
  margin-bottom: 50px;
}
.top-service__item {
  display: flex;
  border-bottom: 1px solid #DDDDDD;
}
.top-service__item:first-child {
  border-top: 1px solid #DDDDDD;
}
.top-service__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56%;
}
.top-service__contents {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.top-service__text {
  font-size: clamp(1.35rem, 0.78vw, 1.5rem);
  font-weight: 400;
}
.top-service__img {
  width: 44%;
  min-width: 680px;
}

@media only screen and (max-width: 767px) {
  .top-service {
    padding: 50px 0;
    position: relative;
  }
  .top-service::before {
    width: 80%;
    position: absolute;
    top: 10px;
    right: 0;
  }
  .top-service__title--lv2 {
    margin-bottom: 35px;
  }
  .top-service__item {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 30px 0 40px;
  }
  .top-service__wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 95%;
    margin: 0 auto;
  }
  .top-service__contents {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  .top-service__text {
    font-size: 1.4rem;
  }
  .top-service__img {
    width: 100%;
    min-width: auto;
  }
}
.top-recruit {
  background: #1A57B1;
  position: relative;
}
.top-recruit::before {
  content: "";
  display: block;
  width: 563px;
  aspect-ratio: 563/122;
  background: url(../img/pages/top/recruit/bg--text.png) no-repeat center/contain;
  position: absolute;
  bottom: 0;
  right: 0;
}
.top-recruit__inner {
  display: flex;
  align-items: center;
  gap: 80px;
}
.top-recruit__img {
  width: 40%;
  min-width: 600px;
}
.top-recruit__contents {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.top-recruit__title .en, .top-recruit__title .ja {
  color: #ffffff;
}
.top-recruit__body {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.top-recruit__text {
  color: #ffffff;
  font-size: clamp(1.4rem, 0.83vw, 1.6rem);
  font-weight: 400;
  line-height: 1.8;
}
.top-recruit__button {
  background: #ffffff;
  border: 1px solid #ffffff;
  transition: all 0.3s;
}
.top-recruit__button .text, .top-recruit__button .icon {
  color: #1A57B1;
}
.top-recruit__button:hover {
  background: #1A57B1;
}
.top-recruit__button:hover .text, .top-recruit__button:hover .icon {
  color: #ffffff;
}

@media only screen and (max-width: 767px) {
  .top-recruit {
    position: relative;
  }
  .top-recruit::before {
    width: 80%;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .top-recruit__inner {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 50px;
    padding: 15px 0 50px;
  }
  .top-recruit__img {
    width: 100%;
    min-width: 100%;
  }
  .top-recruit__contents {
    display: flex;
    flex-direction: column;
    gap: 35px;
  }
  .top-recruit__body {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  .top-recruit__text {
    font-size: 1.5rem;
    line-height: 1.6;
  }
}
.top-column {
  padding: 80px 0;
}
.top-column__inner {
  position: relative;
}
.top-column__title {
  margin-bottom: 35px;
}
.top-column__list {
  display: flex;
  align-items: flex-start;
  gap: 2%;
}
.top-column__item {
  display: flex;
  width: 32%;
}
.top-column__link {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.top-column__link:hover {
  opacity: 0.6;
}
.top-column__thumbnail {
  width: 100%;
  aspect-ratio: 400/285;
  background: url(../img/pages/top/column/no-img.jpg) no-repeat center/cover;
  border-radius: 8px;
  box-shadow: 0 4px 4px 0px rgba(51, 51, 51, 0.15);
  margin-bottom: 20px;
}
.top-column__time {
  color: #1A57B1;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 15px;
}
.top-column__headline {
  flex-grow: 1;
  color: #1A57B1;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  border-bottom: 1px solid #1A57B1;
  padding-bottom: 15px;
  text-align: justify;
  text-justify: inter-ideograph;
  word-break: break-all;
  margin-bottom: 15px;
}
.top-column__text {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 10px;
}
.top-column__tags {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.top-column__tag {
  color: #1A57B1;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  border: 1px solid #1A57B1;
  padding: 5px 10px;
  border-radius: 90px;
}
.top-column__button {
  width: 205px;
  position: absolute;
  top: 0;
  right: 0;
}

@media only screen and (max-width: 767px) {
  .top-column {
    padding: 40px 0;
  }
  .top-column__title {
    margin-bottom: 35px;
  }
  .top-column__list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 90%;
    margin: 0 auto 35px;
  }
  .top-column__item {
    display: flex;
    width: 100%;
  }
  .top-column__link {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .top-column__thumbnail {
    width: 100%;
    margin-bottom: 10px;
  }
  .top-column__time {
    font-size: 1.5rem;
    margin-bottom: 0;
  }
  .top-column__headline {
    font-size: 1.6rem;
    line-height: 1.4;
    padding-bottom: 10px;
    margin-bottom: 5px;
  }
  .top-column__text {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  .top-column__button {
    position: static;
    margin: 0 auto;
  }
}
.top-news {
  background: linear-gradient(90deg, rgb(245, 245, 245) 45%, rgb(255, 255, 255) 45%);
  padding: 80px 0 100px;
}
.top-news__inner {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.top-news__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 835px;
}
.top-news__link {
  display: flex;
  align-items: center;
  gap: 30px;
  background: #ffffff;
  padding: 15px 30px;
  box-sizing: border-box;
  border-radius: 8px;
  box-shadow: 0 4px 4px 0px rgba(51, 51, 51, 0.15);
}
.top-news__link:hover {
  opacity: 0.6;
}
.top-news__time {
  color: #1A57B1;
  font-size: 1.6rem;
  font-weight: 600;
}
.top-news__headline {
  color: #1A57B1;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.top-news__tags {
  display: flex;
  gap: 10px;
}
.top-news__tag {
  color: #1A57B1;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  border: 1px solid #1A57B1;
  padding: 5px 10px;
  border-radius: 90px;
}
.top-news__button {
  width: 135px;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media only screen and (max-width: 767px) {
  .top-news {
    padding: 40px 0;
  }
  .top-news__inner {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    position: relative;
  }
  .top-news__title {
    margin-bottom: 20px;
  }
  .top-news__list {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 35px;
  }
  .top-news__link {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 5px;
    padding: 15px;
  }
  .top-news__time {
    width: 100%;
    font-size: 1.5rem;
  }
  .top-news__headline {
    width: 100%;
    font-size: 1.5rem;
  }
  .top-news__button {
    position: static;
    margin: 0 auto;
  }
}
.about-strength__inner--l {
  padding: 100px 0;
  position: relative;
}
.about-strength__inner--l::before {
  content: "";
  display: block;
  width: 708px;
  aspect-ratio: 708/128;
  background: url(../img/pages/about/strength/bg--text.png) no-repeat center/contain;
  position: absolute;
  top: 0;
  left: 0;
}
.about-strength__title--lv2 {
  margin-bottom: 50px;
}
.about-strength__list {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.about-strength__item {
  display: flex;
  gap: 40px;
}
.about-strength__img {
  width: 500px;
}
.about-strength__contents {
  display: flex;
  flex-direction: column;
  gap: 35px;
  width: 540px;
}
.about-strength__body {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.about-strength__text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
}

@media only screen and (max-width: 767px) {
  .about-strength__inner--l {
    padding: 50px 0;
    position: relative;
  }
  .about-strength__inner--l::before {
    width: 80%;
    position: absolute;
    top: 10px;
    left: 0;
  }
  .about-strength__title--lv2 {
    margin-bottom: 35px;
  }
  .about-strength__list {
    display: flex;
    flex-direction: column;
    gap: 35px;
  }
  .about-strength__item {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .about-strength__img {
    width: 100%;
  }
  .about-strength__contents {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }
  .about-strength__body {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  .about-strength__text {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.service-creative__inner {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.service-creative__inner--l {
  padding: 100px 0;
  position: relative;
}
.service-creative__inner--l::before {
  content: "";
  display: block;
  width: 555px;
  aspect-ratio: 555/125;
  background: url(../img/pages/service/creative/bg--text.png) no-repeat center/contain;
  position: absolute;
  top: 0;
  left: 0;
}
.service-creative__wrapper {
  display: flex;
  gap: 80px;
}
.service-creative__img {
  width: 500px;
}
.service-creative__contents {
  display: flex;
  flex-direction: column;
  gap: 35px;
  width: 500px;
}
.service-creative__body {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.service-creative__text {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
}

.service-creative-info__title--lv1 {
  font-size: 2.8rem;
  font-weight: 400;
  text-align: center;
  border-bottom: 1px solid #0F0F0F;
  padding-bottom: 5px;
  margin-bottom: 30px;
}
.service-creative-info__title--lv2 {
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  background: #DDDDDD;
  padding: 5px;
  box-sizing: border-box;
}
.service-creative-info__list {
  display: flex;
  gap: 27px;
}
.service-creative-info__item {
  width: 250px;
}
.service-creative-info__text {
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
  border: 1px solid #DDDDDD;
  padding: 15px 10px;
  box-sizing: border-box;
}

.service-creative-feature__title--lv1 {
  font-size: 2.8rem;
  font-weight: 400;
  text-align: center;
  border-bottom: 1px solid #0F0F0F;
  padding-bottom: 5px;
  margin-bottom: 30px;
}
.service-creative-feature__title--lv2 {
  display: flex;
  align-items: center;
  gap: 5px;
}
.service-creative-feature__title--lv2 .en {
  color: #009BDF;
  font-size: 2rem;
  font-weight: 500;
}
.service-creative-feature__title--lv2 .ja {
  font-size: 1.8rem;
  font-weight: 500;
}
.service-creative-feature__list {
  display: flex;
  gap: 30px;
}
.service-creative-feature__item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 340px;
}
.service-creative-feature__text {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
}

@media only screen and (max-width: 767px) {
  .service-creative__inner {
    display: flex;
    flex-direction: column;
    gap: 35px;
  }
  .service-creative__inner--l {
    padding: 50px 0;
    position: relative;
  }
  .service-creative__inner--l::before {
    width: 80%;
    position: absolute;
    top: 10px;
    left: 0;
  }
  .service-creative__wrapper {
    display: flex;
    flex-direction: column;
    gap: 35px;
  }
  .service-creative__img {
    width: 100%;
  }
  .service-creative__contents {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
  }
  .service-creative__body {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  .service-creative__text {
    font-size: 1.4rem;
    line-height: 1.6;
  }
  .service-creative-info__title--lv1 {
    font-size: 2.2rem;
    padding-bottom: 5px;
    margin-bottom: 30px;
  }
  .service-creative-info__title--lv2 {
    font-size: 1.5rem;
    padding: 5px;
  }
  .service-creative-info__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 3%;
  }
  .service-creative-info__item {
    width: 48.5%;
  }
  .service-creative-info__text {
    font-size: 1.2rem;
    line-height: 1.8;
    padding: 10px 5px;
    box-sizing: border-box;
  }
  .service-creative-feature__title--lv1 {
    font-size: 2.2rem;
    padding-bottom: 10px;
    margin-bottom: 30px;
    line-height: 1.4;
  }
  .service-creative-feature__title--lv2 {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .service-creative-feature__title--lv2 .en {
    font-size: 2rem;
  }
  .service-creative-feature__title--lv2 .ja {
    font-size: 1.8rem;
  }
  .service-creative-feature__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .service-creative-feature__item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  .service-creative-feature__text {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.service-recruit {
  background: linear-gradient(90deg, rgb(255, 255, 255) 42%, rgb(245, 245, 245) 42%);
}
.service-recruit__inner {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.service-recruit__inner--l {
  padding: 100px 0;
}
.service-recruit__wrapper {
  display: flex;
  gap: 80px;
}
.service-recruit__img {
  width: 500px;
}
.service-recruit__contents {
  display: flex;
  flex-direction: column;
  gap: 35px;
  width: 500px;
}
.service-recruit__body {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.service-recruit__text {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
}

.service-recruit-info__title--lv1 {
  font-size: 2.8rem;
  font-weight: 400;
  text-align: center;
  border-bottom: 1px solid #0F0F0F;
  padding-bottom: 5px;
  margin-bottom: 30px;
}
.service-recruit-info__title--lv2 {
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  background: #DDDDDD;
  padding: 5px;
  box-sizing: border-box;
}
.service-recruit-info__list {
  display: flex;
  gap: 27px;
}
.service-recruit-info__item {
  width: 250px;
}
.service-recruit-info__text {
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
  border: 1px solid #DDDDDD;
  padding: 15px 10px;
  box-sizing: border-box;
}

.service-recruit-feature__title--lv1 {
  font-size: 2.8rem;
  font-weight: 400;
  text-align: center;
  border-bottom: 1px solid #0F0F0F;
  padding-bottom: 5px;
  margin-bottom: 30px;
}
.service-recruit-feature__title--lv2 {
  display: flex;
  align-items: center;
  gap: 5px;
}
.service-recruit-feature__title--lv2 .en {
  color: #009BDF;
  font-size: 2rem;
  font-weight: 500;
}
.service-recruit-feature__title--lv2 .ja {
  font-size: 1.8rem;
  font-weight: 500;
}
.service-recruit-feature__list {
  display: flex;
  gap: 30px;
}
.service-recruit-feature__item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 340px;
}
.service-recruit-feature__text {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
}

@media only screen and (max-width: 767px) {
  .service-recruit__inner {
    display: flex;
    flex-direction: column;
    gap: 35px;
  }
  .service-recruit__inner--l {
    padding: 50px 0;
  }
  .service-recruit__wrapper {
    display: flex;
    flex-direction: column;
    gap: 35px;
  }
  .service-recruit__img {
    width: 100%;
  }
  .service-recruit__contents {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
  }
  .service-recruit__body {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  .service-recruit__text {
    font-size: 1.4rem;
    line-height: 1.6;
  }
  .service-recruit-info__title--lv1 {
    font-size: 2.2rem;
    padding-bottom: 5px;
    margin-bottom: 30px;
  }
  .service-recruit-info__title--lv2 {
    font-size: 1.5rem;
    padding: 5px;
  }
  .service-recruit-info__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 3%;
  }
  .service-recruit-info__item {
    width: 48.5%;
  }
  .service-recruit-info__text {
    font-size: 1.2rem;
    line-height: 1.8;
    padding: 10px 5px;
    box-sizing: border-box;
  }
  .service-recruit-feature__title--lv1 {
    font-size: 2.2rem;
    padding-bottom: 10px;
    margin-bottom: 30px;
    line-height: 1.4;
  }
  .service-recruit-feature__title--lv2 {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .service-recruit-feature__title--lv2 .en {
    font-size: 2rem;
  }
  .service-recruit-feature__title--lv2 .ja {
    font-size: 1.8rem;
  }
  .service-recruit-feature__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .service-recruit-feature__item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  .service-recruit-feature__text {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.recruit-mvv__inner--l {
  padding: 100px 0;
  position: relative;
}
.recruit-mvv__inner--l::before {
  content: "";
  display: block;
  width: 563px;
  aspect-ratio: 563/128;
  background: url(../img/pages/recruit/mvv/bg--text.png) no-repeat center/contain;
  position: absolute;
  top: 0;
  left: 0;
}
.recruit-mvv__title--lv2 {
  margin-bottom: 35px;
}
.recruit-mvv__title--lv3 {
  width: 300px;
}
.recruit-mvv__title--lv4 {
  font-size: 2.4rem;
  font-weight: 500;
}
.recruit-mvv__title--lv5 {
  display: block;
  width: 100%;
  color: #009BDF;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  border-bottom: 1px solid #009BDF;
  padding-bottom: 5px;
}
.recruit-mvv__list {
  display: flex;
  flex-direction: column;
}
.recruit-mvv__item {
  display: flex;
  gap: 30px;
  border-bottom: 1px solid #cccccc;
  padding: 30px 0 40px;
}
.recruit-mvv__img {
  width: 500px;
}
.recruit-mvv__contents {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 750px;
}
.recruit-mvv__body {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.recruit-mvv__text {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.8;
}
.recruit-mvv__guidelines {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.recruit-mvv__guideline {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.recruit-mvv__cards {
  display: flex;
  gap: 15px;
}
.recruit-mvv__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 240px;
}
.recruit-mvv__description {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .recruit-mvv__inner--l {
    padding: 50px 0;
    position: relative;
  }
  .recruit-mvv__inner--l::before {
    width: 80%;
    position: absolute;
    top: 10px;
    left: 0;
  }
  .recruit-mvv__title--lv2 {
    margin-bottom: 10px;
  }
  .recruit-mvv__title--lv3 {
    width: 100%;
  }
  .recruit-mvv__title--lv4 {
    font-size: 2rem;
  }
  .recruit-mvv__title--lv5 {
    display: block;
    width: 100%;
    font-size: 1.5rem;
    padding-bottom: 10px;
  }
  .recruit-mvv__title--lv5--grow {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
  }
  .recruit-mvv__list {
    display: flex;
    flex-direction: column;
  }
  .recruit-mvv__item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0 30px;
  }
  .recruit-mvv__img {
    width: 100%;
  }
  .recruit-mvv__contents {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .recruit-mvv__body {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  .recruit-mvv__text {
    font-size: 1.4rem;
    line-height: 1.6;
  }
  .recruit-mvv__guidelines {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .recruit-mvv__guideline {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .recruit-mvv__cards {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 3%;
  }
  .recruit-mvv__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 48.5%;
  }
  .recruit-mvv__icon {
    width: 50%;
  }
  .recruit-mvv__description {
    font-size: 1.3rem;
    line-height: 1.6;
  }
}
.recruit-description {
  background: linear-gradient(90deg, rgb(255, 255, 255) 42%, rgb(245, 245, 245) 42%);
}
.recruit-description__inner {
  display: flex;
  gap: 60px;
  padding: 80px 0;
}
.recruit-description__contents {
  display: flex;
  flex-direction: column;
  gap: 35px;
  width: 235px;
}
.recruit-description__links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.recruit-description__link {
  cursor: pointer;
}
.recruit-description__definition {
  display: none;
  width: 785px;
}
.recruit-description__definition.is-active {
  display: block;
}
.recruit-description__row {
  display: flex;
  gap: 25px;
  border-bottom: 1px solid #cccccc;
  padding: 25px 0;
}
.recruit-description__term {
  width: 105px;
  font-size: 1.5rem;
}
.recruit-description__desc {
  width: 655px;
  font-size: 1.5rem;
}

@media only screen and (max-width: 767px) {
  .recruit-description__inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 50px 0;
  }
  .recruit-description__contents {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
  }
  .recruit-description__links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px 4%;
  }
  .recruit-description__link {
    width: 48%;
    box-sizing: border-box;
  }
  .recruit-description__definition {
    width: 100%;
  }
  .recruit-description__row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-bottom: 1px solid #cccccc;
    padding: 20px 0;
  }
  .recruit-description__term {
    width: 100%;
    font-size: 1.5rem;
  }
  .recruit-description__desc {
    width: 100%;
    font-size: 1.3rem;
  }
}
.company-greeting__inner--l {
  padding: 100px 0;
  position: relative;
}
.company-greeting__inner--l::before {
  content: "";
  display: block;
  width: 760px;
  aspect-ratio: 708/159;
  background: url(../img/pages/company/greeting/bg--text.png) no-repeat center/contain;
  position: absolute;
  top: 0;
  left: 0;
}
.company-greeting__title--lv2 {
  margin-bottom: 35px;
}
.company-greeting__title--lv3 {
  font-size: 2.8rem;
  font-weight: 500;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.company-greeting__wrapper {
  display: flex;
  gap: 40px;
}
.company-greeting__contents {
  width: 620px;
}
.company-greeting__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.company-greeting__text {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.8;
}
.company-greeting__img {
  width: 420px;
}

@media only screen and (max-width: 767px) {
  .company-greeting__inner--l {
    padding: 50px 0;
    position: relative;
  }
  .company-greeting__inner--l::before {
    width: 80%;
    position: absolute;
    top: 10px;
    left: 0;
  }
  .company-greeting__title--lv2 {
    margin-bottom: 25px;
  }
  .company-greeting__title--lv3 {
    font-size: 2rem;
    padding-bottom: 10px;
    margin-bottom: 15px;
  }
  .company-greeting__wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .company-greeting__contents {
    width: 100%;
  }
  .company-greeting__body {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .company-greeting__text {
    font-size: 1.4rem;
    line-height: 1.6;
  }
  .company-greeting__img {
    width: 100%;
  }
}
.company-info {
  background: linear-gradient(90deg, rgb(255, 255, 255) 42%, rgb(245, 245, 245) 42%);
}
.company-info__inner {
  display: flex;
  gap: 60px;
  padding: 80px 0;
}
.company-info__contents {
  display: flex;
  flex-direction: column;
  gap: 35px;
  width: 235px;
}
.company-info__definition {
  width: 785px;
}
.company-info__row {
  display: flex;
  gap: 25px;
  border-bottom: 1px solid #cccccc;
  padding: 25px 0;
}
.company-info__term {
  width: 105px;
  font-size: 1.5rem;
}
.company-info__desc {
  width: 655px;
  font-size: 1.5rem;
}
.company-info__map {
  width: 100%;
  height: 450px;
}
.company-info__map iframe {
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 767px) {
  .company-info__inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 50px 0;
  }
  .company-info__contents {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
  }
  .company-info__definition {
    width: 100%;
  }
  .company-info__row {
    display: flex;
    gap: 5%;
    padding: 20px 0;
  }
  .company-info__term {
    width: 25%;
    font-size: 1.4rem;
  }
  .company-info__desc {
    width: 70%;
    font-size: 1.4rem;
  }
  .company-info__map {
    width: 100%;
    height: 250px;
  }
  .company-info__map iframe {
    width: 100%;
    height: 100%;
  }
}
.news-archive {
  background: url(../img/pages/news/archive/leaf.png) no-repeat top 30px right/25%;
  padding: 100px 0;
}
.news-archive__title {
  margin-bottom: 35px;
}
.news-archive__list {
  display: flex;
  flex-direction: column;
}
.news-archive__item {
  display: flex;
}
.news-archive__link {
  display: flex;
  gap: 30px;
  border-bottom: 1px solid #cccccc;
  padding: 30px 0;
}
.news-archive__link:hover {
  opacity: 0.6;
}
.news-archive__thumbnail {
  width: 150px;
  aspect-ratio: 1/1;
  background: url(../img/pages/news/archive/no-img.jpg) no-repeat center/cover;
  border-radius: 8px;
  box-shadow: 0 4px 4px 0px rgba(51, 51, 51, 0.15);
}
.news-archive__contents {
  width: 900px;
}
.news-archive__wrapper {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 15px;
}
.news-archive__time {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
}
.news-archive__tags {
  display: flex;
  align-items: center;
  gap: 10px;
}
.news-archive__tag {
  color: #009BDF;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  border: 1px solid #009BDF;
  padding: 5px 10px;
  border-radius: 90px;
}
.news-archive__headline {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.news-archive__text {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2;
}

@media only screen and (max-width: 767px) {
  .news-archive {
    padding: 50px 0;
  }
  .news-archive__title {
    margin-bottom: 25px;
  }
  .news-archive__list {
    display: flex;
    flex-direction: column;
  }
  .news-archive__item {
    display: flex;
  }
  .news-archive__link {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px 0;
  }
  .news-archive__thumbnail {
    width: 150px;
  }
  .news-archive__contents {
    width: 100%;
  }
  .news-archive__wrapper {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
  }
  .news-archive__time {
    font-size: 1.6rem;
  }
  .news-archive__tags {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .news-archive__tag {
    font-size: 1.2rem;
    letter-spacing: 0;
    padding: 2px 10px;
  }
  .news-archive__headline {
    font-size: 1.6rem;
    line-height: 1.5;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .news-archive__text {
    font-size: 1.3rem;
    line-height: 1.4;
  }
}
.news-single {
  background: url(../img/pages/news/single/leaf.png) no-repeat top 30px right/25%;
  padding: 100px 0;
}
.news-single__title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.news-single__wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 35px;
}
.news-single__tags {
  display: flex;
  align-items: center;
  gap: 10px;
}
.news-single__tag {
  color: #009BDF;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  border: 1px solid #009BDF;
  padding: 5px 10px;
  border-radius: 90px;
}
.news-single__time {
  display: block;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
}
.news-single__body p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
}

@media only screen and (max-width: 767px) {
  .news-single {
    padding: 50px 0;
  }
  .news-single__title {
    font-size: 2rem;
    padding-bottom: 10px;
    margin-bottom: 15px;
  }
  .news-single__wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
  }
  .news-single__tags {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .news-single__tag {
    font-size: 1.2rem;
  }
  .news-single__time {
    font-size: 1.4rem;
  }
  .news-single__body p {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.column-archive {
  background: url(../img/pages/column/archive/leaf.png) no-repeat top 30px right/25%;
  padding: 100px 0;
}
.column-archive__title {
  margin-bottom: 35px;
}
.column-archive__list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px 2%;
}
.column-archive__item {
  display: flex;
  width: 32%;
}
.column-archive__link {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.column-archive__link:hover {
  opacity: 0.6;
}
.column-archive__thumbnail {
  width: 100%;
  aspect-ratio: 400/285;
  background: url(../img/pages/top/column/no-img.jpg) no-repeat center/cover;
  border-radius: 8px;
  box-shadow: 0 4px 4px 0px rgba(51, 51, 51, 0.15);
  margin-bottom: 20px;
}
.column-archive__time {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 15px;
}
.column-archive__headline {
  flex-grow: 1;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 15px;
  text-align: justify;
  text-justify: inter-ideograph;
  word-break: break-all;
  margin-bottom: 15px;
}
.column-archive__text {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 10px;
}
.column-archive__tags {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.column-archive__tag {
  color: #009BDF;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  border: 1px solid #009BDF;
  padding: 5px 10px;
  border-radius: 90px;
}

@media only screen and (max-width: 767px) {
  .column-archive {
    padding: 50px 0;
  }
  .column-archive__title {
    align-items: center;
    margin-bottom: 25px;
  }
  .column-archive__list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 3%;
  }
  .column-archive__item {
    display: flex;
    width: 48.5%;
  }
  .column-archive__link {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .column-archive__thumbnail {
    margin-bottom: 20px;
  }
  .column-archive__time {
    font-size: 1.4rem;
    margin-bottom: 5px;
  }
  .column-archive__headline {
    font-size: 1.5rem;
    line-height: 1.5;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .column-archive__text {
    font-size: 1.3rem;
    line-height: 1.4;
    margin-bottom: 10px;
  }
  .column-archive__tags {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
  }
  .column-archive__tag {
    font-size: 1.2rem;
  }
}
.column-single {
  background: url(../img/pages/column/single/leaf.png) no-repeat top 30px right/25%;
  padding: 100px 0;
}
.column-single__title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.column-single__wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 35px;
}
.column-single__tags {
  display: flex;
  align-items: center;
  gap: 10px;
}
.column-single__tag {
  color: #009BDF;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  border: 1px solid #009BDF;
  padding: 5px 10px;
  border-radius: 90px;
}
.column-single__time {
  display: block;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
}
.column-single__body p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
}

@media only screen and (max-width: 767px) {
  .column-single {
    padding: 50px 0;
  }
  .column-single__title {
    font-size: 2rem;
    padding-bottom: 10px;
    margin-bottom: 15px;
  }
  .column-single__wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
  }
  .column-single__tags {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .column-single__tag {
    font-size: 1.2rem;
  }
  .column-single__time {
    font-size: 1.4rem;
  }
  .column-single__body p {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.contact-form__inner {
  padding: 80px 0;
}
.contact-form__title {
  margin-bottom: 50px;
}

.complete__inner {
  padding: 80px 0;
}
.complete__title {
  text-align: center;
  margin-bottom: 30px;
}
.complete__text {
  text-align: center;
}
.complete__link {
  display: block;
  text-align: center;
  margin-top: 10px;
}

.complete__title {
  align-items: center;
}

.privacy-policy__inner {
  padding: 80px 0;
}
.privacy-policy__title {
  font-size: 2.8rem;
  margin-bottom: 30px;
}

.privacy-contents__list {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.privacy-contents__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.privacy-contents__title {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 10px;
}
.privacy-contents__title i {
  color: #009BDF;
  font-size: 1rem;
  font-weight: 500;
}
.privacy-contents__title span {
  font-size: 2rem;
  font-weight: 500;
}
.privacy-contents__text {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.8;
}

@media only screen and (max-width: 767px) {
  .privacy-policy__inner {
    padding: 50px 0;
  }
  .privacy-policy__title {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
  .privacy-contents__list {
    display: flex;
    flex-direction: column;
    gap: 35px;
  }
  .privacy-contents__item {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .privacy-contents__title {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .privacy-contents__title i {
    font-size: 0.8rem;
    font-weight: 500;
  }
  .privacy-contents__title span {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.4;
  }
  .privacy-contents__text {
    font-size: 1.3rem;
    line-height: 1.6;
  }
}
.site-map__inner {
  padding: 80px 0;
}
.site-map__title {
  font-size: 2.8rem;
  margin-bottom: 30px;
}
.site-map__item a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 0;
  border-bottom: 1px solid #cccccc;
}
.site-map__item a i {
  color: #009BDF;
  font-size: 1.4rem;
  font-weight: 500;
}
.site-map__item a span {
  font-size: 1.6rem;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .site-map__inner {
    padding: 50px 0;
  }
  .site-map__title {
    font-size: 2.4rem;
    margin-bottom: 10px;
  }
  .site-map__item a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 0;
  }
  .site-map__item a i, .site-map__item a span {
    font-size: 1.5rem;
  }
}
.notfound__inner {
  padding: 80px 0;
}
.notfound__title {
  font-size: 3.2rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
}
.notfound__text {
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
}
.notfound__text a {
  border-bottom: 1px solid #000000;
}

@media only screen and (max-width: 767px) {
  .notfound__inner {
    padding: 50px 0;
  }
  .notfound__title {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 30px;
  }
  .notfound__text {
    font-size: 1.5rem;
    text-align: center;
  }
  .notfound__text a {
    border-bottom: 1px solid #000000;
  }
}/*# sourceMappingURL=style.css.map */