@charset "UTF-8";
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
body.fixed {
  overflow: hidden;
}

/*============================
#site-header
============================*/
#site-header {
  width: 100%;
  position: relative;
  left: 0;
  top: 0;
  z-index: 2;
  padding: 0 30px;
  /*============================
  #site-logo
  ============================*/
  /*============================
  #global-nav
  ============================*/
  /*============================
  .font-size-controls
  ============================*/
}
@media screen and (max-width: 768px) {
  #site-header {
    padding: 0;
    height: 60px;
  }
}
#site-header .container {
  max-width: 1260px;
  margin: auto;
  position: relative;
  padding: 30px;
  background: #fff;
  height: 90px;
}
@media screen and (max-width: 768px) {
  #site-header .container {
    height: 60px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding: 10px 20px;
    border-radius: 0;
  }
}
#site-header #site-logo {
  max-width: none;
  width: 350px;
}
@media screen and (max-width: 768px) {
  #site-header #site-logo {
    width: 69.3333333333vw;
    width: 260px;
  }
}
#site-header #global-nav {
  height: 50px;
  background: #fff;
  border-radius: 0 0 20px 20px;
  margin: 0;
  padding: 0 30px;
  width: 100%;
  max-width: 1260px;
  position: absolute;
  left: 0;
  top: 90px;
}
#site-header #global-nav * {
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  #site-header #global-nav {
    display: none;
  }
}
#site-header #global-nav ul {
  display: flex;
  gap: 2em;
  margin: 0;
  padding: 0;
  list-style: none;
}
#site-header #global-nav ul li a {
  display: block;
  color: #000;
  line-height: 1.5;
  padding-top: 0.2em;
}
#site-header #global-nav ul li.current {
  opacity: 0.5;
  pointer-events: none;
}
#site-header .font-size-controls {
  position: absolute;
  width: auto;
  right: 20px;
  top: 0;
  padding-top: 15px;
  padding-left: 17px;
  border-left: 4px solid #5588EE;
}
@media screen and (max-width: 768px) {
  #site-header .font-size-controls {
    display: none;
  }
}
#site-header .font-size-controls p {
  flex: 0 0 100%;
  margin: 0 0 0.5em;
  padding: 0;
  font-size: 13px !important;
  line-height: 1;
}
#site-header .font-size-controls ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
#site-header .font-size-controls li {
  display: block;
  border: 0;
  font-size: 0px !important;
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
  background-position: center;
  background-size: cover;
  cursor: pointer;
  overflow: hidden;
  text-indent: -100%;
}
#site-header .font-size-controls li:nth-of-type(1) {
  background-image: url(../img/header/size_standard.svg);
}
#site-header .font-size-controls li:nth-of-type(1).active {
  background-image: url(../img/header/size_standard_on.svg);
}
#site-header .font-size-controls li:nth-of-type(2) {
  background-image: url(../img/header/size_large.svg);
}
#site-header .font-size-controls li:nth-of-type(2).active {
  background-image: url(../img/header/size_large_on.svg);
}
#site-header .font-size-controls li:nth-of-type(3) {
  background-image: url(../img/header/size_extra.svg);
}
#site-header .font-size-controls li:nth-of-type(3).active {
  background-image: url(../img/header/size_extra_on.svg);
}

.font-size-controls {
  margin-bottom: 1em;
}
.font-size-controls button {
  margin-right: 0.5em;
  padding: 0.5em 1em;
  font-size: 1em;
  cursor: pointer;
}

.menu-btn {
  display: none;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 60px;
  color: #000;
  text-align: center;
  cursor: pointer;
  z-index: 9;
}
@media screen and (max-width: 768px) {
  .menu-btn {
    display: block;
  }
}
.menu-btn div {
  position: absolute;
  left: 50%;
  top: 30%;
  transform: translateX(-50%);
  width: 50%;
  height: 25%;
}
.menu-btn div i {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #000;
  position: absolute;
  left: 0;
  transition: 0.3s;
}
.menu-btn div i:nth-of-type(1) {
  top: 0;
}
.menu-btn div i:nth-of-type(2) {
  top: calc(50% - 0.5px);
}
.menu-btn div i:nth-of-type(3) {
  bottom: 0;
}
.menu-btn span {
  font-size: 10px;
  font-weight: bold;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 12px;
}
.menu-btn.active {
  position: fixed;
}
.menu-btn.active div i {
  top: 50% !important;
  left: 50% !important;
}
.menu-btn.active div i:nth-of-type(1) {
  transform: translate(-50%, -50%) rotate(25deg);
}
.menu-btn.active div i:nth-of-type(3) {
  transform: scale(0);
}
.menu-btn.active div i:nth-of-type(2) {
  transform: translate(-50%, -50%) rotate(-25deg);
}

/*============================
#sp-nav
============================*/
#sp-nav {
  background: #3322AA;
  position: fixed;
  right: -100%;
  top: 60px;
  width: 100%;
  height: calc(100% - 60px);
  transition: 0.3s;
  overflow-y: scroll;
  /*IE, Edge*/
  -ms-overflow-style: none;
  /*Firefox*/
  scrollbar-width: none;
}
#sp-nav::-webkit-scrollbar {
  display: none;
}
#sp-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}
#sp-nav ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
#sp-nav ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1em;
  color: #fff;
  text-decoration: none;
}
#sp-nav.open {
  right: 0;
}

#site-footer {
  background: #F4F4F4;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #site-footer {
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  #site-footer footer .uk-container {
    padding: 0;
  }
}
#site-footer footer .flex {
  justify-content: space-between;
  padding: 70px 0;
  gap: 4%;
}
@media screen and (max-width: 768px) {
  #site-footer footer .flex {
    display: block;
    padding: 0;
  }
}
#site-footer footer .flex > div {
  border-top: 1px solid #000;
  padding-top: 1em;
  flex: 1;
}
@media screen and (max-width: 768px) {
  #site-footer footer .flex > div {
    border: none;
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  #site-footer footer .flex div:last-of-type {
    border-top: 1px solid #000;
    padding: 1em 20px;
    text-align: center;
  }
}
#site-footer footer .flex div:last-of-type > p {
  white-space: nowrap;
  margin-bottom: 0;
}
#site-footer footer .flex div:last-of-type address {
  margin-top: 0.5em;
  font-size: 0.875em;
}
#site-footer footer .footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 768px) {
  #site-footer footer .footer-menu li {
    border-top: 1px solid #ddd;
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  #site-footer footer .footer-menu li a {
    display: flex;
    font-family: "FontAwesome" !important;
    justify-content: space-between;
    padding: 1em 20px;
    text-decoration: none;
  }
  #site-footer footer .footer-menu li a::after {
    content: "\f138";
    color: #002299;
  }
}
#site-footer .cp {
  background: #5589C6;
  color: #fff;
  font-size: 12px;
  text-align: center;
  padding: 40px 20px 40px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  #site-footer .cp {
    padding: 40px 10px 40px;
    font-size: 10px;
  }
}

/*============================
.pagettl
============================*/
.pagettl {
  position: relative;
  height: 15em;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .pagettl {
    height: 120px;
  }
}
.pagettl h1 {
  position: relative;
  margin: 0;
  padding: 0 1em;
  font-size: 40px;
  font-size: 2.5em;
  letter-spacing: 0.2em;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  position: absolute;
  left: 0;
  top: 110px;
  top: 2.75em;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .pagettl h1 {
    font-size: 26px;
    top: 50%;
    line-height: 1.2;
    transform: translateY(-50%);
  }
}
.pagettl img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 0;
}
.pagettl::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #000;
  opacity: 0.2;
}

/*============================
.news-list
============================*/
.news-list {
  border-bottom: 1px solid #94B5C1;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .news-list {
    border-bottom: 1px solid #94B5C1;
  }
}
.news-list li {
  display: flex;
}
@media screen and (max-width: 768px) {
  .news-list li {
    display: block;
    border-top: 1px solid #94B5C1;
  }
}
.news-list li > span {
  display: block;
  padding: 1em;
}
.news-list li span:nth-of-type(1) {
  border-top: 2px solid #94B5C1;
}
@media screen and (max-width: 768px) {
  .news-list li span:nth-of-type(1) {
    display: inline-block;
    padding-bottom: 0;
  }
}
.news-list li span:nth-of-type(2) {
  flex: 1;
  border-top: 1px solid #94B5C1;
}
@media screen and (max-width: 768px) {
  .news-list li span:nth-of-type(2) {
    padding-top: 0;
    border: none;
  }
}

/*============================
.formDl
============================*/
.formDl {
  margin: 0;
  padding: 1em 2em;
  display: flex;
}
@media screen and (max-width: 768px) {
  .formDl {
    display: block;
    padding: 0;
    margin: 0 -20px;
  }
}
.formDl:nth-of-type(odd) {
  background-color: #f9f9f9;
}
.formDl dt,
.formDl dd {
  padding: 1em 0;
}
@media screen and (max-width: 768px) {
  .formDl dt,
.formDl dd {
    padding: 1em 20px;
  }
}
.formDl dt {
  flex: 0 0 13em;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-right: 2em;
}
.formDl dt .indis {
  color: #cc0000;
  font-weight: normal;
  font-size: 0.7em;
  display: inline-block;
  padding-left: 1em;
  padding-top: 0.5em;
}
.formDl dd {
  flex: 1;
  border-left: 1px solid #ddd;
  padding-left: 2em;
}
@media screen and (max-width: 768px) {
  .formDl dd {
    border: none;
    padding: 0 20px 1em;
  }
}
.formDl dd p:last-of-type {
  margin-bottom: 0;
}
.formDl .uk-input,
.formDl .uk-select,
.formDl .uk-textarea {
  background: #fff;
}

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

body {
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
  color: #000;
  line-height: 2;
  font-feature-settings: "palt";
}

/* サイズ別クラス */
body.font-size-standard main {
  font-size: 16px;
}
body.font-size-large main {
  font-size: 1.5em;
}

body.font-size-x-large main {
  font-size: 2em;
}

/*============================
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;
  }
}

/*============================
kakomi
============================*/
.kakomi {
  border: 1px solid #94B5C1;
  border-radius: 0.3em;
}

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

/*============================
.sec
============================*/
/*============================
a
============================*/
:root :where(a:where(:not(.wp-element-button))) {
  text-decoration: none;
}

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

/*============================
確認画面で非表示
============================*/
.confirm .confirm-no-disp {
  display: none !important;
}

/*============================
table
============================*/
.uk-table th,
.uk-table td {
  vertical-align: top;
  font-size: 1em;
}

table.tb1 {
  border-collapse: collapse;
  border-spacing: 0;
  border-bottom: 1px solid #ddd;
}
table.tb1 th,
table.tb1 td {
  border-top: 1px solid #ddd;
  padding: 1em 2em;
  text-align: left;
}
table.tb1 th p:last-of-type,
table.tb1 td p:last-of-type {
  margin-bottom: 0;
}
table.tb1 th {
  background: #f9f9f9;
}

/*============================
Headlines
============================*/
h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.5em;
}

h3 {
  font-size: 1.17em;
}

h4 {
  font-size: 1em;
}

h5 {
  font-size: 0.83em;
}

h6 {
  font-size: 0.67em;
}

.ttl1 {
  border-left: 0.4em solid #5588EE;
  line-height: 1.75;
  padding: 0 0 0.2em 0.5em;
}

/*============================
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 {
  padding: 0;
}
.jisageList li {
  text-indent: -1em;
  margin-left: 1em;
}

.link-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #ddd;
}
.link-list li {
  border-bottom: 1px solid #ddd;
  padding: 1em 0;
}
.link-list li .fa {
  margin-left: 0.5em;
}
.link-list li.flex {
  display: flex;
  gap: 1.5em;
}
.link-list li.flex span:nth-of-type(2) a {
  text-decoration: underline;
}
.link-list li.flex span:nth-of-type(2) a:hover {
  text-decoration: none;
}

/*============================
.summary
============================*/
@media screen and (max-width: 768px) {
  body.summary table.uk-table th,
body.summary table.uk-table td {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  body.summary table.uk-table th {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  body.summary table.uk-table td {
    padding-top: 0;
  }
}

/*============================
.business
============================*/
body.business .kakomi {
  padding: 30px 40px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  body.business .kakomi {
    padding: 25px;
  }
}
body.business .kakomi ul {
  margin: 0;
  padding: 0;
}
body.business .kakomi ul li {
  display: flex;
  gap: 1em;
}
body.business .kakomi ul li:not(:last-of-type) {
  margin-bottom: 1em;
}

/*============================
.activity
============================*/
/*============================
.business
============================*/
/*============================
.contact
============================*/
/*============================
.links
============================*/
/*============================
.links
============================*/
.sitemap-lists {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .sitemap-lists {
    display: block;
  }
}
.sitemap-lists ul {
  flex: 0 0 calc((100% - 60px) / 3);
  margin: 0;
  padding: 0;
}
.sitemap-lists ul li {
  border-bottom: 1px solid #ddd;
  padding: 0.5em 0;
}