@charset "UTF-8";

:root {
  --header-h: 60px;
}

@media screen and (min-width: 1024px) {
  :root {
    --header-h: 80px;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
  background-repeat: no-repeat;
}

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  color: #333;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: normal;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  font: inherit;
}

em {
  font-style: normal;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

a:has(img) {
  display: block;
}

button {
  padding: 0;
  color: inherit;
  font: inherit;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}

.ff-noto {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
}

.ff-roboto {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.ff-cardo {
  font-family: "Cardo", serif;
  font-weight: 400;
  font-style: italic;
}

.inner {
  max-width: 1250px;
  margin-inline: auto;
  padding: 0 25px;
}

.bg-blue {
  color: #fff;
  background: linear-gradient(90deg, #015bbb 0%, #439eff 100%);
}

.bg-green {
  color: #fff;
  background: linear-gradient(90deg, #1f8b57 0%, #14aa00 100%);
}

.bg-white {
  background-color: #fff;
}

.link-btn.border {
  border: 1px solid;
}

.link-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-weight: bold;
  outline: none;
}

.link-btn .icon-entry {
  display: block;
  aspect-ratio: 1;
  width: var(--icon-w, 36px);
  background-image: url("../img/icon_entry.svg");
  background-size: contain;
}

@media (any-hover: hover) {
  .link-btn.hover-1 {
    transition: all 0.3s ease-out;
  }

  .link-btn.hover-1:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 15px rgba(0, 0, 0, 0.2);
  }

  .link-btn.hover-2 {
    transition: all 0.4s ease-out;
  }

  .link-btn.hover-2:hover {
    color: #fff;
    background: linear-gradient(90deg, #015bbb 0%, #439eff 100%);
    background-position: center right -2px;
    background-size: 200% auto;
    border-color: transparent;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  }
}

.site-header {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: var(--header-h);
  background-color: #fff;
  position: fixed;
  top: 0;
  z-index: 7;
}

.header--inner {
  display: flex;
  align-items: center;
  padding: 0 15px;
}

.header--inner .logo {
  height: 37px;
}

.header--inner .logo img {
  height: 100%;
  object-fit: contain;
}

.header--inner .name,
.header--inner .title {
  font-weight: bold;
  font-size: 11px;
}

.header--inner .name {
  margin-left: 8px;
}

.header--inner .title {
  margin-left: 20px;
}

.header--inner .title .pc {
  display: none;
}

.header--nav {
  display: none;
}

@media screen and (min-width: 390px) {

  .header--inner .name,
  .header--inner .title {
    font-size: 13px;
  }
}

@media screen and (min-width: 1024px) {
  .header--inner {
    padding: 0 23px;
  }

  .header--inner .logo {
    height: 54px;
  }

  .header--inner .name,
  .header--inner .title {
    font-size: 18px;
  }

  .header--inner .name {
    margin-left: 16px;
  }

  .header--inner .title {
    margin-left: 30px;
  }

  .header--inner .title .pc {
    display: revert;
  }

  .header--nav {
    display: flex;
  }

  .header--nav .tel a {
    flex-direction: column;
    align-items: flex-end;
    padding: 13px 5px 5px;
  }

  .header--nav .tel-num {
    padding-left: 25px;
    font-size: 25px;
    line-height: 1.32;
    background-image: url("../img/icon_tel.svg");
    background-position: center left;
    background-size: 21px auto;
  }

  .header--nav .tel-time {
    font-weight: 500;
    line-height: 1.31;
  }

  .header--nav .entry {
    --icon-w: 32px;
    margin-left: 22px;
  }

  .header--nav .entry a {
    flex-direction: column;
    gap: 7px;
    padding: 7px 34px 5px;
  }
}

@media screen and (min-width: 1280px) {

  .header--inner .name,
  .header--inner .title {
    font-size: 20px;
  }

  .header--inner .title {
    margin-left: 40px;
  }
}

@media (any-hover: hover) {

  .header--inner a,
  .header--nav .link-btn {
    transition: opacity 0.3s ease;
  }

  .header--inner a:hover,
  .header--nav .link-btn:hover {
    opacity: 0.7;
  }
}

.site-main .link-btn {
  max-width: var(--max-w, 400px);
  margin-inline: auto;
  font-size: 20px;
}

.site-footer {
  padding-top: 30px;
  border-top: 1px solid #ccc;
}

.site-footer .footer--top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 30px;
}

.site-footer .logo {
  width: 51px;
  margin-right: 16px;
}

.site-footer .name {
  margin-right: 38px;
  font-size: 20px;
  font-weight: bold;
}

.site-footer .link-btn {
  width: 100%;
  color: #119200;
  line-height: 1.19;
}

.site-footer .link-btn a {
  flex-direction: column;
  padding: 18px 45px 15px;
  background-image: url("../img/link_ex_green.svg");
  background-position: center right 23px;
  background-size: 16px auto;
}

.site-footer .address {
  margin-top: 25px;
}

.site-footer .address dt {
  font-weight: bold;
}

.site-footer .address dd {
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
}

.site-footer .address dd span {
  display: inline-block;
}

.site-footer .copy {
  margin-top: 46px;
  padding: 22px 10px;
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  text-align: center;
  background-color: #333;
}

.site-footer .copy small {
  font-size: inherit;
}

.pagetop {
  display: none;
}

.wrap:has(.site-bottom) {
  padding-bottom: 60px;
}

.site-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8;
}

.site-bottom .nav-sp {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  height: 60px;
  background-color: #fff;
}

.site-bottom .nav-sp .tel a {
  flex-direction: column;
  padding: 9px 5px;
}

.site-bottom .nav-sp .tel-num {
  padding-left: 22px;
  font-size: 20px;
  line-height: 1.3;
  background-image: url("../img/icon_tel.svg");
  background-position: center left;
  background-size: 18px auto;
}

.site-bottom .nav-sp .tel-time {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.23;
}

.site-bottom .nav-sp .entry {
  --icon-w: 35px;
}

.site-bottom .nav-sp .entry a {
  gap: 7px;
  padding: 12px 5px;
}

@media screen and (min-width: 768px) {
  .site-footer .link-btn {
    width: auto;
  }

  .site-footer .link-btn a {
    flex-direction: row;
    padding: 18px 55px 15px;
  }
}

@media screen and (min-width: 1024px) {
  .site-footer .link-btn a {
    flex-direction: row;
    padding: 10px 54px 12px 20px;
    background-position: center right 16px;
  }

  .site-footer .address {
    margin-top: 31px;
  }

  .site-footer .copy {
    margin-top: 31px;
    padding: 18px 10px;
    font-size: 16px;
  }

  .pagetop {
    display: revert;
    background-color: #fff;
    position: fixed;
    right: 34px;
    bottom: 27px;
    z-index: 2;
  }

  .wrap:has(.site-bottom) {
    padding-bottom: 0;
  }

  .site-bottom {
    display: none;
  }
}

@media (any-hover: hover) {

  .footer--top .link-btn,
  .pagetop img {
    transition: opacity 0.3s ease;
  }

  .footer--top .link-btn:hover,
  .pagetop:hover img {
    opacity: 0.7;
  }
}

.menu-sp {
  width: 100%;
  position: fixed;
  bottom: 0;
  translate: 0 100%;
  transition: all 0.6s;
  pointer-events: none;
  z-index: 9;
}

.menu-sp[aria-hidden="false"] {
  translate: 0;
}

.menu-sp[aria-hidden="false"] .menu--btn {
  bottom: calc(100% + 15px);
}

.menu--btn {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  padding: 11px;
  color: #fff;
  background: linear-gradient(180deg, #015bbb 0%, #439eff 100%);
  position: absolute;
  right: 13px;
  bottom: calc(100% + 75px);
  z-index: 3;
  pointer-events: auto;
}

.menu--btn .icon {
  display: block;
  width: 26px;
  height: 19px;
  border-style: solid;
  border-width: 3px 0;
  position: relative;
}

.menu--btn .icon::before,
.menu--btn .icon::after {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background-color: currentcolor;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

.menu--btn[aria-expanded="true"] .icon {
  border-color: transparent;
}

.menu--btn[aria-expanded="true"] .icon::before {
  rotate: 45deg;
}

.menu--btn[aria-expanded="true"] .icon::after {
  rotate: -45deg;
}

.menu {
  width: 100%;
  position: relative;
  pointer-events: auto;
}

.menu--content {
  max-height: 100dvh;
  overflow-y: auto;
}

.menu--list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  background-color: #ECECEC;
}

.menu--list li {
  background-color: #fff;
}

.menu--list a {
  display: block;
  padding: 14px 5px;
}

@media screen and (min-width: 768px) {
  .menu--list {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media screen and (min-width: 1024px) {
  .menu-sp {
    display: none;
  }
}