@charset "utf-8";
/* CSS Document */
/* ----- フェードインエフェクトに関するcss ----- */
body {
  animation: fadeIn 3s ease 0s 1 normal;
  -webkit-animation: fadeIn 3s ease 0s 1 normal;
}
@keyframes fadeIn {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}
.fadein {
  opacity: 0.01;
  transform: translate(0px, 100px);
  transition: all 1000ms;
}
.fadein.scrollin {
  opacity: 1;
  transform: translate(0px, 0px);
}
#effect2 .fadein:nth-of-type(2) {
  -moz-transition-delay: 200ms;
  -webkit-transition-delay: 200ms;
  -o-transition-delay: 200ms;
  -ms-transition-delay: 200ms;
}
#effect2 .fadein:nth-of-type(3) {
  -moz-transition-delay: 400ms;
  -webkit-transition-delay: 400ms;
  -o-transition-delay: 400ms;
  -ms-transition-delay: 400ms;
}
#effect2 .fadein:nth-of-type(4) {
  -moz-transition-delay: 500ms;
  -webkit-transition-delay: 500ms;
  -o-transition-delay: 500ms;
  -ms-transition-delay: 500ms;
}
#effect2 .fadein:nth-of-type(5) {
  -moz-transition-delay: 700ms;
  -webkit-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
}
#effect2 .fadein:nth-of-type(6) {
  -moz-transition-delay: 900ms;
  -webkit-transition-delay: 900ms;
  -o-transition-delay: 900ms;
  -ms-transition-delay: 900ms;
}
html, body {
  font-family: 'メイリオ', 'Meiryo', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'ＭＳ Ｐゴシック', 'Osaka', sans-serif;
  font-weight: 500;
  font-size: 95%;
  margin: 0 auto;
  line-height: 1.7;
  vertical-align: middle;
  box-sizing: border-box;
}
/* ------------------------------
  基本設定
-------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
}
ul {
  list-style: none;
}
img { /* Fluid-img */
  max-width: 100%;
  display: block;
  margin: 0 auto 0 auto;
  vertical-align: middle;
}
img.nomal {
  max-width: 100%;
  display: block;
  margin: 0;
  vertical-align: middle;
}
td img {
  vertical-align: baseline;
}
strong {
  font-weight: 800;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
p {
  margin: 0 0 0 0px;
  padding: 0 0 0 0;
  line-height: 1.7;
  word-break: break-all /*行末で改行 （単語の途中であっても改行させる）*/
}
blockquote {
  margin: 0 30px 0 30px;
}
a {
  color: #000;
  text-decoration: none;
}
a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
}
a:hover {
  text-decoration: none;
  color: #666;
}
/*--- clearfix --- */
.clearfix:after {
  content: "."; /* 新しい要素を作る */
  display: block; /* ブロックレベル要素に */
  clear: both;
  height: 0;
  visibility: hidden;
}
.clearfix {
  display: inline-block;
}
/* Hides from IE-mac \*/
* html .clearfix {
  height: 1%;
}
.clearfix {
  display: block;
}
/* End hide from IE-mac */
/* floatをクリア */
.clear {
  clear: both;
}
/* SP時改行 */
.pc {
  display: none;
}
.sp {
  display: inline;
}
/* body内
-------------------------------------------- */
#wrapper h1 {
  position: fixed;
  width: 100%;
  z-index: 100;
  background: #fff;
  text-align: center;
}
#wrapper article {
  min-height: 100vh;
  height: 100%;
}
#wrapper article section {}
#wrapper #contents1 {
  background: url("../../images/index/main-img02.jpg") no-repeat 50% 0;
  background-size: auto 100%;
}
#wrapper #contents2 {
  background: #fff;
  padding: 40px 0 0 0;
}
.basic-box {
  width: 100%;
  margin: 0 auto;
  padding: 20px 0 0 0;
}
.narrow-box {
  width: 95%;
  margin: 0 auto;
  padding: 0px 0 0 0;
}
.in-flame{
    width: 90%;
    margin: 0 auto;
  }
.voice-bg{
	background: url("../../images/index/voice-bg.jpg") center bottom repeat-x;
	padding: 0 0 80px 0;
}
/* ------------------------------
  header
-------------------------------- */
header {
  width: 100%;
  padding: 0px;
  border-bottom: 1px solid #ccc;
  position: fixed;
  background: #fff;
  z-index: 10;
}
.h1-logo {
  margin: 5px 0;
}
.h1-logo img {
  margin: 0;
  width: auto;
}
/*ヘッダーメニュー
-------------------------------------------- */
ul.gnavi {
  display: none;
}
/*drawerボタン
-------------------------------------------- */
.sp-drawer {
  display: block;
}
/* ------------------------------
  共通パーツ
-------------------------------- */
/* flexbox
-------------------------------------------- */
.flexbox01 {
  display: block;
  -webkit-justify-content: center; /*左右中央寄せ*/
  justify-content: center; /*左右中央寄せ*/
  display: -webkit-box; /* Android4.3以前ブラウザ用 */
  display: -webkit-flex; /* iOS8以前Safari用 */
  display: flex;
  -webkit-align-items: flex-start; /*上下中央寄せ*/
  align-items: flex-start; /*上下中央寄せ*/
  -webkit-flex-wrap: wrap; /*折り返し(mac safari用)*/
  flex-wrap: wrap; /*折り返し*/
  margin: 0;
}
.flexbox02 {
  display: block;
  -webkit-justify-content: space-between; /*左右中央寄せ*/
  justify-content: space-between; /*左右中央寄せ*/
  display: -webkit-box; /* Android4.3以前ブラウザ用 */
  display: -webkit-flex; /* iOS8以前Safari用 */
  display: flex;
  -webkit-align-items: flex-start; /*上下中央寄せ*/
  align-items: flex-start; /*上下中央寄せ*/
  -webkit-flex-wrap: wrap; /*折り返し(mac safari用)*/
  flex-wrap: wrap; /*折り返し*/
  margin: 0;
}
.flexbox03 {
  -webkit-justify-content: space-around; /*左右中央寄せ*/
  justify-content: space-around; /*左右中央寄せ*/
  display: -webkit-box; /* Android4.3以前ブラウザ用 */
  display: -webkit-flex; /* iOS8以前Safari用 */
  display: flex;
  -webkit-align-items: center; /*上下中央寄せ*/
  align-items: center; /*上下中央寄せ*/
  -webkit-flex-wrap: wrap; /*折り返し(mac safari用)*/
  flex-wrap: wrap; /*折り返し*/
  margin: 0 0 20px 0;
  padding: 0 0 10px 0;
}
.flexbox04 {
  display: block;
  -webkit-justify-content: space-between; /*左右中央寄せ*/
  justify-content: space-between; /*左右中央寄せ*/
  display: -webkit-box; /* Android4.3以前ブラウザ用 */
  display: -webkit-flex; /* iOS8以前Safari用 */
  display: flex;
  -webkit-flex-wrap: wrap; /*折り返し(mac safari用)*/
  flex-wrap: wrap; /*折り返し*/
  margin: 0;
}
.flexbox05 {
  display: block;
  -webkit-justify-content: flex-start; /*左右中央寄せ*/
  justify-content: flex-start; /*左右中央寄せ*/
  display: -webkit-box; /* Android4.3以前ブラウザ用 */
  display: -webkit-flex; /* iOS8以前Safari用 */
  display: flex;
	-webkit-align-items: flex-start; /*上下中央寄せ*/
  align-items: flex-start; /*上下中央寄せ*/
  -webkit-flex-wrap: wrap; /*折り返し(mac safari用)*/
  flex-wrap: wrap; /*折り返し*/
  margin: 0;
}
.flexbox06 {
  display: block;
  -webkit-justify-content: center; /*左右中央寄せ*/
  justify-content: center; /*左右中央寄せ*/
  display: -webkit-box; /* Android4.3以前ブラウザ用 */
  display: -webkit-flex; /* iOS8以前Safari用 */
  display: flex;
	-webkit-align-items: center; /*上下中央寄せ*/
  align-items: center; /*上下中央寄せ*/
  -webkit-flex-wrap: wrap; /*折り返し(mac safari用)*/
  flex-wrap: wrap; /*折り返し*/
  margin: 0;
}
.flexbox07 {
  -webkit-justify-content: space-around; /*左右中央寄せ*/
  justify-content: space-around; /*左右中央寄せ*/
  display: -webkit-box; /* Android4.3以前ブラウザ用 */
  display: -webkit-flex; /* iOS8以前Safari用 */
  display: flex;
  -webkit-align-items: flex-start; /*上下中央寄せ*/
  align-items: flex-start; /*上下中央寄せ*/
  -webkit-flex-wrap: wrap; /*折り返し(mac safari用)*/
  flex-wrap: wrap; /*折り返し*/
  margin: 0 0 20px 0;
  padding: 0 0 10px 0;
}
/* flexbox 子要素の並ぶ向き（下から上）
-------------------------------------------- */
.flexbox-rever {
  -webkit-justify-content: space-around; /*左右中央寄せ*/
  justify-content: space-around; /*左右中央寄せ*/
  display: -webkit-box; /* Android4.3以前ブラウザ用 */
  display: -webkit-flex; /* iOS8以前Safari用 */
  display: flex;
  -webkit-align-items: center; /*上下中央寄せ*/
  align-items: center; /*上下中央寄せ*/
  flex-direction: column-reverse;
  -webkit-flex-wrap: wrap; /*折り返し(mac safari用)*/
  flex-wrap: wrap; /*折り返し*/
  margin: 0 0 20px 0;
  padding: 0 0 10px 0;
}
/* 見出し
-------------------------------------------- */
h2.basic-h2 {
  margin: 0 0 20px 0;
  padding: 8px 15px;
  background: linear-gradient(-135deg, #2980b9, #0f3366);
  color: white;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
  border-bottom: 4px solid #ccc;
  position: relative;
}
h2.basic-h2:before {
  content: '';
  border-left: 2px dotted;
  margin-right: 15px;
}
.note-h2 {
    padding-left: 0px;
    line-height: 30px;
	 text-align: center;
	font-size: 26px;
	margin: 0 0px 50px 0;
	font-weight: 600;
}
.icon {
    display: inline-block;
    width: 55px;
    height: 55px;
	margin: 0 0px 20px 0;
    background: url("../../images/index/note-mark.png") center left no-repeat;
}
/*--- リンクボタン --- */
a span.link-list {
  position: absolute;
  right: 20px;
  top: -10px;
  font-family: 'Noto Sans JP', sans-serif;
  padding: 7px 25px;
  background-position: right 10px center;
  border-radius: 30px;
  border: 1px solid #000;
  margin: 0 0 0 0;
  font-weight: 500;
  background-color: #fff;
  font-size: 14px;
  display: block;
  z-index: 1;
}
a span.link-list {
  color: #000;
  text-align: center;
}
a span.link-list:hover {
  background: #E5B605;
  transition: all 0.3s;
}
/* コンテンツ
-------------------------------------------- */
.blue-bg {
  background: #e0f0ff;
  padding: 40px 0;
}
.blue-gl {
  background: #f2f2f2;
  padding: 20px 0;
}
.line {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #CCCCCC;
  border: 0; /*デフォルトデザインでは線がある場合があるので、消しておく。*/
}
/*斜線画像
-------------------------------------------- */
.diagonal_line {
  margin: 0 0 40px 0;
}
/*文字装飾
-------------------------------------------- */
.text-bold {
  font-weight: 600;
}
.text-ll {
  font-size: 23px;
}
.text-l {
  font-size: 20px;
}
.txt-hi {
  line-height: 2.5;
}
.tx-m {
  font-size: 22px;
  margin: 0 0 20px 0;
}
.tx-thick {
  font-weight: 600;
}
.hissu{
		background: #E5B605;
	margin: 0 0 0 5px;
	padding: 2px 6px;
	border-radius: 5px;
	font-size: 12px;
	font-weight: 600;
	}
/* ------------------------------
  リンクボタン
-------------------------------- */
/* ------  黒リンクボタン　共通  ------------ */
.detail,.more {
  margin: 15px auto 10px auto;
}
.detail a,.more a {
  line-height: 2;
  width: 120px;
  background-color: #222831;
  -webkit-transition: all 0.3s ease; /*ふわっとさせる間隔 Google Chrome、Safari*/
  -moz-transition: all 0.3s ease; /*ふわっとさせる間隔 Firefox*/
  -ms-transition: all 0.3s ease; /*ふわっとさせる間隔 IE*/
  -o-transition: all 0.3s ease; /*ふわっとさせる間隔 Opera*/
  transition: all 0.3s ease; /*ふわっとさせる間隔*/
  padding: 12px 40px;
  color: #fff; /*文字の色*/
  text-align: center; /*文字を揃える位置*/
  border-radius: 30px;
  cursor: pointer; /*ホバー時にカーソルの形状をポインターに*/
}
.detail a {
  padding: 12px 40px;
}
.detail a:hover {
  background-color: #E5B605; /*背景色*/
  color: #fff;
}
/*moreのボタン*/
.more a {
  padding: 6px 40px;
}
.more a:hover {
  background-color: #E5B605; /*背景色*/
  color: #fff;
}
/* ------------------------------
  リスト
-------------------------------- */
ul.check_mark {}

ul.check_mark li {
  position: relative;
  line-height: 1.6;
	margin: 0 0 0 1.5em;
}

ul.check_mark li::after {
  content: '';
  display: block;
  position: absolute;
  top: .4em;
  left: -1.5em;
  width: 10px;
  height: 5px;
  border-left: 3px solid #11396C;
  border-bottom: 3px solid #11396C;
  transform: rotate(-45deg);
}


/* ------------------------------
  footer
-------------------------------- */
footer {
  background: #f0f0f0;
  padding: 30px 0;
}
.footer-body {
  -webkit-justify-content: space-between; /*左右中央寄せ*/
  justify-content: space-between; /*左右中央寄せ*/
  display: -webkit-box; /* Android4.3以前ブラウザ用 */
  display: -webkit-flex; /* iOS8以前Safari用 */
  display: flex;
  -webkit-align-items: stretch; /*上下中央寄せ*/
  align-items: stretch; /*上下中央寄せ*/
  -webkit-flex-wrap: wrap; /*折り返し(mac safari用)*/
  flex-wrap: wrap; /*折り返し*/
  flex-direction: column-reverse;
}
.footer-ad {
  width: 90%;
  padding: 0px 0 5px 0;
  text-align: left;
  margin: 0 auto;
  font-size: 13px;
}
.footer-tel, .footer-mail {
  -webkit-justify-content: center; /*左右中央寄せ*/
  justify-content: center; /*左右中央寄せ*/
  display: -webkit-box; /* Android4.3以前ブラウザ用 */
  display: -webkit-flex; /* iOS8以前Safari用 */
  display: flex;
  -webkit-align-items: center; /*上下中央寄せ*/
  align-items: center; /*上下中央寄せ*/
}
.footer-tel {
  width: 90%;
  border: 1px solid #000;
  padding: 10px 0 10px 0px;
  margin: 0 auto 10px auto;
}
/*.footer-mail {
  width: 90%;
  border: 1px solid #000;
  padding: 10px 0 10px 0px;
  margin: 0 auto 10px auto;
}*/
.f-textbox {
  text-align: left;
  margin: 0 0 0 10px;
}
.copyright {
  width: 100%;
  padding: 5px 0 0 0;
  font-size: 11px;
}
/*横並び　区切り線付きリスト*/
.separation-list {
  margin: 10px 0;
}
.separation-list li {
  display: inline-block;
  font-size: 12px;
}
.separation-list li:not(:first-child)::before {
  content: "｜";
}
/*page top
-------------------------------------------- */
#to-top {
  z-index: 10;
  position: fixed;
  right: 5px;
  bottom: 40px;
  width: 40px;
}
@media print, screen and (min-width : 768px) {
  /* ------------------------------
  基本設定
-------------------------------- */
  /* PC時改行 */
  .pc {
    display: inline;
  }
  .sp {
    display: none;
  }
  /* body内
-------------------------------------------- */
  #wrapper #contents1 {
    background: url("../../images/index/main-img02.jpg") no-repeat 50% 0 fixed;
    background-size: cover;
  }
  .basic-box {
    width: 1200px;
    margin: 0 auto;
  }
  .narrow-box {
    width: 780px;
    margin: 0 auto;
    padding: 0px;
  }
	.in-flame{
    width: 1100px;
    margin: 0 auto;
  }
		
  /* ------------------------------
  header
-------------------------------- */
  header {
    width: 100%;
    padding: 0px;
  }
  .header-flame {
    -webkit-justify-content: space-between; /*左右中央寄せ*/
    justify-content: space-between; /*左右中央寄せ*/
    display: -webkit-box; /* Android4.3以前ブラウザ用 */
    display: -webkit-flex; /* iOS8以前Safari用 */
    display: flex;
    -webkit-align-items: center; /*上下中央寄せ*/
    align-items: center; /*上下中央寄せ*/
    -webkit-flex-wrap: wrap; /*折り返し(mac safari用)*/
    flex-wrap: wrap; /*折り返し*/
    width: 1200px;
    margin: 0 auto;
  }
  .h1-logo {
    margin: 20px 0;
  }
  .h1-logo img {
    margin: 0;
    width: auto;
  }
  /*ヘッダーメニュー
-------------------------------------------- */
  ul.gnavi {
    display: block;
    -webkit-justify-content: flex-end; /*左右中央寄せ*/
    justify-content: flex-end; /*左右中央寄せ*/
    display: -webkit-box; /* Android4.3以前ブラウザ用 */
    display: -webkit-flex; /* iOS8以前Safari用 */
    display: flex;
    -webkit-align-items: center; /*上下中央寄せ*/
    align-items: center; /*上下中央寄せ*/
    -webkit-flex-wrap: wrap; /*折り返し(mac safari用)*/
    flex-wrap: wrap; /*折り返し*/
    margin: 0;
    list-style: none;
  }
  ul.gnavi li {
    padding: 0px 15px;
    margin: 0 0 0 15px;
  }
  ul.gnavi li a {
    display: block;
    padding: 5px 0;
    position: relative;
    text-decoration: none;
    color: #000;
  }
  ul.gnavi li a::before, ul.gnavi li a::after {
    border-bottom: solid 2px #0f3366;
    bottom: 0;
    content: "";
    display: block;
    position: absolute;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    width: 0;
  }
  ul.gnavi li.button01 a::before, ul.gnavi li.button01 a::after {
    display: none;
  }
  ul.gnavi li a::before {
    left: 50%;
  }
  ul.gnavi li a::after {
    right: 50%;
  }
  ul.gnavi li a:hover::before, ul.gnavi li a:hover::after {
    width: 50%;
  }
  .button01 {
    border-radius: 25px;
    background: #297fb8;
  }
  ul.gnavi li.button02 {
    border-radius: 25px;
    background: #0f3366;
  }
  ul.gnavi li.button01 a,ul.gnavi li.button02 a {
    color: #fff;
  }
  .button01 a:hover, .button02 a:hover {
    opacity: 0.5;
    filter: alpha(opacity=70);
    -ms-filter: "alpha(opacity=70)";
  }
  /*子階層以降共通*/
  ul.gnavi li li {
    height: 0;
    overflow: hidden;
    transition: .5s;
  }
  ul.gnavi li li a {
    border-top: 1px solid #eee;
  }
  ul.gnavi li:hover > ul > li {
    height: 2rem;
    overflow: visible;
  }
  /*drawerボタン
-------------------------------------------- */
  .sp-drawer {
    display: none;
  }
  /* 見出し
-------------------------------------------- */
  h2.basic-h2 {
    margin: 20px 0 30px 0;
    padding: 10px 20px;
    color: white;
    font-weight: 500;
    font-size: 21px;
  }
  h2.basic-h2:before {
    content: '';
    border-left: 2px dotted;
    margin-right: 20px;
  }
.note-h2 {
    padding-left: 30px;
    line-height: 30px;
	 text-align: center;
	font-size: 36px;
	margin: 0 0px 50px 0;
	font-weight: 500;
}
	.icon {
	margin: 0 10px 0px 0;
}
  h3.underline {
    margin: 0; /* デフォルトCSS打ち消し */
    font-size: 32px; /* 文字サイズ指定 */
    padding: 20px 0px 10px 0px; /* 余白指定 */
    margin-bottom: 10px; /* 周りの余白指定 */
  }
  .text-s {
    font-size: 18px;
    margin: 0 0 0px 20px;
  }
  .text-s-bk {
    font-size: 16px;
    margin: 0 0 0px 0px;
  }
  h3.basic-ct, h3.basic-cs {
    padding: 10px 0;
    margin: 0 0 20px 0;
    font-size: 20px;
    text-align: center;
  }
  section h3 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 10px;
  }
/* コンテンツ
-------------------------------------------- */
.blue-gl {
  padding: 40px 0;
}
	
  /*--- リンクボタン --- */
  a span.link-list {
    position: absolute;
    right: 10px;
    top: 6px;
    padding: 7px 25px;
    background-position: right 10px center;
    margin: 0 0 0 0;
    font-size: 14px;
    display: block;
    z-index: 1;
  }
  /*文字装飾
-------------------------------------------- */
  .tx-m {
    font-size: 24px;
    margin: 0 0 20px 0;
  }
  .tx-l {
    font-size: 32px;
    margin: 0 0 30px 0;
  }
  .font-em01 {
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  }
  /*スマホのみ改行
-------------------------------------------- */
  .br-sp {
    display: none;
  }
  /* flexbox 子要素の並ぶ向き（下から上）
-------------------------------------------- */
  .flexbox-rever {
    display: -webkit-box; /* Android4.3以前ブラウザ用 */
    display: -webkit-flex; /* iOS8以前Safari用 */
    display: flex;
    flex-direction: row;
  }
  /* ------------------------------
  footer
-------------------------------- */
  .footer-body {
    width: 1200px;
    margin: 0 auto;
    flex-direction: row;
  }
  .footer-ad {
    width: 39%;
    padding: 0px 0 5px 0;
	  margin: 0;
  }
  .footer-tel {
    width: 35%;
    border: none;
    border-left: 1px solid #000;
	  border-right: 1px solid #000;
    padding: 0px 0 5px 0;
	  margin: 0 0 0 0;
  }
  /*.footer-mail {
    width: 30%;
    border: none;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    padding: 0px 0 5px 0;
  }*/
  .copyright {
    width: 100%;
    font-size: 11px;
    padding: 0px;
  }
  /*page top
-------------------------------------------- */
  #to-top {
    z-index: 10;
    position: fixed;
    left: 50%;
    margin-left: 720px;
    bottom: 20px;
    width: 40px;
  }
  /* ** */
}