@charset "UTF-8";
@media (min-width: 576px) {
  body {
    font-family: "Helvetica Neue", "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "Noto Sans JP", "游ゴシック体", "Yu Gothic", sans-serif;
    font-size: 20px;
    line-height: 1.6;
    color: #333;
  }
}

@media (max-width: 575px) {
  body {
    font-family: "Helvetica Neue", "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "Noto Sans JP", "游ゴシック体", "Yu Gothic", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
  }
}
  /* 画面全体を覆うロゴ表示用のオーバーレイ */
#loading-screen {
  position: fixed;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #43778E 50%, #7d7d7d 50%);
  background-size: 200% 200%;
  background-position: 100% 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  animation:
    diagonalMove 3.6s ease-in-out forwards,  /* 背景の動きは4.2秒間 */
    fadeOut 0.5s ease-in-out 44.1s forwards;  /* 4.7秒後からフェードアウト開始（継続0.5秒） */
}

@keyframes diagonalMove {
  0% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    pointer-events: none;
  }
}


/* ロゴのスタイル */
        #loading-logo {
        }
@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    25% {
        opacity: 1;
        transform: scale(1.0);
    }
    65% {
        opacity: 1;
        transform: scale(1.0); /* 静止させる */
    }
    100% {
        opacity: 1;
        transform: scale(1.1); /* 少し大きくなって消える */
    }
}

/* ロゴのふわっと出現アニメーション */
#loading-logo img {
    width: 95%;
    height: auto; left: 30%;
    animation: fadeInScale 2.6s ease-in-out forwards;
}

/* 本文の初期状態（非表示） */
        #content001 {
            display: none;
            opacity: 0;
            transition: opacity 2.6s ease-in-out;
        }
#loading-message {
  margin-top: 2em;
  text-align: center;
  color: #ffffff; font-weight: bold;
  font-size: 1.2rem;
  line-height: 1.6; font-family: 'Bebas Neue', sans-serif;
  opacity: 0;
  animation: fadeInMessage 3.2s ease-in-out 1.4s forwards;
}

@keyframes fadeInMessage {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.0);
  }
  100% {
    opacity: 1;
    transform: scale(1.05);
  }
}

        
.body001{ background-color: #C3C9CF;
}
.main001{ background-color: #fff; padding: 1.5rem 0;
}

.icon a img {
  transition: all 0.3s ease;
  opacity: 1;
  transform: scale(1);
}

.icon a img:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

.shadow-on img {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.3s ease-in-out;
}

.image-fixed-box {
  width: 100%;
  aspect-ratio: 4 / 3; /* もしくは height: 200px; など */
  overflow: hidden;
  position: relative;
  background-color: #eee;
}

.image-fixed-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.white_box03 {
  background: linear-gradient(135deg, #eaf8f8 0%, #ffffff 100%);
  border: 1px solid #c4e0e0;
  padding: 0.9em 1.2em;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 80, 90, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* hover時のアニメーション（カードがふわっと浮く） */
.white_box03:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 80, 90, 0.25);
  border-color: #5db2b2;
}

/* タイトルやリンク部分のトーンを合わせる */
.white_box03 a {
  color: #1a5f6b;
  text-decoration: none;
  font-weight: 600;
}

.white_box03 a:hover {
  color: #148c8c;
  text-decoration: underline;
}

/* すべてのリンクのデフォルトでは下線なし */
a {
  color: #000;
  text-decoration: none!important;
  transition: color 0.3s ease;
}

/* 下線を必要な場所だけクラスで指定 */
a.link-underline {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

a.link-underline:hover {
  color: #3C3C3C;
  text-decoration-color: #3C3C3C;
}





.list-group-borderless .list-group-item {
    border: none;
}

.w100 {
	width:100%!important; 
	box-sizing:border-box;
}

.w50 {
	width:50%;
}
.widthauto {
	width: auto;
	margin:0 auto;
}
.center {
	text-align: center !important;
}

.pdf li { background:url("/common/images/pdf.gif") 0 3px no-repeat; }
.pdf li a { padding-left: 25px; }
  .res-table th {
    background-color: #BEE5EB; 
    font-weight: bold;
  }
  .res-table td ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
  }

@media (max-width: 575px) {
    .res-table {
        width:100%;
        margin:2em auto;
    }
    .res-table th {
        padding:3px;
        display:block;
    }
    .res-table td {
        padding:5px;
        display:block;
    }
	
} 
@media (min-width: 576px) {
    .res-table th { width: 25%;

    }
} 


/* レスポンシブな字切り */

.text br {
	display: none;
}

@media only screen and (max-width: 764px) {
	.text br {
		display: inline;
	}
	.text span {
		display: none;
	}
}
@media only screen and (max-width: 380px) {
	.text {
		font-size:90%;
	}
}

.btn-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  border: 1px solid #333;
  border-radius: 9999px; /* pill型 */
  background-color: #FDFEFC;
  color: #333;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-custom:hover {
  background-color: #f5f5f5;
  color: #1C1818;text-decoration: none;
}

.btn-custom .arrow {
  font-size: 1rem;
}

.trial-btn {
  display: block;
  position: fixed;
  bottom: 20px;
 left: 42%;
  transform: translateX(100%);
  background-color: #A70606;
  color: #FDFEFC;
  padding: .55em 4em;
  border-radius: 50px;
  font-weight: bold;
  font-size: .85em;
  text-align: center;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.8s ease;
}
.trial-btn:hover {
  color: #FDFEFC;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.8),
              0 0 10px rgba(255, 80, 80, 0.6),
              0 0 40px rgba(255, 80, 80, 0.4);
  transform: scale(1.08);
}

.trial-btn.show {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}



#pageTop {
	position: fixed;
	bottom: 20px;
	right: 20px;
}
#pageTop a {
	display: block; text-decoration: none!important;
	z-index: 300;
	border-radius: 30px;
	width: 35px;
	height: 35px;
	background-color:#686283;
	color: #FDFEFC;
	font-weight: bold;
	text-align: center;
	padding:4px 0 0;
}
#pageTop a:hover {
	text-decoration: none;
	opacity: 0.7;
}



/* layout */

.container {
	max-width:1500px !important;
}
.container_mini {
	max-width:1300px !important;
	margin: 0 auto;
}
.container_mini02 {
	max-width:850px !important;
	margin: 0 auto;
}


.container-fluid {
	padding:0 !important;
}

.text-muted{color: #fff!important;
}
.body_box01 {
  position: relative;
  background: linear-gradient(135deg, #43778E 50%, #333333 50%);
  color: #fff;
  padding: 100px 20px;
  overflow: hidden;
}

.body_box01-content {
  max-width: 800px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}

/* スクロールで表示（JSで追加されるクラス） */
.body_box01-content.visible {
  opacity: 1;
  transform: translateY(0);
}


.blue_box01 {
  background-color: #43778E; color: #FDFEFC;
  padding: 1.2em 1em;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.15);
} 
.blue_box01 a {
color: #FDFEFC!important;
  position: relative;
  display: inline-block;
  text-decoration: none;
  overflow: hidden;
  transition: color 0.3s ease;
}

.blue_box01 a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
}

.blue_box01 a:hover::before {
  animation: shine 0.8s ease-in-out;
}

@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

.white_box01 {
  background-color: #FDFEFC;
  padding: 1em 1em;
  z-index: 2;
  box-shadow: 0 -0.2px 10px rgba(0, 0, 0, 0.15);
} 

 

/* header */
.under-h1 {min-height: 100px; background-color: #696969;
background-position: top center;
background-repeat: no-repeat;
 background-size: cover; padding: 2.6em 1em;
}


footer { color: #FDFEFC;
    background-color: #43778E; 
}
footer a { color: #FDFEFC;
}
footer a:hover { color: #FDFEFC;
}
 
    #copyright {
        text-align: center;
    }
     

/* h1 */

h1.h101 {
    font-weight: bold;
  text-align: center;      /* 中央揃え */
  color: #FDFEFC;  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* 黒のドロップシャドウ */
}
h1.h101 span {
    font-weight: bold; display: block; 
  text-align: center;      /* 中央揃え */
  color: #FDFEFC; text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6); /* 同様に影をつける */
}


/* h2 */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
h2.h201 {
  color: #000;/* 黒い文字 */
  text-align: center;      /* 中央揃え */
  font-weight: bold;       /* 太字 */
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

h2.h201 span {
  color: #525463;
  display: block;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  animation: fadeUp 1s ease-out forwards;
}

h2.h202 {
    font-weight: bold;
    color: #373636;
    border: 1px solid #373636;
    border-radius: 35px;
    padding: .25em .75em;
    text-align: center;
}



/* h3 */

h3.h301 {
    font-weight: bold;   text-align: center;  
    color: #2463A2;
}
h3.h302 {
    font-weight: bold;   text-align: center;  
    color: #696969;
}

/* h4 */

h4.h401 {
    font-weight: bold;
    color: #541B86;
    border: 1px solid #541B86;
    border-radius: 35px;
    padding: .25em .75em;
    text-align: center;
}



/* 装飾 */
.white{
	color:#FDFEFC;
}
.blueb {
  color: #007bff; /* ブルー */
  font-weight: bold;
}
.red{
	color:#C63137;
}
.p-4 {
	font-size: 85%!important;
}
p {
	margin-bottom:0 !important;
}

.f70 {
		font-size:.70em;
	}
.f12 {
		font-size:.50em!important; line-height: 110%!important;
	}
ul {
    list-style: none;
	margin:0 !important;
	padding:0 !important;
}
ol {
	margin:0 0 0 1.5em !important;
	padding:0 !important;
}
ul li {
	margin:0 !important;
	padding:0 !important;
}
ol li {
	margin:0 !important;
	padding:0 !important;
}
.dan {
	padding-left:1em;
	text-indent:-1em;
}
.dan02 {
	padding-left:1em;
}

@media (max-width: 575px) {
.trial-btn { width: 90%;  left: 1%;
}
.white_box01m {
  background-color: #FDFEFC; border-radius: 3px;
  padding: 1em 1em;
  z-index: 2;
  box-shadow: 0 -0.2px 10px rgba(0, 0, 0, 0.15);
}

	.center {
		text-align: left !important;
	}
	footer {
		font-size: 80%; padding: 2em 0 80px;
	}
	.container {
		padding:0 15px !important;
	}
	.container_mini {
		padding:0 0px !important;
	}
	.row {
		margin-right: -15px;
		margin-left: -15px;
	}

    .res-table {
        width:100%;
    }
    .res-table th {
        display:block;
    }
    .res-table td {
        display:block;
    }
	.w50 {
		width:100%;
	}
	.w75 {
		width:90%;
	}
.f20{ font-size: 1.2em; font-weight: bold;
}
.f12 {
		font-size:.50em!important; line-height: 110%!important;
	}
h1.h101 {
		font-size:1.3em;  padding: .15em;
		text-align: center; 
	}
h1.h101 span {
		font-size:.70em;
		text-align: center;
	}
.title-block h1 {
		font-size:1.1em;  padding: .15em;
		text-align: center; 
	}
 .title-block h2   {
		font-size:1.1em;  padding: .15em;
		text-align: center; 
	}

	h2.h201 {
		font-size:1.3em;  padding: .15em;
		text-align: center; 
	}
	h2.h201 span {
		font-size:.70em;
		text-align: center;
	}
	h2.h202 {
		font-size:1.3em;  padding: .15em;
		text-align: center; 
	}

	h3.h301 {
		font-size:1.2em;
		font-weight: bold;
	}


	h3.h302 {
		font-size:1.2em;
		font-weight: bold;
	}

	h4.h401 {
		font-size:1.1em;
		font-weight: bold;
	}



}


@media (min-width: 576px) {
.white_box01m {
  background-color: #FDFEFC; border-radius: 300px;
  padding: 1em 1em;
  z-index: 2;
  box-shadow: 0 -0.2px 10px rgba(0, 0, 0, 0.15);
}
	footer {
		font-size: 80%; padding: 2em 0 5em;
	}
	h1.h101 { padding: .20em .75em;
		font-size:45px;
		text-align: center;
		min-height: 50px;
	}

h1.h101 span {
		font-size:25px;
		text-align: center;
	}
    
.title-block h1{ padding: .25em .75em;
		font-size:28px;
		text-align: center;
		min-height: 50px;
	}
.title-block h2{ padding: .25em .75em;
		font-size:25px;
		text-align: left;
		min-height: 50px;
	}
	h2.h201 { padding: .25em .75em;
		font-size:32px;
		text-align: center;
		min-height: 50px;
	}

	h2.h201 span {
		font-size:15px;
		text-align: center;
	}
	h2.h202 { padding: .25em .75em;
		font-size:32px;
		text-align: center;
		min-height: 50px;
	}
	h3.h301 {
		font-size:28px;
		text-align: center;
	}

	h3.h302 {
		font-size:28px;
		text-align: center;
	}
	h4.h401 {
		font-size:20px;
		text-align: left;
	}
.f20{ font-size: 26px; font-weight: bold;
}

}




.bg-red {
  background-color: #43778E!important; color: #FDFEFC!important;
}

.bg-red a { color: #FDFEFC!important;
}



.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.menu-text {
    font-size: 0.65rem; /* 文字を小さめに */
    font-weight: bold; /* 少し目立たせる */
    text-transform: uppercase; /* すべて大文字（好みで） */
    letter-spacing: 0.5px; /* 少し文字間をあける */
}

.menu_li li {
  font-size: 1.1em;
  font-weight: bold;
  padding: 1.2em 0 !important;
  line-height: 1.8; /* ← 行間を広げて、上下にゆとりを持たせる */
  border-bottom: 1px solid #2B2929;
}


.news-head {
  padding: 1em 1em 3em;
  display: flex; margin: 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


.news-item {
  font-size: 0.95em;
  line-height: 1.6;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.5em;
}

.news-date { 
  color: #666; right: 0!important;
  font-weight: bold; text-align: right!important;
}

.news-cat { 
  background-color: #FDFEFC;
  padding: .20em 3em; border: 1px solid #707070;
  border-radius: 2px;
  font-size: 0.85em;
}

.news-link {
  position: relative;
  display: inline-block;
  color: #333; text-align: left!important;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-link::after { text-decoration: none;
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #43778E, #7d7d7d); /* キラリんカラー */
  transition: width 0.4s ease;
}

.news-link:hover::after {
  width: 100%;
}

.news-link:hover {
  color: #000;
}



.carousel-item img {
    animation: scaleAnimation 10s ease-in-out infinite; /* アニメーションの設定 */
    transform-origin: center; /* 拡大の基点を中央に設定 */
    filter: brightness(1); /* 明るさを通常に保つ */
   mix-blend-mode: normal; /* 通常の表示に戻す */
}

/* アニメーションの定義 */
@keyframes scaleAnimation {
    0% {
        transform: scale(1); /* 通常サイズ */
    }
    100% {
        transform: scale(1.08); /* 拡大サイズ */
    }
}

/* 質問ボタンの文字色＆装飾を整える */
#faqAccordion .btn-link {
  font-weight: bold;
  color: #333;
  text-decoration: none;
}

/* 回答のテキストスタイル */
#faqAccordion .card-body {
  color: #555;
}

/* プラスマークをマイナスに変える */
#faqAccordion .btn-link[aria-expanded="true"] span {
  content: "-";
  transform: rotate(0deg);
}
.faq-toggle-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  background-color: #6699CC; 
  color: #FDFEFC; /* 白文字 */
  border-radius: 50%; /* 丸くする */
  font-weight: bold;

  transition: background-color 0.3s ease, transform 0.3s ease;
}

.fade-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.fade-slider img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(-20%);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  z-index: 0;
}

.fade-slider img.active {
  opacity: 1;
  transform: translateY(0);
  z-index: 1;
}



.style-option {
  display: block;
  cursor: pointer;
}

.style-option > input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.style-option .card {
  border: 1px solid #dee2e6;
  border-radius: .25rem;
  padding: 20px;
  text-align: center;
  background: #fff;
  transition: box-shadow .15s, border-color .15s;
}

/* チェック時に枠を強調 */
.style-option > input:checked + .card {
  border-color: #17a2b8;
  box-shadow: 0 0 0 3px rgba(23,162,184,.2);
}



.box06 {
  background: linear-gradient(135deg, #006d77, #0096a3);
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 0.8em 0.5em;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 70, 80, 0.2);
  position: relative;
  overflow: hidden;
}

/* さりげない光のアニメーション（hover時にキラッと） */
.box06::after {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 40%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  transform: skewX(-25deg);
  transition: 0.5s;
}

.box06:hover::after {
  left: 120%;
}

/* bluebクラスで少し明るめトーンにも対応できるように */
.blueb {
  background: linear-gradient(135deg, #007c8d, #00a7b3);
}


.title-block img.aligncenter {
  display: block; margin: 1em auto;
  margin-left: auto;
  margin-right: auto;
}

.title-block img.alignnone {
  display: block; margin: 1em auto;
  margin-left: auto;
  margin-right: auto;
}
/* 段落の基本余白と行間だけ付与 */
.title-block p { margin: 0 0 1.2em; line-height: 1.9; }

/* 画像や見出しの前後だけ軽く余白（サイズは触らない） */
.title-block img, .title-block figure,
.title-block h1, .title-block h2, .title-block h3, .title-block h4 { margin: 1em 0; }

/* 目次の外側にある「余計なliの枠」を無効化して崩れ防止 */
.title-block > ul > li { list-style: none; padding: 0; margin: 0; }


/* 見出しデザイン（フォントサイズ指定なし） */
.title-block h1,
.title-block h2,
.title-block h3 {
  font-weight: 700;
  line-height: 1.6;
  margin: 4em 0 1em;
  color: #222;
}

.title-block h1 {
  border-bottom: 3px solid #e6e6e6;
  padding-bottom: .4em;
}

.title-block h2 {
  background: linear-gradient(transparent 60%, #f7f7f7 0);
  padding: .3em .2em;
}

.title-block h3 { 
  padding-left: .6em;
  border-left: 4px solid #d6d6d6;
}


/* 読みやすさの土台：.title-block 内だけに限定 */
.title-block{
  --ink: #111;           /* 文字色（黒寄り） */
  --muted: #6b7280;      /* 補足テキスト */
  --accent: #0f172a;     /* 見出しの線など */
  color: var(--ink);
  max-width: var(--measure);
  font-variant-ligatures: contextual;
  font-feature-settings: "palt" 1; /* 和文のプロポーショナル詰め */
}
.title-block{
  line-height: 180%;             /* 行間をしっかり */
  letter-spacing: 0.1em;       /* ほんの少し字間を空ける */
  margin: 0 0 1.1em;            /* 段落間に余白 */
}
.title-block p + p{ margin-top: 0.6em; } /* 連続段落の詰まり解消 */
.title-block ul, .title-block ol{ padding-left: 1.2em; }
.title-block li + li{ margin-top: .45em; }

.title-block a{
  text-decoration: underline;
  text-underline-offset: .2em;
}
.title-block a:hover{ opacity:.9; }

/* 画像の上下に呼吸を作る */
.title-block img{
  display:block;
  max-width:100%;
  height:auto;
  margin: 1.2em auto 1.6em;
}

/* モバイルで行長が長くなり過ぎないように */
@media (max-width: 576px){
  .title-block{ --measure: 100%; }
  .title-block p, .title-block li{ line-height: 1.85; }
}

/* 引用は“細身の黒縁”でシックに */
.title-block blockquote{
  margin: 1.6em 0; padding: 1em 1.2em;
  border-left: 3px solid var(--accent);
  background: #f8fafc;
  color: #111;
}
.title-block small, .title-block .note{
  color: var(--muted);
  display:block; margin-top:.6em;
  font-size: .92em;
}



