@charset "UTF-8";
/*
Theme Name:prospa-theme
Template:lexa-theme
Theme URI:
Description: プロスパ様専用のカスタマイズテーマ
Author: haru create
Author URI:
Version: 1.0.0
*/
/**********************
- ROOT
- BASE
- GENERAL
  -- FONT
  -- ALIGN
  -- FLEX
  -- LIST
  -- OTHER
- HEADER
- BREADCRUMB
- CONTAINER
- HEADING
- BUTTON
- FOOTER
- ARCHIVE
- SINGLE
- CONTACT
- FRONT
- PAGE PARTS
- LOADING
- COLOR
- MARGIN
- ANIMATION
- RESPONSIVE
***********************/
/**********************
* ブレイクポイント
* 560px/960px
**********************/
/*********************
ROOT
**********************/
:root {
  --base: #FFF;
  --bg-1: #F2F6F8;
  --bg-2: #FFFBBF;
  --text-main: #222;
  --text-sub: #7E7F83;
  --white: #FFF;
  --blue: #1E257C;
  --blue-2: #4E69C2;
  --light-blue: #00A7E6;
  --light-gray: #D9D9D9;
  --main-color-2: #6BCCF0;
  --main-color-3: #BCE3F2;
  --sub-color-1: #FFF000;
  --sub-color-2: #FFFBB3;
  --accent-color-1: #FF496B;
  --accent-color-2: #CF1531;
  --gradient: linear-gradient(70deg, #5DC5F7, #FA966B);
  --font-jp: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  --font-en: "Oswald", "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  --font-material: "Material Icons Round";
  --light: 300;
  --normal: 400;
  --bold: 700;
  --black: 900;
  --container: calc(1920px + 6%);
  --container-side: 3%;
  --container-l: 1200px;
  --container-m: 960px;
  --container-s: 660px;
  --container-ss: 480px;
  --bg-dark-blue: #1E257C;
  --overlay-dark: linear-gradient(180deg, rgba(6, 20, 56, 0) 0%, rgba(6, 20, 56, .85) 100%);
  --watermark-color-light: #F2F6F8;
  --watermark-color-dark: rgba(255, 255, 255, .09);
}

/*********************
BASE
*********************/
html {
  font-size: 62.5%;
}

body {
  background-color: var(--base);
  color: var(--text-main);
  font-family: var(--font-jp);
  font-weight: var(--normal);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.7;
  overflow-x: hidden;
}

section {
  position: relative;
  width: 100%;
}

h1,
h2,
h3 {
  font-weight: var(--normal);
}

p {
  margin: 0 0 1em;
}

a {
  color: var(--blue);
  transition: all 0.3s;
}

a:hover {
  opacity: 0.7;
}

img {
  height: auto;
  border: none;
  line-height: 0;
  vertical-align: bottom;
}

ol,
ul {
  padding: 0;
}

ol li {
  margin: 0 0 1em 1.5em;
}

ul li {
  margin: 0 0 1em 1.2em;
}

dl,
dt,
dd {
  margin: 0;
}

@media only screen and (max-width: 560px) {
  body {
    font-size: 1.5rem;
  }
}
/*********************
GENERAL
*********************/
/*FONT*/
.font-en {
  font-family: var(--font-en);
}

.small {
  font-size: 0.85em;
}

.large {
  font-size: 1.2em;
}

.strong {
  font-weight: var(--bold);
}

.uppercase {
  text-transform: uppercase;
}

.line-heighter,
.line-heighter * {
  line-height: 2.1;
}

.line-heighter p {
  margin: 0 0 2em;
}

/*ALIGN*/
.center {
  text-align: center;
}

.center > * {
  margin-left: auto;
  margin-right: auto;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

/*IMAGE*/
/* lazysizes：読み込み前はalt文字を隠す（見た目の演出は.fadein側に一本化し、二重アニメーションを避ける） */
.lazyload:not([src]) {
  visibility: hidden;
}

.img-circle {
  border-radius: 50%;
}

.img-radius {
  border-radius: 30px;
}

.img-object {
  padding-top: 26%;
  position: relative;
  overflow: hidden;
}

.img-object > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/*FLEX*/
.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.flex-reverse {
  flex-direction: row-reverse;
}

.nowrap {
  flex-wrap: nowrap;
}

.space-around {
  justify-content: space-around;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.items-center {
  /*align-items: center;*/
  max-width: 1155px;
  margin: 0 auto;
}

.cell {
  position: relative;
}

.cell img {
  display: block;
  width: 100%;
}

.cell > *:last-child {
  margin-bottom: 0;
}

.cell--1-2 {
  width: 43%;
}

.cell--1-3 {
  width: 30%;
}

.cell--1-4 {
  width: 23%;
}

.cell--2-3 {
  width: 60%;
}

.cell--3-4 {
  width: 73%;
}

@media only screen and (max-width: 560px) {
  .flex {
    flex-direction: column;
  }
  .cell--1-2,
  .cell--1-3,
  .cell--1-4,
  .cell--2-3,
  .cell--3-4 {
    margin-bottom: 1em;
    width: 100%;
  }
  .order0 {
    order: 0;
  }
  .order1 {
    order: 1;
  }
  .img-object {
    padding-top: 60%;
  }
}
/*LIST*/
.list-none {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.list-dot li {
  list-style: none;
  padding-left: 1em;
  text-indent: -1em;
  margin: 0 0 1em;
}

.list-dot li::before {
  content: "";
  background-color: var(--main-color-2);
  border-radius: 50%;
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 0.5em;
}

/*OTHER*/
.relative {
  position: relative;
}

.block {
  display: block;
}

.shadow {
  box-shadow: 0 0 1.8rem -1rem rgba(0, 0, 0, 0.27);
}

.marker {
  background: linear-gradient(transparent 60%, var(--sub-color-2) 60%);
}

.box {
  padding: 30px;
  background-color: #fff;
  border-radius: 15px;
}

.box > *:last-child {
  margin-bottom: 0;
}

/*********************
HEADER
*********************/
.header {
  background-color: var(--base);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  padding: 15px var(--container-side);
  margin: 0 auto;
}

.header-title {
  margin: 0;
}

.header-title img {
  width: 202px;
  height: 57px;
}

#drawer-input {
  display: none;
}

.header-nav-item {
  list-style: none;
}

.header-nav-link {
  color: var(--text-main);
  display: block;
  font-family: var(--font-en);
  position: relative;
  text-decoration: none;
}

@media only screen and (min-width: 961px) {
  #drawer-content {
    align-items: center;
    display: flex;
  }
  .header-nav-list {
    display: flex;
    margin: 0;
    padding: 0;
  }
  .header-nav-item {
    margin: 0 0 0 3.8rem;
  }
  .header-nav-item:first-child {
    margin-left: 0;
  }
}
@media only screen and (max-width: 960px) {
  .header {
    padding: 10px;
  }
  #drawer-content {
    background: #fff;
    opacity: 0;
    visibility: hidden;
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    transition: 0.3s ease-in-out;
    height: 100%;
    width: 100%;
    z-index: -1;
  }
  #drawer-open {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    right: 10px;
    height: 25px;
    width: 25px;
    outline: none;
    z-index: 1000;
    transform: translateY(-50%);
  }
  #drawer-open span {
    content: "";
    background-color: #222;
    display: block;
    height: 1px;
    width: 25px;
    position: absolute;
    transition: 0.3s ease-in-out;
    transform-origin: right;
  }
  #drawer-open span.top {
    top: 8px;
  }
  #drawer-open span.bottom {
    bottom: 8px;
  }
  #drawer-input:checked ~ #drawer-open span.top {
    top: 3px;
    transform: rotate(-45deg);
  }
  #drawer-input:checked ~ #drawer-open span.bottom {
    bottom: 3px;
    transform: rotate(45deg);
  }
  #drawer-input:checked ~ #drawer-content {
    opacity: 1;
    visibility: visible;
    z-index: 999;
  }
  .header-nav-list {
    margin: 0;
    padding: 74px 0 0;
  }
  .header-nav-item {
    /*border-bottom: solid 1px var(--light-gray);*/
  }
  .header-nav-link {
    width: 100%;
    padding: 2rem;
  }
  #drawer-content .header-cta {
    margin: 2rem;
    text-align: center;
  }
}
#header-logo {
  margin-right: auto;
}

.header-cta {
  margin-left: 3rem;
}

.btn-header {
  background-color: var(--bg-dark-blue);
  border-radius: 9999px;
  color: var(--base);
  display: inline-block;
  font-size: 1.6rem;
  font-weight: var(--bold);
  padding: 1em 2.4em;
  text-decoration: none;
  transition: all 0.3s;
}

@media only screen and (min-width: 961px) {
  .btn-header:hover {
    opacity: 0.8;
  }
}
@media only screen and (max-width: 960px) {
  .btn-header {
    font-size: 1.6rem;
    padding: 0.7em 1.4em;
  }
}
@media only screen and (max-width: 560px) {
  .btn-header {
    font-size: 1.3rem;
    padding: 0.6em 1.1em;
  }
}
/*********************
BREADCRUMBS
*********************/
#breadcrumb {
  padding: 1.5em 0 2em;
  background-color: var(--bg-1);
}

.breadcrumb-list {
  padding: 0;
  max-width: var(--container-l);
  margin: 0 auto;
}

.breadcrumb-item {
  color: var(--text-main);
  line-height: 1;
  list-style: none;
  display: inline-block;
  margin: 0;
}

.breadcrumb-item:not(:last-of-type)::after {
  content: "/";
  padding: 0 0.5em;
}

.breadcrumb-item a {
  color: inherit;
  font-weight: var(--normal);
  text-decoration: none;
}

/*********************
CONTAINER
*********************/
.section-wrap {
  padding-top: 160px;
  padding-bottom: 160px;
  position: relative;
}

.service-overview.section-wrap {
  padding-bottom: 0px;
}

.service.section-wrap {
  padding-bottom: 270px;
}

.container {
  max-width: var(--container);
  padding-right: var(--container-side);
  padding-left: var(--container-side);
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.container-l {
  max-width: var(--container-l);
  margin: 0 auto;
}

.container-m {
  max-width: var(--container-m);
  margin: 0 auto;
}

.container-s {
  max-width: var(--container-s);
  margin: 0 auto;
}

.container-ss {
  max-width: var(--container-ss);
}

.map-wrap {
  position: relative;
}

.map-wrap::before {
  content: "";
  display: block;
  padding-top: 50%;
}

.map-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

@media only screen and (max-width: 560px) {
  .section-wrap {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .service.section-wrap {
    padding-bottom: 140px;
  }
  .container {
    padding-right: 5%;
    padding-left: 5%;
  }
}
/*********************
HEADING
*********************/
.h1-page {
  font-size: 3rem;
  font-weight: var(--bold);
  margin-bottom: 1em;
}

.h2-top {
  font-size: 3.5rem;
  font-weight: var(--bold);
  margin-bottom: 1em;
  color: var(--blue);
}

.h2-page {
  font-size: 1.4rem;
  font-weight: var(--normal);
  position: relative;
  padding-bottom: 90px;
  text-align: center;
}

.h3-page {
  font-size: 2.6rem;
  font-weight: var(--bold);
  margin-bottom: 1em;
  color: var(--blue);
}

.footer-cta-text .h2-top {
  font-size: 1.4rem;
  margin-bottom: 1em;
  color: var(--white);
  font-weight: var(--normal);
}

/*********************
BUTTON
*********************/
.btn-wrap {
  margin-top: 1.5em;
  width: 100%;
}

.btn {
  color: var(--text-main);
  display: inline-block;
  font-size: 1em;
  font-weight: normal;
  line-height: 1;
  position: relative;
  transition: all 0.3s;
  z-index: 1;
}

.btn-main {
  background-color: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 9999px;
  color: #fff;
  display: inline-block;
  font-size: 1.7rem;
  font-weight: 900;
  padding: 1em 0;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
  padding: 2rem 8rem 2rem 6rem;
  letter-spacing: 0.2em;
  line-height: 1.5;
  position: relative;
}

.btn-main::before {
  content: "";
  position: absolute;
  right: 1.5em;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid #fff;
}

.btn-main--light::before {
  border-left-color: var(--blue);
}

.btn-main--light:hover::before {
  border-left-color: var(--white);
}

.btn-sub {
  color: var(--blue);
  padding-right: 2em;
  position: relative;
  text-decoration: none;
}

.btn-sub::after {
  content: "\e5c8";
  font-family: var(--font-material);
  font-size: 2rem;
  font-weight: 400;
  line-height: 3rem;
  height: 3rem;
  width: 3rem;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: all 0.3s;
  text-align: center;
}

@media only screen and (min-width: 961px) {
  .btn-main:hover {
    /*background-color: #fff;
    color: var(--blue);*/
  }
  .btn-sub:hover {
    color: var(--blue);
  }
  .btn-sub:hover::after {
    right: -0.25em;
  }
}
@media only screen and (max-width: 560px) {
  .btn-wrap {
    text-align: center;
  }
}
/*********************
FOOTER
*********************/
#footer {
  position: relative;
}

.footer-cta {
  background-color: var(--bg-dark-blue);
  color: var(--base);
  overflow: hidden;
  padding: 130px 0;
  position: relative;
}

.footer-cta-inner {
  position: relative;
  z-index: 1;
}

.footer-cta-text {
  flex: 1;
}

.footer-logo {
  display: block;
  width: 210px;
}

.footer-address {
  font-size: 1.3rem;
  line-height: 1.8;
  margin: 1.5em 0 0;
}

.footer-foot-list {
  padding: 0;
  margin: 0;
  justify-content: flex-start;
}

.footer-foot-item {
  color: var(--text-sub);
  font-size: 1.2rem;
  list-style: none;
  margin: 0 2em 0 0;
}

.footer-foot-item:last-of-type {
  margin: 0;
}

.footer-foot-link {
  color: inherit;
  text-decoration: none;
}

.footer-main {
  padding: 0;
  position: relative;
}

.footer-box {
  max-width: 1155px;
  margin: 7rem auto 1rem;
}

.footer-nav-group {
  margin-bottom: 3em;
}

.footer-menu-main {
  padding: 0;
}

.footer-main-list {
  padding: 0;
  margin: 0;
  justify-content: flex-start;
}

.footer-main-item {
  color: var(--text-main);
  font-size: 1.4rem;
  list-style: none;
  margin: 0 3em 0 0;
}

.footer-main-item:last-of-type {
  margin: 0;
}

.footer-main-link {
  color: inherit;
  text-decoration: none;
}

.copyright {
  margin: 0;
  text-align: right;
  width: 100%;
}

.copyright a {
  color: var(--text-sub);
  font-size: 1rem;
  text-decoration: none;
}

@media only screen and (max-width: 560px) {
  .footer-box {
    margin: 4rem auto 1rem;
  }
  .footer-cta {
    padding: 45px 0 60px;
  }
  .footer-menu-main {
    padding: 40px 0;
  }
  .footer-main-item:not(:last-of-type) {
    margin: 0 0 2em 0;
  }
}
/*********************
ARCHIVE
*********************/
/*card*/
.archive-card {
  background-color: #FFFFFF;
  border-radius: 5px;
  margin-right: 8%;
  margin-bottom: 2em;
}

.archive-card:nth-of-type(2n) {
  margin-right: 0%;
}

.archive-card a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  overflow: hidden;
  text-decoration: none;
}

.archive-card a:hover {
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.1);
  opacity: 1;
}

.image-archive {
  width: 100%;
  padding-top: 50%;
  position: relative;
  overflow: hidden;
}

.image-archive > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.3s;
}

.archive-card:hover .image-archive > img {
  transform: scale(1.1);
}

.text-archive {
  color: #000000;
  padding: 1em;
  background-color: #FFFFFF;
}

.text-archive .time-archive {
  color: #777777;
  margin-bottom: 1em;
}

/*list*/
.archive-list {
  padding: 0 0.6em 1.8em;
  border-bottom: dotted 1px #D2DAE6;
  margin-bottom: 1.5em;
  transition: all 0.4s;
}

.archive-list:last-of-type {
  margin-bottom: 0;
}

.archive-list a {
  display: block;
  text-decoration: none;
}

.archive-list .time-archive {
  width: 15%;
  color: var(--blue);
}

.archive-list .title-archive {
  width: 80%;
  color: var(--text-main);
  font-weight: var(--normal);
  margin: 0;
}

/*PAGENATION*/
/* リンクの枠 */
.navigation.pagination {
  margin-top: 4em;
}

/* 数字のリンク */
.pagination .page-numbers {
  color: var(--blue);
  font-family: var(--font-en);
  font-weight: var(--normal);
  display: flex;
  justify-content: center;
  margin: 0;
}

.pagination .page-numbers li {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 1.2em;
}

.pagination .page-numbers li:first-of-type {
  margin-left: 0;
}

.pagination .page-numbers li:last-of-type {
  margin-right: 0;
}

.pagination .page-numbers a {
  text-decoration: none;
}

/* 前へ、次へボタン（CSSのみで矢印を描画） */
.pagination .nav-links .prev,
.pagination .nav-links .next {
  width: 1em;
  height: 1em;
  position: relative;
}

.pagination .nav-links .prev::before,
.pagination .nav-links .next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid var(--blue);
  border-right: 2px solid var(--blue);
}

.pagination .nav-links .prev::before {
  transform: translate(-25%, -50%) rotate(-135deg);
}

.pagination .nav-links .next::before {
  transform: translate(-75%, -50%) rotate(45deg);
}

/* ドット */
/* 現在のページ */
.pagination .nav-links .current {
  text-decoration: underline;
}

@media only screen and (max-width: 560px) {
  .archive-list:last-child {
    margin-bottom: 1.5em;
  }
  .archive-list .time-archive {
    margin-right: 0;
    margin-bottom: 0.5em;
  }
  .archive-list .time-archive,
  .archive-list .title-archive {
    width: 100%;
  }
}
/*********************
SINGLE
*********************/
.header-single {
  position: relative;
  padding-top: 120px;
}

.time-single {
  display: inline-block;
  margin-bottom: 0.5em;
}

.title-single {
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 0;
}

.main-single-post h2 {
  font-size: 1.8em;
}

.main-single-post h3 {
  font-size: 1.5em;
}

.main-single-post h4 {
  font-size: 1.2em;
}

.main-single-post h2,
.main-single-post h3,
.main-single-post h4 {
  margin: 1em 0;
}

.main-single-post p + h2,
.main-single-post img + h2,
.main-single-post figure + h2,
.main-single-post table + h2 {
  margin-top: 3em;
}

.main-single-post p + h3,
.main-single-post img + h3,
.main-single-post figure + h3,
.main-single-post table + h3 {
  margin-top: 2em;
}

.main-single-post ul,
.main-single-post ol {
  margin: 2em 0;
}

.main-single-post figure,
.main-single-post img {
  display: block;
  max-width: 100%;
  margin: auto;
}

.main-single-post figure {
  margin-bottom: 2em;
}

.main-single-post figcaption {
  font-size: 0.8em;
  line-height: 1.7;
  margin-top: 0.5em;
}

.main-single-post table {
  border: solid 1px #DDD;
  border-collapse: collapse;
}

.main-single-post tr {
  border-bottom: solid 1px #DDD;
}

.main-single-post th,
.main-single-post td {
  padding: 1em;
  border-right: solid 1px #DDD;
}

@media only screen and (max-width: 560px) {
  .title-news {
    font-size: 1.9rem;
  }
}
/*********************
CONTACT
*********************/
input[type=email],
input[type=text],
input[type=tel],
input[type=file],
input[type=url],
input[type=number],
input[type=date],
select,
textarea {
  color: inherit;
  font-size: 1.6rem;
  display: inline-block;
  width: 100%;
}

input[type=email],
input[type=text],
input[type=tel],
input[type=url],
input[type=number],
input[type=date],
select,
textarea {
  border: 1px solid #DBDBDB;
  border-radius: 5px;
  background-color: var(--bg-1);
  line-height: 1.7;
  padding: 1rem 0.9rem;
}

input[type=number] {
  margin-right: 0.5rem;
  padding: 0.5rem 1rem;
  width: calc(4em + 2rem);
}

/* selectの矢印をCSSのみで描画（画像不使用） */
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 3rem;
}

.wpcf7-form-control-wrap[data-name=menu-subject] {
  display: block;
  position: relative;
}

.wpcf7-form-control-wrap[data-name=menu-subject]::after {
  content: "";
  position: absolute;
  /* selectボックス（border + padding + line-height）の縦中央に固定。
     バリデーションエラー時に下へ追加される.wpcf7-not-valid-tipで
     ラップ全体の高さが伸びても矢印の位置がずれないよう、
     top: 50%（親の全体高さ基準）ではなくselect自身の高さから算出する。 */
  top: calc(1px + 1rem + 1.36rem);
  right: 1.2rem;
  width: 0.6em;
  height: 0.6em;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}

input[type=checkbox],
input[type=radio],
.wpcf7-list-item-label {
  vertical-align: middle;
}

input[type=submit] {
  background-color: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 9999px;
  color: #fff;
  display: inline-block;
  font-size: 2rem;
  font-weight: 900;
  padding: 1em 0;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
  width: 500px;
  letter-spacing: 0.2em;
}

input[type=submit]:hover {
  color: #fff;
  opacity: 0.7;
}

.number-month,
.number-date {
  margin-left: 1em;
}

.wpcf7-list-item {
  margin: 0 1em 0 0;
}

.wpcf7-list-item:last-child {
  margin: 0;
}

.heading-form-contact {
  font-size: 1em;
  font-weight: var(--bold);
}

.detail-form-contact {
  padding-top: 8px;
  padding-bottom: 30px;
}

.contact-label {
  background-color: var(--blue);
  border-radius: 7px;
  color: #fff;
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  margin-left: 10px;
  padding: 5px 12px;
  line-height: 1;
  vertical-align: text-bottom;
}

::placeholder {
  color: #ddd;
  font-size: 1.6rem;
  letter-spacing: 0.15rem;
  line-height: 1.5;
}

.wpcf7-checkbox .wpcf7-list-item {
  display: block;
  margin-bottom: 0.5em;
}

.wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}

/*送信完了メッセージ*/
.wpcf7 form.sent .wpcf7-response-output {
  background-color: #fff;
  border-color: #4a84af;
  margin-top: 3em;
  padding: 2em;
}

/*Google reCAPCHA*/
.reCAPTCHA {
  font-size: 10px;
}

@media only screen and (max-width: 560px) {
  input[type=submit] {
    width: 100%;
  }
  .heading-form-contact {
    font-size: 1.4rem;
    padding: 10px 0 0;
  }
  .detail-form-contact {
    padding: 10px 0 30px;
  }
  .contact-label {
    font-size: 1.1rem;
  }
  ::placeholder {
    font-size: 1em;
  }
  .wpcf7-list-item-label {
    font-size: 1.3rem;
  }
  .wpcf7-text,
  .wpcf7-textarea {
    font-size: 1.6rem;
  }
}
/*********************
FRONT
*********************/
/*section-label（英語+日本語のラベル併記パーツ、Service/Company/Contactで使い回し）*/
.section-label {
  margin-bottom: 1.5em;
}

.section-label-en {
  display: block;
  font-size: 4rem;
  font-weight: var(--bold);
  letter-spacing: 0.1em;
}

.section-label-ja {
  display: block;
  font-size: 2rem;
  font-weight: var(--normal);
  margin-top: 0em;
}

/*.section-label--light .section-label-en,
.section-label--light .section-label-ja {
   color: var(--base);
}*/
/*bg-watermark（セクション背景の大型透かし文字、Service/Contactで使い回し）*/
.bg-watermark {
  bottom: -0.07em;
  color: var(--watermark-color-light);
  font-family: var(--font-en);
  font-size: 28rem;
  font-weight: var(--bold);
  left: 0;
  line-height: 1;
  margin: 0;
  pointer-events: none;
  position: absolute;
  text-align: center;
  white-space: nowrap;
  width: 100%;
  z-index: 0;
}

.bg-watermark--dark {
  color: var(--watermark-color-dark);
  left: 20%;
}

@media only screen and (max-width: 960px) {
  .bg-watermark {
    font-size: 18rem;
  }
}
@media only screen and (max-width: 560px) {
  .bg-watermark {
    font-size: 18rem;
  }
}
/*Serviceの透かし文字のみ右から左へ無限ループ*/
.service .bg-watermark {
  animation-name: watermark-marquee;
  animation-duration: 20s !important;
  animation-timing-function: linear;
  animation-iteration-count: infinite !important;
  text-align: left;
  white-space: nowrap;
}

@keyframes watermark-marquee {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
/*FV*/
.fv {
  align-items: flex-end;
  background-color: var(--bg-dark-blue);
  background-image: url(../../uploads/site-images/hero-bg.jpg);
  background-position: center;
  background-size: cover;
  display: flex;
  height: 720px;
  overflow: hidden;
}

.fv::after {
  /*background: var(--overlay-dark);*/
  content: "";
  inset: 0;
  position: absolute;
}

.fv-inner {
  color: var(--base);
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}

.fv-lead {
  font-size: 3.6rem;
  margin-bottom: 0.1em;
  font-weight: var(--bold);
}

.fv-heading {
  font-family: var(--font-en);
  font-size: 12rem;
  line-height: 1.2;
  margin: 0;
  font-weight: var(--black);
}

@media only screen and (max-width: 960px) {
  .fv {
    height: 560px;
  }
  .fv-heading {
    font-size: 5.5rem;
  }
}
@media only screen and (max-width: 560px) {
  .fv {
    background-image: url(../../uploads/site-images/hero-bg-sp.jpg);
    height: 460px;
  }
  .fv-inner {
    padding-bottom: 40px;
  }
  .fv-lead {
    font-size: 2rem;
  }
  .fv-heading {
    font-size: 4.7rem;
  }
}
/*Service*/
.service {
  overflow: hidden;
}

.service-inner > * {
  position: relative;
  z-index: 1;
}

.service-text {
  color: var(--text-main);
  font-size: 1em;
  line-height: 3;
}

.service-heading {
  width: 50%;
}

@media only screen and (max-width: 560px) {
  .service-heading {
    margin-bottom: 2em;
    width: 100%;
  }
}
/*Company*/
.company {
  background-color: var(--bg-1);
}

.company-logo {
  display: flex;
  justify-content: center; /* 横中央 */
  align-items: center;
}

.company-logo img {
  display: block;
  margin: 0 auto;
  max-width: 320px;
  width: 100%;
}

p.company-text {
  font-size: 1em;
  line-height: 3;
  text-align: justify;
}

@media only screen and (max-width: 560px) {
  .company-logo {
    margin-bottom: 2em;
  }
  .company-logo img {
    max-width: 220px;
  }
}
/*footer-cta内のボタンはインライン幅で表示（.btn-mainの基本widthは100%のため上書き）*/
.footer-cta-inner .btn-wrap {
  margin-top: 0;
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-cta-inner .btn-main {
  padding: 2rem 8rem 2rem 6rem;
  width: auto;
}

@media only screen and (max-width: 560px) {
  .footer-cta-inner .btn-wrap {
    margin-top: 2em;
    width: 100%;
  }
  .footer-cta-inner .btn-main {
    padding: 1em 0;
    width: 100%;
  }
}
/*btn-main--light（暗い背景セクション用のボタン配色違い。Contactで使用）*/
.btn-main--light {
  background-color: var(--base);
  border-color: var(--base);
  color: var(--blue);
}

@media only screen and (min-width: 961px) {
  .btn-main--light:hover {
    background-color: var(--blue);
    border-color: var(--white);
    color: var(--base);
    opacity: 1;
  }
}
/*********************
PAGE PARTS
*********************/
/*privacy*/
.main-privacy h2 {
  font-size: 1.5em;
  margin: 2em 0 0.5em;
}

/*about（企業案内ページ）*/
.page-hero {
  align-items: center;
  background-color: var(--bg-dark-blue);
  background-image: url(../../uploads/site-images/hero-bg.jpg);
  background-position: center;
  background-size: cover;
  display: flex;
  height: 320px;
  overflow: hidden;
  position: relative;
}

.page-hero::after {
  /*background: rgba(6, 20, 56, .45);*/
  content: "";
  inset: 0;
  position: absolute;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero .h1-page {
  color: var(--base);
  margin-bottom: 0;
}

.about-mission .section-label-en {
  color: var(--white);
}
.about-mission .section-label-ja {
  color: var(--white);
}

.about-message-text {
  border: 1px solid rgba(30, 37, 124, 0.2);
  color: #333333;
  background-color: #ffffff;
  box-shadow: 0px 0px 5px 0px rgba(30, 37, 124, 0.2), 10px 10px 0px 0px rgba(30, 37, 124, 0.33);
  padding: 9rem;
}

.about-message-text p {
  font-size: 1em;
  line-height: 3;
  text-align: justify;
}

p.about-message-sign {
  font-size: 1em;
  text-align: end;
}

.about-message-sign span {
  font-size: 1.5em;
}

/*Mission: mission-bg.jpgは未アップロードのプレースホルダー。site-imagesに画像追加後、そのまま表示される*/
.about-mission {
  background-color: var(--bg-dark-blue);
  /*background-image: url(../../uploads/site-images/mission-bg.jpg);
  */
  background-position: center;
  background-size: cover;
  padding-top: 70px;
  padding-bottom: 160px;
  position: relative;
  text-align: center;
}

/*.about-mission::after {
   background: var(--overlay-dark);
   content: '';
   inset: 0;
   position: absolute;
}*/
.about-mission .container {
  position: relative;
  z-index: 1;
}

.about-mission-text {
  color: var(--base);
  text-shadow: 0 0 10px rgb(30, 37, 124);
  font-size: 1.1em;
  font-weight: var(--bold);
  line-height: 2;
  margin: 0 auto;
  max-width: 700px;
}

.about-philosophy-item {
  text-align: center;
}

.about-philosophy-item:not(:last-of-type) {
  margin-bottom: 120px;
}

.about-philosophy-text {
  font-size: 1em;
  line-height: 3;
}

.about-company {
  background-color: var(--bg-1);
}

.about-company-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-company-logo img {
  display: block;
  margin: 0 auto;
  width: 100%;
}

.table-company {
  /*width: 100%;*/
}
.table-company .cell--1-3 {
  width: 21%;
}
.table-company .cell--2-3 {
  width: 67%;
}
.table-company th, .table-company td {
  font-size: 1em;
  line-height: 1.8;
  padding: 1.5em 0;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--light-gray);
}
.table-company th {
  font-weight: var(--bold);
  width: 90px;
}
.table-company .map-wrap {
  margin-top: 4em;
}

.about-company-inner {
  margin-bottom: 5em;
}

.office-table th,
.office-table td {
  border-bottom: none;
  font-weight: normal;
}

@media (min-width: 768px) {
  .office-table th {
    width: 17%;
    padding: 0;
    font-weight: var(--normal);
  }
  .office-table td {
    padding: 0;
  }
  .office-table tr td:first-of-type {
    width: 18%;
  }
  .office-table tr td:last-of-type {
    padding-bottom: 1.3rem;
  }
}
@media only screen and (max-width: 960px) {
  .page-hero {
    height: 240px;
  }
  .about-message-text {
    padding: 4rem;
  }
  .about-mission {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 560px) {
  .page-hero {
    height: 180px;
  }
  .about-mission {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .about-mission-text {
    font-size: 1.1em;
  }
  .about-company-logo img {
    width: 70%;
  }
  .table-company th,
  .table-company td {
    display: block;
    width: 100%;
  }
  .table-company th {
    padding-bottom: 0.3em;
    border-bottom: none;
    font-size: 1.7rem;
  }
  .table-company td {
    padding-top: 0;
  }
  .office-table tr td:first-of-type {
    padding-bottom: 0;
  }
  .office-table th {
    font-size: inherit;
  }
}
/*service（事業内容ページ）*/
.service-overview {
  overflow: hidden;
}

.service-flow-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1199/718;
}

.service-detail-item .cell--1-2 {
  width: 46%;
}

.service-detail-item:not(:last-of-type) {
  margin-bottom: 120px;
}

.service-detail-text p {
  text-align: justify;
}

.service-detail-img {
  border-radius: 10px;
  overflow: hidden;
}

.reason {
  background-color: var(--bg-1);
}

.reason-lead {
  color: var(--blue);
  font-weight: var(--bold);
  line-height: 1.7;
  margin: 0 auto 4em;
  max-width: 800px;
  font-size: 2.1em;
}

.reason-list {
  counter-reset: reason-num;
}

.reason-item {
  text-align: center;
  background-color: var(--base);
  border-radius: 17px;
  counter-increment: reason-num;
  padding: 3.8rem 2.7rem 2.7rem;
  position: relative;
}

.reason-item::before {
  color: var(--blue-2);
  content: "0" counter(reason-num);
  font-family: var(--font-en);
  font-size: 5.6rem;
  font-weight: var(--bold);
  left: 1.3rem;
  line-height: 1;
  position: absolute;
  top: -3rem;
}

.reason-item-icon {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  display: block;
  height: 190px;
  margin: 0 auto 1em;
  width: 170px;
}

.reason-item-icon--planning {
  background-image: url(../../uploads/site-images/reason-icon-planning.svg);
}

.reason-item-icon--product {
  background-image: url(../../uploads/site-images/reason-icon-product.svg);
}

.reason-item-icon--performance {
  background-image: url(../../uploads/site-images/reason-icon-performance.svg);
}

.reason-item .section-label {
  margin-bottom: 0.5em;
}

.reason-item .section-label-en {
  font-size: 3rem;
}

.reason-item .section-label-ja {
  font-size: 1.8rem;
  font-weight: var(--bold);
}

.reason-item-text {
  font-size: 1em;
  line-height: 2;
  text-align: justify;
}

.ec-site-banner {
  display: block;
  margin: 0 auto;
  max-width: 990px;
}

.ec-site-banner img {
  display: block;
  width: 100%;
}

@media only screen and (min-width: 961px) {
  .service-detail .container-l {
    max-width: 1080px;
  }
}
@media only screen and (max-width: 960px) {
  .service-flow-card img {
    aspect-ratio: 840/1353;
  }
  .service-detail-item:not(:last-of-type) {
    margin-bottom: 80px;
  }
  .reason-lead {
    font-size: 1.3em;
  }
}
@media only screen and (max-width: 560px) {
  .service-detail-item:not(:last-of-type) {
    margin-bottom: 50px;
  }
  .reason-lead {
    font-size: 1.2em;
  }
  .reason-item:not(:last-of-type) {
    margin-bottom: 3em;
  }
  .reason-item-text {
    /*text-align: center;*/
  }
  .service-detail-item .cell--1-2 {
    width: 100%;
  }
}
/*contact（お問い合わせページ）*/
.contact-form-card {
  background-color: var(--base);
  border: 1px solid var(--light-gray);
  border-radius: 24px;
  padding: 5rem;
}

@media only screen and (max-width: 960px) {
  .contact-form-card {
    padding: 3rem;
  }
}
@media only screen and (max-width: 560px) {
  .contact-form-card {
    padding: 2rem 1.5rem;
  }
}
/*recruit（採用情報ページ）*/
.recruit-item:not(:last-of-type) {
  margin-bottom: 120px;
}

.recruit-status {
  color: var(--text-sub);
  font-size: 1em;
  line-height: 1.8;
  margin-top: 1em;
}

.recruit-photo-main {
  border-radius: 10px;
  margin-top: 2.5em;
  overflow: hidden;
}

.recruit-photo-main img {
  display: block;
  width: 100%;
}

.recruit-table {
  margin-top: 2.5em;
  width: 100%;
}

.recruit-table th,
.recruit-table td {
  border-bottom: 1px solid var(--light-gray);
  font-size: 1em;
  line-height: 1.8;
  padding: 1.5em 0;
  text-align: left;
  vertical-align: top;
}

.recruit-table th {
  font-weight: var(--bold);
  width: 180px;
}

.recruit-photo-sub {
  margin-top: 2.5em;
}

.recruit-photo-sub-item {
  border-radius: 10px;
  overflow: hidden;
}

.recruit-photo-sub-item img {
  aspect-ratio: 4/3;
  display: block;
  object-fit: cover;
  width: 100%;
}

.recruit-photo-full {
  margin: 2.5em calc(50% - 50vw) 0;
  width: 100vw;
}

.recruit-photo-full img {
  display: block;
  width: 100%;
}

/* 最後の求人の最後の要素が全幅画像の場合、section-wrapの下余白を打ち消してbreadcrumbと隙間なく接するようにする */
.recruit-list:has(.recruit-item:last-of-type > .recruit-photo-full:last-child) {
  padding-bottom: 0;
}

@media only screen and (max-width: 960px) {
  .recruit-item:not(:last-of-type) {
    margin-bottom: 80px;
  }
  .recruit-table th {
    width: 140px;
  }
}
@media only screen and (max-width: 560px) {
  .recruit-item:not(:last-of-type) {
    margin-bottom: 50px;
  }
  .recruit-table th,
  .recruit-table td {
    display: block;
    width: 100%;
  }
  .recruit-table th {
    border-bottom: none;
    font-size: 1.7rem;
    padding-bottom: 0.3em;
  }
  .recruit-table td {
    padding-top: 0;
  }
}
/*********************
LOADING
*********************/
#loading,
#loading_logo {
  display: none;
}

.home #loading {
  background-color: #fff;
  display: block;
  position: fixed;
  left: 0;
  text-align: center;
  width: 100%;
  height: 100%;
  z-index: 999;
}

.home #loading_logo {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}

#loading_logo img {
  width: 210px;
}

/*********************
COLOR
**********************/
.bg-base {
  background-color: var(--base);
}

.bg-main-color-1 {
  background-color: var(--blue);
}

.bg-accent-color-1 {
  background-color: var(--accent-color-1);
}

.color-base {
  color: var(--base);
}

.color-main-1 {
  color: var(--blue);
}

.color-accent-1 {
  color: var(--accent-color-1);
}

/*********************
MARGIN
*********************/
.margin-1 {
  margin-bottom: 180px;
}

.margin-2 {
  margin-bottom: 160px;
}

.margin-3 {
  margin-bottom: 100px;
}

.margin-4 {
  margin-bottom: 60px;
}

.margin-5 {
  margin-bottom: 40px;
}

@media only screen and (max-width: 560px) {
  .margin-1 {
    margin-bottom: 150px;
  }
  .margin-2 {
    margin-bottom: 90px;
  }
  .margin-3 {
    margin-bottom: 80px;
  }
  .margin-4 {
    margin-bottom: 50px;
  }
  .margin-5 {
    margin-bottom: 30px;
  }
}
/*********************
ANIMATION
*********************/
.fadein {
  opacity: 0;
  transform: translateY(30px);
  transition-property: transform, opacity;
  transition-duration: 0.6s !important;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}

.fadein.is-active {
  opacity: 1;
  transform: translateY(0);
}

.delay--2 {
  transition-delay: 0.3s;
}

.delay--3 {
  transition-delay: 0.6s;
}

.delay--4 {
  transition-delay: 0.9s;
}

/*********************
RESPONSIVE
*********************/
@media only screen and (min-width: 961px) {
  .tb_only {
    display: none !important;
  }
  .sp_only {
    display: none !important;
  }
  .sp_tb {
    display: none !important;
  }
}
@media only screen and (min-width: 561px) and (max-width: 960px) {
  .pc_only {
    display: none !important;
  }
  .sp_only {
    display: none !important;
  }
  .sp_pc {
    display: none !important;
  }
}
@media only screen and (max-width: 560px) {
  .pc_only {
    display: none !important;
  }
  .tb_only {
    display: none !important;
  }
  .tb_pc {
    display: none !important;
  }
}
@media only screen and (max-width: 320px) {
  html {
    font-size: 0.58em;
  }
}
