@charset "utf-8";



/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("keyframes.css");

/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@300&display=swap');

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #545454;	/*全体の文字色*/
	font-family: "M PLUS Rounded 1c", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 15px;		/*文字サイズ*/
	line-height: 2.5;		/*行間*/
	background: #f7f4f0;	/*背景色*/
	-webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {margin: 0px;padding: 0px;font-size: 100%;}
ul {list-style-type: none;}
ol {padding-left: 40px;padding-bottom: 15px;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #545454;		/*リンクテキストの色*/
	transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
}
a:hover {
	color: #d33737;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

a:hover img {
	opacity: 0.7;
}

/*コンテナー（サイト全体を囲むブロック）
---------------------------------------------------------------------------*/
#container {
	max-width: 1400px;	/*最大幅。これ以上広くならない指定。*/
	margin: 0 auto;
}

/*ヘッダー（一番上の、ロゴやスライドショーが入っているブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	text-align: center;
	background: #fff;
}



/*メニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体への指定*/
#menubar {
	line-height: 2;
	text-align: center;
	font-size: 18px;	/*文字サイズ*/
	width: 100%;
	background-color: #fff;
	padding: 30px 0;
}
/*メニュー１個あたりの指定*/
#menubar li {
	display: inline-block;	/*横並びにする指定*/
	margin: 0px 5px;			/*上下、左右へのメニューの外側にとる余白*/
}
#menubar li a {
	text-decoration: none;display: block;
	padding: 0px 20px;	/*上下、左右へのメニューの内側にとる余白*/
}
/*現在表示中(current)と、マウスオン時の指定*/
#menubar li.current a, #menubar li a:hover {
	background: #d33737;	/*背景色*/
	color: #fff;			/*文字色*/
	border-radius: 100px;	/*角丸のサイズ。大きめであれば適当で構いません。この１行を削除すると、長方形になります。*/
}
/*section
---------------------------------------------------------------------------*/
section {
	width: 100%;
	max-width: 1000px;
	margin: 20px auto 60px;
	background: #f7f4f0;
}
section h2 {
	font-size: 24px;
	border-left: solid 3px #d33737;
	padding-left: 15px;
	font-weight: 500;
}
section h3 {
	font-size: 18px;
	border-bottom: solid 1px #d33737;
}

section .cont_box {
	display: flex;
	flex-flow: row wrap; 
	justify-content: space-between;
	align-items: flex-start;
}
section#web .cont_box::after,
section#movie .cont_box::after{
  content:"";
  display: block;
  width:28%;
}
section#bnr .cont_box::before,
section#dtp .cont_box::before {
  content:"";
  display: block;
  width:21%;
  order:1;
}
section#bnr .cont_box::after,
section#dtp .cont_box::after{
  content:"";
  display: block;
  width:21%;
}
section .cont_box div {
	width: 28%;
	margin: 20px 0;
	border : solid 1px #ddd;
}
section .cont_box .div img {
	width: 100%;
}
section#bnr .cont_box div,
section#dtp .cont_box div {
	width: 21%;
	margin: 20px 0;
	border : solid 1px #ddd;
}
section#app .cont_box div {
	width: 120px;
	margin: 20px 0;
	border : solid 1px #ddd;
}

/*profile area
---------------------------------------------------------------------------*/
#profile { 
	width: 100%;
	background-color: #fff;
}
#profile .prof_box {
	width: 100%;
	max-width: 1000px;
	margin: 50px auto;
	padding: 30px 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
#profile .prof_box .name {
	width: 25%;
}
#profile .prof_box .prof {
	width: 75%;
}

/*icon area
---------------------------------------------------------------------------*/
section .icon_area {
	display: flex;
	margin: 20px 0 10px;
}
section .icon_area div {
	width: 35px;
	margin-right: 10px;
}
section .icon_area div img {
	width: 100%;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	padding: 10px;
	font-size: 90%;
}
footer a {text-decoration: none;}
footer a:hover {color: #545454;}
footer .pr {display: block;}


/*btn
---------------------------------------------------------------------------*/
input[type="submit"].btn,
input[type="button"].btn,
input[type="reset"].btn {
	-webkit-appearance: none;
	outline: none;
	border: 1px solid #d33737;
	background: #d33737;
	color: #fff;
	padding: 10px 30px;
	border-radius: 100px;
	font-size: 16px;
}
input[type="submit"].btn:hover,
input[type="button"].btn:hover,
input[type="reset"].btn:hover {
	background: #fff;
	color: #d33737;
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
body .nav-fix-pos-pagetop a {
	display: none;
}
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	display: block;text-decoration: none;text-align: center;position: fixed;animation-name: opa1;animation-duration: 1s;animation-fill-mode: forwards;
	width: 80px;		/*ボタンの幅*/
	line-height: 80px;	/*ボタンの高さ*/
	bottom: 50px;		/*画面の下からの配置場所指定*/
	right: 3%;			/*画面の右からの配置場所指定*/
	background: rgba(255,255,255,0.5);	/*背景色*/
	border: 1px dashed #ccc;			/*枠線の幅、線種、色*/
	border-radius: 50%;	/*円形にする指定。この１行を削除すると正方形になります。*/
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #fff;	/*背景色*/
	border: 1px dashed #d33737;			/*枠線の幅、線種、色*/
}

/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc {
	list-style: disc;
	padding: 0 20px 30px 42px;
}
ol {
	padding: 0 20px 30px 42px;
}

/*その他
---------------------------------------------------------------------------*/
.look {background: rgba(0,0,0,0.1);border: 1px solid #ccc;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px;}
.mb30 {margin-bottom: 30px;}
.clear {clear: both;}
.color1, .color1 a {color: #d33737;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
.big1 {font-size: 40px;letter-spacing: 0.2em;}
.mini1 {font-size: 11px;}
.mini2 {font-size: 13px;}


/*出し分け（PC/SP）
---------------------------------------------------------------------------*/
.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

.pc_inline {
  display: inline !important;
}

.sp_inline {
  display: none !important;
}

.pc_inlineblock {
  display: inline-block !important;
}
.sp_inlineblock {
  display: none !important;
}

@media only screen and (max-width: 767px) {
  .pc {    display: none !important;

  }
  .pc_inline {
    display: none !important;
  }
  .sp {
    display: block !important;
  }

  .sp_inline {
    display: inline !important;
  }

  .pc_inlineblock {
    display: none !important;
  }
  .sp_inlineblock {
    display: inline-block !important;
  }
}
/* 改行位置切り替え(PC/SP) 
---------------------------------------------------------------------------*/
br.br-pc {
	display: inline;
}
br.br-sp {
	display: none;
}
br.br-tab {
	display: none;
}

br.br-iPhoneX {
	display: none;
}

br.br-se {
	display: none;
}

@media screen and (max-width: 767px){
	br.br-pc {
		display: none;
	}
	br.br-tab {
		display: inline;
	}
}

@media screen and (max-width: 600px){
	br.br-sp {
		display: inline;
	}
}

@media screen and (max-width: 375px){
	br.br-iPhoneX {
		display: inline;
	}
}

@media screen and (max-width: 320px){
	br.br-se {
		display: inline;
	}
}

/*画面幅768px~930pxの設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

@media screen and (min-width: 768px) and (max-width: 930px){
	
/*section
---------------------------------------------------------------------------*/
section {
	width: 94%;
}	
#profile .prof_box {
	flex-direction: column;
}
#profile .prof_box .name {
	width: 90%;
	margin: 0 auto;
}
#profile .prof_box .prof {
	width: 90%;
	margin: 0 auto;
}	
	
}

/*画面幅600px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:600px){
	

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 12px;
	font-size: 2.93vw;
}

/*メニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体への指定*/
#menubar {
	font-size: 100%;
	padding: 15px 0;
}
#menubar li a {
	padding: 0px 5px;	/*上下、左右へのメニューの内側にとる余白*/
}

/*section
---------------------------------------------------------------------------*/
section {
	width: 94%;
}

/*profile area
---------------------------------------------------------------------------*/
#profile { 
	width: 100%;
	background-color: #fff;
}
#profile .prof_box {
	flex-direction: column;
}
#profile .prof_box .name {
	width: 100%;
}
#profile .prof_box .prof {
	width: 100%;
}


}



/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){

/*section
---------------------------------------------------------------------------*/
section {
	width: 94%;
}
section h2 {
	font-size: 20px;
}
section h3 {
	font-size: 17px;
}

section#web .cont_box::after,
section#movie .cont_box::after{
  width:48%;
}
section#bnr .cont_box::before,
section#dtp .cont_box::before {
  width:48%;
}
section#bnr .cont_box::after,
section#dtp .cont_box::after{
  width:48%;
}
section .cont_box div {
	width: 48%;
}
section .cont_box .div img {
	width: 100%;
}
section#bnr .cont_box div,
section#dtp .cont_box div {
	width: 48%;
}
section#app .cont_box div {
	width: 90px;
	}

/*profile area
---------------------------------------------------------------------------*/
#profile { 
	width: 100%;
}
#profile .prof_box {
	width: 94%;
	margin: 0 auto;
	font-size: 13px;
}
#profile .prof_box .name {
	width: 100%;
}
#profile .prof_box .prof {
	width: 100%;
}

/*icon area
---------------------------------------------------------------------------*/

section .icon_area div {
	width: 26px;
	margin-right: 7px;
}	

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	width: 50px;
	line-height: 50px;
	right: 1%;
}


/*その他
---------------------------------------------------------------------------*/
.big1 {font-size: 20px;}
.mini1 {font-size: 9px;}
.mini2 {font-size: 11px;}	
.sh {display:block;}
.pc {display:none;}
.ws,.wl {width: 94%;}
.fl {float: none;}
.fr {float: none;}

}
