@charset "UTF-8";
/*
ユーザーページ、admin周りで使うCSS
*/
:root {
  --header-h-pc: 60px;
  --header-h-sp: 50px;
}

body.is-subnab-stuck {
  --header-h-pc: 60px;
}

/*
ユーザーページ、admin周りで使うCSS
*/
@media screen and (min-width: 768px) {
  .HIDE-PC {
    display: none !important;
  }
}
@media screen and (max-width: 767.9px) {
  .HIDE-SP {
    display: none !important;
  }
}
@media screen and (min-width: 980px) {
  .HIDE-PC980 {
    display: none !important;
  }
}
@media screen and (max-width: 979.9px) {
  .HIDE-SP980 {
    display: none !important;
  }
}
.EXCERPT1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.EXCERPT2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.EXCERPT3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.EXCERPT4 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.EXCERPT5 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

@media screen and (min-width: 768px) {
  .EXCERPT1-PC {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }
  .EXCERPT2-PC {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .EXCERPT3-PC {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
  .EXCERPT4-PC {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }
  .EXCERPT5-PC {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
  }
}
@media screen and (max-width: 767.9px) {
  .EXCERPT1-SP {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }
  .EXCERPT2-SP {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .EXCERPT3-SP {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
  .EXCERPT4-SP {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }
  .EXCERPT5-SP {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
  }
}
@media (hover: hover) and (pointer: fine) {
  .hover-opa {
    -webkit-transition: opacity 0.15s;
    transition: opacity 0.15s;
  }
  .hover-opa:hover {
    opacity: 0.6;
  }
}

/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
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;
}

ol, ul {
  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;
}

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;
}

/*
ユーザーページ、admin周りで使うCSS
*/
@-webkit-keyframes kvBlurIn {
  0% {
    -webkit-filter: blur(50px);
    filter: blur(50px);
  }
  50% {
    -webkit-filter: blur(50px);
    filter: blur(50px);
  }
  100% {
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@keyframes kvBlurIn {
  0% {
    -webkit-filter: blur(50px);
    filter: blur(50px);
  }
  50% {
    -webkit-filter: blur(50px);
    filter: blur(50px);
  }
  100% {
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@-webkit-keyframes kvBlurOut {
  0% {
    -webkit-filter: blur(0);
    filter: blur(0);
  }
  50% {
    -webkit-filter: blur(0);
    filter: blur(0);
  }
  100% {
    -webkit-filter: blur(50px);
    filter: blur(50px);
  }
}
@keyframes kvBlurOut {
  0% {
    -webkit-filter: blur(0);
    filter: blur(0);
  }
  50% {
    -webkit-filter: blur(0);
    filter: blur(0);
  }
  100% {
    -webkit-filter: blur(50px);
    filter: blur(50px);
  }
}
/*
ユーザーページ、admin周りで使うCSS
*/
body, html {
  height: 100%;
}

a {
  text-decoration: none;
}

a:link, a:visited {
  color: inherit;
}

img {
  display: block;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  background-color: #ffffff;
  color: #333333;
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 767.9px) {
  body #wpadminbar {
    position: fixed;
  }
}
body {
  min-height: 100svh; /* モバイル考慮でsvh */
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  margin: 0;
  /* fixed header */
}
body header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h-pc);
  z-index: 1000;
}
@media screen and (max-width: 979.9px) {
  body header {
    height: var(--header-h-sp);
  }
}
body header.is-login {
  top: 32px;
}
@media screen and (max-width: 767.9px) {
  body header.is-login {
    top: 46px;
  }
}
body main {
  -webkit-box-flex: 1;
  flex: 1 0 auto; /* 余った高さをmainが吸う */
  padding-top: var(--header-h-pc); /* headerの高さと一致させる */
}
@media screen and (max-width: 979.9px) {
  body main {
    padding-top: var(--header-h-sp);
  }
}
@media screen and (max-width: 767.9px) {
  body main {
    padding-top: var(--header-h-sp);
  }
}
body footer {
  -webkit-box-flex: 0;
  flex: 0 0 auto;
}

.inner {
  max-width: 1080px;
  padding-right: 20px;
  padding-left: 20px;
  margin-left: auto;
  margin-right: auto;
}

.inner1440 {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

/*
ユーザーページ、admin周りで使うCSS
*/
body header#site-header {
  background: #ffffff;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1490196078);
}
@media screen and (max-width: 979.9px) {
  body header#site-header {
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1490196078);
  }
}
body header#site-header .header-flex {
  height: var(--header-h-pc);
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  max-width: 1340px;
  margin: 0 auto;
}
@media screen and (max-width: 979.9px) {
  body header#site-header .header-flex {
    height: var(--header-h-sp);
  }
}
body header#site-header .header-flex .logo {
  width: var(--header-logo-width-pc, 180px);
  height: 54px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 979.9px) {
  body header#site-header .header-flex .logo {
    margin-left: 0;
    width: var(--header-logo-width-sp, 140px);
    height: 30px;
  }
}
body header#site-header .header-flex .logo > a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: start;
  justify-content: flex-start;
}
body header#site-header .header-flex .logo > a img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
body header#site-header .header-flex .tel-links.HIDE-SP980 .tel {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  align-items: center;
  font-size: 14px;
}
body header#site-header .header-flex .tel-links.HIDE-SP980 .tel .tel-num {
  font-weight: bold;
}
body header#site-header .header-flex .tel-links.HIDE-SP980 .tel .tel-num::before {
  content: "";
  width: 15px;
  height: 15px;
  display: inline-block;
  margin-right: 2px;
  background-image: url("../images/phone.png?v50f31a5ae46abbcdde6fbe90d1e2d892");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto auto;
  background-color: transparent;
  background-size: contain;
}
body header#site-header .header-flex .tel-links.HIDE-SP980 .tel .tel-text {
  font-size: 12px;
}
body header#site-header .header-flex .tel-links.HIDE-SP980 nav.pc-nav.HIDE-SP980 {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  align-items: center;
  height: 30px;
}
body header#site-header .header-flex .tel-links.HIDE-SP980 nav.pc-nav.HIDE-SP980 ul.normal-nav {
  display: -webkit-box;
  display: flex;
  margin-right: 16px;
}
body header#site-header .header-flex .tel-links.HIDE-SP980 nav.pc-nav.HIDE-SP980 ul.normal-nav > li {
  font-size: 12px;
  font-weight: bold;
  padding: 0 16px;
  height: 24px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  border-right: 1px solid #dddddd;
}
body header#site-header .header-flex .tel-links.HIDE-SP980 nav.pc-nav.HIDE-SP980 ul.normal-nav > li:last-child {
  border-right: none;
}
body header#site-header .header-flex .tel-links.HIDE-SP980 nav.pc-nav.HIDE-SP980 ul.normal-nav > li > a {
  font-size: 12px;
  font-weight: bold;
}
body header#site-header .header-flex .tel-links.HIDE-SP980 nav.pc-nav.HIDE-SP980 .contact-nav > a {
  background: #004BB4;
  border: 1px solid #004BB4;
  display: inline-block;
  width: 180px;
  height: 28px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  color: #ffffff;
  border-radius: 999px;
}
@media (hover: hover) and (pointer: fine) {
  body header#site-header .header-flex .tel-links.HIDE-SP980 nav.pc-nav.HIDE-SP980 .contact-nav > a {
    -webkit-transition: background-color 0.15s, color 0.15s, border-color 0.15s;
    transition: background-color 0.15s, color 0.15s, border-color 0.15s;
  }
  body header#site-header .header-flex .tel-links.HIDE-SP980 nav.pc-nav.HIDE-SP980 .contact-nav > a:hover {
    background: #ffffff;
    color: #333333;
    border-color: #333333;
  }
}
body header#site-header .header-flex .sp-nav-opener.HIDE-PC980 {
  height: 33px;
  width: 33px;
  border-radius: 50%;
  background: #004BB4;
  position: relative;
}
body header#site-header .header-flex .sp-nav-opener.HIDE-PC980 > div {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  border-radius: 2px;
  background: #ffffff;
  display: block;
  width: 18px;
  height: 2px;
}
body header#site-header .header-flex .sp-nav-opener.HIDE-PC980 > div:nth-child(1) {
  top: 30%;
}
body header#site-header .header-flex .sp-nav-opener.HIDE-PC980 > div:nth-child(3) {
  top: 70%;
}
body header#site-header .header-flex .sp-nav-opener.HIDE-PC980 > div {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
body header#site-header .header-flex .sp-nav-opener.HIDE-PC980.opened > div:nth-child(1) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
body header#site-header .header-flex .sp-nav-opener.HIDE-PC980.opened > div:nth-child(2) {
  opacity: 0;
}
body header#site-header .header-flex .sp-nav-opener.HIDE-PC980.opened > div:nth-child(3) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}
body .sp-nav-wrap {
  position: fixed;
  inset: 0;
  height: 100dvh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; /* iOSのスクロールを滑らかに */
  background: #ffffff;
  z-index: 999;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: visibility 0s linear 0.25s, -webkit-transform 0.25s ease;
  transition: visibility 0s linear 0.25s, -webkit-transform 0.25s ease;
  transition: transform 0.25s ease, visibility 0s linear 0.25s;
  transition: transform 0.25s ease, visibility 0s linear 0.25s, -webkit-transform 0.25s ease; /* 閉じるときだけ遅延して hidden にする */
  visibility: hidden;
  pointer-events: none;
}
body .sp-nav-wrap.opened {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  -webkit-transition: visibility 0s linear 0s, -webkit-transform 0.25s ease;
  transition: visibility 0s linear 0s, -webkit-transform 0.25s ease;
  transition: transform 0.25s ease, visibility 0s linear 0s;
  transition: transform 0.25s ease, visibility 0s linear 0s, -webkit-transform 0.25s ease; /* 開くときは即 visible */
}
body .sp-nav-wrap .sp-nav {
  padding: calc(var(--header-h-sp) + 30px) 20px 40px;
}
body .sp-nav-wrap .sp-nav .link-list {
  magin-bottom: 30px;
}
body .sp-nav-wrap .sp-nav .tel {
  padding: 3px 0;
  margin-bottom: 30px;
  margin-top: 30px;
}
body .sp-nav-wrap .sp-nav .tel .tel-num {
  font-weight: bold;
  text-align: center;
}
body .sp-nav-wrap .sp-nav .tel .tel-num::before {
  content: "";
  width: 15px;
  height: 15px;
  display: inline-block;
  margin-right: 2px;
  background-image: url("../images/phone.png?v50f31a5ae46abbcdde6fbe90d1e2d892");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto auto;
  background-color: transparent;
  background-size: contain;
}
body .sp-nav-wrap .sp-nav .tel .tel-text {
  text-align: center;
  font-size: 12px;
}
body .sp-nav-wrap .sp-nav .contact-nav > a {
  background: #004BB4;
  display: inline-block;
  width: 230px;
  height: 44px;
  margin: 0 auto;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  border-radius: 999px;
}

/*
ユーザーページ、admin周りで使うCSS
*/
body .content-footer {
  background: #ffffff;
  padding: 20px 0 26px;
}
@media screen and (max-width: 767.9px) {
  body .content-footer {
    padding: 20px 0;
  }
}
body .content-footer .content-footer-flex {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 767.9px) {
  body .content-footer .content-footer-flex {
    display: block;
    padding: 20px 15px 0;
  }
}
body .content-footer .content-footer-flex .link-lists {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}
@media screen and (max-width: 767.9px) {
  body .content-footer .content-footer-flex .link-lists {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }
}
body .content-footer .content-footer-flex .link-lists .link-list {
  width: auto;
}
@media screen and (max-width: 767.9px) {
  body .content-footer .content-footer-flex .logo-tel {
    -webkit-box-ordinal-group: 5;
    order: 4;
    padding: 10px 0;
    margin-bottom: 10px;
  }
}
body .content-footer .content-footer-flex .logo-tel .logo {
  width: var(--footer-logo-width-pc, 180px);
  height: 54px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767.9px) {
  body .content-footer .content-footer-flex .logo-tel .logo {
    width: var(--footer-logo-width-sp, 190px);
    margin: 20px auto 5px;
  }
}
body .content-footer .content-footer-flex .logo-tel .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
@media screen and (max-width: 767.9px) {
  body .content-footer .content-footer-flex .logo-tel .logo img {
    margin: 0 auto;
  }
}
body .content-footer .content-footer-flex .logo-tel .tel {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 767.9px) {
  body .content-footer .content-footer-flex .logo-tel .tel {
    max-width: 215px;
    text-align: center;
    margin: 0 auto 10px;
  }
}
body .content-footer .content-footer-flex .logo-tel .tel-text {
  margin-top: 10px;
  font-size: 14px;
}
@media screen and (max-width: 767.9px) {
  body .content-footer .content-footer-flex .logo-tel .tel-text {
    text-align: center;
  }
}
body .content-footer .content-footer-flex .logo-tel ul.footer-sns-links {
  padding-top: 20px;
  display: -webkit-box;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767.9px) {
  body .content-footer .content-footer-flex .logo-tel ul.footer-sns-links {
    -webkit-box-pack: center;
    justify-content: center;
    gap: 15px;
  }
}
body .content-footer .content-footer-flex .logo-tel ul.footer-sns-links > li {
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 767.9px) {
  body .content-footer .content-footer-flex .logo-tel ul.footer-sns-links > li {
    width: 40px;
    height: 40px;
  }
}
body .content-footer .content-footer-flex .logo-tel ul.footer-sns-links > li {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  position: relative;
}
body .content-footer .content-footer-flex .logo-tel ul.footer-sns-links > li > a {
  display: block;
  width: 100%;
}
body .content-footer .content-footer-flex .logo-tel ul.footer-sns-links > li > a img {
  width: 100%;
  height: auto;
  display: block;
}

/*
ユーザーページ、admin周りで使うCSS
*/
body footer#site-footer {
  background: #ffffff;
  height: 69px;
  border-top: 1px solid #004BB4;
}
@media screen and (max-width: 767.9px) {
  body footer#site-footer {
    height: 136px;
  }
}
body footer#site-footer .footer-flex {
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 20px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
}
@media screen and (max-width: 767.9px) {
  body footer#site-footer .footer-flex {
    display: block;
    padding: 20px 15px;
  }
}
body footer#site-footer .footer-flex ul.links {
  display: -webkit-box;
  display: flex;
}
@media screen and (max-width: 767.9px) {
  body footer#site-footer .footer-flex ul.links {
    display: block;
    margin-bottom: 20px;
  }
}
body footer#site-footer .footer-flex ul.links > li {
  height: 29px;
  border-right: 1px solid #004BB4;
  padding: 0 12px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}
body footer#site-footer .footer-flex ul.links > li:first-child {
  padding-left: 0;
}
body footer#site-footer .footer-flex ul.links > li:last-child {
  border-right: none;
}
@media screen and (max-width: 767.9px) {
  body footer#site-footer .footer-flex ul.links > li {
    border: none;
    padding: 4px 0;
  }
}
body footer#site-footer .footer-flex ul.links > li > a {
  font-size: 12px;
}
body footer#site-footer .footer-flex .copyright {
  font-size: 12px;
}
@media screen and (max-width: 767.9px) {
  body footer#site-footer .footer-flex .copyright {
    text-align: center;
  }
}

/*
ユーザーページ、admin周りで使うCSS
*/
body main {
  background: #f7f7f7;
}
body main .page-subnav {
  background: #004BB4;
}
@media screen and (min-width: 768px) {
  body main .page-subnav {
    position: sticky;
    top: var(--header-h-pc);
    z-index: 900;
  }
}
@media screen and (min-width: 768px) and (max-width: 979.9px) {
  body main .page-subnav {
    top: var(--header-h-sp);
  }
}
body main .page-subnav ul.page-subnav-list {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
}
body main .page-subnav ul.page-subnav-list > li {
  border-left: 1px solid #ffffff;
}
body main .page-subnav ul.page-subnav-list > li:last-child {
  border-right: 1px solid #ffffff;
}
body main .page-subnav ul.page-subnav-list > li > a {
  min-width: 84px;
  text-align: center;
  display: block;
  font-size: 14px;
  padding: 12px 18px;
  color: #ffffff;
  font-weight: bold;
}
body main .pankuzu {
  padding-top: 40px;
  margin-bottom: 80px;
  font-size: 12px;
  display: -webkit-box;
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 767.9px) {
  body main .pankuzu {
    padding-top: 20px;
    margin-bottom: 60px;
    gap: 10px;
    flex-wrap: wrap;
  }
}
body main .pankuzu a:nth-child(n+2):before, body main .pankuzu span:nth-child(n+2):before {
  display: inline-block;
  content: ">　";
  position: relative;
}
@media screen and (max-width: 767.9px) {
  body main .pankuzu a:nth-child(n+2):before, body main .pankuzu span:nth-child(n+2):before {
    white-space: nowrap;
  }
}
body main .pankuzu a {
  color: #004BB4;
  text-decoration: underline;
}
body main ul.pagenator {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  gap: 12px;
  margin-top: 80px;
  margin-bottom: 80px;
  font-size: 20px;
}
@media screen and (max-width: 767.9px) {
  body main ul.pagenator {
    font-size: 14px;
    margin-bottom: 60px;
  }
}
body main ul.pagenator > li {
  width: 48px;
  height: 48px;
  border: 1px solid #004BB4;
  position: relative;
  color: #004BB4;
  line-height: 48px;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 767.9px) {
  body main ul.pagenator > li {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}
body main ul.pagenator > li > a {
  width: 100%;
  height: 100%;
  display: block;
}
body main ul.pagenator > li {
  -webkit-transition: background 0.1s, color 0.1s;
  transition: background 0.1s, color 0.1s;
}
body main ul.pagenator > li.current, body main ul.pagenator > li.prev, body main ul.pagenator > li.next, body main ul.pagenator > li:hover:not(.dots) {
  background: #004BB4;
  color: #ffffff;
}
body main ul.pagenator > li.dots {
  border: none;
  cursor: default;
  width: 32px;
  height: 32px;
  line-height: 32px;
}
@media screen and (max-width: 767.9px) {
  body main ul.pagenator > li.dots {
    width: 20px;
    height: 20px;
    line-height: 20px;
  }
}
body main section.page-kv .inner1440 {
  position: relative;
}
body main section.page-kv .pict {
  height: 300px;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  body main section.page-kv .pict {
    height: 180px;
  }
}
body main section.page-kv .pict img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
  display: block;
}
body main section.page-kv h1.page-title {
  position: absolute;
  top: 100px;
  left: 0;
  padding: 14px 80px;
  background-color: rgba(0, 75, 180, 0.6);
  font-size: 32px;
  font-weight: bold;
  color: #ffffff;
  min-width: calc(55.5555555556% - 160px);
}
@media screen and (max-width: 767.9px) {
  body main section.page-kv h1.page-title {
    top: 60px;
    padding: 6px 21px;
    min-width: calc(87.1794871795% - 42px);
    font-size: 22px;
  }
}
body main section.works-all-list .toworkscat-wrap {
  margin-top: 40px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  body main section.works-all-list .toworkscat-wrap {
    margin-top: 30px;
    margin-bottom: 60px;
  }
}
body main section.works-all-list .toworkscat-wrap {
  text-align: center;
}
body main .toworks-wrap {
  margin-top: 80px;
}
@media screen and (max-width: 767.9px) {
  body main .toworks-wrap {
    margin-top: 60px;
  }
}
body main section.works-single .tocontact-wrap {
  margin-top: 40px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  body main section.works-single .tocontact-wrap {
    margin-top: 30px;
    margin-bottom: 60px;
  }
}
body main section.works-single .tocontact-wrap {
  text-align: center;
}
body main section.other-works {
  margin-top: 80px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  body main section.other-works {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
body main section.recruit-intro {
  margin-top: 80px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  body main section.recruit-intro {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
body main section.recruit-index {
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  body main section.recruit-index {
    margin-bottom: 60px;
  }
}
body main section.recruit-index ul.recruit-list {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 40px;
}
body main section.recruit-index ul.recruit-list > li {
  background: #ffffff;
  padding: 40px;
}
@media screen and (max-width: 767.9px) {
  body main section.recruit-index ul.recruit-list > li {
    padding: 30px 16px;
  }
}
body main section.recruit-index ul.recruit-list > li h3.title {
  font-weight: bold;
  font-size: 22px;
  color: #004BB4;
  margin-bottom: 20px;
}
@media screen and (max-width: 767.9px) {
  body main section.recruit-index ul.recruit-list > li h3.title {
    font-size: 18px;
  }
}
body main section.recruit-index ul.recruit-list > li .todetail-wrap a.todetail {
  padding: 18px 100px;
}
@media screen and (max-width: 767.9px) {
  body main section.recruit-index ul.recruit-list > li .todetail-wrap a.todetail {
    padding: 18px 36px;
  }
}
body main ul.recruit-tag-list {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767.9px) {
  body main ul.recruit-tag-list {
    margin-bottom: 30px;
  }
}
body main ul.recruit-tag-list > li {
  padding: 2px 30px;
  font-size: 16px;
  color: #004BB4;
  background-color: #ffffff;
  border: 1px solid #004BB4;
}
@media screen and (max-width: 767.9px) {
  body main ul.recruit-tag-list > li {
    font-size: 12px;
  }
}
body main ul.recruit-tag-list > li.blue-tag {
  color: #ffffff;
  background-color: #004BB4;
}
body main .recruit-pr-title {
  color: #004BB4;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 16px;
}
@media screen and (max-width: 767.9px) {
  body main .recruit-pr-title {
    font-size: 16px;
  }
}
body main .recruit-pr-text {
  margin-bottom: 40px;
}
@media screen and (max-width: 767.9px) {
  body main .recruit-pr-text {
    margin-bottom: 30px;
  }
}
body main section.recruit-single .recruit-content {
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  body main section.recruit-single .recruit-content {
    margin-bottom: 60px;
  }
}
body main section.recruit-single .eyecatch {
  width: 600px;
  border-radius: 32px;
  margin: 0 auto 40px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  body main section.recruit-single .eyecatch {
    width: auto;
  }
}
body main section.recruit-single .eyecatch img {
  max-width: 100%;
}
body main hr.divider {
  border: none;
  border-top: 1px solid #004BB4;
  margin-top: 80px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  body main hr.divider {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
body main section.recruit-requirement {
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  body main section.recruit-requirement {
    margin-bottom: 60px;
  }
}
body main section.recruit-requirement > h2.blue-big {
  font-size: 28px;
}
@media screen and (max-width: 767.9px) {
  body main section.recruit-requirement > h2.blue-big {
    font-size: 20px;
  }
}
body main section.recruit-requirement ul.requirement-list {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 80px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  body main section.recruit-requirement ul.requirement-list {
    gap: 30px;
    margin-bottom: 60px;
  }
}
body main section.recruit-requirement ul.requirement-list > li {
  display: -webkit-box;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 767.9px) {
  body main section.recruit-requirement ul.requirement-list > li {
    display: block;
  }
}
body main section.recruit-requirement ul.requirement-list > li .requirement-title {
  font-size: 22px;
  font-weight: bold;
  color: #004BB4;
  width: 37.037037037%;
  padding-left: 40px;
  text-indent: -40px;
}
@media screen and (max-width: 767.9px) {
  body main section.recruit-requirement ul.requirement-list > li .requirement-title {
    width: auto;
    margin-bottom: 30px;
  }
}
body main section.recruit-requirement ul.requirement-list > li .requirement-title:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #004BB4;
  margin-right: 20px;
  position: relative;
  top: 1px;
}
body main section.recruit-requirement ul.requirement-list > li .requirement-body {
  -webkit-box-flex: 1;
  flex: 1;
}
body main section.recruit-requirement ul.requirement-list > li .requirement-body hr {
  margin: 20px 0;
  border: none;
  border-top: 1px solid #004BB4;
}
body main section.recruit-requirement .toentry-wrap {
  margin-top: 40px;
}
@media screen and (max-width: 767.9px) {
  body main section.recruit-requirement .toentry-wrap {
    margin-top: 30px;
  }
}
body main section.recruit-requirement .toentry-wrap {
  text-align: center;
}
body main section.recruit-requirement .entry-tel-wrap .caption {
  text-align: center;
}
body main section.recruit-requirement .entry-tel-wrap .telnum {
  text-align: center;
  font-size: 48px;
  font-weight: bold;
  color: #004BB4;
}
@media screen and (max-width: 767.9px) {
  body main section.recruit-requirement .entry-tel-wrap .telnum {
    font-size: 32px;
  }
}
body main section.recruit-requirement .entry-tel-wrap .business-time {
  text-align: center;
}
body main .blue-big {
  font-size: 28px;
  font-weight: bold;
  color: #004BB4;
  margin-bottom: 40px;
}
@media screen and (max-width: 767.9px) {
  body main .blue-big {
    font-size: 22px;
    margin-bottom: 30px;
  }
}
body main .blue-mid {
  font-size: 20px;
  font-weight: bold;
  color: #004BB4;
}
@media screen and (max-width: 767.9px) {
  body main .blue-mid {
    font-size: 20px;
  }
}
body main .p-wrap {
  margin-bottom: 40px;
}
@media screen and (max-width: 767.9px) {
  body main .p-wrap {
    margin-bottom: 30px;
  }
}
body main .p-wrap p {
  margin-bottom: 1rem;
}
body main .p-wrap p:last-child {
  margin-bottom: 0;
}
body main .blue-square-title {
  font-weight: bold;
  font-size: 28px;
  margin-bottom: 40px;
  padding-left: 44px;
  text-indent: -44px;
}
body main .blue-square-title::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 20px;
  background: #004BB4;
  position: relative;
  left: 0;
  top: 0;
}
@media screen and (max-width: 767.9px) {
  body main .blue-square-title {
    font-size: 24px;
    margin-top: 60px;
    margin-bottom: 30px;
  }
}
body main .section-header {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
}
@media screen and (max-width: 767.9px) {
  body main .section-header {
    font-size: 22px;
    margin-bottom: 30px;
  }
}
body main .section-header > span {
  display: inline-block;
  padding-bottom: 17px;
  border-bottom: 6px solid #004BB4;
}
@media screen and (max-width: 767.9px) {
  body main .section-header > span {
    padding-bottom: 9px;
  }
}
body main ul.news-list > li {
  margin-bottom: 20px;
}
body main ul.news-list > li .news-link {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}
@media screen and (max-width: 767.9px) {
  body main ul.news-list > li .news-link {
    display: block;
  }
}
body main ul.news-list > li .date {
  width: 140px;
}
@media screen and (max-width: 767.9px) {
  body main ul.news-list > li .date {
    width: auto;
    margin-bottom: 6px;
  }
}
body main ul.news-list > li .title {
  -webkit-box-flex: 1;
  flex: 1;
}
body main section.news-single .news-date {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  body main section.news-single .news-date {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
body main section.news-single h1.news-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #004BB4;
}
@media screen and (max-width: 767.9px) {
  body main section.news-single h1.news-title {
    font-size: 26px;
    margin-bottom: 30px;
  }
}
body main section.news-single .news-content {
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  body main section.news-single .news-content {
    margin-bottom: 60px;
  }
}
body main section.news-single .toindex-wrap {
  text-align: center;
  margin-bottom: 80px;
}
body main section.news-single .toindex-wrap > a.link-btn {
  width: 360px;
}
@media screen and (max-width: 767.9px) {
  body main section.news-single .toindex-wrap > a.link-btn {
    width: 100%;
  }
}
body main section.business-child-category-list {
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  body main section.business-child-category-list {
    margin-bottom: 60px;
  }
}
body main section.business-single .eyecatch-info {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  flex-direction: row-reverse;
  gap: 80px;
  -webkit-box-align: start;
  align-items: flex-start;
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  body main section.business-single .eyecatch-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 60px;
  }
}
body main section.business-single .eyecatch-info.no-eyecatch {
  display: block;
}
body main section.business-single .eyecatch-info .info {
  -webkit-box-flex: 1;
  flex: 1;
}
body main section.business-single .eyecatch-info .info .title {
  font-size: 28px;
}
@media screen and (max-width: 767.9px) {
  body main section.business-single .eyecatch-info .info .title {
    font-size: 22px;
  }
}
body main section.business-single .eyecatch-info .info .catch {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 767.9px) {
  body main section.business-single .eyecatch-info .info .catch {
    font-size: 18px;
  }
}
body main section.business-single .eyecatch-info .eyecatch {
  -webkit-box-flex: 0;
  flex: 0 0 500px;
}
@media screen and (max-width: 767.9px) {
  body main section.business-single .eyecatch-info .eyecatch {
    -webkit-box-flex: 0;
    flex: none;
    width: 100%;
  }
}
body main section.business-single .eyecatch-info .eyecatch img {
  width: 100%;
  height: auto;
  display: block;
}
body main section.business-single .business-content {
  padding-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  body main section.business-single .business-content {
    padding-bottom: 60px;
  }
}
body main section.related-works-list {
  padding-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  body main section.related-works-list {
    padding-bottom: 60px;
  }
}
body main section.company-list {
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  body main section.company-list {
    margin-bottom: 60px;
  }
}
body main section.company-single {
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  body main section.company-single {
    margin-bottom: 60px;
  }
}
body main section.other-company {
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  body main section.other-company {
    margin-bottom: 60px;
  }
}
body main section.company-about .group-list-wrap {
  margin-top: 80px;
}
@media screen and (max-width: 767.9px) {
  body main section.company-about .group-list-wrap {
    margin-top: 60px;
  }
}
body main section.company-about .group-list-wrap .taiyo-logo {
  width: 234px;
  margin: 0 auto;
}
body main section.company-about .group-list-wrap .taiyo-logo img {
  max-width: 100%;
}
body main section.company-about .group-list-wrap .taiyo-logo:after {
  content: "";
  display: block;
  width: 3px;
  height: 105px;
  background: #004BB4;
  margin: 31px auto;
}
body main section.company-about .group-list-wrap .child-list-header {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  body main section.company-about .group-list-wrap .child-list-header {
    font-size: 24px;
  }
}
body main section.company-about .group-list-wrap .child-company-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, 255px);
  gap: 20px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  body main section.company-about .group-list-wrap .child-company-list {
    grid-template-columns: repeat(auto-fit, 280px);
    gap: 34px;
    margin-bottom: 60px;
  }
}
body main section.company-about .group-list-wrap .child-company-list {
  -webkit-box-pack: center;
  justify-content: center;
}
body main section.company-about .group-list-wrap .child-company-list > div {
  width: 255px;
}
@media screen and (max-width: 767.9px) {
  body main section.company-about .group-list-wrap .child-company-list > div {
    width: 280px;
  }
}
body main section.company-about .group-list-wrap .child-company-list > div img {
  max-width: 100%;
}
@media screen and (max-width: 767.9px) {
  body main section.company-about .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table table.company-list-table {
    width: 800px;
  }
}
body main section.company-about .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table table.company-list-table tr > td:nth-child(1), body main section.company-about .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table table.company-list-table tr > th:nth-child(1) {
  width: 360px;
}
@media screen and (max-width: 767.9px) {
  body main section.company-about .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table table.company-list-table tr > td:nth-child(1), body main section.company-about .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table table.company-list-table tr > th:nth-child(1) {
    width: 280px;
  }
}
body main ul.card-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, 340px);
  -webkit-box-pack: start;
  justify-content: start;
  justify-items: start;
  gap: 30px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767.9px) {
  body main ul.card-list {
    grid-template-columns: 1fr;
    -webkit-box-pack: stretch;
    justify-content: stretch;
  }
}
body main ul.card-list > li {
  width: 340px;
  box-shadow: 4px 4px 20px 0px rgba(0, 0, 0, 0.1490196078);
  border-radius: 32px;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  body main ul.card-list > li {
    width: 100%;
  }
}
body main ul.card-list > li .pict {
  width: 100%;
  height: 191px;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  body main ul.card-list > li .pict {
    height: 203px;
  }
}
body main ul.card-list > li .pict > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
body main ul.card-list > li .info {
  padding: 20px 20px 30px;
}
@media screen and (max-width: 767.9px) {
  body main ul.card-list > li .info {
    padding: 20px 20px;
  }
}
body main ul.card-list > li .info .caption {
  margin-bottom: 10px;
}
body main ul.card-list > li .info .caption > span {
  display: inline-block;
  background: #004BB4;
  color: #ffffff;
  font-weight: bold;
  padding: 4px 10px;
}
body main ul.card-list > li .info .title {
  font-weight: 500;
  font-size: 16px;
  color: #004BB4;
  margin-bottom: 10px;
}
@media screen and (max-width: 767.9px) {
  body main ul.card-list > li .info .title {
    font-size: 16px;
  }
}
body main ul.card-list > li.ext-banner {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  box-shadow: none;
  border-radius: 0;
  overflow: auto;
  position: relative;
}
body main ul.card-list > li.ext-banner > a {
  display: block;
  width: 100%;
}
body main ul.card-list > li.ext-banner > a img {
  width: 100%;
  height: auto;
  display: block;
}
@media (hover: hover) and (pointer: fine) {
  body main ul.card-list > li a.card-link:hover .pict img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
@media screen and (min-width: 768px) {
  body main ul.card-list.for-company-list > li .info .title {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  body main ul.card-list.for-works-list > li .info .caption {
    font-size: 12px;
  }
}
@media screen and (min-width: 768px) {
  body main ul.card-list.for-works-list > li .info .title {
    font-size: 18px;
  }
}
body.admin-bar main .page-subnav {
  top: calc(var(--header-h-pc) + 32px);
}
@media screen and (max-width: 979.9px) {
  body.admin-bar main .page-subnav {
    top: calc(var(--header-h-sp) + 32px);
  }
}

/*
ユーザーページ、admin周りで使うCSS
*/
body .link-btn {
  box-sizing: border-box;
  padding: 18px 56px;
  background: #004BB4;
  color: #ffffff;
  font-weight: bold;
  display: inline-block;
  border-radius: 999px;
  position: relative;
  border: 1px solid #004BB4;
}
@media screen and (max-width: 767.9px) {
  body .link-btn {
    display: block;
    padding: 10px 36px;
    font-size: 12px;
    width: -webkit-fit-content;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
  }
}
body .link-btn {
  text-align: center;
}
body .link-btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 16px;
}
@media screen and (max-width: 767.9px) {
  body .link-btn::after {
    right: 10px;
  }
}
body .link-btn::after {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url("../images/link_arrow_white.svg?v5d5ed276ead900f47513333babc8bb7a");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto auto;
  background-color: transparent;
  background-size: contain;
  margin-left: 24px;
}
@media screen and (max-width: 767.9px) {
  body .link-btn::after {
    width: 12px;
    height: 12px;
  }
}
body .link-btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 16px;
}
@media screen and (max-width: 767.9px) {
  body .link-btn::before {
    left: 10px;
  }
}
body .link-btn::before {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  margin-right: 24px;
}
@media (hover: hover) and (pointer: fine) {
  body .link-btn {
    -webkit-transition: background-color 0.15s, color 0.15s, border-color 0.15s;
    transition: background-color 0.15s, color 0.15s, border-color 0.15s;
  }
  body .link-btn:hover {
    background: #ffffff;
    color: #333333;
    border-color: #333333;
  }
  body .link-btn:hover::after {
    background-image: url("../images/link_arrow_black.svg?v55ede22408d2a32688310fd59ebe54f4");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: auto auto;
    background-color: transparent;
    background-size: contain;
  }
}
body .link-btn.no-arrow::before, body .link-btn.no-arrow::after {
  display: none;
}
body .wide-center-btn-wrap {
  text-align: center;
  margin-bottom: 80px;
}
body .wide-center-btn-wrap > a.link-btn {
  width: 360px;
}
@media screen and (max-width: 767.9px) {
  body .wide-center-btn-wrap > a.link-btn {
    width: 100%;
  }
}

/*
ユーザーページ、admin周りで使うCSS
*/
body .link-lists {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}
@media screen and (max-width: 767.9px) {
  body .link-lists {
    display: block;
  }
}
body .link-lists .link-list {
  width: 180px;
}
@media screen and (max-width: 767.9px) {
  body .link-lists .link-list {
    width: auto;
  }
}
body .link-lists .link-list .link-list-head {
  padding: 8px 0 6px;
  border-bottom: 1px solid #333333;
  margin-bottom: 5px;
  font-weight: 500;
}
body .link-lists .link-list .link-list-head > a, body .link-lists .link-list .link-list-head span {
  font-size: 14px;
  display: block;
  position: relative;
}
body .link-lists .link-list .link-list-head > a {
  color: #004BB4;
}
body .link-lists .link-list .link-list-head > a:after {
  content: "";
  display: block;
  position: absolute;
  width: 14px;
  height: 13px;
  background-image: url("../images/fotter_link_arrow.svg?vcf92462e4516f5ef3687b4dd7155ddad");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto auto;
  background-color: transparent;
  background-size: contain;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
body .link-lists .link-list ul.links {
  padding-top: 5px;
}
@media screen and (max-width: 767.9px) {
  body .link-lists .link-list ul.links {
    margin-bottom: 10px;
  }
}
body .link-lists .link-list ul.links > li {
  padding: 4px 0;
}
body .link-lists .link-list ul.links > li > a {
  font-size: 12px;
}
body .sitemap-link-lists .sitemap-link-header {
  font-size: 22px;
  width: 260px;
  font-weight: bold;
  padding-bottom: 6px;
  margin-bottom: 16px;
  border-bottom: 1px solid #333333;
}
@media screen and (max-width: 767.9px) {
  body .sitemap-link-lists .sitemap-link-header {
    width: auto;
    font-size: 22px;
    margin-bottom: 10px;
  }
}
body .sitemap-link-lists .link-lists .link-list {
  width: 27.7777777778%;
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  body .sitemap-link-lists .link-lists .link-list {
    width: auto;
    margin-bottom: 30px;
  }
}
body .sitemap-link-lists .link-lists .link-list .link-list-head > a, body .sitemap-link-lists .link-lists .link-list .link-list-head span {
  font-size: 16px;
}
body .sitemap-link-lists .link-lists .link-list ul.links > li > a {
  font-size: 16px;
}

/*
ユーザーページ、admin周りで使うCSS
*/
body main section.top-kv {
  background: #ffffff;
  position: relative;
}
body main section.top-kv .kv-pict-wrap > img {
  width: 85%;
}
@media screen and (max-width: 767.9px) {
  body main section.top-kv .kv-pict-wrap > img {
    width: auto;
    max-width: 100%;
  }
}
body main section.top-kv .kv-pict-wrap .kv-swiper {
  overflow: hidden;
}
body main section.top-kv .kv-pict-wrap .kv-swiper .swiper-wrapper,
body main section.top-kv .kv-pict-wrap .kv-swiper .swiper-slide {
  height: 100%;
}
body main section.top-kv .kv-pict-wrap .kv-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
body main section.top-kv .kv-pict-wrap .kv-swiper.kv-blur-ready .swiper-slide-active img,
body main section.top-kv .kv-pict-wrap .kv-swiper.kv-blur-ready .swiper-slide-duplicate-active img {
  -webkit-animation: kvBlurIn 2s ease forwards;
  animation: kvBlurIn 2s ease forwards;
}
body main section.top-kv .kv-pict-wrap .kv-swiper.kv-blur-ready .swiper-slide-prev img,
body main section.top-kv .kv-pict-wrap .kv-swiper.kv-blur-ready .swiper-slide-duplicate-prev img {
  -webkit-animation: kvBlurOut 2s ease forwards;
  animation: kvBlurOut 2s ease forwards;
}
body main section.top-kv .kv-pict-wrap .kv-swiper-pc {
  width: 85%;
  height: 520px;
  margin-right: auto;
  margin-left: 0;
}
body main section.top-kv .kv-pict-wrap .kv-swiper-sp {
  width: 100%;
  height: 293px;
}
body main section.top-kv .kv-nav-wrap {
  background: #004BB4;
}
body main section.top-kv .kv-nav-wrap ul.kv-nav-list {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
}
body main section.top-kv .kv-nav-wrap ul.kv-nav-list > li {
  border-left: 1px solid #ffffff;
}
body main section.top-kv .kv-nav-wrap ul.kv-nav-list > li:last-child {
  border-right: 1px solid #ffffff;
}
body main section.top-kv .kv-nav-wrap ul.kv-nav-list > li > a {
  min-width: 84px;
  text-align: center;
  display: block;
  font-size: 16px;
  padding: 12px 18px;
  color: #ffffff;
  font-weight: bold;
}
body main section.top-kv .weare {
  background: #ffffff;
  width: 540px;
  padding: 20px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1019607843);
  z-index: 10;
}
@media screen and (max-width: 767.9px) {
  body main section.top-kv .weare {
    width: auto;
    padding: 30px 15px;
    position: relative;
    top: auto;
    right: auto;
    -webkit-transform: none;
    transform: none;
    box-shadow: none;
  }
}
body main section.top-kv .weare .text1 {
  margin-bottom: 16px;
}
@media screen and (max-width: 767.9px) {
  body main section.top-kv .weare .text1 {
    margin-bottom: 20px;
  }
}
body main section.top-kv .weare .text2 {
  margin-bottom: 16px;
}
@media screen and (max-width: 767.9px) {
  body main section.top-kv .weare .text2 {
    margin-bottom: 20px;
  }
}
body main section.top-kv .weare .text2 .text2-big {
  font-size: 32px;
  font-weight: bold;
  color: #004BB4;
}
@media screen and (max-width: 767.9px) {
  body main section.top-kv .weare .text2 .text2-big {
    font-size: 26px;
  }
}
body main section.top-kv .weare .text3 {
  margin-bottom: 16px;
  font-weight: bold;
  font-size: 24px;
  color: #004BB4;
}
@media screen and (max-width: 767.9px) {
  body main section.top-kv .weare .text3 {
    margin-bottom: 20px;
    font-size: 20px;
  }
}
body main section.top-kv .weare .text4 {
  margin-bottom: 16px;
}
@media screen and (max-width: 767.9px) {
  body main section.top-kv .weare .text4 {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 768px) {
  body main section.top-kv .weare .toabout-wrap .link-btn.toabout {
    font-size: 14px;
    padding: 8px 56px;
  }
}
body main div.sortable-contents {
  padding-top: 80px;
}
@media screen and (max-width: 767.9px) {
  body main div.sortable-contents {
    padding-top: 40px;
  }
}
body main section.top-about {
  margin-bottom: 40px;
}
body main section.top-about {
  margin-bottom: 40px;
}
@media screen and (max-width: 767.9px) {
  body main section.top-about {
    margin-bottom: 60px;
  }
}
body main section.top-about .top-free-area1 {
  margin-bottom: 40px;
}
@media screen and (max-width: 767.9px) {
  body main section.top-about .top-free-area1 {
    margin-bottom: 30px;
  }
}
body main section.top-about .top-about-gallery-swiper-wrap {
  position: relative;
  max-width: 960px;
}
@media (max-width: 1120px) {
  body main section.top-about .top-about-gallery-swiper-wrap {
    max-width: 640px;
  }
}
body main section.top-about .top-about-gallery-swiper-wrap {
  margin: 0 auto;
  margin-bottom: 40px;
}
@media screen and (max-width: 767.9px) {
  body main section.top-about .top-about-gallery-swiper-wrap {
    margin-bottom: 30px;
    max-width: 300px;
  }
}
body main section.top-about .top-about-gallery-swiper-wrap .top-about-gallery-swiper {
  position: relative;
}
body main section.top-about .top-about-gallery-swiper-wrap .top-about-gallery-swiper ul.top-about-gallery {
  list-style: none;
  padding: 0;
  margin: 0;
}
body main section.top-about .top-about-gallery-swiper-wrap .top-about-gallery-swiper ul.top-about-gallery > li .pict {
  padding: 0 10px;
  width: 300px;
  height: 185px;
  margin-bottom: 8px;
}
@media screen and (max-width: 767.9px) {
  body main section.top-about .top-about-gallery-swiper-wrap .top-about-gallery-swiper ul.top-about-gallery > li .pict {
    width: 280px;
    height: 173px;
  }
}
body main section.top-about .top-about-gallery-swiper-wrap .top-about-gallery-swiper ul.top-about-gallery > li .pict > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* ここがトリミングの核 */
  object-position: center;
  /* 中央基準 */
  display: block;
}
body main section.top-about .top-about-gallery-swiper-wrap .top-about-gallery-swiper ul.top-about-gallery > li .text {
  padding: 0 10px;
  font-size: 12px;
}
@media screen and (max-width: 767.9px) {
  body main section.top-about .top-about-gallery-swiper-wrap .top-about-gallery-swiper ul.top-about-gallery > li .text {
    font-size: 12px;
  }
}
body main section.top-about .top-about-gallery-swiper-wrap .top-about-gallery-nav {
  position: absolute;
  top: 43%;
  width: 50px;
  height: 50px;
  background: #004BB4;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #004BB4;
  cursor: pointer;
}
@media screen and (max-width: 767.9px) {
  body main section.top-about .top-about-gallery-swiper-wrap .top-about-gallery-nav {
    width: 30px;
    height: 30px;
  }
}
body main section.top-about .top-about-gallery-swiper-wrap .top-about-gallery-nav::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 16px;
}
@media screen and (max-width: 767.9px) {
  body main section.top-about .top-about-gallery-swiper-wrap .top-about-gallery-nav::after {
    right: 10px;
  }
}
body main section.top-about .top-about-gallery-swiper-wrap .top-about-gallery-nav::after {
  -webkit-transform: translate(10%, -50%);
  transform: translate(10%, -50%);
}
@media screen and (max-width: 767.9px) {
  body main section.top-about .top-about-gallery-swiper-wrap .top-about-gallery-nav::after {
    -webkit-transform: translate(29%, -50%);
    transform: translate(29%, -50%);
  }
}
body main section.top-about .top-about-gallery-swiper-wrap .top-about-gallery-nav::after {
  width: 16px;
  height: 16px;
  background-image: url("../images/link_arrow_white.svg?v5d5ed276ead900f47513333babc8bb7a");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto auto;
  background-color: transparent;
  background-size: contain;
}
@media (hover: hover) and (pointer: fine) {
  body main section.top-about .top-about-gallery-swiper-wrap .top-about-gallery-nav {
    -webkit-transition: background-color 0.15s, color 0.15s, border-color 0.15s;
    transition: background-color 0.15s, color 0.15s, border-color 0.15s;
  }
  body main section.top-about .top-about-gallery-swiper-wrap .top-about-gallery-nav:hover {
    background: #ffffff;
    color: #333333;
    border-color: #333333;
  }
  body main section.top-about .top-about-gallery-swiper-wrap .top-about-gallery-nav:hover::after {
    background-image: url("../images/link_arrow_black.svg?v55ede22408d2a32688310fd59ebe54f4");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: auto auto;
    background-color: transparent;
    background-size: contain;
  }
}
body main section.top-about .top-about-gallery-swiper-wrap .top-about-gallery-prev {
  left: -50px;
}
@media screen and (max-width: 767.9px) {
  body main section.top-about .top-about-gallery-swiper-wrap .top-about-gallery-prev {
    left: -30px;
  }
}
body main section.top-about .top-about-gallery-swiper-wrap .top-about-gallery-prev::after {
  -webkit-transform: translate(-10%, -50%) scaleX(-1);
  transform: translate(-10%, -50%) scaleX(-1);
}
@media screen and (max-width: 767.9px) {
  body main section.top-about .top-about-gallery-swiper-wrap .top-about-gallery-prev::after {
    -webkit-transform: translate(10%, -50%) scaleX(-1);
    transform: translate(10%, -50%) scaleX(-1);
  }
}
body main section.top-about .top-about-gallery-swiper-wrap .top-about-gallery-next {
  right: -50px;
}
@media screen and (max-width: 767.9px) {
  body main section.top-about .top-about-gallery-swiper-wrap .top-about-gallery-next {
    right: -30px;
  }
}
body main section.top-about .topbtn-under-gallery-wrap {
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  body main section.top-about .topbtn-under-gallery-wrap {
    margin-bottom: 60px;
    text-align: left;
  }
}
body main section.top-youtube {
  margin-bottom: 80px;
}
body main section.top-youtube .yt-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  margin-bottom: 60px;
}
body main section.top-youtube .yt-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
body main section.top-youtube .top-youtube-swiper-wrap {
  position: relative;
  max-width: 960px;
}
@media (max-width: 1120px) {
  body main section.top-youtube .top-youtube-swiper-wrap {
    max-width: 640px;
  }
}
body main section.top-youtube .top-youtube-swiper-wrap {
  margin: 0 auto;
}
body main section.top-youtube .top-youtube-swiper {
  overflow: hidden;
}
body main section.top-youtube .top-youtube-swiper .swiper-slide {
  height: auto;
}
body main section.top-youtube .top-youtube-swiper .yt-wrap {
  margin-bottom: 0;
}
body main section.top-youtube .top-youtube-nav {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  background: #004BB4;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #004BB4;
  cursor: pointer;
}
@media screen and (max-width: 767.9px) {
  body main section.top-youtube .top-youtube-nav {
    width: 30px;
    height: 30px;
  }
}
body main section.top-youtube .top-youtube-nav::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 16px;
}
@media screen and (max-width: 767.9px) {
  body main section.top-youtube .top-youtube-nav::after {
    right: 10px;
  }
}
body main section.top-youtube .top-youtube-nav::after {
  -webkit-transform: translate(10%, -50%);
  transform: translate(10%, -50%);
}
@media screen and (max-width: 767.9px) {
  body main section.top-youtube .top-youtube-nav::after {
    -webkit-transform: translate(29%, -50%);
    transform: translate(29%, -50%);
  }
}
body main section.top-youtube .top-youtube-nav::after {
  width: 16px;
  height: 16px;
  background-image: url("../images/link_arrow_white.svg?v5d5ed276ead900f47513333babc8bb7a");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto auto;
  background-color: transparent;
  background-size: contain;
}
@media (hover: hover) and (pointer: fine) {
  body main section.top-youtube .top-youtube-nav {
    -webkit-transition: background-color 0.15s, color 0.15s, border-color 0.15s;
    transition: background-color 0.15s, color 0.15s, border-color 0.15s;
  }
  body main section.top-youtube .top-youtube-nav:hover {
    background: #ffffff;
    color: #333333;
    border-color: #333333;
  }
  body main section.top-youtube .top-youtube-nav:hover::after {
    background-image: url("../images/link_arrow_black.svg?v55ede22408d2a32688310fd59ebe54f4");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: auto auto;
    background-color: transparent;
    background-size: contain;
  }
}
body main section.top-youtube .top-youtube-prev {
  left: -60px;
}
@media screen and (max-width: 767.9px) {
  body main section.top-youtube .top-youtube-prev {
    left: -10px;
  }
}
body main section.top-youtube .top-youtube-prev::after {
  -webkit-transform: translate(-10%, -50%) scaleX(-1);
  transform: translate(-10%, -50%) scaleX(-1);
}
@media screen and (max-width: 767.9px) {
  body main section.top-youtube .top-youtube-prev::after {
    -webkit-transform: translate(10%, -50%) scaleX(-1);
    transform: translate(10%, -50%) scaleX(-1);
  }
}
body main section.top-youtube .top-youtube-next {
  right: -60px;
}
@media screen and (max-width: 767.9px) {
  body main section.top-youtube .top-youtube-next {
    right: -10px;
  }
}
body main section.top-business {
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  body main section.top-business {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767.9px) {
  body main section.top-business .section-header {
    margin-bottom: 0;
  }
}
body main section.top-business .buisiness-board {
  padding-top: 48px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  body main section.top-business .buisiness-board {
    padding-top: 27px;
  }
}
body main section.top-business .buisiness-board .info-half-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  z-index: 3;
  pointer-events: none;
}
@media screen and (max-width: 767.9px) {
  body main section.top-business .buisiness-board .info-half-wrapper {
    position: unset;
    width: auto;
  }
}
body main section.top-business .buisiness-board .info-half-wrapper .info {
  margin-right: 180px;
  min-width: 320px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1019607843);
  background: #ffffff;
  padding: 40px;
  pointer-events: auto;
}
@media screen and (max-width: 767.9px) {
  body main section.top-business .buisiness-board .info-half-wrapper .info {
    margin-right: auto;
    min-width: initial;
    padding: 20px 0px 20px 15px;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.5);
  }
}
body main section.top-business .buisiness-board .info-half-wrapper .info .info-inner {
  width: 320px;
  margin-left: auto;
}
@media screen and (max-width: 767.9px) {
  body main section.top-business .buisiness-board .info-half-wrapper .info .info-inner {
    width: auto;
  }
}
body main section.top-business .buisiness-board .info-half-wrapper .info .info-inner .name {
  color: #004BB4;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 26px;
}
@media screen and (max-width: 767.9px) {
  body main section.top-business .buisiness-board .info-half-wrapper .info .info-inner .name {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
body main section.top-business .buisiness-board .info-half-wrapper .info .info-inner .catch {
  font-weight: bold;
  margin-bottom: 26px;
  font-size: 18px;
}
@media screen and (max-width: 767.9px) {
  body main section.top-business .buisiness-board .info-half-wrapper .info .info-inner .catch {
    margin-bottom: 20px;
  }
}
body main section.top-business .buisiness-board .info-half-wrapper .info .info-inner .text {
  margin-bottom: 26px;
}
@media screen and (max-width: 767.9px) {
  body main section.top-business .buisiness-board .info-half-wrapper .info .info-inner .text {
    margin-bottom: 20px;
  }
}
body main section.top-business .buisiness-board .pict {
  width: 100%;
  height: 500px;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  body main section.top-business .buisiness-board .pict {
    height: unset;
    margin-bottom: 15px;
  }
}
body main section.top-business .buisiness-board .pict {
  position: relative;
}
body main section.top-business .buisiness-board .pict > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
body main section.top-business .buisiness-board .pict .business-menu {
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 75, 180, 0.8);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
body main section.top-business .buisiness-board .pict .business-menu ul.business-menu-list {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  align-items: stretch;
  gap: 20px;
  width: 700px;
  margin-left: auto;
  padding-top: 20px;
}
body main section.top-business .buisiness-board .pict .business-menu ul.business-menu-list > li {
  width: 160px;
}
body main section.top-business .buisiness-board .pict .business-menu ul.business-menu-list > li a {
  display: block;
}
body main section.top-business .buisiness-board .pict .business-menu ul.business-menu-list > li .pict {
  width: 160px;
  height: 124px;
  overflow: hidden;
}
body main section.top-business .buisiness-board .pict .business-menu ul.business-menu-list > li .pict > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
body main section.top-business .buisiness-board .pict .business-menu ul.business-menu-list > li .text {
  display: block;
  padding: 10px;
  padding-right: 30px;
  color: #ffffff;
  font-weight: bold;
  position: relative;
}
body main section.top-business .buisiness-board .pict .business-menu ul.business-menu-list > li .text:after {
  content: "";
  width: 16px;
  height: 19px;
  display: inline-block;
  margin-left: 5px;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url("../images/link_arrow_white.svg?v5d5ed276ead900f47513333babc8bb7a");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto auto;
  background-color: transparent;
  background-size: contain;
}
@media screen and (max-width: 1180px) {
  body main section.top-business .buisiness-board .pict .business-menu ul.business-menu-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    width: auto;
    margin-left: 420px;
  }
  body main section.top-business .buisiness-board .pict .business-menu ul.business-menu-list > li {
    width: auto;
  }
  body main section.top-business .buisiness-board .pict .business-menu ul.business-menu-list > li .pict {
    display: none;
  }
}
body main section.top-business .buisiness-board .pict:hover .business-menu {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}
body main section.top-message {
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  body main section.top-message {
    margin-bottom: 60px;
  }
}
body main section.top-message .top-free-area2 {
  margin-bottom: 40px;
}
@media screen and (max-width: 767.9px) {
  body main section.top-message .top-free-area2 {
    margin-bottom: 30px;
  }
}
body main section.top-news {
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  body main section.top-news {
    margin-bottom: 60px;
  }
}
body main section.top-news ul.news-list {
  margin-bottom: 40px;
}
@media screen and (max-width: 767.9px) {
  body main section.top-news ul.news-list {
    margin-bottom: 30px;
  }
}
body main section.top-topics {
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  body main section.top-topics {
    margin-bottom: 60px;
  }
}
body main section.top-topics ul.news-list {
  margin-bottom: 40px;
}
@media screen and (max-width: 767.9px) {
  body main section.top-topics ul.news-list {
    margin-bottom: 30px;
  }
}
body main section.top-undernews .top-free-area3 {
  margin-bottom: 40px;
}
@media screen and (max-width: 767.9px) {
  body main section.top-undernews .top-free-area3 {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767.9px) {
  body main section.top-links {
    padding-bottom: 60px;
  }
}
body main section.top-links ul.card-list {
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  body main section.top-links ul.card-list {
    margin-bottom: 30px;
  }
}
body main section.top-links .btns-wrap {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  gap: 240px;
}
@media screen and (max-width: 767.9px) {
  body main section.top-links .btns-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: 60px;
  }
}
body main section.top-links .btns-wrap .link-btn.tocontact,
body main section.top-links .btns-wrap .link-btn.tocompany {
  width: 360px;
}
@media screen and (max-width: 767.9px) {
  body main section.top-links .btns-wrap .link-btn.tocontact,
  body main section.top-links .btns-wrap .link-btn.tocompany {
    width: auto;
  }
}

@keyframes kvBlurIn {
  0% {
    -webkit-filter: blur(50px);
    filter: blur(50px);
  }
  50% {
    -webkit-filter: blur(50px);
    filter: blur(50px);
  }
  100% {
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@keyframes kvBlurOut {
  0% {
    -webkit-filter: blur(0);
    filter: blur(0);
  }
  50% {
    -webkit-filter: blur(0);
    filter: blur(0);
  }
  100% {
    -webkit-filter: blur(50px);
    filter: blur(50px);
  }
}
/*
ユーザーページ、admin周りで使うCSS
*/
body main section.form-page .contact-form-wrap {
  margin-top: 40px;
}
@media screen and (max-width: 767.9px) {
  body main section.form-page .contact-form-wrap {
    margin-top: 30px;
  }
}
body main section.form-page .contact-form-wrap .form-list {
  width: 100%;
  margin-bottom: 40px;
}
@media screen and (max-width: 767.9px) {
  body main section.form-page .contact-form-wrap .form-list {
    margin-bottom: 30px;
  }
}
body main section.form-page .contact-form-wrap .form-list .form-row {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin-bottom: 16px;
}
@media screen and (max-width: 767.9px) {
  body main section.form-page .contact-form-wrap .form-list .form-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: start;
    align-items: flex-start;
  }
}
body main section.form-page .contact-form-wrap .form-list .form-row:last-child {
  margin-bottom: 0;
}
body main section.form-page .contact-form-wrap .form-list .form-row:has(textarea) {
  -webkit-box-align: start;
  align-items: flex-start;
}
body main section.form-page .contact-form-wrap .form-list .form-row:has(textarea) .form-label {
  padding-top: 14px;
}
@media screen and (max-width: 767.9px) {
  body main section.form-page .contact-form-wrap .form-list .form-row:has(textarea) .form-label {
    padding-top: 0;
  }
}
body main section.form-page .contact-form-wrap .form-list .form-label {
  width: 220px;
  padding: 0 100px 0 0;
  text-align: left;
  font-size: 20px;
  font-weight: 500;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  flex-shrink: 0;
}
@media screen and (max-width: 767.9px) {
  body main section.form-page .contact-form-wrap .form-list .form-label {
    font-size: 18px;
    width: 100%;
    padding: 0 0 6px 0;
  }
}
body main section.form-page .contact-form-wrap .form-list .form-label .req {
  background-color: #F50000;
  color: #ffffff;
  font-size: 16px;
  padding: 2px 6px;
  margin-left: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 767.9px) {
  body main section.form-page .contact-form-wrap .form-list .form-label .req {
    padding: 1px 6px;
  }
}
body main section.form-page .contact-form-wrap .form-list .form-input {
  -webkit-box-flex: 1;
  flex-grow: 1;
  width: 100%;
}
body main section.form-page .contact-form-wrap .form-list .form-input input[type=text],
body main section.form-page .contact-form-wrap .form-list .form-input input[type=email],
body main section.form-page .contact-form-wrap .form-list .form-input input[type=tel] {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #004BB4;
  background-color: #ffffff;
  font-size: 16px;
  box-sizing: border-box;
  outline: none;
}
body main section.form-page .contact-form-wrap .form-list .form-input input[type=text]::-webkit-input-placeholder, body main section.form-page .contact-form-wrap .form-list .form-input input[type=email]::-webkit-input-placeholder, body main section.form-page .contact-form-wrap .form-list .form-input input[type=tel]::-webkit-input-placeholder {
  color: #888;
}
body main section.form-page .contact-form-wrap .form-list .form-input input[type=text]:-ms-input-placeholder, body main section.form-page .contact-form-wrap .form-list .form-input input[type=email]:-ms-input-placeholder, body main section.form-page .contact-form-wrap .form-list .form-input input[type=tel]:-ms-input-placeholder {
  color: #888;
}
body main section.form-page .contact-form-wrap .form-list .form-input input[type=text]::placeholder,
body main section.form-page .contact-form-wrap .form-list .form-input input[type=email]::placeholder,
body main section.form-page .contact-form-wrap .form-list .form-input input[type=tel]::placeholder {
  color: #888;
}
body main section.form-page .contact-form-wrap .form-list .form-input input[type=text]:focus,
body main section.form-page .contact-form-wrap .form-list .form-input input[type=email]:focus,
body main section.form-page .contact-form-wrap .form-list .form-input input[type=tel]:focus {
  border-color: #004BB4;
}
body main section.form-page .contact-form-wrap .form-list .form-input textarea {
  width: 100%;
  height: 240px;
  padding: 14px 16px;
  border: 1px solid #004BB4;
  background-color: #ffffff;
  font-size: 16px;
  box-sizing: border-box;
  resize: vertical;
  outline: none;
}
body main section.form-page .contact-form-wrap .form-list .form-input textarea:focus {
  border-color: #004BB4;
}
body main section.form-page .contact-form-wrap .form-list .form-input input[readonly] {
  background-color: #eee;
  color: #555;
}
body main section.form-page .contact-form-wrap .form-list .form-input .zip-wrap {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}
body main section.form-page .contact-form-wrap .form-list .form-input .zip-wrap .zip-input {
  width: 120px;
}
@media screen and (max-width: 767.9px) {
  body main section.form-page .contact-form-wrap .form-list .form-input .zip-wrap .zip-input {
    width: 28%;
  }
}
body main section.form-page .contact-form-wrap .form-list .form-input .zip-wrap .hyphen {
  margin: 0 4px;
  font-weight: bold;
}
body main section.form-page .contact-form-wrap .form-list .form-input .zip-wrap .btn-address-search {
  background-color: #004BB4;
  color: #ffffff;
  border: none;
  padding: 10px 20px 10px 16px;
  margin-left: 20px;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
  border: 1px solid #004BB4;
  text-decoration: none;
}
@media screen and (max-width: 767.9px) {
  body main section.form-page .contact-form-wrap .form-list .form-input .zip-wrap .btn-address-search {
    margin-left: 28px;
  }
}
body main section.form-page .contact-form-wrap .form-list .form-input .zip-wrap .btn-address-search:not(.active) {
  background: #ffffff;
  color: #333333;
  border-color: #333333;
  pointer-events: none;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  body main section.form-page .contact-form-wrap .form-list .form-input .zip-wrap .btn-address-search {
    -webkit-transition: background-color 0.15s, color 0.15s, border-color 0.15s;
    transition: background-color 0.15s, color 0.15s, border-color 0.15s;
  }
  body main section.form-page .contact-form-wrap .form-list .form-input .zip-wrap .btn-address-search:hover {
    background: #ffffff;
    color: #333333;
    border-color: #333333;
  }
}
body main section.form-page .contact-form-wrap .form-list .form-input .short-input {
  width: 200px !important;
}
@media screen and (max-width: 767.9px) {
  body main section.form-page .contact-form-wrap .form-list .form-input .short-input {
    width: 60% !important;
  }
}
body main section.form-page .contact-form-wrap .form-list .form-input .radio-wrap {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  flex-wrap: wrap;
}
body main section.form-page .contact-form-wrap .form-list .form-input .radio-wrap .custom-radio {
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 16px;
}
body main section.form-page .contact-form-wrap .form-list .form-input .radio-wrap .custom-radio .wpcf7-list-item {
  margin-right: 24px;
}
body main section.form-page .contact-form-wrap .form-list .form-input .radio-wrap .custom-radio label {
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  cursor: pointer;
  position: relative;
}
body main section.form-page .contact-form-wrap .form-list .form-input .radio-wrap .custom-radio input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
body main section.form-page .contact-form-wrap .form-list .form-input .radio-wrap .custom-radio .wpcf7-list-item-label {
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  padding-left: 28px;
  position: relative;
}
body main section.form-page .contact-form-wrap .form-list .form-input .radio-wrap .custom-radio .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid #888;
  border-radius: 50%;
  box-sizing: border-box;
}
body main section.form-page .contact-form-wrap .form-list .form-input .radio-wrap .custom-radio input[type=radio]:checked + .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-color: #004BB4;
  border-radius: 50%;
}
body main section.form-page .contact-form-wrap .form-list .form-input .radio-wrap .custom-radio.custom-radio,
body main section.form-page .contact-form-wrap .form-list .form-input .radio-wrap .custom-radio label.custom-radio {
  cursor: pointer;
}
body main section.form-page .contact-form-wrap .form-list .form-input .radio-wrap .custom-radio label.custom-radio {
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  margin-right: 24px;
}
body main section.form-page .contact-form-wrap .form-list .form-input .radio-wrap .custom-radio label.custom-radio input[type=radio] {
  position: static;
  opacity: 1;
  width: auto;
  height: auto;
  display: none;
}
body main section.form-page .contact-form-wrap .form-list .form-input .radio-wrap .custom-radio label.custom-radio .radio-mark {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #888;
  border-radius: 50%;
  margin-right: 8px;
  position: relative;
  box-sizing: border-box;
}
body main section.form-page .contact-form-wrap .form-list .form-input .radio-wrap .custom-radio label.custom-radio input[type=radio]:checked + .radio-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-color: #004BB4;
  border-radius: 50%;
}
body main section.form-page .contact-form-wrap .form-list .form-input .select-wrap {
  position: relative;
  width: 240px;
}
@media screen and (max-width: 767.9px) {
  body main section.form-page .contact-form-wrap .form-list .form-input .select-wrap {
    width: 100%;
  }
}
body main section.form-page .contact-form-wrap .form-list .form-input .select-wrap select {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  padding: 12px 40px 12px 16px;
  border: 1px solid #004BB4;
  background-color: #ffffff;
  font-size: 16px;
  box-sizing: border-box;
  outline: none;
  border-radius: 0;
  cursor: pointer;
}
body main section.form-page .contact-form-wrap .form-list .form-input .select-wrap select:focus {
  border-color: #004BB4;
}
body main section.form-page .contact-form-wrap .form-list .form-input .select-wrap select::-ms-expand {
  display: none;
}
body main section.form-page .contact-form-wrap .form-list .form-input .select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-right: 2px solid #888;
  border-bottom: 2px solid #888;
  pointer-events: none;
}
body main section.form-page .contact-form-wrap .privacy-policy-wrap {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 767.9px) {
  body main section.form-page .contact-form-wrap .privacy-policy-wrap {
    margin-bottom: 40px;
  }
}
body main section.form-page .contact-form-wrap .privacy-policy-wrap .privacy-label {
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: start;
  align-items: flex-start;
  text-align: left;
  cursor: pointer;
  position: relative;
}
body main section.form-page .contact-form-wrap .privacy-policy-wrap .privacy-label .wpcf7-form-control-wrap,
body main section.form-page .contact-form-wrap .privacy-policy-wrap .privacy-label .wpcf7-form-control,
body main section.form-page .contact-form-wrap .privacy-policy-wrap .privacy-label .wpcf7-list-item {
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
}
body main section.form-page .contact-form-wrap .privacy-policy-wrap .privacy-label .wpcf7-list-item {
  margin: 0;
}
body main section.form-page .contact-form-wrap .privacy-policy-wrap .privacy-label input[type=checkbox].custom-checkbox-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
body main section.form-page .contact-form-wrap .privacy-policy-wrap .privacy-label .custom-checkbox-mark {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 2px solid #888;
  border-radius: 4px;
  margin-top: 2px;
  margin-right: 10px;
  position: relative;
  flex-shrink: 0;
  box-sizing: border-box;
}
body main section.form-page .contact-form-wrap .privacy-policy-wrap .privacy-label input[type=checkbox].custom-checkbox-input:checked + .custom-checkbox-mark::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 6px;
  width: 6px;
  height: 12px;
  border-right: 3px solid #004BB4;
  border-bottom: 3px solid #004BB4;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
body main section.form-page .contact-form-wrap .privacy-policy-wrap .privacy-label:has(input[type=checkbox].custom-checkbox-input:checked) .custom-checkbox-mark::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 6px;
  width: 6px;
  height: 12px;
  border-right: 3px solid #004BB4;
  border-bottom: 3px solid #004BB4;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
body main section.form-page .contact-form-wrap .privacy-policy-wrap .privacy-label a {
  color: #004BB4;
  text-decoration: underline;
}
body main section.form-page .contact-form-wrap .privacy-policy-wrap .privacy-label a:hover {
  text-decoration: none;
}
body main section.form-page .contact-form-wrap input[type=submit].link-btn {
  color: #ffffff;
  text-decoration: none;
  width: 360px;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767.9px) {
  body main section.form-page .contact-form-wrap input[type=submit].link-btn {
    width: 100%;
  }
}
@media (hover: hover) and (pointer: fine) {
  body main section.form-page .contact-form-wrap input[type=submit].link-btn:hover {
    color: #333333;
  }
}
body main section.form-thanks-page .wide-center-btn-wrap {
  margin-top: 80px;
}
body main section.form-thanks-page .link-btn {
  color: #ffffff;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  body main section.form-thanks-page .link-btn:hover {
    color: #333333;
  }
}
/*# sourceMappingURL=common.css.map */
