@charset "utf-8";
/* CSS Document */

/*基本設定*/
.sp-on{
		display: none;
	}


html {
    font-size: 10px;
}

img{
	width: 100%;
}

body {
    width: 100%;
    height: 100%;
    min-width: 1020px;
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    color: #000;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.8;
    letter-spacing: 0.08em;
    word-wrap: break-word;
    overflow-wrap: break-word;
	overflow-x: hidden;
}

li{
	 list-style: none;
}

.base_inner{
	width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.sma{
    display: none;
}

.sp-br{
		display: none;
	}

.pc-br{
	display: block;
}

/*
.base_inner {
    width: 1080px;
    padding: 0;
    margin: 0 auto;
}
*/

/*画像ズーム*/
.moimg1 {
	overflow: hidden;
	border-radius: 50px;
}

.moimg2 {
	overflow: hidden;
}

.moimg1 img , .moimg2 img{
	display: block;
	transition: 0.5s;
}
.moimg1 img:hover , .moimg2 img:hover{
	transform: scale(1.1, 1.1);
}

.zoom-in{
	display: block;
	transition: 0.5s;
}

.zoom-in:hover {
	transform: scale(1.1,1.1);
}

.scroll-up {
  opacity: 0; 
  visibility: hidden;
  transform: translateY(50px);
  transition: all 1s;
}
.scroll-up.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

h3 , h2{
	font-family: kozuka-gothic-pr6n, sans-serif;
	font-weight: 700;
	font-style: normal;
}

.animated {
    animation: move-y .5s infinite alternate ease-in-out;
    color: red;
}
@keyframes move-y {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(10px);
  }
}


/*ヘッダー*/
header{
	width: 100%;;
	display: flex;
	justify-content: space-between;
    padding: 20px 50px;
    box-shadow: 0 0 20px rgb(0 0 0 / 20%);
	position: fixed;
    background: #fff;
    z-index: 9999;
}

.header-contact {
	display: flex;
	align-items: center;
    justify-content: flex-end;
}

header ul:first-child{
	width: 15%;
}

.header-contact li:first-child{
	width: 30%;
    padding-right: 50px;
    border-right: solid 1px;
}

.header-contact li:last-child{
	width: 30%;
    padding-left: 50px;
	margin-bottom: 10px;
}

/*top*/
.box3{
  animation:2s linear infinite rotation3;
	animation-iteration-count:2;
}

@keyframes rotation3{
  0%{ transform:rotateY(0);}
  100%{ transform:rotateY(360deg); }
}

#top{
	position: relative;
	height: 800px;
	max-width: 1500px;
    margin: 0 auto;
}

.top-img{
	background: url("../img/top.png")no-repeat;
	height: 1200px;
    width: 1400px;
    background-size: 100% auto;
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.top-1{
	background: url("../img/mark-1.png")no-repeat;
    background-size: 100% auto;
    position: absolute;
    width: 250px;
    top: 350px;
    left: 200px;
    height: 300px;
	animation: bounds 1300ms linear;
    animation-fill-mode: forwards;
	animation-delay: 0.5s;
}

.top-2{
	background: url("../img/mark-2.png")no-repeat;
    background-size: 100% auto;
	position: absolute;
    width: 250px;
    top: 350px;
    left: 500px;
    height: 300px;
	animation: bounds 1300ms linear;
    animation-fill-mode: forwards;
	animation-delay: 1.5s;
}

.top-3{
	background: url("../img/mark-3.png")no-repeat;
	background-size: 100% auto;
	position: absolute;
    width: 500px;
    top: 300px;
    left: 840px;
    height: 500px;
}

#top ul{
	position: absolute;
    display: flex;
	justify-content: center;
    width: 52%;
    top: 80%;
    left: 100px;
}

#top li{
	width: 33%;
    margin: 50px 25px 0;
}

.element {
	opacity: 0;
}
.active {
	animation: bounds 1300ms linear;
	animation-fill-mode: forwards;
}
@keyframes bounds {
	0% {
		opacity: 0;
		transform: scale(1);
	}
	8% {
		opacity: 1;
		transform: scale(1.1);
	}
	17% {
		opacity: 1;
		transform: scale(1.2);
	}
	34% {
		opacity: 1;
		transform: scale(1);
	}
	51% {
		opacity: 1;
		transform: scale(1.1);
	}
	68% {
		opacity: 1;
		transform: scale(1);}
	84% {
		opacity: 1;
		transform: scale(1.05);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}


/*worries*/
#worries {
	background: #edece9;
	padding: 150px 0 40px;
}

#worries h2{
	text-align: center;
	margin-bottom: 100px;
}

#worries h2 img{
	width: 80%;
}

.worries-box{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.box-1{
	background: #fff;
    border-radius: 10%;
    box-shadow: 0 0px 25px 0 rgb(0 0 0 / 20%);
	position: relative;
	width: 47%;
	padding: 50px 50px;
	margin-bottom: 120px;
}

.box-1::after{
    content: '';
    background-repeat: no-repeat;
    background-size: 100% auto;
    display: inline-block;
    position: absolute;
    top: 180px;
    right: 20px;
}

.box-1:nth-child(1)::after{
	background-image: url(../img/01-icon.png);
	width: 200px;
    height: 170px;
}

.box-1:nth-child(2)::after{
	background-image: url(../img/02-icon.png);
	width: 200px;
    height: 200px;
}

.box-1:nth-child(3)::after{
	background-image: url(../img/03-icon.png);
	width: 160px;
    height: 170px;
}

.box-1:nth-child(4)::after{
	background-image: url(../img/04-icon.png);
	width: 150px;
    height: 220px;
    top: 130px;
}

.box-1::before{
	background-repeat: no-repeat;
    content: '';
    display: inline-block;
    background-size: 100% auto;
    vertical-align: middle;
    width: 90px;
    height: 90px;
	position: absolute;
	left: 0;
    right: 0;
    margin: 0 auto;
    top: -50px;
}

.box-1:nth-child(1)::before{
	background-image: url("../img/nmb-01.png");
}

.box-1:nth-child(2)::before{
	background-image: url("../img/nmb-02.png");
}

.box-1:nth-child(3)::before{
	background-image: url("../img/nmb-03.png");
}

.box-1:nth-child(4)::before{
	background-image: url("../img/nmb-04.png");
}

.box-1 h3{
	font-size: 24px;
	color: #385999;
	font-weight: bold;
	margin-bottom: 20px;
}

.box-1 p{
	padding-bottom: 10px;
	position: relative;
    z-index: 100;
}

.box-1 p::before {
	content: url("../img/check.png");
	margin-right: 15px;
}

.worries-box .arrow{
	position: absolute;
    bottom: 15px;
    width: 10%;
    margin: 0 auto;
    left: 0;
    right: 0;
}


/*point*/
#point{
	padding: 150px 0;
}

.point-box h2{
	font-size: 50px;
}

.point-box h2::before{
	content: '';/*何も入れない*/
  display: inline-block;/*忘れずに！*/
  width: 120px;/*画像の幅*/
  height: 100px;/*画像の高さ*/
 background-repeat: no-repeat;
  background-size: contain;
	vertical-align: sub;
}

.point-box:nth-child(1) h2::before{
	background-image: url("../img/point-1.png");
}

.point-box:nth-child(2) h2::before{
	background-image: url("../img/point-2.png");
}

.point-box:nth-child(3) h2::before{
	background-image: url("../img/point-3.png");
}

.point-box:nth-child(4) h2::before{
	background-image: url("../img/point-4.png");
}

.point-box{
	margin: 0 100px;
	padding-bottom: 150px;
}

.point-box ul{
	display: flex;
	margin-top: 80px;
    justify-content: space-between;
}

.point-box li:nth-child(1){
	width: 50%;
}

.point-box li:nth-child(2){
	width: 40%;
	font-weight: bold;
}

.point-box span{
	background: linear-gradient(transparent 10%, #ecd2c8 0%);
}

.icon-box{
	display: flex;
    margin-top: 50px;
    justify-content: space-between;
    width: 85%;
}

.icon-box img{
	width: 150px;
    height: 150px;
}

/*contact-area*/
.contact-area{
	text-align: center;
    background: #385999;
    padding: 100px 0;
	position: relative;
}

.contact-area::before{
	background-repeat: no-repeat;
	background: url("../img/arrow-2.png") no-repeat;
    content: '';
    display: inline-block;
    background-size: contain;
	width: 100px;
    height: 70px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -30px;
	animation: move-y .5s infinite alternate ease-in-out;
}

.contact-area h2{
	font-size: 34px;
	color: #fff;
}

.contact-area ul{
	display: flex;
	justify-content: center;
}

.contact-area li{
	width: 23%;
	margin: 20px;
}

/*flow*/
#flow {
	padding: 150px 0;
	background: #f9f1e8;
	text-align: center;
}

#flow h2 , #voice h2{
	font-size: 38px;
	position: relative;
  display: inline-block;
  margin-bottom: 1em;
}

#flow h2:before , #voice h2:before{
  content: '';
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 60px;
  height: 7px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #ff6884;
  border-radius: 100px 100px;
}

#flow p {
	width: 50%;
    margin: 0 auto;
    padding: 10px 0 30px;
	margin-bottom: 50px;
}

#flow .flow-area{
	background: #fff;
    border-radius: 15% 0 15% 0;
    padding: 100px;
	position: relative;
	margin-bottom: 150px;
}

#flow .flow-area::after{
	background-repeat: no-repeat;
	background: url("../img/flow-illast.png");
    content: '';
    display: inline-block;
    background-size: 100% auto;
    vertical-align: middle;
    width: 400px;
    height: 450px;
    position: absolute;
    bottom: 0;
    right: 30px;
}

#flow .flow-area li{
	width: 60%;
    margin-left: 150px;
}

.support-area ul{
	display: flex;
	justify-content: space-around;
    width: 80%;
    margin: 0 auto;
} 

.support-area li{
	width: 25%;
}

/*voice*/
#voice {
	padding: 150px 0 250px;
	text-align: center;
}

.voice-box{
	display: flex;
	align-items: center;
    justify-content: space-between;
    padding: 50px;
    margin-top: 100px;
    border: solid #edece9 4px;
    text-align: initial;
}

#voice .right-h2{
	color: #385999;
	font-size: 28px;
	margin-bottom: 0.5em;
}

#voice .right-h2::before{
	display: none;
}

#voice h4{
	color: #999999;
    font-size: 15px;
	margin-bottom: 1em;
}

#voice .right span{
	background: linear-gradient(transparent 10%, #ecd2c8 0%);
    padding: 5px 0;
	margin-bottom: 10px;
	font-weight: bold;
	font-size: 18px;
}

#voice .left{
	width: 40%;
}

#voice .left img{
	margin-bottom: 20px;
}

#voice .left span{
	padding-left: 10px;
    border-left: solid 5px #ff6884;
    font-weight: bold;
}

#voice .right{
	width: 55%;
}

#voice .right p{
	margin-bottom: 20px;
	font-size: 16px;
}

/*contact-area-2*/
#contact-area-2{
	padding: 180px 0 150px;
	background: #f9f1e8;
	position: relative;
}

#contact-area-2 p{
	text-align: center;
	font-size: 22px;
}

#contact-area-2 ul{
	display: flex;
	justify-content: center;
	margin-top: 50px;
}

#contact-area-2 li{
	width: 23%;
	margin: 20px;
}

#contact-area-2 ul::after{
	background-repeat: no-repeat;
	background: url("../img/header-illast.png");
    content: '';
    background-size: 100% auto;
    display: inline-block;
    width: 350px;
    height: 283px;
    position: absolute;
    right: 100px;
    top: -150px;
    margin: 0 auto;
}

#footer{
	background: #385999;
    padding: 100px 0 20px;
}

.footer-area{
	display: flex;
    align-items: center;
    justify-content: center;
}

.footer-area .logo{
	width: 30%;
    margin: 23px;
}

.footer-area ul{
	color: #fff;
    font-size: 20px;
    margin: 20px;
}

#footer p{
	text-align: center;
    color: #fff;
    margin-top: 50px;
}

/*contact*/
.form-main {
  background-color: #f9f1e8;
  padding-bottom: 5rem; }
  @media (max-width: 768px) {
    .form-main {
      padding: 0 2rem 5rem; } }

.contact-title {
  text-align: center; }
  .contact-title h1 {
    margin: 0;
    padding-top: 10rem; }

form {
  max-width: 680px;
  width: calc(100% - 10px);
  margin: 0 auto;
  font-size: 20px; }

.item {
  display: grid;
  align-items: center;
  padding-top: 20px; }

.sex {
  padding-top: 20px; }

.label {
  width: 300px;
  padding-left: 10px;
  border-left: solid 5px #ff6884; }

.label-required {
  color: #385999;
  font-weight: bold;
  font-size: 18px; }

input[type="text"], input[type="email"] {
  border: solid 1px #aaa;
  border-radius: 5px;
  padding: 10px;
  font-size: 15px;
  width: 100%;
  margin-top: 1rem; }
  @media (max-width: 768px) {
    input[type="text"], input[type="email"] {
      width: auto; } }

select {
  appearance: none;
  cursor: pointer;
  border: solid 1px #aaa;
  border-radius: 5px;
  padding: 10px;
  font-size: 15px; }

textarea {
  border: solid 1px #aaa;
  border-radius: 5px;
  padding: 10px;
  height: 160px;
  width: auto;
  font-size: 15px;
  margin-top: 1rem; }

.btn {
  text-align: center;
  margin: 25px auto; }

.btn :hover {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .4s;
  transition: all .4s;
  background: #f982c3; }

button {
  background: #ff6884;
  border-radius: 7px;
  cursor: pointer;
  color: white;
  font-size: 17px;
  font-weight: bold;
  padding: 10px 25px;
	border-style: none;
}

#formWrap {
  width: 700px;
  margin: 0 auto;
  color: #555;
  line-height: 120%;
  font-size: 90%; }

table.formTable {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse; }

table.formTable td, table.formTable th {
  border: 1px solid #ccc;
  padding: 10px; }

table.formTable th {
  width: 30%;
  font-weight: normal;
  background: #efefef;
  text-align: left; }

p.error_messe {
  margin: 5px 0;
  color: red; }

/*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
@media screen and (max-width: 572px) {
  #formWrap {
    width: 95%;
    margin: 0 auto; }

  table.formTable th, table.formTable td {
    width: auto;
    display: block; }

  table.formTable th {
    margin-top: 5px;
    border-bottom: 0; }

  form input[type="submit"], form input[type="reset"], form input[type="button"] {
    display: block;
    width: 100%;
    height: 40px; } }

/*スマホ*/
@media screen and (max-width: 768px){
	
	html{
		width: 100%;
	overflow-x: hidden;
	}
	
	.pc-on{
		display: none;
	}
	
.sma{
        display: block;
    }
	
	.sp-on{
		display: block;
	}
	
	.sp-br{
		display: block;
	}
	
	.pc-br{
	display: none;
	}
	
	body {
    min-width: 320px!important;
    max-width: 100%!important;
	font-size: 15px;
    font-size: 1.5rem;
		overflow-x: hidden;
}
	
	.base_inner {
    width: 100% !important;
    padding: 0 20px !important;
}
	
	header{
		padding: 20px 20px;
	}
	
	header ul:first-child {
    width: 40%;
}
	
	.top-img {
    background: url(../img/sp-top.png)no-repeat;
    width: 90%;
    background-size: 100% auto;
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
	
	.top-1 {
    width: 150px;
    top: 200px;
    left: 30px;
    height: 200px;
}
	
	.top-2 {
    width: 150px;
    top: 200px;
    left: 200px;
    height: 200px;
}
	
	.top-3 {
    background: url(../img/sp-mark-3.png)no-repeat;
    background-size: 100% auto;
    position: absolute;
    width: 220px;
    top: 540px;
    left: 30px;
    height: 200px;
}
	
	#top ul {
    display: block;
    width: 85%;
    top: 55%;
    left: 0px;
    right: 0;
    margin: 0 auto;
}
	
	#top li {
    margin: 17px 0 0 0;
    width: 100%;
}
	
	.box-1 h3 {
    font-size: 23px;
	}
	
	#worries h2{
		margin-bottom: 80px;
	}
	
	#worries{
		padding: 80px 0 10px;
	}
	
	#worries h2 img {
    width: 100%;
}
	
	.worries-box {
    display: block;
	}
	
	.box-1{
	width: 100%;
	padding: 40px 10px 50px;
		margin-bottom: 80px;
	}
	
	.box-1::before{
		width: 70px;
		height: 70px;
		top: -40px;
	}
	
	.box-1:nth-child(1)::after{
		width: 150px;
		height: 130px;
	}
	
	.box-1:nth-child(2)::after{
		width: 150px;
		height: 150px;
		top: 220px;
	}
	
	.box-1:nth-child(3)::after{
		width: 130px;
		height: 130px;
		top: 150px;
	}
	
	.box-1:nth-child(4)::after{
		width: 120px;
		height: 180px;
		top: 220px;
	}
	
	#point {
    padding: 80px 0 0;
}
	
	.point-box {
    margin: auto;
    padding-bottom: 50px;
}
	
	.point-box h2 {
    font-size: 23px;
}
	
	.point-box h2::before{
		width: 50px;
    height: 40px;
	}
	
	.point-box ul {
    display: block;
    margin-top: 20px;
}
	
	.point-box li:nth-child(1) {
    width: 100%;
}
	
	.point-box li:nth-child(2) {
    width: 100%;
    margin-top: 20px;
		margin-bottom: 50px;
}
	
	.icon-box {
    display: flex;
    margin-top: 20px;
    justify-content: space-around;
    width: 100%;
}
	
	.contact-area{
		    padding: 50px 0;
	}
	
	.contact-area h2 {
    font-size: 23px;
	}
	
	.contact-area ul {
    display: block;
}
	
	.contact-area li {
    width: 70%;
    margin: 0 auto;
    padding-top: 20px;
}
	
	.contact-area::before{
		width: 80px;
		height: 50px;
		top: -20px;
	}
	
	#flow {
    padding: 80px 0;
	}
	
	#flow p {
    width: 100%;
    margin: 0 auto;
    padding: 10px 0 20px;
	}
	
	#flow h2, #voice h2 {
    font-size: 23px;
	}
	
	#flow .flow-area li {
    width: 100%;
    margin-left: 0;
		position: relative;
    z-index: 1000;
}
	
	#flow .flow-area{
	border-top-left-radius: 50px 50px;
    border-bottom-right-radius: 50px 50px;
		padding: 40px 10px 150px;
		margin-bottom: 80px;
	}
	
	#flow .flow-area::after{
		width: 150px;
		height: 170px;
		right: 0;
	}
	
	.support-area ul{
		justify-content: space-between;
		width: 100%;
	}
	
	.support-area li {
    width: 32%;
}
	
	#voice {
    padding: 80px 0 80px;
	}
	
	.voice-box{
		display: block;
		padding: 10px;
		margin-top: 30px;
		margin-bottom: 50px;
	}
	
	#voice .left {
    width: 100%;
}
	
	#voice .right {
    width: 100%;
}
	
	#voice .right-h2{
		font-size: 23px;
		margin-top: 10px;
	}
	
	#voice h4{
		font-size: 13px;
	}
	
	#contact-area-2 {
    padding: 80px 0 50px;
	}
	
	#contact-area-2 p{
		font-size: 18px;
	}
	
	#contact-area-2 ul::after{
		width: 150px;
		height: 121px;
		right: 0;
		top: -85px;
	}
	
	#contact-area-2 ul{
		display: block;
		margin-top: 0;
	}
	
	#contact-area-2 li {
    width: 80%;
    margin: 0 auto;
    padding-top: 20px;
}
	
	#footer{
		padding: 50px 0 60px;
	}
	
	.footer-area {
    display: block;
	}
	
	.footer-area .logo {
    width: 30%;
    margin: 0;
    padding-bottom: 10px;
}
	
	.footer-area ul {
    font-size: 15px;
    margin: auto;
}
	
	.header-contact li:last-child {
    width: 50%;
    padding-left: 10px;
    padding-bottom: 10px;
	margin-bottom: 0;
}
	
	.header-contact li:first-child {
    width: 40%;
    padding-right: 10px;
}
	
	#top{
		padding-top: 0;
		height: 725px;
	}
	
}

/*デスクトップ*/
@media screen and (min-width:1500px){

	
}

@media (max-width: 520px) {
  body {
    top: 0 !important
  }
}

@media screen and (min-width: 1px) and (max-width: 1400px){
	
}
