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

#site-header {
  height: 120px;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  transition: 0.3s;
  z-index: 999;
  background-color: rgb(255, 255, 255);
  /*============================
  .desc
  ============================*/
  /*============================
  #global-nav
  ============================*/
}
@media screen and (max-width: 768px) {
  #site-header {
    display: block;
    height: 70px;
  }
}
#site-header .desc {
  height: 30px;
  color: #fff;
  background-color: #48AA31;
  padding-left: 20px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #site-header .desc {
    height: 20px;
    padding-left: 10px;
  }
}
#site-header .desc p {
  max-width: 1440px;
  margin: auto;
  font-size: 13px;
  line-height: 30px;
}
@media screen and (max-width: 768px) {
  #site-header .desc p {
    font-size: 10px;
    line-height: 20px;
  }
}
#site-header .wrap {
  max-width: 1440px;
  margin: auto;
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  #site-header .wrap {
    padding-left: 10px;
  }
}
#site-header .wrap .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*============================
  #site-logo
  ============================*/
}
#site-header .wrap .flex #site-logo img {
  height: 60px;
}
@media screen and (max-width: 768px) {
  #site-header .wrap .flex #site-logo img {
    height: 36px;
  }
}
#site-header .wrap .flex .site-header-right {
  display: flex;
  gap: 10px;
  align-items: center;
  /*============================
  SNS BUTTONS
  ============================*/
  /*============================
  Humburger menu button
  ============================*/
}
#site-header .wrap .flex .site-header-right .header-btns ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  #site-header .wrap .flex .site-header-right .header-btns ul {
    gap: 5px;
  }
}
#site-header .wrap .flex .site-header-right .header-btns ul li a {
  display: block;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 100%;
  background-color: #FFBF00;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 768px) {
  #site-header .wrap .flex .site-header-right .header-btns ul li a {
    width: 35px;
    height: 35px;
  }
}
#site-header .wrap .flex .site-header-right .header-btns ul li a i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 22px;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  #site-header .wrap .flex .site-header-right .header-btns ul li a i {
    font-size: 15px;
  }
}
#site-header .wrap .flex .site-header-right .header-btns ul li a:hover i {
  transform: translate(-50%, -50%) scale(1.1);
}
#site-header .wrap .flex .site-header-right .header-btns ul li.insta a {
  background: linear-gradient(#fed601 0%, #ff7a01 20.2%, #ff0069 49.26%, #d300c5 73.89%, #7638fa 100%);
}
#site-header .wrap .flex .site-header-right .header-btns ul li.insta a i {
  font-size: 27px;
}
@media screen and (max-width: 768px) {
  #site-header .wrap .flex .site-header-right .header-btns ul li.insta a i {
    font-size: 20px;
  }
}
#site-header .wrap .flex .site-header-right .header-btns ul li.contact a {
  background-color: #0C449B;
}
#site-header .wrap .flex .site-header-right .menu-btn {
  margin: 0;
  padding: 0;
  position: relative;
  right: 0;
  top: 0px;
  width: 90px;
  height: 90px;
  background: #48AA31;
  color: #fff;
  text-align: center;
  cursor: pointer;
  z-index: 9;
}
@media screen and (max-width: 768px) {
  #site-header .wrap .flex .site-header-right .menu-btn {
    width: 50px;
    height: 50px;
  }
}
#site-header .wrap .flex .site-header-right .menu-btn > div {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#site-header .wrap .flex .site-header-right .menu-btn .menu-btn-icon {
  left: 50%;
  transform: translateX(-50%);
  position: relative;
  width: 26px;
  height: 22px;
}
@media screen and (max-width: 768px) {
  #site-header .wrap .flex .site-header-right .menu-btn .menu-btn-icon {
    width: 24px;
    height: 18px;
  }
}
#site-header .wrap .flex .site-header-right .menu-btn .menu-btn-icon i {
  display: block;
  width: 100%;
  height: 4px;
  background-color: #fff;
  position: absolute;
  left: 0;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  #site-header .wrap .flex .site-header-right .menu-btn .menu-btn-icon i {
    height: 3px;
  }
}
#site-header .wrap .flex .site-header-right .menu-btn .menu-btn-icon i:nth-of-type(1) {
  top: 0;
}
#site-header .wrap .flex .site-header-right .menu-btn .menu-btn-icon i:nth-of-type(2) {
  top: calc(50% - 2px);
}
@media screen and (max-width: 768px) {
  #site-header .wrap .flex .site-header-right .menu-btn .menu-btn-icon i:nth-of-type(2) {
    top: calc(50% - 1.5px);
  }
}
#site-header .wrap .flex .site-header-right .menu-btn .menu-btn-icon i:nth-of-type(3) {
  bottom: 0;
}
#site-header .wrap .flex .site-header-right .menu-btn .menu-btn-txt {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  display: block;
  margin-top: 0.5em;
}
@media screen and (max-width: 768px) {
  #site-header .wrap .flex .site-header-right .menu-btn .menu-btn-txt {
    font-size: 10px;
    line-height: 1;
    vertical-align: bottom;
  }
}
#site-header .wrap .flex .site-header-right .menu-btn.active div i {
  top: 50% !important;
  left: 50% !important;
}
#site-header .wrap .flex .site-header-right .menu-btn.active div i:nth-of-type(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
#site-header .wrap .flex .site-header-right .menu-btn.active div i:nth-of-type(3) {
  transform: scale(0);
}
#site-header .wrap .flex .site-header-right .menu-btn.active div i:nth-of-type(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
#site-header #global-nav {
  position: fixed;
  width: 100%;
  height: calc(100% - 120px);
  right: -100%;
  top: 120px;
  transition: 0.3s ease;
  background: #48AA31;
  overflow-y: scroll;
  /*IE, Edge*/
  -ms-overflow-style: none;
  /*Firefox*/
  scrollbar-width: none;
  /*Chrome, Safari*/
  color: #fff;
}
#site-header #global-nav::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 768px) {
  #site-header #global-nav {
    height: calc(100% - 70px);
    top: 70px;
    padding: 0 0px 20px;
  }
}
#site-header #global-nav h2 {
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 2em 0 1em;
}
@media screen and (max-width: 768px) {
  #site-header #global-nav h2 {
    padding: 2em 0 0;
    font-size: 20px;
  }
}
#site-header #global-nav .global-nav-main {
  display: flex;
  gap: 2em;
  margin-bottom: 3em;
}
@media screen and (max-width: 768px) {
  #site-header #global-nav .global-nav-main {
    display: block;
  }
}
#site-header #global-nav .global-nav-main > div {
  flex: 1;
  border-top: 1px solid #fff;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #site-header #global-nav .global-nav-main > div {
    padding: 30px;
    margin-bottom: 0px;
    border-top: none;
  }
}
#site-header #global-nav .global-nav-main > div p {
  margin: 0;
  padding: 0.5em 0;
}
@media screen and (max-width: 768px) {
  #site-header #global-nav .global-nav-main > div p {
    font-size: 16px;
    margin-bottom: 0.5em;
  }
}
#site-header #global-nav .global-nav-main > div ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
#site-header #global-nav .global-nav-main > div ul li {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 16px;
  position: relative;
  text-indent: 1em;
}
#site-header #global-nav .global-nav-main > div ul li a {
  color: #fff;
  display: block;
  padding: 0.5em 0;
  text-decoration: none;
}
#site-header #global-nav .global-nav-main > div ul li a::after {
  content: "\f105";
  font-family: "FontAwesome" !important;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
#site-header #global-nav .global-nav-main > div ul li a[target=_blank]::after {
  content: "\f08e";
  content: "\f14c";
}
#site-header #global-nav .global-nav-main > div ul li.current-menu-item a {
  background-color: rgba(255, 255, 255, 0.15);
}
#site-header #global-nav .global-nav-sub {
  border-top: 1px solid #fff;
  padding: 2em 0;
}
@media screen and (max-width: 768px) {
  #site-header #global-nav .global-nav-sub {
    padding: 1em 0;
  }
}
#site-header #global-nav .global-nav-sub ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1em;
}
#site-header #global-nav .global-nav-sub ul li {
  margin: 0;
  padding: 0;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #site-header #global-nav .global-nav-sub ul li {
    font-size: 12px;
  }
}
#site-header #global-nav .global-nav-sub ul li a {
  color: #fff;
}
#site-header #global-nav .global-nav-sub ul li:not(:nth-of-type(1)) {
  border-left: 1px solid #fff;
  padding-left: 1em;
}
#site-header #global-nav .drop i {
  cursor: pointer;
  font-style: normal;
}
#site-header #global-nav .drop .sub {
  display: block;
}
#site-header #global-nav.open {
  display: block;
  right: 0;
}

.search_btn {
  padding-right: 15px;
}

/*============================
#topcontrol
============================*/
#topcontrol {
  bottom: 0 !important;
  right: 0 !important;
  /*============================
  #ptop
  ============================*/
}
#topcontrol #ptop {
  background: #48AA31;
  width: 54px;
  height: 54px;
  line-height: 70px;
  text-align: center;
  overflow: hidden;
}
#topcontrol #ptop i {
  color: #fff;
  font-size: 30px;
}

#site-footer {
  position: relative;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
}
#site-footer footer {
  /*============================
  #contacttel
  ============================*/
  /*============================
  #footer-bn
  ============================*/
  /*============================
  #footer_main
  ============================*/
}
#site-footer footer #contacttel {
  background-color: #48AA31;
  color: #fff;
  text-align: center;
}
#site-footer footer #contacttel .uk-container dl {
  font-weight: 900;
}
#site-footer footer #contacttel .uk-container dl dt {
  font-size: 30px;
  letter-spacing: 0.02em;
  padding-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  #site-footer footer #contacttel .uk-container dl dt {
    font-size: 18px;
  }
}
#site-footer footer #contacttel .uk-container dl dd {
  font-size: 80px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #site-footer footer #contacttel .uk-container dl dd {
    font-size: 35px;
  }
}
#site-footer footer #contacttel .uk-container dl dd i {
  font-size: 0.6em;
  margin-right: 0.5em;
}
#site-footer footer #contacttel .uk-container dl dd a {
  color: #fff;
}
#site-footer footer #footer-bn .uk-container ul.uk-grid {
  align-items: center;
}
#site-footer footer #footer-bn .uk-container ul.uk-grid li a {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 640px) {
  #site-footer footer #footer-bn .uk-container ul.uk-grid li a img {
    display: block;
    max-width: 250px;
    margin: auto;
  }
}
#site-footer footer #footer_main div.uk-container div.uk-grid div.footer_info p {
  line-height: 1.5;
  margin: 0;
}
#site-footer footer #footer_main div.uk-container div.uk-grid div.footer_info p a.footer_logo {
  display: block;
  max-width: 250px;
  margin-bottom: 0.5em;
}
#site-footer footer #footer_main div.uk-container div.uk-grid div.footer_info dl.freedial {
  margin: 0;
  padding-top: 0.5em;
}
#site-footer footer #footer_main div.uk-container div.uk-grid div.footer_info dl.freedial dt {
  font-size: 0.8em;
  font-weight: normal;
}
#site-footer footer #footer_main div.uk-container div.uk-grid div.footer_info dl.freedial dd {
  line-height: 1.2;
}
#site-footer footer #footer_main div.uk-container div.uk-grid div.footer_info dl.freedial dd a {
  font-size: 1.8em;
  font-weight: 700;
  letter-spacing: 0;
}
#site-footer footer #footer_main div.uk-container div.uk-grid div.footer_info dl.freedial dd a i.fa-phone-volume {
  font-size: 0.6em;
  margin-right: 0.3em;
}
@media screen and (max-width: 900px) {
  #site-footer footer #footer_main div.uk-container div.uk-grid div.footer_menu {
    display: none;
  }
}
#site-footer footer #footer_main div.uk-container div.uk-grid div.footer_menu div {
  font-size: 13px;
}
#site-footer footer #footer_main div.uk-container div.uk-grid div.footer_menu div p {
  margin: 0;
}
#site-footer footer #footer_main div.uk-container div.uk-grid div.footer_menu div ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#site-footer footer #footer_main div.uk-container div.uk-grid div.footer_menu div ul li {
  margin: 0;
  padding: 0;
}
#site-footer footer #footer_main div.uk-container div.uk-grid div.footer_menu div ul li a {
  color: #000;
  text-decoration: none;
}
#site-footer footer #footer_main div.uk-container div.uk-grid div.footer_menu div ul li a:hover {
  text-decoration: underline;
}
#site-footer footer #footer_main div.uk-container div.uk-grid div.footer_menu div ul li.current-menu-item a {
  color: #48AA31;
}
#site-footer footer p.cp {
  background-color: #48AA31;
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 54px;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  #site-footer footer p.cp {
    font-size: 10px;
    text-align: left;
    line-height: 1.4;
    height: 54px;
    padding: 1.5em 60px 1em 1em;
  }
}

/*============================
.pagettl
============================*/
.pagettl {
  position: relative;
  margin-top: 120px;
  height: 600px;
  height: 400px;
  background-color: #eee;
}
@media screen and (max-width: 768px) {
  .pagettl {
    margin-top: 70px;
    height: 35vh;
  }
}
.pagettl::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.5;
}
.pagettl img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pagettl div {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  backdrop-filter: blur(1.5px);
}
.pagettl div h1, .pagettl div p {
  font-weight: 700;
  color: #000;
  text-shadow: 0 0 3px rgba(255, 255, 255, 0.9);
  letter-spacing: 0;
  position: relative;
  padding: 0;
  margin: 0;
}
.pagettl div h1 {
  font-size: 50px;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .pagettl div h1 {
    margin-top: 0;
    font-size: 28px;
  }
}
.pagettl div h1 span {
  background: linear-gradient(transparent 70%, #FFBF00 70%);
  position: relative;
}
.pagettl div p {
  font-size: 20px;
  padding-top: 0.3em;
}
@media screen and (max-width: 768px) {
  .pagettl div p {
    font-size: 16px;
  }
}

/*============================
.pagettl2
============================*/
.pagettl2 {
  position: relative;
  margin-top: 120px;
  background-color: #eee;
  padding: 100px 20px;
}
@media screen and (max-width: 768px) {
  .pagettl2 {
    margin-top: 70px;
    padding: 50px 20px;
  }
}
.pagettl2 h1 {
  line-height: 1.5;
  font-family: "M PLUS 1p", sans-serif !important;
  font-weight: 700;
  color: #000;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .pagettl2 h1 {
    font-size: 20px;
  }
}

/*============================
.newslist
============================*/
.newslist {
  margin: 0;
  padding: 0;
}
.newslist * {
  margin: 0;
  padding: 0;
}
.newslist li {
  display: flex;
  align-items: flex-start;
  gap: 1em;
  flex-wrap: wrap;
  border-bottom: 1px solid #ddd;
  padding: 0.7em 0;
}
.newslist li:nth-of-type(1) {
  border-top: 1px solid #ddd;
}
.newslist li span {
  flex-shrink: 0;
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .newslist li span {
    display: block;
  }
}
.newslist li .uk-label {
  flex: 0 0 7em;
  text-align: center;
  margin-top: 0.2em;
  padding: 0.3em 1em;
  font-size: 0.7em;
  background: #48AA31;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .newslist li .uk-label {
    width: 7em;
  }
}
.newslist li .uk-label.timetable {
  background: #FFBF00;
}
.newslist li a {
  color: inherit;
}
@media screen and (max-width: 768px) {
  .newslist li a {
    display: block;
    flex: 0 0 100%;
  }
}

/*============================
.well
============================*/
.well {
  background: #f5f5f5;
  padding: 2em;
}

.well2 {
  border: 2px solid #48AA31;
  padding: 2em;
}

.well3 {
  background: #f5f5f5;
  border: 2px solid #48AA31;
  padding: 2em;
}

/*============================
.vk_ancestorPageList_list
============================*/
.vk_ancestorPageList_list {
  display: flex;
  flex-wrap: wrap;
  gap: 1%;
  list-style: none;
  margin: 0 -15px;
  padding: 20px;
  background-color: #f5f5f5;
  border-radius: 0.5em;
}
@media screen and (max-width: 768px) {
  .vk_ancestorPageList_list {
    flex-direction: column;
  }
}
.vk_ancestorPageList_list li {
  flex: 0 0 32.33%;
  margin: 0 0 10px;
  padding: 0;
  display: block;
  line-height: 1.3;
  position: relative;
  display: flex;
}
.vk_ancestorPageList_list li a {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1.2em 2.2em 1.2em 1.5em;
  color: #fff;
  text-decoration: none;
  background-color: #48AA31;
  border-radius: 0.5em;
}
.vk_ancestorPageList_list li a::after {
  content: "\f105";
  font-family: "FontAwesome" !important;
  position: absolute;
  right: 0.5em;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}
.vk_ancestorPageList_list li.current_page_item {
  opacity: 0.5;
  pointer-events: none;
}

/*============================
.license_list
============================*/
.license_list {
  margin-bottom: 4em;
}
.license_list > div {
  background-color: #48AA31;
  background-color: #FFBF00;
  color: #fff;
  padding: 1em;
  border-radius: 1em;
}
.license_list > div p {
  margin: 0;
  line-height: 1.3;
}
.license_list > div p strong {
  font-size: 1.5em;
}
@media screen and (max-width: 768px) {
  .license_list > div p strong {
    font-size: 1.25em;
  }
}
@media screen and (max-width: 640px) {
  .license_list:where(.wp-block-columns.is-layout-flex) {
    gap: 1em !important;
  }
}

/*============================
.lisence_guide
============================*/
.lisence_guide p {
  line-height: 2;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .lisence_guide p {
    font-size: 16px;
  }
}
.lisence_guide img {
  border-radius: 1em;
}

/*============================
免許取得までの流れ
============================*/
.nagare p {
  padding-right: 1em;
  padding-left: 1em;
  line-height: 1.5;
  border-radius: 0.5em;
}

/*============================
table
============================*/
.wp-block-table table {
  border-collapse: collapse;
  border-spacing: 0;
}
.wp-block-table table th,
.wp-block-table table td {
  border: 1px solid #ddd;
  padding: 1em 1.5em;
}
@media screen and (max-width: 768px) {
  .wp-block-table table th,
.wp-block-table table td {
    white-space: nowrap;
  }
}
.wp-block-table table th {
  background: #f5f5f5;
  font-weight: 500;
  white-space: nowrap;
}

.wp-element-caption {
  font-weight: 400;
  text-align: right;
}

/*============================
.staff
============================*/
.staff {
  background-color: #f5f5f5;
  padding: 3em;
  margin-top: 60px;
  border-radius: 2em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .staff {
    padding: 2em;
  }
}
.staff h2 {
  color: #48AA31;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .staff h2 {
    font-size: 20px;
  }
}
.staff h2 strong {
  font-weight: 700;
  display: inline-block;
}
.staff h2 strong::before {
  content: "＼";
  display: inline-block;
  margin-right: 0.5em;
}
.staff h2 strong::after {
  content: "／";
  display: inline-block;
  margin-left: 0.5em;
}
.staff h2 small {
  display: block;
  font-size: 0.5em;
}
.staff .staff-list {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}
.staff .staff-list li {
  margin: 0;
  padding: 0;
  text-align: center;
  width: 14%;
}
@media screen and (max-width: 768px) {
  .staff .staff-list li {
    flex: 0 0 25%;
  }
}
.staff .staff-list li a.staff_item {
  display: block;
  text-decoration: none;
}
.staff .staff-list li a.staff_item figure {
  padding: 10px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .staff .staff-list li a.staff_item figure {
    padding: 5px;
  }
}
.staff .staff-list li a.staff_item figure img {
  background-color: #FFBF00;
  border-radius: 100%;
}
.staff .staff-list li a.staff_item figure figcaption {
  font-weight: 700;
}

/*============================
.staff_popup
============================*/
.staff_popup .uk-grid div figure {
  padding: 10px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .staff_popup .uk-grid div figure {
    padding: 5px;
  }
}
.staff_popup .uk-grid div figure img {
  background-color: #FFBF00;
  border-radius: 100%;
  width: 100%;
}
.staff_popup .uk-grid div h2 {
  color: #48AA31;
}
@media screen and (max-width: 768px) {
  .staff_popup .uk-grid div h2 {
    margin-top: 0.5em;
  }
}
.staff_popup .uk-grid div dl {
  display: flex;
}
@media screen and (max-width: 768px) {
  .staff_popup .uk-grid div dl {
    display: block;
  }
}
.staff_popup .uk-grid div dl dt {
  flex-shrink: 0;
  color: #48AA31;
}
* {
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-weight: 400;
  font-family: "M PLUS 1p", sans-serif !important;
  color: #000;
  line-height: 1.75;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

.nowrap {
  white-space: nowrap;
}

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

/*============================
パンくず
============================*/
.breadcrumb {
  padding: 10px 0;
  text-align: right;
}

.uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before {
  content: "|";
  display: inline-block;
  margin: 0 1em 0 calc(1em - 4px);
  font-size: 0.875rem;
  color: #999;
}

/*============================
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
============================*/
/*============================
.sec
============================*/
/*============================
a
============================*/
a {
  color: #48AA31;
  transition: 0.3s;
}

a:hover {
  opacity: 0.85;
  color: #48AA31;
  text-decoration: none;
}

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

/*============================
.search-form
============================*/
.search-form .uk-button {
  background-color: #48AA31;
}

/*============================
Headlines
============================*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "M PLUS 1p", sans-serif !important;
  font-weight: 700;
}

.ttl1,
.is-style-ttl1 {
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  color: #48AA31;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .ttl1,
.is-style-ttl1 {
    font-size: 30px;
  }
}

.is-style-ttl2 {
  background-color: #48AA31;
  color: #fff;
  padding: 0.5em 1em;
  border-radius: 0.3em;
  margin-bottom: 1em;
}

* + .is-style-ttl2:not(:first-of-type) {
  margin-top: 3em;
}

.is-style-ttl3 {
  border-bottom: 1px solid #48AA31;
  padding: 0.5em 0;
}

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

/*============================
wp overwrite
============================*/
.wp-block-button__link:hover {
  color: #fff;
  text-decoration: none;
}

/*============================
margin
============================*/
/*============================
padding
============================*/
/*============================
Swiper button
============================*/