@charset "shift_jis";
@import url('https://fonts.googleapis.com/css2?family=Maven+Pro:wght@400;500;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;500&display=swap');

/* --------------------------------------------------基本 */
body, .plane {
	margin: 0;
	padding: 0;
	
	color: #66423f;
	font-size:100%;
	background: #FFE69F;
	letter-spacing:0.07em;
	line-height:200%;
	font-family : 'Maven Pro', 'Osaka', 'HiraKakuProN-W3', Verdana, "Noto Sans JP", 'メイリオ', sans-serif;
	font-weight: 300;
	}
html { /* スクロールバー出す */
	overflow-y:scroll;
	}
br { /* IE6、IE7対策 */
	letter-spacing: normal;
	}

p {
	margin-bottom: 30px;
	}
.icon {
	width: 200px;
	margin-bottom: 10px;
	border-radius : 50%;
	}
/* --------------------------------------------------トップ絵 */
.hero {
  position: relative;
}

/* video */

.video-box {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
}
.video {
	width: 100%;
	min-width: initial;
	min-height:  100%;
	height:  initial;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* --------------------------------------------------sns */
.sns {
	position: absolute;
	right: 0;
	margin: 2%;
	z-index: 2;
    animation: logoanime 1.0s ease 0.5s 1 forwards; /* フェードイン */
    -webkit-animation: logoanime 1.0s ease 0.5s 1 forwards;
    opacity: 0;
}
.snsicon {
	text-align: right;
	}
.snsicon img {
	width: 45px;
	margin-bottom: 5px;
	}
/* --------------------------------------------------ロゴ */
.titlelogo img {
	width: 80%;
	margin-top : 80px ;
}

.logo{
	width: 50%;
	position: absolute;
	left: 3%;
	top :5%;
	z-index: 3;
    animation: logoanime 1.0s ease 0s 1 forwards; /* フェードイン */
    -webkit-animation: logoanime 1.0s ease 0s 1 forwards;
	}
@keyframes logoanime {
	0% {opacity: 0; transform: translate3d(0,-20px,0);}
	100% {opacity: 1; transform: translate3d(0,0,0);}
	}
.credit {
	text-align: right;
	color: #fff;
	font-size:80%;
	font-family : 'Maven Pro', Verdana, "Noto Sans JP", 'メイリオ', sans-serif;
	font-weight: 500;
	padding: 1.3em 1em;
	letter-spacing: 3px;
	}
.credit a:link{ color:#fff;text-decoration:none; }
.credit a:active{ color:#fff;text-decoration:none; }
.credit a:visited{ color:#fff;text-decoration:none; }
.credit a:hover{ color:#fff; }
/* --------------------------------------------------YouTube */
.movie-wrapper {
	border: 10px solid #f2d787;
	border-radius: 30px;
    position: relative;
    padding-bottom: 56.25%; /* アスペクト比16:9の場合 */
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    margin-bottom: 3rem; /* YouTubeの下に余白をつける */
}
.movie-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* --------------------------------------------------装飾 */
ul {/*シンプル*/
	list-style-image: none;
	list-style-type: circle;
    text-align: left;
	padding-left: 1em;
	}
.ul-align-center{
	display: flex;
	align-items: center;
	flex-direction: column;
	}
hr {
  height: 0;
  margin: 30px 0;
  padding: 0;
  border: 0;
}
hr {
  border-top: 2px dashed #feb8cc;
  height: 1em;
  text-align: center;
  overflow: visible;
}
hr::after {
  content: "\002702";
  background: #ffffff;
  color: #feb8cc;
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  top: -1em;
  padding: 0 0.5em;
}

.small {/* 薄くてちっちゃい文字 */
	color: rgba(0,0,0,0.35);
	font-size:90%;
	line-height:200%;
	}
.bold {
	font-weight: bold;
	}
.margin {
	margin: 25px;
	}
::selection {background: #f7e0a4; color: #fff;}
::-moz-selection {background: #f7e0a4; color: #fff;
	}
dd {margin: 0;}
li {list-style-type: circle; }

.kakko {
	display: inline-block;
    position: relative;
    margin: 2em 0;
    padding: 20px;
	background-color:rgba(255,255,255,0.3);
    border-radius: 30px;
}

a.btn_ao_c {
  display: flex;
  align-items: center;
  max-width: 500px;
  margin: 0 auto;
  padding: 1.3rem 2rem;
  background: #f2d787;
  text-decoration: none;
  transition: 0.3s;
  border-radius:300px;
}
a.btn_ao_c:hover {
  background: #FFE69F;
}
a.btn_ao_c .c__icon {
  padding-right: 10px;
}
a.btn_ao_c .c__icon img {
  width: 36px;
  vertical-align: middle;
}
a.btn_ao_c .c__text {
  display: block;
  flex-grow: 1;
  color: #fff;
  font-weight: bold;
  text-align: center;
  position: relative;
  padding-right: 15px;
  font-size: 23px;
}
a.btn_ao_c .c__text::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  transform: rotate(45deg);
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  transition: 0.3s;
}
a.btn_ao_c .c__text .c__in {
  display: flex;
  align-items: center;
  justify-content: center;
}
a.btn_ao_c br {
  display: none;
}
@media (max-width: 736px) {
  a.btn_ao_c .c__icon img {
    width: 42px;
  }
  a.btn_ao_c .c__text {
    font-size: 14px;
    padding-right: 20px;
  }
  a.btn_ao_c .c__text::after {
    width: 10px;
    height: 10px;
  }
  a.btn_ao_c br {
    display: block;
  }
}

/* --------------------------------------------------メール */
.color {
	font-size: 140%;
	padding: 0.7rem 1.2rem;
	font-family: 'Maven Pro', Verdana, "Noto Sans JP", 'メイリオ', sans-serif;
    border-radius: 5px;
	background-color:rgba(242, 215, 135, 0.5);
	}
.contact img{
	margin: 0 3px;
	vertical-align: middle;
}
.contact span{
	vertical-align: middle;
}
.at {
	width: 25px;
	}

/* --------------------------------------------------リンクテキスト */
a:link{ color:#66423f; }
a:active{ color:#66423f; }
a:visited{ color:#777777; }
a:hover{ color:#cf9e90;text-decoration:none; 
}
a img {
  transition-duration: 0.5s;
}
a {/* 点線消す */
    outline: none;
	}
a[target="_blank"]:after { /*別窓*/
	content: url(newwin.png);
	margin: 0px 3px;
	}
.credit a[target="_blank"]:after,
.snsicon a[target="_blank"]:after,
.works .samune a[target="_blank"]:after,
a[target="_blank"].btn_ao_c:after {
	content: none;
	margin: none;
	}
/* --------------------------------------------------画像 */
img {
	border: 0;
	max-width : 100% ; /* 画面ぴったり画像 */
	height : auto ;
	}
	

/* --------------------------------------------------著作権表示 */
#footer{
	color: #66423f;
	font-family : 'Maven Pro', Verdana, "Noto Sans JP", 'メイリオ', sans-serif;
	font-weight: 500;
	clear: both;
	padding: 1em 0 5em 0;
	text-align: center;
	font-size: 13px;
	letter-spacing: 3px;
	width: 100%;
	padding-bottom: 30px;
	}

/* --------------------------------------------------その他のスタイル */

h2 {
  position: relative;
  margin: 0em 0 1.2em 0;
  text-align: center;
  font-size: 200%;
  font-weight: 900;
  letter-spacing: 0.3em;
  color: #f2d787;
}

h2 span {
  position: relative;
  padding: 0 1em;
}


h3 {
  position: relative;
  display: inline-block;
  padding: 0.5rem 1rem 0.5rem 2rem;
  font-size: 90%;
  color: #fff;
  border-radius: 100vh 0 0 100vh;
  background: #d8d6d1;
  margin:  10px 3px;;
}

h3:before {
  position: absolute;
  top: calc(50% - 7px);
  left: 10px;
  width: 14px;
  height: 14px;
  content: '';
  border-radius: 50%;
  background: #ffffff;
}

.info h3 {
  padding: 5px 10px 5px 30px;
  margin:  0 3px;
}
h3 a:link{ color:#fff; text-decoration:none;}
h3 a:active{ color:#fff; }
h3 a:visited{ color:#fff; }
h3 a:hover{ color:#fff;}
h4 {
	margin: 0 0 10px 0;
	font-family: 'Maven Pro', Verdana, "Noto Sans JP", 'メイリオ', sans-serif;
}

/* //////////////////////////////////////アニメーション */
.video {
    animation: fadeIn 1.3s ease 0.15s 1 forwards; /* フェードイン */
    -webkit-animation: fadeIn 1.3s ease 0.15s 1 forwards;
    opacity: 0;
	}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
	}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
	}

/* --------------------------------------------------骨組み */
.big-wrapper {
	background-color: #FFE69F;
}
.wrapper {
	margin: 0 auto;
	max-width: 800px;
	padding: 0 4%;
	text-align: center;
	}
section {
	padding : 6% 4%;
	background-color: #ffffff;
	border-radius : 50px;
	margin-bottom: 90px;
	}
.clearfix:after{/*回りこみ解除*/
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
	}

.sunnypuff_column {
	float: right;
	padding:0 10px;
	width: 45%;
	}
.picoco_column {
	float: left;
	padding:0 10px;
	width: 45%;
	}
.sunnypuff_column img, 
.picoco_column img {
	max-width: 120px;
	border-radius : 50%;
	}



.profile_column {
	float: right;
	text-align: left;
	width: 50%;
	}
.profile_image {
	float: left;
	width: 49%;
	margin: 10px 0 15px 0;
	}
.profile_column_hinano {
	float: right;
	text-align: left;
	width: 55%;
	}
.profile_image_hinano {
	float: left;
	width: 31%;
	margin: 10px 0 15px 0;
	}
/* --------------------------------------------------Works */

.works img {
	max-width: 200px;
	border-radius : 50%;
	margin-right : 40px;
	}
table {
	margin: 0 auto;
	}
.text {
	text-align: left;
	}
td {
	padding: 0 0 30px 0;
	}


/* --------------------------------------------------Word */

.word table {
	border-spacing: 10px;
}
.word td {
	padding: 0px;
	}


/* -------------------------------------------------- */
@media all and (max-width: 1400px)  {/* 横1400以下の大きさに適用 */
.wrapper {
	clear: both;
	}
body{/* ←英数字でも改行させる */
    -webkit-text-size-adjust: 100%;
	word-wrap:break-word;
	}
.entry-content pre { /* 自動的に改行 */
	overflow:scroll;
	word-wrap:normal;
	}

}


/* -------------------------------------------------- */
@media all and (max-width: 600px) { /* 横600以下に適用 */

body { /*行間狭く*/
	font-size:80%;
	line-height:200%;
	}
#footer{
	font-size:95%;
	}
.sns {
	margin: 3%;
}
.snsicon img {
	width: 40px;
	}
.logo{
	width: 80%;
	left: 3%;
	top :3%;
	}
.titlelogo img {
	margin-top : 40px ;
	}
.titlelogo {
	text-align: left;
	}
.big-wrapper {
	background-image   : none;
	}
.works img {
	max-width: 150px;
	margin-right:20px;
	}
h3 {
	padding: 0.2rem 0.5rem 0.2rem 2rem;
  }
td {
	padding: 0 0px 24px 0;
	}
.profile_image, .profile_image_hinano {
	float: none;
	text-align:center;
	margin: 0 0px 15px 0;
	width: 100%;
	}
.profile_image img {
	width: 90%;
	}
.profile_column, .profile_column_hinano, .picoco_column, .sunnypuff_column   {
	float: none;
	width:100%;
	text-align: center;
	}
 .picoco_column {
	margin-bottom:50px;
 }
.movie-wrapper {
	border-radius: 15px;
	}
.credit {
	font-size:90%;
	}
section {
	border-radius : 30px;
	margin-bottom: 50px;
	}
}

/* -------------------------------------------------- */
@media screen and (max-aspect-ratio: 16/9) {/* 縦長のディスプレイに適用 */
.video {
	width: initial;
	min-width: 100%;
	min-height:  initial;
	height:  100%;
	}
}
