@charset "UTF-8";

/* ポートフォリオ　－　Web制作ページ PC */


/*************************************
イラスト・Web制作ページ　共通
h2.content_title
*************************************/
#web_index .content_title {
    margin: 20px 0 40px 0;
}


/*************************************
ページ説明文
*************************************/


/*************************************
MENU
*************************************/
#web_index #menu_box {
    margin-bottom: 40px;
}
#web_index .menu_inner {
    flex-direction: column; /* top.cssでも使用しているため */
}
#web_index .menu_inner .menu_content {
    margin-bottom: 80px;
}
#web_index .menu_inner .menu_content:last-child {
    margin-bottom: 0;
}
#web_index .menu_inner .menu_detail {
    width: 100%; /* top.cssでも使用しているため */
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
#web_index .menu_inner .menu_detail .menu_image {
    display: block;
    width: 100%;
    height: 100%;
    flex-basis: 300px;
    flex-shrink: 0;
    text-align: center;
}
#web_index .menu_inner .menu_detail .menu_detail_title {
    font-size: 1.25rem;
    background-color: #d2e8ff;
    color: #07478b;
}

/* 各仮想ページ　説明文 */
#web_index .menu_inner .menu_detail .menu_description {
    width: calc(100% - 300px);
    padding: 20px;
    color: #07478b;
}
#web_index .menu_inner .menu_detail .menu_description p {
    line-height: 1.4;
    margin-bottom: 20px;
}
#web_index .menu_inner .menu_detail .menu_description p:last-child {
    margin-bottom: 0;
}

/* Web制作ページの coming soon */
#web_index .menu_image {
    position: relative;
}
#web_index .menu_image .text_coming_soon {
    position: absolute;
    width: 100%;
    left: 50%;
    right: 0;
    top: calc((100% - 60px) * 0.5);
    transform: translateX(-50%) translateY(-50%);
    font-size: 1.5rem;
    font-weight: bold;
}


/*****************************
最下部ボタングループ
*****************************/
/* Web制作ページ index の「イラストページを見る」 */
#web_index .btn_to_illust a {
	position: relative;
	width: 200px;
	height: 40px;
    color: #fff;
	background-color: #ff6023;
	border: 2px solid #ff6023;
	border-radius: 16px;
	font-size: 0.875rem;
    font-weight: bold;
	margin-left: 50px;
	padding-right: 10px;
}
#web_index .btn_to_illust a:hover {
	opacity: 1;
	color: #ff6023;
	background-color: #fff;
}
#web_index .btn_to_illust a::after {
	position: absolute;
	content: "";
	width: 6px;
	height: 6px;
	top: 50%;
	right: 15px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: translateY(-50%) rotate(45deg);
}
#web_index .btn_to_illust a:hover::after {
	opacity: 1;
	border-top: 2px solid #ff6023;
	border-right: 2px solid #ff6023;
}


