/* --- Fixed Footer Container --- */
:root {
  --cl-blue: #07365b;
  --cl-yellow: #b89043;
}

#ft-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 321;
}

.has_nav #ft-fixed {
  opacity: 1;
  visibility: visible;
}

.nav--opened #ft-fixed {
  z-index: 999;
}

#ft-fixed .ft__fixed__shared {
  display: flex;
  width: 100%;
  z-index: 999;
  list-style: none;
  padding: 0;
  margin: 0;
}

#ft-fixed .ft__fixed__shared li:nth-child(1) {
  width: 20%;
}

#ft-fixed .ft__fixed__shared li:nth-child(2) {
  width: 36%;
}

#ft-fixed .ft__fixed__shared li:nth-child(3) {
  width: 17.6%;
}

#ft-fixed .ft__fixed__shared li:nth-child(4) {
  width: 26.4%;
}

#ft-fixed .ft__fixed__shared li img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 1 !important;
}

#ft-fixed .ft__fixed__shared .hamburger {
  padding: 0;
  position: relative;
  cursor: pointer;
}

#ft-fixed .ft__fixed__shared .hamburger .on {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0!important;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

#ft-fixed .ft__fixed__shared .hamburger::after {
  display: none;
}

#ft-fixed .ft__fixed__shared .hamburger.is-active .on {
  opacity: 1!important;
  visibility: visible!important;
}
#ft-fixed .ft__fixed__shared .hamburger.is-active .off {
  opacity: 0!important;
  visibility: hidden;
}

.has-nav #ft-fixed {
  opacity: 1;
  visibility: visible;
}

.nav--opened #pagetop {
  z-index: 999;
}

/* --- Menu Overlay --- */
.menu-toggle {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  z-index: 213;
  opacity: 0;
  visibility: hidden;
  overflow: auto;
  transition: all 0.5s ease;
  background: #08365a;
}

.nav--opened {
  overflow: hidden !important;
  touch-action: none !important;
}

body.nav--opened * {
  pointer-events: none !important;
  touch-action: none !important;
}

body.nav--opened #ft-fixed,
body.nav--opened #ft-fixed *,
body.nav--opened .hamburger,
body.nav--opened .menu-toggle,
body.nav--opened .menu-toggle * {
  pointer-events: auto !important;
  touch-action: auto !important;
}

.nav--opened .menu-toggle {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.nav--opened .hamburger .hamburger-box::after {
  content: "CLOSE";
}

.nav--opened .hamburger .hamburger-box .hline-center {
  display: none;
}

.nav--opened .hamburger .hamburger-box .hline-top {
  top: 9px;
  transform: rotate(-30deg);
}

.nav--opened .hamburger .hamburger-box .hline-bottom {
  top: 9px;
  transform: rotate(30deg);
}

.nav__header {
  position: absolute;
  top: 247px;
  left: 0;
  z-index: 2;
  overflow: hidden;
}

.nav__header .nav__headerList {
  list-style: none;
}

.nav__header .nav__headerList li {
  position: relative;
}

.nav__header .nav__headerList li a {
  color: #ffffff;
  font-size: 17px;
  letter-spacing: 0.08em;
  padding-left: 76px;
  position: relative;
  font-weight: 500;
}

.nav__header .nav__headerList li a::before {
  content: "";
  border-bottom: 1px solid #fff;
  position: absolute;
  bottom: -3px;
  left: 0;
  height: 1px;
  opacity: 0;
  right: 0;
}

.nav__header .nav__headerList li a.active,
.nav__header .nav__headerList li a:hover {
  text-decoration: none;
}

.nav__header .nav__headerList li a.active::before,
.nav__header .nav__headerList li a:hover::before {
  opacity: 0.5;
}

.nav__header .nav__headerList li a small {
  font-size: 10px;
  opacity: 0.25;
  padding-left: 10px;
  font-weight: 400;
  line-height: 1;
}

.nav__header .nav__headerList li+li {
  margin-top: 6px;
}

.menu-toggle .inner {
  padding: 10vw 8vw 35vw;
  position: relative;
}

.menu-toggle .nav__toggle {
  list-style: none;
  padding-left: 8vw;
  padding-right: 8vw;
  padding-bottom: 10vw;
}

.menu-toggle .nav__toggle li a {
  color: #fff;
  opacity: 1;
  font-weight: 500;
  display: flex;
  align-items: center;
  font-size: 18px;
  letter-spacing: 0.1em;
  gap: 10px;
  line-height: 1;
  padding: 10px 0;
}

.menu-toggle .nav__toggle li a.active {
  opacity: 0.5;
}

.menu-toggle .nav__toggle li a small {
  font-weight: 400;
  font-size: 9px;
  letter-spacing: 0.1em;
  opacity: 0.5;
  padding-top: 4px;
}

.menu-toggle .nav__toggle li+li {
  margin-top: 10px;
}

.menu-toggle .tel__contact {
  text-align: center;
  padding-top: 10vw;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  margin-bottom: 10vw;
  line-height: 1;
  font-size: 16px;
}

.menu-toggle .tel__contact dt {
  margin-bottom: 3vw;
}

.menu-toggle .tel__contact .tel__num {
  font-size: 22px;
  letter-spacing: 0.1em;
  margin-bottom: 3vw;
}

.menu-toggle .tel__contact .tel__des {
  font-size: 12px;
  letter-spacing: 0;
}

.menu-toggle .bnrIns {
  width: 35px;
  margin: 0 auto;
}

.menu-toggle .toggleClose {
  position: fixed;
  top: 50px;
  right: 8vw;
  z-index: 2;
  width: 40px;
  cursor: pointer;
}

.ob-img {
  background-size: cover;
  background-position: center center;
  position: relative;
}

.ob-img img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100% !important;
  height: 100% !important;
}

@media screen and (min-width: 768px) {
  .ob-img img {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
  }
}

@media screen and (min-width: 768px) {
  .d__flex {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
  }

  .d__flex.jus {
    justify-content: space-between;
  }
}

#header {
  position: relative;
}

#header::before {
  content: "";
  background: url("../img/shared/bg02.jpg");
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100px;
  z-index: 1;
  display: none;
}

#header h1 {
  font-size: 12px;
  position: absolute;
  bottom: 9vw;
  left: 20px;
  z-index: 2;
  color: #fff;
  right: 20px;
}

#header .logo {
  max-width: 130px;
  position: absolute;
  top: 6vw;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  width: 23vw;
}

#header .header__content {
  position: absolute;
  top: 0;
  right: 18px;
  z-index: 2;
  color: #fff;
  display: none;
}

#header .header__content .header__tel {
  line-height: 1;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  justify-content: flex-end;
  align-items: flex-end;
  padding-top: 28px;
  padding-right: 22px;
  letter-spacing: 0.05em;
}

#header .header__content .header__tel::after {
  content: "";
  background: url("../img/shared/header_line.png") no-repeat center;
  background-size: 100% auto;
  width: 3px;
  height: 71px;
  position: absolute;
  top: 0;
  right: 0;
}

#header .header__content .header__tel dt {
  font-size: 14px;
  margin-right: 17px;
}

#header .header__content .header__tel dd.tel__num {
  font-size: 24px;
}

#header .header__content .header__tel dd.tel__num small {
  font-size: 20px;
}

#header .header__content .header__tel dd.tel__des {
  text-align: right;
  font-size: 12px;
  width: 100%;
  padding-top: 8px;
  margin-right: -10px;
}

#header .header__content .header__social {
  display: flex;
  gap: 16px;
  padding: 32px 17px 0 23px;
}

#header .header__content .header__social li {
  width: 25px;
}

#header .header__content .header__social li+li {
  width: 18px;
}

#header .header__content .header__web {
  width: 67px;
}

@media screen and (min-width: 768px) {
  #header::before {
    display: block;
  }

  #header h1 {
    bottom: 50px;
    left: 60px;
    right: auto;
  }

  #header .logo {
    width: 130px;
    top: 70px;
    left: 51px;
    z-index: 2;
    transform: translateX(0%);
  }

  #header .header__content {
    display: flex;
    align-items: flex-start;
  }
}

#key {
  height: 135vw;
}

#key .ob-img {
  height: 100%;
}

#key .ob-img img {
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
}

@media screen and (min-width: 768px) {
  #key {
    height: 950px;
  }
}

.nav-fixed {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 123;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.nav-fixed .nav-fixed__ham {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 34px 0 30px;
}

.nav-fixed .nav-fixed__ham .nav-fixed__header ul {
  display: flex;
  gap: 20px;
}

.nav-fixed .nav-fixed__ham .nav-fixed__header ul li a {
  color: #07365b;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0em;
}

.nav-fixed .nav-fixed__ham .nav-fixed__header ul li a.active,
.nav-fixed .nav-fixed__ham .nav-fixed__header ul li a:hover {
  text-decoration-line: underline;
  text-underline-offset: 6px;
}

.nav-fixed .nav-fixed__ham .col-2 {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  align-items: center;
}

.nav-fixed .nav-fixed__ham .col-2 .tel {
  color: #35353b;
  font-size: 18px;
  letter-spacing: 0.08em;
}

.nav-fixed .nav-fixed__ham .col-2 .bnrIns {
  width: 25px;
  position: relative;
  top: -3px;
}

.nav-fixed .nav-fixed__ham .col-2 .bnrIns img {
  filter: brightness(1) invert(1);
}

.nav-fixed .bnrweb {
  position: absolute;
  width: 79px;
  top: 71px;
  right: 7px;
}

.nav-fixed.fixed {
  opacity: 1;
  visibility: visible;
}

#footer {
  background: url("../img/shared/bg02.jpg");
  color: #ffffff;
  padding: 20vw 0 25vw;
  position: relative;
  z-index: 5;
}

#footer::after {
  content: "";
  background: url(../img/shared/ft_bg.png) repeat-x center left;
  height: 14vw;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

#footer .set1 {
  padding-bottom: 10vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

#footer .set1 .footer__logo {
  max-width: 150px;
  width: 28vw;
  margin: 0 auto 5vw;
}

#footer .set1 .footer__name {
  text-align: center;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0.15em;
}

#footer .set1 .nav__footer .nav__footerList ul {
  display: flex;
  justify-content: center;
}

#footer .set1 .nav__footer .nav__footerList ul li {
  position: relative;
}

#footer .set1 .nav__footer .nav__footerList ul li::before {
  content: "";
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 1px;
  height: 13px;
}

#footer .set1 .nav__footer .nav__footerList ul li a {
  padding: 0 16px;
  font-size: 13px;
  display: block;
}

#footer .set1 .nav__footer .nav__footerList ul li a.active,
#footer .set1 .nav__footer .nav__footerList ul li a:hover {
  text-decoration-line: underline;
  text-underline-offset: 6px;
}

#footer .set1 .nav__footer .nav__footerList ul li:first-child::before {
  display: none;
}

#footer .set2 {
  padding-top: 10vw;
  position: relative;
}

#footer .set2 .wrap {
  max-width: 1344px;
}

#footer .set2 .bnrwebs {
  display: block;
  width: 250px;
  line-height: 40px;
  text-align: center;
  font-size: 15px;
  border-radius: 50px;
  background: #fff;
  color: #000;
}

#footer .set2 .bnrwebs:hover {
  text-decoration: none;
  opacity: 0.8;
}

#footer .set2 .footer__info {
  margin-bottom: 10vw;
}

#footer .set2 .footer__info li {
  line-height: 24px;
}

#footer .set2 .footer__info li .text__link {
  text-decoration-line: underline;
  text-underline-offset: 3px;
}

#footer .set2 .footer__info li+li {
  margin-top: 5vw;
}

#footer .set2 address {
  font-size: 12px;
  position: relative;
  letter-spacing: 0.02em;
  text-align: left;
}

@media screen and (min-width: 768px) {
  #footer {
    padding: 99px 0 80px;
  }

  #footer .set1 {
    padding-bottom: 20px;
  }

  #footer .set1 .footer__logo {
    width: 130px;
    margin: 0 auto 22px;
  }

  #footer .set1 .footer__name {
    margin-bottom: 35px;
  }

  #footer .set2 {
    padding-top: 74px;
  }

  #footer .set2 .wrap {
    padding-left: 0;
    padding-right: 0;
  }

  #footer .set2 .footer__info {
    width: 555px;
    margin-bottom: 0;
  }

  #footer .set2 .footer__info li {
    line-height: 24px;
  }

  #footer .set2 .footer__info li small {
    font-size: 16px;
  }

  #footer .set2 .footer__info li .text__link {
    text-decoration-line: underline;
    text-underline-offset: 3px;
  }

  #footer .set2 .footer__info li .text__link:hover {
    text-decoration: none;
  }

  #footer .set2 .footer__info li+li {
    margin-top: 20px;
  }

  #footer .set2 address {
    font-size: 13px;
    position: absolute;
    bottom: -12px;
    right: 0;
    letter-spacing: 0.05em;
  }
}

.footer__sns {
  position: relative;
  margin-bottom: 7vw;
}

.footer__sns #socialbuttons {
  margin-bottom: 20px;
}

.footer__sns #socialbuttons .social-facebook:hover {
  opacity: 0.6;
}

.footer__sns .link,
.footer__sns #pagetop {
  margin-left: 32px;
}

.footer__sns .link {
  margin-bottom: 15px;
  line-height: 1;
}

.footer__sns .link span {
  display: inline-block;
  position: relative;
  text-decoration-line: underline;
  text-underline-offset: 6px;
  transition: all 0.4s ease;
  font-size: 13px;
}

.footer__sns .link span::before {
  content: "";
  background: url("../img/shared/icon_copy.png") no-repeat center;
  background-size: 100% auto;
  width: 21px;
  height: 23px;
  position: absolute;
  top: 0;
  left: -25px;
}

.footer__sns .link span.copied,
.footer__sns .link span:hover {
  text-decoration: none;
}

.footer__sns #pagetop {
  display: inline-block;
  position: relative;
  margin-top: 10px;
  text-decoration-line: underline;
  text-underline-offset: 6px;
  letter-spacing: 0;
}

.footer__sns #pagetop::before {
  content: "";
  background: url("../img/shared/icon_pagetop.png") no-repeat center;
  background-size: 100% auto;
  width: 21px;
  height: 23px;
  position: absolute;
  top: 7px;
  left: -25px;
}

.footer__sns #pagetop:hover {
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  .footer__sns {
    width: 281px;
    position: absolute;
    top: 6px;
    right: 3px;
    margin-bottom: 0;
  }

  .footer__sns #socialbuttons {
    margin-bottom: 36px;
  }

  .footer__sns .link,
  .footer__sns #pagetop {
    margin-left: 28px;
  }

  .footer__sns .link {
    margin-bottom: 21px;
    line-height: 1;
    letter-spacing: 1.5px;
  }

  .footer__sns .link span {
    font-size: 13px;
    letter-spacing: 0.15em;
  }

  .footer__sns .link span::before {
    top: 1px;
    left: -30px;
  }

  .footer__sns #pagetop {
    margin-top: 3px;
  }

  .footer__sns #pagetop::before {
    top: 8px;
    left: -33px;
  }
}

.bnr__shared {
  position: relative;
  max-width: 315px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.bnr__shared .style-1 {
  display: block;
  position: relative;
  color: #000000;
  font-size: 15px;
  transition: all 0.4s ease;
  background-color: #fff;
  border: 1px solid #000;
  text-align: center;
  padding: 16px 0 19px;
  line-height: 1;
}

.bnr__shared .style-1:hover {
  text-decoration: none;
}

.bnr__shared .style-1::after {
  content: "";
  background: url("../img/shared/icon_arrow.png") no-repeat center;
  width: 13px;
  height: 10px;
  background-size: 100% auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 13px;
}

@media screen and (min-width: 768px) {
  .bnr__shared {
    margin-left: 0;
    margin-right: 0;
    max-width: 450px;
  }

  .bnr__shared .style-1 {
    font-size: 20px;
    padding: 26px 0 27px;
  }

  .bnr__shared .style-1::after {
    width: 17px;
    height: 13px;
    right: 40px;
  }

  .bnr__shared .style-1:hover {
    opacity: 0.5;
  }
}





.bnr__c {
  position: relative;
  z-index: 2;
}

.bnr__c:hover .bnr__shared {
  opacity: 0.6;
}

.bnr__c a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  font-size: 0;
}

.bnr__c .box {
  position: absolute;
  top: 156px;
  left: 0;
  right: 0;
  color: #fff;
  text-align: center;
  z-index: 2;
}

.bnr__c .box h2 {
  font-size: 4.36vw;
  margin-bottom: 2vw;
}

.bnr__c .box h2 span {
  font-size: 5.45vw;
}

.bnr__c .box h3 {
  font-size: 2.73vw;
  margin-bottom: 4vw;
}

.bnr__c .box .bnr__shared {
  max-width: 160px;
  margin: 0 auto;
  font-size: 14px;
  text-align: center;
  background-color: #fff;
  border-radius: 20px;
  color: #000;
  transition: opacity 0.3s ease;
  width: 30vw;
  line-height: 1;
  padding: 8px 0 10px;
}

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


  .bnr__c .box {
    top: 156px;
  }

  .bnr__c .box h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .bnr__c .box h2 span {
    font-size: 30px;
    letter-spacing: 6px;
  }

  .bnr__c .box h3 {
    font-size: 15px;
    margin-bottom: 23px;
  }

  .bnr__c .box .bnr__shared {
    width: 160px;
    font-size: 15px;
    padding: 10px 0 13px;
  }
}


.bnr__shared .bnr__popup {
  border: 1px solid var(--cl-blue);
  background: #fff;
  text-align: center;
  line-height: 1;
  padding: 18px 0;
  font-size: 17px;
  position: relative;
  color: #000000;
  display: block;
}

.bnr__shared .bnr__popup::after {
  content: "";
  background: url("../img/menu/icon_popup.png") no-repeat center;
  background-size: 100% auto;
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  right: 30px;
  transform: translateY(-50%);
}


@media screen and (min-width: 768px) {
  .bnr__shared .bnr__popup {
    padding: 26px 0;
    font-size: 20px;
  }

  .bnr__shared .bnr__popup::after {
    top: 50%;
    width: 22px;
    height: 22px;
    right: 65px;
  }


  .bnr__shared .bnr__popup:hover {
    text-decoration: none;
    opacity: 0.5;
  }

}



.remodal {
  max-width: 1200px;
  padding: 0;
  background: none;
}

.popup__body {
  max-width: 1200px;
  margin: 0 auto;
}

.popupMain {
  background: url("../img/menu/popup_bg.jpg");
  padding: 50px 50px 100px;
}

.popupMain h3 {
  padding: 5px 0;
  text-align: center;
  border-bottom: 1px solid #8f8f8f;
  font-size: 15px;
}

.pp__title {
  text-align: center;
  font-size: 30px;
  line-height: 1;
  margin-bottom: 40px;
  letter-spacing: 0.1em;
}

.pp__note {
  font-size: 15px;
  text-align: center;
  line-height: 1;
  margin-bottom: 50px;
  font-weight: 500;
}

.pp__row {
  display: grid;
  gap: 10px;
  max-width: 1000px;
  margin: 0 auto;
}

.pp__row.cols-1 {
  grid-template-columns: 1fr;
}

.pp__row.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.pp__row.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.pp__item {
  text-align: left;
  margin-bottom: 50px;
}

.pp__item dl {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed #c6c6c6;
  padding: 6px 0;
  margin: 0 auto;
  text-align: left;
  font-weight: 500;
  font-size: 15px;
}

.pp__item dl dd {
  text-align: right;
  margin-left: 0;
}

.pp__item:last-child {
  margin-bottom: 0;
}

.pp__col {
  width: 322px;
}
.pp__col2 {
  width: 430px;
}

.remodal-close-top {
  margin-bottom: 20px;
  position: sticky;
  top: 0;
  right: 0;
}

.remodal-close {
  position: relative;
  display: block;
  overflow: visible;
  width: 53px;
  height: 52px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
  color: #95979c;
  border: 0;
  outline: 0;
  background: rgba(0, 0, 0, 0);
  margin-left: auto;
}

.remodal-close.bottom {
  width: 117px;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 767px) {
  .popupMain {
    padding: 0 20px 50px;
  }

  .pp__title {
    font-size: 25px;
    margin-bottom: 30px;
  }

  .pp__note {
    margin-bottom: 20px;
  }

  .pp__row {
    display: block;
    gap: 0;
  }

  .pp__col {
    width: 100%;
    margin-bottom: 20px;
  }
    .pp__col2 {
    width: 100%;
    margin-bottom: 20px;
  }

  .remodal-close {
    width: 38px;
    height: 38px;
  }

  .pp__item {
    margin-bottom: 30px;
  }

  .pp__item:last-child {
    margin-bottom: 0;
  }

  .remodal-close.bottom {
    width: 95px;
  }
}


@media screen and (min-width: 768px) and (max-width: 1399px) {
  #footer .set2 .wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  #footer .set2 address {
    right: 20px;
  }

  .footer__sns {
    width: 310px;
  }

  .footer__sns .link span {
    letter-spacing: 0.05em;
  }
}