@charset "utf-8";

/* ---------------------------------------------------
 * base
/* ---------------------------------------------------*/

html {
    font-size: 62.5%;
    /*適宜変更お願いします*/
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    text-align: center !important;
    font-size: 10px;
    font-family: 'Noto Sans JP', YuGothic, 'Yu Gothic', 'ヒラギノ角ゴシック', 'Hiragino Sans', sans-serif;
    color: #000000;
    line-height: 1.75;
    width: 100%;
    background-color: #fff;
    font-weight: 400;
    /*適宜変更お願いします*/
    font-feature-settings: "palt" 1;
    /*自動カーニング*/
}

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

a {
    color: #fff;
}

a:hover {
    /*opacity: 0.8;*/
    text-decoration: none;
}

p {
    text-align: justify;
    hanging-punctuation: allow-end;
    /*文字のぶら下げ*/
}

#footer {
    text-align: center;
}

/* =========================
追従ヘッダー
========================= */

.header_fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: rgba(0,0,0,0.9);
    transition: 0.4s;
    z-index: 99999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header_inner {
    max-width: none;
	width: 100%;
    margin: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
	padding: 0 50px;
	position: relative;
}

/* ナビ */

.header_nav {
    margin-left: auto;
}

.header_btn {
    margin-left: 50px;
}

.header_btn img {
    width: 180px;
    height: auto;
	margin-left: 20px;
}
.header_nav ul {
    display: flex;
    gap: 60px;
}

.header_nav li {
    list-style: none;
}

.header_nav a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    text-align: center;
    display: block;
	line-height: 1.4;
}

.header_nav span {
    font-size: 11px;
    color: #fff;
}

/* ヘッダー分だけ下げる（重要） */
body {
    padding-top: 60px;
}

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

    body {
        padding-top: 60px;
    }

}

/* ハンバーガー（PCでは非表示） */
.hamburger {
  display: none;
  width: 30px;
  height: 22px;
  position: relative; 
  left: auto;
  top: auto;
  transform: none;
}

.hamburger span {
  position: absolute;
  width: 18px;
  height: 1.5px;
  background: #fff;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s;
}

.hamburger span:nth-child(1) { top: 4px; }
.hamburger span:nth-child(2) { top: 10px; }
.hamburger span:nth-child(3) { top: 16px; }

/* スマホ用 */
@media (max-width: 768px) {
	
.header_inner {
  padding: 0 15px;
}	

.hamburger {
    display: block;
  }
	
.header_btn {
    margin-left: auto;
  }	

.header_nav {
    position: fixed;
    top: 0;
    left: -100%;
	right: auto;
    width: 260px;
    height: 100vh;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
    transition: left 0.4s ease;
    padding-top: 80px;
  }

.header_nav ul {
    flex-direction: column;
  }

.header_nav li {
    margin: 20px;
  }

  /* 開いた状態 */
.header_nav.active {
    left: 0;
  }

}

/* バツに変形 */
.hamburger.active span:nth-child(1) {
  transform: translateX(-4px) rotate(45deg);
  top: 10px;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateX(-4px) rotate(-45deg);
  top: 10px;
}

/* ハンバーガー */
.hamburger {
  width: 40px;
  height: 40px;
  position: relative;
  cursor: pointer;
  z-index: 9999;
}

/* 3本線 */
.hamburger span {
  position: absolute;
  left: 24px;
  width: 24px;
  height: 1px;
  background: #fff;
  transition: 0.3s;
}

/* 上線 */
.hamburger span:nth-child(1) {
  top: 12px;
}

/* 中線 */
.hamburger span:nth-child(2) {
  top: 19px;
}

/* 下線 */
.hamburger span:nth-child(3) {
  top: 26px;
}


/* ===== クリック後（active）===== */
.hamburger.active span:nth-child(1) {
  top: 19px;
  transform: translateX(-7px) rotate(45deg);
}

/* 下 → 斜め（左に5pxずらす） */
.hamburger.active span:nth-child(3) {
  top: 19px;
  transform: translateX(-7px) rotate(-45deg);
}



/* ---------------------------------------------------
 * common（PC　min-width: 1023px）
/* ---------------------------------------------------*/
.wrap {
    width: 100%;
}

.container {
    position: relative;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.container img {
    width: 100%;
}

.-pc {
    display: block;
}

.-sp {
    display: none;
}

/* 暗くするとき */
.image_link:hover{
  filter: brightness(0.6); 
}

html {
    scroll-behavior: smooth;
}

.pagetop {
    height: 48px;
    width: 48px;
    position: fixed;
    right: 30px;
    bottom: 18px;
    background: #fff;
    border-radius: 14px;
	border: 1.4px solid #2b2b2b;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    color: #2b2b2b;
    font-size: 10px;
    font-weight: bold;
    text-decoration: none;
	line-height: 1;

    z-index: 1000;
}

/* 矢印（疑似要素） */
.pagetop::before {
    content: "";
    width: 10px;
    height: 10px;
    border-top: 2px solid #2b2b2b;
    border-right: 2px solid #2b2b2b;
    transform: rotate(-45deg);
    margin-bottom: 2px;
}

.btn_insta{
   position: absolute;
   z-index:999;
   top:88%;
   right:15%;
   left:0%;
   margin:auto;
   width:2%;
}

.btn_x{
   position: absolute;
   z-index:999;
   top:88.2%;
   right:8%;
   left:0%;
   margin:auto;
   width:2%;
}

.btn_youtube{
   position: absolute;
   z-index:999;
   top:88.7%;
   right:1%;
   left:0%;
   margin:auto;
   width:2%;
}

.btn_area5{
   position: absolute;
   z-index:999;
   top:80%;
   right:0%;
   left:0%;
   margin:auto;
   width:10%;
}

.misakiyuta{
   position: absolute;
   z-index:999;
   top:7%;
   right:38%;
   left:0%;
   margin:auto;
   width:18%;
}
	
.aokikouji{
   position: absolute;
   z-index:999;
   top:7%;
   right:0%;
   left:0%;
   margin:auto;
   width:18%;
}
	
.shimiken{
   position: absolute;
   z-index:999;
   top:7%;
   right:0%;
   left:38%;
   margin:auto;
   width:18%;
}

.btn_back{
   position: absolute;
   z-index:999;
   top:39%;
   right:0%;
   left:0%;
   margin:auto;
   width:9%;
}


.btn_free{
   position: absolute;
   z-index:999;
   top:25%;
   right:0%;
   left:0%;
   margin:auto;
   width:28%;
}

.btn_33000{
   position: absolute;
   z-index:999;
   top:70%;
   right:0%;
   left:0%;
   margin:auto;
   width:28%;
}

.btn_top{
   position: absolute;
   z-index:999;
   top:35%;
   right:0%;
   left:70%;
   margin:auto;
   width:50%;
}



#footer a {
        color: #000000;
    }

*,
*::before,
*::after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    /*親要素のbox-sizingを継承*/
}

/*-----------------タブレットサイズ-----------------------
@media (min-width: 600px) and (max-width: 1023px) {
    body {
        font-size: 3.2rem;
    }
    .-pc {
        display: none;
    }
    .-sp {
        display: block;
    }
    .wrap {
        max-width: 100%;
        width: 100%;
    }
}
----------------------------------------*/

/*-----------------スマホサイズ-----------------------*/

@media screen and (max-width:600px) {
    .-pc {
        display: none;
    }

    .-sp {
        display: block;
    }

    body {
        font-size: 4.2vw;
    }

    .wrap {
        max-width: 100%;
        width: 100%;
    }
	
/* 暗くするとき */
.image_link:hover{
  filter: brightness(0.6); 
}

html {
    scroll-behavior: smooth;
}	
	
.pagetop {
    height: 42px;
    width: 42px;
    position: fixed;
    right: 14px;
    bottom: 12px;
    background: #fff;
    border-radius: 12px;
	border: 1.4px solid #2b2b2b; 

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    color: #2b2b2b;
    font-size: 10px;
    font-weight: normal;
    text-decoration: none;
	line-height: 1;

    z-index: 1000;
}

/* 矢印（疑似要素） */
.pagetop::before {
    content: "";
    width: 10px;
    height: 10px;
    border-top: 1px solid #2b2b2b;
    border-right: 1px solid #2b2b2b;
    transform: rotate(-45deg);
    margin-bottom: 2px;
}
	
.btn_top{
   position: absolute;
   z-index:999;
   top:8%;
   right:0%;
   left:60%;
   margin:auto;
   width:30%;
}
	
.btn_insta{
   position: absolute;
   z-index:999;
   top:92%;
   right:32%;
   left:0%;
   margin:auto;
   width:8%;
}

.btn_x{
   position: absolute;
   z-index:999;
   top:92.2%;
   right:0%;
   left:0%;
   margin:auto;
   width:8%;
}

	
.btn_youtube{
   position: absolute;
   z-index:999;
   top:92.4%;
   right:0%;
   left:30%;
   margin:auto;
   width:7.9%;
}
	
.misakiyuta{
   position: absolute;
   z-index:999;
   top:1.8%;
   right:0%;
   left:0%;
   margin:auto;
   width:81%;
}
	
.aokikouji{
   position: absolute;
   z-index:999;
   top:35%;
   right:0%;
   left:0%;
   margin:auto;
   width:81%;
}
	
.shimiken{
   position: absolute;
   z-index:999;
   top:68.3%;
   right:0%;
   left:0%;
   margin:auto;
   width:81%;
}
	
.btn_back{
   position: absolute;
   z-index:999;
   top:30%;
   right:0%;
   left:0%;
   margin:auto;
   width:40%;
}
	

.btn_free{
   position: absolute;
   z-index:999;
   top:30%;
   right:0%;
   left:0%;
   margin:auto;
   width:80%;
}

.btn_33000{
   position: absolute;
   z-index:999;
   top:68%;
   right:0%;
   left:0%;
   margin:auto;
   width:80%;
}
	

	
    #footer {
        text-align: center;
        font-size: 0.8em;
        padding: 1em;
        margin-bottom: 10px;
    }

    #footer a {
        color: #000000;
    }

    section#section-01,
    section#section-02,
    section#section-03,
    section#section-04,
    section#section-05,
    section#section-06,
    section#section-07,
    section#section-08,
    section#section-09,
    section#section-10,
    section#section-11,
    section#section-12,
    section#section-13,
    section#section-14,
    section#section-15,
    section#section-16,
    section#section-17,
    section#section-18,
    section#section-19,
    section#section-20,
    section#section-21,
    section#section-22,
    section#section-23,
    section#section-24,
    section#section-25,
    section#section-26,
    section#section-27,
    section#section-28,
    section#section-29,
    section#section-30,
    section#section-31,
    section#section-32,
    section#section-33,
    section#section-34,
    section#section-35,
    section#section-36,
    section#section-37,
    section#section-38,
    section#section-39,
    section#section-40,
    section#section-41,
    section#section-42,
    section#section-43,
    section#section-44,
    section#section-45,
    section#section-46,
    section#section-47,
    section#section-48,
    section#section-49,
    section#section-50 {
        background: none !important;
    }
}

/*----------------------------------------*/