@charset "utf-8";

/* CSS Document */
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}

body {
  color: #333;
  /* RGB */
  font-family:
    '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', 'メイリオ', sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
}

#fancybox-wrap,
#fancybox-outer,
#fancybox-content {
  background: #f8f8f8 !important;
}

.grecaptcha-badge {
  visibility: hidden;
}

.wp-embedded-content {
  width: 100%;
}

a:hover {
  opacity: 0.5;
}

.none {
  display: none;
}

html {
  -webkit-text-size-adjust: 100%;
}

/*header*/
.sec-header-pc {
  display: none;
}

.sec-header {
  width: 100%;
  position: fixed;
  height: 60px;
  background-color: #ffffff;
  z-index: 200;
  border: 1px solid #f2f2f2;
  padding: 8px 12px 8px 0;
  box-sizing: border-box;
}

.sec-header-sp-flex {
  display: flex;
  justify-content: space-between;
}

.sec-header-sp_logobox {
  position: relative;
  z-index: 99;
  display: flex;
  align-items: center;
  width: 150px;
  background: white;
}

.sec-header-sp_logobox a {
  display: flex;
}

.sec-header-sp_logo {
  width: 150px;
  object-fit: contain;
  font-family: 'object-fit: contain;';
}

.sec-header-sp-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sec-header-sp-cv {
  display: flex;
  gap: 8px;
}

.sec-header-sp-cv a {
  display: flex;
}

.sec-header-sp_tel {
  height: 40px;
  object-fit: contain;
}

.sec-header-sp_nav {
  margin-top: 10px;
}

.sec-header-sp_nav-flex {
  width: 300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
}

.sec-header-sp_nav-flex li {
  padding: 5px 30px;
  background-color: #333333;
  border-radius: 25px;
}

.sec-header-sp_nav-flex li a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}

.menu {
  position: relative;
  padding-right: 10px;
  -ms-display: flex;
  -moz-display: flex;
  -webkit-display: flex;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: right;
  max-width: 1000px;
}

.global_menu {
  /* メニュー全体のスタイル */
  position: relative;
  padding: 0;
  visibility: visible;
  overflow-y: visible;
}

.global_menu-ul {
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.child_menu-li {
  display: block;
}

.child_menu-li:not(:last-child) {
  margin-bottom: 8px;
}

.child_menu-li a {
  text-decoration: none;
  color: #333;
  font-size: 1.6rem;
}

.child_menu-li span {
  padding-right: 8px;
  color: #fc606e;
  font-weight: 600;
}

.child_menu-li2 {
  margin-top: 20px;
  padding-right: 30px;
  display: inline-block;
}

.child_menu-li2 img {
  width: 15px;
  padding-right: 12px;
  object-fit: contain;
}

.child_menu-li2 a {
  text-decoration: none;
  color: #333;
  font-size: 1.6rem;
}

.menu:not(:last-child) {
  margin-bottom: 0;
}

.menu > a {
  /* 親項目のスタイル */
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 10px 10px;
  color: #333;
}

.menu-a1:after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 0px 3px 10px;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.menu:hover > a {
  background: #fff;
}

.child_menu {
  position: absolute;
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: #333;
  background: #fff;
  visibility: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  padding: 30px 0 30px 40px;
  width: 250px;
  border-radius: 8px;
  text-align: left;
}

.menu:hover .child_menu {
  /* 下層メニューのスタイル（親項目ホバー時） */
  visibility: visible;
  /* 下層メニューを表示 */
}

.child_menu > li > a:hover {
  background: unset;
  opacity: 1;
}

/*ハンバーガーメニュー*/
.menu-btn {
  display: flex;
  height: 20px;
  width: 30px;
  z-index: 90;
  position: relative;
}

.menu-btn span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #80be82;
  position: absolute;
  left: 0;
}

.menu-btn span:nth-child(1) {
  top: 0;
}

.menu-btn span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.menu-btn span:nth-child(3) {
  bottom: 0;
}

#menu-btn-check:checked ~ .menu-btn span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}

#menu-btn-check:checked ~ .menu-btn span:nth-child(2) {
  width: 0;
}

#menu-btn-check:checked ~ .menu-btn span:nth-child(3) {
  transform: rotate(-45deg);
  top: 9px;
}

#menu-btn-check {
  display: none;
}

.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  background-color: #3584bb;
  overflow: scroll;
}

.menu-content-link {
  padding: 70px 10px 40px;
}

.menu-content ul li {
  list-style: none;
}

.menu-content-link li a {
  border-bottom: solid 1px #ddd;
}

#has-child::before {
  content: '';
  width: 7px;
  height: 7px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 25px;
}

.nav-arrow {
  display: block;
  width: 100%;
  font-size: 1.5rem;
  font-weight: 600;
  box-sizing: border-box;
  color: #222;
  text-decoration: none;
  text-align: left;
  padding: 10px 15px 10px 0;
  position: relative;
}

.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: white;
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
}

.menu-content-sns {
  width: 300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.menu-content-sns li {
  border: none;
}

.menu-content-sns img {
  width: 100%;
  height: 45px;
  object-fit: contain;
}

#menu-btn-check:checked ~ .menu-content {
  opacity: 1;
  pointer-events: auto;
}

.sec-footer-logo img {
  width: 100%;
  height: 90px;
  margin-top: 60px;
  padding: 10px 0;
  object-fit: contain;
  background-color: rgb(255, 255, 255, 0.6);
}

.sec-footer-map {
  margin-top: 20px;
}

.footer-banner {
  a {
    display: block;
    height: 35px;
    background-repeat: repeat-x;
    background-size: auto 100%;
    background-position: center top;
  }
}

.nav-arrow::before {
  content: '';
  position: absolute;
  right: 25px;
  top: 25px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(135deg);
}

.nav-child a {
  padding: 8px 0px;
  display: block;
  width: 100%;
  font-size: 1.5rem;
  box-sizing: border-box;
  color: #222;
  text-decoration: none;
  position: relative;
  text-align: left;
}

.nav-child-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.nav-child-box2 {
  margin-top: 20px;
  -ms-display: flex;
  -moz-display: flex;
  -webkit-display: flex;
  display: flex;
  gap: 8px;
}

.nav-child-box2 li a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 999px;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 8px 20px;
  position: relative;
  text-decoration: none;
  color: #333;
  min-height: 44px;
  line-height: 1;
  box-sizing: border-box;
}

.sticky-banner {
  --bottom: 15px;
  position: fixed;
  bottom: calc(env(safe-area-inset-bottom) + var(--bottom, 0));
  right: 15px;
  z-index: 100;
  transition: 0.3s ease;
  transition-property: opacity, transform;

  &.hidden {
    display: none;
  }
}

.footer-intersecting .sticky-banner {
  pointer-events: none;
  opacity: 0;
  transform: translateY(10%);
}

.sticky-banner__item {
  display: block;
  transition: box-shadow 0.3s ease;
  box-shadow: 0 1px 15px 10px rgba(0, 0, 0, 0.1);

  &:hover {
    opacity: 1;
    box-shadow: 0 1px 15px 10px rgba(0, 0, 0, 0.15);
  }

  img {
    width: 150px;
    height: auto;
  }
}

.sticky-banner__close {
  position: absolute;
  top: -9px;
  right: -9px;
  z-index: 10;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin: 0;
  padding: 0;
  color: #000;
  background-color: #fff;
  border-radius: 50%;
  border: 2px solid #000;
  cursor: pointer;

  &::before,
  &::after {
    content: '';
    grid-column: 1;
    grid-row: 1;
    display: block;
    width: 50%;
    height: 2px;
    background-color: currentColor;
    border-radius: 100vmax;
  }

  &::before {
    rotate: 45deg;
  }

  &::after {
    rotate: -45deg;
  }

  @media (any-hover: hover) {
    transition: 0.3s ease;
    transition-property: background-color, color;

    &:hover {
      color: #fff;
      background-color: #000;
    }
  }
}

@media (min-width: 800px) {
  .sec-header-sp-flex2 {
    margin-left: 45%;
  }

  .menu-btn {
    right: 10%;
  }
}

@media (min-width: 1020px) {
  .sec-header {
    height: 120px;
    padding-bottom: 0px;
  }

  .sec-header-pc {
    -ms-display: flex;
    -moz-display: flex;
    -webkit-display: flex;
    display: flex;
  }

  .sec-header-sp {
    display: none;
  }

  .sec-header-sp_logo {
    width: 290px;
    height: 106px;
    margin: inherit;
    padding: 0 10px;
    background-color: #fff;
    position: absolute;
  }

  .sec-header-pc-menu {
    width: 100%;
  }

  .sec-header-pc-flex {
    -ms-display: flex;
    -moz-display: flex;
    -webkit-display: flex;
    display: flex;
  }

  .sec-header-pc-flex2 {
    -ms-display: flex;
    -moz-display: flex;
    -webkit-display: flex;
    display: flex;
    margin-top: 20px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .sec-header-pc-flex li {
    list-style: none;
  }

  .sec-header-pc-flex li img {
    width: 14px;
    padding-right: 5px;
    object-fit: contain;
  }

  .sec-header-pc-flex li a {
    padding-right: 10px;
    text-decoration: none;
    color: #333;
    font-size: 1.5rem;
    font-feature-settings: 'palt';
  }

  .sec-header-pc-flex2-contact {
    margin-right: 20px;
    padding: 5px 0;
    background-color: #fc606e;
    border-radius: 20px;
  }

  .sec-header-pc-flex2-contact a {
    padding: 10px;
    text-decoration: none;
    color: #fff;
    font-size: 1.5rem;
  }

  .sec-header-pc-flex4 {
    width: 70%;
    margin-top: 15px;
    position: absolute;
    right: 0px;
    -ms-display: flex;
    -moz-display: flex;
    -webkit-display: flex;
    display: flex;
    justify-content: space-between;
    padding-right: 30px;
  }

  .sec-header-pc-li {
    margin-left: 30px;
    padding: 5px 10px;
    /* padding: 5px 20px; */
    /* background-color: #F0FFF0; */
  }

  .sec-header-pc-flex4 li a {
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 600;
    color: #f0fff0;
    font-feature-settings: 'palt';
  }

  .footer-banner {
    a {
      height: 50px;
    }
  }

  .sticky-banner {
    --bottom: 30px;
    position: fixed;
    right: 30px;
    z-index: 100;
  }

  .sticky-banner__item {
    img {
      width: 180px;
    }
  }
}

@media (min-width: 1200px) {
  .sec-header-pc-tel p {
    font-size: 1.8rem;
    font-weight: 600;
  }
}

@media (min-width: 1440px) {
  .sec-header-pc-flex3 {
    width: 300px;
    margin-right: 20px;
  }

  .sec-header-pc-flex li {
    margin-left: 20px;
    padding: 8px 10px;
  }

  .sec-header-pc-flex li a {
    font-size: 1.6rem;
  }

  .sec-header-pc-tel p {
    padding-left: 20px;
    font-size: 2.4rem;
    font-weight: 600;
  }

  .sec-header-pc-flex4 {
    width: 1000px;
  }

  .sec-header-pc-flex4 li a {
    font-size: 2rem;
  }

  .menu > li a {
    font-size: 2rem;
  }
}

html :where(img) {
  max-width: inherit !important;
}

/*プリント機能*/
.pdfprnt-button img,
.pdfprnt-button-title {
  padding: 5px 20px !important;
  color: #fff;
  font-weight: 600;
  background-color: #578b53;
  border-radius: 25px;
}
