@charset "UTF-8";
/*********************************************************
base
*********************************************************/
* {
  box-sizing: border-box;
}

body {
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  padding-bottom: 80px;
}
body.fixed {
  position: fixed;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}

li {
  list-style: none;
}

span {
  font-weight: inherit;
}

button {
  background-color: transparent;
  cursor: pointer;
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none;
}

.dib {
  display: inline-block;
}

.inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1024px;
}
@media (max-width: 1024px) {
  .inner {
    padding-left: 2%;
    padding-right: 2%;
  }
}

.container {
  padding-top: 50px;
  padding-bottom: 50px;
}

.ttl {
  color: #1d2e5b;
  font-size: 24px;
  font-weight: bold;
  padding-top: 20px;
  position: relative;
  text-align: center;
}
@media (max-width: 480px) {
  .ttl {
    font-size: 20px;
  }
}
.ttl::before {
  background: #1d2e5b;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 1px;
}

.breadcrumb {
  background: #e6ebf7;
  border-bottom: 1px solid #ddd;
  padding: 5px;
  text-align: center;
}

.breadcrumb__list {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1024px;
  display: flex;
}
@media (max-width: 1024px) {
  .breadcrumb__list {
    padding-left: 2%;
    padding-right: 2%;
  }
}

.breadcrumb__item {
  font-size: 12px;
}
.breadcrumb__item:not(:last-child) {
  margin-right: 25px;
}

.breadcrumb__link {
  position: relative;
  text-decoration: underline;
}
.breadcrumb__link:hover {
  text-decoration: none;
}
.breadcrumb__link::after {
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  content: "";
  margin-top: -4px;
  position: absolute;
  top: 50%;
  right: -15px;
  transform: rotate(-45deg) skew(15deg, 5deg);
  width: 8px;
  height: 8px;
}

.wrapper {
  padding-top: 50px;
}

.page-ttl {
  color: #1d2e5b;
  font-size: 36px;
  font-weight: bold;
  padding: 50px 0;
  text-align: center;
}
@media (max-width: 768px) {
  .page-ttl {
    padding: 0;
  }
}
@media (max-width: 480px) {
  .page-ttl {
    font-size: 24px;
  }
}

/*********************************************************
header
*********************************************************/
.header {
  background: #fff;
  box-shadow: 0 1px 5px #999;
  position: fixed;
  top: 0;
  left: 0;
  transition: 0.3s;
  width: 100%;
  z-index: 99;
}
@media (min-width: 1025px) {
  .header.hide {
    transform: translateY(-80px);
  }
}

.header__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1024px;
}

.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
}
@media (max-width: 1024px) {
  .header__top {
    padding-top: 0;
    padding-right: 15px;
  }
}

.header__logo img {
  width: 200px;
}

.header__contact {
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .header__contact {
    display: none;
  }
}

.header-tel {
  margin-right: 15px;
}

.header-tel__num {
  color: #1d2e5b;
  font-size: 24px;
  font-weight: bold;
  padding-left: 50px;
  position: relative;
}
.header-tel__num .free {
  height: 30px;
  position: absolute;
  top: 2px;
  left: 0;
}
.header-tel__num .free svg {
  fill: #1d2e5b;
  width: 50px;
  height: 30px;
}

.header-tel__time {
  font-size: 12px;
  text-align: right;
}

.header-contact {
  display: flex;
}

.header-contact__tel a,
.header-contact__mail a {
  font-size: 12px;
  font-weight: bold;
  padding: 10px;
  text-align: center;
  transition: 0.3s;
}
.header-contact__tel a:hover,
.header-contact__mail a:hover {
  opacity: 0.8;
}

.header-contact__tel a {
  background: #ff9140;
  color: #fff;
}

.header-contact__mail a {
  background: #000;
  color: #fff;
}

@media (min-width: 1025px) {
  .header__nav {
    margin-top: 15px;
  }
}
@media (max-height: 450px) {
  .header__nav {
    max-height: 80vh;
    overflow: auto;
  }
}

@media (max-width: 1024px) {
  .gnav {
    display: none;
  }
}

.gnav__list {
  display: flex;
  justify-content: center;
}
@media (max-width: 1024px) {
  .gnav__list {
    flex-direction: column;
  }
}

.gnav__item {
  position: relative;
}
@media (min-width: 1025px) {
  .gnav__item.-pcnone {
    display: none;
  }
  .gnav__item::before {
    background: #666;
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    width: 1px;
    height: 17px;
  }
  .gnav__item:last-child::after {
    background: #666;
    content: "";
    position: absolute;
    top: 7px;
    right: 0;
    width: 1px;
    height: 17px;
  }
}
@media (max-width: 1024px) {
  .gnav__item {
    border-bottom: 1px solid #ddd;
  }
  .gnav__item:first-child {
    border-top: 1px solid #ddd;
  }
}

.gnav__link {
  display: block;
  padding: 5px 15px 10px;
  position: relative;
}
@media (min-width: 1025px) {
  .gnav__link::after {
    content: "";
    opacity: 0;
    transition: 0.3s;
  }
  .gnav__link:hover::after {
    background: #1d2e5b;
    opacity: 1;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
  }
}
@media (max-width: 1024px) {
  .gnav__link {
    font-size: 14px;
    font-weight: bold;
    padding-top: 10px;
    position: relative;
  }
  .gnav__link::after {
    border-right: 2px solid #465d58;
    border-bottom: 2px solid #465d58;
    content: "";
    margin-top: -4px;
    position: absolute;
    right: 22px;
    top: 50%;
    transform: rotate(-45deg);
    width: 6px;
    height: 6px;
  }
}

@media (min-width: 1025px) {
  .menu-btn {
    display: none;
  }
}

.menu-btn__inner {
  cursor: pointer;
  height: 50px;
  position: relative;
  width: 50px;
}
.menu-btn__inner::after {
  color: #1d2e5b;
  content: "メニュー";
  font-size: 10px;
  font-weight: bold;
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.menu-btn__inner.close::after {
  content: "閉じる";
}

.menu-btn__bar {
  background: transparent;
  height: 2px;
  position: absolute;
  top: 15px;
  left: 12.5px;
  transition: 0.5s;
  width: 25px;
}
.menu-btn__bar::before, .menu-btn__bar::after {
  background: #1d2e5b;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  top: 50%;
  transition: 0.5s;
  width: 100%;
}
.menu-btn__bar::after {
  margin-top: 7px;
}

.close .menu-btn__bar {
  background: transparent;
}
.close .menu-btn__bar::before, .close .menu-btn__bar::after {
  margin-top: 0;
}
.close .menu-btn__bar::before {
  transform: rotate(45deg);
}
.close .menu-btn__bar::after {
  transform: rotate(-45deg);
}

@media (min-width: 1025px) {
  .sp-contact {
    display: none;
  }
}

.gnav-contact {
  background: #faf7f2;
}
@media (max-width: 1024px) {
  .gnav-contact {
    display: flex;
    justify-content: center;
    padding: 10px;
  }
}
@media (max-width: 400px) {
  .gnav-contact {
    justify-content: space-between;
  }
}

@media (max-width: 1024px) {
  .gnav-contact__btn {
    width: 200px;
    height: auto;
  }
  .gnav-contact__btn:first-child {
    margin-right: 15px;
  }
}
@media (max-width: 400px) {
  .gnav-contact__btn {
    width: 48%;
  }
  .gnav-contact__btn:first-child {
    margin-right: 0;
  }
}
@media (max-width: 1024px) {
  .gnav-contact__btn.-tel ul {
    display: flex;
    font-size: 12px;
  }
  .gnav-contact__btn.-tel ul li:first-child {
    margin-right: 5px;
  }
}
@media (max-width: 480px) {
  .gnav-contact__btn.-tel ul {
    font-size: 12px;
    font-size: 2.5vw;
    white-space: nowrap;
  }
}
@media (max-width: 400px) {
  .gnav-contact__btn.-tel ul {
    justify-content: center;
  }
}
.gnav-contact__btn.-mail {
  margin-top: 15px;
}
@media (max-width: 1024px) {
  .gnav-contact__btn.-mail {
    margin-top: 0;
  }
}
.gnav-contact__btn.-mail .gnav-contact__ttl {
  background: #1d2e5b;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  line-height: 1.2;
  padding: 5px 3px;
  text-align: center;
}
@media (max-width: 1024px) {
  .gnav-contact__btn.-mail .gnav-contact__ttl {
    background: #fff;
    color: #1d2e5b;
    flex: 1;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .gnav-contact__btn.-mail .gnav-contact__ttl {
    font-size: 14px;
    font-size: 2.9166666667vw;
  }
}

.gnav-contact__link {
  border-radius: 10px;
  display: block;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .gnav-contact__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.-tel .gnav-contact__link {
  background: #e32459;
  color: #fff;
  padding: 5px;
}
@media (max-width: 1024px) {
  .-tel .gnav-contact__link {
    padding: 5px 10px;
  }
}
.-tel .gnav-contact__link svg {
  fill: #fff;
}
.-mail .gnav-contact__link {
  background: #fff;
  border: 1px solid #1d2e5b;
}
@media (max-width: 1024px) {
  .-mail .gnav-contact__link {
    flex-direction: row-reverse;
    padding: 5px 10px;
  }
}
.-mail .gnav-contact__link svg {
  fill: #1d2e5b;
}

.gnav-contact__icon {
  text-align: center;
}
@media (max-width: 1024px) {
  .gnav-contact__icon {
    margin-right: 15px;
  }
}
@media (max-width: 480px) {
  .gnav-contact__icon {
    margin-right: 10px;
  }
}
@media (max-width: 400px) {
  .gnav-contact__icon {
    height: 30px;
  }
}
.-mail .gnav-contact__icon {
  margin-top: 10px;
}
@media (max-width: 400px) {
  .-mail .gnav-contact__icon {
    margin-top: 0;
  }
}
.gnav-contact__icon svg {
  width: 40px;
  height: 40px;
}
@media (max-width: 480px) {
  .gnav-contact__icon svg {
    width: 30px;
    height: 30px;
  }
}

.gnav-contact__txt {
  font-size: 10px;
  text-align: center;
}
@media (max-width: 1024px) {
  .gnav-contact__txt {
    flex: 1;
    font-size: 16px;
  }
}
@media (max-width: 400px) {
  .gnav-contact__txt {
    font-size: 12px;
  }
}
.gnav-contact__txt span {
  display: block;
  font-weight: bold;
}
@media (max-width: 300px) {
  .gnav-contact__txt span {
    font-size: 12px;
    font-size: 4vw;
  }
}

.sp-nav {
  padding-top: 5px;
}
@media (min-width: 1025px) {
  .sp-nav {
    display: none;
  }
}

.sp-nav__list {
  display: flex;
}

.sp-nav__item {
  position: relative;
  width: 25%;
}
.sp-nav__item:last-child .sp-nav__link {
  background: red;
  color: #fff;
}
.sp-nav__item:last-child::after {
  display: none;
}
.sp-nav__item::after {
  background: #ddd;
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 25px;
}

.sp-nav__link {
  display: block;
  font-size: 14px;
  padding: 5px 0;
  text-align: center;
}
@media (max-width: 400px) {
  .sp-nav__link {
    font-size: 12px;
  }
}
.sp-nav__link img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
  width: 20px;
  height: 25px;
}

/*********************************************************
footer
*********************************************************/
.footer {
  background: #1d2e5b;
}

.footer__logo {
  background: #fff;
  padding: 15px;
  text-align: center;
}
.footer__logo img {
  width: 200px;
}

.footer-nav {
  padding: 30px 10px;
}
@media (max-width: 800px) {
  .footer-nav {
    padding: 0;
  }
}

.footer-nav__list {
  display: flex;
  justify-content: center;
}
@media (min-width: 801px) {
  .footer-nav__list {
    margin: 0 auto;
    max-width: 1024px;
  }
}
@media (max-width: 800px) {
  .footer-nav__list {
    display: block;
  }
}

.footer-nav__item:not(:last-child) {
  margin-right: 25px;
}
@media (max-width: 800px) {
  .footer-nav__item:not(:last-child) {
    border-bottom: 1px solid #fff;
    margin-right: 0;
  }
}

.footer-nav__link {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  transition: 0.3s;
}
@media (max-width: 800px) {
  .footer-nav__link {
    display: block;
    padding: 10px;
    position: relative;
  }
  .footer-nav__link::after {
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    content: "";
    margin-top: -4px;
    position: absolute;
    right: 22px;
    top: 50%;
    transform: rotate(-45deg);
    width: 6px;
    height: 6px;
  }
}
.footer-nav__link:hover {
  opacity: 0.8;
}

.copy {
  background: #fff;
  font-size: 12px;
  padding: 15px;
  position: relative;
  text-align: center;
}
.copy::before {
  background-image: linear-gradient(to right, transparent, #000 25%, #000 75%, transparent);
  background-position: center;
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 1px;
}
@media (max-width: 310px) {
  .copy::before {
    width: 95%;
  }
}

/*********************************************************
contact
*********************************************************/
.contact {
  background: #f7f7f7 url(image.php?id=013);
  font-family: "Zen Old Mincho", serif;
  padding: 50px 10px;
  text-align: center;
}
@media (max-width: 500px) {
  .contact {
    padding: 30px 10px;
  }
}

.contact__txt {
  font-size: 22px;
  font-weight: bold;
}
@media (max-width: 480px) {
  .contact__txt {
    font-size: 18px;
  }
}

.contact__btn {
  display: flex;
  justify-content: space-between;
  margin: 15px auto 0;
  max-width: 500px;
}
@media (max-width: 500px) {
  .contact__btn {
    display: block;
  }
}

.contact__tel,
.contact__mail {
  width: 48%;
}
@media (max-width: 500px) {
  .contact__tel,
  .contact__mail {
    width: 100%;
  }
}
.contact__tel a,
.contact__mail a {
  color: #fff;
  display: block;
  font-size: 14px;
  font-weight: bold;
  padding: 10px;
  transition: 0.3s;
}
.contact__tel a:hover,
.contact__mail a:hover {
  opacity: 0.7;
}

.contact__tel a {
  background: #ff9140;
}

@media (max-width: 500px) {
  .contact__mail {
    margin-top: 15px;
  }
}
.contact__mail a {
  background: #000;
}

/*********************************************************
sticky-side
*********************************************************/
@media (max-width: 1024px) {
  .sticky-side {
    display: none;
  }
}

.sticky-side__container {
  position: fixed;
  z-index: 5;
}
@media (min-width: 1025px) {
  .sticky-side__container {
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
  }
}

.sticky-side__btn {
  border-radius: 10px;
  overflow: hidden;
  width: 80px;
  height: 110px;
}
@media (max-width: 1024px) {
  .sticky-side__btn {
    width: 200px;
    height: auto;
  }
  .sticky-side__btn:first-child {
    margin-right: 15px;
  }
}
@media (max-width: 400px) {
  .sticky-side__btn {
    width: 180px;
  }
  .sticky-side__btn:first-child {
    margin-right: 0;
  }
}
@media (max-width: 1024px) {
  .sticky-side__btn.-tel ul {
    display: flex;
    font-size: 12px;
  }
  .sticky-side__btn.-tel ul li:first-child {
    margin-right: 5px;
  }
}
.sticky-side__btn.-mail {
  border: 1px solid #1d2e5b;
  margin-top: 15px;
}
@media (max-width: 1024px) {
  .sticky-side__btn.-mail {
    margin-top: 0;
  }
}
@media (max-width: 400px) {
  .sticky-side__btn.-mail {
    margin-top: 10px;
  }
}
.sticky-side__btn.-mail .sticky-side__ttl {
  background: #1d2e5b;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  line-height: 1.2;
  padding: 5px 3px;
  text-align: center;
}
@media (max-width: 1024px) {
  .sticky-side__btn.-mail .sticky-side__ttl {
    background: #fff;
    color: #1d2e5b;
    flex: 1;
    font-size: 14px;
  }
}
@media (max-width: 400px) {
  .sticky-side__btn.-mail .sticky-side__ttl {
    font-size: 12px;
  }
}

.sticky-side__link {
  display: block;
  height: 100%;
}
@media (max-width: 1024px) {
  .sticky-side__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.-tel .sticky-side__link {
  background: #e32459;
  color: #fff;
  padding: 5px;
}
@media (max-width: 1024px) {
  .-tel .sticky-side__link {
    padding: 5px 10px;
  }
}
.-tel .sticky-side__link svg {
  fill: #fff;
}
.-mail .sticky-side__link {
  background: #fff;
}
@media (max-width: 1024px) {
  .-mail .sticky-side__link {
    flex-direction: row-reverse;
    padding: 5px 10px;
  }
}
.-mail .sticky-side__link svg {
  fill: #1d2e5b;
}

.sticky-side__icon {
  text-align: center;
}
@media (max-width: 1024px) {
  .sticky-side__icon {
    margin-right: 15px;
  }
}
@media (max-width: 480px) {
  .sticky-side__icon {
    margin-right: 10px;
  }
}
@media (max-width: 400px) {
  .sticky-side__icon {
    height: 30px;
  }
}
.-mail .sticky-side__icon {
  margin-top: 10px;
}
@media (max-width: 400px) {
  .-mail .sticky-side__icon {
    margin-top: 0;
  }
}
.sticky-side__icon svg {
  width: 40px;
  height: 40px;
}
@media (max-width: 480px) {
  .sticky-side__icon svg {
    width: 30px;
    height: 30px;
  }
}

.sticky-side__txt {
  font-size: 10px;
  text-align: center;
}
@media (max-width: 1024px) {
  .sticky-side__txt {
    flex: 1;
    font-size: 16px;
  }
}
@media (max-width: 400px) {
  .sticky-side__txt {
    font-size: 12px;
  }
}
.sticky-side__txt span {
  display: block;
  font-weight: bold;
}

/*********************************************************
sticky-bottom
*********************************************************/
.sticky-bottom {
  display: none;
}

.sticky-bottom__container {
  background: #f5efe5;
  position: fixed;
  z-index: 5;
  bottom: 0;
  left: 0;
  width: 100%;
}

.sticky-bottom__inner {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 1024px;
  padding: 10px 110px 10px 10px;
  position: relative;
}
@media (min-width: 401px) {
  .sticky-bottom__inner {
    align-items: center;
  }
}
@media (max-width: 1024px) {
  .sticky-bottom__inner {
    max-width: 600px;
  }
}
@media (max-width: 500px) {
  .sticky-bottom__inner {
    padding-right: 90px;
  }
}
@media (max-width: 400px) {
  .sticky-bottom__inner {
    padding-right: 10px;
  }
}

.sticky-bottom__first {
  color: #1d2e5b;
  font-family: "Zen Old Mincho", serif;
  margin-right: 15px;
}
@media (max-width: 1024px) {
  .sticky-bottom__first {
    display: none;
  }
}

.sticky-bottom-tel {
  margin-right: 15px;
}
@media (max-width: 1024px) {
  .sticky-bottom-tel {
    display: none;
  }
}

.sticky-bottom-tel__num {
  color: #1d2e5b;
  font-size: 24px;
  font-weight: bold;
  padding-left: 50px;
  position: relative;
}
.sticky-bottom-tel__num .free {
  height: 30px;
  position: absolute;
  top: 2px;
  left: 0;
}
.sticky-bottom-tel__num .free svg {
  fill: #1d2e5b;
  width: 50px;
  height: 30px;
}

.sticky-bottom-tel__time {
  font-size: 12px;
  text-align: right;
}

.sticky-bottom__btn {
  width: 200px;
  height: auto;
}
@media (max-width: 400px) {
  .sticky-bottom__btn {
    width: 48%;
  }
}
.sticky-bottom__btn.-tel {
  margin-right: 15px;
}
@media (max-width: 400px) {
  .sticky-bottom__btn.-tel {
    margin-right: 10px;
  }
}
.sticky-bottom__btn.-tel ul {
  display: flex;
  font-size: 12px;
}
@media (max-width: 480px) {
  .sticky-bottom__btn.-tel ul {
    font-size: 12px;
    font-size: 2.5vw;
    white-space: nowrap;
  }
}
@media (max-width: 400px) {
  .sticky-bottom__btn.-tel ul {
    justify-content: center;
  }
}
.sticky-bottom__btn.-tel ul li:first-child {
  margin-right: 5px;
}
.sticky-bottom__btn.-mail .sticky-bottom__ttl {
  color: #1d2e5b;
  flex: 1;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.2;
  padding: 5px 3px;
  text-align: center;
}
@media (max-width: 480px) {
  .sticky-bottom__btn.-mail .sticky-bottom__ttl {
    font-size: 14px;
    font-size: 2.9166666667vw;
  }
}

.sticky-bottom__link {
  border-radius: 10px;
  display: block;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}
.-tel .sticky-bottom__link {
  background: #e32459;
  color: #fff;
  padding: 5px;
}
.-tel .sticky-bottom__link svg {
  fill: #fff;
}
.-mail .sticky-bottom__link {
  background: #fff;
  border: 1px solid #1d2e5b;
  padding: 0 10px;
}
@media (max-width: 400px) {
  .-mail .sticky-bottom__link {
    height: 100%;
  }
}
.-mail .sticky-bottom__link svg {
  fill: #1d2e5b;
}

.sticky-bottom__icon {
  text-align: center;
  margin-right: 15px;
}
@media (max-width: 480px) {
  .sticky-bottom__icon {
    margin-right: 10px;
  }
}
@media (max-width: 400px) {
  .sticky-bottom__icon {
    height: 30px;
  }
}
.-mail .sticky-bottom__icon {
  margin-top: 10px;
}
@media (max-width: 400px) {
  .-mail .sticky-bottom__icon {
    margin-top: 0;
  }
}
.sticky-bottom__icon svg {
  width: 40px;
  height: 40px;
}
@media (max-width: 480px) {
  .sticky-bottom__icon svg {
    width: 30px;
    height: 30px;
  }
}

.sticky-bottom__txt {
  text-align: center;
  flex: 1;
  font-size: 16px;
}
@media (max-width: 400px) {
  .sticky-bottom__txt {
    font-size: 12px;
  }
}
.sticky-bottom__txt span {
  display: block;
  font-weight: bold;
}
@media (max-width: 300px) {
  .sticky-bottom__txt span {
    font-size: 12px;
    font-size: 4vw;
  }
}

.sticky-bottom__img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
}
@media (max-width: 500px) {
  .sticky-bottom__img {
    width: 80px;
  }
}
@media (max-width: 400px) {
  .sticky-bottom__img {
    display: none;
  }
}

/*********************************************************
index.html
*********************************************************/
.mv {
  background: #67c6ff;
}

.mv__inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1024px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
}
@media (max-width: 1024px) {
  .mv__inner {
    padding-left: 2%;
    padding-right: 2%;
  }
}
@media (min-width: 601px) and (max-width: 768px) {
  .mv__inner {
    justify-content: space-between;
  }
}
@media (max-width: 600px) {
  .mv__inner {
    padding: 0;
    flex-direction: column;
  }
}

.mv__txt {
  align-self: center;
  font-family: "Zen Old Mincho", serif;
}
@media (min-width: 601px) {
  .mv__txt {
    margin-left: 30px;
  }
}
@media (min-width: 601px) and (max-width: 768px) {
  .mv__txt {
    width: 50%;
  }
}
@media (max-width: 600px) {
  .mv__txt {
    padding-top: 30px;
    text-align: center;
  }
}
.mv__txt p {
  color: #fff;
  font-weight: bold;
}
.mv__txt p:first-child {
  font-size: 36px;
  line-height: 1.7;
}
@media (max-width: 980px) {
  .mv__txt p:first-child {
    font-size: 24px;
    line-height: 2;
  }
}
@media (max-width: 768px) {
  .mv__txt p:first-child {
    line-height: 1.7;
  }
}
@media (min-width: 401px) and (max-width: 600px) {
  .mv__txt p:first-child {
    font-size: 36px;
  }
}
.mv__txt p:last-child {
  font-size: 18px;
  margin-top: 15px;
}

@media (min-width: 769px) and (max-width: 980px) {
  .mv__img {
    width: 400px;
  }
}
@media (min-width: 601px) and (max-width: 768px) {
  .mv__img {
    width: 45%;
  }
}
@media (max-width: 600px) {
  .mv__img {
    margin-top: 15px;
    text-align: center;
  }
}
.mv__img img {
  vertical-align: bottom;
}

.mv-contact {
  background: #ade7f9;
  background-image: url(image.php?id=013);
  font-family: "Zen Old Mincho", serif;
  padding: 30px;
  position: relative;
  text-align: center;
  z-index: 1;
}
@media (max-width: 400px) {
  .mv-contact {
    padding: 30px 15px;
  }
}
.mv-contact::before {
  background: #ade7f9;
  content: "";
  opacity: 0.3;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.mv-contact__txt {
  font-size: 18px;
  font-weight: bold;
}

.mv-contact__txt2 {
  font-size: 14px;
  margin-top: 5px;
}

.mv-contact__btn {
  margin-top: 15px;
}
.mv-contact__btn a {
  background: #ff9140;
  border: 2px solid #fff;
  color: #fff;
  display: block;
  font-size: 18px;
  font-weight: bold;
  margin: 0 auto;
  padding: 10px;
  text-align: center;
  width: 90%;
  max-width: 300px;
  transition: 0.3s;
}
.mv-contact__btn a:hover {
  background: #fff;
  border-color: #ff9140;
  color: #ff9140;
}

.promise__box {
  background: #faf7f2;
  border: 1px solid #ddd;
  margin-top: 50px;
  padding: 30px;
}
@media (max-width: 480px) {
  .promise__box {
    padding: 20px;
  }
}

.promise__ttl {
  color: #1d2e5b;
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 480px) {
  .promise__ttl {
    font-size: 18px;
  }
}

.promise__txt {
  margin-top: 15px;
}
@media (max-width: 480px) {
  .promise__txt {
    font-size: 14px;
  }
}

.promise__btn {
  margin-top: 30px;
  text-align: center;
}
.promise__btn a {
  background: #1d2e5b;
  border-radius: 30px;
  box-shadow: 2px 2px 3px #b7b7b7;
  color: #fff;
  display: inline-block;
  font-weight: bold;
  padding: 15px 25px;
  position: relative;
  transition: 0.3s;
  width: 90%;
  max-width: 300px;
}
@media (max-width: 480px) {
  .promise__btn a {
    font-size: 14px;
  }
}
@media (max-width: 350px) {
  .promise__btn a {
    font-size: 12px;
  }
}
.promise__btn a:hover {
  box-shadow: 3px 3px 3px transparent;
}
.promise__btn a:hover::after {
  right: 25px;
}
.promise__btn a::after {
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: "";
  margin-top: -5px;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: rotate(-45deg);
  transition: 0.3s;
  width: 8px;
  height: 8px;
}

.top-flow,
.top-area {
  margin-top: 50px;
}

.top-flow__img,
.top-area__img {
  margin-top: 50px;
  text-align: center;
}

/*********************************************************
plan.html
*********************************************************/
.plan {
  padding: 50px 0;
}

.plan__ttl {
  font-size: 24px;
  font-weight: bold;
  line-height: 2;
  text-align: center;
}
@media (max-width: 600px) {
  .plan__ttl {
    font-size: 26px;
    font-size: 4.3333333333vw;
  }
}

.plan__card {
  background: #fff;
  border: 1px solid #ddd;
  margin-top: 30px;
  padding: 15px;
}
@media (max-width: 768px) {
  .plan__card {
    margin-left: auto;
    margin-right: auto;
    max-width: 500px;
  }
}

.plan__name {
  color: #1d2e5b;
  font-size: 22px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .plan__name {
    text-align: center;
  }
}

.plan__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}
@media (max-width: 768px) {
  .plan__box {
    display: block;
  }
}

.plan__img {
  width: 30%;
}
@media (max-width: 768px) {
  .plan__img {
    text-align: center;
    width: 100%;
  }
  .plan__img img {
    width: 400px;
  }
}

.plan__content {
  width: 65%;
}
@media (max-width: 768px) {
  .plan__content {
    margin-top: 15px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .plan__txt {
    font-size: 14px;
  }
}

.plan2 {
  background: #e6ebf7;
}

.plan2__container {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .plan2__container {
    align-items: center;
    flex-direction: column;
  }
}

.plan2__card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
  overflow: hidden;
  padding-bottom: 150px;
  position: relative;
  width: 49%;
}
@media (max-width: 768px) {
  .plan2__card {
    width: 100%;
    max-width: 500px;
  }
}
@media (max-width: 768px) {
  .plan2__card:nth-child(n+2) {
    margin-top: 30px;
  }
}
@media (min-width: 769px) {
  .plan2__card:nth-child(n+3) {
    margin-top: 30px;
  }
}

.plan2__img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 200px;
}

.plan2__box {
  padding: 15px;
}

.plan2__ttl {
  color: #1d2e5b;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 480px) {
  .plan2__ttl {
    font-size: 24px;
  }
}

.plan2__txt {
  margin-top: 15px;
}
@media (max-width: 480px) {
  .plan2__txt {
    font-size: 14px;
  }
}

.plan2__list {
  display: flex;
  margin-top: 15px;
}
.plan2__list li {
  border: 1px solid #333;
  font-size: 14px;
  padding: 3px;
  text-align: center;
}
@media (max-width: 480px) {
  .plan2__list li {
    font-size: 12px;
    padding: 5px;
  }
}
.plan2__list li:not(:last-child) {
  margin-right: 10px;
}

.plan2__price {
  font-size: 20px;
  font-weight: bold;
  position: absolute;
  bottom: 90px;
  left: 50%;
  text-align: center;
  transform: translateX(-50%);
  width: 100%;
}
@media (max-width: 480px) {
  .plan2__price {
    font-size: 18px;
  }
}
.plan2__price strong {
  color: #e32459;
  font-size: 200%;
  margin-right: 5px;
}

.plan2__btn {
  margin-top: 30px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  text-align: center;
  transform: translateX(-50%);
  width: 100%;
}
.plan2__btn a {
  background: #1d2e5b;
  border-radius: 30px;
  box-shadow: 2px 2px 3px #b7b7b7;
  color: #fff;
  display: inline-block;
  font-weight: bold;
  padding: 15px 25px;
  position: relative;
  transition: 0.3s;
  width: 90%;
  max-width: 300px;
}
@media (max-width: 480px) {
  .plan2__btn a {
    font-size: 14px;
  }
}
@media (max-width: 350px) {
  .plan2__btn a {
    font-size: 12px;
  }
}
.plan2__btn a:hover {
  box-shadow: 3px 3px 3px transparent;
}
.plan2__btn a:hover::after {
  right: 25px;
}
.plan2__btn a::after {
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: "";
  margin-top: -5px;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: rotate(-45deg);
  transition: 0.3s;
  width: 8px;
  height: 8px;
}

.plan2__flow {
  margin-top: 30px;
  text-align: center;
}

/*********************************************************
プラン詳細
*********************************************************/
.plan3__container {
  display: flex;
}
@media (max-width: 768px) {
  .plan3__container {
    display: block;
    margin-top: 50px;
  }
}

.plan3__box {
  width: 50%;
}
@media (max-width: 768px) {
  .plan3__box {
    width: 100%;
  }
}
.plan3__box:first-child {
  background: #ffe9d9;
  padding: 30px;
  text-align: center;
}
@media (max-width: 350px) {
  .plan3__box:first-child {
    padding: 15px;
  }
}

.plan3__ttl {
  font-size: 24px;
  margin-top: 15px;
}
@media (max-width: 350px) {
  .plan3__ttl {
    font-size: 20px;
  }
}

.plan3__txt {
  font-size: 14px;
}

.plan3__txt2 {
  margin-top: 15px;
}
@media (max-width: 480px) {
  .plan3__txt2 {
    font-size: 14px;
  }
}
.plan3__txt2 span {
  background: #fff;
  border: 2px solid #333;
  border-radius: 8px;
  display: inline-block;
  padding: 8px;
}

.plan3__txt3 {
  font-size: 14px;
  margin-top: 15px;
}
.plan3__txt3 strong {
  font-size: 150%;
}

.plan3__note {
  font-size: 14px;
  margin: 10px 0 0;
}

.plan3__img {
  position: relative;
}
.plan3__img img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  width: 100%;
  height: 200px;
}
@media (max-width: 768px) {
  .plan3__img img {
    height: 250px;
  }
}
@media (min-width: 769px) {
  .plan3__img.-oneday img {
    height: 250px;
  }
}

.plan3__circle {
  background: #1d2e5b;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 3px;
  position: absolute;
  top: 20px;
  right: 20px;
  text-indent: 3px;
  width: 80px;
  height: 80px;
}

.plan3__price {
  font-size: 24px;
  line-height: 1;
  margin-top: 15px;
}
@media (max-width: 300px) {
  .plan3__price {
    font-size: 18px;
    font-size: 7vw;
  }
}
.plan3__price strong {
  display: inline-block;
  font-size: 180%;
  margin: 0 2px;
}

.plan3__tax {
  font-size: 70%;
}

.plan3-flow {
  margin-top: 15px;
}
@media (max-width: 350px) {
  .plan3-flow {
    overflow-x: scroll;
    padding-bottom: 10px;
    scrollbar-color: #ff9140 #1d2e5b;
    scrollbar-width: thin;
  }
  .plan3-flow ::-webkit-scrollbar-thumb {
    border-radius: 5px;
    width: 5px;
  }
}

.plan3-flow__list {
  display: flex;
  justify-content: center;
  text-align: center;
}
@media (max-width: 350px) {
  .plan3-flow__list {
    width: 330px;
  }
}

.plan3-flow__tag {
  background: #fff;
  border: 2px solid #ff9140;
  border-radius: 5px;
  font-size: 13px;
  font-weight: bold;
  width: 33px;
  writing-mode: vertical-rl;
}
.plan3-flow__tag:not(:last-child) {
  margin-right: 33px;
}
.plan3-flow__tag.-none {
  background: #ddd;
  opacity: 0.7;
  z-index: -1;
}
.plan3-flow__tag[class*=-next] {
  position: relative;
  z-index: 2;
}
.plan3-flow__tag[class*=-next]::before, .plan3-flow__tag[class*=-next]::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.plan3-flow__tag[class*=-next]::before {
  background: #ff9140;
  height: 2px;
}
.plan3-flow__tag[class*=-next]::after {
  border-color: transparent transparent transparent #ff9140;
  border-width: 3px 0 3px 6px;
  border-style: solid;
  height: 0;
  width: 0;
}
.plan3-flow__tag.-next::before {
  right: -33px;
  width: 33px;
}
.plan3-flow__tag.-next::after {
  right: -35px;
}
.plan3-flow__tag.-next3::before {
  right: -99px;
  width: 99px;
}
.plan3-flow__tag.-next3::after {
  right: -101px;
}
.plan3-flow__tag.-next5::before {
  right: -165px;
  width: 165px;
}
.plan3-flow__tag.-next5::after {
  right: -167px;
}
.plan3-flow__tag span {
  display: flex;
  justify-content: center;
  padding: 5px;
  width: 100%;
}

.plan3-icons {
  background: #e6ebf7;
  margin-top: 50px;
}

.plan3-icons__inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1024px;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (max-width: 1024px) {
  .plan3-icons__inner {
    padding-left: 2%;
    padding-right: 2%;
  }
}

.plan3-icons__list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}
@media (min-width: 769px) {
  .plan3-icons__list:has(> :nth-child(-n+5):last-child) {
    justify-content: center;
  }
}
@media (max-width: 300px) {
  .plan3-icons__list {
    flex-wrap: nowrap;
    overflow-x: scroll;
    padding-bottom: 10px;
    scrollbar-color: #ff9140 #1d2e5b;
    scrollbar-width: thin;
  }
  .plan3-icons__list ::-webkit-scrollbar-thumb {
    border-radius: 5px;
    width: 5px;
  }
}

.plan3-icons__item {
  text-align: center;
  width: 15%;
}
@media (min-width: 769px) {
  .plan3-icons__item:not(:nth-child(6n)) {
    margin-right: 2%;
  }
  .plan3-icons__item:nth-child(n+7) {
    margin-top: 4%;
  }
}
@media (max-width: 768px) {
  .plan3-icons__item {
    width: 22%;
  }
}
@media (max-width: 480px) {
  .plan3-icons__item {
    width: 30%;
  }
}
@media (max-width: 300px) {
  .plan3-icons__item {
    width: 33.3%;
  }
}
@media (max-width: 300px) {
  .plan3-icons__item:not(:last-child) {
    margin-right: 2%;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .plan3-icons__item:not(:nth-child(4n)) {
    margin-right: 4%;
  }
}
@media (min-width: 301px) and (max-width: 480px) {
  .plan3-icons__item:nth-child(3n+2) {
    margin-left: 5%;
    margin-right: 5%;
  }
}
@media (min-width: 301px) and (max-width: 480px) {
  .plan3-icons__item:nth-child(n+4) {
    margin-top: 4%;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .plan3-icons__item:nth-child(n+5) {
    margin-top: 4%;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .plan3-icons__item:nth-child(5n) {
    margin-right: 4%;
  }
}

.plan3-icons__icon {
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  width: 120px;
  height: 120px;
  z-index: 1;
}
@media (max-width: 600px) {
  .plan3-icons__icon {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 400px) {
  .plan3-icons__icon {
    width: 80px;
    height: 80px;
  }
}
.plan3-icons__icon::before {
  background: #fff;
  border-radius: 15%;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.plan3-icons__icon img {
  width: 120px;
}

.plan3-icons__txt {
  font-size: 12px;
  line-height: 1.3;
  margin-top: 3px;
}

/*********************************************************
flow.html
*********************************************************/
.flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .flow {
    flex-direction: column;
  }
}

.flow__ttl,
.flow__content {
  margin-top: 30px;
  padding: 10px;
}

.flow__ttl {
  color: #1d2e5b;
  font-size: 24px;
  font-weight: bold;
  width: 200px;
}
@media (max-width: 600px) {
  .flow__ttl {
    font-size: 18px;
    width: 100%;
  }
}

.flow__content {
  position: relative;
  width: calc(100% - 200px);
}
@media (min-width: 601px) {
  .flow__content {
    padding-left: 30px;
  }
}
@media (max-width: 600px) {
  .flow__content {
    margin-top: 0;
    padding-top: 30px;
    width: 100%;
  }
}
.flow__content::before {
  background: #1d2e5b;
  border-radius: 10px;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
}
@media (min-width: 601px) {
  .flow__content::before {
    width: 10px;
    height: 100%;
  }
}
@media (max-width: 600px) {
  .flow__content::before {
    width: 100%;
    height: 10px;
  }
}
.flow__content:not(:last-child)::after {
  border-color: #ade7f9 transparent transparent transparent;
  border-width: 30px 60px 0 60px;
  border-style: solid;
  height: 0;
  width: 0;
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}
.flow__content p:first-child {
  color: #ff9140;
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 600px) {
  .flow__content p:first-child {
    font-size: 18px;
  }
}
.flow__content p:nth-child(n+2) {
  margin-top: 10px;
}

/*********************************************************
serach.html
*********************************************************/
.temple {
  padding: 50px 0;
}

.temple__card {
  border: 1px solid #ddd;
  margin-top: 30px;
  width: 30%;
}
@media (max-width: 768px) {
  .temple__card {
    width: 48%;
  }
}
@media (max-width: 480px) {
  .temple__card {
    width: 300px;
    min-width: 300px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .temple__card:nth-child(odd) {
    margin-right: 4%;
  }
}
@media (max-width: 480px) {
  .temple__card:nth-child(n+2) {
    margin-left: 15px;
  }
}
@media (min-width: 769px) {
  .temple__card:nth-child(3n+2) {
    margin-left: 5%;
    margin-right: 5%;
  }
}

.temple__txt {
  padding: 10px;
}
@media (max-width: 480px) {
  .temple__txt {
    white-space: nowrap;
  }
}

.temple__name {
  font-size: 18px;
  font-weight: bold;
}

.temple__address {
  font-size: 14px;
  margin-top: 5px;
}

.funeralhall__container {
  display: flex;
}
@media (min-width: 769px) {
  .funeralhall__container {
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .funeralhall__container {
    overflow: auto;
  }
}

.funeralhall__card {
  background: #fff;
  border-radius: 15px;
  border-top: 10px solid #1d2e5b;
  box-shadow: 0 0 5px #bdbdbd;
  margin-top: 30px;
  padding: 15px;
  width: 30%;
}
@media (max-width: 768px) {
  .funeralhall__card {
    width: 300px;
  }
}
@media (max-width: 768px) {
  .funeralhall__card:nth-child(n+2) {
    margin-left: 15px;
  }
}
@media (min-width: 769px) {
  .funeralhall__card:nth-child(3n+2) {
    margin-left: 5%;
    margin-right: 5%;
  }
}

.funeralhall__name {
  color: #1d2e5b;
  font-size: 18px;
  font-weight: bold;
}

.funeralhall__img {
  margin-top: 10px;
  text-align: center;
}
.funeralhall__img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 178px;
}
@media (max-width: 1024px) {
  .funeralhall__img img {
    height: 130px;
  }
}
@media (max-width: 768px) {
  .funeralhall__img img {
    height: 160px;
  }
}

.funeralhall__table {
  margin-top: 10px;
  width: 100%;
}
.funeralhall__table th,
.funeralhall__table td {
  border-color: #ddd;
  border-style: solid;
  border-width: 1px 0;
  font-size: 12px;
  padding: 5px;
}
@media (max-width: 768px) {
  .funeralhall__table th,
  .funeralhall__table td {
    white-space: nowrap;
  }
}
.funeralhall__table th {
  background: #e6ebf7;
  padding-left: 10px;
  padding-right: 10px;
  white-space: nowrap;
}

.temple__inner {
  overflow: auto;
}

.temple__table {
  margin-top: 30px;
  width: 100%;
}
.temple__table th,
.temple__table td {
  font-size: 14px;
  padding: 5px 10px;
  text-align: left;
  white-space: nowrap;
}

.temple__pt th,
.temple__pt td {
  padding-top: 30px;
}

/*********************************************************
voice.html
*********************************************************/
.voice__container:not(:first-child) {
  margin-top: 50px;
  padding-top: 50px;
  position: relative;
}
.voice__container:not(:first-child)::before {
  background: #ddd;
  border-radius: 15px;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 3px;
}

.voice__box {
  display: flex;
  align-items: center;
}
@media (max-width: 600px) {
  .voice__box {
    display: block;
  }
}

.voice__ttl {
  color: #1d2e5b;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .voice__ttl {
    text-align: center;
  }
}
@media (max-width: 480px) {
  .voice__ttl {
    font-size: 18px;
  }
}

.voice__txt {
  margin-right: 30px;
  width: calc(100% - 230px);
}
@media (max-width: 600px) {
  .voice__txt {
    margin: 0;
    width: 100%;
  }
  .voice__txt p {
    font-size: 14px;
  }
}

.voice__img {
  width: 200px;
}
@media (max-width: 600px) {
  .voice__img {
    margin: 15px auto 0;
    width: 100%;
    max-width: 200px;
  }
}

.voice__table {
  margin: 15px auto 0;
  width: 100%;
  max-width: 500px;
}
.voice__table th,
.voice__table td {
  border-color: #ddd;
  border-style: solid;
  border-width: 1px 0;
  font-size: 12px;
  padding: 5px;
}
.voice__table th {
  background: #e6ebf7;
  padding-left: 10px;
  padding-right: 10px;
  white-space: nowrap;
}

/*********************************************************
company.html
*********************************************************/
.company__table {
  margin-top: 30px;
  width: 100%;
}
@media (max-width: 600px) {
  .company__table tbody,
  .company__table tr,
  .company__table th,
  .company__table td {
    display: block;
  }
}
.company__table tr:not(:first-child) th {
  margin-top: 15px;
}
.company__table th,
.company__table td {
  border-color: #ddd;
  border-style: solid;
  border-width: 1px 0;
  padding: 10px;
  vertical-align: middle;
}
.company__table th {
  background: #e6ebf7;
  font-weight: bold;
  padding-left: 10px;
  padding-right: 10px;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .company__table th {
    border-width: 0;
  }
}
@media (max-width: 600px) {
  .company__table td {
    border-width: 0;
  }
}
@media (max-width: 480px) {
  .company__table td {
    font-size: 14px;
  }
}
.company__table td dl:not(:first-child) {
  margin-top: 15px;
}
.company__table td dl dt {
  font-weight: bold;
}
.company__table td dl dd {
  font-size: 14px;
  margin-top: 5px;
}
.company__table td ol li {
  margin-left: 1em;
  text-indent: -1em;
}
.company__table td ol li:not(:first-child) {
  margin-top: 0.5em;
}
.company__table td ul li:not(:first-child) {
  margin-top: 0.5em;
}
.company__table td p:not(:first-child) {
  margin-top: 1em;
}

/*********************************************************
inquiry.html
*********************************************************/
.inquiry__wrapper {
  padding-bottom: 50px;
}
@media (max-width: 768px) {
  .inquiry__wrapper {
    padding-top: 50px;
  }
}

.inquiry__tel {
  border: 1px solid #e32459;
  border-radius: 10px;
  margin: 0 auto;
  max-width: 600px;
  overflow: hidden;
  padding-bottom: 10px;
}

.inquiry__txt {
  background: #e32459;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  padding: 10px;
  text-align: center;
}
@media (max-width: 480px) {
  .inquiry__txt {
    font-size: 24px;
    font-size: 5vw;
  }
}

.inquiry__txt2 {
  color: #e32459;
  font-size: 36px;
  font-weight: bold;
  padding: 10px 10px 0;
  text-align: center;
}
@media (max-width: 480px) {
  .inquiry__txt2 {
    font-size: 36px;
    font-size: 7.5vw;
  }
}
.inquiry__txt2 a {
  padding-left: 50px;
  position: relative;
}
@media (max-width: 480px) {
  .inquiry__txt2 a {
    padding-left: 40px;
  }
}
.inquiry__txt2 a .free {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-55%);
  width: 40px;
  height: 30px;
}
@media (max-width: 480px) {
  .inquiry__txt2 a .free {
    transform: translateY(-53%);
    width: 35px;
    height: 25px;
  }
}
.inquiry__txt2 a .free svg {
  fill: #e32459;
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 30px;
}
@media (max-width: 480px) {
  .inquiry__txt2 a .free svg {
    width: 35px;
    height: 25px;
  }
}

.inquiry__list {
  display: flex;
  justify-content: center;
}
.inquiry__list li {
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 12px;
  padding: 3px;
}
.inquiry__list li:not(:last-child) {
  margin-right: 5px;
}

.inquiry__btn {
  margin-top: 30px;
  text-align: center;
}
.inquiry__btn a {
  background: #1d2e5b;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  padding: 15px 40px 15px 15px;
  position: relative;
  text-align: center;
}
.inquiry__btn a::after {
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: "";
  margin-top: -6px;
  position: absolute;
  right: 13px;
  top: 50%;
  transform: rotate(-45deg);
  transition: 0.3s;
  width: 8px;
  height: 8px;
}
.inquiry__btn a:hover::after {
  right: 18px;
}

/*********************************************************
faq.html
*********************************************************/
.faq__container {
  margin-top: 30px;
}
.faq__container:not(:first-child) {
  margin-top: 50px;
}

.faq__ttl {
  color: #1d2e5b;
  font-weight: bold;
  margin-bottom: 10px;
}

.faq__q,
.faq__a {
  position: relative;
}
.faq__q::before,
.faq__a::before {
  color: #1d2e5b;
  font-size: 24px;
  font-weight: bold;
  position: absolute;
  left: 15px;
}

.faq__q {
  border-top: 1px solid #ddd;
  cursor: pointer;
  font-weight: bold;
  padding: 30px 50px 30px 50px;
}
@media (max-width: 480px) {
  .faq__q {
    font-size: 14px;
  }
}
.faq__q::before {
  content: "Q";
  top: 20px;
}
.faq__q span {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
}
.faq__q span::before, .faq__q span::after {
  background: #1d2e5b;
  content: "";
  position: absolute;
}
.faq__q span::before {
  top: 50%;
  left: 0;
  margin-top: -2px;
  width: 15px;
  height: 2px;
}
.faq__q span::after {
  top: 0;
  left: 50%;
  margin-left: -1px;
  width: 2px;
  height: 15px;
}
.faq__q.open span::after {
  display: none;
}

.faq__a {
  padding: 0 30px 30px 50px;
}
@media (max-width: 480px) {
  .faq__a {
    font-size: 14px;
  }
}
.faq__a::before {
  content: "A";
  top: -5px;
}

/*********************************************************
area.html
*********************************************************/
.area__container {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .area__container {
    display: block;
  }
}

.area__map {
  margin-right: 30px;
  text-align: center;
  width: 300px;
}
@media (max-width: 768px) {
  .area__map {
    margin-right: 0;
    width: 100%;
  }
  .area__map img {
    width: 300px;
  }
}
.area__map a:hover {
  opacity: 0.8;
}

.area__table {
  width: calc(100% - 330px);
}
@media (max-width: 768px) {
  .area__table {
    margin-top: 30px;
    width: 100%;
  }
}

.area-table {
  width: 100%;
}
.area-table:not(:first-child) {
  margin-top: 15px;
}
.area-table th,
.area-table td {
  padding: 10px;
}
.area-table th {
  background: #ade7f9;
  font-weight: bold;
}
.area-table th span {
  font-weight: normal;
}
.area-table td {
  line-height: 2;
}