 @charset "UTF-8";
:root {
  --bs-bg-color: #fafafa;
  --bs-mainichi-color: #0078c6;
  --bs-mainichi-dark: #004F82;
  --bs-mainblue: #436AD3;
  --bs-red: #f5854f;
  --bs-lightblue:#e2f0f7;
  --bs-glay:#CCCCCC;
  --bs-yellow:#F7F6E2;
  --bs-green:#56B22F;
  --bs-purple:#986AE2;
  --bs-light-purple:#F2EEFF;
    
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #414042; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #124265; /* Color for headings, subheadings and title throughout the website */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
	}
body {
	margin: 0;
  /*font-family:'ShinGoPro-Light', 'ShinGoPro-Regular', 'ShinGoPro-Bold', 'Verdana', 'Hiragino Kaku Gothic ProN', 'Meiryo', 'MS PGothic', 'sans-serif';*/
  font-family: Hiragino Sans, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro","メイリオ","Meiryo","ＭＳ Ｐゴシック",sans-serif,Roboto;
  /*font-family: "游ゴシック体", '游ゴシック', 'Yu Gothic', YuGothic, "メイリオ", 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;*/
  font-feature-settings: "palt";
  font-size: 1.1em;
  letter-spacing: 1px;
  color: #333;  
  position: relative;
  background-color: var(--bs-bg-color);
}

html {
  scroll-padding-top: 4.5rem;
  overflow-x: hidden;
}

img, video {
  max-width: 100%;
  height: auto;
}
.fa-solid, .fas {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

a {
  color: var(--bs-mainichi-color);
  text-decoration: none;
  transition: 0.5s;
}

a:hover {
  color: color-mix(in srgb, var(--bs-mainichi-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

h3 {
  font-weight: 600;
  font-size: 1.14em;
  line-height: 1.8;
  color: #111;
  margin-bottom: 2em;
}

h4{ 
  font-size: 1.2em;
  line-height: 1.9;
  margin-bottom: 1em;
}

h5, .h5{
  font-size: .9em;
  font-weight: 600;
}

li {
  list-style-type: none;
}

p {
  font-family: var(--default-font);
  font-feature-settings: 'palt' 1;
  height: auto;
  font-size:16px;
  letter-spacing: 0.17em;
  line-height: 2.1;
  margin: 0px 0px 0px 0px;
  width: auto;
  max-width: 100%;
}

p.lead-text {
    font-size:clamp(0.969rem, 0.889rem + 0.4vw, 1.188rem);
font-weight: 600;}

p.indent {
  text-indent: -.7em;
  padding-left: 1em;
}
p.figure-caption {
  font-size: .875em;
  line-height: 1.3!important;
  margin-bottom: .5rem;
  color: var(--bs-secondary-color);
}
p.note {
  font-size: .8em;
}
h3.figure-caption {
	 line-height: 1.5!important;
}
img, svg {
	vertical-align: middle;
	width: 100%;
	height: auto
}
p.justify {
	text-align: justify;
	text-justify: inter-ideograph;
}


a {
  color: #0078c6;
  text-decoration: none;
transition: 1.0s;
-webkit-transition: 1.0s; /* Chrome、Safari用 */
-moz-transition: 1.0s; /* Firefox用 */
-o-transition: 1.0s; /* Opera用 */
}

a:hover {
  color: #FC7800;
}

section{
	padding: 5em 0;
}
section.mousikomi{
    padding: 5em 0 0;}

@media (max-width: 428px) {
section{
	padding: 3em 0;
}
    
section.mousikomi{padding: 3em 0 0;
    }
}
.o-marker {
 /* display: inline-block;*/
  background: #FFDA71;
  background: linear-gradient(180deg, rgba(255,218,113,0) 50%, rgba(255,218,113,0.60) 50%);
  line-height: 1.1;
}
.o-c-red{
    color:var(--bs-red);}

.lead-text .large {
  font-size: min(6vw, 32px);
  line-height: 1.75;
    font-weight: 700;
}

.bg-blue{
	background-color: var( --bs-mainblue);
		}
.bg-purple{
	background-color: var( --bs-purple);
		}
.bg-light-purple{
	background-color: var( --bs-light-purple);
		}
.bg-green{
	background-color: var( --bs-green);
		}

.btn{
    position: relative
}

.icon-arrow-right::before {
  content: "";
  position: absolute;
  top: 0;
   bottom: 0;
 margin: auto;
    margin-left: .5em;
  display: inline-block;
  width: 30px;
  height: 30px;
  mask-image: url('/oshi-noru/assets/img/reshot-icon-bold-arrow-right.svg'); /*←SVG画像のURLを指定*/
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  background-color: var( --bs-mainblue); /*←任意の色を指定*/
}

a:hover .icon-arrow-right::before {
   background-color: #FFF; /*←任意の色を指定*/ 
}
.section-title {
    text-align: center;
}
.section-title h2{
	text-align: center;
	font-weight: 700;
}
.section-title > span{
    display: inline-block;
    margin-bottom: 1em;
    font-size: 1em;
    color: #ddd;
}
.header-logo{
	position: absolute;
	z-index: 1031;
	left: 0px;
	top:0;
	width: 140px;
	/*background-color: #FFF;
	border-radius: 0 0 3px 3px;
	box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.35);*/
		}

.header-logo img{
	width: 100%;
	height: auto;
	padding: 20px 24px ;
		}

#navbarNav{
    background-color: var( --bs-mainblue);
}

.navbar{
    background-color: var( --bs-mainblue);
}

.navbar-nav{
	margin: auto
        }

.nav-item{
    margin-left: 1em;
    margin-right: 1em;
}
.nav-link {
  position: relative;
  display: inline-block;
    font-size: .9em;
  font-weight: 600;
  padding: 0 3rem; /* ピル型のサイズ */
  color: white;
  text-align: center;
  z-index: 1;
  border-radius: 999px;
  /*overflow: hidden;*/
}


.nav-link .bi-twitter-x {
  font-size: 1.5rem; /* 好きなサイズ */
}


.nav-item img{
    display: block;
    width: 40px;
    height: auto;
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}

@media (max-width: 767px) {
.nav-link{
      padding: .4em  3rem; /* ピル型のサイズ */
    }
}
/*.nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%; 初期位置は完全に左外
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);  半透明白 
  border-radius: 999px;
  z-index: -1;
  transition: left 0.4s ease;
}

.nav-link:hover::before {
  left: 0;  ホバーでスライドイン 
}*/

.hero-section {
	width: 100%;
	/* 背景画像とアニメーション */
	background-image: url('/oshi-noru/assets/img/bg-202507.jpg');
	background-repeat: repeat-x;
	background-size: auto 100%; /* 高さをコンテナに合わせ、幅はアスペクト比を維持 */
	 animation: scroll-left-to-right 150s linear infinite;
	
	/* 中央のメッセージ表示用 */
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	position: relative;
	overflow: hidden;/* content-overlay の基準点として */
        }

 @keyframes scroll-left-to-right {
	0% {
	background-position-x: 0;
            }
	100% {
	background-position-x: -1179px; 
	}
        }
		
	/* 中央メッセージのスタイル */
.header-logo{}
		
        /* 中央メッセージのスタイル */
.content-overlay {
	 padding-top: 50px;
	 padding-bottom: 50px;
        }

.illust{
	position: absolute;
	bottom: -70px;
	right: 0;
	left: 0;
	margin: auto;
		}
.illust-sp{
	display: none
		}	
@media (max-width: 1399px) {
	.content-overlay {
	 padding-top: 30px;
	 padding-bottom: 30px;
        }

.illust{
	bottom: -60px;
		}
}		

@media (max-width: 767px) {
    .navbar{
        height: 0;
        padding: 0;
    }
#navbarNav {
  background-color:  var(--bs-bg-color);
}
    .container-fluid{
        padding-right: 0;
        padding-left: 0;
    }
	.navbar-toggler{
		position: fixed;
        width: 45px;
        height: 45px;
		top: 5px;
        right: 10px;
		/*background-color: var( --bs-mainblue);*/
		border: none;
        border-radius: 0;
        padding-top: 8px;
        padding-bottom: 8px;
	}
   .nav-link {
      color: #333;
       padding-left:0;
       padding-right: 0;
    }
 .navbar-toggler span {
  display: block;
  position: absolute; 
  width: 28px;  /* 線の幅 */
  height: 2px;   /* 線の太さ */
  left: 8px;
  background-color: #FFF; /* 線の色 */
  margin: auto; /* 線と線の間の余白 */
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  border-radius: 2px; /* 線の角を丸くする場合 */
} 

    
 .navbar-toggler span:nth-child(1) {
  top: 15px;
}
    
 .navbar-toggler span:nth-child(2) {
  top: 23px;
}
    
 .navbar-toggler span:nth-child(3) {
  top: 32px;
}
/* 押した場合 */
    [aria-expanded="true"] > span:nth-child(1) {
        top: 22px;
  -webkit-transform: rotate(315deg);
  -moz-transform: rotate(315deg);
  transform: rotate(315deg);
}
    
    [aria-expanded="true"] > span:nth-child(2) {
  width: 0;
  left: 50%;
}
    [aria-expanded="true"] > span:nth-child(3) {
  top: 22px;
  -webkit-transform: rotate(-315deg);
  -moz-transform: rotate(-315deg);
  transform: rotate(-315deg);
}
    
    
	.navbar-collapse{
        height: 100vh;
        background-color: var( --bs-mainblue)
	}
	.navbar.bg-blue{
        z-index: 1040;
		position: fixed;
		right: 0;
		background-color: rgba(0,85,255,0.00)
			}
    
    ul.navbar-nav{
        height: 100vh;
        padding: 20px;}
    
    .navbar > div {
        width: 100vw;
        margin-top: -10px;
}
	.navbar-brand{
		display: none!important;
			}
    .navbar-toggler:focus {	
        box-shadow:none}
    
    .nav-link{
		border-right: none;
		}
	.hero-section {
		min-height:90vw; }
    
    .content-overlay {
            padding: 70px .5rem ;
        }
	.illust{
			display: none
			}
	.illust-sp{
		display: block;
		position: absolute;
		bottom: -33vw;
  		right: 0;
 		 left: 0;
 		 padding: 0 6vw;
			width: 100%;
		}
  
		}
        /*ここまで (max-width: 768px)*/
        /* ナビゲーションバーのカスタムスタイル (オプション) */
        .custom-navbar {
             z-index: 1030; /* Bootstrapの標準的なnavbarのz-indexより高い値 */
        }

        /* 初期表示エリアより下のメインコンテンツ */
        .main-page-content {
			background-color: #F2EFFF;
            min-height: 150vh; /* スクロールを十分発生させるための高さ */
            /* * sticky-topで固定されたナビゲーションバーがコンテンツに重ならないように、
             * コンテンツ上部にナビゲーションバーの高さ分の余白を設ける。
             * この値は実際のナビゲーションバーの高さに応じて調整が必要。
             * JavaScriptで動的に取得して設定するのがより堅牢ですが、ここでは固定値を使用。
             */
            /* 例: navbarの高さが約56px + 少し余裕 */
        }
/*=================================================
20250902追加　ChatGpt
==================================================*/
.custom-collapse {
  /* 初期状態: 完全に隠れて、左に移動 */
  transform: translateX(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.6s ease-out, opacity 0.6s ease-out, visibility 0.6s;
  position: absolute; /* 親要素の幅に影響を与えないように設定 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #000; /* 背景色を設定して、コンテンツを隠す */
  z-index: 1050; /* ナビゲーションを他のコンテンツの上に表示 */
}

.custom-collapse.show {
  /* `show`クラスが追加された時: 元の位置に戻り、表示される */
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

/* その他のスタイル調整 */
.custom-navbar {
  overflow: hidden; /* コンテンツがはみ出さないように隠す */
  background-color: transparent !important; /* 背景色を透明にして、メニューの背景色を活かす */
}

/* ナビゲーションリンクのスタイルを調整 */
.custom-collapse .navbar-nav {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.custom-collapse .nav-item {
  margin: 1.5rem 0;
}

.custom-collapse .nav-link {
  font-size: 1.5rem;
  color: #fff;
}

/* トグルボタンのスタイル調整 　かくす
.custom-navbar .navbar-toggler {
  position: relative;
  z-index: 1051;
}

.custom-navbar .navbar-toggler-icon {
  background-image: none !important;
  width: 25px;
  height: 2px;
  background-color: #fff;
  display: block;
  margin: 4px;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.custom-navbar .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.custom-navbar .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-child(2) {
  opacity: 0;
}
.custom-navbar .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}*/
/*==================================================
スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================
.fadeUpTrigger{
	opacity: 0;
}*/
		/*==================================================
動き自体の指定：今回は「ふわっ」
===================================

.fadeUp {
animation-name:fadeUpAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity: 0;
}
@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}*/


/*ボタン*/
.pill-link {
      display: block;
	width: 90%; /* 初期は100% */
	background-color: #FFF;
      padding: 0.5rem 1.5rem;
      margin: 0 auto; /* 中央寄せ */
      border-radius: 50rem;
      border: 3px solid var( --bs-mainblue);
      color: var( --bs-mainblue);
      text-align: center;
      text-decoration: none;
      font-weight: 700;
      transition: all 0.3s ease;
	font-size: 1.4em
    }

.pill-link:hover {
      background-color: var( --bs-mainblue);
      color: white;
      text-decoration: none;
    }

.pill-link.bg-blue{
	background-color: var( --bs-mainblue);
      border: 3px solid #FFF;
      color: #FFF;
    }

.pill-link:hover {
      background-color: var( --bs-mainblue);
      color: #FFF;
      text-decoration: none;
    }
.pill-link.bg-blue:hover{
	background-color:#FFF;
	color: var( --bs-mainblue);border: 3px solid var( --bs-mainblue);
}

 @media (min-width: 768px) {
      .pill-link {
      }
    }
/*FAQ*/
    .faq-item {
      background-color: #fff;
     /*border: 2px solid var( --bs-purple);
     border-radius: 0.5rem;*/
      padding: 1rem;
	margin-bottom: 1em;
    }

    .faq-question {
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      
    }

    .question-label {
      font-size: 1.5rem;
      margin-right: 0.5rem;
	color: #0d6efd;
    }

    .question-text {
      font-size: 1.1rem;
      flex: 1;
    }

    .faq-icon {
      font-size: 1.2rem;
      margin-left: 1rem;
      transition: transform 0.3s;
    }


    .answer-label {
      font-size: 1.5rem;
      margin-right: 0.5rem;
      color: #F76F6C;
      font-weight: 600;
    }

    .answer-text {
      font-size: 1.1rem;
      flex: 1;
    }

    /* アニメーション表示用 */
    .faq-answer-wrapper {
      overflow: hidden;
      transition: max-height 0.5s ease, opacity 0.5s ease, margin-top 0.5s ease;
      max-height: 0;
      opacity: 0;
      margin-top: 0;
    }

    .faq-answer-wrapper.open {
      max-height: 500px; /* 十分な高さにしておく */
      opacity: 1;
      margin-top: 2em;
    }
.faq-answer{
	padding-left: 1em
}

    /* アニメーション表示用 */
    .faq-answer-wrapper {
      overflow: hidden;
      transition: max-height 0.5s ease, opacity 0.5s ease, margin-top 0.5s ease;
      max-height: 0;
      opacity: 0;
      margin-top: 0;
    }

    .faq-answer-wrapper.open {
      max-height: 500px; /* 十分な高さにしておく */
      opacity: 1;
      margin-top: 2em;
    }

/*トップのニュース*/
.news-box {
    position: relative;
display: block;
  /*background-color: var(--bs-purple);
    height: 100%;*/
  background-color: #FFF; 
  overflow:hidden;
    border-radius:5px;
  box-shadow: 0px 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: .5em;
}

.news-box.video-box{
  background-color: var(--default-color);  
}

.news-box  ~ .news-midashi {
    position: relative;
color: var(--default-color);
 font-size: .9em;
  line-height: 1.7em;
    text-align: center;
}

.news-box .news-midashi .date{
	font-size: .9em;
	display: block;
	margin-right: 1em;
    color: #666666;
}
.news-box  ~ .news-midashi p{
   font-size: .8em; 
   line-height: 1.6;
}
.news-box.video-box h4{
    color: var(--bs-light-color);
}
.news-box .video-midashi {
    position: relative;
    background-color: var(--default-color);
    padding:25px 20px;
    color: var(--bs-light-color);
    font-size: .9em;
    line-height: 1.7em;
}

.news-box .time{
    position: absolute;
    right:4px;
    top: -35px;
	font-size: .9em;
	display: inline-block;
    background-color: rgba(0,0,0,0.6);
    color: #FFF;
    padding: .1em .5em;
    z-index: 5;
}

a.news-box:hover img{
    transition: 0.5s;
  transform: scale(1.1);
  }

a.news-box:hover::after{
    position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
    background-color: rgba(245,133,79,0.65);
}

.pdf-thum-img:hover:before{
	position: absolute;
	content: '\F63F';	
	top:0;
	right: 0;
	bottom: 0;
	left: 0;
  font-family: bootstrap-icons;
    font-weight: 400;
    font-size: 30px;
	width: 30px;
	height: 30px;
	margin: auto;
	color: #FFF;
	z-index: 1000;
	transition: 0.5s;
}
.zoom-thum-img:hover:before{
position: absolute;
  content: '\F62C';
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  font-family: bootstrap-icons;
  font-weight: 400;
  font-size: 30px;
  width: 30px;
  height: 30px;
  margin: auto;
  color: #FFF;
  z-index: 1000;
  transition: 0.5s;
}
/*メリット*/
.merit-box {
    position: relative;
display: block;
  overflow:hidden;
border-radius: 5px;
  height: 100%;
}

.merit-box img{
border-radius:0 0 0 0;
}

.merit-box.video-box{
  background-color: var(--default-color);  
}

.merit-box .news-midashi {
    position: relative;
  padding:25px 20px;
color: var(--default-color);
 font-size: .9em;
  line-height: 1.7em;
}

.merit-box .news-midashi .date{
	font-size: .9em;
	display: block;
	margin-right: 1em;
    color: #666666;
}
.merit-box.video-box h4{
    color: var(--bs-light-color);
}
.merit-box .video-midashi {
    position: relative;
    background-color: var(--default-color);
    padding:25px 20px;
    color: var(--bs-light-color);
    font-size: .9em;
    line-height: 1.7em;
}
.merit-box h4{
	font-weight: 600;
}

.merit-box .time{
    position: absolute;
    right:4px;
    top: -35px;
	font-size: .9em;
	display: inline-block;
    background-color: rgba(0,0,0,0.6);
    color: #FFF;
    padding: .1em .5em;
    z-index: 5;
}

.btn-super {
  font-size: 1.5rem;        /* フォント大きめ */
  padding: 1rem 2.5rem;     /* 縦横の余白を増やす */
  border-radius: 50px;      /* ピル型に */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2); /* 影 */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
}
.btn-super:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.btn-super i {
  font-size: 1.5em; /* アイコンも大きく */
  margin-left: 0.5em;
}
.btn-plan-detail {
    min-height: 100px;
  background-color:var(--bs-mainblue); /* グレーの透明感 */
  padding: 0.75rem 1rem;  /* 中くらいの高さ */
  font-size: clamp(1rem, 0.745rem + 1.27vw, 1.7rem);
  font-weight: 600;
  border-radius: 0; /* 角丸なし（またはお好みで） */
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
  color: #FFF;
  border-radius: 3px;
    
}

.btn-plan-detail:hover {
  background-color: rgba(67,106,211,0.70); /* 少し濃くホバー */
  text-decoration: none;
	color: #FFF;
}

.btn-plan-detail-w {
  min-height: 100px;
  background-color: #FFF;
  border: 2px solid var(--bs-mainblue);
  padding: 0.75rem 1rem;
  font-size: clamp(1rem, 0.745rem + 1.27vw, 1.7rem);
  font-weight: 600;
  border-radius: 0;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
  color: var(--bs-mainblue);
  border-radius: 5px;
}

.btn-plan-detail-w:hover {
  background-color: rgba(67,106,211,0.50); /* 少し濃くホバー */
  text-decoration: none;
	color: #FFF;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  font-size: 14px;
  padding-bottom: 50px;
  padding-top: 60px;
  position: relative;
}

.footer-logo {
  width: 195px;
   margin: 0 auto 10px;
text-align: center;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer-list-group {
  flex-direction: row;
  display: flex;
  padding-left: 0;
  justify-content: center;
 font-feature-settings: "palt";
 margin-bottom: 15px;
}
.footer-list-group li {
  /*position: relative;*/
  display: block;
  margin-bottom: 10px;
  /*text-decoration: none;*/
  font-size: 12px;
  border-right: 1px solid #dbdbdb;
  line-height: 1;
}
.footer-list-group li a {
  padding-right: 1rem;
  padding-left: 1rem;
}
.footer-list-group li:last-child {
  border-right: none;
}
@media screen and (max-width: 768px) {
   .footer-list-group {
     display: block;
   }
   .footer-list-group li {
     display: inline-block;
   }
}
.footer-list-group li:last-child {
  border-right: none;
}
.footer-list-group li a {
  color: var(--default-color);
  /*text-decoration: none;*/
}

.copyright p{
	color: #999;
  bottom: 20px;
  font-size: .8em;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 100px;
  z-index: 99999;
   background-color:transparent;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 36px;
  color: #333;
  line-height: 0;
}

.scroll-top:hover {
   background-color:transparent;
  color: #000;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}
/*---lightbox------*/

/*
.lightboxOverlay {
  background-color: var(--bs-purple);
}*/
/* ===== アニメーションライブラリ風  ===== */
.fade-up {
  transform: translateY(100px);
}

/* ===== スマホメニュー背景 ===== */
.offcanvas{
   background-color: var(--bs-bg-color);
        }
.offcanvas-title{
    width: 100px
}
/* ===== 申込ボタン固定 ===== */
  #moushikomi-btn{
      position: fixed;
    display: flex;
      background: rgba(255,255,255,.9);
      padding: 10px;
      z-index: 2000; 
      left: 0px; 
      bottom:0;
      border-radius: 0 3px 0 0;
        }
#moushikomi-btn a {
    font-size: 14px;
    font-weight: 600;
  position: relative;  
  display: inline-block;
  padding: 10px 20px;
  color: #fff;  
  text-decoration: none;
  overflow: hidden;
  
  /* 初期背景：濃いブルー */
  background: var(--bs-mainblue);
 /* border-radius: 25px;  pill型の縦長に見える */

  /* ホバー時に薄いブルーを右から左へ重ねる */
  background-image: linear-gradient(to left, #e2f0f7, #e2f0f7);
  background-size: 0% 100%;   /* 初期は非表示 */
  background-repeat: no-repeat;
  background-position: left center;
  transition: background-size 0.4s linear, color 0.1s linear;
}

#moushikomi-btn a:hover {
  background-size: 100% 100%;  /* 上から下に濃いブルーが広がる */
   color: var(--bs-mainblue);   
}
 #moushikomi-btn a img{width:16px; filter: brightness(0) saturate(100%) invert(100%) sepia(10%) saturate(7460%) hue-rotate(205deg) brightness(120%) contrast(108%);}       
#moushikomi-btn a:hover img{ filter: brightness(0) saturate(100%) invert(28%) sepia(87%) saturate(784%) hue-rotate(198deg) brightness(110%) contrast(99%);}
          

        
@media (min-width: 577px) {
    #moushikomi-btn a {
  writing-mode: vertical-rl;
    font-size: 17px} 
    
    #moushikomi-btn p{
   font-size: 10px;
    writing-mode: vertical-rl;
        }   
        } 
        

/* === SP 100% & 均等2ボタン === */
@media (max-width: 576px) {
  #moushikomi-btn {
    right: 0;       /* 端まで広げる */
    width: 100%;
    display: flex;
    flex-wrap: wrap;     /* 下段に注意書き */
    background: rgba(255,255,255,.95);
    padding: 15px;          /* 水平パディングをなくして端までぴったり */
    padding-bottom: env(safe-area-inset-bottom);  /* iOSノッチ対策 */
    box-shadow: 0 -1px 6px rgba(0,0,0,.06);
  }

  /* 2ボタンの行（ラッパー） */
  #moushikomi-btn > div { 
    display: flex;
    width: 100%;
    gap: 8px;
  }

  /* 2つのボタンを完全に均等（50% / 50%） */
  #moushikomi-btn > div > div {
    flex: 1 1 50%;
    min-width: 0; /* テキストが長くても均等幅を維持 */
  }


  /* a をブロック化して全体クリック可＆高さ揃え */
  #moushikomi-btn a {
    display: block;
    width: 100%;
    padding: 14px 8px;
  }

  /* 注意書きは下段で全幅 */
  #moushikomi-btn p {
    order: 2;
    width: 100%;
    margin: 4px 0;
    font-size: 10px;
    text-align: center;
  }

  /* （任意）仕切り線を入れて2ボタンの区切りを明確にしたい場合 */
  #moushikomi-btn > div > div + div a {
    /*border-left: 1px solid rgba(255,255,255,.5);   明るい背景用 */
    /* border-left: 1px solid rgba(0,0,0,.06);    暗いボタン色向け */
  }
 
/* ===== トップの画像のサイズ ===== */
@media (min-width: 576px) and (max-width:768px) {
  .container.content-overlay {
    max-width: 700px!important;}
}


