@charset "UTF-8";

/* ==========================================================================
   Foundation
========================================================================== */

/* Reset
   ----------------------------------------------------------------- */
* {
	margin: 0px;
	padding: 0px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
a {
	margin:0;
	padding:0;
	font-size:inherit;
	color: inherit;
	vertical-align:baseline;
	background:transparent;
}
ul,li{
	list-style-type:none;
}


/* Base
   ----------------------------------------------------------------- */
html {
	font-size: 16px;
}
body {
	color: #fff;
	min-width: 960px;
	line-height: 1.3;
	font-family:"游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
	/* 明朝体は下記を使用
	font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	 */
}
img{
	border-style: none;
	vertical-align: top;
	/* max-width: 100%; */
}
input {
	vertical-align: middle;
	padding: 10px;
	font-size: 1.5em;
}
select {
	vertical-align: middle;
	padding: 10px;
	border: 1px solid #888;
	font-size: 1.5em;
}

/* ==========================================================================
   Layout
========================================================================== */

/* body */
.ow_body{
	background: #000;
}
.ow_body_bg_01{
	background: url(../../img/pc/common/body_bg_01.jpg) top center repeat-y;
	overflow: hidden;
}
.ow_body_bg_02{
	background: url(../../img/pc/common/body_bg_02.jpg) top center no-repeat;
}



/* header */
.ow_header{
	width: 960px;
	margin: 0 auto;
	position: relative;
}
.ow_header_main img{
	display: block;
	width: 960px;
	height: 585px;
	margin: 0 auto;
}
.ow_header_main_face {
	display: none;
	top: 0;
	right: -60px;
}
.ow_header_main_item {
	display: none;
	display: none;
	top: 0;
}
.ow_header_text_1 {
	display: none;
	top: 0px;
	left: 0;
	animation: sizeScale-fadeIn-2 0.3s ease-out forwards;
}
.ow_header_text_2 {
	display: none;
	top: 260px;
	left: 0;
	animation: slideUp_2 1.3s ease-out forwards;
}
.ow_header_text_3 {
	display: none;
	top: 460px;
	left: 0;
	animation: slideUp_2 1.3s ease-out forwards;
}
/* ヘッダー用ボタン */
.ow_header_btn{
	display: none;
	right: 0;
	top: 460px;
	animation: vibe_1 1.8s ease-out infinite;
}
.ow_header_btn_link{
	background: url(../../img/pc/top/header_btn.png) 0 top no-repeat;
	width: 435px;
	height: 164px;
	display: block;
}
.ow_header_btn_link:hover{
	background-position: 0 bottom;
}

/* nav */
.ow_nav{
	padding: 46px 0px 0;
}
.ow_nav .ow_nav_inner{
	width: 690px;
  margin: 0 auto;
  overflow: hidden;
}
.ow_nav .ow_nav_item{
	float: left;
	margin-left: 24px;
}
.ow_nav .ow_nav_item:first-of-type{
	margin-left: 0;
}

.ow_nav .ow_nav_link{
	display: block;
	width: 214px;
	height: 52px;
}
.ow_nav .ow_nav_link:hover{
	background-position: 0 bottom;
}
.ow_nav .ow_nav_link_1{
	background: url(../../img/pc/nav/nav_item_1.png) 0 0 no-repeat;
}
.ow_nav .ow_nav_link_2{
	background: url(../../img/pc/nav/nav_item_2.png) 0 0 no-repeat;
}
.ow_nav .ow_nav_link_3{
	background: url(../../img/pc/nav/nav_item_3.png) 0 0 no-repeat;
}
/*
.ow_nav .ow_nav_link_5{
	background: url(../../img/pc/nav/nav_item_05.png) 0 0 no-repeat;
	width: 266px;
}
*/
.ow_nav .ow_nav_link img{
	display: none;
}
/*
.ow_nav_sp{
	display:none;
}
*/

/* main */
.ow_main{
	width: 960px;
	margin: 0px auto;
	overflow: hidden;
}

/* footer */
.ow_footer{
	text-align: center;
	color: #fff;
	padding: 3% 0;
	width: 836px;
	margin: 0 auto;
	background: #000;
}
/*
.ow_footer{
	text-align: center;
	color: #fff;
	padding: 3% 0;
	width: 93%;
	margin: 0 auto;
}
*/
.ow_footer_menu > *{
	display: inline-block;
	margin: 0% 2% 2% 0%;
}
.footer_subInfo{
	text-align: center;
	margin-top: 3%;
}
.footer_subInfo img{
	width: auto;
	max-width: 100%;
}
.footer_link{
	margin-top: 3%;
}
.footer_link_head{
	margin-bottom: 1%;
}

/* ISP */
.niftyHeader{
	background: #000;
	position: relative;
}
.niftyHeader table {
	width: 900px;
	margin: 0 auto;
	background: #000;
}
/* 規約 */
.ow_rule{
	text-align: center;
	color: #fff;
	padding: 60px 0px;
	background: none;
}
/* アニメーション
----------------------------------------------------------------- */
@keyframes sizeScale-fadeIn {
	0%{
		transform: scale(0,0);
	}
	50%{
		transform: scale(1.2,1.2);
	}
	100% {
		transform: scale(1,1);
	}
}

@keyframes sizeScale-fadeIn-2{
	0%{
    transform: scale(3,3);
	}
  100% {
    transform: scale(1,1);
  }
}

@keyframes vertical{
	0% { transform:translateY(0px); }
	50% { transform:translateY(5px); }
	100% { transform:translateY(0px); }
}
@keyframes horizontal{
	0% { transform:translateX(0px); }
	50% { transform:translateX(10px); }
	100% { transform:translateX(0px); }
}

@keyframes vibe_1 {
	0%{
		transform: scale(0.98,0.98);
	}
	50%{
		transform: scale(1,1);
	}
	100% {
		transform: scale(0.98,0.98);
	}
}
@keyframes slideUp{
	0% { transform:translatey(20px); }
	100% { transform:translatey(0px); }
}
@keyframes slideUp_2{
	0% { transform:translatey(80px); }
	100% { transform:translatey(0px); }
}
@keyframes slideDown{
	0% { transform:translatey(-5px); }
	100% { transform:translatey(5px); }
}
@keyframes slideIn{
	0% { transform:translateX(-20px); }
	100% { transform:translateX(0px); }
}
@keyframes bound{
	0% {transform: translateY(0px);}
	100% {transform: translateY(-4px);}
}
@keyframes bgRotate{
	0% {
		transform:rotate(0deg);
	}
	100% { transform:rotate(360deg);
	}
}
/* ==========================================================================
   Object
========================================================================== */

/* Component
----------------------------------------------------------------- */

/* common_menu */

/* menu */
.ow_menu{}
.ow_menu_head{
	display: table;
	width: 100%;
	table-layout: fixed;
}
.ow_menu_icon{
	display: table-cell;
	vertical-align: top;
	width: 17%;
	position: relative;
}
.ow_menu_icon img{
	max-width: 100%;
}
.ow_menu_badge{
	position: absolute;
	top: 0px;
	left: -55px;
}
.ow_menu_title{
	display: table-cell;
	padding-left: 2%;
	vertical-align: top;
	font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	/* font-size: 1.285em; */
	color: #2a0707;
}
.ow_menu_title_color_red{
	color: #fe0148;
}
.ow_menu_title_color_yellow{
	color: #FFFF00;
}
.ow_menu_title_color_blue{
	color: #330066;
}
.ow_menu_link{
	text-decoration: underline;
}
.ow_menu_link:hover{
	text-decoration: none;
}
.ow_menu_link-decoration{
	text-decoration: none;
}
.ow_menu_link-decoration:hover{
	text-decoration: none;
}
.ow_menu_tail{
	margin-top: 0%;
	text-align:right;
	/* font-weight: bold; */
}
.ow_menu_caption{
	font-size: 1em;
}
.ow_menu_caption_color_white{
	color: #fff;
}
.ow_menu_caption_weight_normal{
	font-weight: normal;
}
.ow_menu_price{
	text-align: right;
	font-size: 1.125em;
	font-weight: bold;
	color: #333;
}
.ow_premium_price{
	/* display: none; */
	color: #cc0000;
}
.ow_menu_price_size_large{
	font-size: 1.625em;
}
.ow_menu_price_color_white{
	color: #fff;
}
.ow_menu_price_color_red{
	color: #CC0000;
}
/* color */
.ow_yellow{
	color: #ff0;
}
.ow_blue{
	color: #00FFFF;
}
.ow_red{
	color: #CC0000;
}
/* animationfが入ります */

/* price(金額について)
   ----------------------------------------------------------------- */
.ow_menu_price{
	text-align: right;
	font-size: 1em;
	font-weight: bold;
	/* color: #000; */
}
.ow_menu_price_size_large{
	font-size: 1.625em;
}
.ow_menu_date {
	color: #660000;
}
/* for nifty */
.ow_default_price{ }
.ow_premium_price{
	color:#cc0000;
}
/* .ow_nif{
	display: none;
} */
.ow_price_line{
	text-decoration: line-through;
}


/* btn */
/*
画像のボタン用
SPと切り替える際にまとめて指定できるように
 */
.ow_btn{
	margin: 0 auto;
}
.ow_btn_link{
	display: block;
}
.ow_btn_link:hover{
	background-position: 0 bottom;
}
.ow_btn_link img{
	display: none;
}

/* table */
.ow_table{
	display: table;
	width: 100%;
}
.ow_table_fixed{
	display: table;
	width: 100%;
	table-layout: fixed;
}
.ow_table_cell{
	display: table-cell;
	vertical-align: top;
}
.ow_table_cell_size__small{
	width: 20%;
}


/* other */
.ow_caution{
	font-weight: bold;
	color: #f00;
	font-size: 1.2em;
}
.c-rakutenFooter{
	background: #fff;
}
.ow_price_wrap{
	text-align: right;
}



/* Component
----------------------------------------------------------------- */

/* ▽▽▽トップページここから▽▽▽ */


/* headline */
.ow_headline{
	text-align: center;
	padding: 10px 0;
}
.ow_headline_link{
	color: #fff;
	font-size: 1.25em;
	line-height: 1.8;
}
.ow_headline_link a{
	border-bottom: 1px solid #fff;
	text-decoration: none;
}
.ow_headline_link_2{
	color: #93ff26;
}
.ow_headline_link_2 a{
	border-bottom: 1px solid #93ff26;
}
.ow_headline_link a:hover{
	border-bottom: none;
}

/* new_intro */
.ow_new_intro {
	position: relative;
	overflow: hidden;
}
.ow_new_intro_item_1 {
	opacity: 0;
	top: 12px;
	right: 14px;
	z-index: 20;
}
.ow_new_intro_item_2 {
	opacity: 0;
	top: 128px;
	right: 112px;
	z-index: 20;
}
.ow_new_intro_text_1 {
	/* display: none; */
	top: 0;
	left: -1900px;
	right: 0;
	text-align: center;
	z-index: 20;
}
.ow_new_intro_text_2 {
	opacity: 0;
	top: 214px;
	left: 68px;
	z-index: 20;
}
.ow_new_intro_text_3 {
	opacity: 0;
	top: 214px;
	left: 200px;
	z-index: 20;
}
.ow_new_intro_text_4 {
	opacity: 0;
	top: 214px;
	left: 352px;
	z-index: 20;
}

.ow_new_intro_text_5 {
	opacity: 0;
	top: 214px;
	left: 486px;
	z-index: 20;
}

.ow_new_intro_text_6 {
	opacity: 0;
	bottom: 118px;
	left: 0;
	right: 0;
	z-index: 20;
	text-align: center;
}


/* ow_new */
.ow_new{
	position: relative;
	z-index: 20;
	margin-top: -124px;
}
.ow_new_head{ }
.ow_new_mid{
	background: url(../../img/pc/top/new_mid.jpg) top center repeat-y;
}
.ow_new .ow_menu_caption {
	padding: 10px 0;
	font-size: 1.187em;
}
.ow_new_date {
	font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	text-align: right;
	color: #660000;
	padding: 5px 0;
	font-size: 1em;
}
.ow_new .ow_menu_title {
	font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	color: #330000;
	font-size: 2em;
}
.ow_new .ow_menu{
	padding: 0 116px;
}
.ow_new .ow_menu:not(:last-child){
	background: url(../../img/pc/top/underline.jpg) bottom center no-repeat;
	padding-bottom: 50px;
}
.ow_new .ow_menu_caption {
	color: #000000;
}

/* コラム start */
/* コラム一覧のスタイル */
.ow_column_list {
	width: 930px;
	margin: 20px auto;
}

.ow_column_list_title {
	margin-bottom: 20px;
}

.ow_column_list_title h2 {
	font-size: 20px;
	color: #8B4513;
	margin: 0;
	padding: 10px;
	background: linear-gradient(to bottom, #f8f4e6, #f0e68c);
	border: 2px solid #daa520;
	border-radius: 8px;
}

.ow_column_articles {
	margin-bottom: 40px;
}

.ow_column_article_item {
	margin-bottom: 20px;
	padding: 15px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.ow_column_article_title {
	margin-bottom: 8px;
}

.ow_column_article_title h3 {
	margin: 0;
	font-size: 16px;
	line-height: 1.4;
}

.ow_column_article_title a {
	color: #8B4513;
	text-decoration: none;
}

.ow_column_article_title a:hover {
	color: #654321;
	text-decoration: underline;
}

.ow_column_article_meta {
	margin-bottom: 12px;
	color: #666;
	font-size: 11px;
}

.ow_column_article_summary {
	margin-bottom: 12px;
	color: #333;
	line-height: 1.6;
	font-size: 13px;
}

.ow_column_article_keywords {
	margin-bottom: 12px;
	font-size: 11px;
	color: #888;
}

.ow_column_keywords_label {
	font-weight: bold;
}

.ow_column_keywords_list {
	background: #f0f0f0;
	padding: 2px 6px;
	border-radius: 4px;
}

.ow_column_article_link {
	text-align: right;
}

.ow_column_read_more {
	display: inline-block;
	padding: 6px 12px;
	background: #8B4513;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	font-weight: bold;
	font-size: 11px;
}

.ow_column_read_more:hover {
	background: #654321;
}

.ow_column_more_link_wrapper {
	margin: 30px 0;
}

.ow_column_more_link_btn {
	display: inline-block;
	padding: 12px 24px;
	background: #8B4513;
	color: #fff;
	text-decoration: none;
	border-radius: 6px;
	font-weight: bold;
	font-size: 14px;
}

.ow_column_more_link_btn:hover {
	background: #654321;
}
/* コラム end */

/* ow_menu_guide */
.ow_menu_guide {
	padding: 10px 0;
}

/* ow_guide_1 */
.ow_guide_1 {
  position: relative;
}
.ow_guide_1_face {
  top: 110px;
}
.ow_guide_1_item {
	display: none;
  top: 236px;
  right: 20px;
	animation: slideIn 1s ease-out forwards;
}
.ow_guide_1_text_1 {
  top:0;
  left: 0;
  right: 0;
  text-align: center;
}
.ow_guide_1_text_2 {
	display: none;
  top: 248px;
  right: 46px;
	animation: slideIn 1s ease-out forwards;
}
.ow_guide_1_text_3 {
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
}
/* ow_guide_2 */
.ow_guide_2 {
  position: relative;
}
.ow_guide_2_item {
	display: none;
  top: 157px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 10;
}
.ow_guide_btn_1 {
  top: 0;
  left: 40px;
  z-index: 20;
	animation: vertical 3s linear infinite alternate;
}
.ow_guide_btn_2 {
  top: 0;
  right: 10px;
	animation: vertical 3s linear 2s infinite alternate;
}
.ow_guide_btn_3 {
  top: 260px;
  left: 0;
  right: 0;
  margin: auto;
  width: 320px;
  z-index: 20;
	animation: vertical 3s linear 4s infinite alternate;
}
.ow_guide_btn_4 {
  bottom: 0;
  left: 62px;
  z-index: 20;
	animation: vertical 3s linear 3s infinite alternate;
}
.ow_guide_btn_5 {
  bottom: 0;
  right: 58px;
  z-index: 20;
	animation: vertical 3s linear 1.5s infinite alternate;
}
.ow_guide_btn_link{
  display: block;
  width: 400px;
  height: 227px;
  margin: 0 auto;
}
.ow_guide_btn_link_1{
  background: url(../../img/pc/top/guide_btn_link_1.png) 0 top no-repeat;
  width: 400px;
  height: 227px;
}
.ow_guide_btn_link_2{
  background: url(../../img/pc/top/guide_btn_link_2.png) 0 top no-repeat;
  width: 400px;
  height: 227px;
}
.ow_guide_btn_link_3{
  background: url(../../img/pc/top/guide_btn_link_3.png) 0 top no-repeat;
  width: 344px;
  height: 227px;
}
.ow_guide_btn_link_4{
  background: url(../../img/pc/top/guide_btn_link_4.png) 0 top no-repeat;
  width: 400px;
  height: 228px;
}
.ow_guide_btn_link_5{
  background: url(../../img/pc/top/guide_btn_link_5.png) 0 top no-repeat;
  width: 394px;
  height: 236px;
}
.ow_guide_btn_link:hover{
  background-position: 0 bottom;
}

/* ow_top_form_intro */
.ow_form_intro {
  position: relative;
  margin: -50px 0 0;
}
.ow_form_intro_face {
  top: 30px;
  left: 30px;
  z-index: 10;
}
.ow_form_intro_text_1 {
	opacity: 0;
  top: 86px;
  right: 80px;
}
.ow_form_intro_text_2 {
	opacity: 0;
  top: 280px;
  right: 76px;
}
/* ow_top_form */
.ow_top_form {
  margin: -200px 0 0;
  position: relative;
}
.ow_top_form_mid {
	background:url(../../img/pc/top/top_form_mid.jpg) top center repeat-y;
	padding: 10px 0 0 0;
}
.ow_top_form_my_top {
  position: relative;
  z-index: 10;
}
/* ▽▽▽入力ページ用のパーツを流用▽▽▽ */
/* ow_entry_form */
.ow_entry_form_mid {
	padding: 0 220px;
}
.ow_form_body {

}

/* FORM_PARTS */
/* リセット */
input:-webkit-autofill{
	/* 色はinput要素の背景色（ここでは#fff）にそろえる */
	box-shadow: 0 0 0px 999px #FFF inset;
}

input[type="text"],
input[type="date"],
select,
textarea{
	width: 100%;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	vertical-align: middle;
}
select::-ms-expand {
	-webkit-appearance:none;
	-moz-appearance:none;
	appearance:none;
	display: none;
}
input[type="text"]:focus,
select:focus,
textarea:focus {
	/* border: 1px solid #b70149;
	transition: all 0.5s;
	box-shadow: 0 0 1px 1px rgba(0,160,233,1); */
}
button{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
}

/* form item */
.ow_entry_form_item{
	overflow: hidden;
	padding-bottom: 20px;
}
.ow_entry_form_label{
	font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-size: 2em;
	/*
	font-weight: bold;
	text-shadow: 0 0 5px #333, 0 0 5px #333,0 0 5px #eee,0 0 5px #eee;
	*/
	padding-bottom: 10px;
	color: #d6d6d6;
}
.ow_entry_form_label span{
	font-size: 0.75em;
	font-weight: normal;
	text-shadow: none;
}
.ow_entry_form_caution{
	font-size: 1.5em;
}

/* 生年月日部分 */
.ow_select{
	position: relative;
	width: 135px;
	float: left;
	margin-left: 10px;
}
.ow_select_year{
	width: 200px;
	margin-left: 0;
}
.ow_select::before , .ow_entry_form_select_wrap_type2::before{
	position: absolute;
	top: 40%;
	right: 15px;
	width: 0;
	height: 0;
	padding: 0;
	content: '';
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-top: 12px solid #333333;
	pointer-events: none;
}
.ow_entry_form_input , .ow_entry_form_select{
	float: left;
	width: 100%;
	height: 80px;
	border: 2px solid #666666;
	background: #fff;
	border-radius: 5px;
	margin-bottom: 2%;
	font-size: 1.75em;
	padding-left: 10px;
}

/* ラジオボタン */
.ow_entry_form_radio_wrap{
	display: inline-block;
	width: 100%;
	font-weight: bold;
	vertical-align: middle;
}
.ow_entry_form_radio_wrap label{
	display: inline-block;
	width: 40%;
	text-align: center;
}
.ow_entry_form_radio_wrap label:last-of-type{
	margin-left: 2%;
}
.ow_entry_form_radio_wrap label input {
	width: 100%;
	height: 100%;
	border: 1px solid #676767;
	font-size: 2em;
	padding: 8px 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
input[type="radio"] {
	display: none;
}
input[type="radio"] + .ow_radiotxt {
	text-indent: -9999px;
	display: block;
	width: 100%;
	padding: 12% 0%;
	cursor: pointer;
}
input[type="radio"] + .ow_radiotxt.male{
	background: url(../../img/pc/entry/male.png) 0 0 no-repeat;
	-webkit-background-size: 100%;
	background-size: 100%;
}
input[type="radio"] + .ow_radiotxt.female{
	background: url(../../img/pc/entry/female.png) 0 0 no-repeat;
	-webkit-background-size: 100%;
	background-size: 100%;
}
input[type="radio"]:checked + .ow_radiotxt.male{
	background: url(../../img/pc/entry/male_on.png) 0 0 no-repeat;
	-webkit-background-size: 100%;
	background-size: 100%;
}
input[type="radio"]:checked + .ow_radiotxt.female{
	background: url(../../img/pc/entry/female_on.png) 0 0 no-repeat;
	-webkit-background-size: 100%;
	background-size: 100%;
}

/* button */
.ow_entry_form_btn{
	padding-bottom: 10px;
	animation: vibe_1 2s ease-out infinite;
}
.ow_entry_form_btn img{
	display: none;
}
.ow_entry_form_btn_wrap{
	padding: 16px 0;
}
.ow_entry_form_btn_text{
	text-align: center;
	font-size: 1.25em;
}
.ow_entry_form_btn a{
	display: block;
	width: 572px;
	height: 130px;
	margin: 0px auto;
}
.ow_entry_form_btn a:hover{
	background-position: bottom center;
}
.ow_entry_form_submit{
	background: url(../../img/pc/top/top_form_btn.png) 0 top no-repeat;
}

.ow_top_form_menu{position: relative;z-index: 10;}
.ow_top_form_menu .ow_menu_icon {
	width: 12%
}
.ow_top_form_menu .ow_menu {
  padding: 0 170px;
  font-size: 1.875em;
}
.ow_top_form_menu .ow_menu_title {
  color:#ff99ff;
}
.ow_top_form_menu_mid {
  background: url(../../img/pc/top/top_form_menu_mid.jpg) top center repeat-y;
}

.ow_policy{
	width: 750px;
	margin: 0 auto;
	padding: 20px;
	font-size: 1.125em;
}


/*
.ow_top_form_link{
	display: block;
	width: 570px;
	height: 130px;
	margin: 20px auto 0;
}
.ow_top_form_link img{
	display: none;
}
.ow_top_form_link{
	background: url(../../img/pc/top/top_form_btn.png) 0 top no-repeat;
}
.ow_top_form_link:hover{
	background-position: 0 bottom;
}
*/

/* form item */
/*
.ow_entry_form_mid {
	padding: 0 236px;
}
.ow_entry_form_item{
	overflow: hidden;
	padding-bottom: 20px;
}
.ow_entry_form_label{ }
.ow_entry_form_input_wrap , .ow_entry_form_select_wrap_type1{
	width: 460px;
	overflow: hidden;
}
.ow_entry_form_select_wrap_type2{
	position: relative;
	float: left;
	width: 180px;
	margin-left: 10px;
}
.ow_select{
x	width: 140px;
	float: left;
	margin-left: 10px;
}
.ow_select_year{
	width: 160px;
	margin-left: 0;
}
.ow_select::before , .ow_entry_form_select_wrap_type2::before{
	position: absolute;
	top: 40%;
	right: 15px;
	width: 0;
	height: 0;
	padding: 0;
	content: '';
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-top: 12px solid #333333;
	pointer-events: none;
}
.ow_entry_form_input , .ow_entry_form_select{
	width: 100%;
	height: 60px;
	border: 2px solid #666666;
	background: #fff;
	border-radius: 5px;
	margin-bottom: 2%;
	font-size: 1.5em;
	padding-left: 10px;
}

.ow_entry_form_save{
	width: 700px;
	margin: 2% auto;
	text-align: center;
	font-size: 1.125em;
}
.ow_entry_form_caution{
	padding: 1% 0;
	font-size: 1.125em;
	color: #fff;
}
.ow_entry_form_btn_text{
	text-align: center;
	font-size: 1.25em;
	padding: 6px 0;
}
*/
/* △△△入力ページ用のパーツを流用△△△ */


/* ow_rec_intro */
.ow_rec_intro {
	position: relative;
	margin: 0 0 -140px;
}
.ow_rec_intro_item {
	opacity: 0;
	top: 0;
	left: 0;
	right: 0;
	text-align: center;
}
.ow_rec_intro_text_1 {
	display: none;
	top: 232px;
	left: 0;
	right: 0;
	bottom: 0;
	text-align: center;
	animation: slideUp 1s ease-out forwards;
}
.ow_rec_intro_text_2 {
	opacity: 0;
	left: 0;
	right: 0;
	bottom: 148px;
	text-align: center;
}

/* ow_rec */
.ow_rec{
	position: relative;
}
.ow_rec_mid{
	background: url(../../img/pc/top/rec_mid.jpg) top center repeat-y;
}
.ow_rec .ow_menu:not(:last-child) {
	background: url(../../img/pc/top/rec_underline.jpg) bottom center no-repeat;
	padding-bottom: 50px;
}
.ow_rec .ow_menu {
	padding: 0 116px;
}
.ow_rec .ow_menu_title {
	font-size: 2em;
}

/* special_intro */
.ow_special_intro {
	position: relative;
	overflow: hidden;
}
.ow_special_intro_face {
	right: 20px;
	bottom:0;
}
.ow_special_intro_text_1 {
	display: none;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	text-align: center;
	animation: sizeScale-fadeIn 0.5s ease-out forwards;
}
.ow_special_intro_text_2 {
	display: none;
	top: 60px;
	right: 12px;
	z-index: 100;
	animation: sizeScale-fadeIn 0.6s ease-out forwards;
}
.ow_special_intro_text_3 {
	display: none;
	top: 140px;
	left: 30px;
	z-index: 100;
	animation: sizeScale-fadeIn 0.7s ease-out forwards;
}
.ow_special_intro_text_4 {
	bottom: 380px;
	left: -500px;
}
.ow_special_intro_text_5 {
	bottom: 230px;
	left: -500px;
}
.ow_special_intro_text_6 {
	bottom: 30px;
	left: -500px;
}
.ow_special_intro_text_7 {
	bottom: 26px;
	left: -500px;
}

/* special */
.ow_special{
	width: 930px;
	margin: 0 auto;
	color: #000;
	position: relative;
}
.ow_special_mid{
	background:url(../../img/pc/top/special_mid.jpg) top center repeat-y;
}
.ow_special_title {
	padding-bottom: 10px;
	animation: bound 0.4s ease infinite alternate;
}
.ow_special_title_2{
	animation-delay: 0.1s;
}
.ow_special .ow_menu {
	padding: 0 100px;
}
.ow_special .ow_menu:not(:last-child) {
	/* background: url(../../img/pc/top/special_line.jpg) bottom center no-repeat; */
	padding-bottom: 10px;
}
.ow_special_mid .ow_menu_title{
  font-size: 2em;
  vertical-align: middle;
}
.ow_special .ow_menu_caption{
	padding: 10px 0;
	font-size: 1.187em;
	line-height: 1.5;
}

/* ow_review_intro */
.ow_review_intro {
	position: relative;
}
.ow_review_intro_text {
	padding: 10px 0;
}
.ow_review_intro_item{
	opacity: 0;
	top: 30px;
	right: 0;
	z-index: 20;
}
.ow_review_intro_text_1 {
	opacity: 0;
	top: 50px;
	left: 50px;
	z-index: 10;
}
.ow_review_intro_text_2 {
	bottom: 20px;
	left: -1800px;
	right: 0;
	text-align: center;
	z-index: 30;
}
.ow_review_intro_text_3 {
	top: 460px;
	left: -1800px;
	right: 0;
	text-align: center;
	z-index: 10;
}
/* review */
.ow_review {
	margin: -10px 0 0;
	position: relative;
}
.ow_review_mid {
	background: url(../../img/pc/top/review_mid.jpg) top center repeat-y;
	padding: 0 0 30px;
}
.ow_review_box {
	position: relative;
}
.ow_review_box_pink,
.ow_review_box_purple {
	position: relative;
	padding: 120px 0 0;
}
.ow_review_box_pink .ow_review_box_mid {
	background: url(../../img/pc/top/review_box_pink_mid.png) top center repeat-y;
	padding: 0 154px;
}
.ow_review_box_purple .ow_review_box_mid {
	background: url(../../img/pc/top/review_box_purple_mid.png) top center repeat-y;
	padding: 0 144px;
}
.ow_voice_title_1{
	display: none;
	bottom: 246px;
	right: 96px;
	animation: sizeScale-fadeIn-2 0.3s ease-out forwards;
}
.ow_voice_title_2{
	display: none;
	bottom: 264px;
	right: 96px;
	animation: sizeScale-fadeIn-2 0.3s ease-out forwards;
}
.ow_voice_title_3{
	display: none;
	bottom: 264px;
	right: 96px;
	animation: sizeScale-fadeIn-2 0.3s ease-out forwards;
}
.ow_voice_wrap {
	overflow: hidden;
	padding-bottom: 10px;
}
.ow_voice_img {
	float: left;
	margin-right: 20px;
}
.ow_voice_article {
	color: #000;
	line-height: 1.5;
}
.ow_voice_item {
	text-align: right;
	font-weight: bold;
	font-size: 1.625em;
}
.ow_voice_text {
	padding-top: 20px;
	font-size: 1.5em;
}
.ow_voice_link {
	margin-left: 32px;
	font-size: 1.875em;
	font-weight: bold;
}
.ow_voice_link:before {
	content: '⇒';
	margin-left: -32px;
	color: #6C00D8;
}

.ow_voice_link a {
	color: #6C00D8;
}
.ow_voice_link a:hover {
	text-decoration: none;
}
.ow_voice_btn a{
	display: block;
	width: 590px;
	height: 200px;
	margin: 20px auto 0;
}

.ow_voice_btn_link:hover{
	background-position: 0 bottom;
}
.ow_voice_btn_link_1{
	background: url(../../img/pc/top/voice_btn_1.png) 0 top no-repeat;
}
.ow_voice_btn_link_2{
	background: url(../../img/pc/top/voice_btn_2.png) 0 top no-repeat;
}

/* ow_free_intro */
.ow_free_intro {
	padding-top: 10px;
}

/* ow_free */
.ow_free{
}
.ow_free_top {
    position: relative;
    z-index: 10;
}
.ow_free_mid{
	background: url(../../img/pc/top/free_mid.jpg) top center repeat-y;
}
/* ow_free_wrap */
.ow_free_wrap {
	position: relative;
	margin: -60px 0 0;
}
.ow_free_wrap_bg {}
.ow_free_wrap_face {
	opacity: 0;
	top: -40px;
	right: 60px;
	z-index: 10;
}
.ow_free_wrap_text_1 {
	display: none;
	bottom: 70px;
	left: 110px;
	z-index: 10;
	animation: slideUp 1s ease-out forwards;
}
.ow_free_btn {
	padding-bottom: 30px;
}
.ow_free_btn_link{
	display: block;
	width: 630px;
	height: 354px;
	margin: 0 auto;
}
.ow_free_btn_link_1{
	background: url(../../img/pc/top/btn_free_1.png) 0 top no-repeat;
	width: 630px;
	height: 343px;
}
.ow_free_btn_link_2{
	background: url(../../img/pc/top/btn_free_2.png) 0 top no-repeat;
	width: 630px;
	height: 354px;
}
.ow_free_btn_link:hover{
	background-position: 0 bottom;
}

/* category */
.ow_category{
	margin-top: 15px;
}
.ow_category_top{
	opacity: 0;
}
.ow_category_main {
}
.ow_category_menu_large,
.ow_category_menu_small{
	color: #000;
}
.ow_category_main_mid {
	background:url(../../img/pc/top/category_main_mid.jpg) top center repeat-y;
}
.ow_category_menu_large_mid{
	background:url(../../img/pc/top/category_large_mid.jpg) top center repeat-y;
	padding: 0 120px;
}
.ow_category_menu_small_mid {
	background: url(../../img/pc/top/category_renai_mid.jpg) top center repeat-y;
  padding: 0 35px;
}
.ow_category_menu_large .ow_menu_icon{
	/*width: 16%;*/
}
.ow_category_menu_large .ow_menu_title{
	font-size: 2.125em;
}
.ow_category_menu_large .ow_menu_caption{
	padding: 15px 0;
	font-weight: bold;
}
.ow_category_inr{
	width: 832px;
	margin: 0 auto;
	overflow: hidden;
}
.ow_category_menu_small {
	float:left;
	width: 412px;
	margin-top: 10px;
}
.ow_category_menu_small:nth-of-type(even){
	margin-left: 8px;
}

.ow_category_small_renai_mid{
	background: url(../../img/pc/top/category_small_renai_mid.jpg) top center repeat-y;
	padding: 0 35px;
}
.ow_category_small_deai_mid{
	background: url(../../img/pc/top/category_small_deai_mid.jpg) top center repeat-y;
	padding: 0 35px;
}
.ow_category_small_jinsei_mid{
	background: url(../../img/pc/top/category_small_jinsei_mid.jpg) top center repeat-y;
	padding: 0 35px;
}
.ow_category_menu_small .ow_menu_icon{
	width: 28.3%;
	vertical-align: middle;
}
.ow_category_menu_small .ow_menu_title {
	font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	font-size: 1.25em;
	font-weight: bold;
}
.ow_category_menu_small .ow_menu_link{
	text-decoration: underline;
}
.ow_category_menu_small .ow_menu_link:hover{
	text-decoration: none;
}
.ow_category_menu_small .ow_menu_caption {
	padding: 15px 0;
	line-height: 1.4;
}

/* category_btn */
.ow_category_nav_inner{
	background: url(../../img/pc/top/category_frame.jpg) top center no-repeat;
	/* position: relative; */
	width: 636px;
	margin: 30px auto 0;
	overflow: hidden;
}
.ow_category_item{
	float:left;
	padding: 4px;
}
.ow_category_link{
	width: 204px;
	height: 92px;
	display: block;
}
.ow_category_link_1{
	background: url(../../img/pc/top/renai_btn.png) top center no-repeat;
}
.ow_category_link_2{
	background: url(../../img/pc/top/deai_btn.png) top center no-repeat;
}
.ow_category_link_3{
	background: url(../../img/pc/top/jinsei_btn.png) top center no-repeat;
}
.ow_category_link_1:hover{
	background: url(../../img/pc/top/renai_btn.png) bottom center no-repeat;
}
.ow_category_link_2:hover{
	background: url(../../img/pc/top/deai_btn.png) bottom center no-repeat;
}
.ow_category_link_3:hover{
	background: url(../../img/pc/top/jinsei_btn.png) bottom center no-repeat;
}

/* renai */
.ow_renai{ }
.ow_renai_top{ }
.ow_renai_btm{ }
.ow_renai .ow_category_menu_small_mid {
	background: url(../../img/pc/top/category_renai_mid.jpg) top center repeat-y;
	padding: 0 34px;
}
.ow_renai .ow_category_menu_large .ow_menu_title{
	color: #670b01;
	text-shadow: 2px 2px 5px #f9b492,
							 2px -2px 5px #f9b492,
							 -2px 2px 5px #f9b492,
							 -2px -2px 5px #f9b492;
}
.ow_renai .ow_category_menu_small .ow_menu_title{
	/* color: #670b01; */
}

/* deai */
.ow_deai{ }
.ow_deai_top{ }
.ow_deai_btm{ }
.ow_deai .ow_category_menu_small_mid {
	background: url(../../img/pc/top/category_deai_mid.jpg) top center repeat-y;
  padding: 0 35px;
}
.ow_deai .ow_category_menu_large .ow_menu_title{
	color: #4b0167;
	text-shadow: 2px 2px 5px #f8abf3,
							 2px -2px 5px #f8abf3,
							 -2px 2px 5px #f8abf3,
							 -2px -2px 5px #f8abf3;
}
.ow_deai .ow_category_menu_small .ow_menu_title{
	/* color: #4b0167; */
}

/* jinsei */
.ow_jinsei{ }
.ow_jinsei_top{ }
.ow_jinsei_btm{ }
.ow_jinsei .ow_category_menu_small_mid {
	background: url(../../img/pc/top/category_jinsei_mid.jpg) top center repeat-y;
  padding: 0 35px;
}
.ow_jinsei .ow_category_menu_large .ow_menu_title{
	color: #00380c;
	text-shadow: 2px 2px 5px #c2fac1,
							 2px -2px 5px #c2fac1,
							 -2px 2px 5px #c2fac1,
							 -2px -2px 5px #c2fac1;
}
.ow_jinsei .ow_category_menu_small .ow_menu_title{
	/* color: #00380c; */
}



/* △△△トップページここまで△△△ */



/* Utitlity
----------------------------------------------------------------- */

.ow_serif{
	font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.ow_yumin{
	font-family: "游明朝", "YuMincho", serif;
}
.ow_ofh{
	overflow: hidden;
}

/* position */
.ow_tac{
	text-align: center;
}
.ow_vab{
	vertical-align: bottom;
}
.ow_vat{
	vertical-align: top;
}
.ow_abs {
	position: absolute;
}
.ow_nif{
	display: none;
}
.c-rakutenFooter{
	background: #fff;
}
