@charset "utf-8";
/*
 * ==========================================================================
 *
 * [content]
 *
 * ==========================================================================
 */
/**
 * 見出し用CSS
 */
.h2title {
  position: relative;
  font-size: 4rem;
  font-weight: 700;
  margin: 100px 0 80px 0;
  padding-bottom: 20px;
  line-height: 1.5;
  text-align: center;
}
  .h2title:after {
    width: 4.2rem;
    height: .3rem;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    content: '';
    background: #005eac;
    /*background: linear-gradient(90deg, #333 0%, #333 50%, #f5cb30 50%, #f5cb30 100%);*/
  }

  body.syougaiji .h2title:after {
    background: #00a96b;
  }
  body.youji .h2title:after {
    background: #f5638a;
  }


.h2titleSub {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin: 0 auto 5px 0;
}

.h2titleRead {
  font-size: 165%;
  margin: 0 0 40px 0;
}
.h3title {
  color: #333;
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.6;
  margin: 30px 0 20px 0;
}
  .h3title.youji {
    color: #f5638a;
  }
  .h3title.syougaiji {
    color: #00a96b;
  }

.h4title {
  font-size: 2rem;
  line-height: 1.8;
  margin: 20px 0 10px 0;
}

/**
 * リスト用CSS
 */
.listStyle01 {
  list-style: none;
  padding: 0;
  margin: 0 0 0 5px;
}
.listStyle01 li {
  position: relative;
  margin-bottom: 0.6em;
  padding-left: 20px;
}
.listStyle01 li:last-child {
  margin-bottom: 0;
}
.listStyle01 li::before {
  content: '';
  display: block;
  height: 10px;
  width: 10px;
  background: #333;
  border-radius: 50%;
  position: absolute;
  top: .6em;
  left: 0;
}
/**
 * ボタン用スタイル
 */
.button {
	text-align: center;
	margin: 50px auto 0;
}

a.btnStyle01 {
  display: inline-block;
  background: #333;
  text-align: center;
  color: #fff;
  text-decoration: none;
  padding: 1.2em 3em 1.2em 2.2em;
  min-width: 140px;
  border-radius: 100px;
  font-weight: 600;
  position: relative;
}
a.btnStyle01:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 17px;
    transform: translateY(-50%);
    display: block;
    width: 22px;
    aspect-ratio: 1 / 1;
    background-color: #fff;
    border-radius: 50%;
}

a.btnStyle01:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 26px;
    transform: translateY(-50%) rotate(45deg);
    display: block;
    width: 5px;
    aspect-ratio: 1 / 1;
    border-top: solid 2px #333;
    border-right: solid 2px #333;
}

a.btnStyle01.fb {
  background-color: #3b5998;
}
a.btnStyle01.blog {
  background-color: #333;
}
a.btnStyle02 {
  display: inline-block;
  text-align: center;
  color: #333;
  text-decoration: none;
  padding: 1.2em 0;
  width: 100%;
  border-radius: 100px;
  font-weight: 600;
  position: relative;
  border: solid 1px #333;
}
a.btnStyle02:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 17px;
    transform: translateY(-50%);
    display: block;
    width: 22px;
    aspect-ratio: 1 / 1;
    background-color: #333;
    border-radius: 50%;
}

a.btnStyle02:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 26px;
    transform: translateY(-50%) rotate(45deg);
    display: block;
    width: 5px;
    aspect-ratio: 1 / 1;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
}

a.btnStyleUnselect {
  display: inline-block;
  background: #ccc;
  text-align: center;
  color: #fff;
  text-decoration: none;
  padding: 1.2em 2.6em 1.2em 2.6em;
  min-width: 140px;
  border-radius: 100px;
  font-weight: 600;
  position: relative;
}
/**
 * テーブル用スタイル
 */
.tableWrapperScroll {}
.tableStyle01 {
  width: 100%;
}
.tableStyle01 th, .tableStyle01 td {
  border: 1px solid #CCCCCC;
}
.tableStyle01 th {
  background: #f5f5f5;
  text-align: center;
  padding: 10px;
}
.tableStyle01 th.long {
  width: 74%;
}
.tableStyle01 td {
  padding: 15px 20px;
  background: #FFF;
}
.tableStyle02 {}
.tableStyle02 th, .tableStyle02 td {
  border: 1px solid #CCCCCC;
}
.tableStyle02 th {
  background: #E6E6E6;
  text-align: center;
  padding: 10px;
}
.tableStyle02 td {
  padding: 15px 20px;
  background: #FFF;
}
.tableRow {}
/**
 * 文字サイズ
 */
.s0-8r { font-size: 0.8rem; }
.s1-0r { font-size: 1.0rem; }
.s1-1r { font-size: 1.1rem; }
.s1-2r { font-size: 1.2rem; }
.s1-3r { font-size: 1.3rem; }
.s1-4r { font-size: 1.4rem; }
.s1-5r { font-size: 1.5rem; }
.s1-6r { font-size: 1.6rem; }
.s1-7r { font-size: 1.7rem; }
.s1-8r { font-size: 1.8rem; }
.s1-9r { font-size: 1.9rem; }
.s2-0r { font-size: 2.0rem; }
.s2-1r { font-size: 2.1rem; }
.s2-2r { font-size: 2.2rem; }
.s2-3r { font-size: 2.3rem; }
.s2-4r { font-size: 2.4rem; }
.s2-5r { font-size: 2.5rem; }
.s2-6r { font-size: 2.6rem; }
.s2-7r { font-size: 2.7rem; }
.s2-8r { font-size: 2.8rem; }
.s2-9r { font-size: 2.9rem; }
.s3-0r { font-size: 3.0rem; }
.s3-4r { font-size: 3.4rem; }
.s3-5r { font-size: 3.5rem; }
.s3-8r { font-size: 3.8rem; }
.s4-0r { font-size: 4.0rem; }
.s4-1r { font-size: 4.1rem; }
.s5-0r { font-size: 5.0rem; }
/**
 * transition series
 */
.trOp02s {
  -webkit-transition: 0.2s;
  -ms-transition: 0.2s;
  transition: 0.2s;
}
.trOp02s:hover {
  opacity: 0.6;
}
/**
 * linkBt
 */
.linkBt a {
  background: #fff;
  padding: 20px;
  display: block;
  position: relative;
  text-decoration: none;
}
.linkBt a:after {
  position: absolute;
  top: 50%;
  right: 20px;
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #142e60;
  border-right: 2px solid #142e60;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
  margin-top: -5px;
}


/* pager リンク
-------------------------------------------------------------------- */
.pager {
  text-align: center;
  margin-top: 50px;
}
.pager ul {
  padding: 0;
}
.pager li {
  display: inline-block;
  padding: 10px 15px;
  background: #eee;
}
.pager li:last-child {
  margin-right: 0 !important;
}
.pager li a {
  font-weight: bold;
}
.pager li.active {
  background: #a99100;
  color: #fff;
}
/* slick
-------------------------------------------------------------------- */
.banner-slider li {
  margin: 0 5px;
}

/* accordion
-------------------------------------------------------------------- */


.accordion-list:not(:first-child) {
  margin-top: 30px;
}

.accordion-title {
  background: #333;
  color: #fff;
  cursor: pointer;
  font-size: 1.8rem;
  padding: 20px 50px 20px 20px;
  position: relative;
}

.accordion-title:before {
  position: absolute;
  content: '';
  top: 50%;
  right: 25px;
  height: 2px;
  width: 25px;
  background: #fff;
  transform: rotate(90deg);
  transition: all .3s ease-in-out;
}
.accordion-title:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 25px;
  height: 2px;
  width: 25px;
  background: #fff;
  transition: all .3s ease-in-out;
}

.accordion-title.open:before {
  transform: rotate(180deg);
}
.accordion-title.open:after {
  opacity: 0;
}
.accordion-text {
  position: relative;
  margin: 0;
  background: #fff;
  display: none;
  padding: 20px;
}

/* animation
-------------------------------------------------------------------- */
.displayed{
   animation: fadeUp 1s ease-in-out forwards;
}
@keyframes fadeUp{
    0%{opacity:0; transform: translateY(50px);}
  100%{opacity:1; transform: translateY(0);}
}

/* その他レイアウト
-------------------------------------------------------------------- */
.alignCenterSp {
}


/**
 ****************************************************
 *
 * screens larger than 768
 *
 ****************************************************
 */
@media only screen and (min-width: 768px) {
  .pcDspNone {
    display: none;
  }
}
/**
 ****************************************************
 *
 * screens smaller than 767
 *
 ****************************************************
 */
@media only screen and (max-width: 767px) {
  /**
 * 見出し用CSS
 */
.h2title {
  font-size: 2rem;
  font-weight: 600;
  margin: 50px 0 40px 0;
  padding-bottom: 10px;
}
  .h2title:before {
    bottom: -10px;
    left: calc(50% - 20px);
    width: 40px;
    height: 3px;
  }
  
  .h2titleSub {
    font-size: 1.4rem;
    font-weight: 700;
  }
  
  .h2titleRead {
    font-size: 120%;
    margin: 0 0 20px 0;
  }
  .h3title {
    font-size: 1.7rem;
    margin: 20px 0 15px 0;
    text-align: center;
  }
  .h4title {
    font-size: 105%;
  }
  /**
 * テーブル用スタイル
 */
  .tableWrapperScroll {
    overflow-x: scroll;
    padding-bottom: 10px;
  }
  .tableWrapperScroll::-webkit-scrollbar {
    height: 8px;
  }
  .tableWrapperScroll::-webkit-scrollbar-track {
    background: #ccc;
    border-radius: 5px;
  }
  .tableWrapperScroll::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #003575;
  }
  .tableStyle01 {
    width: 100%;
  }
  .tableStyle01 th, .tableStyle01 td {
    border: 1px solid #CCCCCC;
  }
  .tableStyle01 th {
    text-align: center;
    padding: 5px;
  }
  .tableStyle01 th.long {
    width: 74%;
  }
  .tableStyle01 td {
    padding: 5px 10px;
    background: #FFF;
  }
  .tableRow th, .tableRow td {
    display: block;
  }
	.spDspNone { display: none; }
	.pcDspNone { display: inherit; }
	.fitImg { max-width: 100%; }
	.s0-8r { font-size: 0.6rem; }
	.s1-0r { font-size: 1.0rem; }
	.s1-1r { font-size: 1.1rem; }
	.s1-2r { font-size: 1.2rem; }
	.s1-3r { font-size: 1.2rem; }
	.s1-4r { font-size: 1.2rem; }
	.s1-5r { font-size: 1.3rem; }
	.s1-6r { font-size: 1.3rem; }
	.s1-7r { font-size: 1.3rem; }
	.s1-8r { font-size: 1.3rem; }
	.s1-9r { font-size: 1.3rem; }
	.s2-0r { font-size: 1.3rem; }
	.s2-1r { font-size: 1.5rem; }
	.s2-2r { font-size: 1.5rem; }
	.s2-3r { font-size: 1.5rem; }
	.s2-4r { font-size: 1.5rem; }
	.s2-5r { font-size: 1.5rem; }
	.s2-6r { font-size: 1.5rem; }
	.s2-7r { font-size: 1.5rem; }
	.s2-8r { font-size: 1.6rem; }
	.s2-9r { font-size: 1.6rem; }
	.s3-0r { font-size: 1.7rem; }
	.s3-4r { font-size: 1.7rem; }
	.s3-5r { font-size: 1.7rem; }
	.s3-8r { font-size: 1.8rem; }
	.s4-0r { font-size: 2.5rem; }
	.s4-1r { font-size: 2.5rem; }
	.s5-0r { font-size: 2.5rem; }
	/**
	 * transition series
	 */
	.trOp02s {
		transition: none;
	}
	.trOp02s:hover {
		opacity: 1.0;
	}
	.sectionVox {
		margin-bottom: 30px;
	}
  
.button {
	margin: 30px auto 0;
}
  
a.btnStyle01 {
  padding: 1.2em 3.2em 1.2em 3.2em;
  min-width: 175px;
}
a.btnStyle01:before {
    right: 15px;
    width: 20px;
}

a.btnStyle01:after {
    right: 23px;
    width: 4px;
    border-top: solid 2px #333;
    border-right: solid 2px #333;
}

a.btnStyle02 {
  padding: 1.2em 0;
}
a.btnStyle02:before {
    right: 15px;
    width: 20px;
}
a.btnStyle02:after {
    right: 23px;
    width: 4px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
}
  
a.btnStyleUnselect {
  padding: 1.2em 3.2em 1.2em 3.2em;
  min-width: 200px;
}
  
	.tableStyle01 { width: auto; }
	.scTable {
		overflow: auto;
		white-space: nowrap;
	}
	.scTable::-webkit-scrollbar {
		height: 3px;
	}
	.scTable::-webkit-scrollbar-track {　
		background: #CCCCCC;
	}
	.scTable::-webkit-scrollbar-thumb {
		background: #142E60;
	}
	.pageLink {
		width: 100%;
		padding: 25px 3.125% 20px;
	}
		.pageLink ul {
			width: 100%;
			padding-top: 1px;
		}
		.pageLink li {
			width: 49%;
			margin-right:2%;
			margin-bottom: 2%;
			border: 1px solid #CCCCCC;
		}
			.pageLink.oneColumn li {
				width:98%!important;
			}
		
		.pageLink li:not(:nth-child(3n)) {
			margin-right: 2%;
		}
		.pageLink li:nth-child(even) {
			margin-right: 0;
		}
			.pageLink li a {
				padding: 15px 10px 15px 38px;
			}
			.pageLink li a::before {
				background: #142E60 url(../../img/content/content/SP_ico_arr01.png) no-repeat center;
				background-size: 8px auto;
				height: 20px;
				width: 20px;
				left: 10px;
				margin-top: -11px;
			}

#popupWrapperMovie {
	width: 90%;
	margin-left: -45%;
}
/* accordion
-------------------------------------------------------------------- */
.accordion-list:not(:first-child) {
  margin-top: 10px;
}

.accordion-title {
  font-size: 1.5rem;
  padding: 20px 40px 20px 20px;
}

.accordion-title:before {
  right: 15px;
  width: 15px;
}
.accordion-title:after {
  right: 15px;
  width: 15px;
}
.accordion-text {
  padding: 20px;
}
  
  
/* その他レイアウト
-------------------------------------------------------------------- */
.alignCenterSp {
  text-align: center;
}
  
/**
	 * end
	 */
}