@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-decoration: none;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

.dsp-pc {
  display: block;
}
@media (max-width: 768px) {
  .dsp-pc {
    display: none;
  }
}

.dsp-sp {
  display: none;
}
@media (max-width: 768px) {
  .dsp-sp {
    display: block;
  }
}

img {
  width: 100%;
  vertical-align: middle;
}

a {
  transition: all 0.15s ease-in-out;
}
a:hover {
  opacity: 0.7;
  cursor: pointer;
}

.wrapper {
  margin: 0 auto;
  max-width: 1140px;
  width: 92%;
}

.section {
  padding: 70px 0;
}
@media (max-width: 768px) {
  .section {
    padding: 30px 0;
  }
}

.section-page {
  padding: 70px 0;
}
@media (max-width: 768px) {
  .section-page {
    padding: 30px 0;
  }
}

.min-wrapper {
  margin: 0 auto;
  width: 940px;
  max-width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

body {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

body.fadein {
  opacity: 1;
}

table.simpleGrayTable {
  width: 100%;
}
table.simpleGrayTable tr {
  width: 100%;
  border-top: 1px solid #cccccc;
  text-align: left;
}
table.simpleGrayTable tr:last-child {
  border-bottom: 1px solid #cccccc;
}
table.simpleGrayTable tr th {
  white-space: nowrap;
  padding: 1.2em;
}
table.simpleGrayTable tr td {
  padding: 1.2em;
}
@media (max-width: 768px) {
  table.simpleGrayTable tr th,
table.simpleGrayTable tr td {
    width: 100%;
    display: block;
  }
  table.simpleGrayTable tr th {
    padding: 1em 0 0.5em;
    font-weight: bold;
  }
  table.simpleGrayTable tr td {
    padding: 0 0 1em 0;
  }
}

table.boxStyleTable {
  width: 100%;
  border-collapse: collapse;
  line-height: 1.7em;
}
table.boxStyleTable tr {
  width: 100%;
  background: #ffffff;
}
table.boxStyleTable tr th {
  background-color: #EEF8FF;
  border: 1px solid #cccccc;
  padding: 20px;
  font-weight: bold;
}
table.boxStyleTable tr td {
  border: 1px solid #cccccc;
  padding: 20px;
}
table.boxStyleTable tr td .emp {
  font-weight: bold;
  display: block;
  margin-top: 10px;
}
table.boxStyleTable tr td .emp:first-of-type {
  margin-top: 0;
}
@media (max-width: 768px) {
  table.boxStyleTable tr:last-child {
    border-bottom: 1px solid #cccccc;
  }
  table.boxStyleTable tr th,
table.boxStyleTable tr td {
    display: block;
    border-bottom: none;
    text-align: left;
  }
  table.boxStyleTable tr th {
    padding: 0.5em 4%;
  }
  table.boxStyleTable tr td {
    padding: 1em 4%;
  }
}

ul.dotsList li {
  padding: 0 0 0.1em 20px;
}
ul.dotsList li:before {
  content: "・";
  display: inline-block;
  text-indent: -20px;
}

ol.numList {
  counter-reset: item;
}
ol.numList li {
  padding: 0 0 0.1em 20px;
  list-style-type: none;
}
ol.numList li:before {
  counter-increment: item;
  content: counter(item) ".";
  display: inline-block;
  text-indent: -20px;
}

ol.numBraList {
  counter-reset: item;
}
ol.numBraList li {
  padding: 0 0 0.1em 30px;
  list-style-type: none;
}
ol.numBraList li:before {
  counter-increment: item;
  content: "(" counter(item) ") ";
  display: inline-block;
  text-indent: -30px;
}

a {
  color: #111111;
}

.blue {
  color: #013179;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #111111;
  letter-spacing: 0.04em;
  line-height: 1.5em;
}

.inter {
  font-family: "Inter", sans-serif;
}

.noto-serif {
  font-family: "Noto Serif JP", serif;
}

h1,
h2,
h3,
h4,
h5 {
  line-height: 1.5em;
  font-weight: bold;
}

p {
  line-height: 1.5em;
}

h1 {
  font-size: 28px;
}
@media (max-width: 768px) {
  h1 {
    font-size: 24px;
  }
}

h2 {
  font-size: 36px;
  color: #013179;
  letter-spacing: 0;
  text-align: center;
}
@media (max-width: 768px) {
  h2 {
    font-size: 28px;
  }
}

h3 {
  font-size: 24px;
  color: #013179;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 16px;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content p,
.article-content ol,
.article-content ul {
  margin-bottom: 1em;
}
.article-content strong {
  font-weight: bold;
}
.article-content ol {
  counter-reset: outer-counter;
}
.article-content ol li {
  list-style: none;
  counter-increment: outer-counter;
  padding-left: 1.5em;
  text-indent: -1.5em;
  margin-bottom: 0.5em;
  position: relative;
}
.article-content ol li:before {
  content: counter(outer-counter) ".";
  margin-right: 0.5em;
}
.article-content ol li ol {
  counter-reset: inner-counter;
}
.article-content ol li ol li {
  counter-increment: inner-counter;
}
.article-content ol li ol li:before {
  content: counter(inner-counter) ")";
}
.article-content ol li ol li ol {
  counter-reset: inner-inner-counter;
}
.article-content ol li ol li ol li {
  counter-increment: inner-inner-counter;
}
.article-content ol li ol li ol li:before {
  content: "(" counter(inner-inner-counter) ")";
}

/* Wordpressのバー */
#wpadminbar {
  position: fixed !important;
  top: auto !important;
  left: 0 !important;
  bottom: 0 !important;
  background-color: rgba(0, 0, 0, 0.75) !important;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  padding: 0;
  box-sizing: border-box;
  position: relative;
  z-index: 100;
  background: #fff;
  position: fixed;
  top: 0;
  width: 100%;
}
.header .logo {
  margin-left: 30px;
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}
.header .logo a {
  display: block;
  height: 55px;
}
.header .logo a.instagram {
  width: 20px;
  height: 20px;
  margin-left: 18px;
}
.header .logo a.instagram img {
  display: block;
}
.header .logo img {
  height: 100%;
  width: auto;
}
.header .headernavwrap {
  display: flex;
  align-items: center;
}
.header .headernavwrap.open {
  display: flex;
}
.header .headernavwrap .navarea {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-right: 20px;
  gap: 5px;
}
.header .headernavwrap .navarea .subnav ul {
  display: flex;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
}
.header .headernavwrap .navarea .subnav ul li {
  letter-spacing: 0;
  font-size: 14px;
  font-weight: 400;
}
.header .headernavwrap .navarea .subnav ul li.tel a {
  font-size: 16px;
  font-weight: bold;
  color: #013179;
  pointer-events: none;
}
.header .headernavwrap .navarea .globalmenu .parentlist {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header .headernavwrap .navarea .globalmenu .parentlist li {
  position: relative;
}
.header .headernavwrap .navarea .globalmenu .parentlist li a {
  display: block;
  font-size: 16px;
  font-weight: bold;
}
.header .headernavwrap .navarea .globalmenu .parentlist li a:hover {
  color: #013179;
}
.header .headernavwrap .navarea .globalmenu .parentlist .sns {
  display: flex;
  align-items: center;
}
.header .headernavwrap .navarea .globalmenu .parentlist .sns a {
  display: block;
  width: 30px;
  height: 30px;
  padding: 0;
}
.header .headernavwrap .navarea .globalmenu .parentlist .sns a::after {
  display: none;
}
.header .headernavwrap .navarea .globalmenu .parentlist.sub {
  display: none;
}
.header .headernavwrap .navarea .globalmenu .has-submenu {
  position: relative;
}
.header .headernavwrap .navarea .globalmenu .has-submenu .childrenlist {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
  flex-direction: column;
  gap: 10px;
  min-width: 180px;
  white-space: nowrap;
  width: auto;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}
.header .headernavwrap .navarea .globalmenu .has-submenu .childrenlist li a {
  padding: 8px 16px;
  display: block;
  font-weight: bold;
}
.header .headernavwrap .navarea .globalmenu .has-submenu:hover .childrenlist, .header .headernavwrap .navarea .globalmenu .has-submenu.submenu-open .childrenlist {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  position: absolute;
  top: 100%;
  left: 0;
}
.header .headernavwrap .contactbtn a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #5C9EE4 0%, #8ACEFF 100%);
  color: #fff;
  padding: 10px 30px;
  height: 70px;
  white-space: nowrap;
  font-weight: bold;
}
.header .headernavwrap .contactbtn a:before {
  content: "";
  background: url("../img/icon-mail.svg") no-repeat center center;
  width: 20px;
  height: 20px;
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.header .btn-gnavi {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, #88C1F2 0%, #4095DE 100%);
  gap: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  line-height: 1em;
  width: 70px;
  height: 70px;
  cursor: pointer;
}
.header .btn-gnavi span:nth-child(1), .header .btn-gnavi span:nth-child(2) {
  display: block;
  width: 50px;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease, opacity 0.3s ease;
}
.header .btn-gnavi-text {
  margin-top: 4px;
  transition: opacity 0.3s ease;
}
.header .btn-gnavi.open .btn-gnavi-text {
  margin-top: 15px;
}
.header .btn-gnavi.open span:nth-child(1) {
  width: 40px;
  transform: translateY(15px) rotate(45deg);
}
.header .btn-gnavi.open span:nth-child(2) {
  width: 40px;
  transform: translateY(5px) rotate(-45deg);
}
@media (max-width: 1024px) {
  .header .logo {
    margin-left: 15px;
  }
  .header .logo a {
    height: 35px;
  }
  .header .logo a img {
    vertical-align: inherit;
  }
  .header .logo a.instagram {
    margin-left: 10px;
  }
  .header .headernavwrap .navarea {
    margin-right: 10px;
  }
  .header .headernavwrap .navarea .globalmenu .parentlist {
    gap: 20px;
  }
  .header .headernavwrap .navarea .globalmenu .parentlist li a {
    font-size: 15px;
    letter-spacing: 0.02em;
  }
  .header .headernavwrap .contactbtn a {
    padding: 10px 13px;
    font-size: 13px;
    letter-spacing: -0.03em;
  }
}
@media (max-width: 768px) {
  .header {
    height: 70px;
    flex-direction: row;
    padding: 0;
  }
  .header .logo {
    margin-left: 15px;
  }
  .header .logo a {
    height: 35px;
  }
  .header .headernavwrap {
    flex-direction: column;
    background-color: #fff;
    display: none;
    padding: 30px 15px;
    z-index: 100;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background-color: #fff;
  }
  .header .headernavwrap .navarea {
    flex-direction: column;
    width: 300px;
    max-width: 100%;
    margin: 0;
  }
  .header .headernavwrap .navarea .subnav ul,
.header .headernavwrap .navarea .globalmenu ul {
    flex-direction: column;
    gap: 15px;
  }
  .header .headernavwrap .navarea .subnav {
    display: none;
  }
  .header .headernavwrap .navarea .globalmenu {
    max-height: 100%;
  }
  .header .headernavwrap .navarea .globalmenu .parentlist {
    gap: 0;
  }
  .header .headernavwrap .navarea .globalmenu .parentlist li {
    border-bottom: 1px solid #1272BA;
  }
  .header .headernavwrap .navarea .globalmenu .parentlist li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 18px;
    letter-spacing: 0.04em;
    font-weight: bold;
    padding: 15px 0;
  }
  .header .headernavwrap .navarea .globalmenu .dsp-sp li a {
    display: block;
    font-size: 16px;
    font-weight: bold;
    padding-top: 15px;
  }
  .header .headernavwrap .navarea p {
    font-weight: bold;
  }
  .header .headernavwrap .navarea .globalmenu .has-submenu .childrenlist {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    display: block;
    position: static !important;
    box-shadow: none;
    padding-top: 0;
  }
  .header .headernavwrap .navarea .globalmenu .has-submenu .childrenlist li a {
    padding: 5px 15px 5px 20px;
  }
  .header .headernavwrap .navarea .globalmenu .has-submenu .has-submenu {
    position: static;
  }
  .header .headernavwrap .contactbtn {
    margin-top: 50px;
  }
  .header .headernavwrap .contactbtn a {
    width: 300px;
    max-width: 100%;
    height: 70px;
    line-height: 70px;
    font-size: 16px;
    font-weight: bold;
    padding: 0;
    text-align: center;
    border-radius: 40px;
    letter-spacing: 0;
  }
  .header .btn-gnavi {
    display: flex;
  }
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10;
}
.overlay.open {
  display: block;
}

.footer {
  color: #111111;
  padding: 50px 0;
  border-top: 0.5px solid #1272BA;
}
@media (max-width: 768px) {
  .footer {
    padding: 30px 0;
  }
}
.footer a {
  color: #111111;
}
.footer .inner {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 768px) {
  .footer .inner {
    align-items: center;
    gap: 15px;
  }
}
.footer-logo {
  width: 100%;
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}
.footer-logo img {
  display: block;
  max-width: 420px;
}
.footer-logo a {
  display: block;
  width: 20px;
  height: 20px;
  margin-left: 20px;
}
.footer-logo a img {
  width: 100%;
  height: 100%;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .footer-logo {
    margin: 0 auto;
    justify-content: center;
  }
  .footer-logo a {
    display: none;
  }
}
.footer .tel {
  position: relative;
  display: inline-block;
  pointer-events: none;
}
@media (max-width: 768px) {
  .footer .tel {
    pointer-events: auto;
  }
}
.footer .tel:before {
  content: "";
  background: url("../img/icon-tel-footer.svg") no-repeat center center;
  width: 15px;
  height: 15px;
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
}
.footer-links {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  gap: 20px;
}
@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    justify-content: center;
  }
}
.footer-links .privacy {
  position: relative;
  display: inline-block;
  padding-right: 12px;
  font-size: 14px;
}
.footer-links .privacy::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 1em;
  background: #ccc;
  top: 5px;
  right: 0;
}
@media (max-width: 768px) {
  .footer-links .privacy::before {
    display: none;
  }
}
.footer-links .banner {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  flex-wrap: nowrap;
}
.footer-links .banner figure {
  height: 80px;
}
.footer-links .banner figure img {
  height: 100%;
  object-fit: contain;
}
.footer .copyright {
  text-align: center;
  font-size: 12px;
  color: #888;
  display: block;
  margin-top: 20px;
}

.page-top {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 50px;
  bottom: 30px;
  width: 80px;
  height: 80px;
  font-size: 16px;
  background: #1272BA;
  border: 1px solid #1272BA;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 9;
}
.page-top img {
  position: absolute;
  top: 30px;
  left: 25px;
  width: 30px;
  height: 15px;
}
.page-top.show {
  opacity: 1;
  visibility: visible;
}
.page-top:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .page-top {
    display: none;
  }
}

.commonttl {
  text-align: center;
  margin-bottom: 20px;
}
.commonttl .inter {
  color: #013179;
  font-size: 18px;
  margin-bottom: 0;
  font-weight: bold;
}
@media (max-width: 768px) {
  .commonttl .inter {
    font-size: 16px;
  }
}
.commonttl h3 {
  font-size: 32px;
}
@media (max-width: 768px) {
  .commonttl h3 {
    font-size: 28px;
  }
}

.dotstitle {
  font-size: 32px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 30px;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .dotstitle {
    font-size: 28px;
    padding-bottom: 20px;
  }
}
.dotstitle::before {
  content: "";
  display: inline-block;
  margin-right: 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(90deg, #68528F, #009CA9);
}

.bgppl {
  background-color: rgba(104, 82, 143, 0.07);
}

.btn {
  color: #fff;
  background: linear-gradient(90deg, #5C9EE4 0%, #8ACEFF 100%);
  font-weight: bold;
  text-align: center;
  width: 300px;
  max-width: 100%;
  height: 70px;
  line-height: 70px;
  position: relative;
  border-radius: 40px;
  display: block;
}
@media (max-width: 768px) {
  .btn {
    margin: 0 auto;
  }
}

.breadcrumbs {
  margin: 20px auto 0;
  font-size: 12px;
}
@media (max-width: 768px) {
  .breadcrumbs {
    margin: 10px auto 20px;
  }
}
.breadcrumbs a {
  display: inline-flex;
  align-items: center;
  position: relative;
}
.breadcrumbs a::after {
  content: "";
  width: 6px;
  height: 12px;
  background: url("../img/icon-arrow-bc.svg") no-repeat center/contain;
  margin-left: 10px;
  margin-right: 7px;
}
.breadcrumbs .breadcrumb_last {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .breadcrumbs {
    padding: 4px 4%;
    font-size: 11px;
    overflow-x: scroll;
    word-break: keep-all;
    white-space: nowrap;
  }
}

.pagettl {
  margin: 160px auto 0;
}
.pagettl h2 {
  font-size: 40px;
  letter-spacing: 0.1em;
  padding-bottom: 40px;
  border-bottom: 1px solid #CCC;
  color: #111111;
  text-align: left;
}
.pagettl h2 span {
  display: block;
  color: #013179;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.2em;
  letter-spacing: 0;
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .pagettl {
    margin: 110px auto 0;
  }
  .pagettl h2 {
    font-size: 32px;
    padding-bottom: 20px;
  }
  .pagettl h2 span {
    font-size: 16px;
  }
}

#TOPPAGE .kvwrapper {
  height: 790px;
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  #TOPPAGE .kvwrapper {
    height: 470px;
  }
  #TOPPAGE .kvwrapper .wrapper {
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
  }
}
#TOPPAGE .kvwrapper:before {
  content: "";
  background: url("../img/kvimg.jpg") no-repeat center center;
  background-size: cover;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: -1;
}
@media (max-width: 768px) {
  #TOPPAGE .kvwrapper:before {
    background: url("../img/kvimg_sp.jpg") no-repeat right center/cover;
    right: unset;
    left: 0;
  }
}
#TOPPAGE .kvwrapper .catchcopy {
  font-size: 75px;
  line-height: 1.5em;
  text-shadow: 0px 0px 10px #FFFFFF;
  color: #013179;
  letter-spacing: 0.11em;
}
#TOPPAGE .kvwrapper .catchcopy span {
  position: relative;
  text-shadow: none;
  font-size: 96px;
  display: inline-block;
  background: linear-gradient(to right, #aa9FFF 0%, #c609ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
#TOPPAGE .kvwrapper .catchcopy span::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  color: rgba(255, 255, 255, 0.5);
  filter: blur(6px);
  -webkit-text-fill-color: initial;
}
@media (max-width: 768px) {
  #TOPPAGE .kvwrapper .catchcopy {
    margin-top: 0;
    font-size: 36px;
    display: inline-block;
    white-space: nowrap;
    margin-left: 20px;
  }
  #TOPPAGE .kvwrapper .catchcopy span {
    font-size: 56px;
  }
}
#TOPPAGE .kvwrapper p {
  font-size: 24px;
  color: #013179;
  font-weight: 200;
  line-height: 1.2em;
}
@media (max-width: 768px) {
  #TOPPAGE .kvwrapper p {
    font-size: 18px;
  }
}
#TOPPAGE .introarea p {
  line-height: 1.5em;
  letter-spacing: 0.1em;
  font-size: 20px;
  text-align: center;
  margin-top: 30px;
}
@media (max-width: 768px) {
  #TOPPAGE .introarea p {
    font-size: 16px;
    letter-spacing: 0.04em;
    text-align: left;
    margin-top: 20px;
  }
}
#TOPPAGE .service {
  background: #EEF8FF;
  position: relative;
}
#TOPPAGE .service .wrapper > p {
  text-align: center;
  margin: 30px auto 0;
}
@media (max-width: 768px) {
  #TOPPAGE .service .wrapper > p {
    margin-top: 20px;
    text-align: left;
  }
}
#TOPPAGE .service .service-grid {
  display: flex;
  gap: 30px;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  #TOPPAGE .service .service-grid {
    margin-top: 30px;
    flex-direction: column;
  }
}
#TOPPAGE .service .service-grid .link {
  display: flex;
  flex-direction: column;
}
#TOPPAGE .service .service-grid .link .image {
  margin: 0 auto;
}
#TOPPAGE .service .service-grid .link .image img {
  width: 100%;
  height: 100%;
  vertical-align: middle;
}
#TOPPAGE .service .service-grid .link .text {
  margin-top: 10px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#TOPPAGE .service .service-grid .link .text h3 {
  color: #013179;
  font-size: 20px;
  letter-spacing: 0.04em;
  line-height: 1.5em;
  position: relative;
}
#TOPPAGE .service .service-grid .link .text h3::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background: url("../img/icon-arrow-circle.svg") no-repeat center/contain;
  right: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#TOPPAGE .news-heading {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}
#TOPPAGE .news-heading a {
  display: inline-block;
  position: relative;
  padding-right: 40px;
  color: #013179;
  font-weight: bold;
  letter-spacing: 0.04em;
}
#TOPPAGE .news-heading a::after {
  content: "";
  width: 30px;
  height: 30px;
  background: url("../img/icon-arrow-circle.svg") no-repeat center/contain;
  right: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#TOPPAGE .news-list {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}
@media (max-width: 768px) {
  #TOPPAGE .news-list {
    flex-direction: column;
  }
}
#TOPPAGE .news-item {
  width: 33.3333%;
}
@media (max-width: 768px) {
  #TOPPAGE .news-item {
    width: 100%;
  }
}
#TOPPAGE .news-item .news-thumb {
  border: 1px solid #DADADA;
  margin: 0 auto;
  position: relative;
  width: 100%;
  padding-bottom: 66.666%;
  overflow: hidden;
}
#TOPPAGE .news-item .news-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#TOPPAGE .news-item .news-date {
  margin-top: 20px;
  font-size: 14px;
  letter-spacing: 0;
  font-weight: 400;
  color: #013179;
}
@media (max-width: 768px) {
  #TOPPAGE .news-item .news-date {
    margin-top: 10px;
  }
}
#TOPPAGE .news-item .news-title {
  font-size: 16px;
  letter-spacing: 0;
  font-weight: 500;
  color: #013179;
}
#TOPPAGE .works {
  background: #EEF8FF;
  position: relative;
}
#TOPPAGE .works::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 600px;
  bottom: 0;
  left: 0;
  background: url(../img/bg-wave.png) no-repeat center top/cover;
  z-index: 0;
}
#TOPPAGE .works .inner {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  gap: 50px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  #TOPPAGE .works .inner {
    gap: 30px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  #TOPPAGE .works .inner {
    flex-wrap: wrap;
    margin-top: 20px;
  }
}
#TOPPAGE .works .imgarea {
  width: 500px;
  height: 500px;
}
#TOPPAGE .works .imgarea img {
  height: 100%;
  vertical-align: middle;
}
@media (max-width: 1024px) {
  #TOPPAGE .works .imgarea {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 768px) {
  #TOPPAGE .works .imgarea {
    width: 100%;
    height: 100%;
  }
}
#TOPPAGE .works .txtarea {
  width: calc(100% - 500px);
  position: relative;
}
@media (max-width: 768px) {
  #TOPPAGE .works .txtarea {
    width: 100%;
  }
}
#TOPPAGE .works .txtarea h3 {
  font-size: 26px;
  color: #111111;
  text-align: center;
}
#TOPPAGE .works .txtarea p {
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.5em;
  margin-top: 30px;
}
#TOPPAGE .works .txtarea div {
  margin: 40px auto 0;
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}
@media (max-width: 768px) {
  #TOPPAGE .works .txtarea h3 {
    font-size: 20px;
  }
  #TOPPAGE .works .txtarea p {
    margin-top: 20px;
  }
  #TOPPAGE .works .txtarea div {
    margin-top: 30px;
  }
}
#TOPPAGE .about {
  background: #CBE5FB;
  padding-bottom: 90px;
}
@media (max-width: 768px) {
  #TOPPAGE .about {
    padding-bottom: 50px;
  }
}
#TOPPAGE .about .inner {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  gap: 30px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  #TOPPAGE .about .inner {
    flex-wrap: wrap;
    flex-direction: column;
    margin-top: 20px;
    gap: 20px;
  }
}
#TOPPAGE .about .txtarea {
  width: 50%;
  position: relative;
}
#TOPPAGE .about .txtarea p {
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1.5em;
}
#TOPPAGE .about .txtarea a.btn {
  margin-top: 40px;
}
@media (max-width: 768px) {
  #TOPPAGE .about .txtarea {
    width: 100%;
    order: 2;
  }
  #TOPPAGE .about .txtarea p {
    font-size: 16px;
  }
  #TOPPAGE .about .txtarea a.btn {
    margin-top: 30px;
  }
}
#TOPPAGE .about .imgarea {
  width: 50%;
}
#TOPPAGE .about .imgarea img {
  vertical-align: middle;
}
@media (max-width: 768px) {
  #TOPPAGE .about .imgarea {
    width: 100%;
    order: 1;
  }
}

.news-detail .news-ttl {
  text-align: left;
  color: #111111;
  margin-top: 15px;
}
@media (max-width: 768px) {
  .news-detail .news-ttl {
    font-size: 24px;
  }
}
.news-detail .news .date {
  font-size: 16px;
  font-weight: 500;
  line-height: 2em;
  font-weight: bold;
  color: #777;
}
.news-detail .news .news-article {
  margin-top: 30px;
}
.news-detail .news .news-article .wp-block-image {
  margin-top: 30px;
}
.news-detail .news .news-article .wp-block-image:first-child {
  margin-top: 0;
}
.news-detail .news .news-article p {
  margin-top: 20px;
  font-size: 16px;
  line-height: 2em;
}
.news-detail .news .news-article ul {
  margin-top: 20px;
}
.news-detail .news .news-article ul li {
  font-size: 16px;
  line-height: 2em;
}
.news-detail .news .news-article h2 + p, .news-detail .news .news-article h2 + ul, .news-detail .news .news-article h3 + p, .news-detail .news .news-article h3 + ul, .news-detail .news .news-article h4 + p, .news-detail .news .news-article h4 + ul {
  margin-top: 15px;
}
.news-detail .news .news-article h2 {
  margin-top: 20px;
  font-size: 28px;
}
.news-detail .news .news-article h3 {
  margin-top: 20px;
  font-size: 24px;
}
.news-detail .news .news-article h4 {
  margin-top: 20px;
  font-size: 20px;
  color: #013179;
}
.news-detail .news .news-article strong {
  font-weight: bold;
}
@media (max-width: 768px) {
  .news-detail .news .news-article h2 + p, .news-detail .news .news-article h3 + p, .news-detail .news .news-article h4 + p {
    margin-top: 10px;
  }
  .news-detail .news .news-article h2 {
    font-size: 24px;
  }
  .news-detail .news .news-article h3 {
    font-size: 20px;
  }
}
.news-detail .btn-wrap {
  margin: 70px auto 0;
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  flex-direction: column;
}

.newslist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.newslist li {
  padding: 20px;
  border-bottom: 1px solid #1272BA;
}
.newslist li .news-item {
  display: flex;
  align-items: center;
  gap: 40px;
  text-decoration: none;
}
.newslist li .news-item .date {
  font-size: 14px;
  color: #777;
  white-space: nowrap;
  letter-spacing: 0;
}
.newslist li .news-item .newsttl {
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0;
}
.newslist li.no-posts {
  text-align: center;
  font-size: 16px;
  padding: 40px 0 0;
  font-weight: 500;
  border-bottom: none;
}

.pagenation {
  margin: 30px auto 0;
  text-align: center;
  font-size: 0;
}
.pagenation .page-numbers {
  display: inline-block;
  height: 30px;
  width: 30px;
  vertical-align: middle;
  font-size: 18px;
  text-align: center;
  color: #111111;
  margin: 0 1px;
  border-radius: 3px;
  font-weight: 500;
  line-height: 30px;
}
.pagenation .page-numbers img {
  vertical-align: baseline;
}
.pagenation .page-numbers.next {
  margin-left: 10px;
}
.pagenation .page-numbers.next:hover {
  opacity: 0.7;
}
.pagenation .page-numbers.prev {
  margin-right: 10px;
}
.pagenation .page-numbers.prev:hover {
  opacity: 0.7;
}
.pagenation a.page-numbers:hover {
  opacity: 1;
}
.pagenation a.page-numbers:hover,
.pagenation .current {
  color: #1272BA;
}

#ABOUT .introarea {
  position: relative;
  background: url("../img/bg-wave.png") no-repeat center/cover;
}
@media (max-width: 768px) {
  #ABOUT .introarea {
    background: url("../img/bg-wave.png") no-repeat left bottom;
    background-size: 1440px 450px;
  }
  #ABOUT .introarea .wrapper {
    padding-bottom: 70px;
  }
}
#ABOUT .introarea .inner {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  gap: 50px;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  #ABOUT .introarea .inner {
    flex-wrap: wrap;
    flex-direction: column;
    margin-top: 20px;
    gap: 20px;
  }
}
#ABOUT .introarea .imgarea {
  width: 372px;
}
@media (max-width: 768px) {
  #ABOUT .introarea .imgarea {
    width: 100%;
    max-width: 425px;
    margin: 0 auto;
  }
}
#ABOUT .introarea .txtarea {
  position: relative;
  width: calc(100% - 372px);
}
@media (max-width: 768px) {
  #ABOUT .introarea .txtarea {
    width: 100%;
  }
}
#ABOUT .introarea .txtarea p {
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.5em;
}
#ABOUT .introarea .txtarea p.name {
  margin-top: 20px;
  font-size: 20px;
  font-weight: bold;
}
#ABOUT .company {
  background: #CBE5FB;
}
#ABOUT .company h2 {
  margin-top: 30px;
}
#ABOUT .company h2:first-of-type {
  margin-top: 0;
}
#ABOUT .company table {
  margin-top: 30px;
}
@media (max-width: 768px) {
  #ABOUT .company table {
    width: 100vw;
    margin: 30px calc(50% - 50vw) 0;
  }
}
#ABOUT .company .inner {
  padding: 50px;
  background: #FFF;
  margin-top: 30px;
}
@media (max-width: 768px) {
  #ABOUT .company .inner {
    margin: 30px calc(50% - 50vw) 0;
    padding: 30px 15px;
  }
}
#ABOUT .company .inner.financial-status p {
  text-align: center;
}
#ABOUT .company .inner.financial-status a {
  text-decoration: underline;
}
#ABOUT .company .access-grid {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  gap: 20px;
  margin-top: 30px;
}
#ABOUT .company .access-grid:first-of-type {
  margin-top: 0;
}
@media (max-width: 768px) {
  #ABOUT .company .access-grid {
    flex-direction: column;
    flex-wrap: wrap;
  }
  #ABOUT .company .access-grid:nth-of-type(2) .gmap-wrap {
    order: 1;
  }
  #ABOUT .company .access-grid:nth-of-type(2) .address {
    order: 2;
  }
}
#ABOUT .company .access-grid .gmap-wrap {
  width: 500px;
}
@media (max-width: 1024px) {
  #ABOUT .company .access-grid .gmap-wrap {
    width: 300px;
  }
}
@media (max-width: 768px) {
  #ABOUT .company .access-grid .gmap-wrap {
    width: 100%;
  }
}
#ABOUT .company .access-grid .gmap-wrap .gmap {
  position: relative;
  width: 100%;
  padding-top: 62.4%;
  height: 0;
}
@media (max-width: 768px) {
  #ABOUT .company .access-grid .gmap-wrap .gmap {
    padding-top: 86.7%;
  }
}
#ABOUT .company .access-grid .gmap-wrap .gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#ABOUT .company .access-grid .address {
  width: calc(100% - 500px);
}
@media (max-width: 1024px) {
  #ABOUT .company .access-grid .address {
    width: calc(100% - 300px);
  }
}
@media (max-width: 768px) {
  #ABOUT .company .access-grid .address {
    width: 100%;
  }
}
#ABOUT .company .access-grid .address p {
  font-size: 14px;
  margin-top: 10px;
}
#ABOUT .company .access-grid .address .office {
  font-weight: bold;
  font-size: 20px;
  margin-top: 0;
}
@media (max-width: 768px) {
  #ABOUT .history {
    padding-bottom: 50px;
  }
  #ABOUT .history .wrapper > .boxStyleTable tbody tr td {
    border: none;
  }
}
#ABOUT .history .boxStyleTable {
  margin-top: 30px;
}
#ABOUT .history .boxStyleTable tbody tr > th {
  width: 300px;
}
@media (max-width: 768px) {
  #ABOUT .history .boxStyleTable tbody tr > th {
    width: auto;
    border-bottom: 1px solid #ccc;
  }
}
@media (max-width: 768px) {
  #ABOUT .history .boxStyleTable tbody tr td {
    padding: 20px 0 0;
  }
}
#ABOUT .history .boxStyleTable tbody tr td .inner-table {
  width: 100%;
  border-collapse: collapse;
  line-height: 1.5em;
}
#ABOUT .history .boxStyleTable tbody tr td .inner-table tr {
  width: 100%;
  background: #ffffff;
}
#ABOUT .history .boxStyleTable tbody tr td .inner-table tr th {
  background-color: #CBE5FB;
  border: 1px solid #cccccc;
  padding: 10px;
  font-weight: 400;
  width: 161px;
}
@media (max-width: 768px) {
  #ABOUT .history .boxStyleTable tbody tr td .inner-table tr th {
    width: auto;
  }
}
#ABOUT .history .boxStyleTable tbody tr td .inner-table tr td {
  border: 1px solid #cccccc;
  padding: 10px;
}
#ABOUT .history .boxStyleTable tbody tr td .inner-table tr td .emp {
  font-weight: bold;
  display: block;
  margin-top: 10px;
}
#ABOUT .history .boxStyleTable tbody tr td .inner-table tr td .emp:first-of-type {
  margin-top: 0;
}
@media (max-width: 768px) {
  #ABOUT .history .boxStyleTable tbody tr td .inner-table tr td {
    padding: 10px;
  }
}
@media (max-width: 768px) {
  #ABOUT .history .boxStyleTable tbody tr td .inner-table tr:last-child {
    border-bottom: none;
  }
  #ABOUT .history .boxStyleTable tbody tr td .inner-table tr th,
#ABOUT .history .boxStyleTable tbody tr td .inner-table tr td {
    display: block;
    border-bottom: none;
    text-align: left;
  }
}

#SERVICE .introarea {
  position: relative;
}
#SERVICE .introarea .main-image {
  width: 100%;
  margin: 0 auto;
}
#SERVICE .introarea .inner {
  margin-top: 70px;
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  position: relative;
  z-index: 1;
  gap: 60px;
}
@media (max-width: 768px) {
  #SERVICE .introarea .inner {
    flex-wrap: wrap;
    flex-direction: column;
    margin-top: 30px;
    gap: 20px;
  }
}
#SERVICE .introarea .imgarea {
  width: 42%;
}
@media (max-width: 768px) {
  #SERVICE .introarea .imgarea {
    width: 100%;
    max-width: 425px;
    margin: 0 auto;
  }
}
#SERVICE .introarea .txtarea {
  width: 53%;
}
@media (max-width: 768px) {
  #SERVICE .introarea .txtarea {
    width: 100%;
  }
}
#SERVICE .introarea .txtarea h2 {
  font-size: 32px;
  text-align: left;
}
@media (max-width: 768px) {
  #SERVICE .introarea .txtarea h2 {
    font-size: 24px;
    text-align: center;
  }
}
#SERVICE .introarea .txtarea p {
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.7em;
  margin-top: 25px;
}
#SERVICE .transport {
  padding-top: 80px;
  position: relative;
}
@media (max-width: 768px) {
  #SERVICE .transport {
    padding-top: 70px;
  }
}
#SERVICE .transport::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 120px;
  background: #EEF8FF;
}
@media (max-width: 768px) {
  #SERVICE .transport::before {
    height: 60px;
  }
}
#SERVICE .transport-grid {
  margin-top: 80px;
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  position: relative;
  z-index: 1;
  gap: 60px;
}
#SERVICE .transport-grid:first-of-type .txtarea p {
  margin-top: 25px;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  #SERVICE .transport-grid {
    flex-wrap: wrap;
    flex-direction: column;
    margin-top: 20px;
    gap: 20px;
  }
}
#SERVICE .transport .imgarea {
  width: 50%;
}
@media (max-width: 768px) {
  #SERVICE .transport .imgarea {
    width: 100%;
    margin: 0 auto;
    order: 1;
  }
}
#SERVICE .transport .txtarea {
  width: 50%;
}
@media (max-width: 768px) {
  #SERVICE .transport .txtarea {
    width: 100%;
    order: 2;
  }
}
#SERVICE .transport .txtarea h3 {
  margin-top: 25px;
}
#SERVICE .transport .txtarea h3:first-of-type {
  margin-top: 0;
}
#SERVICE .transport .txtarea p {
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.7em;
  margin-top: 10px;
  letter-spacing: 0;
}
#SERVICE .maintenance {
  padding-top: 80px;
  position: relative;
}
@media (max-width: 768px) {
  #SERVICE .maintenance {
    padding-top: 70px;
  }
}
#SERVICE .maintenance::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 120px;
  background: #EEF8FF;
}
@media (max-width: 768px) {
  #SERVICE .maintenance::before {
    height: 60px;
  }
}
#SERVICE .maintenance .inner {
  padding-top: 45px;
}
@media (max-width: 768px) {
  #SERVICE .maintenance .inner {
    padding-top: 0;
  }
}
#SERVICE .maintenance-grid {
  margin-top: 50px;
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  position: relative;
  z-index: 1;
  gap: 60px;
}
@media (max-width: 768px) {
  #SERVICE .maintenance-grid {
    flex-wrap: wrap;
    flex-direction: column;
    margin-top: 20px;
    gap: 20px;
  }
}
#SERVICE .maintenance-grid:first-of-type {
  align-items: center;
}
#SERVICE .maintenance-grid .imgarea {
  width: 45.6%;
}
@media (max-width: 768px) {
  #SERVICE .maintenance-grid .imgarea {
    width: 100%;
    margin: 0 auto;
  }
}
#SERVICE .maintenance-grid .txtarea {
  width: 49.1%;
}
@media (max-width: 768px) {
  #SERVICE .maintenance-grid .txtarea {
    width: 100%;
  }
}
#SERVICE .maintenance-grid .txtarea h3 {
  margin-top: 25px;
}
#SERVICE .maintenance-grid .txtarea h3:first-of-type {
  margin-top: 0;
}
#SERVICE .maintenance-grid .txtarea h4 {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.7em;
}
#SERVICE .maintenance-grid .txtarea p {
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.7em;
  margin-top: 15px;
}
#SERVICE .maintenance-grid .txtarea .feature {
  margin-top: 20px;
}
#SERVICE .maintenance-grid .txtarea .feature p {
  margin-top: 0;
}
#SERVICE .maintenance .operation {
  margin-top: 60px;
}
@media (max-width: 768px) {
  #SERVICE .maintenance .operation {
    margin-top: 30px;
  }
}
#SERVICE .maintenance .operation h3 {
  margin-top: 30px;
}
#SERVICE .maintenance .operation h3:first-of-type {
  margin-top: 0;
}
#SERVICE .maintenance .operation-grid {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  margin: 30px auto 0;
  width: 1140px;
  max-width: 100%;
}
@media (max-width: 768px) {
  #SERVICE .maintenance .operation-grid {
    flex-wrap: wrap;
    flex-direction: column;
    margin-top: 20px;
  }
}
#SERVICE .maintenance .operation-grid .operation-item {
  display: flex;
  align-items: center;
  width: 25%;
}
@media (max-width: 768px) {
  #SERVICE .maintenance .operation-grid .operation-item {
    flex-wrap: wrap;
    flex-direction: column;
  }
}
#SERVICE .maintenance .operation-grid .operation-item:last-child {
  width: calc(25% - 40px);
}
@media (max-width: 768px) {
  #SERVICE .maintenance .operation-grid .operation-item:last-child {
    width: 100%;
    max-width: 425px;
  }
}
#SERVICE .maintenance .operation-grid .operation-item:last-child .arrow {
  display: none;
}
@media (max-width: 768px) {
  #SERVICE .maintenance .operation-grid .operation-item {
    width: 100%;
    max-width: 425px;
  }
}
#SERVICE .maintenance .operation-grid .operation-item .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background-color: #EEF8FF;
  box-sizing: border-box;
}
#SERVICE .maintenance .operation-grid .operation-item .box figure {
  width: 100%;
  margin: 0 auto;
}
#SERVICE .maintenance .operation-grid .operation-item .box figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (max-width: 768px) {
  #SERVICE .maintenance .operation-grid .operation-item .box {
    width: 100%;
    padding: 20px;
  }
  #SERVICE .maintenance .operation-grid .operation-item .box figure {
    position: relative;
    padding-top: 100%;
  }
  #SERVICE .maintenance .operation-grid .operation-item .box figure img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
#SERVICE .maintenance .operation-grid .operation-item h3 {
  margin-top: 15px;
  text-align: center;
}
@media (max-width: 1024px) {
  #SERVICE .maintenance .operation-grid .operation-item h3 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  #SERVICE .maintenance .operation-grid .operation-item h3 {
    font-size: 24px;
    margin-top: 10px;
  }
}
#SERVICE .maintenance .operation-grid .arrow {
  width: 20px;
  margin: 0 10px;
}
@media (max-width: 768px) {
  #SERVICE .maintenance .operation-grid .arrow {
    transform: rotate(90deg);
  }
}
#SERVICE .maintenance .casestudies {
  margin-top: 30px;
}
#SERVICE .maintenance .casestudies h4 {
  margin-top: 30px;
  font-weight: bold;
  line-height: 2em;
  letter-spacing: 0.04em;
}
#SERVICE .maintenance .casestudies h4:first-of-type {
  margin-top: 0;
}
#SERVICE .maintenance .casestudies p {
  line-height: 2em;
  letter-spacing: 0.04em;
}
#SERVICE .maintenance .casestudies p:first-of-type {
  margin-top: 30px;
}
@media (max-width: 768px) {
  #SERVICE .maintenance .casestudies h4 {
    margin-top: 0;
  }
  #SERVICE .maintenance .casestudies p:first-of-type {
    margin-top: 10px;
  }
}
#SERVICE .maintenance .lined-blower {
  margin-top: 50px;
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  position: relative;
  z-index: 1;
  gap: 40px;
}
@media (max-width: 768px) {
  #SERVICE .maintenance .lined-blower {
    flex-wrap: wrap;
    flex-direction: column;
    margin-top: 30px;
    gap: 20px;
  }
}
#SERVICE .maintenance .lined-blower .imgarea {
  width: 50%;
}
@media (max-width: 768px) {
  #SERVICE .maintenance .lined-blower .imgarea {
    width: 100%;
    margin: 0 auto;
  }
}
#SERVICE .maintenance .lined-blower .txtarea {
  width: 50%;
  margin-top: 35px;
}
@media (max-width: 768px) {
  #SERVICE .maintenance .lined-blower .txtarea {
    width: 100%;
    margin-top: 0;
  }
}
#SERVICE .maintenance .lined-blower .txtarea h3 {
  text-align: left;
}
#SERVICE .maintenance .lined-blower .txtarea p {
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.5em;
  margin-top: 10px;
}
#SERVICE .chemical-sales {
  background: #EEF8FF;
}
#SERVICE .chemical-sales .inner {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  gap: 50px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  #SERVICE .chemical-sales .inner {
    flex-wrap: wrap;
    flex-direction: column;
    margin-top: 20px;
    gap: 20px;
  }
}
#SERVICE .chemical-sales .txtarea {
  width: 50%;
  position: relative;
}
#SERVICE .chemical-sales .txtarea p {
  letter-spacing: 0.04em;
  line-height: 1.7em;
}
@media (max-width: 768px) {
  #SERVICE .chemical-sales .txtarea {
    width: 100%;
    order: 2;
  }
}
#SERVICE .chemical-sales .imgarea {
  width: 50%;
}
#SERVICE .chemical-sales .imgarea img {
  vertical-align: middle;
}
@media (max-width: 768px) {
  #SERVICE .chemical-sales .imgarea {
    width: 100%;
    order: 1;
  }
}
#SERVICE .permits p {
  font-size: 14px;
  margin-top: 30px;
  text-align: center;
}
@media (max-width: 768px) {
  #SERVICE .permits p {
    margin-top: 10px;
  }
}
#SERVICE .permits a {
  display: block;
  width: 100%;
}
#SERVICE .permits a figure {
  margin: 0 auto;
  width: 100%;
}

#WORKS .btn-area-grid {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  gap: 60px;
}
@media (max-width: 768px) {
  #WORKS .btn-area-grid {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 30px;
  }
}
#WORKS .introarea {
  background: #EEF8FF;
}
#WORKS .introarea .initiatives {
  margin-top: 70px;
}
#WORKS .introarea .initiatives:first-of-type {
  margin-top: 0;
}
@media (max-width: 768px) {
  #WORKS .introarea .initiatives {
    margin-top: 30px;
  }
}
#WORKS .introarea p {
  margin-top: 30px;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  #WORKS .introarea p {
    margin-top: 25px;
  }
}
#WORKS .introarea .image-grid {
  margin-top: 40px;
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  position: relative;
  z-index: 1;
  gap: 50px;
}
#WORKS .introarea .image-grid figure {
  width: 50%;
}
@media (max-width: 768px) {
  #WORKS .introarea .image-grid figure {
    width: 100%;
  }
}
#WORKS .introarea .image-grid.three {
  gap: 30px;
}
#WORKS .introarea .image-grid.three figure {
  width: 33.33333%;
}
@media (max-width: 768px) {
  #WORKS .introarea .image-grid.three {
    gap: 20px;
  }
  #WORKS .introarea .image-grid.three figure {
    width: 100%;
  }
}
@media (max-width: 768px) {
  #WORKS .introarea .image-grid {
    flex-wrap: wrap;
    flex-direction: column;
    margin-top: 30px;
    gap: 20px;
  }
}
#WORKS .ecoaction-grid {
  margin-top: 30px;
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  position: relative;
  z-index: 1;
  gap: 40px;
}
@media (max-width: 768px) {
  #WORKS .ecoaction-grid {
    flex-wrap: wrap;
    flex-direction: column;
    margin-top: 30px;
    gap: 30px;
  }
}
#WORKS .ecoaction-grid .imgarea {
  width: 28%;
}
@media (max-width: 768px) {
  #WORKS .ecoaction-grid .imgarea {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}
#WORKS .ecoaction-grid .txtarea {
  width: 68.4%;
}
@media (max-width: 768px) {
  #WORKS .ecoaction-grid .txtarea {
    width: 100%;
  }
}
#WORKS .ecoaction-grid .txtarea p {
  letter-spacing: 0;
}
#WORKS .ecoaction .environmental-report {
  margin-top: 70px;
}
@media (max-width: 768px) {
  #WORKS .ecoaction .environmental-report {
    margin-top: 30px;
  }
}
#WORKS .ecoaction .environmental-report .boxStyleTable {
  margin-top: 20px;
}
#WORKS .ecoaction .environmental-report .boxStyleTable tr th {
  color: #013179;
  text-align: center;
  vertical-align: middle;
}
#WORKS .ecoaction .environmental-report .boxStyleTable tr td ul li {
  margin-top: 20px;
}
#WORKS .ecoaction .environmental-report .boxStyleTable tr td ul li:first-of-type {
  margin-top: 0;
}
#WORKS .ecoaction .environmental-report .boxStyleTable tr td ul .date {
  display: block;
  font-weight: bold;
}
#WORKS .ecoaction .environmental-report .boxStyleTable tr td ul .title {
  display: block;
  text-decoration: underline;
}
#WORKS .sdgs {
  background: #EEF8FF;
}
#WORKS .sdgs .introduction p {
  margin-top: 30px;
}
#WORKS .sdgs .introduction figure {
  margin: 40px auto 0;
  width: 500px;
  max-width: 100%;
}
@media (max-width: 768px) {
  #WORKS .sdgs .introduction figure {
    margin-top: 30px;
    width: 100%;
  }
}
#WORKS .sdgs-about {
  margin-top: 70px;
}
@media (max-width: 768px) {
  #WORKS .sdgs-about {
    margin-top: 30px;
  }
}
#WORKS .sdgs-about p {
  padding: 20px;
  background: #FFF;
  border: 1px solid #111111;
}
#WORKS .sdgs-blocks {
  margin-top: 70px;
}
@media (max-width: 768px) {
  #WORKS .sdgs-blocks {
    margin-top: 30px;
  }
}
#WORKS .sdgs-grid {
  margin-top: 70px;
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  position: relative;
  z-index: 1;
  gap: 50px;
}
@media (max-width: 768px) {
  #WORKS .sdgs-grid {
    flex-wrap: wrap;
    flex-direction: column;
    margin-top: 30px;
    gap: 20px;
  }
  #WORKS .sdgs-grid:first-of-type {
    margin-top: 0;
  }
}
#WORKS .sdgs-grid figure {
  width: 35%;
}
@media (max-width: 768px) {
  #WORKS .sdgs-grid figure {
    width: 100%;
  }
}
#WORKS .sdgs-grid .txtarea {
  width: 60%;
}
#WORKS .sdgs-grid .txtarea ul {
  margin-top: 20px;
}
#WORKS .sdgs-grid .txtarea ul li {
  font-size: 14px;
}
@media (max-width: 768px) {
  #WORKS .sdgs-grid .txtarea {
    width: 100%;
  }
}

#PRIVACY .min-wrapper {
  margin-top: 70px;
}
#PRIVACY .min-wrapper:first-of-type {
  margin-top: 0;
}
@media (max-width: 1024px) {
  #PRIVACY .min-wrapper {
    margin-top: 30px;
  }
}
#PRIVACY .min-wrapper .inner {
  margin-top: 40px;
}
#PRIVACY .min-wrapper .inner p {
  margin-top: 25px;
}
@media (max-width: 1024px) {
  #PRIVACY .min-wrapper .inner {
    margin-top: 30px;
  }
  #PRIVACY .min-wrapper .inner p {
    margin-top: 15px;
  }
}
#PRIVACY .privacy-contact {
  background: #EEF8FF;
  margin-top: 70px;
}
@media (max-width: 768px) {
  #PRIVACY .privacy-contact {
    margin-top: 30px;
  }
}
#PRIVACY .privacy-contact .privacy-contact-grid {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  gap: 0;
  margin-top: 40px;
}
@media (max-width: 768px) {
  #PRIVACY .privacy-contact .privacy-contact-grid {
    flex-wrap: wrap;
    flex-direction: column;
    margin-top: 20px;
    gap: 30px;
  }
}
#PRIVACY .privacy-contact .tel-wrap {
  width: 50%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
#PRIVACY .privacy-contact .tel-wrap p {
  text-align: center;
}
#PRIVACY .privacy-contact .tel-wrap .tel {
  position: relative;
  display: inline-block;
  pointer-events: none;
  font-size: 55px;
  color: #013179;
  line-height: 1em;
  font-weight: bold;
}
@media (max-width: 1024px) {
  #PRIVACY .privacy-contact .tel-wrap .tel {
    font-size: 45px;
  }
}
@media (max-width: 768px) {
  #PRIVACY .privacy-contact .tel-wrap .tel {
    font-size: 36px;
    pointer-events: auto;
  }
}
#PRIVACY .privacy-contact .tel-wrap .tel:before {
  content: "";
  background: url("../img/icon-tel-footer.svg") no-repeat center center;
  width: 45px;
  height: 45px;
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
@media (max-width: 1024px) {
  #PRIVACY .privacy-contact .tel-wrap .tel:before {
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 1024px) {
  #PRIVACY .privacy-contact .tel-wrap .tel:before {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 768px) {
  #PRIVACY .privacy-contact .tel-wrap {
    width: 100%;
  }
}
#PRIVACY .privacy-contact .btn-wrap {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  #PRIVACY .privacy-contact .btn-wrap {
    width: 100%;
    order: 1;
  }
}

.contactform {
  max-width: 760px;
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.contactform input[type=text],
.contactform input[type=email],
.contactform textarea,
.contactform select {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  letter-spacing: 0.04em;
  box-sizing: border-box;
}
.contactform select {
  width: 100%;
}
.contactform dt {
  padding-bottom: 8px;
  font-weight: bold;
  margin-top: 25px;
}
.contactform dt p {
  margin-bottom: 0;
  display: inline-block;
}
.contactform dt.required:after {
  content: "必須";
  font-size: 12px;
  color: #fff;
  background-color: #FA2B2B;
  padding: 2px 4px;
  border-radius: 3px;
  display: inline-block;
  margin-left: 7px;
  vertical-align: middle;
  line-height: 1.5em;
}

.privacypolicycheck {
  margin: 30px auto 0;
  text-align: center;
}
.privacypolicycheck a {
  text-decoration: underline;
}
.privacypolicycheck .description {
  margin-bottom: 10px;
}

.submitcenter {
  text-align: center;
  margin-top: 60px;
}
.submitcenter .submit {
  margin: 0 auto;
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}
.submitcenter .submitbtn {
  color: #fff;
  background: linear-gradient(45deg, #68528F, #009CA9);
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  width: 240px;
  height: 70px;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  position: relative;
  transition: all 0.3s ease;
}
.submitcenter .submitbtn:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .submitcenter .submitbtn {
    margin: 0 auto;
  }
}

span.wpcf7-spinner {
  display: none;
}

.ez-toc-counter nav ul li a::before {
  min-width: 18px;
}

.wp-element-caption {
  text-align: center;
}

.select-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
.select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2em;
  width: 100%;
  border-radius: 3px;
}
.select-wrap::after {
  content: "▼";
  color: #626262;
  font-size: 0.8em;
  position: absolute;
  right: 0.8em;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.contact {
  margin: 0 auto;
  max-width: 700px;
}
.contact > p {
  color: #111111;
  line-height: 2em;
}

.contactthanks > p {
  color: #111111;
  line-height: 2em;
  text-align: center;
  margin-top: 35px;
}
@media (max-width: 768px) {
  .contactthanks > p {
    text-align: left;
  }
}
.contactthanks .btn {
  margin: 70px auto 0;
}/*# sourceMappingURL=style.css.map */