@charset "utf-8";

/*--------------------*/
/*---- common.css ----*/
/*--------------------*/

/*-------------- reset -------------*/
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-appearance: none;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
b, strong {
	font-weight: bold;
}
/* safariで自動付与されるスタイルの打ち消し */
select {
	border-radius: 0;
}

/*-------------- body -------------*/
body {
	position: relative;
	background-color: #fff;
	font-feature-settings: "palt";
	-webkit-text-size-adjust: 100%;
	line-height: 1.4;
	color: #111;
}

/*-------------- font設定 -------------*/
body {
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "MS Ｐゴシック", "MS P Gothic", "Osaka", Verdana, Arial, Helvetica, sans-serif;
	font-optical-sizing: auto;
	font-weight: var(--font-w-regular);
	font-style: normal;
}

/* グローバル変数宣言 */
:root {
	--font-w-regular: 400;
	--font-w-medium: 500;
	--font-w-bold: 700;
	--font-w-black: 900;
}


/*-------------- a  -------------*/
a {
	display: inline-block;
	text-decoration: none;
	color: #111;
	transition: 0.2s;
}

/*-------------- 要素が少ない場合でもfooterを画面下部に固定する -------------*/
body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
footer {
	margin-top: auto;
}


/*-------------- ここから下を編集 -------------*/
.container{
	max-width: 500px;
	width: 100%;
	margin: 0 auto;
	padding: 0 20px 30px 20px;
	text-align: left;
}

.boxCenter {
	text-align: center;
}

h1 {
	color: #2B328B;
	margin-top: 20px;
}

.name{
	font-weight: bold;
	font-size: 1.5em;
}

.textbox{
	margin-top: 20px;
}

.address{
	margin-top: 20px;
	margin-bottom: 10px;
}

.mail{
	margin-bottom: 15px;
}

a.email-link:hover,
a.email-link:focus-visible {
	color: blue;
	text-decoration: underline;
}

.photo{
	width: 300px;
	height: auto;
	margin: 20px 0 0 0;
}

/* == SNSボタン関連 ==*/
.veu_profile {
	width: 100%;
	height: 40px;
	margin: 20px 0 0 0;
	text-align: center;
}
.veu_profile .profile_text {
	margin-bottom:1em;
	font-size:14px
}
.veu_profile .sns_btns {
	display: inline-block;
	height: 40px;
	margin:0 auto;
	padding:0;
}
.veu_profile .sns_btns li {
	float:left;
	margin-right:.45em;
	list-style:none;
	text-align:center;
}
.veu_profile .sns_btns li a {
	display:block;
	position:relative;
	width:40px;
	height:40px;
	border-radius:23px;
	color:#fff;
	text-decoration:none;
	font-size:20px;
}
.veu_profile .sns_btns li a:hover {
	color:#fff;
	text-decoration:none;
	opacity:.8;
}
.veu_profile .sns_btns li a.bg_fill .icon {
	color:#fff;
}
.veu_profile .sns_btns .icon {
	position:absolute;
	top:50%;
	left:50%;
	transform:translateY(-50%) translateX(-50%);
}
.veu_profile .sns_btns .facebook_btn a {
	background:#3b5998;
	border:1px solid #3b5998;
}
.veu_profile .sns_btns .facebook_btn a .icon {
	color:#3b5998;
}
.veu_profile .sns_btns .twitter_btn a {
	background:#0f1419;
	border:1px solid #0f1419;
}
.veu_profile .sns_btns .twitter_btn a .icon {
	color:#0f1419;
}
.veu_profile .sns_btns .mail_btn a {
	background:#2f915f;
	border:1px solid #2f915f;
}
.veu_profile .sns_btns .mail_btn a .icon {
	color:#2f915f;
}
.veu_profile .sns_btns .youtube_btn a {
	background:#c81d1c;
	border:1px solid #c81d1c;
}
.veu_profile .sns_btns .youtube_btn a .icon {
	color:#c81d1c;
}
.veu_profile .sns_btns .rss_btn a {
	background:#f26522;
	border:1px solid #f26522;
}
.veu_profile .sns_btns .rss_btn a .icon {
	color:#f26522;
}
.veu_profile .sns_btns .instagram_btn a {
	background:#3f729b;
	border:1px solid #3f729b;
}
.veu_profile .sns_btns .instagram_btn a .icon {
	color:#3f729b;
}
.veu_profile .sns_btns .linkedin_btn a {
	background:#0077b5;
	border:1px solid #0077b5;
}
.veu_profile .sns_btns .linkedin_btn a .icon {
	color:#0077b5;
}
/* == SNSボタン関連 END ==*/






