html:not(.responsive) {
  min-width: 1000px;
  /* viewport */
}

* {
  box-sizing: border-box;
}

/*=============================================
* body
*=============================================*/
body {
  color: #0D2142;
  font-family: 'Noto Sans JP';
  font-size: 4vw;
  line-height: 8vw;
  font-weight: 500;
  letter-spacing: 0;
  background: #fff;
  min-width: inherit;
  min-height: inherit;
  max-height: 100%;
}

@media only screen and (min-width: 768px) {
  body {
    font-size: 20px;
    line-height: 40px;
    min-width: 1000px;
    /* viewport */
  }
}

@media only screen and (max-width: 767px) {
  :root {
    --app-height: 100%;
  }
  html.open,
  body.menu-open {
    padding: 0;
    margin: 0;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    height: var(--app-height);
  }
}

/*=============================================
* <main>
*=============================================*/
main {
  clear: both;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.wrap {
  max-width: 1200px;
  width: 100%;
}

.bg-light {
  background: #F5F6F7;
}

.bg-dark {
  background: #0D2142;
}

.bg-orange {
  background: #E53F14;
}

.bg-navi {
  background: #1A3B7D;
}

.txt-shadow {
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.bxs {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

img.wf {
  width: 100%;
  height: auto;
}

a:hover {
  text-decoration: none;
}

a, img {
  transition: 0.3s all ease-in-out;
}

/*=============================================
* <header>
*=============================================*/
body.nav--opened,
body.nav--opened *,
body.nav--opened *:hover,
body.nav--opened *:focus,
body.nav--opened *:active {
  /*    cursor: none !important;*/
  touch-action: none !important;
  pointer-events: none !important;
}

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

.nav--opened {
  overflow: hidden !important;
  -webkit-overflow-scrolling: touch !important;
  touch-action: none !important;
  pointer-events: none !important;
}

.nav--opened #menu-toggle {
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
  overflow: auto;
}

.nav--opened #pagetop{
  opacity: 0;
  visibility: hidden;
}

header {
  padding-top: 50px;
}

@media only screen and (min-width: 768px) {
  header {
    padding-top: 100px;
  }
}

.nav-fixed {
  height: 50px;
  background: #fff;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 9;
}

.nav-fixed .logo {
  width: 215px;
  margin: 8px 0 0 4vw;
}

@media only screen and (min-width: 768px) {
  .nav-fixed {
    height: 100px;
  }
  .nav-fixed img {
    width: 100%;
    height: auto;
  }
  .nav-fixed .logo {
    width: 17vw;
    margin: 0 0 0 1.8vw;
  }
  .nav-fixed nav {
    font-size: 1vw;
    line-height: 2vw;
    font-weight: 700;
  }
  .nav-fixed nav li + li {
    margin-left: 1.1vw;
  }
  .nav-fixed nav a {
    border-bottom: 1px solid transparent;
    padding-bottom: 0.2vw;
  }
  .nav-fixed nav a.active,
  .nav-fixed nav a:hover {
    color: #E13714;
    border-color: #E13714;
  }
  .nav-fixed .contact-group {
    width: 23vw;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .nav-fixed .contact-group .tel {
    width: 12vw;
    margin-right: 0.6vw;
  }
  .nav-fixed .contact-group .tel small {
    font-size: 0.8vw;
    letter-spacing: 0.05em;
    line-height: 1vw;
    margin-bottom: 0.3vw;
  }
  .nav-fixed .contact-group .tel span {
    font-size: 1.3vw;
    line-height: 1.5vw;
    font-weight: 700;
    letter-spacing: 0.05em;
  }
  .nav-fixed .contact-group .tel span img {
    width: 1.9vw;
    margin: -0.3vw 0.3vw 0 0;
  }
  .nav-fixed .contact-group .reserve {
    width: 10.4vw;
  }
  .nav-fixed .contact-group .reserve a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100px;
    background: #E13714;
    color: #fff;
    text-align: center;
  }
  .nav-fixed .contact-group .reserve a span.db {
    display: block;
    font-size: 0.9vw;
    letter-spacing: 0.05em;
    font-weight: 700;
    line-height: 1vw;
    padding-top: 0.5vw;
  }
  .nav-fixed .contact-group .reserve a span.big {
    font-size: 1.4vw;
  }
  .nav-fixed .contact-group .reserve a small {
    font-size: 0.7vw;
    font-weight: 400;
    letter-spacing: 0;
    margin-top: 0.2vw;
  }
  .nav-fixed .contact-group .reserve a:hover {
    opacity: 0.8;
  }
}

@media only screen and (min-width: 1900px) {
  .nav-fixed .logo {
    width: 327;
    margin: 0 0 0 34px;
  }
  .nav-fixed nav {
    font-size: 20px;
    line-height: 30px;
  }
  .nav-fixed nav li + li {
    margin-left: 23px;
  }
  .nav-fixed nav a {
    padding-bottom: 5px;
  }
  .nav-fixed .contact-group {
    width: 395px;
  }
  .nav-fixed .contact-group .tel {
    width: 221px;
    margin-right: 0;
    padding-right: 12px;
  }
  .nav-fixed .contact-group .tel small {
    font-size: 15px;
    line-height: 18px;
    margin-bottom: 0px;
  }
  .nav-fixed .contact-group .tel span {
    font-size: 22px;
    line-height: 36px;
  }
  .nav-fixed .contact-group .tel span img {
    width: 36px;
    margin: -2px 5px 0 0;
  }
  .nav-fixed .contact-group .reserve {
    width: 174px;
  }
  .nav-fixed .contact-group .reserve a span.db {
    font-size: 16px;
    line-height: 30px;
    padding-top: 5px;
  }
  .nav-fixed .contact-group .reserve a span.big {
    font-size: 24px;
  }
  .nav-fixed .contact-group .reserve a small {
    font-size: 12px;
    line-height: 18px;
    margin-top: 0;
  }
}

.menu-toggle {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  padding: 50px 0 100px;
  transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  z-index: 9;
  background: #fff;
}

.menu-toggle ul {
  font-size: 20px;
  line-height: 60px;
}

.menu-toggle ul a {
  border-bottom: 1px solid transparent;
}

.menu-toggle ul .active {
  color: #E53F14;
  border-color: #E53F14;
}

/*=============================================
* <section>
*=============================================*/
.object-cover {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: 50%;
}

/*=============================================
* <footer>
*=============================================*/
/* footer {
  background: #F5F6F7;
  padding: 15vw 0 100px;
}

footer .logo {
  width: 70vw;
  margin: 0 auto 8vw;
}

footer .info {
  margin-bottom: 8vw;
}

footer .info dl {
  width: 100%;
  display: table;
}

footer .info dl dt {
  width: 50px;
  display: table-cell;
}

footer .info dl dd {
  display: table-cell;
}

footer nav {
  margin-bottom: 6vw;
}

footer nav ul {
  flex-wrap: wrap;
}

footer nav ul li {
  margin: 0 10px;
}

footer .cookie {
  text-align: center;
  font-size: 12px;
  line-height: 24px;
  font-weight: 400;
}

footer address {
  text-align: center;
  font-size: 12px;
  line-height: 24px;
}

@media screen and (min-width: 768px) {
  footer {
    padding: 100px 0 50px;
  }
  footer .logo {
    width: 327px;
    margin: 0 auto 50px;
  }
  footer .logo img {
    width: 100%;
    height: auto;
  }
  footer .info {
    margin-bottom: 80px;
    text-align: center;
  }
  footer .info dl {
    display: flex;
    justify-content: center;
  }
  footer .info dl dt {
    width: auto;
    display: block;
  }
  footer .info dl dd {
    display: block;
    margin-left: 20px;
  }
  footer nav {
    margin-bottom: 50px;
  }
  footer nav ul li a {
    border-bottom: 1px solid transparent;
  }
  footer nav ul li a:hover {
    color: #E13714;
    border-color: #E13714;
  }
  footer .cookie {
    font-size: 14px;
    line-height: 30px;
  }
  footer .cookie a:hover {
    text-decoration: underline;
  }
  footer address {
    font-size: 14px;
    line-height: 30px;
  }
} */

.h2-title {
  font-size: 6vw;
  color: #0D2142;
  line-height: 1.2;
  font-weight: 900;
}
.h2-title span {
  display: block;
  padding: 0 0 10px;
  border-bottom: 5px solid #E13714;
}
@media screen and (min-width: 768px) {
  .h2-title {
    font-size: 48px;
    line-height: 58px;
  }
  .h2-title span {
    display: inline-block;
    min-width: 694px;
  }
}
#footer {
  background: #fff;
  text-align: center;
  padding: 70px 20px 130px;
}
#footer .copyright {
  text-align: center;
  line-height: 1.3;
  font-size: 12px;
  margin: 50px 0 0;
}
#footer .tit {
  color: #EB6100;
  position: relative;
  z-index: 2;
  margin: 0 0 -30px;
  font-size: 16px;
}
#footer .logo {
  margin: 0 auto;
  width: 356px;
  max-width: calc(100% - 20px);
}
#footer .btn {
  width: 332px;
  max-width: calc(100% - 20px);
  margin: 0 auto;
}
#footer .btn a {
  display: block;
  text-align: center;
  color: #fff;
  background: #EB6100;
  text-decoration: none;
  border-radius: 15px;
  font-size: 16px;
  line-height: 1.5;
  padding: 7px 0 8px;
  transition: all 0.3s;
}
#footer .btn a:hover {
  opacity: 0.8;
}
#footer h2 {
  margin: 0 0 39px;
}
#footer .info {
  width: 694px;
  max-width: 100%;
  margin: 0 auto;
}
#footer .info dl {
  display: flex;
  padding: 0 0 10px 20px;
  font-size: 12px;
  line-height: 1.3;
  text-align: left;
  border-bottom: 1px solid;
}
#footer .info dl + dl {
  margin-top: 20px;
}
#footer .info dl dt {
  font-weight: 700;
  color: #0D2142;
  width: 90px;
}
#footer .info dl dd {
  width: calc(100% - 90px);
}
@media screen and (min-width: 768px) {
  #footer {
    padding: 111px 0 13px;
  }
  #footer .copyright {
    margin: 118px 0 0;
  }
  #footer .info {
    max-width: calc(100% - 40px);
  }
  #footer .info dl {
    padding: 0 0 10px 31px;
  }
  #footer .info dl + dl {
    margin-top: 20px;
  }
  #footer .info dl dt {
    width: 155px;
  }
  #footer .info dl dd {
    width: calc(100% - 155px);
  }
  #footer .info dl dd a:hover{
    text-decoration: underline;
  }
}

#ft-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  text-align: center;
  width: 100%;
  height: 68px;
  z-index: 10;
  background: #0D2142;
  padding: 10px;
}

#ft-fixed li {
  width: 33.33%;
}

#ft-fixed li a {
  width: 100%;
  height: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #09254B;
  background: #fff;
  line-height: 1.2;
  white-space: nowrap;
  font-size: 15px;
}
/* 
#ft-fixed li a span {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0px;
}

#ft-fixed li a small {
  font-size: 11px;
  padding-left: 10px;
}

#ft-fixed li a img {
  width: 23px;
  margin-top: -2px;
} */

#ft-fixed li a:hover img {
  opacity: 1 !important;
}


/* 
#ft-fixed li.reserve a > span {
  font-size: 18px;
}

#ft-fixed li.reserve small {
  font-size: 10px;
  font-weight: 400;
  padding-left: 0;
} */

#ft-fixed li.reserve a {
  background: #E13714;
  color: #fff;
}
#ft-fixed li.line a {
  background: #06C755;
  color: #fff;
}
#ft-fixed li.tel img{
  width: 20px;
  margin: -2px 4px 0;
}
#ft-fixed li.reserve img{
  width: 20px;
  margin-right: 2px;
}
#ft-fixed li.line img{
  width: 26px;
}
@media screen and (max-width: 370px) {
  #ft-fixed li a{
    font-size: 13px;
  }
}

.db {
  display: block;
}

.df {
  display: flex;
}

.jcfs {
  justify-content: flex-start;
}

.jcc {
  justify-content: center;
}

.jcsb {
  justify-content: space-between;
}

.jcfe {
  justify-content: flex-end;
}

.aifs {
  align-items: flex-start;
}

.aic {
  align-items: center;
}

.aife {
  align-items: flex-end;
}

.sp {
  display: block;
}

.pc {
  display: none;
}
@keyframes nyainy-btn {
  0% {
    left: -100%;
  }
  25% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
  .df-pc {
    display: flex;
  }
}

@media only screen and (min-device-width: 375px) and (min-device-height: 812px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) {
  footer {
    padding-bottom: calc(env(safe-area-inset-bottom) + 100px);
  }
  #sec8 {
    padding-bottom: calc(env(safe-area-inset-bottom) + 100px);
  }
  #ft-fixed:after {
    content: "";
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 36px;
    background: #0D2142;
    z-index: -1;
  }
  #ft-fixed {
    bottom: calc(env(safe-area-inset-bottom) - 0px);
  }
  #pagetop {
    bottom: calc(env(safe-area-inset-bottom) + 60px);
  }
}

/* iPhone XR */
@media only screen and (min-device-width: 414px) and (min-device-height: 896px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
  footer {
    padding-bottom: calc(env(safe-area-inset-bottom) + 100px);
  }
  #sec8 {
    padding-bottom: calc(env(safe-area-inset-bottom) + 100px);
  }
  #ft-fixed:after {
    content: "";
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 36px;
    background: #0D2142;
    z-index: -1;
  }
  #ft-fixed {
    bottom: calc(env(safe-area-inset-bottom) - 0px);
  }
  #pagetop {
    bottom: calc(env(safe-area-inset-bottom) + 80px);
  }
}

/* iPhone 11 */
@media only screen and (-webkit-min-device-pixel-ratio: 3), only screen and (min--moz-device-pixel-ratio: 3), only screen and (-o-min-device-pixel-ratio: 3 / 1), only screen and (min-device-pixel-ratio: 3), only screen and (min-resolution: 458dpi), only screen and (min-resolution: 3dppx) {
  footer {
    padding-bottom: calc(env(safe-area-inset-bottom) + 100px);
  }
  #sec8 {
    padding-bottom: calc(env(safe-area-inset-bottom) + 100px);
  }
  #ft-fixed:after {
    content: "";
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 36px;
    background: #0D2142;
    z-index: -1;
  }
  #ft-fixed {
    bottom: calc(env(safe-area-inset-bottom) - 0px);
  }
  #pagetop {
    bottom: calc(env(safe-area-inset-bottom) + 60px);
  }
}

@media only screen and (min-width: 768px) {
  .nav--opened #ft-fixed:after,
  #ft-fixed:after {
    display: none;
  }
}
