@charset "UTF-8";

html {
	font-size: 62.5%;
}
body {
	font-family: "Noto Sans JP", sans-serif;
	color:#222;
  font-size: 1.5rem;
	letter-spacing: 0.02em;
  font-weight:400;
  background: #fff;
	/*fadeIn*/
	animation: fadeIn 1.2s ease 0s 1 normal;
  -webkit-animation: fadeIn 3s ease 0s 1 normal;
}
.wrap {
	overflow: hidden;
}
.inner {
  max-width: 1200px;
  margin: 0 auto;
}

h1,h2,h3 {
	color:#0057b8;
  text-align:center;
}
h1 {
  font-weight: 400;
}
h2 {
	font-size: 3rem;
	font-weight: 600;
	margin: 0 0 50px;
}
h3 {
  font-weight: 600;
	font-size: 2.4rem;
	margin: 0 0 20px;
}
p {
	font-weight: 300;
	line-height: 2.0;
    text-align: justify;
}
.note {
  display: inline-block;
  color: #7c7c7c;
  font-size: 1.3rem;
  line-height: 1.7;
  margin: 0.5em 0 0;
}
.sup-note {
  font-size: 1.0rem;
  vertical-align: super;
}
.cv .num, .entry .inner, footer, h1.ttl {
	text-align: center
}
small {
	display: inline-block;
	font-size: 60%;
  vertical-align: middle;
  font-feature-settings: "palt";
}
strong {
  font-weight: bold;
}

/* fadein（ページ読み込み時とスクロール時ふわっと上に出てくる）*/
.fadein {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.8s ease, transform 1.8s ease;
}
.fadein.scrollin {
  opacity: 1;
  transform: translateY(0);
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
	
/* fadeUp（順番にふわっと上に出てくる） */
.fadeUp {
  opacity: 0;
  transform: translateY(40px);
  animation-fill-mode: forwards;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeBox {
  opacity: 0;
  transform: translateY(100px);
}

/* scrolldown */
.scrolldown {
  writing-mode: vertical-rl;
  position: absolute;
  bottom: 85px;
  z-index: 5;
}
.scrolldown::before {
  content: "";
  width: 10px;
  height: 70px;
  margin: auto;
  background: url("../img/hexagon.svg") fixed no-repeat center top;
  position: absolute;
  bottom: -85px;
  left: 0;
  right: 0;
  animation: scrolldown 2s infinite;
  z-index: 5;
}
.scrolldown::after {
  content: "";
  width: 1px;
  height: 70px;
  background-color: #ccc;
  margin: auto;
  position: absolute;
  bottom: -85px;
  left: 0;
  right: 0;
}
@keyframes scrolldown {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }
  20% {
    transform: translateY(0);
    opacity: 1;
  }
  80% {
    transform: translateY(50px);
    opacity: 1;
  }
  100% {
    transform: translateY(60px);
    opacity: 0;
  }
}
@media screen and (max-width: 768px) {
  .scrolldown {
    display: none;
    left: 0;
  }
}

/* page-top */
#page-top {
  font-size: 48px;
  line-height: 1;
  position: fixed;
  bottom: 60px !important;
  right: 60px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
#page-top.show {
  opacity: 1;
  visibility: visible;
}
#page-top a {
  display: block;
  height: 60px;
  width: 60px;
  line-height: 60px;
  text-decoration: none;
  background: rgba(34, 34, 34, 0.7);
  position: fixed;
  transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 100;
}
#page-top a:before {
  content: "\02227";
  transform: scale(1.5,1.0);
  left: 45%;
  font-family: "design_plus";
  color: #fff;
  font-size: 15px;
  display: block;
  position: absolute;
  width: 18px;
  height: 18px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#page-top a:hover {
  background: #222;
}

@media screen and (max-width: 768px) {
	img {
		max-width: 100%;
		height: auto;
	}
	.mv .sp img {
		width: 100%;
	}
	h2 {
		font-size: 2.6rem;
    margin-bottom: 40px;
	}
  h3 {
     font-size: 2.0rem;
  }
	p {
		font-size: 1.4rem;
    line-height: 1.9;
	}
	#page-top {
    display: block;
    font-size: 40px;
	}
}
@media screen and (max-width: 600px) {
  h2 {
    margin-bottom: 30px;
	}
}

@media screen and (min-width: 910px), screen and (max-width: 490px) {
  .pcsp {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}
@media screen and (min-width: 491px) {
  .sp490 {
    display: none;
  }
}
@media screen and (min-width: 481px) {
  .sp480 {
    display: none;
  }
}
@media screen and (min-width: 431px) {
  .sp430 {
    display: none;
  }
}
@media screen and (min-width: 769px), screen and (max-width: 360px) {
  .pcsp2 {
    display: none;
  }
}

/* btn */
.btn a {
  display: block;
  width: 220px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  background: #0057b8;
  position: relative;
  margin: 0 auto;
  padding: 12px 0;
  transition: 0.3s;
}
.btn a::before,
.btn a::after {
  content: "";
  width: 0;
  height: 100%;
  border: 25px solid transparent;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  position: absolute;
  top: 0;
  transition: 0.3s;
}
.btn a::before {
	right: 100%;
  border-right-color: #0057b8;
}
.btn a::after {
	left: 100%;
  border-left-color: #0057b8;
}
.btn i {
  font-size: 1.9rem;
}
.btn a > span {
  margin: auto auto auto 0.2em;
}
.btn a > span::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 12px;
  transition: 0.3s;
}
.btn a span.free {
  display: inline-block;
  color: #0057b8;
  font-size: 1.2rem;
  background: #f3e500;
  margin: 0 auto 0 0.2em;
  padding: 0 3px;
  position: relative;
  bottom: 0.16em;
  transition: 0.3s;
}
.btn a:hover {
  color: #0057b8;
  background: #f3e500;
}
.btn a:hover::before {
  border-right-color: #f3e500;
}
.btn a:hover::after {
  border-left-color: #f3e500;
}
.btn a:hover span.free {
  color: #fff;
  background: #0057b8;
}
.btn a:hover > span::after {
  content: "";
  border-top: 2px solid #0057b8;
  border-right: 2px solid #0057b8;
  right: 8px;
}
@media screen and (max-width:768px) {
  .btn {
		font-size: 12px;
		width: 50%;
    min-width: 170px;
    margin: 0 auto;
	}
	.btn a {
		width: 100%;
  }
  .gnav .btn {
    width: 25px;
    min-width: 25px;
    margin: auto 0px auto auto;
  }
  .gnav .btn a {
    width: 25px;
    height: 40px;
    padding: 9px 0;
  }
  .gnav .btn a::before, .gnav .btn a::after {
    content: "";
    width: 0;
    height: 100%;
    border: 20px solid transparent;
    border-right: 12px solid transparent;
    border-left: 12px solid transparent;
    position: absolute;
    top: 0;
    transition: 0.3s;
  }
  .gnav .btn a::before {
    border-right-color: #0057b8;
  }
  .gnav .btn a::after {
    border-left-color: #0057b8;
  }
  .gnav .btn a:hover::before {
    border-right-color: #f3e500;
  }
  .gnav .btn a:hover::after {
    border-left-color: #f3e500;
  }
  .gnav .btn span {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .btn{
		width: 90%;
	}
  .btn a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 74px;
  }
  .btn a::before, .btn a::after {
    content: "";
    border: 37px solid transparent;
    border-right: 12px solid transparent;
    border-left: 12px solid transparent;
  }
  .gnav .btn a::before, .gnav .btn a::after {
    content: "";
    width: 0;
    height: 100%;
    border: 20px solid transparent;
    border-right: 12px solid transparent;
    border-left: 12px solid transparent;
    position: absolute;
    top: 0;
    transition: 0.3s;
  }
  .btn a:before, .gnav .btn a::before {
    border-right-color: #0057b8;
  }
  .btn a:after, .gnav .btn a::after {
    border-left-color: #0057b8;
  }
  .btn a:hover::before, .gnav .btn a:hover::before {
    border-right-color: #f3e500;
  }
  .btn a:hover::after, .gnav .btn a:hover::after {
    border-left-color: #f3e500;
  }
  .btn i {
    margin: 0 auto 0.2em;
  }
  .btn a > span {
    margin: 0 auto;
  }
}

/* header */
header {
  width: 100%;
  height: 100px;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
header.is-scroll {
  background: #fff;
}
.gnav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  padding: 20px 30px 20px 20px;
}
.gnav h1 a {
  transition: .3s;
}
.gnav h1 a:hover {
  opacity: 0.7;
}
.gnav h1 a img {
  width: 230px;
}
.gnav .btn:hover a {
  color: #0057b8;
  background: #f3e500;
}
.gnav .btn:hover i {
  color: #0057b8;
}
@media screen and (max-width: 768px) {
  header {
    height: 80px;
  }
  .gnav {
    height: 80px;
  }
  .gnav h1 a img {
    width: 200px;
  }
	a {
		text-decoration: none
	}
}

/* section */
section {
  padding: 80px 40px;
}
@media screen and (max-width: 768px) {
  section {
    padding: 40px 20px;
  }
}

/* kv */
.kv {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  padding: 100px 0 0;
  overflow: hidden;
}
@keyframes bggradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
.kv .photoBox {
  flex: 1;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.kv .photoBox img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: top;

}
.kv .photoBox svg {
  display: block;
  width: 100%;
  height: auto;
  top: 0%;
  left: 0;
  width: auto;
  max-width: unset;
  max-width: initial;
  height: calc(100% - 40px);
  z-index: 2;
}
.kv .inner {
  width: 100%;
  max-width: 100%;
  height: 100%;
  align-items: center;
  position: relative;
  padding: 0;
}
.kv .innerBox {
  flex: 1;
  width: 100%;
  background: #fff;
  position: relative;
  z-index: 1;
}
.kv h2 {
  display: flex;
  justify-content: center;
  width: 100%;
  text-align: center;
  font-size: 3.0rem;
  background: #fff;
  margin: 0 auto;
  padding: 20px;
}
.kv h2 span {
    display: inline-block;
    font-size: 4.5rem;
    margin: auto 0.05em;
}
.kv h2 span img {
    display: inline;
    width: 8em;
    vertical-align: sub;
    margin: auto 0 auto 0.15em;
}
.kv .txtBox {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  min-height: 3.2em;
  font-size: 5.6rem;
  font-size: min(6.0vw, 5.6rem);
  position: relative;
}
/* 背景アニメーション */
.kv .txtBox::after {
  animation: bgLRextendAnime 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 1s; /* 背景だけ先に表示してから待つ */
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #0057b8;
  margin: 0;
  bottom: 0;
	overflow: hidden;
  transform-origin: left;
  transform: scaleX(0);
  z-index: -1;
}
@keyframes bgLRextendAnime {
  0% { 
    transform: scaleX(0);
     opacity: 1; 
    }
  100% { 
    transform: scaleX(1); 
    opacity: 1; 
  }
}
.kv .txtBox ul {
  width: 100%;
  color: #fff;
  text-align: center;
  padding: 0.2em 0 0;
  position: relative;
  z-index: 1;
}
.kv .txtBox h3 {
  display: inline-block;
  color: #fff;
  font-size: 5.6rem;
  font-size: min(6.0vw, 5.6rem);
	line-height: 1.3;
	text-align: left;
	margin: auto;
  opacity: 0;
  transform: translateY(20px); /* 少し下から */
  animation: fadeInUp 0.5s ease-out forwards;
  animation-delay: 2.5s; /* 表示されてから少し遅れて */
}
.kv .text.is-active h3 {
  animation: fadeInUp 0.8s ease-out forwards;
}
.kv h3 span {
  display: inline-block;
  height: 0.9em;
  line-height: 0.85;
  margin: auto 0.15em auto 0;
}
.kv h3 span.period {
  letter-spacing: 0;
  margin-right: -0.5em;
}
.kv h3 span img {
  height: 100%;
}
.kv .text {
  display: none;
  opacity: 0;
  transition: opacity 1s ease;
}
.kv .text.is-active {
  display: block;
  opacity: 1;
  -webkit-transition: opacity 2.5s ease;
  transition: opacity 2.5s ease;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 768px) {
  .kv {
    height: 80vh;
    max-height: 680px;
    margin: 0 auto;
    padding: 80px 0 0;
  }
  .kv h2 {
    font-size: 2.0rem;
    padding: 10px;
  }
  .kv h2 span img {
    width: 6em;
  }
}
@media screen and (max-width: 490px) {
  .kv h2 {
    display: block;
    font-size: 5.0vw;
  }
  .kv h2 span img {
    width: 80vw;
    margin: auto 0;
  }
  .kv .txtBox {
    min-height: 4.4em;
    font-size: 5.6rem;
    font-size: min(8.6vw, 5.6rem);
  }
  .kv .txtBox h3 {
    font-size: 5.6rem;
    font-size: min(8.6vw, 5.6rem);
  }
}
@media screen and (max-width: 480px) {
  .kv .txtBox h3 {
    font-size: 8.8vw;
  }
}

/* intro */
.intro {
  background: #f2f2f2;
}
.intro h2 {
  margin: 0 auto 20px;
}
.intro h2 span {
  width: 4em;
  display: inline-block;
  margin: auto 0.15em auto 0;
}
.intro p {
  font-size: 1.8rem;
  text-align: center;
}
.intro .inner{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 auto;
	padding: 0;
}
.intro .inner:nth-last-child(2) {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 auto 50px;
	padding: 0 20px;
}
.intro .inner:nth-last-child(2) p {
 text-align: center;
}
.intro .innerBox {
	display: flex;
  flex-direction: column;
  width: calc(100% / 3 - 1.2%);
  min-width: 300px;
  border: 2px solid #0057b8;
  margin: 0 0 30px 1.8%;
}
.intro .innerBox:first-child {
  margin: 0 0 30px;
}
.intro .txtBox {
	width: 100%;
  padding: 24px;
}
.intro .txtBox{
	display: flex;
  flex: 1;
  flex-direction: column;
	align-items: center;
	color: #fff;
	padding-bottom: 20px;
	text-align:center;
}
.intro .innerBox h3{
  flex: 1;
	align-items: center;
	color: #0057b8;
	font-size: 2.3rem;
	text-align: center;
	margin: 0 auto;
}
.intro .innerBox p {
  color: #333;
	flex: 1;
  line-height: 2;
	margin-top: 20px;
}
.intro .photoBox {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 280px;
}
.intro .photoBox img{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.intro h3 {
  display: inline-block;
	color: #0057b8;
	text-align: center;
}
.intro h3 span { 
  display: inline;
	font-size: 3rem;
}
.intro h3 span.large { 
  display: inline-block;
	font-size: 5rem;
  margin: auto 0.1em;
}
.intro .whatis {
  margin: 40px 0 0;
  padding: 30px;
  border-radius: 10px;
  background: #0057b8;
}
.intro .whatis h3 {
	font-weight: 600;
  font-size: 2.4rem;
	text-align: center;
  margin: 0 0 20px;
}
@media screen and (max-width: 1000px) {
  .intro .innerBox {
		width: calc(94% / 2);
    min-width: 300px;
    margin: 0 10px 30px;
	}
}
@media screen and (max-width: 768px) {
  .intro h2 {
    padding: 0 20px;
  }
  .intro p {
    font-size: 1.4rem;
    text-align: left;
  }
  .intro .inner {
    display: block;
  }
  .intro .innerBox:first-child {
    margin: 0 auto 30px;
  }
  .intro .innerBox:last-child {
    margin: 0 auto;
  }
	.intro .innerBox {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: 0 auto 30px;
	}
  .intro .innerBox h3 {
    font-size: 2rem;
    text-align: left;
  }
  .intro .inner:nth-last-child(2) p {
    text-align: left;
  }
	.intro h1{
		max-width: 217px;
		width: 100%;
		margin: 0 auto;
	}
  .intro h3 span {
    font-size: 2.8rem;
  }
	.intro .innerBox .photoBox{
    width: 20%;
    height: auto;
		position: relative;
	}
  .intro .btn {
    padding: 0 20px;
  }
	.photoBox img{
		display: inline-block;
		width: 100%;
		height: auto;
	}
	.photoBox span{
		font-size: 20px;
	}
}
@media screen and (max-width: 480px) {
  .intro .innerBox {
    width: 100%;
    min-width: 100%;
    margin: 0 auto 20px
  }
  .intro .innerBox:first-child {
    margin: 0 auto 20px;
  }
  .intro .txtBox {
    max-height: none;
    padding: 15px;
  }
  .intro .innerBox h3 {
    font-size: 1.8rem;
  }
  .intro .innerBox p {
    line-height: 1.7;
    margin-top: 15px;
  }
}

/* concerns */
.concerns {
  padding: 80px 40px 0;
}
.concerns h2 span {
 display: inline-block;
 font-size: 4.5rem;
 margin: auto 0.05em;
}
.concerns h2 span img {
  display: inline;
  width: 5em;
  vertical-align: sub;
  margin: auto 0.15em auto 0;
}
.concerns .inner {
	display: flex;
	flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
}
.concerns .txtBox {
  flex: 1;
  width: 45%;
  border: 2px solid #0057b8;
  border-radius: 30px;
  margin: 0 0 2.5em 0;
  padding: 30px;
  position: relative;
}
.concerns .txtBox:before {
  content: "";
  width: 13px;
  height: 12px;  
  border: 2px solid #0057b8;
  border-radius: 50%;
  position: absolute;
  bottom: -43px;
  right: 15px;
}
.concerns .txtBox:after {
  content: "";
  width: 20px;
  height: 18px;
  border: 2px solid #0057b8;
  border-radius: 50%;
  position: absolute;
  bottom: -28px;
  right: 25px;
}
.concerns .inner ul {
  display: block;
}
.concerns .inner li {
  font-size: max(2vw, 2.0rem);
  font-weight: 600;
  text-indent: -1.5em;
  margin: 0 auto 0.5em;
  padding-left: 1.5em;
}
.check-circle {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: sub;
  line-height: 1;
  box-sizing: content-box;
  background: #5cc4ed;
  border: 0.1em solid #5cc4ed;
  margin-right: 0.2em;
  position: relative;
}
.check-circle > span {
  width: 0.58em;
  height: 0.261em;
  box-sizing: border-box;
  border: 0.1em solid #fff;
  border-top: 0;
  border-right: 0;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: translateY(-25%) rotate(-45deg);
  -ms-transform: translateY(-25%) rotate(-45deg);
  transform: translateY(-25%) rotate(-45deg);
}
.concerns .inner h3 {
	color: #0057b8;
	font-size: 2.2rem;
  line-height: 2.1;
	text-align: left;
	margin: 0 auto;
}
.concerns .inner p {
	flex: 1;
  line-height: 2;
	margin-top: 20px;
}
.concerns .photoBox {
  width: 40%;
  padding: 0 0 0 20px;
}
.concerns h3 {
  display: inline-block;
	color: #0057b8;
	text-align: center;
}
.concerns h3 span { 
  display: inline;
	font-size: 3rem;
}
.concerns h3 span.large { 
  display: inline-block;
	font-size: 5rem;
  margin: auto 0.1em;
}
.concerns .whatis {
  margin: 40px 0 0;
  padding: 30px;
  border-radius: 10px;
  background: #0057b8;
}
.concerns .whatis h3 {
	font-weight: 600;
    font-size: 2.4rem;
	text-align: center;
    margin: 0 0 20px;
}
@media screen and (max-width: 768px) {
  .concerns {
    padding: 40px 20px 0;
  }
  .concerns .inner {
    display: block;
  }
  .concerns .inner:nth-last-child(2) {
    margin: 0 auto 30px;
  }
	.concerns .inner {
    display: block;
    width: 100%;
    padding: 0;
	}
  .concerns .txtBox {
    display: block;
    width: 70%;
    min-width: 480px;
    padding: 20px;
    margin: 0 auto 2.5em;
  }
  .concerns .txtBox:before {
    content: "";
    position: absolute;
    right: 40px;
  }
  .concerns .inner li {
    font-size: max(2vw, 1.8rem);
  }
  .concerns .inner .photoBox {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 0;
  }
  .concerns .inner:nth-last-child(2) p {
    text-align: left;
  }
	.concerns h1{
		max-width: 217px;
		width: 100%;
		margin: 0 auto;
	}
  .concerns .inner h3 {
    color: #0057b8;
    font-size: 2.0rem;
    line-height: 1.7;
  }
  .concerns h3 span {
    font-size: 2.8rem;
  }
	.concerns .inner .photoBox{
		position: relative;
	}
  .concerns .btn {
    padding: 0 20px;
  }
	.photoBox span{
		font-size: 20px;
	}
}
@media screen and (max-width: 600px) {
.concerns .txtBox {
    width: 100%;
    min-width: 100%;
  }
}

.marker {
  background: linear-gradient(rgba(255, 242, 3, 0.6), rgba(255, 242, 3, 0.6)) no-repeat;
  background-size: 0 40%;
  background-position: 0 90%;
  padding: 0 0 5px;
  transition: .8s;
}
.marker.active {
  background-size: 100% 40%;
}

/* point */
.point .subttl {
  font-size:clamp(15rem, 2.3vw, 20rem);
  color: #ebf5ff;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  margin: auto auto -7rem;
}
.point h2 {
  line-height: 1.4;
}
.point h2 span {
  font-size: 4.0rem;
  margin: auto 0.1em;
}
.point h2 span:first-child {
  font-size: 7.0rem;
  margin: auto 0.1em auto 0
}
.point h2 span img {
  display: inline;
  width: 5em;
  vertical-align: middle;
  margin: auto auto -0.3em;
}
.point .innerBox {
  display: flex;
  flex-direction: row;
  margin: 0 auto 80px;
}
.point .innerBox:nth-of-type(2n) {
  display: flex;
  flex-direction: row-reverse;
}
.point .innerBox:last-child {
  margin: 0 auto;
}
.point .photoBox {
  width: 50%;
  padding: 0 30px 0 0;
}
.point .innerBox:nth-of-type(2n) .photoBox {
  padding: 0 0 0 30px;
}
.point .txtBox {
  width: 50%;
}
.point .txtBox .num {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  display: inline-block;
  border-bottom: 3px solid #333;
  margin: 0 auto 26px 0;
}
.point .txtBox .num span {
  font-size: 7.5rem;
  font-weight: 500;
  position: relative;
}
.point .txtBox .num span::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url("../img/hexagon.svg") fixed no-repeat center top;
  background-size: cover;
  margin: 0.3rem auto auto -0.7rem;
  position: absolute;
  z-index: -1;
}
.point .txtBox h3 {
  font-size: 3.0rem;
  text-align: left;
}
.point .txtBox p span {
  font-size: 120%;
  font-weight: 600;
  line-height: 1.2;
}

.fadeLeft {
animation-name: fadeLeftAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}
@keyframes fadeLeftAnime{
  from {
    opacity: 0;
	transform: translateX(-100px);
  }
  to {
    opacity: 1;
	transform: translateX(0);
  }
}
.fadeRight {
animation-name: fadeRightAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}
@keyframes fadeRightAnime {
  from {
    opacity: 0;
	transform: translateX(100px);
  }
  to {
    opacity: 1;
	transform: translateX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .point h2 span:first-child {
    margin: 0 auto;
  }
  .point .subttl {
    font-size:clamp(7rem, 2.3vw, 20rem);
    line-height: 1;
    margin: auto auto -6rem;
  }
  .point .inner {
    padding: 0;
  }
  .point .innerBox {
    margin-bottom: 30px;
  }
  .point .innerBox:nth-of-type(2n) { 
    flex-direction: row;
    margin-bottom: 20px;
  }
  .point .txtBox .num {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.1;
    display: inline-block;
    border-bottom: 2px solid #333;
    margin: 0 auto 10px 0;
  }
  .point .txtBox .num span {
    font-size: 3.5rem;
    font-weight: 500;
    position: relative;
  }
  .point .txtBox .num span::before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    background: url("../img/hexagon.svg") fixed no-repeat center top;
    background-size: cover;
    margin: 0.3rem auto auto -0.7rem;
    position: absolute;
    z-index: -1;
  }
  .point .txtBox {
    width: 75%;
  }
  .point .txtBox h3 {
    font-size: 2.2rem;
    margin: 0 0 10px;
  }
  .point .photoBox {
    flex: none;
    width: 25%;
    height: auto;
    overflow: hidden;
    align-items: flex-start;
    padding: 0;
    padding: 0 15px 0 0;
  }
  .point .innerBox:nth-of-type(2n) .photoBox {
    padding: 0 15px 0 0;
  }
}
@media screen and (max-width: 600px) {
  .point .photoBox {
    display: none;
  }
  .point .txtBox {
    width: 100%;
  }
}

/* concept */
.concept {
	width: 100%;
  background: url("../img/concept.svg") fixed no-repeat left 10% top 130px, #dbecff;
  background-size: 40% auto, cover;
}
.concept .inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.concept .txtBox {
	width: 50%;
  margin: 5% 0 5% auto;
  display: inline-table !important;
}
.concept .txtBox h2 {
	text-align: left;
	margin: 0 0 30px;
}
.concept h3 .en {
	font-size:12px;
	color:#222;
	display:block;
	margin-bottom:30px;
	letter-spacing:0.3em;
}
.concept h3 {
	padding-top:30px;
	font-size:35px;
	font-weight: 600;
	line-height: 1.6;
	color:#0057b8;
	margin-bottom:25px;
}
@media screen and (max-width: 768px) {
  .concept {
    background: url("../img/concept.svg") no-repeat left 9% top 60px, #dbecff;
    background-size: 40% auto, cover;
  }
  .concept .txtBox {
    margin: 0 0 0 auto;
  }
  .concept .txtBox h2 {
    margin: 0 0 20px;
  }
}
@media screen and (min-width: 601px) {
  .concept .photoBox {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .concept {
    height: auto;
    background: #dbecff;
    padding: 40px 20px 0;
    overflow: hidden;
  }
  .concept .inner {
    padding: 0;
  }
  .concept .inner {
    display: block;
  }
  .concept .txtBox {
    width: 100%;
    margin: 0 auto;
  }
  .concept .txtBox h2 {
    text-align: center;
  }
  .concept .txtBox p {
    margin: 0 0 20px;
  } 
  .concept .photoBox{
    position: relative;
    overflow: hidden;
    max-width: 300px;
    height: 250px;
    margin: 0 auto;
  }
  .concept .photoBox img{
    position: absolute;
    top: 0;
    object-fit: cover;
  }
}

/* flow */
.flow {
  background: #f2f2f2;
}
.flow .inner {
  padding: 0 0 0 30px;

}

/* timeline */
.timeline {
	max-width: 800px;
	width: 100%;
	margin: 0 auto 50px;
  position: relative;
}
.timeline li {
  position: relative;
  background: #fff;
  padding: 20px;
	margin: 0 0 20px 25px;
  z-index: 1;
}
.timeline .txtBox { 
  display: flex;
  align-items: center;
  position: relative;
}
.timeline .txtBox h3 { 
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  margin: 0 30px 0 0;
  padding: 5% 0;
  position: relative;
}
.timeline .txtBox h3::after {
  content: "";
  width: 1px;
  background: #0057b8;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}
.timeline .txtBox h3 span {
  display: inline-block;
  width: 50%;
}
.timeline .txtInner {
  display: flex;
  flex: 1;
  align-items: center;
}
.border-line {
	position: absolute;
	left: -2px;
	top: 25px;
	width: 4px;
	height: calc(100% - 150px);
	background: #fff;
}
.timeline .border-line {
  position: absolute;
  left: -2px;
  width: 2px;
  background: #fff;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1s ease, opacity 1s ease;
  opacity: 0;
}
.timeline .border-line.scrollin {
  transform: scaleY(1);
  opacity: 1;
}
.timeline li:before {
	content: "1";
  display: flex;
  align-items: center;
  justify-content: center; 
  color: #fff;
  font-size: 3rem;
  text-align: center;
  line-height: 1.7;
	position: absolute;
	top: 50%;
	left: -55px;
  transform: translateY(-50%);
	width: 60px;
	height: 60px;
	background: url("../img/hexagon.svg") no-repeat;
}
.timeline li:nth-child(2):before {
	content: "2";
}
.timeline li:nth-child(3):before {
	content: "3";
}
.timeline li:nth-child(4):before {
	content: "4";
}
.timeline li:nth-child(5):before {
	content: "5";
}
.timeline .btn {
  display: inline-block;
  margin: 0 0.8em 0 0;
}
.timeline .btn a {
  display: inline-block;
  width: auto;
  min-width: 120px;
  line-height: 0.5;
  font-size: 1.6rem;
  padding: 10px;
}
.timeline .btn a::before, .timeline .btn a::after {
  border: 14px solid transparent;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
}
.timeline .btn a::before {
  border-right-color: #0057b8;
}
.timeline .btn a::after {
  border-left-color: #0057b8;
}
.timeline .btn a:hover::before {
    border-right-color: #f3e500;
}
.timeline .btn a:hover::after {
    border-left-color: #f3e500;
}
@media screen and (max-width: 768px) {
  .timeline .btn {
    width: auto;
    min-width: 120px;
  }
}
@media screen and (max-width: 600px) {
  .flow .inner {
    padding: 0;
    margin: 0 auto 0 10px;
  }
  .timeline {
    max-width: calc(100% - 20px);
    margin: 0 0 0 auto;
    padding: 0 0 20px 0;
  }
  .timeline li {
    padding: 0;
  }
  .timeline .txtBox {
    display: block;
  }
  .timeline .txtBox h3 {
    width: calc(100% - 40px);
    border-right: none;
    border-bottom: 1px solid #0057b8;
    margin: 0 auto;
    padding: 20px 0;
    position: static;
  }
  .timeline .txtBox h3::after {
    display: none;
  }
  .timeline .txtBox h3 span {
    width: 40%;
    margin: 0 0 0 5px;
  }
  .timeline .txtInner {
    display: block;
    text-align: center;
    margin: 0 auto;
    padding: 20px;
  }
  .timeline .txtInner p {
    text-align: center;
  }
  .timeline .btn {
    width: auto;
    min-width: auto;
    margin: 0 0.8em 0 0;
  }
  .timeline .btn a {
    height: auto;
  }
}

/*  search  */
@media screen and (max-width: 600px) {
  .search .txtBox {
    padding: 0 20px;
  }
  .search .search_btn {
    padding: 0 20px;
  }
}

/*  faq  */
.faq {
  max-width: 1200px;
  margin: 0 auto;
}
.container {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

@keyframes minimalFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes underlineExpand {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.qa-list {
  margin: 0 auto 60px;
}
.qa {
  border-bottom: 1px solid #222;
  position: relative;
}
.qa:before {
  content: "";
  width: 0;
  height: 2px;
  background: #0057b8;
  position: absolute;
  bottom: -2px;
  left: 0;
  transition: width 0.3s ease;
}
.qa:hover:before {
  width: 100%;
}
.qattl {
  width: 100%;
  margin: 30px auto 0;
  cursor: pointer;
}
.faq h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  color: #222;
  font-size: 18px;
  text-align: left;
  cursor: pointer;
  margin: 0;
  padding: 20px 0;
  position: relative;
  transition: all 100ms ease-in-out;
}
.faq h3:hover {
  color: #0057b8;
  transition: width 0.3s ease;
}
.faq h3:hover::after {
  color: #222;
}
.faq h3 img {
  width: 15px;
  float: right;
  line-height: 35px;
  transition: all 300ms ease-in-out;
}
.faq h3.active img {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.qatxt {
  width: 100%;
  display: none;
  padding-top: 5px;
  padding-bottom: 20px;
}
.rotate-img {
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
}
.faq .hover-color {
  color: #0057b8;
 }
.accordion-no-bar {
  border-bottom: 0;
}
.qa-border {
  border-bottom: 2px solid #0057b8;
}
@media screen and (max-width: 768px) {
  .faq .qatxt ul {
    padding: 15px 0;
  } 
  .faq .qatxt.appear {
    max-height: 300px;
  } 
  .faq .qatxt li {
    font-size: 14px;
    padding: 10px 0;
  }
}

/*  footer  */
footer {
	width: 100%;
	background:#0057B8;
	padding: 50px 40px;
}
footer .btn {
  width: 100%;
}
footer a[target="_blank"] span:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-size: 1.0rem;
  content: "\f35d";
  margin: 0 0 0 0.3em;
}
footer .btn p img {
  width: 2.0em;
  margin-right: 0.3em;
}
footer .txtBox:last-child h2 span img {
  display: inline;
  width: 4.5em;
  vertical-align: sub;
  margin: auto 0.2em auto 0;
}
footer .btnBox {
  width: 50%;
}
footer .btn a {
  width: 85%;
  height: 74px;
  color: #0057B8;
  font-size: 1.7rem;
  background: #fff;
  padding: 8px 0;
}
footer .btn a::before, footer .btn a::after {
  content: "";
  border: 37px solid transparent;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
}
footer .btn a:before {
  border-right-color: #fff;
}
footer .btn a:after {
  border-left-color: #fff;
}
footer .footer_btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  padding: 0 0 30px;
}
footer .footer_btn .btn {
  width: 24%;
  min-width: 210px;
  margin: 0 0 20px;
}
footer .footer_btn .btn a img {
  display: block;
  width: 2.4em;
  margin: 0 auto;
}
footer .btn a > span::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #0057b8;
  border-right: 2px solid #0057b8;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 12px;
  margin: auto;
  transition: 0.3s;
}
footer .btn a:hover:after  {
  right: 2%;
}
footer .footer_contents {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .footer_links {
  width: 76%;
  text-align: left;
}
footer .footer_links .linkBox {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0 10px;
}
footer .footer_links .linkBox ul {
  flex-direction: column;
  margin: 0 6% 0 0;
}
footer .footer_links li {
  color: #fff;
  font-weight: 600;
  text-align: left;
  margin: 0 0 10px;
}
footer .footer_links li a {
  display: inline-block;
  color: #fff;
  font-weight: 600;
  position: relative;
  padding: 0 0 0 18px;
}
footer .footer_links li a:before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
footer .footer_links li a:hover {
  color: #F3E500;
  transition: .3s;
}
footer .footer_links li a:hover:before {
  border-top: 2px solid #F3E500;
  border-right: 2px solid #F3E500;
}
footer .footer_links .linkBox .innerBox {
  flex: 2;
}
footer .footer_links .linkBox .innerBox p {
  color: #fff;
  display: inline-block;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 10px;
}
footer .footer_links .linkBox .innerBox .txtInner {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0 10px;
}
footer .footer_links .linkBox .innerBox .txtInner ul {
  display: flex;
  flex-wrap: wrap;
  padding: 0
}
footer .footer_contact {
  width: 24%;
  min-width: 210px;
}
footer .footer_contact .btn a {
  height: 65px;
  color: #fff;
  background: #0e71e2;
}
footer .footer_contact .btn a::before, 
footer .footer_contact .btn a::after {
  width: 0;
  height: 100%;
  content: "";
  border: 33px solid transparent;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  position: absolute;
  top: 0;
}
footer .footer_contact .btn a:before {
  border-right-color: #0e71e2;
  right: 100%;
}
footer .footer_contact .btn a:after {
  border-left-color: #0e71e2;
  left: 100%;
}
footer .footer_contact .btn a span {
  font-size: 1.5rem;
}
footer .footer_contact .btn a > span::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
footer .footer_contact .btn a:hover {
  color: #0057b8;
  background: #fff;
}
footer .footer_contact .btn a:hover > span::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #0057b8;
  border-right: 2px solid #0057b8;
}
footer .footer_contact .btn a:hover:before {
  border-right-color: #fff;
  right: 100%;
}
footer .footer_contact .btn a:hover:after {
  border-left-color: #fff;
  left: 100%;
}
footer .btn a span {
  margin: 0;
}
footer .btn a:hover span {
  color: #0057B8;
  background: none;
}
footer p.footer_logo {
  margin-bottom: 8px;
}
footer p.footer_logo img {
  width: 130px;
}
footer h2 {
	color: #fff;
	font-size: 2.8rem;
	line-height: 1.2;
  text-align: left;
	margin-bottom: 5px;
  transition: .3s;
}
footer h2 img {
  display: block;
  width: 90%;
  margin: 0 auto 15px;
}
footer h2:hover { 
  opacity: 0.7;
}
footer .inner {
	color: #fff;
}
footer .inner > p {
	font-size: 2rem;
	color: #fff;
	text-align: center;
}
footer .inner > p a {
	text-align: center;
  transition: .3s;
}
footer .inner > p a:hover {
  opacity: 0.7;
}
footer .txtBox p {
  color: #fff;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
footer .copyright p {
	color: #fff;
	font-size: 1.2rem;
  line-height: 1.6;
  text-align: left;
}
@media screen and (max-width: 960px) {
  footer .footer_btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 0 10px;
  }
  footer .footer_btn .btn {
    width: 45%;
    min-width: 220px;
  }
  footer .footer_contents {
    justify-content: center;
    margin: 0 auto 30px;
  }
  footer .footer_links {
    width: 100%;
  }
  footer .footer_links .linkBox {
    justify-content: center;
    align-items: flex-start;
    padding: 0 0 15px;
  }
  footer .footer_links .linkBox ul {
    flex: auto;
    margin: 0 3%;
  }
  footer .footer_links .linkBox .innerBox {
    margin: 0 3%;
    flex: auto;
    margin: 0;
  }
  footer .footer_links .linkBox .innerBox .txtInner ul {
    margin: 0 3% 0 0;
    margin: 0;
  }
  footer .footer_contact {
    width: 45%;
  }
  footer .footer_contact .btn a {
    height: 74px;
  }
  footer .copyright p {
    text-align: center;
    margin: 0 auto;
  }
}
@media screen and (max-width: 895px) {
  footer .footer_links .linkBox .innerBox .txtInner {
    display: inline;
  }
  footer .footer_links .linkBox ul {
    flex: none;
    min-width: 255px;
  }
  footer .footer_links .linkBox .innerBox {
    flex: none;
    min-width: 255px;
  }
}
@media screen and (max-width: 768px) {
  footer {
    padding: 40px 20px;
  }
}
@media screen and (max-width: 600px) {
  footer .footer_btn {
    display: block;
    padding: 0 0 10px;
  }
  footer .footer_btn .btn {
    width: 90%;
    margin: 0 auto;
  }
  footer .btn {
    padding: 0 0 20px;
  }
  footer .btn a {
    width: 100%;
  }
  footer .btn ul {
    display: block;
  }
  footer .btn ul li {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 20px;
  }
  footer .footer_contents {
    display: block;
  }
  footer .footer_links {
    width: 100%;
    margin: 0 auto;
  }
  footer .footer_links .linkBox {
    display: block;
    width: 100%;
    max-inline-size: max-content;
    margin-inline: auto;
    padding: 0 0 20px;
  }
  footer .footer_links .linkBox ul {
    width: 100%;
    margin: 0 auto;
    padding: 0 0 20px;
}
  footer .footer_links li {
    text-align: left;
    margin: 0 auto 10px 0;
    width: 100%;
  }
  footer .footer_contact {
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 340px) {
.point .subttl {
    font-size: 5.4rem;
    line-height: 1;
    margin: auto auto -4.5rem;
  }
}