@charset "UTF-8";
/*************************
共通
************************ */
.fontbold {
  font-weight: bold;
}

.mincho {
  font-family: YuMincho,'游明朝',"ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","HG明朝E","ＭＳ Ｐ明朝","ＭＳ 明朝",serif;
}

.underline {
  text-decoration: underline;
}

.bxshadow {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.alignctr {
  text-align: center;
}

.btn {
  display: block;
  text-align: center;
  padding: 1.5rem 3rem;
  background-color: #fff;
  border: 1px solid #1b1b1b;
  border-radius: 50px;
  line-height: 1.2;
  font-size: 1.5rem;
  color: #1b1b1b;
  box-sizing: border-box;
  width: 100%;
  max-width: 400px;
  margin: 2rem auto 0;
}

@media (max-width: 640px) {
  .btn {
    width: 80%;
    max-width: none;
    padding: 0.6rem 2rem;
    font-size: 1.3rem;
    border: none;
    background-color: #1b1b1b;
    color: #fff;
    margin: 1.4rem auto;
  }
}

.btn:hover {
  opacity: 1;
  background-color: #1b1b1b;
  color: #fff;
}

.btn:hover:after {
  border-bottom-color: #fff;
  border-right-color: #fff;
}

.btn.btnsml {
  display: inline-block;
  padding: 0.6rem 2rem;
  width: auto;
  line-height: 1;
  font-size: 1.4rem;
  margin: 0;
}

@media (max-width: 640px) {
  .btn.btnsml {
    font-size: 1.1rem;
    padding: 0.4rem 1.6rem;
    background-color: #0085da;
  }
}

.btn.btnsml:after {
  content: '\f0d7';
  display: inline-block;
  font-family: FontAwesome;
  margin-left: 0.8rem;
  font-weight: normal;
}

.morebtn {
  display: block;
  width: 100%;
  background-color: #fff;
  padding: 1rem 2rem;
  color: #1b1b1b;
  font-weight: bold;
  box-sizing: border-box;
  position: relative;
}

@media (max-width: 640px) {
  .morebtn {
    padding: 0.6rem 1.6rem;
  }
}

.morebtn:before, .morebtn:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transition: all 0.3s ease;
}

.morebtn:before {
  width: 18px;
  height: 1px;
  background-color: #1b1b1b;
  right: 2rem;
}

@media (max-width: 640px) {
  .morebtn:before {
    right: 1.6rem;
    width: 15px;
  }
}

.morebtn:after {
  width: 8px;
  height: 8px;
  background-color: transparent;
  right: 2rem;
  border-top: 1px solid #1b1b1b;
  border-right: 1px solid #1b1b1b;
  transform: rotateZ(45deg);
  margin-top: -4px;
}

@media (max-width: 640px) {
  .morebtn:after {
    right: 1.6rem;
  }
}

.morebtn:hover {
  background-color: #0085da;
  color: #fff;
  opacity: 1;
}

.morebtn:hover:before, .morebtn:hover:after {
  right: 1.2rem;
}

.morebtn:hover:before {
  background-color: #fff;
}

.morebtn:hover:after {
  border-top-color: #fff;
  border-right-color: #fff;
}

.moviebox {
  padding: 40px 60px 0;
}

.moviebox .movie {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin-bottom: 30px;
}

.moviebox .movie iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.slider {
  position: relative;
}

.slider .slick-arrow {
  display: block;
  text-align: center;
  width: 3rem;
  height: 3rem;
  position: absolute;
  font-size: 0;
  top: 50%;
  margin-top: -1.5rem;
  z-index: 10;
  cursor: pointer;
}

.slider .slick-arrow:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  transition: all 0.3s ease;
}

@media (max-width: 1170px) {
  .slider .slick-arrow:before {
    border: 8px solid transparent;
  }
}

.slider .slick-arrow.slick-prev {
  left: -3rem;
}

@media (max-width: 1170px) {
  .slider .slick-arrow.slick-prev {
    left: -1.2rem;
  }
}

.slider .slick-arrow.slick-prev:before {
  border-right-color: #979797;
  transform: translateX(-5px);
}

.slider .slick-arrow.slick-next {
  right: -3.6rem;
}

@media (max-width: 1170px) {
  .slider .slick-arrow.slick-next {
    right: -1.2rem;
  }
}

.slider .slick-arrow.slick-next:before {
  border-left-color: #979797;
  transform: translateX(5px);
}

.slider .slick-arrow:hover.slick-prev:before {
  border-right-color: #1b1b1b;
  transform: translateX(-5px);
}

.slider .slick-arrow:hover.slick-next:before {
  border-left-color: #1b1b1b;
  transform: translateX(5px);
}

.slider .slick-dots {
  display: block;
  width: 100%;
  padding: 0;
  list-style: none;
  text-align: center;
}

.slider .slick-dots li {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 3px;
  padding: 0;
  position: relative;
  line-height: 1;
}

.slider .slick-dots li button {
  line-height: 0;
  width: 20px;
  height: 20px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
  transition: all 0.3s ease;
}

.slider .slick-dots li button:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #ddd;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-font-smoothing: antialiased;
  transition: all 0.3s ease;
}

.slider .slick-dots li button:hover:before {
  background-color: rgba(0, 113, 218, 0.8);
  opacity: 1;
}

.slider .slick-dots li.slick-active button:before {
  opacity: 1;
  background-color: #0085da;
}

/* section */
.cntbox {
  max-width: 1230px;
  padding: 8rem 0;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .cntbox {
    padding: 3rem 0;
  }
}

.cntbox .container {
  max-width: 1170px;
}

.cntbox h1 {
  line-height: 1.3;
  text-align: center;
  font-size: 1.2rem;
  position: relative;
  margin: 0 auto 6rem;
  font-weight: normal;
}

@media (max-width: 640px) {
  .cntbox h1 {
    margin: 0 auto 2rem;
    font-size: 1rem;
    letter-spacing: 0.1rem;
  }
}

.cntbox h1 span {
  font-size: 5rem;
  display: block;
  letter-spacing: 0.6rem;
  line-height: 1;
  margin-bottom: 1.6rem;
  font-weight: bold;
}

@media (max-width: 640px) {
  .cntbox h1 span {
    font-size: 2.2rem;
    letter-spacing: 0.2rem;
    margin-bottom: 0.4rem;
  }
}

.cntbox p:last-of-type {
  margin-bottom: 0;
}

/*************************
front page
************************ */
#main {
  padding-top: 13.8rem;
}

@media (max-width: 640px) {
  #main {
    padding-top: 0;
  }
}

.tpmainvisu {
  padding: 0;
  margin: 0;
  position: relative;
}

.tpmainvisu .container {
  width: 100%;
  max-width: none;
  /*
		.visuinr {
			height: calc(100vh - 138px);
			background: transparent url(../img/top/img_mv01_pc.jpg) no-repeat fixed center 0;
			background-size: cover;
			@media (max-width: 640px) {
				height: 13.5rem;
				background: transparent url(../img/top/img_mv01_sp.jpg) no-repeat scroll center 0;
				background-size: cover;
			}
			.visucopy {
				width: 100%;
				position: absolute;
				top: 40%;
				right: 0;
				transform: translateY(-50%);
				@media (max-width: 1230px) {
					top: 50%;
				}
				@media (max-width: 640px) {
					//z-index: 3;
				}

				h1 {
					text-align: center;
					line-height: 0.1;
					@media (max-width: 640px) {
					}
					img {
						max-width: 553px;
						@media (max-width: 640px) {
							width: 80%;
							max-width: none;
						}
					}
				}
			}
		}


				img {
					width: 100%;
					@media (max-width: 640px) {}
				}
*/
}

.tpmainvisu .container .slidebox {
  position: relative;
}

.tpmainvisu .container .slidebox .slider .slick-dots {
  position: absolute;
  bottom: 7vw;
}

@media (max-width: 640px) {
  .tpmainvisu .container .slidebox .slider .slick-dots {
    bottom: 4rem;
  }
}

.tpinfo {
  margin-top: -6vw;
  padding: 4rem 0;
  background-color: #fff;
  position: relative;
}

@media (max-width: 640px) {
  .tpinfo {
    margin-top: 0;
    padding: 2rem 0;
  }
}

.tpinfo h1 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 4rem;
}

@media (max-width: 640px) {
  .tpinfo h1 {
    width: 100%;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
    letter-spacing: 0.05rem;
    line-height: 1.5;
  }
}

.tpinfo .container {
  background-color: #fff;
  position: relative;
}

@media (max-width: 640px) {
  .tpinfo .container {
    display: block;
  }
}

.tpinfo .container ul {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

@media (max-width: 640px) {
  .tpinfo .container ul {
    display: block;
  }
}

@media (max-width: 640px) {
  .tpinfo .container ul li {
    margin-bottom: 2rem;
  }
  .tpinfo .container ul li:last-of-type {
    margin-bottom: 0;
  }
}

.tpinfo .container ul li a {
  width: 100%;
  display: block;
}

.tpinfo .container ul li a figure {
  line-height: 0.1;
}

.tpinfo .container ul li a figure figcaption {
  display: block;
  background: #eee7e7;
  background: -moz-linear-gradient(left, #eee7e7 0%, #f9f9f9 100%);
  background: -webkit-linear-gradient(left, #eee7e7 0%, #f9f9f9 100%);
  background: linear-gradient(to right, #eee7e7 0%, #f9f9f9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eee7e7', endColorstr='#f9f9f9',GradientType=1 );
  line-height: 1;
  padding: 1.8rem 2rem;
  position: relative;
}

@media (max-width: 640px) {
  .tpinfo .container ul li a figure figcaption {
    text-align: center;
    padding: 1.2rem 2rem;
  }
}

.tpinfo .container ul.upperlist {
  margin-bottom: 5rem;
}

@media (max-width: 640px) {
  .tpinfo .container ul.upperlist {
    margin-bottom: 2rem;
  }
}

.tpinfo .container ul.upperlist li {
  width: 31.6%;
}

@media (max-width: 640px) {
  .tpinfo .container ul.upperlist li {
    width: 100%;
  }
}

.tpinfo .container ul.upperlist li a figure figcaption {
  overflow: hidden;
}

.tpinfo .container ul.upperlist li a figure figcaption:before, .tpinfo .container ul.upperlist li a figure figcaption:after {
  content: '';
  display: block;
  position: absolute;
}

.tpinfo .container ul.upperlist li a figure figcaption:before {
  width: 5rem;
  height: 5rem;
  transform: rotateZ(45deg);
  background-color: #dfd52a;
  bottom: -2.7rem;
  right: -2.6rem;
}

@media (max-width: 640px) {
  .tpinfo .container ul.upperlist li a figure figcaption:before {
    bottom: -3.2rem;
    right: -3.2rem;
  }
}

.tpinfo .container ul.upperlist li a figure figcaption:after {
  width: 0.9rem;
  height: 0.9rem;
  background-color: transparent;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  bottom: 5px;
  right: 5px;
}

@media (max-width: 640px) {
  .tpinfo .container ul.upperlist li a figure figcaption:after {
    width: 0.5rem;
    height: 0.5rem;
  }
}

.tpinfo .container ul.lowerlist li {
  width: 23.1%;
}

@media (max-width: 640px) {
  .tpinfo .container ul.lowerlist li {
    width: 100%;
  }
  .tpinfo .container ul.lowerlist li:last-of-type {
    margin-bottom: 0;
  }
}

.tpinfo .container ul.lowerlist li a {
  font-size: 1.4rem;
}

@media (max-width: 640px) {
  .tpinfo .container ul.lowerlist li a {
    font-size: 1.2rem;
  }
}

.tppostlist {
  padding: 6rem 0;
}

@media (max-width: 640px) {
  .tppostlist {
    padding: 2rem 0;
  }
}

.tppostlist .container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

@media (max-width: 640px) {
  .tppostlist .container {
    display: block;
  }
}

.tppostlist .container > div {
  width: 48%;
}

@media (max-width: 640px) {
  .tppostlist .container > div {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .tppostlist .container {
    flex-wrap: wrap;
  }
}

.tppostlist .container h2 {
  font-size: 2.2rem;
  font-weight: bold;
  border-bottom: 1px solid #002975;
  margin-bottom: 2rem;
  position: relative;
}

@media (max-width: 640px) {
  .tppostlist .container h2 {
    font-size: 1.6rem;
    line-height: 1.3;
    margin-bottom: 1.6rem;
    padding-bottom: 0.4rem;
  }
}

.tppostlist .container h2 a {
  position: absolute;
  top: 8px;
  right: 0;
  font-size: 1.5rem;
  font-weight: normal;
  color: #002975;
}

@media (max-width: 640px) {
  .tppostlist .container h2 a {
    font-size: 1.1rem;
  }
}

.tppostlist .container h2 a span {
  padding-left: 1.2rem;
  position: relative;
}

@media (max-width: 640px) {
  .tppostlist .container h2 a span {
    padding-left: 0.9rem;
  }
}

.tppostlist .container h2 a span:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border: 3px solid transparent;
  border-left: 5px solid #002975;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -4px;
}

.tppostlist .container ul li a dl dt {
  font-size: 1.2rem;
  color: #898989;
  margin-bottom: 0.6rem;
}

@media (max-width: 640px) {
  .tppostlist .container ul li a dl dt {
    margin-bottom: 0.2rem;
    font-size: 1rem;
  }
}

.tppostlist .container ul li a dl dd {
  color: #002975;
  padding-left: 1.2rem;
  margin-bottom: 2.4rem;
  position: relative;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .tppostlist .container ul li a dl dd {
    margin-bottom: 1.6rem;
    padding-left: 0.9rem;
  }
}

.tppostlist .container ul li a dl dd:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border: 3px solid transparent;
  border-left: 5px solid #002975;
  position: absolute;
  top: 0.6rem;
  left: 0;
}

@media (max-width: 640px) {
  .tppostlist .container .tptopics {
    margin-bottom: 3rem;
  }
}

.tpmember {
  background-color: #f5f5f5;
  max-width: none;
  padding: 4rem 0;
  margin-bottom: 8rem;
}

@media (max-width: 640px) {
  .tpmember {
    margin-bottom: 4rem;
  }
}

.tpmember .container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

@media (max-width: 640px) {
  .tpmember .container {
    display: block;
  }
}

.tpmember .container h1 {
  width: 17%;
  font-size: 2.2rem;
  font-weight: bold;
  text-align: left;
}

@media (max-width: 640px) {
  .tpmember .container h1 {
    width: 100%;
    text-align: center;
    font-size: 1.6rem;
  }
}

.tpmember .container ul {
  width: 83%;
}

@media (max-width: 640px) {
  .tpmember .container ul {
    width: 100%;
  }
}

.tpmember .container ul li {
  margin-bottom: 2.4rem;
}

.tpmember .container ul li:last-of-type {
  margin-bottom: 0;
}

.tpmember .container ul li dl dt {
  font-size: 1.2rem;
  color: #898989;
  display: inline-block;
}

@media (max-width: 640px) {
  .tpmember .container ul li dl dt {
    margin-bottom: 0.6rem;
    font-size: 1rem;
  }
}

.tpmember .container ul li dl dt span {
  display: inline-block;
  padding: 0.4rem 1.6rem;
  border-radius: 30px;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.3rem;
  text-align: center;
  margin-right: 2rem;
  margin-left: 3rem;
}

@media (max-width: 640px) {
  .tpmember .container ul li dl dt span {
    margin-right: 0;
    margin-left: 1.6rem;
    font-size: 1rem;
    transform: translateY(-2px);
    padding: 0.3rem 1.2rem;
    vertical-align: middle;
  }
}

.tpmember .container ul li dl dt span.entry {
  background-color: #0085da;
}

.tpmember .container ul li dl dt span.cancel {
  background-color: #454545;
}

.tpmember .container ul li dl dd {
  display: inline-block;
  color: #002975;
}
