@charset "UTF-8";
/*
Theme Name: オリジナルテーマ
Theme URI:
Description: オリジナルテーマ01
Version: 1.0
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;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;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1.5;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-weight: 500;
}

a {
  text-decoration: none;
  color: #222222;
}
a:hover {
  opacity: 0.9;
  transition: 0.3s;
}

p, a, span, strong {
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  p, a, span, strong {
    font-size: 14px;
  }
}

.sp {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
img {
  max-width: 100%;
}

.w5 {
  width: 5%;
}

.w10 {
  width: 10%;
}

.w15 {
  width: 15%;
}

.w20 {
  width: 20%;
}

.w25 {
  width: 25%;
}

.w30 {
  width: 30%;
}

.w35 {
  width: 35%;
}

.w40 {
  width: 40%;
}

.w45 {
  width: 45%;
}

.w50 {
  width: 50%;
}

.w55 {
  width: 55%;
}

.w60 {
  width: 60%;
}

.w65 {
  width: 65%;
}

.w70 {
  width: 70%;
}

.w75 {
  width: 75%;
}

.w80 {
  width: 80%;
}

.w85 {
  width: 85%;
}

.w90 {
  width: 90%;
}

.w95 {
  width: 95%;
}

.w100 {
  width: 100%;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignright {
  float: right;
  margin-left: 1.5em;
}

.alignleft {
  float: left;
  margin-right: 1.5em;
}

#wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 20px 20px 0px;
  display: flex;
  justify-content: space-between;
  flex-flow: column-reverse;
}

.btn {
  display: flex;
  max-width: 160px;
  background-color: #036eb8;
  padding: 5px 20px;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .btn {
    font-size: 14px;
  }
}
.btn::after {
  content: "";
  border: 0;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  display: inline-block;
  width: 7px;
  height: 7px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(45deg);
}

.breadcrumb {
  margin-bottom: 30px !important;
  background-color: #f4f4f4;
  padding: 4px 20px 5px 20px;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    display: none;
  }
}
.breadcrumb ul {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
}
.breadcrumb ul li {
  display: inline;
  font-size: 14px;
}
@media screen and (max-width: 1000px) {
  .breadcrumb ul li {
    font-size: 12px;
  }
}
.breadcrumb ul li a {
  color: inherit;
  text-decoration: none;
  font-size: 14px;
}
@media screen and (max-width: 1000px) {
  .breadcrumb ul li a {
    font-size: 12px;
  }
}
.breadcrumb ul li + li:before {
  content: ">";
  margin: 0 5px 0 8px;
}

header {
  position: fixed;
  padding: 0 50px;
  width: calc(100% - 100px);
  z-index: 10;
  top: 0;
  display: flex;
  height: 90px;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1300px) {
  header {
    padding: 0 30px;
    width: calc(100% - 60px);
  }
}
@media screen and (max-width: 1000px) {
  header {
    padding: 0;
    width: calc(100% - 55px);
    height: 55px;
  }
}
header .hdrContent {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  header .hdrContent {
    margin-bottom: 0;
    height: 100%;
    padding-left: 10px;
    gap: 5px;
  }
}
header .hdrContent .logoImg {
  display: flex;
  max-width: 500px;
  height: max-content;
}
@media screen and (max-width: 1000px) {
  header .hdrContent .logoImg {
    max-width: 200px;
  }
}
header .hdrContent .hdrNav {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 1300px) {
  header .hdrContent .hdrNav {
    gap: 15px;
  }
}
header .hdrContent .hdrNav #nav_global {
  display: flex;
  align-items: center;
}
header .hdrContent .hdrBtn {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 1300px) {
  header .hdrContent .hdrBtn {
    gap: 10px;
  }
}
@media screen and (max-width: 1000px) {
  header .hdrContent .hdrBtn {
    gap: 0;
    height: 100%;
  }
}
header .hdrContent .hdrBtn .telBtn {
  background-color: #036eb8;
  color: white;
  display: flex;
  flex-flow: column;
  gap: 4px;
  position: relative;
  padding: 0 10px 0 30px;
  line-height: 1;
  height: 60px;
  justify-content: center;
  align-items: baseline;
}
@media screen and (max-width: 1300px) {
  header .hdrContent .hdrBtn .telBtn {
    width: max-content;
    padding: 0 10px 0 25px;
  }
}
@media screen and (max-width: 1000px) {
  header .hdrContent .hdrBtn .telBtn {
    height: 55px;
    width: 55px;
    padding: 0;
  }
}
header .hdrContent .hdrBtn .telBtn p {
  font-size: 23px;
}
@media screen and (max-width: 1300px) {
  header .hdrContent .hdrBtn .telBtn p {
    font-size: 19px;
  }
}
@media screen and (max-width: 1000px) {
  header .hdrContent .hdrBtn .telBtn p {
    display: none;
  }
}
header .hdrContent .hdrBtn .telBtn img {
  width: 11px;
  position: absolute;
  left: 15px;
  margin: auto;
  top: 15px;
}
@media screen and (max-width: 1300px) {
  header .hdrContent .hdrBtn .telBtn img {
    left: 10px;
  }
}
@media screen and (max-width: 1000px) {
  header .hdrContent .hdrBtn .telBtn img {
    position: unset;
    width: 15px;
  }
}
header .hdrContent .hdrBtn .telBtn span {
  font-size: 8px;
}
@media screen and (max-width: 1000px) {
  header .hdrContent .hdrBtn .telBtn span {
    display: none;
  }
}
header .hdrContent .hdrBtn .contactBtn {
  width: max-content;
  background-image: unset;
  gap: 10px;
  background-color: #F5B12E;
}
@media screen and (max-width: 1300px) {
  header .hdrContent .hdrBtn .contactBtn {
    padding: 5px 10px;
    gap: 5px;
    font-size: 15px;
  }
}
@media screen and (max-width: 1000px) {
  header .hdrContent .hdrBtn .contactBtn {
    font-size: 11px;
    text-align: center;
    width: 55px;
    padding: 0;
    line-height: 1.3;
  }
}
header .hdrContent .hdrBtn .contactBtn::after {
  content: unset;
}
@media screen and (max-width: 1000px) {
  header .hdrContent .hdrBtn .contactBtn span {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  header .hdrContent .hdrBtn .contactBtn img {
    width: 30px;
  }
}
header .gNav .nav_child {
  display: none;
}
@media screen and (min-width: 768px) {
  header .gNav .nav_child {
    margin-top: 7px;
    position: absolute;
    max-width: 220px;
  }
  header .gNav .nav_child li a {
    padding: 10px 20px;
    color: white;
    background-color: #464646;
    display: block;
    font-size: 15px;
  }
}
header .gNav ul {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}
@media screen and (max-width: 1300px) {
  header .gNav ul {
    gap: 15px;
    width: max-content;
  }
}
header .gNav ul li a {
  position: relative;
  font-size: 15px;
  font-weight: 700;
}
header .gNav ul li a::after {
  /*アンダーラインのスタイル*/
  position: absolute;
  content: "";
  display: block;
  height: 3px;
  background-color: #036eb8;
  bottom: -15px;
  left: 0;
  /*幅を0に設定*/
  width: 0;
  /*アニメーションの速度設定*/
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
header .gNav ul li a:hover::after {
  width: 100%;
}
@media screen and (max-width: 1000px) {
  header .gNav ul li a::after {
    content: unset;
  }
}
@media screen and (max-width: 1420px) {
  header .gNav ul li a {
    font-size: 13px;
  }
}
header .gNav ul li a.current {
  position: relative;
}
header .gNav ul li a.current::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  margin: auto;
  width: 90%;
  height: 2px;
  background-color: #00053A;
}
header .gNav ul li .btn_parent {
  cursor: pointer;
}
@media screen and (max-width: 1000px) {
  header {
    /* グローバルナビゲーション(SP)  */
  }
  header .gNav ul {
    display: unset;
  }
  header .gNav ul li a.current {
    position: unset;
  }
  header .gNav ul li a.current::after {
    content: unset;
  }
  header #nav_global {
    position: relative;
    z-index: 1001;
  }
  header #nav_global dt {
    position: fixed;
    top: 0;
    right: 0;
    width: 55px;
    height: 55px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 10px;
    color: white;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #036eb8;
  }
  header #nav_global dt #btn_navcon {
    position: absolute;
    z-index: 1001;
    top: 17px;
    right: 12px;
    width: 30px;
    cursor: pointer;
  }
  header #nav_global dt ul {
    width: auto;
    height: 23px;
    list-style: none;
    margin: 0 auto 6px;
  }
  header #nav_global dt ul li {
    width: auto;
    height: 3px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    background-color: white;
    margin: 0 0 6px;
  }
  header #nav_global dt.is_active {
    width: 380px;
    height: 100vh;
    border-radius: 0;
  }
  header #nav_global dt.is_active li:nth-child(2) {
    opacity: 0;
  }
  header #nav_global dt.is_active li {
    -webkit-transform: translatey(8px) rotate(45deg);
    transform: translatey(8px) rotate(45deg);
  }
  header #nav_global dt.is_active li:nth-child(3) {
    -webkit-transform: translatey(-10px) rotate(-45deg);
    transform: translatey(-10px) rotate(-45deg);
  }
  header #nav_global dd {
    position: fixed;
    top: 95px;
    right: -380px;
    width: 380px;
    height: 100vh;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    opacity: 0;
    overflow: visible;
    font-family: YakuHanJP, "Noto Sans Bold", sans-serif;
    letter-spacing: 0.1em;
    color: white;
  }
  header #nav_global dd ul {
    position: relative;
    z-index: 1001;
    width: auto;
    list-style: none;
  }
  header #nav_global dd ul li {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    border-bottom: 1px solid white;
    font-size: 15px;
  }
  header #nav_global dd ul li a, header #nav_global dd ul li span {
    display: block;
    width: auto;
    cursor: pointer;
    padding: 22px;
    color: white;
  }
  header #nav_global dd ul a.is_current, header #nav_global dd ul a:hover, header #nav_global dd ul span.is_current, header #nav_global dd ul span:hover {
    background-color: #036eb8;
    mix-blend-mode: multiply;
  }
  header #nav_global dd ul a:after, header #nav_global dd ul span:after {
    float: right;
    font-family: FontAwesome;
    font-weight: bold;
  }
  header #nav_global dd ul span:after {
    content: "\f107";
  }
  header #nav_global dd .btn_parent {
    cursor: pointer;
  }
  header #nav_global dd .btn_parent.is_open_2 {
    color: white;
    background-color: #036eb8;
  }
  header #nav_global dd .btn_parent.is_open_2:after {
    content: "\f106";
  }
  header #nav_global dd ul.nav_child {
    display: none;
    width: auto;
    background-color: #88c848;
  }
  header #nav_global dd ul.nav_child li {
    border-top: 1px solid #ddd;
    border-bottom: none;
  }
  header #nav_global dd ul.nav_child a {
    padding: 15px 42px 15px 50px;
  }
  header #nav_global dd > ul:first-child {
    padding-bottom: 100px;
  }
  header #nav_global dd.is_open {
    right: 0;
    opacity: 1;
    overflow: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  header #nav_global dd.is_open::-webkit-scrollbar {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  header.is-fixed {
    background-color: rgba(255, 255, 255, 0.9) !important;
    height: 60px;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  header.is-fixed {
    height: 55px;
  }
}
@media screen and (min-width: 768px) {
  header.is-fixed .hdrContent {
    margin-bottom: 0px;
  }
  header.is-fixed .hdrContent .logoImg {
    max-width: 430px;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  header.is-fixed .hdrContent .logoImg {
    position: unset;
  }
}
@media screen and (min-width: 768px) {
  header.is-fixed .hdrContent .hdrBtn .telBtn, header.is-fixed .hdrContent .hdrBtn .contactBtn {
    height: 40px;
    font-size: 18px;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  header.is-fixed .hdrContent .hdrBtn .telBtn, header.is-fixed .hdrContent .hdrBtn .contactBtn {
    height: 55px;
  }
}
@media screen and (min-width: 768px) {
  header.is-fixed .hdrContent .hdrBtn .contactBtn {
    padding: 0px 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  header.is-fixed .hdrContent .hdrBtn .contactBtn {
    padding: 0px;
  }
}
@media screen and (min-width: 768px) {
  header.is-fixed .hdrContent .hdrBtn .telBtn {
    gap: 2px;
  }
  header.is-fixed .hdrContent .hdrBtn .telBtn img {
    top: 7px;
  }
  header.is-fixed .gNav ul li a, header.is-fixed .gNav ul li span {
    font-size: 13px;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  header.is-fixed .gNav ul li a.current::after, header.is-fixed .gNav ul li span.current::after {
    bottom: -2px;
  }
}
@media screen and (max-width: 1000px) {
  header.is-fixed {
    background-color: rgba(255, 255, 255, 0.9);
  }
}

/* トップへ戻るボタン */
#page_top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  font-weight: bold;
  padding: 5px;
  text-align: center;
  background: #036eb8;
  color: #fff;
  transition: 0.3s;
  width: 50px;
  height: 50px;
  font-size: 11px;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  letter-spacing: 1px;
  z-index: 50;
}
#page_top img {
  width: 20px;
}
#page_top:hover {
  background: #009d9d;
}

.sidebar a {
  color: #222222;
}

.mainVisual {
  position: relative;
  margin-top: 90px;
  padding: 0 50px;
  height: calc(100vh - 110px);
}
@media screen and (max-width: 1300px) {
  .mainVisual {
    padding: 0 30px;
  }
}
@media screen and (max-width: 1000px) {
  .mainVisual {
    height: 500px;
    padding: 0 0 0 30px;
    margin-top: 55px;
  }
}
.mainVisual .mainVisual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}
.mainVisual .copy-img {
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  max-width: 300px;
  width: 25vw;
}
@media screen and (max-width: 1000px) {
  .mainVisual .copy-img {
    top: 30px;
    max-width: 250px;
    width: 100%;
  }
}
.mainVisual .copy-img img {
  width: 100%;
  height: auto;
}
.mainVisual .catchCopy {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 50px;
  text-align: center;
  max-width: 500px;
  background-color: rgba(255, 255, 255, 0.9019607843);
  border-radius: 15px;
  margin: 0 auto;
  padding: 20px;
  margin-top: -160px;
}
@media screen and (max-width: 1000px) {
  .mainVisual .catchCopy {
    max-width: 400px;
    margin-top: -120px;
  }
}
@media screen and (max-width: 767px) {
  .mainVisual .catchCopy {
    max-width: 350px;
    padding: 20px 10px;
  }
}
@media screen and (max-width: 500px) {
  .mainVisual .catchCopy {
    max-width: 300px;
  }
}
.mainVisual .catchCopy p {
  font-weight: 700;
  font-size: 25px;
  line-height: 1;
}
@media screen and (max-width: 1000px) {
  .mainVisual .catchCopy p {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .mainVisual .catchCopy p {
    font-size: 17px;
  }
}
@media screen and (max-width: 500px) {
  .mainVisual .catchCopy p {
    font-size: 15px;
  }
}
.mainVisual .catchCopy .catchCopy-list {
  display: flex;
  gap: 15px;
  flex-flow: column;
}
@media screen and (max-width: 1000px) {
  .mainVisual .catchCopy .catchCopy-list {
    gap: 10px;
  }
}
.mainVisual .catchCopy .catchCopy-list span {
  background-color: #036eb8;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(7.5rem, -1.25rem + 17.5vw, 11.875rem);
  padding: 5px 10px;
  text-align: center;
  border-radius: 5px;
  font-size: clamp(0.813rem, -0.063rem + 1.75vw, 1.25rem);
}
@media screen and (max-width: 500px) {
  .mainVisual .catchCopy .catchCopy-list span {
    width: calc(100% - 20px);
  }
}
.mainVisual .scroll-info {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  width: 50px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
  padding-bottom: 70px;
}
.mainVisual .scroll-info::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 30px;
  background: #036eb8;
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}
@media screen and (max-width: 1300px) {
  .mainVisual .scroll-info::after {
    animation: pathmove2 1.4s ease-in-out infinite;
  }
}
@keyframes pathmove {
  0% {
    height: 0;
    top: 110px;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 180px;
    opacity: 0;
  }
}
@keyframes pathmove2 {
  0% {
    height: 0;
    top: 80px;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 150px;
    opacity: 0;
  }
}
@media screen and (max-width: 1300px) {
  .mainVisual .scroll-info {
    width: 30px;
  }
}
.mainVisual .scroll-info span {
  font-size: 25px;
  color: #036eb8;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1300px) {
  .mainVisual .scroll-info span {
    font-size: 18px;
  }
}

main .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 70px 30px 0;
}
main .container .section-header {
  position: relative;
  font-size: 40px;
  font-weight: 700;
  padding: 0px 0 35px;
  margin-bottom: 50px;
  letter-spacing: 1px;
}
@media screen and (max-width: 1000px) {
  main .container .section-header {
    font-size: 35px;
    padding: 0px 0 25px;
  }
}
main .container .section-header:before {
  position: absolute;
  content: attr(data-en);
  left: 3px;
  font-size: 20px;
  color: #036eb8;
  bottom: 0;
  left: 0;
  right: 0;
}
@media screen and (max-width: 1000px) {
  main .container .section-header:before {
    font-size: 15px;
  }
}
main .container .section-header span {
  font-size: 40px;
}
@media screen and (max-width: 1000px) {
  main .container .section-header span {
    font-size: 35px;
  }
}
main .news {
  display: flex;
  gap: 70px;
}
@media screen and (max-width: 1000px) {
  main .news {
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  main .news {
    flex-flow: column;
    gap: 20px;
  }
}
main .news .section-header {
  margin-bottom: 25px;
}
main .news .news-title {
  min-width: 180px;
}
@media screen and (max-width: 767px) {
  main .news .news-title {
    min-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: wrap;
  }
}
@media screen and (max-width: 767px) {
  main .news .news-title .section-header {
    margin-bottom: 10px;
  }
}
main .news .news-content {
  width: 100%;
}
main .news .news-content ul li {
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid #999999;
  padding: 10px 5px;
}
@media screen and (max-width: 1000px) {
  main .news .news-content ul li {
    flex-flow: column;
    align-items: baseline;
    gap: 10px;
  }
}
main .news .news-content ul li .news-date {
  font-size: 15px;
  color: #036eb8;
}
@media screen and (max-width: 767px) {
  main .news .news-content ul li .news-date {
    font-size: 13px;
  }
}
main .news .news-content ul li .news-cate {
  font-size: 14px;
  min-width: 80px;
  color: #036eb8;
  border: 1px solid #036eb8;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 60px;
}
@media screen and (max-width: 1000px) {
  main .news .news-content ul li .news-cate {
    font-size: 12px;
  }
}
main .news .news-content ul li .news-title {
  font-weight: 700;
}
main .top-bnr {
  max-width: 1140px;
  margin: 50px auto 0;
  padding: 30px 20px 50px;
}
main .top-bnr ul {
  display: flex;
  gap: 40px;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  main .top-bnr ul {
    gap: 10px;
  }
}
@media screen and (max-width: 500px) {
  main .top-bnr ul {
    flex-flow: column;
  }
}
main .top-bnr ul li {
  width: 100%;
}
main .top-bnr ul li img {
  width: 100%;
}
main .service {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  margin-top: 70px;
  position: relative;
  background-color: #EFF3F9;
  padding-bottom: 70px;
  padding-top: 40px;
}
main .service::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 350px;
  background-image: url(./images/top/bg-service.jpg);
  background-size: cover;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 1000px) {
  main .service::before {
    height: 400px;
  }
}
main .service .section-header {
  text-align: center;
  color: white;
}
main .service .section-header::before {
  right: 0;
  color: white;
}
main .service .section-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 1px;
  height: 30px;
  background-color: white;
  bottom: -40px;
}
main .service .service-content {
  max-width: 1140px;
  margin: 0 auto;
  padding: 20px 30px 0;
}
@media screen and (max-width: 1000px) {
  main .service .service-content {
    padding: 33px 30px 0;
  }
}
@media screen and (max-width: 767px) {
  main .service .service-content {
    padding: 40px 30px 0;
  }
}
@media screen and (max-width: 500px) {
  main .service .service-content {
    padding: 33px 30px 0;
  }
}
main .service .service-content ul {
  display: flex;
  flex-flow: wrap;
  gap: 50px;
}
@media screen and (max-width: 1000px) {
  main .service .service-content ul {
    gap: 30px;
  }
}
main .service .service-content ul li {
  width: calc(33.3333333333% - 35px);
}
@media screen and (max-width: 1000px) {
  main .service .service-content ul li {
    width: calc(33.3333333333% - 20px);
  }
}
@media screen and (max-width: 767px) {
  main .service .service-content ul li {
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 500px) {
  main .service .service-content ul li {
    width: 100%;
  }
}
main .service .service-content ul li div a .service-img {
  width: 100%;
  height: 250px;
}
@media screen and (max-width: 1000px) {
  main .service .service-content ul li div a .service-img {
    height: 150px;
  }
}
main .service .service-content ul li div a .service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main .service .service-content .service-item {
  position: relative;
  background-color: white;
  padding: 25px 20px;
}
main .service .service-content .service-item::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  border-top: 25px solid transparent;
  border-right: 70px solid #036eb8;
}
@media screen and (max-width: 1000px) {
  main .service .service-content .service-item {
    padding: 20px 15px;
  }
}
main .service .service-content .service-item .service-title {
  font-size: 17px;
  margin-bottom: 5px;
}
main .service .service-content .service-item .service-text {
  font-size: 14px;
}
main .service .service-content .btn {
  background-color: transparent;
  color: #036eb8;
  border: 1px solid #036eb8;
  margin: 50px auto 0;
  height: 40px;
}
main .service .service-content .btn::after {
  border-top: solid 1px #036eb8;
  border-right: solid 1px #036eb8;
}
main .solutions {
  position: relative;
  max-width: 100%;
  margin: 70px auto 0;
  padding: 0 0px 70px;
}
main .solutions::after {
  content: "";
  width: 100%;
  height: 60%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #EFF3F9;
  z-index: -1;
}
main .solutions .section-header {
  text-align: center;
  color: #036eb8;
}
main .solutions .section-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 1px;
  height: 30px;
  bottom: -40px;
  background-color: #036eb8;
}
main .solutions .solutions-item {
  margin-top: 70px;
  /* 前へ次への矢印カスタマイズ */
  /* 前への矢印カスタマイズ */
  /* 次への矢印カスタマイズ */
  /* 画像サイズ調整 */
}
main .solutions .solutions-item ul li {
  background-color: white;
}
main .solutions .solutions-item ul li .solutions-img {
  width: 100%;
  height: 300px;
}
@media screen and (max-width: 767px) {
  main .solutions .solutions-item ul li .solutions-img {
    height: 250px;
  }
}
main .solutions .solutions-item ul li .solutions-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main .solutions .solutions-item ul li .solutions-wrap {
  padding: 25px 20px;
  min-height: 120px;
}
@media screen and (max-width: 767px) {
  main .solutions .solutions-item ul li .solutions-wrap {
    min-height: unset;
  }
}
main .solutions .solutions-item ul li .solutions-wrap .solutions-title {
  font-size: 17px;
  margin-bottom: 5px;
  height: 50px;
}
@media screen and (max-width: 767px) {
  main .solutions .solutions-item ul li .solutions-wrap .solutions-title {
    height: auto;
  }
}
main .solutions .solutions-item ul li .solutions-wrap .solutions-text {
  font-size: 14px;
}
main .solutions .solutions-item .swiper-button-prev,
main .solutions .solutions-item .swiper-button-next {
  height: 50px;
  width: 50px;
  margin-top: -90px;
}
main .solutions .solutions-item .swiper-button-prev::after,
main .solutions .solutions-item .swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 50px;
  margin: auto;
  width: 50px;
}
main .solutions .solutions-item .swiper-button-prev::after {
  background-image: url(./images/top/slide-prev.svg);
}
main .solutions .solutions-item .swiper-button-next::after {
  background-image: url(./images/top/slide-next.svg);
}
main .solutions .solutions-item .swiper-slide img {
  height: auto;
  width: 100%;
}
main .solutions .btn {
  background-color: transparent;
  color: #036eb8;
  border: 1px solid #036eb8;
  margin: 50px auto 0;
  height: 40px;
}
main .solutions .btn::after {
  border-top: solid 1px #036eb8;
  border-right: solid 1px #036eb8;
}
main .office {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  margin-top: 70px;
}
main .office .office-content {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  main .office .office-content {
    flex-flow: column;
  }
}
main .office .office-content img {
  max-width: 1000px;
  width: 100%;
  object-fit: cover;
  height: 530px;
}
@media screen and (max-width: 1000px) {
  main .office .office-content img {
    height: 300px;
  }
}
main .office .office-content .office-item {
  position: relative;
  margin-left: -100px;
  background-color: rgba(255, 255, 255, 0.8784313725);
  padding: 40px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  height: max-content;
  gap: 40px;
  box-shadow: 2px 2px 12px rgba(163, 163, 163, 0.5);
  margin-right: 40px;
}
main .office .office-content .office-item::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  border-top: 50px solid transparent;
  border-right: 110px solid #036eb8;
}
@media screen and (max-width: 1000px) {
  main .office .office-content .office-item {
    margin: -120px 20px 0;
    padding: 25px;
    gap: 20px;
  }
}
main .office .office-content .office-item .office-header .section-header {
  margin: 0;
  color: #036eb8;
  padding: 0px 0 30px;
}
main .office .office-content .office-item .office-header .section-header::before {
  top: unset;
  bottom: 0;
}
main .office .office-content .office-item .office-header .section-header::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 1px;
  background-color: #036eb8;
  left: 0;
  bottom: -10px;
}
main .office .office-content .office-item .btn {
  background-color: transparent;
  color: #036eb8;
  border: 1px solid #036eb8;
  height: 40px;
}
main .office .office-content .office-item .btn::after {
  border-top: solid 1px #036eb8;
  border-right: solid 1px #036eb8;
}
main .column {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  position: relative;
  margin-top: 70px;
}
main .column::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #036eb8;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  main .column::after {
    height: 70%;
  }
}
main .column .column-content {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0px 20px 50px;
}
main .column .column-content .column-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  main .column .column-content .column-header {
    flex-flow: column;
  }
}
main .column .column-content .column-header .section-header {
  margin: 0;
  color: #036eb8;
  padding: 0px 0 30px;
}
main .column .column-content .column-header .section-header::before {
  top: unset;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  main .column .column-content .column-header .section-header::before {
    text-align: center;
  }
}
main .column .column-content .column-header .btn {
  max-width: 200px;
}
main .column .column-content .column-item {
  margin-top: 50px;
}
main .column .column-content .column-item ul {
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 1000px) {
  main .column .column-content .column-item ul {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  main .column .column-content .column-item ul {
    flex-flow: column;
  }
}
main .column .column-content .column-item ul li {
  border: 1px solid #036eb8;
  padding: 20px 20px;
  background-color: white;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  main .column .column-content .column-item ul li {
    padding: 15px;
    width: calc(100% - 30px);
  }
}
main .column .column-content .column-item ul li div {
  display: flex;
  flex-flow: column;
  gap: 10px;
  align-items: center;
}
main .column .column-content .column-item ul li .column-title {
  position: relative;
  padding-bottom: 10px;
  font-weight: 700;
}
main .column .column-content .column-item ul li .column-title::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  background-color: #036eb8;
  width: 60px;
  height: 1px;
}
main .column .column-content .column-item ul li .column-text {
  margin-top: 20px;
  font-size: 15px;
}

.page-content,
.archive-content,
.single-content,
.editor-visual-editor {
  margin-top: 95px;
  padding-bottom: 50px;
}
@media screen and (max-width: 1000px) {
  .page-content,
  .archive-content,
  .single-content,
  .editor-visual-editor {
    margin-top: 55px;
    padding-bottom: 0px;
  }
}
.page-content .page-head,
.archive-content .page-head,
.single-content .page-head,
.editor-visual-editor .page-head {
  position: relative;
  width: 100%;
  height: 300px;
}
@media screen and (max-width: 767px) {
  .page-content .page-head,
  .archive-content .page-head,
  .single-content .page-head,
  .editor-visual-editor .page-head {
    height: 200px;
  }
}
.page-content .page-head::after,
.archive-content .page-head::after,
.single-content .page-head::after,
.editor-visual-editor .page-head::after {
  content: "";
  background-color: #036eb8;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page-content .page-head img,
.archive-content .page-head img,
.single-content .page-head img,
.editor-visual-editor .page-head img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.page-content .page-head h1,
.archive-content .page-head h1,
.single-content .page-head h1,
.editor-visual-editor .page-head h1 {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 700;
  color: white;
  letter-spacing: 2px;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  z-index: 5;
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  .page-content .page-head h1,
  .archive-content .page-head h1,
  .single-content .page-head h1,
  .editor-visual-editor .page-head h1 {
    font-size: 25px;
  }
}
.page-content main,
.page-content .editor-styles-wrapper,
.archive-content main,
.archive-content .editor-styles-wrapper,
.single-content main,
.single-content .editor-styles-wrapper,
.editor-visual-editor main,
.editor-visual-editor .editor-styles-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
  background-color: white;
}
.page-content main h2,
.page-content .editor-styles-wrapper h2,
.archive-content main h2,
.archive-content .editor-styles-wrapper h2,
.single-content main h2,
.single-content .editor-styles-wrapper h2,
.editor-visual-editor main h2,
.editor-visual-editor .editor-styles-wrapper h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  background-color: #036eb8;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 25px;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .page-content main h2,
  .page-content .editor-styles-wrapper h2,
  .archive-content main h2,
  .archive-content .editor-styles-wrapper h2,
  .single-content main h2,
  .single-content .editor-styles-wrapper h2,
  .editor-visual-editor main h2,
  .editor-visual-editor .editor-styles-wrapper h2 {
    font-size: 19px;
  }
}
.page-content main h3,
.page-content .editor-styles-wrapper h3,
.archive-content main h3,
.archive-content .editor-styles-wrapper h3,
.single-content main h3,
.single-content .editor-styles-wrapper h3,
.editor-visual-editor main h3,
.editor-visual-editor .editor-styles-wrapper h3 {
  padding-left: 30px;
  position: relative;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .page-content main h3,
  .page-content .editor-styles-wrapper h3,
  .archive-content main h3,
  .archive-content .editor-styles-wrapper h3,
  .single-content main h3,
  .single-content .editor-styles-wrapper h3,
  .editor-visual-editor main h3,
  .editor-visual-editor .editor-styles-wrapper h3 {
    font-size: 19px;
  }
}
.page-content main h3::before,
.page-content .editor-styles-wrapper h3::before,
.archive-content main h3::before,
.archive-content .editor-styles-wrapper h3::before,
.single-content main h3::before,
.single-content .editor-styles-wrapper h3::before,
.editor-visual-editor main h3::before,
.editor-visual-editor .editor-styles-wrapper h3::before {
  position: absolute;
  content: "";
  top: calc(50% - 1px);
  width: 20px;
  left: 0;
  height: 10px;
  border-top: solid 5px #036eb8;
}
.page-content main h4,
.page-content .editor-styles-wrapper h4,
.archive-content main h4,
.archive-content .editor-styles-wrapper h4,
.single-content main h4,
.single-content .editor-styles-wrapper h4,
.editor-visual-editor main h4,
.editor-visual-editor .editor-styles-wrapper h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
  color: #036eb8;
}
@media screen and (max-width: 767px) {
  .page-content main h4,
  .page-content .editor-styles-wrapper h4,
  .archive-content main h4,
  .archive-content .editor-styles-wrapper h4,
  .single-content main h4,
  .single-content .editor-styles-wrapper h4,
  .editor-visual-editor main h4,
  .editor-visual-editor .editor-styles-wrapper h4 {
    font-size: 16px;
  }
}
.page-content main h5,
.page-content .editor-styles-wrapper h5,
.archive-content main h5,
.archive-content .editor-styles-wrapper h5,
.single-content main h5,
.single-content .editor-styles-wrapper h5,
.editor-visual-editor main h5,
.editor-visual-editor .editor-styles-wrapper h5 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .page-content main h5,
  .page-content .editor-styles-wrapper h5,
  .archive-content main h5,
  .archive-content .editor-styles-wrapper h5,
  .single-content main h5,
  .single-content .editor-styles-wrapper h5,
  .editor-visual-editor main h5,
  .editor-visual-editor .editor-styles-wrapper h5 {
    font-size: 15px;
  }
}
.page-content main h6,
.page-content .editor-styles-wrapper h6,
.archive-content main h6,
.archive-content .editor-styles-wrapper h6,
.single-content main h6,
.single-content .editor-styles-wrapper h6,
.editor-visual-editor main h6,
.editor-visual-editor .editor-styles-wrapper h6 {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
  color: #777777;
}
@media screen and (max-width: 767px) {
  .page-content main h6,
  .page-content .editor-styles-wrapper h6,
  .archive-content main h6,
  .archive-content .editor-styles-wrapper h6,
  .single-content main h6,
  .single-content .editor-styles-wrapper h6,
  .editor-visual-editor main h6,
  .editor-visual-editor .editor-styles-wrapper h6 {
    font-size: 12px;
  }
}
.page-content main p,
.page-content .editor-styles-wrapper p,
.archive-content main p,
.archive-content .editor-styles-wrapper p,
.single-content main p,
.single-content .editor-styles-wrapper p,
.editor-visual-editor main p,
.editor-visual-editor .editor-styles-wrapper p {
  margin-bottom: 15px;
  word-break: break-word;
}
.page-content main ul, .page-content main ol,
.page-content .editor-styles-wrapper ul,
.page-content .editor-styles-wrapper ol,
.archive-content main ul,
.archive-content main ol,
.archive-content .editor-styles-wrapper ul,
.archive-content .editor-styles-wrapper ol,
.single-content main ul,
.single-content main ol,
.single-content .editor-styles-wrapper ul,
.single-content .editor-styles-wrapper ol,
.editor-visual-editor main ul,
.editor-visual-editor main ol,
.editor-visual-editor .editor-styles-wrapper ul,
.editor-visual-editor .editor-styles-wrapper ol {
  margin-bottom: 15px;
}
.page-content main table,
.page-content .editor-styles-wrapper table,
.archive-content main table,
.archive-content .editor-styles-wrapper table,
.single-content main table,
.single-content .editor-styles-wrapper table,
.editor-visual-editor main table,
.editor-visual-editor .editor-styles-wrapper table {
  width: 100%;
  margin-bottom: 70px;
  background-color: white;
}
.page-content main table tr:last-child,
.page-content .editor-styles-wrapper table tr:last-child,
.archive-content main table tr:last-child,
.archive-content .editor-styles-wrapper table tr:last-child,
.single-content main table tr:last-child,
.single-content .editor-styles-wrapper table tr:last-child,
.editor-visual-editor main table tr:last-child,
.editor-visual-editor .editor-styles-wrapper table tr:last-child {
  border-bottom: solid 1px #ccc;
}
.page-content main table tr:nth-child(odd) td,
.page-content .editor-styles-wrapper table tr:nth-child(odd) td,
.archive-content main table tr:nth-child(odd) td,
.archive-content .editor-styles-wrapper table tr:nth-child(odd) td,
.single-content main table tr:nth-child(odd) td,
.single-content .editor-styles-wrapper table tr:nth-child(odd) td,
.editor-visual-editor main table tr:nth-child(odd) td,
.editor-visual-editor .editor-styles-wrapper table tr:nth-child(odd) td {
  background-color: #f7f7f7;
}
.page-content main table th, .page-content main table td,
.page-content .editor-styles-wrapper table th,
.page-content .editor-styles-wrapper table td,
.archive-content main table th,
.archive-content main table td,
.archive-content .editor-styles-wrapper table th,
.archive-content .editor-styles-wrapper table td,
.single-content main table th,
.single-content main table td,
.single-content .editor-styles-wrapper table th,
.single-content .editor-styles-wrapper table td,
.editor-visual-editor main table th,
.editor-visual-editor main table td,
.editor-visual-editor .editor-styles-wrapper table th,
.editor-visual-editor .editor-styles-wrapper table td {
  vertical-align: middle;
}
.page-content main table th,
.page-content .editor-styles-wrapper table th,
.archive-content main table th,
.archive-content .editor-styles-wrapper table th,
.single-content main table th,
.single-content .editor-styles-wrapper table th,
.editor-visual-editor main table th,
.editor-visual-editor .editor-styles-wrapper table th {
  background: #e8e8e8;
  text-align: center;
  font-weight: bold;
  color: #3e3a39;
  padding: 15px;
  border: solid 1px #dadada;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .page-content main table th,
  .page-content .editor-styles-wrapper table th,
  .archive-content main table th,
  .archive-content .editor-styles-wrapper table th,
  .single-content main table th,
  .single-content .editor-styles-wrapper table th,
  .editor-visual-editor main table th,
  .editor-visual-editor .editor-styles-wrapper table th {
    padding: 8px;
  }
}
.page-content main table td,
.page-content .editor-styles-wrapper table td,
.archive-content main table td,
.archive-content .editor-styles-wrapper table td,
.single-content main table td,
.single-content .editor-styles-wrapper table td,
.editor-visual-editor main table td,
.editor-visual-editor .editor-styles-wrapper table td {
  padding: 15px;
  border: solid 1px #dadada;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .page-content main table td,
  .page-content .editor-styles-wrapper table td,
  .archive-content main table td,
  .archive-content .editor-styles-wrapper table td,
  .single-content main table td,
  .single-content .editor-styles-wrapper table td,
  .editor-visual-editor main table td,
  .editor-visual-editor .editor-styles-wrapper table td {
    padding: 8px;
    font-size: 13px;
  }
}
.page-content main .table2,
.page-content .editor-styles-wrapper .table2,
.archive-content main .table2,
.archive-content .editor-styles-wrapper .table2,
.single-content main .table2,
.single-content .editor-styles-wrapper .table2,
.editor-visual-editor main .table2,
.editor-visual-editor .editor-styles-wrapper .table2 {
  margin-bottom: 50px;
  background-color: white;
}
@media screen and (max-width: 767px) {
  .page-content main .table2,
  .page-content .editor-styles-wrapper .table2,
  .archive-content main .table2,
  .archive-content .editor-styles-wrapper .table2,
  .single-content main .table2,
  .single-content .editor-styles-wrapper .table2,
  .editor-visual-editor main .table2,
  .editor-visual-editor .editor-styles-wrapper .table2 {
    width: 100%;
  }
}
.page-content main .table2 tr:last-child,
.page-content .editor-styles-wrapper .table2 tr:last-child,
.archive-content main .table2 tr:last-child,
.archive-content .editor-styles-wrapper .table2 tr:last-child,
.single-content main .table2 tr:last-child,
.single-content .editor-styles-wrapper .table2 tr:last-child,
.editor-visual-editor main .table2 tr:last-child,
.editor-visual-editor .editor-styles-wrapper .table2 tr:last-child {
  border-bottom: solid 1px #ccc;
}
.page-content main .table2 tr:nth-child(odd) td,
.page-content .editor-styles-wrapper .table2 tr:nth-child(odd) td,
.archive-content main .table2 tr:nth-child(odd) td,
.archive-content .editor-styles-wrapper .table2 tr:nth-child(odd) td,
.single-content main .table2 tr:nth-child(odd) td,
.single-content .editor-styles-wrapper .table2 tr:nth-child(odd) td,
.editor-visual-editor main .table2 tr:nth-child(odd) td,
.editor-visual-editor .editor-styles-wrapper .table2 tr:nth-child(odd) td {
  background-color: #f7f7f7;
}
@media screen and (max-width: 767px) {
  .page-content main .table2 th, .page-content main .table2 td,
  .page-content .editor-styles-wrapper .table2 th,
  .page-content .editor-styles-wrapper .table2 td,
  .archive-content main .table2 th,
  .archive-content main .table2 td,
  .archive-content .editor-styles-wrapper .table2 th,
  .archive-content .editor-styles-wrapper .table2 td,
  .single-content main .table2 th,
  .single-content main .table2 td,
  .single-content .editor-styles-wrapper .table2 th,
  .single-content .editor-styles-wrapper .table2 td,
  .editor-visual-editor main .table2 th,
  .editor-visual-editor main .table2 td,
  .editor-visual-editor .editor-styles-wrapper .table2 th,
  .editor-visual-editor .editor-styles-wrapper .table2 td {
    display: block;
    width: 100% !important;
    border-bottom: none !important;
    word-break: break-word;
  }
}
.page-content main .table2 th,
.page-content .editor-styles-wrapper .table2 th,
.archive-content main .table2 th,
.archive-content .editor-styles-wrapper .table2 th,
.single-content main .table2 th,
.single-content .editor-styles-wrapper .table2 th,
.editor-visual-editor main .table2 th,
.editor-visual-editor .editor-styles-wrapper .table2 th {
  background: #e8e8e8;
  width: 25%;
  text-align: center;
  font-weight: bold;
  color: #3e3a39;
  padding: 15px;
  border: solid 1px #dadada;
  box-sizing: border-box;
}
.page-content main .table2 td,
.page-content .editor-styles-wrapper .table2 td,
.archive-content main .table2 td,
.archive-content .editor-styles-wrapper .table2 td,
.single-content main .table2 td,
.single-content .editor-styles-wrapper .table2 td,
.editor-visual-editor main .table2 td,
.editor-visual-editor .editor-styles-wrapper .table2 td {
  padding: 15px;
  border: solid 1px #dadada;
  box-sizing: border-box;
}
.page-content main .row,
.page-content .editor-styles-wrapper .row,
.archive-content main .row,
.archive-content .editor-styles-wrapper .row,
.single-content main .row,
.single-content .editor-styles-wrapper .row,
.editor-visual-editor main .row,
.editor-visual-editor .editor-styles-wrapper .row {
  display: flex;
  gap: 50px;
}
.page-content main .page-number,
.page-content .editor-styles-wrapper .page-number,
.archive-content main .page-number,
.archive-content .editor-styles-wrapper .page-number,
.single-content main .page-number,
.single-content .editor-styles-wrapper .page-number,
.editor-visual-editor main .page-number,
.editor-visual-editor .editor-styles-wrapper .page-number {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .page-content main .page-number,
  .page-content .editor-styles-wrapper .page-number,
  .archive-content main .page-number,
  .archive-content .editor-styles-wrapper .page-number,
  .single-content main .page-number,
  .single-content .editor-styles-wrapper .page-number,
  .editor-visual-editor main .page-number,
  .editor-visual-editor .editor-styles-wrapper .page-number {
    margin-top: 50px;
    gap: 5px;
  }
}
.page-content main .page-number .page-numbers,
.page-content .editor-styles-wrapper .page-number .page-numbers,
.archive-content main .page-number .page-numbers,
.archive-content .editor-styles-wrapper .page-number .page-numbers,
.single-content main .page-number .page-numbers,
.single-content .editor-styles-wrapper .page-number .page-numbers,
.editor-visual-editor main .page-number .page-numbers,
.editor-visual-editor .editor-styles-wrapper .page-number .page-numbers {
  width: 40px;
  height: 40px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #036eb8;
  color: #036eb8;
  font-size: 14px;
  margin-bottom: 0;
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .page-content main .page-number .page-numbers,
  .page-content .editor-styles-wrapper .page-number .page-numbers,
  .archive-content main .page-number .page-numbers,
  .archive-content .editor-styles-wrapper .page-number .page-numbers,
  .single-content main .page-number .page-numbers,
  .single-content .editor-styles-wrapper .page-number .page-numbers,
  .editor-visual-editor main .page-number .page-numbers,
  .editor-visual-editor .editor-styles-wrapper .page-number .page-numbers {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }
}
.page-content main .page-number .page-numbers.current,
.page-content .editor-styles-wrapper .page-number .page-numbers.current,
.archive-content main .page-number .page-numbers.current,
.archive-content .editor-styles-wrapper .page-number .page-numbers.current,
.single-content main .page-number .page-numbers.current,
.single-content .editor-styles-wrapper .page-number .page-numbers.current,
.editor-visual-editor main .page-number .page-numbers.current,
.editor-visual-editor .editor-styles-wrapper .page-number .page-numbers.current {
  background-color: #036eb8;
  color: white;
}

.editor-styles-wrapper .editor-visual-editor__post-title-wrapper {
  margin-top: 0 !important;
  margin-bottom: 50px;
}
.editor-styles-wrapper .editor-visual-editor__post-title-wrapper h1 {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
}
.editor-styles-wrapper h3 {
  padding-left: 50px !important;
}
.editor-styles-wrapper h3::before {
  left: 20px !important;
}

#service {
  max-width: 100%;
  padding: 0;
  position: relative;
  padding-bottom: 50px;
  background-color: #f7f7f7;
}
#service main {
  background-color: #f7f7f7;
}
#service .section-header {
  text-align: center;
  color: #036eb8;
  background-color: transparent;
  font-size: 40px;
  position: relative;
  padding: 0;
}
#service .section-header::before {
  position: absolute;
  content: attr(data-en);
  left: 0;
  font-size: 20px;
  color: #346545;
  right: 0;
  bottom: -35px;
  color: #036eb8;
}
@media screen and (max-width: 767px) {
  #service .section-header::before {
    font-size: 15px;
    bottom: -30px;
  }
}
#service .section-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 1px;
  height: 30px;
  background-color: #036eb8;
  top: 100px;
}
@media screen and (max-width: 767px) {
  #service .section-header::after {
    top: 85px;
  }
}
@media screen and (max-width: 767px) {
  #service .section-header {
    font-size: 30px;
  }
}
#service .service-content {
  padding: 0;
  margin-top: 130px;
}
@media screen and (max-width: 767px) {
  #service .service-content {
    margin-top: 110px;
  }
}
#service .service-content .page-copy {
  text-align: center;
  margin-bottom: 50px;
  line-height: 2;
}
#service .service-content .service-top-img {
  text-align: center;
  margin-bottom: 50px;
}
#service .service-content ul {
  display: flex;
  flex-flow: wrap;
  gap: 50px;
}
@media screen and (max-width: 1000px) {
  #service .service-content ul {
    gap: 30px;
  }
}
#service .service-content ul li {
  width: calc(33.3333333333% - 35px);
}
@media screen and (max-width: 1000px) {
  #service .service-content ul li {
    width: calc(33.3333333333% - 20px);
  }
}
@media screen and (max-width: 767px) {
  #service .service-content ul li {
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 500px) {
  #service .service-content ul li {
    width: 100%;
  }
}
#service .service-content ul li div a .service-img {
  width: 100%;
  height: 250px;
}
@media screen and (max-width: 1000px) {
  #service .service-content ul li div a .service-img {
    height: 150px;
  }
}
#service .service-content ul li div a .service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#service .service-content .service-item {
  position: relative;
  background-color: white;
  padding: 25px 20px;
}
#service .service-content .service-item::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  border-top: 25px solid transparent;
  border-right: 70px solid #036eb8;
}
@media screen and (max-width: 1000px) {
  #service .service-content .service-item {
    padding: 20px 15px;
  }
}
#service .service-content .service-item .service-title {
  font-size: 17px;
  margin-bottom: 5px;
}
#service .service-content .service-item .service-text {
  font-size: 14px;
}

#solutions {
  max-width: 100%;
  padding: 0;
  position: relative;
  padding-bottom: 50px;
  background-color: #f7f7f7;
}
#solutions main {
  background-color: #f7f7f7;
}
#solutions .section-header {
  text-align: center;
  color: #036eb8;
  background-color: transparent;
  font-size: 40px;
  position: relative;
  padding: 0;
}
#solutions .section-header::before {
  position: absolute;
  content: attr(data-en);
  left: 0;
  font-size: 20px;
  color: #346545;
  right: 0;
  bottom: -35px;
  color: #036eb8;
}
@media screen and (max-width: 767px) {
  #solutions .section-header::before {
    font-size: 15px;
    bottom: -30px;
  }
}
#solutions .section-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 1px;
  height: 30px;
  background-color: #036eb8;
  top: 100px;
}
@media screen and (max-width: 767px) {
  #solutions .section-header::after {
    top: 85px;
  }
}
@media screen and (max-width: 767px) {
  #solutions .section-header {
    font-size: 30px;
  }
}
#solutions .solutions-content {
  padding: 0;
  margin-top: 130px;
}
@media screen and (max-width: 767px) {
  #solutions .solutions-content {
    margin-top: 110px;
  }
}
#solutions .solutions-content ul {
  display: flex;
  flex-flow: wrap;
  gap: 50px;
}
#solutions .solutions-content ul li {
  width: 100%;
}
#solutions .solutions-content ul li div a .solutions-img {
  width: 100%;
  height: 250px;
}
@media screen and (max-width: 1000px) {
  #solutions .solutions-content ul li div a .solutions-img {
    height: 150px;
  }
}
#solutions .solutions-content ul li div a .solutions-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#solutions .solutions-content .solutions-number {
  font-size: 30px;
  color: #036eb8;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #solutions .solutions-content .solutions-number {
    font-size: 23px;
  }
}
#solutions .solutions-content .solutions-item {
  position: relative;
  background-color: white;
  padding: 30px;
}
#solutions .solutions-content .solutions-item h3 {
  font-size: 19px;
}
#solutions .solutions-content .solutions-item p {
  margin: 0;
}
#solutions .solutions-content .solutions-item .solutions-q {
  margin-bottom: 40px;
}

#faq {
  max-width: 100%;
  padding: 0;
  position: relative;
  padding-bottom: 50px;
  background-color: #f7f7f7;
}
#faq main {
  background-color: #f7f7f7;
}
#faq .section-header {
  text-align: center;
  color: #036eb8;
  background-color: transparent;
  font-size: 40px;
  position: relative;
  padding: 0;
}
#faq .section-header::before {
  position: absolute;
  content: attr(data-en);
  left: 0;
  font-size: 20px;
  color: #346545;
  right: 0;
  bottom: -35px;
  color: #036eb8;
}
@media screen and (max-width: 767px) {
  #faq .section-header::before {
    font-size: 15px;
    bottom: -30px;
  }
}
#faq .section-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 1px;
  height: 30px;
  background-color: #036eb8;
  top: 100px;
}
@media screen and (max-width: 767px) {
  #faq .section-header::after {
    top: 85px;
  }
}
@media screen and (max-width: 767px) {
  #faq .section-header {
    font-size: 30px;
  }
}
#faq .faq-content {
  padding: 0;
  margin-top: 130px;
}
@media screen and (max-width: 767px) {
  #faq .faq-content {
    margin-top: 110px;
  }
}
#faq .faq-content ul {
  display: flex;
  flex-flow: wrap;
  gap: 50px;
}
#faq .faq-content ul li {
  width: 100%;
}
#faq .faq-content ul li h3 {
  padding: 0;
  padding-bottom: 15px;
  color: #036eb8;
  border-bottom: 1px solid #036eb8;
}
#faq .faq-content ul li h3::before {
  content: unset;
}
#faq .faq-content ul li a .faq-img {
  width: 100%;
  height: 250px;
}
@media screen and (max-width: 1000px) {
  #faq .faq-content ul li a .faq-img {
    height: 150px;
  }
}
#faq .faq-content ul li a .faq-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#faq .faq-content .faq-item {
  position: relative;
  background-color: white;
  padding: 30px;
}
#faq .faq-content .faq-item h3 {
  font-size: 19px;
}
#faq .faq-content .faq-item p {
  margin: 0;
}

#pricelist {
  max-width: 100%;
  padding: 0;
  position: relative;
  padding-bottom: 50px;
  background-color: #f7f7f7;
}
#pricelist main {
  background-color: #f7f7f7;
}
#pricelist .section-header {
  text-align: center;
  color: #036eb8;
  background-color: transparent;
  font-size: 40px;
  position: relative;
  padding: 0;
}
#pricelist .section-header::before {
  position: absolute;
  content: attr(data-en);
  left: 0;
  font-size: 20px;
  color: #346545;
  right: 0;
  bottom: -35px;
  color: #036eb8;
}
@media screen and (max-width: 767px) {
  #pricelist .section-header::before {
    font-size: 15px;
    bottom: -30px;
  }
}
#pricelist .section-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 1px;
  height: 30px;
  background-color: #036eb8;
  top: 100px;
}
@media screen and (max-width: 767px) {
  #pricelist .section-header::after {
    top: 85px;
  }
}
@media screen and (max-width: 767px) {
  #pricelist .section-header {
    font-size: 30px;
  }
}
#pricelist .pricelist-content {
  padding: 0;
  margin-top: 130px;
}
@media screen and (max-width: 767px) {
  #pricelist .pricelist-content {
    margin-top: 110px;
  }
}

#column .column-content li {
  margin-bottom: 30px;
  padding: 0px 10px 30px 10px;
  border-bottom: 1px solid #d5d5d5;
}
#column .column-content li .column-date {
  font-size: 15px;
  color: #036eb8;
}
@media screen and (max-width: 767px) {
  #column .column-content li .column-date {
    font-size: 13px;
  }
}
#column .column-content li a {
  display: flex;
  flex-flow: column;
  gap: 5px;
}
#column .column-content li a .column-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}
#column .column-content li a .column-text {
  margin-bottom: 0;
}

#office {
  max-width: 100%;
  padding: 0;
  position: relative;
  padding-bottom: 50px;
  background-color: rgba(194, 215, 219, 0.2);
}
#office main {
  background-color: transparent;
}
#office .section-header {
  text-align: center;
  color: #036eb8;
  background-color: transparent;
  font-size: 40px;
  position: relative;
  padding: 30px 0 40px 0;
}
#office .section-header::before {
  position: absolute;
  content: attr(data-en);
  left: 0;
  font-size: 20px;
  color: #346545;
  right: 0;
  top: 0;
  color: #036eb8;
}
#office .section-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 1px;
  height: 30px;
  background-color: #036eb8;
  bottom: 0px;
}
@media screen and (max-width: 767px) {
  #office .section-header {
    font-size: 30px;
  }
}
#office .office-content {
  padding: 0;
  margin-top: 50px;
}
#office .office-content .office-about {
  display: flex;
  flex-flow: column;
  align-items: flex-end;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  #office .office-content .office-about {
    flex-flow: column;
  }
}
#office .office-content .office-about .office-img {
  min-width: 100%;
  height: 50vw;
  max-height: 700px;
}
@media screen and (max-width: 767px) {
  #office .office-content .office-about .office-img {
    height: 60vw;
  }
}
#office .office-content .office-about .office-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
#office .office-content .office-about p {
  margin-bottom: 25px;
}
#office .office-content .office-about p a {
  color: #ff6600;
  text-decoration: underline;
}
#office .office-content .office-about .office-text-block {
  background-color: white;
  border-radius: 20px;
  padding: 30px;
  margin-top: 30px;
}
#office .office-content iframe {
  width: 100%;
  height: 300px;
}
#office .office-content table tbody tr th {
  width: 150px;
}
#office .office-content table tbody tr td a {
  color: #ff6600;
  text-decoration: underline;
}
#office .office-content table tbody tr td p {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  #office .office-content table tbody tr th, #office .office-content table tbody tr td {
    display: block;
    width: 100%;
  }
}
#office .office-content .office-img-list {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 500px) {
  #office .office-content .office-img-list {
    flex-flow: wrap;
  }
}
#office .office-content .office-img-list li {
  max-width: 300px;
  width: 100%;
  height: 20vw;
  max-height: 200px;
}
@media screen and (max-width: 500px) {
  #office .office-content .office-img-list li {
    width: 100%;
    height: 40vw;
  }
}
#office .office-content .office-img-list li img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
#office .breadcrumb {
  background-color: white;
}

#news .news-content li {
  margin-bottom: 30px;
  padding: 0px 10px 30px 10px;
  border-bottom: 1px solid #d5d5d5;
}
#news .news-content li .news-date {
  font-size: 15px;
  color: #036eb8;
}
@media screen and (max-width: 767px) {
  #news .news-content li .news-date {
    font-size: 13px;
  }
}
#news .news-content li a {
  display: flex;
  flex-flow: column;
  gap: 5px;
}
#news .news-content li a .news-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}
#news .news-content li a .news-text {
  margin-bottom: 0;
}

#security h2,
.editor-visual-editor h2 {
  margin-top: 50px;
}
#security .security-list,
.editor-visual-editor .security-list {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #f9f9f9;
  padding: 20px 10px;
}
@media screen and (max-width: 767px) {
  #security .security-list,
  .editor-visual-editor .security-list {
    flex-flow: column;
  }
}
#security .security-list img,
.editor-visual-editor .security-list img {
  background-color: #036EB8;
  width: 100%;
  max-width: 100px;
  border-radius: 100px;
}
#security .security-list h3,
.editor-visual-editor .security-list h3 {
  padding: 0 !important;
  margin-top: 0;
  margin-bottom: 10px;
}
#security .security-list h3::before,
.editor-visual-editor .security-list h3::before {
  content: unset;
}
#security .security-list p,
.editor-visual-editor .security-list p {
  margin: 0;
}
#security .security-mark img,
.editor-visual-editor .security-mark img {
  max-width: 100%;
  width: 100%;
}
#security .security-mark p,
.editor-visual-editor .security-mark p {
  margin: 0;
}

#recruit ul, #recruit ol,
.editor-visual-editor ul,
.editor-visual-editor ol {
  padding-left: 20px;
}
#recruit ul,
.editor-visual-editor ul {
  list-style: disc;
}
#recruit ol,
.editor-visual-editor ol {
  list-style: decimal;
}
#recruit .btn,
.editor-visual-editor .btn {
  margin: 0 auto;
}
#recruit img,
.editor-visual-editor img {
  width: 100%;
}

#recruit-info h3,
.editor-visual-editor h3 {
  margin-top: 40px;
}
#recruit-info table,
.editor-visual-editor table {
  margin-bottom: 30px;
}
#recruit-info .btn,
.editor-visual-editor .btn {
  margin: 0 auto 80px;
  background-color: #ffa602;
}

#contact .required, #entry .required {
  background-color: #c70000;
  color: white;
  font-size: 10px;
  margin-left: 8px;
  padding: 2px 8px 3px 8px;
  border-radius: 50px;
  position: relative;
  top: -3px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  #contact .required, #entry .required {
    display: block;
    width: fit-content;
    position: unset;
    margin: 5px auto 0;
    padding: 2px 7px;
  }
}
@media screen and (max-width: 500px) {
  #contact .required, #entry .required {
    display: inline-block;
    margin-left: 10px;
  }
}
#contact .privacy-scrollBox, #entry .privacy-scrollBox {
  height: 200px;
  overflow-y: scroll;
  padding: 10px;
  width: calc(100% - 20px);
  border: 1px solid #d5d5d5;
}
#contact .mb0, #entry .mb0 {
  margin-bottom: 0;
}
#contact table, #entry table {
  width: 100%;
}
#contact table th, #entry table th {
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  #contact table th, #entry table th {
    width: 70px;
    padding: 10px 5px;
  }
}
@media screen and (max-width: 500px) {
  #contact table th, #contact table td, #entry table th, #entry table td {
    width: 100%;
    display: block !important;
  }
}
#contact input, #contact textarea, #entry input, #entry textarea {
  padding: 6px 10px;
  outline: unset;
  border: 1px solid #dfdfdf;
  border-radius: 5px;
}
#contact textarea, #entry textarea {
  width: calc(100% - 20px);
}
#contact input, #entry input {
  margin: 0px 2px 10px 2px;
}
#contact input:last-child, #entry input:last-child {
  margin-bottom: 0;
}
#contact .privacy-check input, #entry .privacy-check input {
  margin: 0px 5px 0px 0px;
}
#contact .submit-btn, #entry .submit-btn {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
#contact .submit-btn input, #entry .submit-btn input {
  margin: 0;
  width: 200px;
  background-color: #036eb8;
  border: 0;
  color: white;
  cursor: pointer;
  font-weight: 700;
  border-radius: 100px;
  padding: 7px 20px;
  font-size: 16px;
  letter-spacing: 5px;
  display: flex;
  justify-content: center;
}
#contact .submit-btn .send_btn2, #entry .submit-btn .send_btn2 {
  display: none;
}
#contact .mwform-checkbox-field, #entry .mwform-checkbox-field {
  display: block;
  margin: 0;
}

.mw_wp_form_confirm .required {
  display: none;
}
.mw_wp_form_confirm .submit-btn {
  margin: 0 auto;
  display: flex;
  margin-top: 40px;
  gap: 20px;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.mw_wp_form_confirm .submit-btn input {
  margin: 0;
  width: 200px;
  background-color: #036eb8;
  border: 0;
  color: white;
  cursor: pointer;
  font-weight: 700;
  border-radius: 100px;
  padding: 7px 20px;
  font-size: 16px;
  letter-spacing: 5px;
  display: flex;
  justify-content: center;
}

.mw_wp_form_complete .btm-txt {
  text-align: center;
  line-height: 2.5;
}

.single .single-content main a {
  text-decoration: underline;
}

.banner {
  width: 100%;
  background-color: #036eb8;
}
.banner .banner-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}
.banner .banner-content ul {
  display: flex;
  gap: 30px;
  flex-flow: wrap;
}
@media screen and (max-width: 500px) {
  .banner .banner-content ul {
    flex-flow: column;
  }
}
.banner .banner-content ul li {
  width: calc(50% - 20px);
  background-color: white;
}
@media screen and (max-width: 500px) {
  .banner .banner-content ul li {
    width: 100%;
  }
}
.banner .banner-content ul li a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  height: 100%;
  padding-right: 50px;
}
@media screen and (max-width: 1000px) {
  .banner .banner-content ul li a {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .banner .banner-content ul li a {
    flex-flow: column;
    padding: 0;
    align-items: baseline;
    gap: 0;
  }
}
.banner .banner-content ul li a img {
  object-fit: cover;
  width: 230px;
  height: 100%;
}
@media screen and (max-width: 1000px) {
  .banner .banner-content ul li a img {
    width: 170px;
  }
}
@media screen and (max-width: 767px) {
  .banner .banner-content ul li a img {
    width: 100%;
    height: 150px;
  }
}
.banner .banner-content ul li a p {
  display: flex;
  flex-flow: column;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .banner .banner-content ul li a p {
    padding: 15px 15px 30px 15px;
  }
}
.banner .banner-content ul li a .footer-banner-title {
  color: #036eb8;
  font-weight: 700;
  font-size: 17px;
}
.banner .banner-content ul li a .arrow {
  display: inline-block;
  vertical-align: middle;
  color: #036eb8;
  line-height: 1;
  position: absolute;
  width: 30px;
  height: 1px;
  background: currentColor;
  position: absolute;
  right: 10px;
}
.banner .banner-content ul li a .arrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 1px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  position: absolute;
  top: 50%;
  right: -0.05em;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .banner .banner-content ul li a .arrow {
    bottom: 20px;
    right: 10px;
  }
}

.contact {
  position: relative;
  text-align: center;
  padding-top: 100px;
  color: #036eb8;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0px 20px 50px;
  padding-top: 80px;
}
.contact::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 60px;
  background-color: #036eb8;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.contact .contact-header h2 {
  padding: 0;
  margin-bottom: 20px;
  font-size: 35px;
  font-weight: 700;
}
.contact .contact-header p {
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .contact .contact-header p br {
    display: none;
  }
}
.contact .contact-item {
  display: flex;
  align-items: center;
  gap: 50px;
  justify-content: center;
  margin-top: 50px;
}
@media screen and (max-width: 1000px) {
  .contact .contact-item {
    flex-flow: column;
    gap: 30px;
  }
}
.contact .contact-item .contactBtn, .contact .contact-item .telBtn {
  height: 80px;
  width: calc(50% - 40px);
  max-width: unset;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  .contact .contact-item .contactBtn, .contact .contact-item .telBtn {
    width: calc(100% - 40px);
  }
}
.contact .contact-item .telBtn {
  background-color: #036eb8;
  color: white;
}
.contact .contact-item .telBtn div {
  text-align: left;
}
.contact .contact-item .telBtn p {
  font-size: 40px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .contact .contact-item .telBtn p {
    font-size: 33px;
  }
}
.contact .contact-item .telBtn span {
  font-size: 13px;
}
.contact .contact-item .telBtn img {
  width: 20px;
  margin-right: 20px;
  margin-top: -20px;
}
@media screen and (max-width: 767px) {
  .contact .contact-item .telBtn img {
    width: 15px;
    margin-right: 12px;
  }
}
.contact .contact-item .contactBtn {
  background-color: white;
  color: #036eb8;
  border: 1px solid #036eb8;
}
.contact .contact-item .contactBtn span {
  font-size: 30px;
}
@media screen and (max-width: 767px) {
  .contact .contact-item .contactBtn span {
    font-size: 25px;
  }
}
.contact .contact-item .contactBtn img {
  width: 30px;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .contact .contact-item .contactBtn img {
    margin-right: 10px;
  }
}

.footer-bnr, .footer-mark {
  max-width: 1140px;
  margin: 0 auto;
  padding: 30px 20px 50px;
}
.footer-bnr ul, .footer-mark ul {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 500px) {
  .footer-bnr ul, .footer-mark ul {
    flex-flow: wrap;
  }
}
.footer-bnr ul li, .footer-mark ul li {
  width: 100%;
}
@media screen and (max-width: 500px) {
  .footer-bnr ul li, .footer-mark ul li {
    text-align: center;
  }
}

.footer-mark ul li {
  max-width: 90px;
}

footer {
  margin-top: 95px;
  border-top: 5px solid #036eb8;
}
@media screen and (max-width: 767px) {
  footer {
    margin-top: 50px;
  }
}
footer .ftrContent {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px 50px;
  text-align: center;
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  footer .ftrContent {
    flex-flow: column;
  }
}
footer .ftrContent > div {
  text-align: left;
}
footer .ftrContent .logoImg {
  display: inline-block;
  margin-bottom: 20px;
  max-width: 500px;
}
@media screen and (max-width: 767px) {
  footer .ftrContent .logoImg {
    max-width: 210px;
  }
}
footer .ftrContent p span {
  display: block;
  margin-bottom: 10px;
}
footer .ftrContent nav {
  display: flex;
  gap: 5px 20px;
  align-items: center;
  justify-content: center;
  flex-flow: wrap;
  gap: 60px;
}
@media screen and (max-width: 1000px) {
  footer .ftrContent nav {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 500px) {
  footer .ftrContent nav {
    flex-flow: column;
    align-items: baseline;
    width: 100%;
    gap: 20px;
  }
}
footer .ftrContent nav ul {
  display: flex;
  flex-flow: column;
  align-items: baseline;
  gap: 20px;
  justify-content: space-between;
}
footer .ftrContent nav ul li {
  position: relative;
  padding-left: 20px;
}
footer .ftrContent nav ul li::after {
  content: "";
  border: 0;
  border-top: solid 1px #036eb8;
  border-right: solid 1px #036eb8;
  display: inline-block;
  width: 7px;
  height: 7px;
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%) rotate(45deg);
}
footer .ftrContent nav ul li a {
  font-size: 15px;
}
footer .copyright {
  padding: 10px 0;
  background: #036eb8;
  color: #fff;
}
footer .copyright p {
  text-align: center;
}/*# sourceMappingURL=style.css.map */
.mainVisual {
  position: relative;
}

/* ===============================
   PC デフォルト：四隅に4マーク
================================ */
.top-marks {
  z-index: 3;
}

.top-mark {
  position: absolute;
}

.top-mark img {
  width: 100%;
  height: auto;
}

/* PC デフォルト（四隅・大きめ） */
.top-mark1 {
  top: 10%;
  left: 8%;
  width: 260px;
}

.top-mark2 {
  bottom: 10%;
  left: 8%;
  width: 260px;
}

.top-mark3 {
  top: 10%;
  right: 8%;
  width: 260px;
}

.top-mark4 {
  bottom: 10%;
  right: 8%;
  width: 260px;
}

/* 1300px 以下（小さめPC・ノートPC）
   → 4マークだけちょい小さく
-------------------------------- */
@media screen and (max-width: 1300px) and (min-width: 1025px) {
  .top-mark1,
  .top-mark2,
  .top-mark3,
  .top-mark4 {
    width: 220px;
  }
}

/* ===============================
   1024px以下：SP & iPad
   攻める/守る → 4マーク → コピー
================================ */
@media screen and (max-width: 1024px) {

  /* メインビジュアル */
  .mainVisual {
    position: relative;
    height: 500px;
    padding: 0;
    margin-top: 55px;
  }

  /* 攻める・守る */
  .mainVisual .copy-img {
    position: absolute;
    top: 12px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 150px;
    max-width: 150px;
    display: flex;
    justify-content: center;
    z-index: 3;
  }

  .mainVisual .copy-img img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* 4マーク（中央2×2グリッド） */
  .top-marks {
    position: absolute;
    top: 170px;              /* ← SPのときはここで縦位置調整 */
    left: 0;
    right: 0;
    margin: 0 auto;

    width: calc(100% - 40px);
    max-width: 280px;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:
      "m1 m3"
      "m2 m4";

    gap: 6px;
    z-index: 2;
  }

  .top-mark1 { grid-area: m1; }
  .top-mark2 { grid-area: m2; }
  .top-mark3 { grid-area: m3; }
  .top-mark4 { grid-area: m4; }

  .top-marks .top-mark,
  .top-marks .top-mark1,
  .top-marks .top-mark2,
  .top-marks .top-mark3,
  .top-marks .top-mark4 {
    position: static !important;
    width: 100% !important;
  }

  .top-marks img {
    width: 100%;
    height: auto;
    transform: scale(0.85);
    display: block;
  }

  /* キャッチコピー（SP用） */
  .mainVisual .catchCopy {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 40px;
    max-width: 300px;
    padding: 8px 8px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-flow: column;
    align-items: center;
    z-index: 4;
  }

  .mainVisual .catchCopy-list {
    width: 100%;
  }

  .mainVisual .catchCopy p {
    font-size: 12px;
    line-height: 1.35;
  }

  /* SCROLL表示OFF */
  .mainVisual .scroll-info {
    display: none !important;
  }
}

/* ===========================
   1300px以上：攻める・守る 画像を大きく
=========================== */
@media screen and (min-width: 1300px) {
  .mainVisual .copy-img {
    width: 340px;
    max-width: 340px;
  }
}

/* ===========================
   1200〜1500px前後：
   ノートPC向けにキャッチコピーを少し小さく
=========================== */
@media screen and (max-width: 1500px) and (min-width: 1025px) {

  /* ==== 攻める・守る（copy-img）を少し小さく ==== */
  .mainVisual .copy-img {
    width: 260px !important;   /* ← PCより少し小さめに */
    max-width: 260px !important;
  }

  /* ==== 白い枠と文字 (あなたの調整) ==== */
  .mainVisual .catchCopy {
    max-width: 300px !important;
    padding: 10px 12px !important;
  }

  .mainVisual .catchCopy p {
    font-size: 15px !important;
    line-height: 1.6 !important;
  }
}

