@charset "UTF-8";

/*基本 */

html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Avenir','Helvetica Neue','Helvetica','Arial','Hiragino Sans','ヒラギノ角ゴシック',YuGothic,'Yu Gothic','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
  position: relative;
}
ul {
  padding-left: 0;
}
li {
  list-style: none;
}
.p-rel {
  position: relative;
}

.sp-block {
  display: none;
}
button{
  cursor: pointer;
}
.sp-none {
  display: block;
}
.sp-flex{
  display: none;
}
.sp-none-flex{
  display: flex;
}

.inner {
  margin: 0 auto;
  display: block;
  max-width: 1000px;
  width: 100%;
}
.inner800 {
  margin: 0 auto;
  display: block;
  max-width: 800px;
  width: 100%;
}
.inner1000 {
  margin: 0 auto;
  display: block;
  max-width: 1000px;
  width: 100%;
}
.inner1200 {
  margin: 0 auto;
  display: block;
  max-width: 1200px;
  width: 100%;
}
.inner1510 {
  margin: 0 auto;
  display: block;
  max-width: 1510px;
  width: 100%;
}

/* フォント*/
.title1{
    font-size:6vw;
    position: relative;
    overflow: hidden;
    line-height: 1.2;
}
.title1.serif{
  font-size:4vw;
  font-family: serif;
}
.title1::after{
    content:"" ;
    position: absolute;
    top: 50%;
    height: 2px;
    width: 60vw;
    background-color: #fff;
}
.title1.c_black::after{
    content:"" ;
    position: absolute;
    top: 50%;
    height: 2px;
    width: 60vw;
    background-color: #000;
}
.title1 span{
    color:#F50313 ;
}
.sub1{
    font-size: 1.8vw;
    font-weight: bold;
    line-height: 2;
}
.sub2{
    font-size: 1.5vw;
    margin-bottom: 4vw;
}


.bold {
  font-weight: 500;
}

.l-height2 {
  line-height: 2;
}

/* 色 */
.c_black {
  color: #000;
}
.c_white{
  color: #fff;
}

/* 余白 */
.mt10 {
  margin-top: 10px;
}
.mt20 {
  margin-top: 20px;
}
.mt30 {
  margin-top: 30px;
}
.mt50 {
  margin-top: 50px;
}
.mt68 {
  margin-top: 68px;
}
.mt112 {
  margin-top: 112px;
}
.mt128 {
  margin-top: 128px;
}
.mt200{
  margin-top: 200px;
}

.mb10 {
  margin-bottom: 10px;
}
.mb12 {
  margin-bottom: 12px;
}
.mb16{
  margin-bottom: 16px;
}
.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}
.mb32 {
  margin-bottom: 32px;
}
.mb48 {
  margin-bottom: 48px;
}
.mb50 {
  margin-bottom: 50px;
}
.mb56 {
  margin-bottom: 56px;
}
.mb60 {
  margin-bottom: 60px;
}
.mb80 {
  margin-bottom: 80px;
}
.mb96 {
  margin-bottom: 96px;
}
.mb104 {
  margin-bottom: 104px;
}
.mb120 {
  margin-bottom: 104px;
}
.mb184 {
  margin-bottom: 184px;
}
.pt144 {
  padding-top: 144px;
}
.pb200 {
  padding-bottom: 200px;
}

.txt-center {
  text-align: center;
}

/* リンク */
a {
  text-decoration: none;
}

a:hover {
  opacity: 0.9;
}
/* フレックス */
.-flex {
  display: flex;
}
.jc {
  justify-content: center;
}
.ja {
  justify-content: space-around;
}
.jb {
  justify-content: space-between;
}
.f-wrap {
  flex-wrap: wrap;
}
.al {
  align-items: center;
}

/* レイアウト */
.center {
  margin: 0 auto;
  display: block;
}

/* 追従ナビ */
.follow__nav{
  position:fixed;
  right: 0;
  bottom: 0;
  z-index: 99999;

}

.follow__nav li button{
  background-color: #8da5aa;
  border: none;
  font-size: 16px;
  width: 150px;
  height: 90px;
  justify-content: space-evenly;
  color: #fff;
}
.follow__nav li img{
  width: 32px;
}
.follow__nav li button.a{
  background-color: #849b9f;
}
.follow__nav li button.end{
  color: #000;
  font-family: "Noto Serif JP", serif;
}

/* パンくず */
.breadcrumb{
  padding-top: 0vw;
  font-size: 1rem;
}
.breadcrumb.policy{
  padding-top: 7vw;
}
.breadcrumbs{
  padding: 21px 0;
  padding-left: 36px;
  background-color: #f5f5f5;
}
.breadcrumb_arrow{
  width: 10px;
  margin:4px 10px 0 10px;
  display: inline;
}

/* スクロールダウンの位置 */
.scroll {
  position: absolute;
  left:0.3%;
  z-index: 99999;
  color: #fff;
  font-family: "Noto Serif JP",serif;
  top: 55%;
  writing-mode: vertical-rl;
}
/* 線のアニメーション部分 */
.scroll::before {
  animation: scroll 2s infinite;
  background-color: #fff;
  bottom: -115px;
  content: "";
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
  z-index: 2;
}
/* 線の背景色 */
.scroll::after {
  background-color: #ccc;
  bottom: -115px;
  content: "";
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}
.vertical {
  writing-mode: vertical-rl;
  text-orientation: upright;
}
/* ヘッダー */
header {
    background-color: #000;
    height:7vw;
    position: fixed;
    width: 100%;
    z-index: 99999999;
   align-items: center;
   justify-content: space-around;
  }
  
header .tel_area li,header .tel_area li a{
    color: #fff;
    font-size: 1.5vw;
    font-weight: 400;
}
.siteLogo {
  display: flex;
    align-items: center;
    justify-content: center;
}
.siteLogo img{
    width: 24vw;
}
.tel_area{
  margin-right: 8vw;
}
.hamburger_menu{
    background-color: #fff;
    border-radius: 50%;
    color: #F50313;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4vw;
    height: 4vw;
    font-size: 1vw;
}

.anime_wrap{
    position: relative;
    overflow: hidden;
}
.anime_wrap h1{
    position: absolute;
    /* top: 30px; */
    /* left: 30px; */
    bottom: 2vw;
    right: 2vw;
    display: flex;
    flex-wrap: wrap;
    width: 60vw;
    text-shadow: 3px 3px 8px #0c0c0c;
    border: none;
    font-size: 5vw;
    font-family: serif;
    color: #fff;
    font-weight: bold;
}


.custom-button {
    display: inline-flex;
    align-items: center;
    width: 100%;
    margin-top: 3vw;
    justify-content: center;
    gap: 10px; /* テキストと矢印の間の余白 */
    padding:21px 30px;
    background-color: #000; /* 背景色（黒） */
    color: #fff; /* テキスト色（白） */
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px; /* ボタンを丸くする */
    position: relative;
    overflow: hidden; /* 矢印の移動を隠す */
    transition: background-color 0.3s ease;
  }
  #other_content .custom-button{
    width: 38%;
  }
  
  .custom-button:hover {
    background-color: #333; /* ホバー時に背景色を少し明るく */
  }
  
  .custom-button::after {
    content: ">";
    font-size: 18px;
    color: red;
    position: absolute;
    background-color: #fff;
    width: 5%;
    text-align: center;
    border-radius: 50%;
    right: 20px;
    transition: transform 0.3s ease;
  }
  
  .custom-button:hover::after {
    transform: translateX(10px); /* 矢印を右に移動 */
  }
  footer{
    color:#fff;
  }
  footer a{
    color: #fff;
  }
  .footer_first{
    padding: 5vw;
    background-color: #000;
  }
  .footer_second{
    background-color: #1A1A1A;
    text-align: center;
    padding: 1vw;
    font-family: 1vw; 
  }

  #rule_text{
    padding: 6vw 0;
    background: linear-gradient(to bottom,  #fff,#d9d9d9);

    }

  #rule_text dt{
    font-family: serif;
    font-size: 2vw;
    border-bottom: 1px solid #000;
  }
  #rule_text dd{
    margin-bottom: 2vw;
    margin-top: 1vw;
  }
  #rule_text .sub2{
    margin: 3vw 0;
  }

  
  .hamburger_menu.active {
    background-color: #F50313;
    color: #fff;
  }
  .global_nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:#000;
    color: #fff;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
  
  .global_nav.active {
    display: flex;
  }
  
  .global_nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .global_nav li {
    margin: 20px 0;
  }
  
  .global_nav a {
    color: #fff;
    text-decoration: none;
    font-size: 2rem;
    transition: color 0.3s;
  }
  
  .global_nav a:hover {
    color: #F50313;
  }
  
  .hamburger_menu {
    position: fixed;
    top: 2%;
    right: 20px;
    background-color: #fff;
    border-radius: 50%;
    color: #F50313;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5vw;
    height: 5vw;
    font-size: 1vw;
    cursor: pointer;
    z-index: 1100;
    transition: all 0.3s;
  }
  
  .hamburger_menu.active {
    background-color: #F50313;
    color: #fff;
  }
  
  /*アニメーション */
  .fadein {
    opacity: 0;
    transform: translate(0, 0);
    transition: all 1.5s;
  }
  
  .fadein.fadein-left {
    transform: translate(-30px, 0);
  }
  
  .fadein.fadein-right {
    transform: translate(30px, 0);
  }
  
  .fadein.fadein-up {
    transform: translate(0, -30px);
  }
  
  .fadein.fadein-bottom {
    transform: translate(0, 30px);
  }
  
  .fadein.scrollin {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
  }
  .desc{
    text-align: center;
  }
  .desc span{
    font-size: 1.7rem;
  }
  .tel_area{
    margin-right: 8vw;
  }