@charset "UTF-8";
/*
 * 変数
 */
/*
 * ブレークポイント
 */
/*
 * 480pxより広くなったら改行なくす
 */
@media (min-width: 610px) {
  .br_sp {
    display: none;
  }
}

/*
 * 780pxより広くなったら改行なくす
 */
@media (min-width: 950px) {
  .br_tab {
    display: none;
  }
}

/*
 * 780pxより狭くなったら改行なくす
 */
@media (max-width: 950px) {
  .pc_br {
    display: none;
  }
}

/*
 * トランジション
 */
/*
 * ボタン
 */
/* html5doctor.com Reset Stylesheet v1.6.1 Last Updated: 2010-09-17 Author: Richard Clark - http://richclarkdesign.com Twitter: @rich_clark */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var,
b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header,
hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

ul, ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  text-decoration: none;
  color: inherit;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: separate;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

img {
  vertical-align: bottom;
  line-height: 1;
}

button {
  line-height: 1;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  appearance: none;
}

input[type=submit],
input[type=button],
input[type=reset],
input[type=search],
select {
  -webkit-appearance: none;
  border-radius: 0;
}

button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
}
textarea {
  resize: vertical;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

:root {
  --z-index-header: 100;
  --z-index-modal: 200;
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, "Font Awesome 6 Free", sans-serif;
  color: #373737;
}

:focus:not(:focus-visible) {
  outline: 0;
  /* キーボード操作"以外"でフォーカスされた際はoutlineを消す */
}

.wrapper {
  width: 100%;
  color: #373737;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  font-size: 17px;
  font-feature-settings: "palt";
  letter-spacing: 0.5px;
  overflow: hidden;
}
@media (max-width: 950px) {
  .wrapper {
    font-size: 16px;
  }
}

span.aks {
  display: inline-block;
}

.page-wrapp {
  width: 90%;
  margin: 0 auto;
  max-width: 1000px;
  margin-top: 10%;
}
@media (max-width: 950px) {
  .page-wrapp {
    margin-bottom: 12%;
  }
}

/* Webkit */
::-webkit-input-placeholder {
  color: #a0a0a0;
  opacity: 1;
}

/* Firefox 18 以前 */
:-moz-placeholder {
  color: #a0a0a0;
}

/* Firefox 19 以降 */
::-moz-placeholder {
  color: #a0a0a0;
  opacity: 1;
}

/* IE 10 以降 */
:-ms-input-placeholder {
  color: #a0a0a0;
}

.grecaptcha-badge {
  visibility: hidden;
}

#page-top, #page-top-sp {
  background: #f65f53;
  position: fixed;
  /*固定*/
  cursor: pointer;
  display: block;
  width: 50px;
  height: 50px;
  text-align: center;
  right: 37px;
  border-radius: 50%;
  transition: all 0.5s cubic-bezier(0.37, 0.16, 0.12, 1);
  transition-duration: 0.5s;
  transition-property: transform, box-shadow;
  z-index: 2;
  opacity: 0;
}
#page-top .fa-angle-up, #page-top-sp .fa-angle-up {
  font-size: 1.5em;
  color: white;
}
@media (max-width: 610px) {
  #page-top, #page-top-sp {
    display: none;
  }
}
#page-top:hover, #page-top-sp:hover {
  transform: translate(0, -10px);
  box-shadow: 0 4px 10px 2px rgba(201, 165, 165, 0.68);
}

@media (max-width: 610px) {
  #page-top-sp {
    display: inline-block;
    position: absolute;
    opacity: 1;
    top: -14px;
    right: 0;
    left: 0;
    margin: auto;
    z-index: 0;
  }
}

.btnFOut {
  animation-name: FOut;
  animation-duration: 0.3s;
  animation-timing-function: ease-in;
  animation-iteration-count: 1;
  visibility: hidden;
}

@keyframes FOut {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
.btnFIn {
  animation-name: FIn;
  animation-duration: 0.3s;
  animation-timing-function: ease-in;
  animation-iteration-count: 1;
}

@keyframes FIn {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
.footer {
  background: #f65f53;
  color: white;
  padding: 4% 0% 1% 0%;
  position: relative;
}
.footer .copy {
  text-align: center;
  font-size: 13px;
  margin-top: 1%;
}
@media (max-width: 610px) {
  .footer .copy {
    font-size: 11px;
    margin-top: 2%;
  }
}
@media (max-width: 610px) {
  .footer {
    padding: 13% 0% 3% 0%;
    padding-bottom: 50%;
  }
}

.f__header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
}
.f__header-left {
  width: 25%;
}
.f__header-left img {
  width: 100%;
}
@media (max-width: 950px) {
  .f__header-left {
    width: 47%;
  }
}
@media (max-width: 610px) {
  .f__header-left {
    width: 77%;
  }
}
.f__header-menu {
  width: 35%;
  display: flex;
  justify-content: center;
}
.f__header-menu .mainmenu {
  padding-right: 6%;
  margin-right: 8%;
  border-right: 1px solid;
}
.f__header-menu .mainmenu__item {
  font-size: 14px;
}
.f__header-menu .mainmenu__item a {
  line-height: 2em;
  letter-spacing: 0.07rem;
  transition: opacity 0.5s;
}
.f__header-menu .mainmenu__item a:hover {
  opacity: 0.8;
}
@media (max-width: 610px) {
  .f__header-menu .mainmenu__item {
    font-size: 15px;
  }
}
@media (max-width: 610px) {
  .f__header-menu .mainmenu {
    margin-right: 6%;
  }
}
.f__header-menu .submenu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.f__header-menu .submenu p {
  opacity: 0.8;
}
.f__header-menu .submenu__item {
  font-size: 13px;
}
.f__header-menu .submenu__item a {
  line-height: 2em;
  letter-spacing: 0.07rem;
  transition: opacity 0.5s;
}
.f__header-menu .submenu__item a:hover {
  opacity: 0.8;
}
@media (max-width: 610px) {
  .f__header-menu .submenu__item {
    font-size: 14px;
  }
}
@media (max-width: 950px) {
  .f__header-menu {
    width: 50%;
  }
}
@media (max-width: 610px) {
  .f__header-menu {
    width: 100%;
    margin: 5% 0;
  }
}
.f__header-text {
  width: 37%;
}
@media (max-width: 950px) {
  .f__header-text {
    width: 66%;
    max-width: 400px;
  }
}
@media (max-width: 610px) {
  .f__header-text {
    width: 100%;
  }
}
@media (max-width: 950px) {
  .f__header {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 610px) {
  .f__header {
    flex-direction: column;
  }
}

.f__tel {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.f__tel-top {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  margin-bottom: 5px;
}
.f__tel-top .srv {
  border: 1px solid white;
  width: 43px;
  height: 43px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  margin-right: 10px;
}
@media (max-width: 610px) {
  .f__tel-top .srv {
    width: 35px;
    height: 35px;
    margin-right: 5px;
  }
}
.f__tel-num {
  width: 70%;
}
@media (max-width: 610px) {
  .f__tel-num {
    width: 90%;
  }
}
.f__tel .header-tel-num {
  text-align: center;
  padding-bottom: 5px;
}
.f__tel .header-tel-num p {
  line-height: 1;
  font-size: max(31px, min(3vw, 44px));
  font-size: clamp(31px, 3vw, 44px);
}
@media (max-width: 610px) {
  .f__tel .header-tel-num p {
    font-size: max(38px, min(3vw, 44px));
    font-size: clamp(38px, 3vw, 44px);
  }
}
.f__tel .header-tel-num .fa-phone {
  font-size: max(30px, min(2.5vw, 40px));
  font-size: clamp(30px, 2.5vw, 40px);
}
.f__tel-bottom {
  border-bottom: 1px dashed white;
  padding: 4px 0;
  text-align: center;
}
.f__tel-bottom p {
  display: inline-block;
  font-size: max(13px, min(1vw, 16px));
  font-size: clamp(13px, 1vw, 16px);
}
@media (max-width: 610px) {
  .f__tel-bottom p {
    font-size: 14px;
  }
}
.f__tel-mail {
  color: #f65f53;
  height: 89px;
  width: 89px;
  background-color: white;
  transition: opacity 0.5s;
}
.f__tel-mail a {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: center;
  cursor: pointer;
}
.f__tel-mail a .fa-envelope {
  margin: 0;
  font-size: max(25px, min(4.5vw,54px));
  font-size: clamp(25px, 4.5vw, 54px);
}
@media (max-width: 610px) {
  .f__tel-mail a .fa-envelope {
    font-size: max(34px, min(4.5vw, 54px));
    font-size: clamp(34px, 4.5vw, 54px);
  }
}
@media (max-width: 950px) {
  .f__tel-mail a .fa-solid {
    margin-left: 0;
  }
}
.f__tel-mail a span {
  font-size: max(11px, min(1vw,14px));
  font-size: clamp(11px, 1vw, 14px);
}
@media (max-width: 610px) {
  .f__tel-mail a span {
    font-size: 14px;
  }
}
.f__tel-mail:hover {
  opacity: 0.8;
}
@media (max-width: 610px) {
  .f__tel-mail {
    width: 90%;
    padding: 2%;
    height: auto;
    margin-top: 4%;
  }
}
@media (max-width: 610px) {
  .f__tel {
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}

.f-sns a {
  width: 35px;
  display: inline-block;
  margin-right: 8px;
  font-size: 31px;
  transition: all 0.5s cubic-bezier(0.37, 0.16, 0.12, 1);
}
.f-sns a img {
  width: 100%;
  height: 35px;
  vertical-align: sub;
}
.f-sns a:hover {
  opacity: 0.8;
}
@media (max-width: 610px) {
  .f-sns {
    text-align: center;
  }
}

.f__footer {
  background-color: white;
  margin-top: 3%;
}
.f__footer-inner {
  display: flex;
  justify-content: center;
  padding: 8px 0;
}
.f__footer-inner img {
  max-width: 135px;
}
@media (max-width: 610px) {
  .f__footer-inner img {
    max-width: 145px;
  }
}
.f__footer-inner a {
  display: inline-block;
  padding: 6px 15px 10px;
  text-align: center;
}
@media (max-width: 610px) {
  .f__footer-inner a {
    padding: 11px 8px 8px;
  }
}
.f__footer-inner .putup-logo-eria {
  width: 30%;
  border-right: 1px solid #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 248px;
  flex-wrap: wrap;
}
.f__footer-inner .putup-logo-eria img {
  max-width: 104px;
  width: 92%;
}
@media (max-width: 610px) {
  .f__footer-inner .putup-logo-eria img {
    max-width: 119px;
  }
}
.f__footer-inner .putup-logo-eria p {
  color: #373737;
  display: inline-block;
  font-size: 15px;
}
@media (max-width: 610px) {
  .f__footer-inner .putup-logo-eria p {
    font-size: 13px;
  }
}
.f__footer-inner .putup-logo-eria a {
  padding: 10px 15px;
}
@media (max-width: 610px) {
  .f__footer-inner .putup-logo-eria a {
    padding: 7px 15px;
  }
}
@media (max-width: 610px) {
  .f__footer-inner .putup-logo-eria {
    width: 100%;
    flex-direction: column;
    max-width: none;
    border-right: none;
    border-bottom: 1px solid #ccc;
    padding: 0px 0 10px;
  }
}
.f__footer-inner .relation-logo {
  width: 70%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 724px;
  flex-wrap: wrap;
}
.f__footer-inner .relation-logo img {
  width: 100%;
}
@media (max-width: 950px) {
  .f__footer-inner .relation-logo {
    justify-content: center;
  }
}
@media (max-width: 610px) {
  .f__footer-inner .relation-logo {
    width: 100%;
  }
}
@media (max-width: 610px) {
  .f__footer-inner {
    flex-direction: column;
    padding: 3% 0;
  }
}
@media (max-width: 610px) {
  .f__footer {
    margin-top: 5%;
  }
}

.header {
  display: flex;
  height: 100px;
}
@media (max-width: 950px) {
  .header {
    height: 85px;
  }
}

.header-top {
  width: 100%;
  z-index: 2;
  transition: 0.5s;
  display: flex;
  align-items: center;
  position: fixed;
  height: 100px;
  position: fixed;
  background: white;
}
@media (max-width: 950px) {
  .header-top {
    height: 85px;
  }
}

.header-top-back {
  width: 100%;
  margin: 0 auto;
  max-width: 1389px;
}
@media (max-width: 610px) {
  .header-top-back {
    background-color: transparent;
  }
}

.header-top-back-inner {
  width: 98%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.8s ease;
  margin-left: auto;
}
@media (max-width: 950px) {
  .header-top-back-inner {
    justify-content: flex-start;
    width: 94%;
    margin: 0 auto;
  }
}

.header-nav-name {
  width: 39%;
  max-width: 231px;
}
.header-nav-name img {
  width: 100%;
}
.header-nav-name h1 {
  color: #f65f53;
  line-height: 1em;
  font-weight: 700;
}
.header-nav-name h1 span {
  font-size: 15px;
  display: block;
  line-height: 1.7;
  padding-left: 2px;
}
@media (max-width: 610px) {
  .header-nav-name {
    order: 3;
  }
}

.menu-header {
  display: flex;
  font-weight: 600;
  justify-content: space-around;
  align-items: center;
  width: 39%;
  font-size: 14px;
  color: #373737;
}
@media (max-width: 950px) {
  .menu-header {
    display: none;
  }
}
.menu-header-link {
  display: flex;
  align-items: flex-end;
  position: relative;
}
.menu-header-link a {
  position: relative;
  display: inline-block;
  color: #373737;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.3);
}
.menu-header-link a::before {
  position: absolute;
  top: 100%;
  left: 50%;
  color: transparent;
  content: "•";
  text-shadow: transparent 0px 0px;
  font-size: 1.2em;
  transform: translateX(-50%);
  pointer-events: none;
  transition: text-shadow 0.3s ease 0s, color 0.3s ease 0s;
}
.menu-header-link a:hover {
  color: #dd3232;
}
.menu-header-link a:hover::before {
  color: #f65f53;
  text-shadow: 10px 0 #f65f53, -10px 0 #f65f53;
}
.menu-header-link:hover {
  color: #f65f53;
  transition: all 0.5s cubic-bezier(0.37, 0.16, 0.12, 1);
}
.menu-header-link.current {
  color: #f65f53;
  position: relative;
  transition: all 0.5s cubic-bezier(0.37, 0.16, 0.12, 1);
}
.menu-header-link.current::before {
  content: "";
  width: 30%;
  top: -6px;
  right: 0;
  left: 0;
  margin: auto;
  height: 3px;
  background: #f65f53;
  position: absolute;
  transition: all 0.5s cubic-bezier(0.37, 0.16, 0.12, 1);
}

.header-tel-link {
  background-color: #f65f53;
  color: white;
  text-align: center;
  height: 100px;
  padding: 1% 2% 2%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 950px) {
  .header-tel-link {
    display: none;
  }
}

.header-tel-num {
  border-bottom: 1px dashed white;
}
.header-tel-num p {
  font-size: max(25px, min(3vw,44px));
  font-size: clamp(25px, 3vw, 44px);
  white-space: nowrap;
  font-weight: bold;
}
.header-tel-num .fa-phone {
  font-size: max(20px, min(2.5vw,40px));
  font-size: clamp(20px, 2.5vw, 40px);
  margin-right: 3px;
}

.header-tel-bottom {
  border-bottom: 1px dashed white;
  padding: 4px 0;
}
.header-tel-bottom p {
  display: inline-block;
  font-size: max(13px, min(1.2vw,16px));
  font-size: clamp(13px, 1.2vw, 16px);
}

.header-mail, .header-tel {
  border: 2px solid #f65f53;
  color: #f65f53;
  height: 100px;
  width: 9%;
  background-color: white;
}
.header-mail a, .header-tel a {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: center;
  cursor: pointer;
}
.header-mail a .fa-envelope, .header-tel a .fa-envelope {
  margin: 0;
  font-size: max(25px, min(4.5vw,54px));
  font-size: clamp(25px, 4.5vw, 54px);
}
@media (max-width: 950px) {
  .header-mail a .fa-envelope, .header-tel a .fa-envelope {
    font-size: max(25px, min(3vw, 40px));
    font-size: clamp(25px, 3vw, 40px);
  }
}
@media (max-width: 950px) {
  .header-mail a .fa-solid, .header-tel a .fa-solid {
    margin-left: 0;
  }
}
.header-mail a span, .header-tel a span {
  font-size: max(11px, min(1vw,14px));
  font-size: clamp(11px, 1vw, 14px);
}
@media (max-width: 950px) {
  .header-mail a span, .header-tel a span {
    display: none;
  }
}
@media (max-width: 950px) {
  .header-mail, .header-tel {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    order: 2;
    border: none;
    box-shadow: 0px 4px 6px 1px rgba(73, 73, 73, 0.27);
    margin-left: 3%;
  }
}
@media (max-width: 610px) {
  .header-mail, .header-tel {
    height: 56px;
    width: 56px;
  }
}

@media (max-width: 610px) {
  .header-mail {
    margin-left: 0;
  }
}

.header-tel {
  display: none;
}
@media (max-width: 950px) {
  .header-tel {
    display: inline-block;
    margin-right: 4%;
  }
  .header-tel .fa-phone {
    font-size: max(25px, min(3vw, 40px));
    font-size: clamp(25px, 3vw, 40px);
    margin-top: 6px;
  }
}

#gloval-nav {
  display: none;
}

#nav-toggle {
  display: none;
}

@media (max-width: 950px) {
  /*
   * タブレット・スマホメニューボタン
   */
  #nav-toggle {
    display: inline-block;
    cursor: pointer;
    text-align: center;
    line-height: 1em;
    order: 3;
    margin-left: auto;
  }
  #nav-toggle > div {
    height: 31px;
    position: relative;
  }
  #nav-toggle > span {
    font-size: 12px;
    font-weight: 600;
    color: #f65f53;
  }

  #nav-toggle div span {
    width: 95%;
    height: 4px;
    background: #f65f53;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
  }

  #nav-toggle div span:nth-child(1) {
    top: 9px;
    -webkit-animation: nav-toggle-bar01 0.75s forwards;
    animation: nav-toggle-bar01 0.75s forwards;
  }

  @-webkit-keyframes nav-toggle-bar01 {
    0% {
      -webkit-transform: translateY(9px) rotate(45deg);
    }
    50% {
      -webkit-transform: translateY(9px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
    }
  }
  @keyframes nav-toggle-bar01 {
    0% {
      transform: translateY(9px) rotate(45deg);
    }
    50% {
      transform: translateY(9px) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  #nav-toggle div span:nth-child(2) {
    top: 18px;
    transition: all 0.25s 0.25s;
    opacity: 1;
  }

  #nav-toggle div span:nth-child(3) {
    bottom: 0;
    -webkit-animation: nav-toggle-bar03 0.75s forwards;
    animation: nav-toggle-bar03 0.75s forwards;
  }

  @-webkit-keyframes nav-toggle-bar03 {
    0% {
      -webkit-transform: translateY(-14px) rotate(-45deg);
    }
    50% {
      -webkit-transform: translateY(-14px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
    }
  }
  @keyframes nav-toggle-bar03 {
    0% {
      transform: translateY(-14px) rotate(-45deg);
    }
    50% {
      transform: translateY(-14px) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  /*
   * メニュー押したあとの処理
   */
  .open #nav-toggle div span:nth-child(1) {
    top: -5px;
    -webkit-animation: open-nav-toggle-bar01 0.75s forwards;
    animation: open-nav-toggle-bar01 0.75s forwards;
  }

  @-webkit-keyframes open-nav-toggle-bar01 {
    0% {
      -webkit-transform: translateY(13px) rotate(0);
    }
    50% {
      -webkit-transform: translateY(22px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(22px) rotate(35deg);
    }
  }
  @keyframes open-nav-toggle-bar01 {
    0% {
      transform: translateY(13px) rotate(0);
    }
    50% {
      transform: translateY(22px) rotate(0);
    }
    100% {
      transform: translateY(22px) rotate(35deg);
    }
  }
  .open #nav-toggle div span:nth-child(2) {
    opacity: 0;
  }

  .open #nav-toggle div span:nth-child(3) {
    bottom: -8px;
    -webkit-animation: open-nav-toggle-bar03 0.75s forwards;
    animation: open-nav-toggle-bar03 0.75s forwards;
  }

  @-webkit-keyframes open-nav-toggle-bar03 {
    0% {
      -webkit-transform: translateY(-11px) rotate(0);
    }
    50% {
      -webkit-transform: translateY(-18px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(-18px) rotate(-35deg);
    }
  }
  @keyframes open-nav-toggle-bar03 {
    0% {
      transform: translateY(-11px) rotate(0);
    }
    50% {
      transform: translateY(-18px) rotate(0);
    }
    100% {
      transform: translateY(-18px) rotate(-35deg);
    }
  }
  /*
   * スマホメニュー本体
   */
  #gloval-nav {
    position: fixed;
    flex-direction: column;
    z-index: 5;
    opacity: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    right: 0;
    margin: auto;
    height: 100%;
    transition: all 0.6s cubic-bezier(0.22, 0.11, 0.22, 1) 0.2s;
    visibility: hidden;
    font-size: 19px;
    font-weight: 600;
    padding-bottom: 21%;
    top: 85px;
  }
}
@media (max-width: 950px) and (max-width: 610px) {
  #gloval-nav {
    font-size: 16px;
  }
}
@media (max-width: 950px) {
  ul.nav-menu {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    padding-top: 5%;
    padding-bottom: 5%;
  }
}
@media (max-width: 950px) and (max-width: 330px) {
  ul.nav-menu {
    height: 75%;
  }
}
@media (max-width: 950px) {
  ul.nav-menu-bottom {
    width: 100%;
    background: white;
    color: #373737;
    display: flex;
    flex-direction: column;
    padding: 5% 0;
    opacity: 0;
    transform: translate3d(0, 25px, 0);
    transition: opacity 0.8s cubic-bezier(0.22, 0.11, 0.22, 1) 0.7s, transform 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.7s;
  }
  ul.nav-menu-bottom li {
    margin-left: 5%;
    padding: 1% 0;
  }
  ul.nav-menu-bottom li p {
    color: #b6b6b6;
  }
  ul.nav-menu-bottom .share-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 218px;
    width: 100%;
    padding: 5% 0 1%;
  }
  ul.nav-menu-bottom .share-block a {
    width: 30%;
    display: flex;
    align-items: center;
    color: #f65f53;
    font-size: max(35px, min(4vw,55px));
    font-size: clamp(35px, 4vw, 55px);
  }
  ul.nav-menu-bottom .share-block img {
    width: 100%;
    max-width: 39px;
  }
}
@media (max-width: 950px) {
  ul.nav-menu li {
    opacity: 0;
    transform: translate3d(25px, 0, 0);
    transition: opacity 0.5s cubic-bezier(0.55, 0.055, 0.675, 0.19), transform 0.5s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    margin-left: 5%;
    width: 100%;
  }
}
@media (max-width: 950px) {
  .nav-menu li > a {
    position: relative;
    display: block;
    text-decoration: none;
    width: 100%;
    padding: 15px 0;
    color: white;
  }
}
@media (max-width: 950px) {
  .open {
    overflow: hidden;
  }
}
@media (max-width: 950px) {
  .open #gloval-nav {
    opacity: 1;
    transition: all 0.6s cubic-bezier(0.22, 0.11, 0.22, 1) 0.2s;
    visibility: visible;
    background-color: #f65f53;
    color: white;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .open #gloval-nav .nav-menu .nav-menu-list1 {
    opacity: 1;
    transform: translateZ(0);
    transition: opacity 0.8s cubic-bezier(0.22, 0.11, 0.22, 1) 0.5s, transform 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  }
  .open #gloval-nav .nav-menu .nav-menu-list2 {
    opacity: 1;
    transform: translateZ(0);
    transition: opacity 0.8s cubic-bezier(0.22, 0.11, 0.22, 1) 0.55s, transform 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.55s;
  }
  .open #gloval-nav .nav-menu .nav-menu-list3 {
    opacity: 1;
    transform: translateZ(0);
    transition: opacity 0.8s cubic-bezier(0.22, 0.11, 0.22, 1) 0.6s, transform 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
  }
  .open #gloval-nav .nav-menu .nav-menu-list4 {
    opacity: 1;
    transform: translateZ(0);
    transition: opacity 0.8s cubic-bezier(0.22, 0.11, 0.22, 1) 0.65s, transform 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.65s;
  }
  .open #gloval-nav .nav-menu .nav-menu-list5 {
    opacity: 1;
    transform: translateZ(0);
    transition: opacity 0.8s cubic-bezier(0.22, 0.11, 0.22, 1) 0.7s, transform 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.7s;
  }
  .open #gloval-nav .nav-menu .nav-menu-list6 {
    opacity: 1;
    transform: translateZ(0);
    transition: opacity 0.8s cubic-bezier(0.22, 0.11, 0.22, 1) 0.75s, transform 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.75s;
  }
  .open #gloval-nav .nav-menu-bottom {
    opacity: 1;
    transform: translateZ(0);
    transition: opacity 0.8s cubic-bezier(0.22, 0.11, 0.22, 1) 0.7s, transform 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.7s;
  }
  .open #gloval-nav .spnav__footer {
    opacity: 1;
    transform: translateZ(0);
    transition: opacity 0.8s cubic-bezier(0.22, 0.11, 0.22, 1) 0.7s, transform 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.7s;
  }
}
@media (max-width: 950px) {
  .open #gloval-nav li:hover {
    transition: 0.6s ease;
  }
}
.spnav__footer {
  border-top: 1px dashed #f65f53;
  width: 100%;
  background: white;
  opacity: 0;
  transform: translate3d(0, 25px, 0);
  transition: opacity 0.8s cubic-bezier(0.22, 0.11, 0.22, 1) 0.7s, transform 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.7s;
}
.spnav__footer-inner {
  padding: 4% 0;
  text-align: center;
  width: 65%;
  margin: 0 auto;
}
.spnav__footer-inner .text {
  color: #373737;
}
.spnav__footer-inner .text .f-tel {
  font-size: max(20px, min(2vw,30px));
  font-size: clamp(20px, 2vw, 30px);
}
.spnav__footer-inner .text .f-tel i {
  color: #f65f53;
  margin-right: 3px;
  margin-left: 0;
}
.spnav__footer-inner .text .f-mail i {
  margin-right: 3px;
  margin-left: 0;
}
.spnav__footer-inner .text__footer {
  display: inline-block;
  border-top: 1px dashed;
  border-bottom: 1px dashed;
  margin-top: 2%;
  font-weight: normal;
  padding: 1% 0;
}
.spnav__footer-inner img {
  width: 100%;
  max-width: 333px;
}

.scroll {
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: -9px;
  z-index: 1;
  padding: 0px 0px 110px;
  overflow: hidden;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  writing-mode: vertical-lr;
  background-color: white;
}
.scroll span {
  font-size: 13px;
  font-weight: bold;
  background-color: #f65f53;
  color: white;
  padding: 6px 6px 7px 4px;
  display: inline-block;
}
.scroll a {
  color: #f65f53;
  font-size: 12px;
  position: relative;
}
.scroll a::after {
  content: "";
  position: absolute;
  top: 77px;
  left: 50%;
  width: 1px;
  height: 100px;
  background: #f65f53;
}
.scroll a::before {
  content: "";
  position: absolute;
  top: 77px;
  left: 50%;
  width: 1px;
  height: 100px;
  background: rgba(246, 95, 83, 0.4);
}
.scroll a::after {
  animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
@media (max-width: 950px) {
  .scroll {
    top: 43%;
    padding: 0;
  }
  .scroll span {
    padding: 6px 5px 7px 4px;
  }
}
@media (max-width: 610px) {
  .scroll {
    top: 14%;
  }
  .scroll span {
    display: none;
  }
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

/* ローディング画面 */
#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: rgba(246, 96, 85, 0.596);
  /* 以下のコードを追加 */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.spinner {
  --size: 30px;
  --first-block-clr: #005bba;
  --second-block-clr: #fed500;
  --clr: #111;
  width: 100px;
  height: 100px;
  position: relative;
  margin: 32vh auto;
}

.spinner::after, .spinner::before {
  box-sizing: border-box;
  position: absolute;
  content: "";
  width: var(--size);
  height: var(--size);
  top: 50%;
  animation: up 2.4s cubic-bezier(0, 0, 0.24, 1.21) infinite;
  left: 50%;
  background: var(--first-block-clr);
}

.spinner::after {
  background: var(--second-block-clr);
  top: calc(50% - var(--size));
  left: calc(50% - var(--size));
  animation: down 2.4s cubic-bezier(0, 0, 0.24, 1.21) infinite;
}

@keyframes down {
  0%, 100% {
    transform: none;
  }
  25% {
    transform: translateX(100%);
  }
  50% {
    transform: translateX(100%) translateY(100%);
  }
  75% {
    transform: translateY(100%);
  }
}
@keyframes up {
  0%, 100% {
    transform: none;
  }
  25% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(-100%) translateY(-100%);
  }
  75% {
    transform: translateY(-100%);
  }
}

/*# sourceMappingURL=style.css.map */
