@charset "UTF-8";
/*--------------------------------------
  reset
--------------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i, a,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-weight: normal;
  font-style: normal;
  text-align: left;
  vertical-align: baseline;
  background: transparent;
  outline: none;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  width: 100%;
  height: 100%;
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  color: #333;
  position: relative;
  -webkit-text-size-adjust: 100%;
  font-size: 1.6em;
  line-height: 1.75;
}

main {
  width: 100%;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.5;
}

ul, li {
  list-style: none;
  list-style-type: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
  content: "";
  content: none;
}

span {
  font-weight: inherit;
}

img {
  line-height: 0;
  border: none;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a,
a:visited,
a img,
a::before,
a::after,
button,
button::before,
button::after {
  transition: all 0.2s ease;
  text-decoration: none;
  color: inherit;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
}

input, select, textarea, button, fieldset, label {
  vertical-align: middle;
  outline: none;
  font-family: inherit;
}

em {
  font-style: italic;
  font-weight: inherit;
}

sup {
  vertical-align: super;
  font-size: smaller;
  font-weight: inherit;
}

sub {
  vertical-align: sub;
  font-size: smaller;
  font-weight: inherit;
}

strong, b {
  font-weight: bold;
}

em, i {
  font-style: italic;
}

/* ============================
* common
* ============================ */
@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
body {
  color: #1F1F1F;
  font-size: 1.8em;
  line-height: 2;
}

h2 {
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: bold;
  position: relative;
  z-index: 1;
}

.sub-title {
  position: absolute;
  top: -90px;
  left: -80px;
  z-index: -1;
  font-size: 100px;
  color: #CEEAF6;
  /* Manrope */
  /* ヒラギノ明朝 */
  font-family: "Hiragino Mincho Pro", serif;
}

.wrapper {
  max-width: 1360px;
  margin: auto;
  padding: 0 80px;
}
@media screen and (min-width: 769px) and (max-width: 1360px) {
  .wrapper {
    padding: 0 40px;
  }
}

.common-section {
  padding-top: 80px;
}
.common-section :first-child {
  margin-top: 0;
}
.common-section h2 {
  margin-bottom: 0;
}
.common-section p {
  margin-top: 36px;
}

.button-wrapper {
  margin-top: 40px;
}

.common-button {
  display: inline-block;
  width: 240px;
  padding: 13px 0;
  background-color: #FFFFFF;
  border: 1px solid #18A2E1;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  position: relative;
}
.common-button::after {
  content: url("../img/common/icon-arrow.svg");
  position: absolute;
  top: 0;
  bottom: 0;
  right: 16px;
  display: inline-block;
  width: 24px;
  height: 8px;
  margin: auto;
  line-height: 0;
}
.common-button:hover {
  color: #0893D2;
  border-radius: 8px;
}
.common-button:hover::after {
  right: 8px;
}
.common-button_reverse::after {
  right: auto;
  left: 16px;
  transform: scale(-1, 1);
}
.common-button_reverse:hover::after {
  right: auto;
  left: 8px;
}

.ilB {
  display: inline-block;
}

.alL {
  text-align: left;
}

.alC {
  text-align: center;
}

.alR {
  text-align: right;
}

.fsL {
  font-size: larger;
}

.fsS {
  font-size: smaller;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 15px;
  }
  h2 {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .sub-title {
    top: -70px;
    left: -16px;
    font-size: 70px;
  }
  .wrapper {
    padding: 0 16px;
  }
  .common-section {
    padding-top: 40px;
  }
  .common-section p {
    margin-top: 18px;
  }
  .alC_sp {
    text-align: center;
  }
}
/* ============================
* header
* ============================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 120px;
  padding: 0 80px;
}
@media screen and (min-width: 769px) and (max-width: 1360px) {
  .header-wrapper {
    padding: 0 40px;
  }
}
.header-logo {
  position: relative;
  z-index: 10;
}
a.header-logo:hover {
  opacity: 0.6;
}

.header-logo figure {
  width: 94px;
}
@media screen and (max-width: 1024px) {
  .header-logo figure {
    width: 80px;
  }
}
.header-menu ul {
  display: flex;
  color: #FFFFFF;
}
.header-menu ul li {
  margin-left: 24px;
}
@media screen and (max-width: 1024px) {
  .header-menu ul li {
    margin-left: 15px;
  }
}
@media screen and (max-width: 820px) {
  .header-menu ul li {
    margin-left: 10px;
  }
}
.header-menu ul li a {
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .header-menu ul li a {
    font-size: 15px;
  }
}
@media screen and (max-width: 820px) {
  .header-menu ul li a {
    font-size: 14px;
  }
}
.header-menu ul li:not(.header-contact) {
  display: flex;
  align-items: center;
}
.header-menu ul li:not(.header-contact) a:hover {
  opacity: 0.6;
}
.header-menu_button {
  display: none;
}
.header-contact a {
  width: auto;
  padding: 10px 16px;
}
.header-contact a::after {
  position: relative;
  top: 2px;
  right: 0;
  width: 21px;
  height: auto;
  margin-left: 8px;
}
.header-contact a:hover::after {
  right: 0;
}

@media screen and (max-width: 768px) {
  .header-wrapper {
    height: 60px;
    padding: 0 16px;
  }
  .header-logo figure {
    width: 71px;
  }
  .header-menu {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    background-color: #fff;
  }
  .header-menu ul {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-color: rgba(24, 162, 225, 0.6);
  }
  .header-menu ul li {
    margin-left: 0;
  }
  .header-menu ul li:nth-child(n+2) {
    margin-top: 40px;
  }
  .header-menu ul li a {
    font-size: 15px;
  }
  .header-menu_button {
    position: relative;
    z-index: 10;
    display: block;
    width: 24px;
    height: 24px;
    background-image: linear-gradient(#FFFFFF, #FFFFFF);
    background-size: 16px 1px;
    background-position: left center;
    background-repeat: no-repeat;
  }
  .header-menu_button::before, .header-menu_button::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #FFFFFF;
  }
  .header-menu_button::before {
    top: 5px;
  }
  .header-menu_button::after {
    bottom: 4px;
  }
  .header-menu_button.open {
    background-size: 0px 1px;
  }
  .header-menu_button.open::before {
    top: 12px;
    transform: rotate(45deg);
  }
  .header-menu_button.open::after {
    bottom: 11px;
    transform: rotate(-45deg);
  }
}
/* ============================
* contact section
* ============================ */
main > :last-child {
  padding-bottom: 64px;
}

.contact-section {
  position: relative;
  z-index: 1;
  padding: 156px 0 96px;
  background-image: linear-gradient(#FFFFFF, #FFFFFF);
  background-size: 100% 50%;
  background-repeat: no-repeat;
  color: #1F1F1F;
  font-size: 18px;
  overflow: hidden;
}
.contact-section_gray {
  background-image: linear-gradient(#F6F6F6, #F6F6F6);
}
.contact-section::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 0;
  z-index: -1;
  width: calc(50% + 600px);
  height: calc(100% - 32px);
  background-color: #FFFFFF;
  box-shadow: 0 0 16px 0 rgba(127, 141, 148, 0.5);
}
@media screen and (max-width: 1360px) {
  .contact-section::before {
    width: calc(100% - 80px);
  }
}
.contact-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1008px;
  margin-right: 40px;
}
.contact-wrapper p {
  width: calc(100% - 280px);
  max-width: 600px;
}
.contact-button {
  background-color: #18A2E1;
  color: #FFFFFF !important;
}
.contact-button::after {
  content: url("../img/common/icon-contact.svg");
  height: 16px;
}
.contact-button:hover {
  background-color: #0893D2;
  border-color: #0893D2;
}
.contact-button:hover::after {
  right: 16px;
}

@media screen and (max-width: 768px) {
  main > :last-child {
    padding-bottom: 24px;
  }
  .contact-section {
    padding: 117px 0 72px;
    font-size: 15px;
  }
  .contact-section::before {
    width: calc(100% - 32px);
  }
  .contact-wrapper {
    display: block;
    margin-right: 32px;
    text-align: center;
  }
  .contact-wrapper p {
    width: auto;
    max-width: none;
  }
  .contact-wrapper .contact-button {
    margin-top: 36px;
  }
}
/* ============================
* footer
* ============================ */
footer {
  padding: 0 0 80px;
  background-color: #CEEAF6;
  font-size: 16px;
  position: relative;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  padding-top: 64px;
}
.footer-logo figure {
  width: 113px;
}
.footer-logo figure img:hover {
  opacity: 0.6;
}
.footer-address {
  margin-top: 24px;
}
.footer-menu {
  display: flex;
}
.footer-menu ul {
  margin-left: 80px;
}
.footer-menu ul li:nth-child(n+2) {
  margin-top: 16px;
}
.footer-menu ul a:hover {
  opacity: 0.6;
}
.footer-bottom {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin-top: 80px;
  font-size: 12px;
}
.footer-bottom a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 768px) {
  footer {
    padding: 0 0 40px;
    font-size: 14px;
  }
  .footer-wrapper {
    display: block;
    padding-top: 24px;
  }
  .footer-logo figure {
    width: 47px;
  }
  .footer-menu {
    margin-top: 37px;
  }
  .footer-menu ul {
    margin-left: 0;
  }
  .footer-menu ul:first-child {
    margin-right: 88px;
  }
  .footer-menu ul li:nth-child(n+2) {
    margin-top: 12px;
  }
  .footer-bottom {
    display: block;
    margin-top: 37px;
  }
  .footer-copy {
    margin-top: 42px;
    text-align: center;
  }
}
/* ============================
* top
* ============================ */
/* hero */
.top-hero {
  display: flex;
  align-items: center;
  height: 100vh;
  min-height: 568px;
  position: relative;
}
.top-hero_wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.top-hero_bg {
  height: 100vh;
  min-height: 568px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
}
.top-hero_bg01 {
  background-image: url("../img/top/top-mv01.jpg");
}
.top-hero_bg02 {
  background-image: url("../img/top/top-mv02.jpg");
}
.top-hero_bg03 {
  background-image: url("../img/top/top-mv03.jpg");
}
.top-hero_bg img {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: none;
  height: 100%;
  transform: translate(-50%, -50%);
}
.top-hero_inner {
  width: 100%;
  max-width: 1640px;
  color: #FFFFFF;
  position: relative;
}
.top-hero_inner h1 {
  font-size: 40px;
  text-shadow: rgba(0, 0, 0, 0.5) 0 0 8px;
}
.top-hero_inner p {
  margin-top: 50px;
  font-size: 24px;
  text-shadow: rgba(0, 0, 0, 0.5) 0 0 8px;
}
.top-hero_inner * {
  font-weight: bold;
  line-height: 1.5;
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slick-dots {
  right: 20px;
  bottom: 16px;
  z-index: 10;
  width: auto;
  line-height: 0;
}
.slick-dots li {
  width: auto;
  height: auto;
  margin: 0 4px;
}
.slick-dots li button {
  width: auto;
  height: auto;
  padding: 0;
}
.slick-dots li button::before {
  content: "";
  position: static;
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid #FFFFFF;
  border-radius: 50%;
  opacity: 1;
  line-height: inherit;
}
.slick-dots li.slick-active button::before {
  background-color: #FFFFFF;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .top-hero_inner {
    margin-bottom: 146px;
  }
  .top-hero_inner h1 {
    font-size: 20px;
  }
  .top-hero_inner p {
    margin-top: 16px;
    font-size: 14px;
  }
  .slick-dots {
    right: 12px;
    bottom: 56px;
  }
}
/* section */
.top section:nth-child(2n+3) {
  background-color: #F6F6F6;
}
.top-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: -80px;
  position: relative;
  top: -80px;
  z-index: 1;
}
.top-wrapper_reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1200px) {
  .top-wrapper {
    display: block;
  }
  .top-wrapper > div {
    width: auto;
    margin-top: 16px;
  }
}
.top-wrapper > * {
  width: calc(50% - 20px);
}

@media screen and (max-width: 768px) {
  .top-wrapper {
    margin-bottom: -40px;
    top: -40px;
  }
  .top-wrapper figure {
    width: auto;
    max-width: 480px;
  }
  .top-wrapper > div {
    margin-top: 11px;
  }
}
/* service */
.top-service {
  padding-bottom: 80px;
}
.top-service_wrapper {
  margin-top: 158px;
  padding-bottom: 40px;
  position: relative;
}
.top-service_wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: calc(50% + 600px);
  height: 100%;
  background-color: #CEEAF6;
  opacity: 0.24;
}
@media screen and (max-width: 1360px) {
  .top-service_wrapper::before {
    left: 80px;
    right: auto;
    width: calc(100% - 80px);
  }
}
.top-service_inner {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -80px;
  position: relative;
  top: -80px;
}
.top-service_inner.col2 li {
  width: calc(50% - 30px);
  margin-left: 60px;
}
.top-service_inner.col2 li:nth-child(2n+1) {
  margin-left: 0;
}
.top-service_inner.col2 li:nth-child(n+3) {
  margin-top: 40px;
}
.top-service_inner.col3 li {
  width: calc(33.33% - 40px);
  margin-left: 60px;
}
.top-service_inner.col3 li:nth-child(3n+1) {
  margin-left: 0;
}
.top-service_inner.col3 li:nth-child(n+4) {
  margin-top: 40px;
}
.top-service_inner h3 {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  font-size: 24px;
  font-weight: bold;
}
.top-service_inner h3 .sub-title {
  top: -70px;
  left: -24px;
  font-size: 80px;
}
.top-service_inner p {
  margin-top: 16px;
}

@media screen and (max-width: 768px) {
  .top-service {
    padding-bottom: 120px;
  }
  .top-service_wrapper {
    margin-top: 33px;
    padding-bottom: 0;
  }
  .top-service_wrapper::before {
    display: none;
  }
  .top-service_inner {
    position: static;
    display: block;
    margin-bottom: auto;
  }
  .top-service_inner li {
    width: auto !important;
    margin-left: 0 !important;
  }
  .top-service_inner li:nth-child(n+2) {
    margin-top: 24px !important;
  }
  .top-service_inner h3 {
    font-size: 20px;
  }
  .top-service_inner h3 .sub-title {
    top: -42px;
    left: -16px;
    font-size: 50px;
  }
  .top-service_inner p {
    margin-top: 14px;
  }
}
@media screen and (min-width: 560px) and (max-width: 768px) {
  .top-service_inner {
    display: flex;
    margin-bottom: auto;
  }
  .top-service_inner li {
    width: calc(50% - 12px) !important;
    margin-left: 24px !important;
  }
  .top-service_inner li:nth-child(2n-1) {
    margin-left: 0 !important;
  }
  .top-service_inner li:nth-child(2) {
    margin-top: 0 !important;
  }
}

/* about */
.top-about {
  padding: 180px 0 0;
}

@media screen and (max-width: 768px) {
  .top-about {
    padding-bottom: 64px;
  }
}
/* recruit */
.top-recruit {
  margin: 200px 0 0;
  padding: 0 0 120px;
}

@media screen and (max-width: 768px) {
  .top-recruit {
    padding: 104px 0 115px;
  }
}
/* news */
@media screen and (min-width: 769px) {
  .top-news {
    margin: 120px 0 0;
  }
  .top-news h2 {
    text-align: center;
  }
  .top-news h2 .sub-title {
    left: 50%;
    transform: translate(-50%);
  }
}
@media screen and (max-width: 768px) {
  .top-news {
    padding-top: 26px;
  }
}
/* ============================
* lower
* ============================ */
.lower-hero {
  position: relative;
}
.lower-hero_bg {
  position: relative;
  height: 420px;
  overflow: hidden;
}
.lower-hero_bg img {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: none;
  height: 100%;
  transform: translate(-50%, -50%);
}
.lower-hero_wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding-top: 221px;
}
.lower-hero_wrapper h1 {
  position: relative;
  line-height: 1.25;
  color: #FFFFFF;
  font-size: 48px;
  font-weight: bold;
  text-shadow: rgba(0, 0, 0, 0.5) 0 0 8px;
}
.lower-hero_wrapper h1 .sub-title {
  top: -95px;
  left: -66px;
  text-shadow: rgba(0, 0, 0, 0.2) 0 0 4px;
  opacity: 0.6;
}
.lower-hero_wrapper .breadcrumb {
  position: absolute;
  width: calc(100% - 160px);
  right: 80px;
  bottom: 14px;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  color: #FFFFFF;
}
.lower-hero_wrapper .breadcrumb li {
  font-size: 0.8em;
}
.lower-hero_wrapper .breadcrumb li:nth-child(n+2) {
  position: relative;
  padding-left: 24px;
}
.lower-hero_wrapper .breadcrumb li:nth-child(n+2)::before {
  content: "-";
  position: absolute;
  top: 0;
  left: 8px;
}
.lower-hero_wrapper .breadcrumb li:last-child {
  display: flex;
  min-width: 0;
}
.lower-hero_wrapper .breadcrumb li a {
  text-decoration: underline;
}
.lower-hero_wrapper .breadcrumb li a:hover {
  text-decoration: none;
}
.lower-hero_wrapper .breadcrumb li span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lower-section {
  padding-top: 80px;
}
.lower-section :first-child {
  margin-top: 0;
}
.lower-section h3, .lower-section h4, .lower-section p, .lower-section ul, .lower-section ol, .lower-section table, .lower-section div {
  margin-top: 36px;
}
.lower-section h2 {
  position: relative;
  margin: 80px auto 40px;
  padding: 24px 40px;
  background-color: #F6F6F6;
  border-top: 1px solid #E6E6E6;
  border-bottom: 1px solid #E6E6E6;
  font-size: 26px;
  font-weight: bold;
}
.lower-section h2::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 0;
  width: 4px;
  height: 36px;
  background-color: #18A2E1;
}
.lower-section h3 {
  position: relative;
  padding-left: 40px;
  font-size: 24px;
  font-weight: bold;
}
.lower-section h3::before, .lower-section h3::after {
  content: "";
  position: absolute;
  top: 18px;
  width: 12px;
  height: 2px;
}
.lower-section h3::before {
  left: 0;
  background-color: #18A2E1;
}
.lower-section h3::after {
  left: 12px;
  background-color: #0893D2;
}
.lower-section h4 {
  color: #18A2E1;
  font-size: 20px;
  font-weight: bold;
}
.lower-section a {
  color: #18A2E1;
  text-decoration: underline;
}
.lower-section a:hover {
  text-decoration: none;
}
.lower-section ul li {
  position: relative;
  padding-left: 20px;
}
.lower-section ul li::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #18A2E1;
  border-radius: 50%;
}
.lower-section ul.c-card li::before {
	top: 9px;
}
.lower-section ul:not(.toc_list, .c-list02) li:nth-child(n+2) {
  margin-top: .5em;
}
@media screen and (max-width: 768px) {
  .lower-section ul:not(.toc_list, .c-list02) li:nth-child(n+2) {
    margin-top: .35em;
  }
}
.lower-section ol {
  counter-reset: item;
}
.lower-section ol li {
  position: relative;
  padding-left: 24px;
}
.lower-section ol li:nth-child(n+2) {
  margin-top: 18px;
}
.lower-section ol li::before {
  counter-increment: item;
  content: counter(item) ".";
  position: absolute;
  top: 0;
  left: 0;
  color: #18A2E1;
}
.lower-section ol.noNum li {
  padding-left: 1.25em;
  text-indent: -1.25em;
}
.lower-section ol.noNum li::before {
  display: none;
}
.lower-section table tr {
  border-top: 1px solid #E6E6E6;
}
.lower-section table tr:last-child {
  border-bottom: 1px solid #E6E6E6;
}
.lower-section table th,
.lower-section table td {
  padding: 16px;
}
.lower-section table th {
  background-color: #F6F6F6;
  font-weight: bold;
}
.lower-section table td {
  border-left: 1px solid #F6F6F6;
}
.lower-section .wp-caption {
  max-width: 100%;
}
.lower-section .wp-caption-text {
  margin-top: 18px;
  font-size: 16px;
  text-align: center;
}

.lower-section table.priceTable {
  table-layout: fixed;
}
.lower-section table.priceTable tbody tr td:nth-child(1) {
  font-weight: bold;
}


/* contact form */
.contact-table input[type=text], .contact-table textarea {
  width: 100%;
  padding: 6px 8px;
  border: 1px solid #E6E6E6;
  font-size: 18px;
}
.contact-table input[type=number] {
  max-width: 100px;
  padding-right: 0;
}
.contact-table th {
  width: 256px;
}
.contact-table th.require {
  position: relative;
}
.contact-table th.require::after {
  content: "【必須】";
  position: absolute;
  top: 20px;
  right: 8px;
  color: #EC1760;
  font-size: 14px;
  font-weight: bold;
}
.contact-table td {
  border-left: none !important;
}
.contact-table .error {
  color: #EC1760 !important;
  font-size: 14px !important;
  font-weight: bold;
}

::-moz-placeholder {
  color: #808080;
}

::placeholder {
  color: #808080;
}

:-ms-input-placeholder {
  color: #808080;
}

::-webkit-input-placeholder {
  color: #808080;
}

::-ms-input-placeholder {
  color: #808080;
}

.contact-agree {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lower-section .contact-agree {
  margin-top: 18px;
}
.contact-agree a {
  color: inherit;
}
.contact-agree input[type=checkbox] {
  display: none;
}
.contact-agree input[type=checkbox]:checked + label::after {
  content: "";
}
.contact-agree label {
  display: inline-block;
  position: relative;
  padding-left: 21px;
}
.contact-agree label::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 17px;
  height: 17px;
  background-color: #FFFFFF;
  border: 1px solid #707070;
  border-radius: 3px;
}
.contact-agree label::after {
  position: absolute;
  top: 10px;
  left: 5px;
  width: 8px;
  height: 12px;
  border-bottom: 1px solid #707070;
  border-right: 1px solid #707070;
  transform: rotate(45deg);
}

.contact-submit {
  display: flex;
  justify-content: center;
  align-items: center;
}
.lower-section .contact-submit {
  margin-top: 56px;
}
.contact-submit .common-button:nth-child(n+2) {
  margin-left: 18px;
}
.contact-submit .contact-button:disabled {
  background-color: #ccc;
  border-color: #ccc;
  pointer-events: none;
}
.contact-submit .contact-button::after {
  display: none;
}
.contact-submit input {
  cursor: pointer;
}
.contact-submit .wpcf7-spinner {
  display: none;
}

@media screen and (max-width: 768px) {
  .lower-hero_bg {
    height: 200px;
  }
  .lower-hero_wrapper {
    padding-top: 82px;
  }
  .lower-hero_wrapper h1 {
    font-size: 36px;
  }
  .lower-hero_wrapper h1 .sub-title {
    top: -6vw;
    left: -16px;
    font-size: 12vw;
    line-height: 1;
  }
  .lower-hero_wrapper .breadcrumb {
    right: 16px;
    bottom: 6px;
    width: calc(100% - 32px);
  }
  .lower-section {
    padding-top: 40px;
  }
  .lower-section h3, .lower-section h4, .lower-section p, .lower-section ul, .lower-section ol, .lower-section table, .lower-section div {
    margin-top: 18px;
  }
  .lower-section h2 {
    margin: 40px auto 20px;
    padding: 12px 20px;
    font-size: 22px;
  }
  .lower-section h2::before {
    top: 14px;
    height: 30px;
  }
  .lower-section h3 {
    padding-left: 32px;
    font-size: 20px;
  }
  .lower-section h3::before, .lower-section h3::after {
    top: 14px;
    width: 9px;
  }
  .lower-section h3::after {
    left: 9px;
  }
  .lower-section h4 {
    font-size: 18px;
  }
  .lower-section ul li {
    padding-left: 16px;
  }
  .lower-section ul li::before {
    top: 12px;
    width: 6px;
    height: 6px;
  }
  .lower-section ol li {
    padding-left: 20px;
  }
  .lower-section ol li:nth-child(n+2) {
    margin-top: 8px;
  }
  .lower-section table {
    word-break: break-all;
  }
  .lower-section table th {
    padding: 8px;
  }
  .lower-section table td {
    padding: 8px;
  }
  .lower-section .wp-caption-text {
    margin-top: 8px;
    font-size: 12px;
  }
  /* contact form */
  .contact-table input, .contact-table textarea {
    font-size: 15px;
  }
  .contact-table input[type=number] {
    max-width: 80px;
  }
  .contact-table th, .contact-table td {
    display: block;
  }
  .contact-table th {
    width: auto;
  }
  .contact-table th.require::after {
    top: 9px;
  }
  .contact-agree label {
    padding-left: 18px;
  }
  .contact-agree label::before {
    top: 7px;
    width: 15px;
    height: 15px;
  }
  .contact-agree label::after {
    top: 7px;
    left: 4px;
    width: 7px;
    height: 10px;
  }
  .lower-section .contact-submit {
    margin-top: 32px;
  }
}
/* ============================
* service
* ============================ */
.service-wrapper {
  max-width: 1482px;
  margin: 80px auto 0;
  padding: 97px 0 40px;
  background-image: linear-gradient(rgba(213, 227, 227, 0.24), rgba(213, 227, 227, 0.24));
  background-size: 40.5% 100%;
  background-position: left;
  background-repeat: no-repeat;
}
.service-wrapper:nth-child(even) {
  background-position: right;
}
.service-wrapper h2 {
  margin-bottom: 23px;
  font-size: 28px;
}
.service-wrapper h2 .sub-title {
  top: -79px;
  left: -30px;
}
.service-wrapper p {
  margin-top: 36px;
}

.c-list-style > li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #18a2e1;
  content: '';
}

.lower-section .c-list-style > li {
  font-size: .9em;
}
.lower-section .c-list-style > li + li,
.lower-section .c-list-style:not(.toc_list) li:nth-child(n+2) {
  margin-top: 8px;
}

.c-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 32px;
}

.lower-section .c-card > li {
  width: calc((100% - 64px) / 3);
  padding: 35px 35px 40px;
  background-image: linear-gradient(315deg, #dff2ff, #f7fcff);
}
.lower-section .c-card > li {
  margin: 0!important;
}
.lower-section .c-card > li::before {
  display: none;
}

.c-card .card-title {
  margin-bottom: 35px;
  padding: 0;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.7;
  text-align: center;
}
.c-card .card-title::before,
.c-card .card-title::after {
  display: none;
}

.c-card .card-img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 120px;
  height: 120px;
  margin: 0 auto 35px;
  border-radius: 50%;
  background-color: #fff;
}

.c-list-style > li {
  position: relative;
  padding-left: 16px;
  line-height: 1.7;
  text-align: justify;
}

.c-list02 > li {
  position: relative;
  border: 3px solid #18a2e1;
}

.c-list02 > li:not(:last-child)::after {
  position: absolute;
  bottom: -27px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -13.5px;
  border-width: 27px 27px 0 27px;
  border-style: solid;
  border-color: transparent;
  border-top-color: #18a2e1;
  content: '';
}

.lower-section ul.c-list02 > li {
  display: flex;
  padding-left: 0;
  align-items: center;
}
.lower-section ul.c-list02 > li + li {
  margin-top: 50px;
}
.lower-section ul.c-list02 > li::before {
  display: none;
}

.c-list02 .list-ph {
  width: 33.333%;
}
.c-list02 .list-ph img {
  width: 100%;
}

.c-list02 .list-step {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100px;
  height: 40px;
  background-color: rgba(24, 162, 225, 0.64);
  color: #fff;
  font-weight: bold;
}

.c-list02 .list-body {
  flex: 1;
  padding: 16px 40px;
  margin-top: 0;
}

.c-list02 .list-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 25px;
  font-size: 18px;
  font-weight: bold;
}

.c-list02 .list-text {
  margin-top: 1em;
  line-height: 1.7;
  text-align: justify;
}

@media screen and (max-width: 768px) {
  .service-wrapper {
    margin-top: 40px;
    padding: 60px 0 20px;
    background-size: 60% 100%;
  }
  .service-wrapper h2 {
    margin-bottom: 12px;
    font-size: 24px;
  }
  .service-wrapper h2 .sub-title {
    top: -50px;
    left: -16px;
  }
  .service-wrapper p {
    margin-top: 24px;
  }

  .c-card {
    flex-direction: column;
    gap: 16px;
  }

  .lower-section .c-card > li {
    width: 100%;
    padding: 30px 20px;
  }
  .c-card .card-title {
    margin-bottom: 16px;
  }
  .c-card .card-img {
    width: 90px;
    height: 90px;
    margin-bottom: 18px;
  }
  .c-card .card-img > img {
    max-width: 62px;
    max-height: 45px;
  }

  .lower-section ul.c-list02 > li {
    flex-direction: column;
  }
  .lower-section ul.c-list02 > li + li {
    margin-top: 25px;
  }
  .c-list02 .list-ph {
    width: 100%;
  }
  .c-list02 .list-body {
    padding: 16px 12px;
  }
  .c-list02 > li:not(:last-child)::after {
    bottom: -15px;
    margin-left: -15px;
    border-width: 15px 15px 0 15px;
  }
  .c-list02 .list-title {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.7;
  }
  .c-list02 .list-step {
    width: 72px;
    flex-shrink: 0;
    height: 28px;
    font-size: 14px;
  }
  .c-list02 .list-text {
    font-size: 14px;
  }
}

.memo {
  font-size: .8em;
}
sup {
  font-size: .65em;
  vertical-align: super;
}