@charset "utf-8";

/* 共通部分 */

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  background: #16657a;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

p {
  font-size: 0.75rem;
  line-height: 1.8;
}

.container {
  padding: 0 .75rem;
}

.glightbox,
.btn,
.main-nav a {
  cursor: pointer;
}

/* フォント */

.font-urbanist {
  font-family: "Urbanist", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.025em
}

.font-biz-udpgothic {
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #353535;
}

.txt-lightgray {
  color: #ababab;
}

/* ボタン */

.btn {
  flex: 1;
  text-align: center;
  display: inline-block;
  background: #16657a;
  font-size: 1.1rem;
  color: #fff;
  border-radius: 32px;
  padding: .75rem 0;
  transition: .25s;
}

.btn:hover {
  background: #104d5d;
}

.ContactForms-button {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  padding: 0 3rem;
  max-width: 400px;
  margin: 1.5rem auto 0;
}

.shop-button {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 2rem;
  max-width: 600px;
  margin: 1.5rem auto 0;
}

/* ヘッダー */

.page-header {
  margin-bottom: 28rem;
}

.page-header a {
  color: #fff;
}

.page-title {
  padding-top: 1rem;
  font-size: 3rem;
}

/* ナビメニュー */

.main-nav {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 1.1rem;
  list-style: none;
  background: #16657a;
  border-radius: 24px;
  padding: calc(.75rem + env(safe-area-inset-top)) 1rem .75rem;
  margin-bottom: 1rem;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
}

.main-nav li {
  text-align: center;
}

nav {
  position: sticky;
  top: 0.5rem;
  z-index: 100;
  padding: 0 .5rem;
}

.sidebar {
  display: contents;
}

/* 背景 */

body::before {
  content: '';
  position: fixed;
  top: 28%;
  left: 50%;
  width: 160vw;
  height: 160vw;
  background-image: url(../images/top_space.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(-50%, -50%);
  animation: rotate 180s linear infinite;
  z-index: -1;
}

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

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

/* メイン */

.section {
  background: white;
  border-radius: 16px;
  margin-top: .35rem;
  padding: 1rem 0.5rem 1.75rem;
  scroll-margin-top: 60px;
}

.section h2 {
  color: #16657a;
  padding: 0 .5rem;
}

.section h3 {
  color: #16657a;
  margin-top: 1rem;
  padding: 0 .5rem;
}

.section p {
  margin-top: 1rem;
  padding: 0 .75rem;
}

/* メイン/Works */

.grid {
  display: grid;
  gap: .5rem .5rem;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
  margin-top: 1rem;
}

.grid img {
  width: 100%;
  height: auto;
  display: block;
}

.logo-hikari {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.logo-hikari img {
  width: 350px;
  max-width: 100%;
  height: auto;
}

.glightbox-clean .goverlay,
.goverlay {
  background: rgba(0, 0, 0, 0.85);
}

.gslide-image img {
  max-width: calc(100vw - 4rem);
}

.gslide-title {
  font-size: 0.8rem !important;
  text-align: center;
}

/* メイン/LINEスタンプ */

.bn-lineStamp {
  background: transparent;
  padding: 0;
}

.bn-lineStamp img {
  border-radius: 16px;
  width: 100%;
  height: auto;
  display: block;
}

.bn-lineStamp-side {
  display: none;
}

/* メイン/About */

.profile {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}

.doubutsu {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: .75rem;
}

.doubutsu .profile {
  justify-content: flex-start;
  width: 200px;
}

.profile img {
  border-radius: 30px;
  border: 1px solid #d7d7d7;
}

.profile .p-obake {
  font-size: 1rem;
  color: #353535;
}

.profile .p-doubutsu {
  color: #353535;
}

.profile p {
  margin-top: 0;
}

.SNS {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.75rem;
}

/* フッター */

.copyright {
  text-align: center;
  padding: 2rem 0;
  color: #fff;
}

/* デスクトップ版 */
@media(min-width: 768px) {

  /* 共通 */
  p {
    font-size: 1rem;
  }

  /* 背景 */

  body::before {
    top: 20%;
    left: 80%;
    width: 90vw;
    height: 90vw;
  }

  /* ヘッダー */

  .page-header {
    margin: 0;
  }

  /* サイドバー */

  .page-title {
    font-size: 3rem;
  }

  .sidebar {
    position: sticky;
    top: 0;
    width: 22%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    padding-top: 2rem;
  }

  nav {
    position: static;
    /* stickyを解除 */
    width: 100%;
  }

  .main-nav {
    flex-direction: column;
    background: transparent;
    border-radius: 0;
    gap: 2rem;
    padding: 0;
    margin-top: 3rem;
    font-size: 1.75rem;
  }

  /* メイン */

  .container {
    display: flex;
    align-items: flex-start;
  }

  .section {
    padding: 1rem 1rem 2.5rem;
    margin-top: 1rem;
    scroll-margin-top: 150px;
  }

  main {
    width: 78%;
    margin-top: 8rem;
  }

  .section h2 {
    font-size: 2.25rem;
  }

  .section h3 {
    font-size: 2.25rem;
  }

  .grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem 1rem;
    margin-top: 1.5rem;
  }

  .gslide-image img {
    max-width: 50vw;
    max-height: 80vh;
    width: auto;
    height: auto;
  }

  .glightbox-clean .gslide-description {
    background: transparent;
  }

  .glightbox-clean .gslide-title {
    color: #fff;
  }

  .logo-hikari img {
    width: 580px;
    max-width: 100%;
    height: auto;
  }

  .shop-button {
    gap: 1rem;
  }

  .btn {
    font-size: 1.5rem;
    border-radius: 60px;
    padding: 1.25rem 0;
  }

  .profile img {
    width: 90px;
    height: 90px;
    border-radius: 45px;
  }

  .doubutsu {
    flex-direction: row;
    gap: 2rem;
    justify-content: center;
  }

  .doubutsu .profile {
    justify-content: flex-start;
    gap: 0.5rem;
  }

  .SNS img {
    width: 50px;
    height: 50px;
    margin-top: 2rem;
  }

  /* LINEスタンプ */

  .bn-lineStamp-side {
    display: block;
    margin-top: 3rem;
    text-align: center;
  }

  .bn-lineStamp-side img {
    border-radius: 16px;
    width: 110px;
    height: auto;
  }

  .bn-lineStamp {
    display: none;
  }
}