@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Noto+Serif+JP:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/*
font-family: 'Noto Sans JP', sans-serif;
font-family: 'Noto Serif JP', serif;
*/
* {
  box-sizing: border-box;
  /*word-break: break-all;*/
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html {
  font-size: 10px;
}
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  /*color: #4d4d4d;*/
  line-height: 1.7;
  /*text-align: justify;*/
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  letter-spacing: 0.05em;
  background-image: #fff;
}
section {
  overflow-x: hidden; /* 横方向のスクロールを防止 */
}
/* ページトップ */
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  /*background-color: #0F1047;
    border-radius: 5px;
    width: 50px;
    height: 50px;
    color: #fff;*/
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  /* font-size:0.6rem; */
  transition: all 0.3s;
  font-size: 10px;
}
#page-top a:hover {
  /*background-color: #B12F00;*/
}
/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 9992;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}
/*　上に上がる動き　*/
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
#page-top a i {
  font-size: 25px;
}
/*ハンバーガーメニュー*/
.hamburger-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 9999;
  overflow: visible;
}
.hamburger-icon {
  width: 35px;
  height: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.hamburger-icon span {
  display: block;
  height: 4px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger-menu.open .hamburger-icon span:nth-child(1) {
  transform: rotate(45deg) translate(8.5px, 8.5px);
}
.hamburger-menu.open .hamburger-icon span:nth-child(2) {
  opacity: 0;
}
.hamburger-menu.open .hamburger-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(8.5px, -8.5px);
}
.hamburger-nav {
  position: absolute;
  top: 50px;
  right: 0;
  width: 200px;
  padding: 10px;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
  z-index: 9999;
  box-sizing: border-box;
}
.hamburger-menu.open .hamburger-nav {
  transform: scaleY(1);
}
.hamburger-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hamburger-nav li {
  margin: 10px 0;
  text-align: center;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}
.hamburger-nav li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.hamburger-nav a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
}
/* スマホ対応 */
@media (max-width: 576px) {
  .hamburger-nav {
    width: calc(100% - 40px);
    left: auto;
    right: 20px;
  }
}
/* footer ボタン */
.footer-btn-s {
  display: none;
}
.footer-btn-s.active {
  display: block;
  animation: UpAnime 0.5s forwards;
}
.footer-btn-s {
  position: fixed;  
  bottom: 0;  
  width: 100%;
  /*max-width: 575px;*/
  z-index: 92;
	
}
.footer-btn {  
  display: flex;
  align-items: center;
  justify-content: center;	
}
.footer-btn a {
  color: #fff;
  font-size: 1.5vw;
}
.footer-btn li:first-of-type {
	width: 100%;
	background-color: #CA5475;
	padding: 10px 0;
	text-align: center;
}
/*.footer-btn li:nth-of-type(2) {
  width: 45%;
  background-color: rgba(42, 188, 0, 1.00);
  padding: 10px 0;
  text-align: center;
}
.footer-btn li:nth-of-type(3) {
  width: 10%;
  background: rgb(24, 24, 24);
  padding: 10px 0;
  text-align: center;
  opacity: .9;  
}*/
@media screen and (max-width: 767px) {
  .footer-btn a {
    font-size: 2.1vw;
  }
}
@media screen and (max-width: 575px) {
  .footer-btn a {
    font-size: 3.3vw;
  }
}