@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400..900&display=swap");

:root {
  --font-family-serif: 'Noto Serif JP', serif;
  --font-family-Marcellus: "Marcellus", serif;
  --font-family-Cormorant: "Cormorant Garamond", serif;
  --color-white: #ffffff;
  --color-dark-brw: #61564A;
  --color-brw: #AA9883;
  --color-beige: #f5ede8;
}

* {
  margin: 0;
  padding: 0;
}

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

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", 'Hiragino Sans,', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', '游ゴシック', YuGothic, '游ゴシック体', 'BIZ UDPGothic', 'Meiryo', sans-serif;
  color: #1a1a1a;
  font-size: 1.6rem;
  font-weight: 500;
  word-break: break-all;
  line-height: 2;
  letter-spacing: .015em;
  overflow-x: hidden;
  position: relative;
}

/*---link---*/
a {
  text-decoration: none;
  color: #1a1a1a;
}

/*---image---*/
img,
picture {
  display: block;
  width: 100%;
  height: auto;
}

/*---font---*/
.--font-size-big {
  font-size: 6rem;
}

/*---bg color---*/
.bg--gray {
  background: #1a1a1a;
}

/*---moveing---*/
.fadeIn {
  opacity: 0;
  transition: 1.5s;
}

.is-fadeIn {
  opacity: 1;
}

.fadeInUP {
  opacity: 0;
  transform: translate(0, 20px);
  transition: 1s;
}

.is-fadeInUP {
  opacity: 1;
  transform: translate(0, 0);
}

.fadeInUP2 {
  opacity: 0;
  transform: translate(0, 20px);
  transition: 1s;
}

.is-fadeInUP2 {
  opacity: 1;
  transform: translate(0, 0);
}

.fadeInScale {
  transform: scale(.9);
  opacity: 0;
  transition: 1s;
}

.is-fadeInScale {
  transform: scale(1);
  opacity: 1;
}

@keyframes rotation {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*----------------------------------------------------
  共通項目 parts
----------------------------------------------------*/
.ttl {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
  position: relative;
}

.ttl::after {
  display: block;
  content: '';
  width: 50px;
  height: 5px;
  background: linear-gradient(45deg, #1a1a1a 0, #FEFEFE 50%, #1a1a1a 100%);
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translate(-50%, 0);
}

.ttl>h2 {
  font-size: 1.2rem;
  font-weight: normal;
  text-align: center;
  line-height: 1.6;
}

.ttl>p {
  font-size: 4rem;
  font-family: var(--font-family-Cormorant);
  letter-spacing: .1em;
  line-height: 1.4;
}

/*---link-btn---*/
.link-btn {
  width: 100%;
  height: 80px;
}

.link-btn svg {
  width: 18px;
  margin-right: 3px;
  fill: #545454;
}

.link-btn-middle {
  max-width: 360px;
}

.link-btn>a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(45deg, var(--color-brw), var(--color-dark-brw));
  color: var(--color-white);
  padding: 0 40px;
  box-sizing: border-box;
  border-radius: 6px;
}

.link-btn>a>span {
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}

.link-btn-sub {
  font-family: var(--font-family-Marcellus);
  font-size: 1.2rem;
}

.link-btn>a>img {
  width: 24px;
  fill: #fff;
}

.link-btn>a>svg {
  width: 24px;
}

.icon-arrow__base {
  stroke: #fff;
  stroke-miterlimit: 10;
  fill: none;
}

.icon-arrow__main {
  fill: #fff;
}

/*------------------------------------
  共通項目 contents
------------------------------------*/
section:not(.mv) {
  padding: 100px 0;
  position: relative;
}

.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

main {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}

p {
  text-align: justify;
  word-break: break-all;
}

p:not(:last-of-type) {
  margin-bottom: 20px;
}

/*----------------------------------------------------
  #loading
----------------------------------------------------*/
.loading {
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
}

.loading__inner {
  width: 100%;
  height: auto;
}

.loading__inner>img {
  width: 50%;
  max-width: 200px;
  margin: 0 auto;
}

/*----------------------------------------------------
 mouse tracking
----------------------------------------------------*/
#stkr {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 26px;
  height: 26px;
  background: linear-gradient(45deg, rgba(135, 193, 153, .5), rgba(180, 187, 145, .5));
  border-radius: 50%;
  transition: .5s;
  transition-timing-function: ease-out;
  pointer-events: none;
  mix-blend-mode: multiply;
  z-index: 1000;
}

/*----------------------------------------------------
  #heading / h1
----------------------------------------------------*/
#heading {
  width: 100%;
  height: auto;
  position: absolute;
  top: 85px;
  left: 0;
  z-index: 2;
}

#heading>h1 {
  width: 90%;
  height: auto;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5px 0;
  text-align: right;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.4;
  box-sizing: border-box;
}

#heading>h1>br {
  display: none;
}

/*----------------------------------------------------
  header
----------------------------------------------------*/
header {
  width: 100%;
  height: auto;
}

#header01 {
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  letter-spacing: .05em;
  box-sizing: border-box;
  background: rgba(255, 255, 255, .4);
  backdrop-filter: blur(30px);
  transition: 1s cubic-bezier(.4, 0, .2, 1);
}

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

.global-nav__wrapper {
  width: 100%;
  height: 80px;
  transition: 1s cubic-bezier(.4, 0, .2, 1);
}

.scroll .global-nav__wrapper {
  background: rgba(255, 255, 255, .7);
  backdrop-filter: blur(30px);
  transition: 1s cubic-bezier(.4, 0, .2, 1);
}

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

.global-nav__logo {
  width: auto;
  height: 70px;
  position: relative;
  z-index: 1001;
}

.global-nav__logo>a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

.global-nav__logo>a>picture,
.global-nav__logo>a img {
  width: auto;
  height: 100%;
}

.navi {
  display: flex;
  width: 100%;
  height: 80px;
}

.navi__list {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-end;
}

.navi__list>ul {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-end;
  list-style: none;
}

.navi__list>ul>li {
  display: flex;
  letter-spacing: 0;
  position: relative;
}

.navi__list>ul>li a:not(.navi-cta a, .navi__menuSub > li > a) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1.4;
  letter-spacing: 0;
  padding: 0 14px;
}

.navi__txt {
  font-size: 1.8rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: normal;
}

.navi__ruby {
  color: #60564A;
  font-size: 1.2rem;
  letter-spacing: 0;
}

.navi__menuSub {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: max-content;
  height: auto;
  list-style: none;
}

.navi__menuSub>li>a {
  width: 100%;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  height: 48px !important;
  padding: 0 14px;
  box-sizing: border-box;
  text-align: left !important;
  background: rgba(255, 255, 255, .9);
}

.navi__menuSub>li>a>i {
  margin-right: 8px;
}

.navi-cta {
  display: inline-flex;
  align-items: center;
  width: auto;
  height: auto;
  margin-left: 20px;
  position: relative;
}

.navi-cta__top {
  display: none;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.navi-cta__inner {
  display: inline-flex;
  align-items: center;
  width: auto;
  height: auto;
}

.navi-cta__btn {
  width: 170px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.navi-cta__btn>a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 48px;
  font-size: 1.4rem;
  border-radius: 5px;
  padding: 0 10px 0 24px;
  box-sizing: border-box;
  margin-right: 2px;
  background: #1a1a1a;
  color: #fff;
  position: relative;
}

.navi-cta__btn-hpb,
.navi-cta__btn-line {
  width: 160px;
}

.navi-cta__btn-hpb>a,
.navi-cta__btn-line>a {
  padding: 0 10px;
  justify-content: center;
}

.navi-cta__btn>a>span {
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  color: #1a1a1a;
  border-radius: 50vh;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(0, -50%);
}

.navi-cta__btn-inner {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

.navi-cta__btn-main {
  font-size: 1.4rem;
}

.navi-cta__btn-sub {
  font-size: 1.1rem;
}

.navi-cta__btn-inner>picture,
.navi-cta__btn-inner>picture img {
  width: auto;
  height: 30px;
}

.navi-cta__btn-tel {
  display: none;
  width: 100%;
  height: auto;
  margin: 0 auto 10px auto;
  padding: 20px;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, .05);
}

.navi-cta__btn-tel-lead {
  text-align: center;
  margin-bottom: 10px;
}


/*----------------------------------------------------
  #nav-toggle
----------------------------------------------------*/
.nav-toggle {
  display: none;
  position: fixed;
  top: 3px;
  right: 2.5%;
  width: 36px;
  height: 56px;
  z-index: 1001;
  cursor: pointer;
  transform: scale(.8);
}

.nav-toggle>span {
  display: inline-block;
  width: 100%;
  height: 4px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  background: #999999;
  border-radius: 2px;
  transition: all .4s;
  box-sizing: border-box;
}

.scroll .nav-toggle>span {
  background: #999999;
}

.nav-toggle>span:nth-of-type(1) {
  top: 14px;
}

.nav-toggle>span:nth-of-type(2) {
  top: 24px;
  right: 0;
}

.nav-toggle>span:nth-of-type(3) {
  top: 34px;
}

.nav-toggle.active>span {
  width: 36px;
  height: 3px;
  left: 50%;
  transform: translate(-50%, 0);
  background: #A7A7A7;
}

.nav-toggle.active>span:nth-of-type(1) {
  top: 4px;
  transform: translate(-50%, 20px) rotate(-45deg);
  -webkit-transform: translate(-50%, 20px) rotate(-45deg);
}

.nav-toggle.active>span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  animation: active-menu-bar02 .8s forwards;
  -webkit-animation: active-menu-bar .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: 44px;
  transform: translate(-50%, -20px) rotate(45deg);
  -webkit-transform: translate(-50%, -20px) rotate(45deg);
}

/*------------------------------------
parallax
------------------------------------*/
#parallax {
  width: 100%;
  height: auto;
  position: relative;
}

.parallax {
  overflow: hidden;
  width: 100%;
  height: auto;
  position: relative;
}

.parallax::before {
  display: block;
  content: '';
  width: 100%;
  height: 0;
  padding-top: 35%;
}

.parallax::after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgb(26, 26, 26) 40%, rgb(26, 26, 26) 60%);
  position: absolute;
  top: 0;
  left: 0;
  opacity: .4;
}

.parallax-img {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.parallax-img picture,
.parallax-img img {
  display: block;
  height: 100%;
  object-fit: cover;
}

.parallax-text {
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: overlay;
  z-index: 1;
}

.parallax-text>p {
  font-size: 10rem;
  line-height: 1.4;
  text-align: center;
}

.parallax-text>p br {
  display: none;
}

.parallax-text>p>span {
  margin-left: 20px;
}

/*------------------------------------
  contact
------------------------------------*/
.contact-container {
  max-width: 1100px;
}

.contact-col {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-around;
}

.contact-inner {
  width: 52.5%;
}

.contact-txt>p {
  font-size: 1.8rem;
}

.contact-link {
  width: 35%;
}

.contact-link__col {
  width: 100%;
}

.contact-btn {
  width: 100%;
  height: 80px;
}

.contact-btn:not(:last-of-type) {
  margin-bottom: 10px;
}

.contact-btn>a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 6px;
}

.contact-btn>a>img {
  width: 42px;
  margin-right: 10px;
}

.contact-btn__inner {
  width: 140px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.4;
}

.contact-btn__inner-main {
  font-size: 2rem;
  white-space: nowrap;
}

.contact-btn__inner-sub {
  font-size: 1.4rem;
  white-space: nowrap;
}

/*------------------------------------
 #mobile-nav
------------------------------------*/
#mobile-nav {
  display: none;
  width: 100%;
  max-width: 480px;
  height: auto;
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 998;
  box-sizing: border-box;
  background: #1a1a1a;
}

#mobile-nav>ul {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  box-sizing: border-box;
  list-style: none;
  position: relative;
  z-index: 1;
}

#mobile-nav>ul>li {
  width: 25%;
  height: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mobile-nav-web {
  background: linear-gradient(45deg, #1a1a1a, #1a1a1a);
}

.mobile-nav-line {
  background: linear-gradient(45deg, #00cc42, #00CC8B);
}

.mobile-nav-hpb {
  background: #6b6b6b;
}

#mobile-nav>ul>li:nth-of-type(4) {
  background: #6b6b6b;
}

#mobile-nav>ul>li>a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.6;
}

#mobile-nav>ul>li>a>img {
  width: 28px;
}

/*------------------------------------
 .footer
------------------------------------*/
.footer {
  width: 100%;
  height: auto;
  background: linear-gradient(45deg, #29241F, #60564A, #29241F);
  color: #f7f7f7;
  font-size: 1.4rem;
  position: relative;
}

.footer a {
  color: #f7f7f7;
}

.footer-body {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 0;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.footer-logo {
  width: 240px;
}

.footer-logo>a {
  display: flex;
  flex-direction: column;
}

.footer-logo>a>img {
  margin-bottom: 10px;
}

.footer-col {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.footer-item {
  width: auto;
}

.footer-list {
  width: auto;
  list-style: none;
  margin: 0 10% 0 5%;
  min-width: 360px;
}

.footer-list>li {
  margin-bottom: 5px;
}

.footer-list-name {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
}

.footer-list-name::after {
  display: block;
  content: '';
  flex: 1;
  border-top: 1px solid #f7f7f7;
  margin-left: 5px;
}

.footer-list-tab {
  padding: 2.5px 10px;
  background: rgba(0, 0, 0, .3);
  margin-right: 5px;
}

.footer-sns {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.footer-sns>a {
  display: block;
  width: 26px;
  height: auto;
}

.footer-sns>a:nth-of-type(n+2) {
  margin-left: 20px;
}

.footer-sns>a>svg {
  fill: #f7f7f7;
  width: 26px;
  height: auto;
  margin-left: 5px;
}

.footer-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer-link__col {
  display: flex;
  justify-content: center;
}

.footer-link__blk {
  width: 200px;
  height: 56px;
  margin: 0 2.5px;
}

.footer-link__blk>a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  border-radius: 6px;
}

.footer-link__blk>a>svg {
  fill: #fff;
  width: 26px;
  margin-right: 8px;
}

.footer-nav {
  width: auto;
}

.footer-list2 {
  list-style: none;
}

.footer-list2>li {
  margin-bottom: 8px;
}

.footer-list2>li>a {
  display: flex;
  align-items: center;
}

.footer-list2>li>a::before {
  display: block;
  content: '';
  width: 8px;
  height: 8px;
  border: 1px solid #AAA683;
  border-radius: 50vh;
  margin-right: 10px;
}

.footer-list2>li>ul {
  padding-left: 20px;
  box-sizing: border-box;
  list-style: none;
}

.footer-list2>li>ul>li {
  margin: 5px 0;
  font-size: 1.4rem;
}

.footer-list2>li>ul>li>a {
  display: flex;
  align-items: center;
}

.footer-list2>li>ul>li>a::before {
  display: block;
  content: '';
  width: 10px;
  height: 1px;
  border-top: 1px solid #AAA683;
  margin-right: 10px;
}

.icon-external-link__base {
  fill: none;
}

.icon-external-link__main {
  fill: #f7f7f7;
}

.copyright {
  width: 100%;
  height: auto;
  text-align: center;
  font-size: 1.2rem;
  padding: 10px 0;
  background: #231E1A;
  color: #f7f7f7;
}

.copyright br {
  display: none;
}

@media screen and (max-width:1360px) {
  .footer01 {
    width: 90%;
    max-width: initial;
  }
}

@media screen and (max-width:1280px) {
  html {
    font-size: calc(100vw/128.0);
  }
}

@media screen and (max-width:1220px) {
  .navi-cta__btn-web {
    order: 3;
  }

  .navi-cta__btn-hpb {
    order: 2;
  }

  .navi-cta__btn-line {
    order: 1;
  }

  .navi-cta__btn-hpb,
  .navi-cta__btn-line {
    width: 36px;
    background: none;
    margin-left: 14px;
  }

  .navi-cta__btn-hpb {
    margin-right: 24px;
  }

  .navi-cta__btn-hpb>a,
  .navi-cta__btn-line>a {
    background: none;
    padding: 0;
  }

  .navi-cta__btn-inner>picture,
  .navi-cta__btn-inner>picture img {
    width: 100%;
    height: auto;
  }
}

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

@media screen and (max-width:1024px) {
  html {
    font-size: calc(100vw/102.4);
  }

  /*---heading---*/
  #heading {
    top: 70px;
  }

  /*---header---*/
  #header01 {
    height: auto;
    position: fixed;
    z-index: 1001;
  }

  .global-nav__wrapper {
    width: 100%;
    height: 60px;
    max-width: initial;
    padding-left: 0;
  }

  .global-nav {
    height: 60px;
    justify-content: space-between;
    padding: 0 10px;
    box-sizing: border-box;
  }

  .global-nav__logo {
    width: 100%;
    height: 50px;
    margin: 0 auto;
  }

  .global-nav__logo>a img {
    margin: 0 auto;
  }

  #nav-toggle {
    display: block;
  }

  .navi__list>ul>li a:not(.navi-cta a),
  .navi__list>ul>li p {
    width: 100%;
    align-items: flex-start;
  }

  .navi__txt {
    font-size: 1.8rem;
  }

  .navi__menu {
    flex-direction: column;
  }

  .navi__menu>a {
    padding-bottom: 10px !important;
  }

  .navi__menuSub {
    display: block;
    position: relative;
    top: initial;
    left: initial;
    width: 100%;
    height: auto;
    padding-left: 10px;
    box-sizing: border-box;
  }

  .navi__menuSub>li>a {
    background: #fafafa;
  }

  .navi__menuSub>li:nth-of-type(n+2) {
    margin-top: 3px;
  }

  .navi__menuSub>li:not(:last-child) {
    margin-top: 5px;
  }

  .navi__menuSub>li>a {
    align-items: center !important;
  }

  /*-------------------------------------------------
    toggle
  -------------------------------------------------*/
  .navi {
    width: 100%;
    max-width: initial;
    height: 100vh;
    background: #fff;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transition: .4s;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
  }

  .navi.is-open {
    width: 100%;
    height: 100vh;
    opacity: 1;
    visibility: visible;
  }

  .navi__list {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: scroll;
  }

  .navi__list::-webkit-scrollbar {
    display: none;
  }

  .navi__list>ul {
    width: 100%;
    max-width: 520px;
    height: auto;
    margin: 0 auto;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .navi__list>ul>li {
    width: 100%;
    height: auto;
    padding: 20px 0;
    box-sizing: border-box;
  }

  .navi__list>ul>li:not(:last-child) {
    border-bottom: 1px solid #ccc;
  }

  .navi__list>ul>li a:not(.navi-cta a, .navi__menuSub > li > a),
  .header-menu>p {
    align-items: stretch;
  }

  .navi-cta {
    display: flex;
    flex-direction: column;
    margin-left: 0;
  }

  .navi-cta__top {
    display: block;
  }

  .navi-cta__inner {
    width: 100%;
    flex-wrap: wrap;
    border-bottom: none;
  }

  .navi-cta__btn {
    display: block;
    width: 100%;
    margin: 0 auto 8px auto;
    background: #1a1a1a;
    border-radius: 8px;
  }

  .navi-cta__btn-web {
    order: 1;
  }

  .navi-cta__btn-line {
    order: 2;
  }

  .navi-cta__btn-hpb {
    order: 3;
  }

  .navi-cta__btn-tel {
    order: 4;
  }

  .navi-cta__btn>a {
    width: 90%;
    height: 80px;
    padding: 0 40px;
    font-size: 2rem;
    margin: 0 auto;
  }

  .navi-cta__btn>a>span {
    width: 36px;
    height: 36px;
  }

  .navi-cta__btn-inner>picture,
  .navi-cta__btn-inner>picture img {
    width: auto;
    height: 48px;
  }

  .navi-cta__btn-tel {
    display: block;
    width: 100%;
    height: auto;
  }

  .navi-cta__btn-tel>a {
    display: flex;
    justify-content: center;
    align-items: baseline;
    width: 100%;
    font-size: 3.2rem;
  }

  .navi-cta__btn-tel>a>i {
    font-size: 2.8rem;
    margin-right: 5px;
  }

  .navi-cta__btn-tel>a>span {
    line-height: 1;
  }

  .navi-cta__btn-tel-time {
    width: 100%;
    text-align: center;
    font-size: 1.3rem;
  }

  /*---共通項目---*/
  .container {
    width: 65%;
  }

  /*---parallax---*/
  .parallax-text>p {
    font-size: 8rem;
  }

  .parallax-text>p br {
    display: block;
  }

  .parallax-text>p>span {
    margin-left: 0;
  }

  /*---contact---*/
  .contact-col {
    flex-direction: column;
  }

  .contact-inner {
    width: 100%;
    margin-bottom: 50px;
  }

  .contact-link {
    width: 100%;
  }

  /*---footer---*/
  .footer-col {
    width: 100%;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
  }

  .footer-item {
    margin-bottom: 20px;
  }

  .footer-list {
    text-align: left;
    margin: 0 auto 20px auto;
  }

  .footer-nav {
    width: 100%;
    display: flex;
    margin: 0 auto 20px auto;
  }

  .footer-link {
    width: auto;
  }
}

@media screen and (max-width:896px) {
  html {
    font-size: calc(100vw/89.6);
  }

  /*---共通項目---*/
  .container {
    width: 70%;
  }
}

@media screen and (max-width:786px) {
  html {
    font-size: calc(100vw/78.6);
  }

  /*---共通項目---*/
  .container {
    width: 75%;
  }

  /*---parallax---*/
  .parallax::before {
    padding-top: 75%;
  }
}

@media screen and (max-width:680px) {
  html {
    font-size: calc(100vw/68);
  }

  .navi__list>ul {
    width: 70%;
    max-width: initial;
  }

  /*---共通項目---*/
  .container {
    width: 80%;
  }

  /*---parallax---*/
  .parallax::before {
    padding-top: 100%;
  }

  .parallax-text {
    width: 80%;
    text-align: right;
  }

  /*---footer---*/
  .footer-link__col {
    flex-wrap: wrap;
  }

  .footer-link__blk:nth-of-type(n+3) {
    margin-top: 5px;
  }
}

@media screen and (max-width:480px) {
  html {
    font-size: 62.5%;
  }

  body {
    font-size: 1.4rem;
  }

  #stkr {
    display: none;
  }

  /*---heading---*/

  h1 {
    letter-spacing: 0;
  }

  /*---header---*/
  #header01 {
    height: auto;
    position: fixed;
  }

  #heading>h1>br {
    display: block;
  }

  .global-nav__logo {
    height: 48px;
  }

  nav {
    padding-bottom: 0;
  }

  .navi__list>ul {
    width: 100%;
    max-width: initial;
  }

  .navi__list>ul>li {
    width: 100%;
    padding: 10px 7.5%;
  }

  .navi__ruby {
    font-size: 1.5rem;
  }

  .navi-cta {
    padding: 0 7.5% 150px 7.5%;
  }

  .navi-cta__top-txt {
    font-size: 1.2rem;
    text-align: justify;
  }

  .navi-cta__btn>a {
    width: 95%;
    height: 60px;
    font-size: 1.8rem;
    padding: 0 30px;
  }

  .navi-cta__btn-inner>picture,
  .navi-cta__btn-inner>picture img {
    width: auto;
    height: 36px;
  }

  .navi-cta__btn-tel>a {
    font-size: 2.8rem;
  }

  .navi-cta__btn-tel>a>i {
    font-size: 2.4rem;
  }

  .navi-cta__btn-tel-time>p {
    text-align: center;
  }

  /*---共通項目---*/
  .ttl {
    margin-bottom: 50px;
  }

  .ttl__sub {
    font-size: 5rem;
  }

  .link-btn>a {
    padding: 0 20px;
  }

  .link-btn>a>svg {
    width: 20px;
  }

  section:not(.mv) {
    padding: 80px 0;
  }

  .container {
    width: 85%;
  }

  .link-btn {
    height: 68px;
  }

  /*---parallax---*/
  .parallax-text>p {
    font-size: 5rem;
  }

  /*---contact---*/
  .contact .ttl>p {
    font-size: 3.2rem;
  }

  .contact-txt>p {
    font-size: 1.4rem;
  }

  /*---footer---*/
  .footer-body {
    width: 80%;
    padding: 100px 0;
  }

  .footer-col {
    width: 100%;
  }

  .footer-logo {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-logo>a>img {
    margin-bottom: 0;
  }

  .footer-list {
    width: 100%;
    min-width: initial;
    font-size: 1.3rem;
  }

  .footer-link {
    width: 100%;
  }

  .footer-link__blk {
    width: 100%;
  }

  .footer-link__blk:nth-of-type(n+2) {
    margin-top: 5px;
  }

  .copyright {
    font-size: 1rem;
    padding-bottom: 70px;
  }

  .copyright br {
    display: block;
  }

  .copyright>span {
    display: none;
  }
}