@charset "utf-8";

/*レスポンシブ用に変更*/
#container {
     min-width: 0px; 
}
@media (min-width: 769px) {
  .sp{
    display: none;
  }
}
@media (max-width: 768px) {
  .pc{
    display: none;
  }
}
/*#00489a 紺*/
/*#e2f4f7 うす水色*/

.wp-mmsan{
	background: url("../img/bg_mmsan.jpg")
}
.wp-profile{
	width: 940px;
	margin: 0 auto;
	padding-top: 80px;
  position: relative;
	z-index: 2;
}
@media (max-width: 940px) {
  .wp-profile{
    padding-top: 50px;
    width: 90%;
  }
}
.wp-profile-innner{
	padding: 80px 110px;
	border-width: 7px;
	border-radius: 30px;
	position: relative;
	border: 10px #00489a solid;
	background-color: #fff;
  position: relative;
}
@media (max-width: 940px) {
  .wp-profile-innner{
    padding: 30px;
    padding-bottom: 100px;
  }
}
.img_mmsan_left{
	display: block;
	width: 190px;
	height: 200px;
	left: -140px;
	position: absolute;
	transform: translateY(100%);
	background: url("../img/img_mmsan1.png");
	background-repeat: no-repeat;
	z-index: -1;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .img_mmsan_left{
    width: 120px;
    background-size:120px auto;
    left: -90px;
  }
}
@media (max-width: 768px) {
  .img_mmsan_left{
    display: none;
  }
}
.img_mmsan_right{
	display: block;
	width: 190px;
	height: 200px;
	right: -140px;
	position: absolute;
	transform: translateY(300%);
	background: url("../img/img_mmsan2.png");
	background-repeat: no-repeat;
	z-index: -1;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .img_mmsan_right{
    width: 120px;
    background-size:120px auto;
    right: -80px;
  }
}
@media (max-width: 768px) {
  .img_mmsan_right{
    display: none;
  }
}
.img_mmsan{
	position: absolute;
	right: 30px;
	bottom: 0px;
	overflow: hidden;
}
.img_mmsan img{
	height: 200px;
}
@media (max-width: 940px) {
  .img_mmsan img{
    height: 100px;
  }
}

/*プロフィールタイトル*/
.profile-mv {
  display: flex;
  justify-content: space-between;
	margin-bottom: 60px;
}
@media (max-width: 768px) {
  .profile-mv{
    flex-direction: column;
  }
}
.profile-mv .tit{
  width: 50%;
  text-align: center;
}
@media (max-width: 768px) {
  .profile-mv .tit{
    width: 100%;
  }
  .profile-mv .tit img{
    width: 100%;
  }
}
.profile-mv .img{
  width: 50%;
  text-align: center;
}
@media (max-width: 768px) {
  .profile-mv .img{
    width: 100%;
  }
  .profile-mv .img img{
    width: 100%;
  }
}
.profile-mv:after {
	content: '';
	display: block;
	clear: both;
}

/*プロフィール各内容*/
.profile-content{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .profile-content{
    flex-direction: column;
  }
}
.profile-content .content01{
	width: 47%;
	background: #fffcf0;
	border-radius: 10px 10px 0 0;
	text-align: center;
	margin-bottom: 50px;
	position: relative;
}
@media (max-width: 768px) {
  .profile-content .content01{
    width: 100%;
  }
}
.profile-content .content01:before {
	content: '';
	display: block;
	width: 46px;
	height: 32px;
	left: -5px;
	position: absolute;
	transform: translateY(-50%);
	background-position: 50%;
	background: url("../img/img_hat.png");
	background-repeat: no-repeat;
}
.profile-content .tit01{
	padding: 10px 0;
	background: #e2f4f7;
	font-size: 20px;
	color: #00489a;
	border-radius: 10px 10px 0 0;
}
.profile-content .txt-profile-content{
	padding: 20px 10px;
	font-size: 16px;
}
@media (max-width: 768px) {
  .profile-content .txt-profile-content{
    font-size: 14px;
  }
}
/*下部画像エリア*/
.wp-bottom-img{
  position: relative;
  overflow: hidden;
  padding-bottom: 330px;
  background: url("../img/img_nami.png") repeat-x left bottom;
}
@media (max-width: 768px) {
  .wp-bottom-img{
    background-size:70px 70px;
    padding-bottom: 300px;
  }
}
@keyframes loop {
  100% {
    transform: translateX(-40%);
  }
}
@keyframes loop-sp {
  100% {
    transform: translateX(-100%);
  }
}
.bottom-img-flying-mmsan{
	position: absolute;
  bottom: 110px;
  width: 100%;
  height: 200px;
  overflow: hidden;
  transform: translateX(90%);/*初期位置*/
	animation: loop 30s linear infinite;
}
@media (max-width: 768px) {
  .bottom-img-flying-mmsan{
    bottom: 50px;
    transform: translateX(85%);/*初期位置*/
    width: auto;
    animation: loop-sp 15s linear infinite;
  }
  .bottom-img-flying-mmsan img{
    width: 400px;
  }
}