@charset "UTF-8";
@import url("https://use.fontawesome.com/releases/v6.6.0/css/all.css");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
body.fixed {
  overflow: hidden;
}

#site-header {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  z-index: 99;
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  #site-header {
    padding-left: 10px;
  }
}
#site-header * {
  margin: 0;
  padding: 0;
  list-style: none;
}
#site-header #site-logo {
  max-width: 280px;
}
@media screen and (max-width: 768px) {
  #site-header #site-logo {
    max-width: 190px;
  }
}
#site-header #header-menu {
  margin-right: 81px;
}
@media screen and (max-width: 768px) {
  #site-header #header-menu {
    margin-right: 61px;
  }
}
#site-header #header-menu ul {
  display: flex;
  gap: 2.5em;
}
#site-header #header-menu ul li a {
  line-height: 80px;
  text-decoration: none;
  color: #000;
  font-weight: 600;
}
#site-header #header-menu ul li.contact {
  flex-shrink: 0;
}
#site-header #header-menu ul li.contact a {
  display: block;
  background-color: #1E509A;
  color: #fff;
  padding: 0 1.6em;
  font-size: 0.8em;
}
@media screen and (max-width: 768px) {
  #site-header #header-menu ul li.contact a {
    line-height: 60px;
    font-size: 10px;
  }
}
@media screen and (max-width: 960px) {
  #site-header #header-menu ul li:not(.contact) {
    display: none;
  }
}
#site-header .menu-btn {
  display: block;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 80px;
  height: 80px;
  background: #333333;
  color: #fff;
  text-align: center;
  cursor: pointer;
  z-index: 9;
}
@media screen and (max-width: 768px) {
  #site-header .menu-btn {
    width: 60px;
    height: 60px;
  }
}
#site-header .menu-btn div {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 25px;
  height: 22px;
}
#site-header .menu-btn div i {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 0;
  transition: 0.3s;
}
#site-header .menu-btn div i:nth-of-type(1) {
  top: 0;
}
#site-header .menu-btn div i:nth-of-type(2) {
  top: calc(50% - 0.5px);
}
#site-header .menu-btn div i:nth-of-type(3) {
  bottom: 0;
}
#site-header .menu-btn.active {
  position: fixed;
}
#site-header .menu-btn.active div i {
  top: 50% !important;
  left: 50% !important;
}
#site-header .menu-btn.active div i:nth-of-type(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
#site-header .menu-btn.active div i:nth-of-type(3) {
  transform: scale(0);
}
#site-header .menu-btn.active div i:nth-of-type(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
#site-header #global-nav {
  display: block;
  position: fixed;
  right: -100%;
  top: 80px;
  width: 100%;
  height: calc(100vh - 80px);
  z-index: 1;
  transition: 0.3s;
  overflow-y: scroll;
  padding: 50px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #site-header #global-nav {
    top: 60px;
    height: calc(100vh - 60px);
    /*IE, Edge*/
    -ms-overflow-style: none;
    /*Firefox*/
    scrollbar-width: none;
    /*Chrome, Safari*/
  }
  #site-header #global-nav::-webkit-scrollbar {
    display: none;
  }
}
#site-header #global-nav ul {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}
#site-header #global-nav ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  text-align: center;
}
#site-header #global-nav ul li a {
  color: #fff;
  display: block;
  padding: 1em 0;
}
#site-header #global-nav.open {
  right: 0;
  background-color: rgba(0, 0, 0, 0.85);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

#site-footer footer a {
  color: #000;
}
#site-footer footer .uk-container .flex {
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  #site-footer footer .uk-container .flex {
    display: block;
  }
}
#site-footer footer .uk-container .flex div .footer-logo {
  width: 280px;
}
@media screen and (max-width: 768px) {
  #site-footer footer .uk-container .flex div .footer-logo {
    width: 180px;
  }
}
#site-footer footer .uk-container .flex div address {
  font-size: 14px;
}
#site-footer footer .uk-container .flex div:nth-of-type(2) {
  text-align: right;
}
@media screen and (max-width: 768px) {
  #site-footer footer .uk-container .flex div:nth-of-type(2) {
    text-align: left;
  }
}
#site-footer footer .uk-container .flex div:nth-of-type(2) nav.footer-menu ul {
  display: flex;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  gap: 2em;
}
@media screen and (max-width: 768px) {
  #site-footer footer .uk-container .flex div:nth-of-type(2) nav.footer-menu ul {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 768px) {
  #site-footer footer .uk-container .flex div:nth-of-type(2) nav.footer-menu ul li {
    font-size: 12px;
  }
}
#site-footer footer .uk-container .flex div:nth-of-type(2) p.cp {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  #site-footer footer .uk-container .flex div:nth-of-type(2) p.cp {
    margin-bottom: 0;
    font-size: 11px;
  }
}

/*============================
.pagett
============================*/
.pagettl {
  padding: 45px 0 0;
}
@media screen and (max-width: 768px) {
  .pagettl {
    padding: 0;
  }
}
.pagettl .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .pagettl .flex {
    display: block;
  }
}
.pagettl .flex div {
  flex: 1;
  padding-left: 20px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .pagettl .flex div {
    padding: 0 20px;
    display: block;
  }
}
.pagettl .flex figure {
  max-width: 61%;
  max-height: 440px;
  position: relative;
  overflow: hidden;
  border-radius: 1000px 0 0 1000px;
}
@media screen and (max-width: 768px) {
  .pagettl .flex figure {
    border-radius: 0 !important;
    max-width: none;
    max-height: none;
  }
}
.pagettl .flex figure::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.pagettl .flex figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*============================
.pagett2
============================*/
.pagettl2 {
  padding: 120px 0 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .pagettl2 {
    padding: 50px 0 20px;
  }
}
.pagettl2 .ttl1 {
  text-align: center;
}
.pagettl2 .ttl1 small {
  display: block;
}
.pagettl2 .ttl1 small::before {
  display: none;
}

/*============================
.breadcrumb
============================*/
.breadcrumb ul {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.breadcrumb ul li {
  color: #000;
}
@media screen and (max-width: 768px) {
  .breadcrumb ul li {
    font-size: 11px;
  }
}
.breadcrumb ul li a {
  color: #1E509A;
}
.breadcrumb ul li:not(:last-of-type)::after {
  content: "｜";
  padding: 0 0.5em;
}

/*============================
.bg-container
============================*/
.bg-container {
  position: relative;
}
.bg-container .bg {
  width: 100%;
  padding: 37% 0 0 0;
  background: url(../img/home-mainbg.jpg) no-repeat center center;
  background-size: cover;
  position: absolute;
  left: 0;
  z-index: -1;
}
.bg-container .bg1 {
  top: 5%;
}
.bg-container .bg2 {
  top: 36%;
}
.bg-container .bg3 {
  bottom: -5%;
}

/*============================
.contact-box
============================*/
.contact-box {
  background: #EEF6FC;
  border-radius: 20px;
  padding: 3em;
}
@media screen and (max-width: 768px) {
  .contact-box {
    padding: 2em;
  }
}
.contact-box div.uk-grid {
  justify-content: space-between;
  align-items: center;
}
.contact-box div.uk-grid div h2.ttl1 {
  margin-bottom: 0;
}
.contact-box div.uk-grid div .phone,
.contact-box div.uk-grid div .mail {
  line-height: 1;
}
.contact-box div.uk-grid div .phone a,
.contact-box div.uk-grid div .mail a {
  font-family: "Montserrat", serif !important;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-weight: 700;
  color: #1E509A;
  text-decoration: none;
}
.contact-box div.uk-grid div .phone {
  font-size: 51px;
}
@media screen and (max-width: 768px) {
  .contact-box div.uk-grid div .phone {
    font-size: 35.7px;
  }
}
.contact-box div.uk-grid div .mail {
  font-size: 21px;
}
@media screen and (max-width: 768px) {
  .contact-box div.uk-grid div .mail {
    font-size: 14.7px;
  }
}

/*============================
.newslist
============================*/
.newslist {
  margin: 0;
  padding: 0;
}
.newslist * {
  margin: 0;
  padding: 0;
}
.newslist li {
  margin-bottom: 1em;
  display: flex;
  gap: 1em;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  margin: -1px 0 0 0;
  padding: 1em 0;
}
@media screen and (max-width: 768px) {
  .newslist li {
    display: block;
  }
}
.newslist li span {
  display: block;
}
.newslist li a {
  color: #000;
}

* {
  box-sizing: border-box;
  list-style: none;
}

html,
body {
  font-family: "Noto Sans JP", sans-serif !important;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

body {
  color: #000;
  padding-top: 81px;
}
@media screen and (max-width: 768px) {
  body {
    padding-top: 61px;
    font-size: 14px;
  }
}

/*============================
UIkit overwrite
============================*/
.uk-card-media-top img {
  width: 100%;
  height: auto;
}

/*============================
commingsoon
============================*/
.comingsoon {
  opacity: 0.3;
  pointer-events: none;
}

/*============================
main
============================*/
main {
  overflow: hidden;
}

/*============================
Responsive
============================*/
.sp {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block !important;
  }
}

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

/*============================
BOX Models
============================*/
/*============================
.flex
============================*/
.flex {
  display: flex;
}

/*============================
.btn
============================*/
.btn {
  display: inline-block;
  text-align: center;
  border-radius: 100px;
  background: transparent;
  border: 1px solid #1E509A;
  color: #1E509A;
  font-weight: 600;
  padding: 1em 3em;
  line-height: 1.3;
  text-decoration: none !important;
  opacity: 1;
  min-width: 180px;
}
.btn:hover {
  background: #1E509A;
  color: #fff;
  opacity: 1;
}
.btn.btn-bl {
  background: #1E509A;
  color: #fff;
}
.btn.btn-bl:hover {
  background: transparent;
  color: #1E509A;
}

.uk-section-primary .btn {
  border-color: #fff;
  color: #fff;
}
.uk-section-primary .btn:hover {
  background: #fff;
  color: #1E509A !important;
}

/*============================
a
============================*/
a {
  transition: 0.3s;
}

a:hover {
  opacity: 0.85;
}

a[href*="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href*="tel:"] {
    pointer-events: auto;
  }
}

/*============================
table
============================*/
table.tb1 {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border-bottom: 1px solid #ccc;
}
table.tb1 th,
table.tb1 td {
  border-top: 1px solid #ccc;
  font-weight: normal;
  vertical-align: top;
  text-align: left;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  table.tb1 th,
table.tb1 td {
    display: block;
  }
}
table.tb1 th {
  width: 20%;
  border-top: 2.5px solid #1E509A;
  font-weight: bold;
  padding: 2em 1em;
}
@media screen and (max-width: 768px) {
  table.tb1 th {
    width: auto;
    padding: 1.5em 0 0.5em;
  }
}
table.tb1 td {
  padding: 2em 2em;
}
@media screen and (max-width: 768px) {
  table.tb1 td {
    border-top: none;
    padding: 0 0 1.8em;
  }
}

/*============================
Headlines
============================*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

.ttl1 {
  font-family: "Montserrat", serif !important;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-weight: 700;
  font-size: 76px;
  line-height: 1;
  text-align: left;
  color: #1E509A;
  margin-bottom: 0.75em;
}
@media screen and (max-width: 768px) {
  .ttl1 {
    font-size: 49.4px;
  }
}
.ttl1 small {
  font-family: "Noto Sans JP", sans-serif !important;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 1em;
  font-size: 0.25em;
  padding-top: 0.7em;
}
@media screen and (max-width: 768px) {
  .ttl1 small {
    font-size: 16px;
  }
}
.ttl1 small::before {
  content: "";
  display: inline-block;
  width: 2.5em;
  height: 1px;
  background-color: #1E509A;
}

.uk-section-primary .ttl1 {
  color: #fff;
}
.uk-section-primary .ttl1 small::before {
  background-color: #fff;
}

.ttl2 {
  font-size: 36px;
  color: #1E509A;
  margin: 0 0 1.5em;
}
@media screen and (max-width: 768px) {
  .ttl2 {
    font-size: 25.2px;
  }
}

+ .ttl2 {
  margin: 1.5em 0;
}

.ttl3 {
  color: #1E509A;
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.5em;
  margin-bottom: 1.5em;
}

.ttl4 {
  font-size: 20px;
  border-left: 5px solid #1E509A;
  padding-left: 0.7em;
}

/*============================
list
============================*/
.maruList,
.komeList {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.maruList *,
.komeList * {
  margin: 0;
  padding: 0;
}
.maruList li,
.komeList li {
  margin-left: 1em;
  list-style: none !important;
}
.maruList li::before,
.komeList li::before {
  content: "●";
  margin-left: -1em;
}

.maruList li::before {
  content: "●";
}

.komeList li::before {
  content: "※";
}

.jisageList li {
  text-indent: -1em;
  margin-left: 1em;
}

.inlineDl {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.inlineDl dt, .inlineDl dd {
  margin: 0;
  padding: 0;
  font-weight: normal;
}
.inlineDl dt {
  flex: 0 0 8em;
}
.inlineDl dd {
  flex: 0 0 calc(100% - 8em);
}

.maruList-inline {
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
}
.maruList-inline li {
  margin-right: 1em;
}
.maruList-inline li::before {
  content: "●";
}

/*============================
.form-item
============================*/
.form-item {
  margin-bottom: 30px;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .form-item {
    display: block;
  }
}
.form-item dt {
  flex: 0 0 16em;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .form-item dt {
    display: block;
    margin-bottom: 0.5em;
  }
  .form-item dt br {
    display: none;
  }
}
.form-item dt .uk-label {
  font-size: 0.7em;
  padding: 0.2em 0.5em 0.3em;
  line-height: 1;
  float: right;
  margin-top: 0.7em;
}
@media screen and (max-width: 768px) {
  .form-item dt .uk-label {
    float: left;
    margin-right: 1em;
  }
}
.form-item dd {
  flex: 0 0 calc(100% - 20em);
}
.form-item dd .uk-input,
.form-item dd .uk-select,
.form-item dd .uk-textarea {
  background: #F7F7F7;
  border: none;
}
.form-item dd .uk-input,
.form-item dd .uk-textarea {
  line-height: 1.5;
  padding: 1em;
}
.form-item dd .uk-select {
  padding: 0 1em;
}
.form-item dd .uk-textarea {
  height: 10em;
}

/* ページング */
.nav-links{
   display:flex;
   justify-content: center;

}
.page-numbers{
   display:inline-block;
   padding:0px;
   border-radius:3px;
   background:#ffffff;
}

.page-numbers li{
  display:inline-block;
  margin:0px 5px;
}

.page-numbers li:has(span){
  background-color: #1E509A;
}

.page-numbers li span{
  background-color: #1E509A;
  color: #fff;
}

.page-numbers li a,
.page-numbers li span{
  padding: 0px 10px;
}


/*============================
COMPANYページ
.page-company
============================*/
.page-company #company-message h3 {
  margin-bottom: 1.5em;
}
.page-company #company-message h3 img {
  display: block;
  width: 100%;
  max-width: 600px;
}
.page-company #company-message .signature {
  display: flex;
  align-items: center;
  gap: 1em;
  justify-content: flex-end;
}
.page-company #company-message .signature img {
  display: block;
  max-width: 180px;
  margin-top: 0.5em;
}
.page-company #company-message figure {
  margin-bottom: 3em;
}
.page-company #company-message p {
  line-height: 2.25;
}
.page-company #company-info .tb1 th {
  white-space: nowrap;
}
.page-company .csr-icon-lists {
  gap: 30px;
  padding: 30px 0;
  align-items: center;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .page-company .csr-icon-lists {
    gap: 20px;
  }
}
.page-company .csr-icon-lists li {
  margin: 0;
  padding: 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page-company .csr-icon-lists li {
    flex: 0 0 calc((100% - 40px) / 3);
  }
}
.page-company .csr-icon-lists img {
  max-width: 150px;
  max-height: 150px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .page-company .csr-icon-lists img {
    max-width: 90px;
    max-height: 90px;
  }
}
.page-company .csr-icon-lists .break {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .page-company .csr-icon-lists .break {
    display: none;
  }
}
.page-company .backnumber {
  padding-top: 2em;
}
.page-company .backnumber dt {
  margin-bottom: 1em;
}
.page-company .backnumber ul {
  margin: 0;
  padding: 0;
}

/*============================
SERVICEページ
.page-service
============================*/
.page-service {
  /*============================
  #service-content
  ============================*/
}
.page-service #service-content .uk-container h3 {
  text-align: center;
}
.page-service #service-content .uk-container .service-pic01 {
  margin: 0;
  padding: 40px;
  background: #dfedf8;
  border-radius: 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page-service #service-content .uk-container .service-pic01 {
    padding: 20px;
    border-radius: 10px;
  }
}
.page-service #service-content .uk-container .service-pic01 img {
  max-width: 730px;
  width: 100%;
  margin: auto;
}
/*============================
PRODUCTページ
.page-product
============================*/
.page-product {
  /*============================
  #product-idx
  ============================*/
  /*============================
  #product-detail
  ============================*/
  /*============================
  .contact-box
  ============================*/
}
.page-product .bg1,
.page-product .bg2 {
  display: none;
}
.page-product #product-idx {
  padding-bottom: 150px;
}
.page-product #product-idx .uk-container .uk-grid div .uk-card {
  text-align: center;
  padding: 25px;
  border-radius: 20px;
}
.page-product #product-idx .uk-container .uk-grid div .uk-card figure + p {
  font-weight: bold;
  color: #1E509A;
  line-height: 1.5;
  text-align: left;
}
.page-product #product-idx .uk-container .uk-grid div .uk-card .btn {
  display: block;
  padding: 0.5em 1em;
}
.page-product .contact-box {
  background: #EEF6FC;
  border-radius: 20px;
}


.normalTbl {
  border: 1px solid;
  border-collapse: collapse;
  width: 100%;
  margin: 20px 0;  
}

.normalTbl th,
.normalTbl td {
  border: solid 1px #cccccc;
  padding: 0.25em 0.5em;
  
}

.nowrapTbl {
  width: 100%;
  margin: 20px 0 5px 0;
  overflow: auto;/*tableをスクロールさせる*/
  white-space: nowrap;/*tableのセル内にある文字の折り返しを禁止*/
}

.nowrapTbl table{
  border: 1px solid;
  border-collapse: collapse;
  width: 100%;
}

.nowrapTbl::-webkit-scrollbar{/*tableにスクロールバーを追加*/
  height: 5px;
 }
 .nowrapTbl::-webkit-scrollbar-track{/*tableにスクロールバーを追加*/
  background: #F1F1F1;
 }
 .nowrapTbl::-webkit-scrollbar-thumb {/*tableにスクロールバーを追加*/
  background: #BCBCBC;
 }

.nowrapTbl th,
.nowrapTbl td {
  border: solid 1px #cccccc;
  padding: 0.25em 0.5em;
  
}

.post-inlineDl {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.post-inlineDl dt, .post-inlineDl dd {
  margin: 0;
  padding: 0;
  font-weight: normal;
}
.post-inlineDl dt {
  flex: 0 0 10em;
}
.post-inlineDl dd {
  flex: 0 0 calc(100% - 10em);
}

.page-product .caption{
  margin: 5px 0 30px 0;
}

@media (min-width: 640px) {
  .page-product .large-margin{
    height: 27vw;
    max-height: 280px;
  }
}

/*============================
RECRUITページ
.page-recruit
============================*/
.page-recruit {
  /*============================
  #recruit-guideline01
  ============================*/
  /*============================
  #recruit-guideline02
  ============================*/
  /*============================
  #btn-cont
  ============================*/
}
.page-recruit #recruit-guideline02 {
  padding-bottom: 0;
}

/* UI-kitの上書き */

.form-item dd .wpcf7-form-control-wrap .wpcf7-list-item{ 
  display: inline-block;
  margin: 0 1em 0 0 ;
}

.form-item dd .wpcf7-form-control-wrap .wpcf7-list-item .wpcf7-free-text{
  background: #F7F7F7;
  border: none;
  line-height: 1.5;
  padding: 1em;
  height: 40px;
  vertical-align: middle;
  display: inline-block;
  margin-left: 10px;
}

.form-item dd .wpcf7-form-control-wrap .wpcf7-list-item .wpcf7-free-text:focus{
outline: none;
}

.form-item dd .wpcf7-form-control-wrap .wpcf7-list-item input[type="radio"],
.form-item dd .wpcf7-form-control-wrap .wpcf7-list-item input[type="checkbox"]{
  display: inline-block;
  height: 16px;
  width: 16px;
  overflow: hidden;
  margin-top: -4px;
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  border: 1px solid #cccccc;
  transition: 0.2s ease-in-out;
  transition-property: background-color, border;
}

.form-item dd .wpcf7-form-control-wrap .wpcf7-list-item input[type="radio"] {
  border-radius: 50%;
}

.form-item dd .wpcf7-form-control-wrap .wpcf7-list-item input[type="radio"]:focus {
  background-color: rgba(0, 0, 0, 0);
  outline: none;
  border-color: #1E509A;
}

.form-item dd .wpcf7-form-control-wrap .wpcf7-list-item input:checked,
.form-item dd .wpcf7-form-control-wrap .wpcf7-list-item input:indeterminate {
  background-color: #1E509A;
  border-color: transparent;
}

.form-item dd .wpcf7-form-control-wrap .wpcf7-list-item input[type="radio"]:checked {
  background-image: url(data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22%23fff%22%20cx%3D%228%22%20cy%3D%228%22%20r%3D%222%22%20%2F%3E%0A%3C%2Fsvg%3E);
}

.form-item dd .wpcf7-form-control-wrap .wpcf7-list-item input[type="checkbox"]:checked  {
  background-image: url(data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2211%22%20viewBox%3D%220%200%2014%2011%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23fff%22%20points%3D%2212%201%205%207.5%202%205%201%205.5%205%2010%2013%201.5%22%20%2F%3E%0A%3C%2Fsvg%3E%0A);
}

/* Focus */
.form-item dd .wpcf7-form-control-wrap .wpcf7-list-item input:checked:focus,
.form-item dd .wpcf7-form-control-wrap .wpcf7-list-item input:indeterminate:focus {
  background-color: #163a6f;
}
/* UI-kitの上書きここまで */

/*============================
NEWSページ
.page-news
============================*/
.page-news .bg1,
.page-news .bg2 {
  display: none;
}

/*============================
CONTACTページ
.page-contact
============================*/
.page-contact .bg1,
.page-contact .bg2 {
  display: none;
}

.wpcf7 form.invalid .wpcf7-response-output{
  border-color: #dc3232 !important;
  /* border: none; */
  color: #dc3232;
}

/*============================
PRIVACYページ
.page-privacy
============================*/
.page-privacy .bg1 {
  display: none;
}

/*============================
SITEMAPページ
.page-sitemap
============================*/

.page-sitemap dd{
  border-bottom:1px solid #ccc;
  margin-top: 2rem;
}

.page-sitemap dd svg{
  background-color: #1E509A;
  color: #ffffff;
  margin-right: 0.5rem;
}

.page-sitemap ul{
  margin: 0px;
  padding-left: 40px;
}

.page-sitemap li{
  font-size: small;
  margin-top: 0.5em;
  /* list-style: square; */
}

/* .page-sitemap li::before{
  color: #1E509A;
} */