@charset "UTF-8";

/*--------------------------------
差し色：#004973
差し色：#5E7B66（🌿アクセントグリーン）
差し色（淡）：#DED6C1（🏝️サンド系ベージュ）
背景：#FFFFFF / #E7EBE7 / #E9F0F4
背景：#F1FAFF（明るい薄いブルー）
背景：#D5DDE1（ペールスモーキーブルー	）グレー寄り、超なじむ淡ブルー
背景：#C8D6DB（明るい薄いブルー）グレイッシュブルー寄り、落ち着き＆知的感
ボックス：rgba(130, 179, 209, .6);
--------------------------------*/

* {
  margin: 0;
  padding: 0;
}

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

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'TikTok Sans', 'Zen Kaku Gothic Antique', "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", "Meiryo", "Arial", sans-serif;
  background: #ffffff;
  color: #001616;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 2;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

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

img,
picture {
  display: block;
  width: 100%;
  height: auto;
}

.mincho {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

.font-en {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-style: normal;
}


.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(1.1);
  opacity: 0;
  transition: 1s;
}

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

.link-btnWrap {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
}

.link-btn--dashed {
  width: 49%;
  max-width: 360px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.link-btn--dashed>a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
  position: relative;
  z-index: 1;
}

.link-btn--dashed>a::after {
  display: block;
  content: '';
  width: 12px;
  height: 12px;
  background: url('../icon/arrow--right.svg');
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 20px;
  order: 3;
}

/* --- SVG要素とrect要素のスタイル --- */
.btn-border-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.border-rect {
  fill: none;
  stroke: #6b6b6b;
  /* 点線の色 */
  stroke-width: 2px;
  /* 点線の太さ */
}

/*----------------------------------------------------
  共通項目
----------------------------------------------------*/

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

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

section:not(.fv) {
  padding: 24vh 0;
  position: relative;
}

div>p:not(:last-of-type) {
  margin-bottom: 14px;
}

.ttl {
  margin-bottom: 40px;
}

.ttl>h2 {
  display: inline-block;
  width: auto;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.8;
}

.p-lead {
  font-size: 3rem;
  line-height: 1.8;
  font-weight: 700;
  margin-bottom: 30px;
}

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

.link-btn>a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 46px;
  font-weight: 700;
  box-sizing: border-box;
  border-radius: 30%;
  font-size: 1.4rem;
}

.link-btn>a {
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: #00a0a0;
  border: 1px solid #00a0a0;
  background: rgba(255, 255, 255, .8);
}

.link-btn>a>i {
  margin-right: 5px;
}

.blur-blue {
  width: 100%;
  height: 0;
  padding-top: 100%;
  background: url('../img/common/blur-blue.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: .6;
  filter: blur(5px);
}

.bg-line {
  width: 100%;
  height: auto;
}

.font-red {
  color: #A0522D;
}

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

#loading_box {
  width: 100%;
  height: auto;
}

#loading_box img {
  display: block;
  width: 100%;
  max-width: 260px;
  height: auto;
  margin: 0 auto;
}

/*----------------------------------------------------
  header
----------------------------------------------------*/
header {
  width: 100%;
  height: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

#header01 {
  width: 100%;
  height: auto;
  margin: 0 auto;
  box-sizing: border-box;
  transition: 1s cubic-bezier(.4, 0, .2, 1);
  background: none;
}

.scroll #global-nav {
  background: none;
}

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

#global-nav {
  width: 100%;
  height: 80px;
  position: relative;
  color: #fff;
}

.global-nav {
  width: 90%;
  height: 80px;
  box-sizing: border-box;
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
}

.global-nav-logo {
  width: 156px;
  height: 42px;
  margin-left: 90px;
  transition: 1s linear;
}

.global-nav-logo__scroll {
  display: none;
  transition: 1s linear;
}

.scroll .global-nav-logo__fixed {
  display: none;
  transition: 1s linear;
}

.scroll .global-nav-logo__scroll {
  display: block;
  transition: 1s linear;
}

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

.header-contact {
  display: flex;
  margin-left: auto;
}

.header-contact>a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 46px;
  font-weight: 700;
  box-sizing: border-box;
  border-radius: 30%;
  font-size: 1.4rem;
  transition: all 1s cubic-bezier(0, .91, 1, 1);
}

.header-contact-web {
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: #00a0a0;
  border: 1px solid #00a0a0;
  background: rgba(255, 255, 255, .8);
}

.header-contact>a>i {
  margin-right: 5px;
}

/*----------------------------------------------------
  #nav-toggle
----------------------------------------------------*/
#nav-toggle {
  width: 60px;
  height: 60px;
  position: fixed;
  top: 10px;
  left: 5%;
  z-index: 1001;
  cursor: pointer;
}

.menu-trigger,
.menu-trigger span {
  transition: all .4s;
  box-sizing: border-box;
  position: relative;
}

.menu-trigger {
  width: 60%;
  height: 40%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.menu-trigger span {
  position: absolute;
  left: 50%;
  width: 100%;
  height: 1px;
  transform: translate(0, -50%);
  background-color: #001616;
}

.scroll .menu-trigger span {
  background: #001616;
}

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

.menu-trigger span:nth-of-type(1)::before {
  display: block;
  content: '';
  width: 6px;
  height: 6px;
  background: #fff;
  border: 1px solid #001616;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  -webkit-animation: toggleAnim1 4s 0s ease infinite;
  animation: toggleAnim1 4s 0s ease infinite;
}

.active span:nth-of-type(1)::after {
  display: block;
  content: '';
  width: 6px;
  height: 6px;
  background: #fff;
  border: 1px solid #001616;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 100%;
  transform: translate(-50%, -50%);
  -webkit-animation: toggleAnim2 4s 0s ease infinite;
  animation: toggleAnim2 4s 0s ease infinite;
}

@keyframes toggleAnim1 {
  0% {
    background: #fff;
  }

  49% {
    background: #fff;
  }

  50% {
    background: #001616;
  }

  100% {
    background: #001616;
  }
}

.menu-trigger span:nth-of-type(2) {
  top: 50%;
  left: 0;
}

.menu-trigger span:nth-of-type(3)::before {
  display: block;
  content: '';
  width: 6px;
  height: 6px;
  background: #fff;
  border: 1px solid #001616;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 100%;
  transform: translate(-50%, -50%);
  -webkit-animation: toggleAnim2 4s 0s ease infinite;
  animation: toggleAnim2 4s 0s ease infinite;
}

.active span:nth-of-type(3)::before {
  display: none;
}

@keyframes toggleAnim2 {
  0% {
    background: #001616;
  }

  49% {
    background: #001616;
  }

  50% {
    background: #fff;
  }

  100% {
    background: #fff;
  }
}

.menu-trigger span:nth-of-type(3) {
  top: calc(100% - 1px);
  left: 3px;
}

#nav-toggle.active span {
  position: absolute;
  left: 15%;
  background: #fff;
}

#nav-toggle.active span:nth-of-type(1) {
  top: -12px;
  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: 29px;
  -webkit-transform: translateY(-20px) rotate(45deg);
  transform: translateY(-20px) rotate(45deg);
}

/*----------------------------------------------------
  overlay
----------------------------------------------------*/
.overlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 30%;
  height: 100vh;
  overflow-y: auto;
  overflow-y: auto;
  transform: translateX(-100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    transform .3s cubic-bezier(0, 0.55, 0.45, 1),
    opacity .3s cubic-bezier(0, 0.55, 0.45, 1),
    visibility 0s .3s,
    pointer-events 0s .3s;
  z-index: 1000;
  background: #1a1a1a;
}

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

.overlay.is-open {
  width: 30%;
  height: 100vh;
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    transform .3s cubic-bezier(0, 0.55, 0.45, 1),
    opacity .3s cubic-bezier(0, 0.55, 0.45, 1),
    visibility 0s 0s,
    pointer-events 0s 0s;
}

.navWrap {
  width: 100%;
  height: auto;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 80px 60px;
  box-sizing: border-box;
}

nav {
  width: 90%;
  height: auto;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  margin-right: 5%;
}

.overlay_logo {
  width: 40%;
  height: auto;
  margin-bottom: 20px;
}

.overlay_logo>a,
.overlay_logo>a>img {
  display: block;
  width: 100%;
  height: auto;
}

nav>ul {
  width: 100%;
  height: auto;
  list-style: none;
  margin-bottom: 30px;
}

nav>ul>li {
  width: 100%;
  height: 56px;
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, .2);
  letter-spacing: 0.1em;
  font-weight: 500;
}

nav>ul>li>a,
nav>ul>li>p {
  width: 100%;
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  color: #fff !important;
  padding: 0 8px;
  box-sizing: border-box;
}

nav>ul>li>p {
  cursor: pointer;
}

.global-nav-menu-list {
  width: 95%;
  height: auto;
  margin-left: auto;
  list-style: none;
  color: #fff !important;
}

.global-nav-menu-list>li>a {
  height: 50px;
  border-top: 1px solid rgba(255, 255, 255, .2);
}

.nav-contact {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}

.nav-contact>a {
  height: 80px;
  line-height: 1.6;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  color: #fff;
  border-radius: 8px;
}

.nav-contact-web,
.nav-contact-tel {
  width: 49%;
}

.nav-contact-web {
  background: #B0C4DE;
}

/*----------------------------------------------------
  top-navWrap
----------------------------------------------------*/

.top-navWrap {
  width: 60%;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding-left: 5%;
  position: relative;
  z-index: 1000;
}

.top-nav {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
}

.top-nav>li {
  height: 100%;
}

.top-nav>li>a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0 12px;
}

.link-ex::after {
  display: block;
  content: '';
  width: 10px;
  height: 10px;
  background: url(../icon/arrow--right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(-45deg);
  margin-left: 3px;
}

/*----------------------------------------------------
  #contact
----------------------------------------------------*/
#contact {
  width: 100%;
  height: auto;
  padding: 150px 0;
  position: relative;
  background-color: #0c0c0c;
  overflow: hidden;
}

.contact-circle {
  width: 100%;
  height: auto;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, 0);
  animation: rotation2 80s linear infinite;
  mix-blend-mode: difference;
  opacity: .2;
}

.contact-circle::after {
  display: block;
  content: '';
  width: 100%;
  height: 0;
  padding-top: 100%;
}

.contact-circle>img {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}

@keyframes rotation2 {
  0% {
    transform: translate(-50%, 0) rotate(0);
  }

  100% {
    transform: translate(-50%, 0) rotate(360deg);
  }
}

.contact {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-cols {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-img {
  width: 45%;
  height: auto;
  transition: all 5s cubic-bezier(0, .91, 1, 1);
}

.contact-inner {
  width: 45%;
  height: auto;
  color: rgba(255, 255, 255, .8);
}

.contact-title {
  width: 80%;
  margin-bottom: 40px;
}

.contact-title>h2 {
  width: 100%;
  height: auto;
}

.contact_lead {
  width: 100%;
  margin-bottom: 20px;
}

.contact_lead>p {
  font-size: 2.4rem;
}

.contact_text {
  margin-bottom: 20px;
}

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

.contact_link>a {
  width: 100%;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #545454;
  border-image: linear-gradient(45deg, #846E50 0%, #DBD5CD 50%, #A0522D 100%);
  border-image-slice: 1;
}

.contact_link>a:nth-of-type(n+2) {
  margin-top: 14px;
}

.contact_link>a>span {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;

}

.contact_link>a>span>img {
  width: auto;
  height: 56px;
}

.contact_link_S {
  font-size: 1.1rem;
  margin-top: 3px;
}

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

.footer01 {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  background: #1a1a1a;
  color: #fff;
}

.footer01 a {
  color: #fff;
}

.footer-body {
  width: 90%;
  height: auto;
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 0;
  font-size: 1.4rem;
}

.footer-col {
  display: flex;
  justify-content: space-between;
}

.footer-logo {
  width: 200px;
}

.footer-logo h2 {
  font-size: 1.2rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 8px;
  padding-left: 20px;
  box-sizing: border-box;
}

.footer-nav {
  width: auto;
  box-sizing: border-box;
  margin-top: 40px;
}

.footer-nav>ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin-bottom: 14px;
}

.footer-nav>ul>li>a {
  padding: 0 14px;
  letter-spacing: .075em;
}

.footer-link {
  width: 100%;
}

.footer-link-btn {
  margin-left: auto;
}

.footer-link-btn>a {
  background: rgba(0, 0, 0, .2);
  margin-left: auto;
}

.copyright {
  text-align: center;
  font-size: 1rem;
  padding: 5px 0;
}

.copyright>br {
  display: none;
}

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

  h1 {
    width: 95%;
    max-width: initial;
  }
}

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

@media screen and (max-width: 1024px) {
  .overlay.is-open {
    width: 50%;
  }


  .navWrap {
    flex-direction: column;
    max-width: 520px;
    margin: 0 auto;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  nav {
    width: 100%;
    max-width: initial;
    overflow-y: hidden;
    -ms-overflow-style: initial;
    scrollbar-width: initial;
    margin-right: initial;
  }

  .nav-inner {
    width: 100%;
    max-width: initial;
  }
}

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

  section:not(.fv) {
    padding: 150px 0;
  }

  .top-navWrap {
    visibility: hidden;
  }

  /*--- #footer ---*/
  .footer-body {
    width: 70%;
  }

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

  .footer-nav {
    width: 100%;
    align-items: flex-start;
    padding-top: 20px;
    margin: 20px auto;
    border-top: 1px solid rgba(255, 255, 255, .4);
  }

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

  .footer-link-btn>a {
    margin: 0 auto;
  }
}

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

  /*--- #footer ---*/
  .footer-body {
    width: 80%;
  }
}

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

  .global-nav-logo {
    margin: 0 auto;
  }

  .header-contact>a {
    width: 80px;
  }

  .header-contact>a>span {
    display: none;
  }

  .header-contact>a>i {
    margin-right: 0;
  }

  #nav-toggle {
    margin-left: auto;
  }

  .overlay.is-open {
    width: 100%;
    min-width: initial;
  }

  /*--- #footer ---*/
  .footer-body {
    width: 85%;
  }

  .footer-ttl {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }

  .footer-logo {
    width: 50%;
    height: auto;
    margin-right: initial;
    margin-bottom: 10px;
  }

  .footer-nav {
    padding-top: 30px;
    margin-top: 30px;
  }
}

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

  body {
    font-size: 1.4rem;
    line-height: 1.8;
  }

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

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

  /*---共通項目---*/
  #stkr {
    display: none;
  }

  section:not(.fv) {
    padding: 100px 0;
    position: relative;
  }

  .ttl {
    margin-bottom: 30px;
  }

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

  .p-lead {
    font-size: 2rem;
  }

  /*---loading---*/
  #loading_box img {
    display: block;
    width: 50%;
    max-width: initial;
  }


  /*---heading---*/
  #heading>h1 {
    letter-spacing: 0;
  }

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

  /*---header---*/
  .global-nav-logo {
    width: auto;
  }

  .global-nav-logo>a {
    display: block;
  }

  .navWrap {
    padding: 80px 7.5%;
  }

  nav>ul>li>a,
  nav>ul>li>p,
  .global-nav-menu-list>li>a {
    font-size: 1.6rem;
  }

  .global-nav-menu-list>li>a {
    font-size: 1.4rem;
  }

  .header-contact {
    margin-left: initial;
    position: absolute;
    right: 2.5%;
    top: 50%;
    transform: translate(0, -50%);
  }

  .header-contact>a {
    width: 40px;
    height: 32px;
  }

  .nav-contact>a {
    height: 62px;
  }

  .nav-contact-cols>svg {
    width: 30px;
    margin-right: 5px;
  }

  .nav-contact-main {
    font-size: 1.4rem;
  }

  .nav-contact-sub {
    font-size: 1.1rem;
  }

  #nav-toggle {
    height: 60px;
  }

  .toggle-text {
    display: none;
  }

  /*---top-navWrap ---*/
  .top-navWrap {
    height: 80px;
  }

  /*--- footer ---*/
  .footer-logo {
    width: 62.5%;
  }

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

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

  .footer-nav>ul>li {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .copyright {
    font-size: 1rem;
    margin-bottom: 75px;
  }

  .copyright>span {
    display: none;
  }

  .copyright>br {
    display: block;
  }
}