/* ================

================*/
html { scroll-behavior: smooth; 
  scroll-padding-top: 66px; }

:root{
  --color-black: #222;
  /* --color-gray: #aaa; */
  --color-white: #fff;
  --color-base: #ffebcd50;
}

figure{
  text-align: center;
  overflow: hidden;
}

img{
  max-width: 100%;
  height: auto;
}

/* ========== クラスタ名でスタイル ========== */


/* クラス名でスタイル */
.paragraph{
  line-height: 1.7;
}

.paragraph + .paragraph{
  margin-top: .5em;
}

.t-left{
  text-align: left;
}

.nowrap{
  display: inline-block;
}

/* フォント */
/* .font-rampartone{ font-family: "Rampart One", sans-serif;} */
/* ========== サイト全体&メイン ========== */

.global-container * {
  box-sizing: border-box;
  transition: all .5s ease;
}

.global-container {
  position: relative;
  font-size: 16px;
  line-height: 1.5;
  background-color: var(--color-base);
  font-family: "Mochiy Pop One", sans-serif;
  letter-spacing: .03em;
}

.site-area{
  max-width: 768px;
  min-width: 375px;
  margin: auto;
}

main{
  text-align: center;
}

@media (max-width: 768px){
  .global-container{
    font-size: 14px;
  }
}

/* ========== ヘッダー ========== */
header{
  position: -webkit-sticky; /* Safari用 */
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: var(--color-black);
  color: var(--color-white);
}

header .unit-box{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 1rem;
  max-width: 768px;
  margin: auto;
  padding: .5rem 1rem;
  padding-right: 1.5rem;
}

header .top-logo{
  display: block;
  width: 50px;
}

header .menu{
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  width: calc(100% - 1rem - 50px);
  gap: .3rem 1rem;
  font-size: 90%;
}

header .menu.sp{
  display: none;
}

@media (max-width: 480px){
  header .menu.pc{
    display: none;
  }

  header .menu.sp{
    display: flex;
    gap: .3rem .5rem;
  }

}


/* ========== フッター ========== */
footer{
  padding: 1.5rem 0;
  background-color: var(--color-black);
  color: var(--color-white);
}

footer .sns-box{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  gap: .5rem 1.5rem;
  font-size: 120%;
  text-align: center;
}

@media (max-width: 768px){
  footer .sns-box {
    max-width: 300px;
    margin: auto;


  }
}

footer .copyrights{
  display: flex;
  justify-content: center;
  gap: .5rem 1rem;
  margin-top: 1rem;
  font-size: 85%;
}