@charset "UTF-8";

/*--------------------------------------------------------------------------
 <Font>
  font-family: 'Cinzel', serif;
  font-family: 'Raleway', sans-serif;
  font-family: 'Bebas Neue', cursive;
--------------------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  letter-spacing: 0.05em;
}

html,
body {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
}

body {
  font-family: 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', Osaka, 'メイリオ', 'Meiryo', 'MS UI Gothic', sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 1.4rem;
  color: #505050;
  line-height: 2.2;
}

a {
  text-decoration: none;
  color: #505050;
}

main {
  width: 100%;
  height: auto;
  border: 5px solid #e57a91;
  border-bottom: none;
  box-sizing: border-box;
  position: relative;
  overflow-x: hidden;
}

h1 {
  position: absolute;
  top: 70px;
  right: 10%;
  font-size: 1rem;
  line-height: 1.8;
  font-family: 'Noto Sans JP', sans-serif;
  z-index: 5;
}

h1 i {
  margin-right: 3px;
}

#tel-pc {
  position: fixed;
  z-index: 3;
  top: 70px;
  right: -150px;
  width: 200px;
  height: 45px;
  background: #e57a91;
  border-top-left-radius: 22.5px;
  border-bottom-left-radius: 22.5px;
  transition: all .5s ease-out;
  transform: translate(0, 0);
}

#line-pc {
  position: fixed;
  z-index: 3;
  top: 125px;
  right: -150px;
  width: 200px;
  height: 45px;
  background: #e57a91;
  border-top-left-radius: 22.5px;
  border-bottom-left-radius: 22.5px;
  transition: all .5s ease-out;
  transform: translate(0, 0);
}

.tel-pc {
  transform: translate(-150px, 0) !important;
}

.line-pc {
  transform: translate(-150px, 0) !important;
}

#line-pc:hover,
#tel-pc:hover {
  transform: translate(-150px, 0)
}

#line-pc dl,
#tel-pc dl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 15px;
}

#line-pc dt,
#tel-pc dt {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 10%;
  min-width: 30px;
  line-height: 1;
}

#line-pc dt img,
#tel-pc dt img {
  width: 22px;
  height: auto;
}

#line-pc dd,
#tel-pc dd {
  width: 75%;
  line-height: 1.5;
}

#line-pc dd a,
#tel-pc dd a {
  color: #fff;
  text-decoration: underline;
}

.tel-pc-text {
  display: block;
  font-size: 1.0rem;
  color: #fff;
}

#mobile-nav {
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 999;
  width: 100%;
  height: 56px;
  color: #fff;
  background: #e57a91;
  box-sizing: border-box;
  padding-bottom: env(safe-area-inset-bottom);
}

#mobile-nav ul {
  width: 100%;
  height: 56px;
  box-sizing: border-box;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

#mobile-nav li {
  width: 25%;
  height: 56px;
  line-height: 2;
}

#mobile-nav li+li {
  border-left: 1px dashed #fff;
}

#mobile-nav li+li:first-child {
  border-left: none;
}

#mobile-nav li a {
  color: #fff;
  font-size: 1rem;
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#mobile-nav li i {
  font-size: 2rem;
}

/*--------------------------------------------------------------------------
  loading
--------------------------------------------------------------------------*/
#loader {
  opacity: 1;
  position: fixed;
  z-index: 100000;
  width: 100%;
  height: 100%;
  background: linear-gradient(60deg, #FFDDBA, #e57a91);
  top: 0;
  left: 0;
}

.loader-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loader-container img {
  width: 60px;
  height: auto;
}

.loader-container img:nth-of-type(2) {
  margin-top: 10px;
  width: 120px;
  height: auto;
}

/*--------------------------------------------------------------------------
  header
--------------------------------------------------------------------------*/
header {
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 1);
}

#header01 {
  transition: 1s cubic-bezier(.4, 0, .2, 1);
  border-top: 5px solid #e57a91;
  border-left: 5px solid #e57a91;
  border-right: 5px solid #e57a91;
  box-sizing: border-box;
}

.head-animation {
  transform: translateY(-100%);
}

.scroll {
  background: #fff;
  transition: 1s cubic-bezier(.4, 0, .2, 1);
}

.scroll nav a {
  color: #545454;
}

#global-nav {
  width: 90%;
  max-width: 1280px;
  height: 60px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.global-nav-logo {
  width: 250px;
  height: auto;
}

.global-nav-logo img {
  width: auto;
  height: 50px;
  display: block;
}

nav {
  width: calc(100% - 430px);
  height: 60px;
}

nav a {
  color: #545454;
}

nav ul {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  list-style: none;
  font-family: 'Cinzel', serif;
  box-sizing: border-box;
}

nav li {
  line-height: 1.5;
  padding: 0 10px;
  text-align: center;
}

nav li img {
  display: block;
  width: auto;
  height: 40px;
}

.nav-text {
  display: block;
  font-size: 1rem;
  text-align: center;
  color: #e57a91;
}

.scroll .nav-text {
  color: #e57a91;
}

.global-nav-info {
  width: 180px;
  height: 60px;
  margin-left: 10px;
  position: relative;
}

.global-nav-info::before {
  display: block;
  content: '';
  width: 0.75px;
  height: 60%;
  position: absolute;
  top: 20%;
  left: -5px;
  background: #eee;
}

.global-nav-info ul {
  height: 60px;
  display: flex;
  align-items: center;
  list-style: none;
}

.global-nav-info ul li {
  line-height: 1.5;
  padding: 0 5px;
}

.global-nav-info ul li img {
  width: auto;
  height: 20px;
  display: block;
  margin: 0 auto;
}

.global-nav-info-text {
  display: block;
  color: #e57a91;
  margin: 0 auto;
  font-size: .6rem;
}

/*--------------------------------------------------------------------------
  スマホ　トグル
--------------------------------------------------------------------------*/
#nav-toggle {
  display: none;
  position: fixed;
  top: 0;
  right: 5%;
  width: 36px;
  height: 60px;
  z-index: 1001;
}

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}

.menu-trigger {
  position: relative;
  width: 36px;
  height: 60px;
}

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #999;
  border-radius: 4px;
}

.menu-trigger span:nth-of-type(1) {
  top: 20px;
}

.menu-trigger span:nth-of-type(2) {
  position: absolute;
  right: 0;
  width: 70%;
  top: 30px;
}

.menu-trigger span:nth-of-type(3) {
  top: 40px;
}

#nav-toggle.active span:nth-of-type(1) {
  top: 5px;
  -webkit-transform: translateY(20px) rotate(-45deg);
  transform: translateY(20px) rotate(-45deg);
}

#nav-toggle.active span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  -webkit-animation: active-menu-bar .8s forwards;
  animation: active-menu-bar02 .8s forwards;
}

@-webkit-keyframes active-menu-bar {
  100% {
    height: 0;
  }
}

@keyframes active-menu-bar {
  100% {
    height: 0;
  }
}

#nav-toggle.active span:nth-of-type(3) {
  top: 45px;
  -webkit-transform: translateY(-20px) rotate(45deg);
  transform: translateY(-20px) rotate(45deg);
}

/*--------------------------------------------------------------------------
 スマホメニュー
--------------------------------------------------------------------------*/
#mobile-nav {
  display: none;
}


/*--------------------------------------------------------------------------
  footer
--------------------------------------------------------------------------*/
footer {
  width: 100%;
  height: auto;
  background: #e57a91;
  background-image: url("../img/concrete-wall.png");
  background-repeat: repeat;
  border-top: none;
  box-sizing: border-box;
  overflow: hidden;
}

footer a {
  color: #fff;
}

.footer-nav-container {
  width: 100%;
  max-width: 1280px;
  height: auto;
  margin: 0 auto;
  padding: 50px 0;
  display: flex;
  justify-content: space-around;
}

.footer-nav-info {
  width: 30%;
  min-width: 375px;
}

.footer-nav-logo,
.footer-nav-logo a,
.footer-nav-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-nav-info h2 {
  font-size: 1rem;
  line-height: 1.75;
  color: #fff;
  padding: 0 20px;
  font-weight: normal;
  box-sizing: border-box;
}

.footer-nav-info-link {
  width: 100%;
  height: auto;
}

.footer-nav-info a {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 8px;
}

.footer-nav-info a img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-nav-address {
  width: 30%;
  min-width: 375px;
  padding-top: 10px;
  list-style: none;
  font-size: 1.2rem;
  color: #fff;
  line-height: 2;
}

.footer-nav-address i {
  margin-right: 3px;
}

.footer-nav-address img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-nav-address figcaption {
  font-size: 1rem;
  line-height: 1.5;
}

.footer-nav-text {
  display: inline-block;
  width: 60px;
  text-align: center;
  border: 1px solid #fff;
  margin-right: 5px;
  color: #fff;
  line-height: 1.5;
}

.footer-nav-sns {
  list-style: none;
  display: flex;
  padding-top: 5px;
  padding: 10px;
  box-sizing: border-box;
}

.footer-nav-sns li {
  padding: 5px;
}

.footer-nav-sns li:last-child a {
  display: block;
  width: auto;
  height: 26px;
  line-height: 26px;
  padding: 0 20px;
  border: 1px solid #fff;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 4px;
}

.footer-nav-sns li:last-child a:hover {
  color: #e57a91;
  background: #fff;
  transition: .5s;
}

.footer-nav-sns li img {
  width: 26px;
  height: auto;
}

.footer-nav-list {
  width: 20%;
  height: auto;
  font-size: 1.2rem;
  line-height: 1.75;
  list-style: none;
  margin-top: 10px;
}

.footer-nav-list i {
  margin-right: 3px;
}

.footer-nav-list ul {
  list-style: none;
}

.footer-nav-list ul li {
  padding-left: 1em;
}

.footer-nav-list ul li:before {
  content: " • ";
  color: #fff;
}

.footer-nav-list-sp {
  display: none;
}

.corporate {
  background: rgba(0, 0, 0, .2);
  padding: 5px 0;
  text-align: center;
  font-size: 1.2rem;
}

.underline-f {
  margin-left: 3px;
  border-bottom: 1px solid #fff;
}

.copyright {
  display: block;
  width: 100%;
  height: auto;
  text-align: center;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: .8rem;
  background: #C4687C;
}

@media screen and (max-width: 1400px) {
  #global-nav {
    max-width: 90%;
    min-width: 990px;
  }

  nav {
    width: calc(100% - 230px);
    height: 60px;
  }

  .global-nav-info {
    display: none;
  }
}


@media screen and (max-width: 1024px) {
  .head-animation {
    display: none;
  }

  header {
    border-left: 5px solid #e57a91;
    border-right: 5px solid #e57a91;
    border-top: 5px solid #e57a91;
    box-sizing: border-box;
    z-index: 1001;
  }

  .global-nav-logo {
    margin-left: 20px;
  }

  nav {
    display: none;
    width: 100%;
    height: auto;
  }

  #nav-toggle {
    display: block;
  }

  /*--------------------------------------------------------------------------
    toggle オーバーレイ (896px以下)
  --------------------------------------------------------------------------*/
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    flex-direction: column;
    z-index: 1000;
    width: 100%;
    min-width: 100%;
    height: auto;
    padding: 80px 20px 80px 20px !important;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transition: .3s linear;
    animation: .3s linear overlay-close;
  }

  .overlay.is-open {
    width: 100%;
    height: 100vh;
    opacity: 1;
    visibility: visible;
    animation: .3s linear overlay-open;
    background: rgba(229, 122, 145, 1);
  }

  @keyframes overlay-open {
    0% {
      transform: scaleY(0);
      transform-origin: bottom;
    }

    100% {
      transform: scaleY(1);
      transform-origin: bottom;
    }
  }

  @keyframes overlay-close {
    0% {
      transform: scaleY(1);
      transform-origin: top;
    }

    100% {
      transform: scaleY(0);
      transform-origin: top;
    }
  }

  .footer-nav-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-nav-list {
    display: block;
    overflow-y: scroll;
  }

  .footer-nav-container {
    width: 90%;
    max-width: 90%;
    margin: 0 auto;
  }

  .footer-nav-info {
    max-width: 90%;
  }

  .footer-nav-logo {
    width: 90%;
    margin: 0 auto;
  }

  .footer-nav-sns {
    justify-content: center;
  }

  .footer-nav-list {
    width: 100%;
    max-width: 375px;
    margin: 0 auto;
    padding-top: 20px;

    font-size: 1.4rem;
  }

  .footer-nav-list li {
    border-top: 1px dashed #fff;
    padding: 8px 0;
  }

  .footer-nav-list li a {
    display: inline-block;
    width: 90%;
    height: 100%;
  }

  .footer-nav-list-1 {
    border-top: none !important;
  }

  .footer-nav-list li ul {
    margin-top: 8px;
  }

  .footer-nav-list li ul li:last-child {
    padding-bottom: 0;
  }

  .footer-nav-list:last-child {
    border-bottom: 1px solid #fff;
  }

  .footer-nav-address {
    display: none;
  }

  .footer-nav-list-sp {
    display: block;
    width: 100%;
    height: auto;
    border-top: none !important;
    display: flex;
  }

  .footer-nav-list-sp a {
    display: block;
    width: 50%;
  }

  .footer-nav-list-sp a img {
    width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 896px) {}

@media screen and (max-width: 768px) {
  .footer-nav-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-nav-list {
    display: block;
    overflow-y: scroll;
  }

  .footer-nav-container {
    width: 90%;
    max-width: 90%;
    margin: 0 auto;
  }

  .footer-nav-info {
    max-width: 90%;
  }

  .footer-nav-info h2 {
    text-align: center;
  }

  .footer-nav-info h2 img {
    width: 90%;
  }

  .footer-nav-sns {
    justify-content: center;
  }

  .footer-nav-list {
    width: 100%;
    max-width: 375px;
    margin: 0 auto;
    padding-top: 20px;

    font-size: 1.4rem;
  }

  .footer-nav-list li {
    border-top: 1px dashed #fff;
    padding: 8px 0;
  }

  .footer-nav-list-1 {
    border-top: none !important;
  }

  .footer-nav-list li ul {
    margin-top: 8px;
  }

  .footer-nav-list li ul li:last-child {
    padding-bottom: 0;
  }

  .footer-nav-list:last-child {
    border-bottom: 1px solid #fff;
  }

  .footer-nav-address {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    position: absolute;
    top: calc(70vh + 10px);
    right: initial;
    left: 5%;
    width: 90%;
  }

  footer {
    padding-bottom: 60px;
  }

  .footer-nav-logo a img {
    margin: 0 auto;
  }

  .footer-nav-info-link {
    width: 90%;
    height: auto;
    margin: 0 auto;
  }

  .footer-nav-list-sp {
    display: block;
  }

  .footer-nav-list-sp-in {
    width: 100%;
    height: auto;
  }

  .footer-nav-list-sp-in a {
    width: 100% !important;
  }
}