@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=BIZ+UDGothic:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;1,500&display=swap');

* {
  margin: 0;
  padding: 0;
}

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

html {
  font-size: 62.5%;
}

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

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

a:hover {
  color: #383838;
}

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

/*---font---*/
.font-mincho {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.font-red {
  color: #ff0000;
}

/*---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);
}

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

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

.fadeInLeft {
  opacity: 0;
  transform: translate(-100px, 0) scale(1.1);
  transition: 1s;
}

.is-fadeInLeft {
  opacity: 1;
  transform: translate(0, 0) scale(1);
  transition: 1s;
}

.fadeInRight {
  opacity: 0;
  transform: translate(100px, 0) scale(1.1);
  transition: 1s;
}

.is-fadeInRight {
  opacity: 1;
  transform: translate(0, 0) scale(1);
  transition: 1s;
}

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

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

/*----------------------------------------------------
  共通項目
----------------------------------------------------*/
/*---見出し---*/
.ttl {
  width: 100%;
  height: auto;
  margin-bottom: 80px;
  position: relative;
}

.ttl>h2 {
  font-size: 6rem;
  color: transparent;
  letter-spacing: .1em;
  background: linear-gradient(270deg, #003962 0%, #01d9ec 100%);
  background-clip: text;
}

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

.link-btn>a {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  border-bottom: 1px solid #1a1a1a;
}

.link-btn>a::after {
  display: block;
  content: '';
  width: calc(40px * .8);
  height: calc(7px * .8);
  background: url('../img/common/arrow-right.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.link-btn>a>span {
  display: inline-flex;
  align-items: center;
}

.link-btn>a>span::before {
  display: block;
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50vh;
  background: #1a1a1a;
  margin-right: 8px;
}

/*----------------------------------------------------
  #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: 340px;
  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
------------------------------------*/
#heading {
  width: 100%;
  position: absolute;
  top: 70px;
  left: 0;
  z-index: 1;
}

#heading>h1 {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  font-size: 1rem;
  text-align: right;
}

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

#header01 {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  box-sizing: border-box;
  transition: 1s cubic-bezier(.4, 0, .2, 1);
  border-bottom: 1px solid #5b5b5b;
}

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

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

.scroll .global-nav__wrapper {
  background: rgba(255, 255, 255, .5);
  backdrop-filter: blur(4px);
}

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

.global-nav__logo {
  width: auto;
  height: 22px;
  position: relative;
}

.global-nav__logo>a,
.global-nav__logo>a>h1 {
  display: block;
  width: auto;
  height: 100%;
}

.global-nav__logo>a svg {
  width: auto;
  height: 100%;
}

.logo__arrow-r {
  fill: #cd0000;
}

.scroll .logo__arrow-r,
.active .logo__arrow-r {
  fill: #cd0000;
}

.logo__arrow-l {
  fill: #ff0000;
}

.scroll .logo__arrow-l,
.active .logo__arrow-l {
  fill: #ff0000;
}

.logo__base {
  fill: #1a1a1a;
}

.scroll .logo__base,
.active .logo__base {
  fill: #1A1A1A;
}

.navi {
  display: inline-flex;
  width: auto;
  height: 60px;
  padding: 0 40px;
}

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

.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 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1.4;
  padding: 0 14px;
  letter-spacing: .025em;
  color: #fff;
  font-weight: bold;
}

.scroll .navi__list>ul>li>a {
  color: #1a1a1a;
}

.navi__list-main {
  font-size: 1.5rem;
  letter-spacing: .1em;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-style: normal;
}

.navi__list-ruby {
  font-size: 1rem;
}

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

.nav__sns i {
  font-size: 2.2rem;
  color: #1a1a1a;
}

.navi__cta>a {
  display: inline-flex;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: center !important;
  background: #1a1a1a;
  width: 180px;
  height: 42px;
  color: #fff !important;
  font-size: 1.4rem;
  line-height: 1.3 !important;
  box-sizing: border-box;
  padding: 0 20px;
  box-sizing: border-box;
  border-radius: 8px;
  position: relative;
}

.navi__cta-ruby {
  font-size: 1.3rem;
}

.navi__cta-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  background: #fff;
  color: #1a1a1a;
  font-size: 1.2rem;
  border-radius: 50vh;
}

/*----------------------------------------------------
  #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: #1a1a1a;
  border-radius: 2px;
  transition: all .4s;
  box-sizing: border-box;
}

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

.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;
}

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

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

.active .nav-toggle>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;
  }
}

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

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

/*------------------------------------
 #contact
------------------------------------*/
.contact {
  width: 100%;
  height: auto;
  padding: 0 0 150px 0;
  color: #fff;
}

.contact__body {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px;
  box-sizing: border-box;
}

.contact__item {
  width: 90%;
  margin: 0 auto;
}

/*------------------------------------
 .footer
------------------------------------*/
.footer01 {
  width: 100%;
  height: auto;
  position: relative;
  font-size: 1.4rem;
}

.footer01::before {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

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

.footer-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid #ccc;
}

.footer-logo {
  width: 200px;
}

.footer-logo>a>p {
  font-size: 1.3rem;
  font-weight: bold;
  padding-top: 3px;
}

.footer-nav {
  width: auto;
}

.footer-nav>ul {
  display: inline-flex;
  align-items: center;
  list-style: none;
  margin-bottom: 10px;
}

.footer-nav>ul>li>a {
  padding: 0 14px;
  font-weight: bold;
}

.footer-mid {
  width: 100%;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
}

.footer-add {
  font-weight: bold;
}

.footer-scroll {
  display: inline-flex;
  align-items: center;
  position: relative;
}

.footer-scroll>a {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.footer-scroll>p {
  writing-mode: vertical-rl;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 1.2rem;
}

.footer-scroll>span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background: #FF9191;
  border-radius: 50vh;
}

.footer-scroll>span>img {
  width: 28px;
  transform: rotate(-90deg);
}

.footer__policy {
  text-align: right;
  font-size: 1.2rem;
}

.footer__policy>a {
  padding-left: 14px;
}

.footer01-bottom {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 10px 0;
  position: relative;
  z-index: 1;
}

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

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

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

  #header01 {
    height: 60px;
    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%;
    margin: 0 auto;
    transition: 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  }

  .scroll .global-nav__logo {
    transition: 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  }

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

  #nav-toggle {
    display: block;
  }

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

  /*-------------------------------------------------
    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;
    border-radius: 0;
  }

  .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;
    position: relative;
    z-index: 1;
  }

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

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

  .navi__list>ul>li {
    width: 48%;
    height: auto;
    box-sizing: border-box;
    margin-top: 32px;
  }

  .navi__list>ul>li a:not(.navi__cta a, .navi__menuSub > li > a) {
    align-items: stretch;
    color: #fff;
    height: auto;
    font-size: 3rem;
    padding: 0;
  }

  .scroll .navi__list>ul>li a:not(.navi__cta a, .navi__menuSub > li > a),
  .active .navi__list>ul>li a:not(.navi__cta a, .navi__menuSub > li > a) {
    color: #1a1a1a;
  }

  .navi__list-main {
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 1.6rem;
  }

  .navi__list-main::after {
    display: block;
    content: '';
    flex: 1;
    border-top: 1px solid #ccc;
  }

  .navi__list-ruby {
    display: block;
    font-size: 1.8rem;
    padding-top: 14px;
  }

  .nav__sns {
    display: flex;
    align-items: flex-start;
    margin-left: 0;
  }

  .nav__sns>a:not(:last-of-type) {
    margin-right: 30px;
  }

  .nav__sns>a i {
    font-size: 4rem;
  }

  .navi__cta {
    display: flex;
    width: 60% !important;
    height: 60px !important;
    flex-direction: column;
    margin-left: 0;
  }

  .navi__cta>a {
    width: 100%;
    height: 100%;
    margin: 0 auto 0 0;
  }

  .navi__cta-ruby {
    font-size: 1.8rem;
  }
}

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

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

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

  /*---footer---*/
  .footer-top {
    flex-direction: column-reverse;
  }

  .footer-logo {
    width: 40%;
  }

  .footer-logo>a>p {
    text-align: center;
  }

  .footer-nav {
    margin-bottom: 30px;
  }
}

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

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

  body {
    font-size: 1.4rem;
  }

  .loading__inner>img {
    width: 65%;
  }

  #stkr {
    display: none;
  }

  .ttl>h2 {
    font-size: 4rem;
  }

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

  nav {
    padding-bottom: 0;
  }

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

  .navi__list>ul>li {
    width: 100%;
  }

  .navi__list>ul>li a:not(.navi__cta a, .navi__menuSub > li > a) {
    font-size: 2.4rem;
    padding: 0;
  }

  .navi__list-ruby {
    display: block;
    font-size: 1.4rem;
  }

  .navi__cta {
    display: flex;
    width: 80% !important;
    height: 60px !important;
  }

  .navi__cta>a {
    width: 100%;
  }

  .ttl__sub {
    font-size: 5rem;
  }

  .link__btn>a {
    padding: 0 20px;
  }

  .link__btn>a>svg {
    width: 20px;
  }

  /*---footer---*/
  .footer-body {
    padding: 80px 0 150px 0;
  }

  .footer-nav {
    width: 100%;
  }

  .footer-nav>ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-nav>ul>li {
    width: 33%;
  }

  .footer-nav>ul>li>a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 5px;
    box-sizing: border-box;
  }

  .footer-logo {
    width: 100%;
    border-top: 1px solid #ccc;
    padding-top: 30px;
  }

  .footer-logo>a {
    display: block;
    width: 60%;
    margin: 0 auto;
  }

}