@charset "utf-8";
/* ===================================================================
 style info : ヘッダーやフッターなどサイト内共通
=================================================================== */

/*----------------------------------------------------
	共通
----------------------------------------------------*/
html {
    overflow-y: scroll;/* スクロールバーの有無によるズレ対策 */
	font-size: 62.5%;
    background: #ffffff;
}

body {
	font-family: Lato, "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    background: #ffffff;
    color: #1e1e1e;
    font-size: 13px;
	font-size: 1.3rem;
    line-height: 1.5;
    letter-spacing: 0.1em;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -o-text-size-adjust: 100%;
    text-size-adjust: 100%;
	font-feature-settings: "palt";
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
	::i-block-chrome, body {
		font-feature-settings: "pkna";
	}
}

/*----------------------------------------------------
    リンク
----------------------------------------------------*/
a:link {
    color: #333333;
    text-decoration: none;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
}

a:visited {
    color: #333333;
    text-decoration: none;
}

a:hover {
    color: #333333;
    text-decoration: none;
}

a:active {
    color: #333333;
    text-decoration: none;
}

a.link:link {
    color: #0000ff;
    text-decoration: none;
}

a.link:visited {
    color: #0000ff;
    text-decoration: none;
}

a.link:hover {
    color: #0000ff;
    text-decoration: none;
}

a.link:active {
    color: #0000ff;
    text-decoration: none;
}

/* -----------------------------------------------------------
    強制改行
----------------------------------------------------------- */
.word-break {
  word-break: break-all;
}

/* -----------------------------------------------------------
    header
----------------------------------------------------------- */
header {
	position: fixed;
	left: 0;
	top: 0;
	width: 250px;
	max-height: 100vh;
	height: 100%;
	background: 
		url(../img/common/header_back_before.jpg) no-repeat top / contain ,
		url(../img/common/header_back_after.jpg) no-repeat bottom / contain , 
		url(../img/common/header_back02.png) repeat-y;
	padding: 50px;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	flex-direction: column;
	-webkit-flex-direction: column;
}
header #g_nav {
	margin-bottom: 30px;
	padding: 15px 0;
	border-bottom: 2px solid #1e1e1e;
	border-top: 2px solid #1e1e1e;
}
header #g_nav02 {
	display: none;
}
header #g_nav li {
	padding: 0 5px;
}
header #g_nav li:not(:last-of-type) {
	padding-bottom: 5px;
	border-bottom: 1px dashed #1e1e1e;
}
header #g_nav li:not(:first-of-type) {
	margin-top: 10px;
}
header #g_nav li a:hover {
	color: #960202;
}

/* -----------------------------------------------------------
    #wrapper
----------------------------------------------------------- */
#wrapper {
    max-width: 100%;
	width: 100%;
    margin: 0 auto;
    text-align: left;
    background: #fff;
}

/* -----------------------------------------------------------
    見出し
----------------------------------------------------------- */
main #contents > section > h2 {
    text-align: center;
	position: relative;
}
main #contents > section > h2:after {
    content: "";
	width: 500px;
	height: 7px;
	background: url(../img/common/title_shadow_10.png) no-repeat center / contain;
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}
main #contents > section > h2 span{
    display: block;
}
main #contents > section > h2 span:first-child {
    font-size: 40px;
    font-size: 4.0rem;
	font-weight: 800;
}
main #contents > section > h2 span:nth-child(2) {
    font-size: 16px;
    font-size: 1.6rem;
	font-weight: 600;
	margin-top: 20px;
}

/* toggle-panel
----------------------------------------------------------- */
#panel-btn {
	display: none;
}

/* -----------------------------------------------------------
    main
----------------------------------------------------------- */
main {
    width: calc(100% - 250px);
	margin-left: auto;
}

/* -----------------------------------------------------------
    footer
----------------------------------------------------------- */
footer {
	width: calc(100% - 250px);
	margin-left: auto;
	margin-top: 50px;
}

footer ul {
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	-webkit-justify-content: center;
	background: #f8f8f8;
	padding: 20px 0;
}
footer ul li:not(:last-of-type) {
	padding-right: 20px;
	border-right: 1px solid #afafaf;
}
footer ul li:not(:first-of-type) {
	margin-left: 20px;
}
footer .footer_logo {
	background: #afafaf;
	height: 270px;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	-webkit-justify-content: center;
	align-items: center;
	-webkit-align-items: center;
	position: relative;
}
footer .footer_logo:after {
    content: "";
    background: url(../img/top/images/works_shadow_33.png)no-repeat center / cover;
    width: 100%;
    height: 15px;
    position: absolute;
    top: 0;
    left: 0;
}

footer .copy {
	background: #1e1e1e;
	height: 60px;
	display: flex;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
	justify-content: center;
	-webkit-justify-content: center;
	position: relative;
}
footer .copy .pageTop a {
	background: #c22327;
	height: 60px;
	width: 60px;
	display: flex;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
	justify-content: center;
	-webkit-justify-content: center;
	position: absolute;
	top: 0;
	right: 0;
	color: #fff;
}
footer .copy .copyright {
	color: #fff;
	font-size: 12px;
	font-size: 1.2rem;
}

form {
	width: 460px;
	margin: 50px auto 0;
}
form p {
	text-align: left;
}
form span {
	color: #C30408;
}

.msr_text_05 {
  padding-bottom: 20px;
  width: 460px;
}
.msr_text_05 label {
  display: block;
  font-size: 14px;
  padding-bottom: 5px;
  text-align: left;
}
.msr_text_05 input[type=text] {
  background: #fff;
  border: 1px solid #999999;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  font-size: 14px;
  padding: 10px;
  height: 40px;
  width: 460px;
}
.msr_text_05 input[type=email] {
  background: #fff;
  border: 1px solid #999999;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  font-size: 14px;
  padding: 10px;
  height: 40px;
  width: 460px;
}

/*--------------------------------------
ラジオボタン
---------------------------------------*/

.msr_radio_05 {
  padding-bottom: 20px;
}
.msr_radio_05 p {
  font-size: 14px;
  padding-bottom: 5px;
}
.msr_radio_05 input[type=radio] {
  display: none;
  margin: 0;
}
.msr_radio_05 input[type=radio] + label {
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  line-height: 1.5px;
  margin-right: 12px;
  padding: 0 0 0px 24px;
  position: relative;
  text-align: left;
}
.msr_radio_05 input[type=radio] + label::before {
  border: 1px solid #777777;
  border-radius: 50%;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  content: "";
  display: block;
  margin-top: -9px;
  position: absolute;
  left: 0;
  top: 50%;
  height: 16px;
  width: 16px;
}
.msr_radio_05 input[type=radio]:checked + label::after {
  background: #333333;
  border-radius: 50%;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  content: "";
  display: block;
  margin-top: -4px;
  position: absolute;
  left: 4px;
  top: 0;
  height: 8px;
  width: 8px;
}

/*--------------------------------------
チェックボックス
---------------------------------------*/

.msr_chack_05 {
  padding-bottom: 20px;
}
.msr_chack_05 p {
  font-size: 14px;
  padding-bottom: 5px;
}
.msr_chack_05 input[type=checkbox] {
  display: none;
  margin: 0;
}
.msr_chack_05 input[type=checkbox] + label {
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  line-height: 1.5px;
  margin-right: 12px;
  padding: 0 0 0 24px;
  position: relative;
  text-align: left;
}
.msr_chack_05 input[type=checkbox] + label::before {
  border: 1px solid #999999;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  content: "";
  display: block;
  margin-top: -9px;
  position: absolute;
  left: 0;
  top: 50%;
  height: 16px;
  width: 16px;
}
.msr_chack_05 input[type=checkbox]:checked + label::after {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
}
.msr_chack_05 input[type=checkbox]:checked + label::after {
  border-bottom: 1px solid #333333;
  border-left: 1px solid #333333;
  left: 3px;
  margin-top: -6px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  height: 6px;
  width: 10px;
}

/*--------------------------------------
プルダウン
---------------------------------------*/

.msr_pulldown_05 {
  padding-bottom: 20px;
  position: relative;
  width: 230px;
}
.msr_pulldown_05 p {
  font-size: 14px;
  padding-bottom: 5px;
  text-align: left;
}
.msr_pulldown_05 select {
  appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  background:#FFFFFF;
  border: 1px solid #999999;
  border-radius: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  cursor: pointer;
  padding: 10px;
  position:relative;
  height: 40px;
  width: 230px;
}
.msr_pulldown_05 label{
  position:relative;
  text-align: left;
}
.msr_pulldown_05 label::after {
  content:"";
  border-bottom: 1px solid #333333;
  border-left: 1px solid #333333;
  right: 16px;
  height: 8px;
  margin-top: -5px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  position:absolute;
  top:50%;
  width: 8px;
}

/*--------------------------------------
ファイル選択
---------------------------------------*/

.msr_file_05 {
  padding-bottom: 20px;
  width: 460px;
}

.msr_file_05 label {
  border: 1px solid #999999;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  cursor: pointer;
  display:block;
  font-size:14px;
  padding: 10px;
  position:relative;
  height: 40px;
  width: 230px;
}
.msr_file_05 label::before {
  content:"＋";
  color:#333333;
  font-size:20px;
  line-height:1;
  margin-top: -9px;
  right:10px;
  position:absolute;
  top:50%;
}
.msr_file_05 input[type=file] {
  display: none;
}


/*--------------------------------------
テキストエリア
---------------------------------------*/

.msr_textarea_05 {
  padding-bottom: 10px;
  width: 460px;
}
.msr_textarea_05 label {
  display: block;
  font-size: 14px;
  padding-bottom: 5px;
}
.msr_textarea_05 textarea {
  border: 1px solid #999999;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  font-size: 13px;
  padding: 10px;
  height: 210px;
  width: 460px;
}

/*--------------------------------------
送信ボタン
---------------------------------------*/
.msr_sendbtn_05{
  margin:0 0 10px;
}

.msr_sendbtn_05 input[type=submit] {
  background-color: #FFFFFF;
  border:1px solid #999999;
  border-radius: 2px;
  color: #333333;
  cursor:pointer;
  display: block;
  font-size: 14px;
  padding: 14px;
  text-align: center;
  text-decoration: none;
  transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
  width: 180px;
  margin: 0 auto;
  -webkit-appearance: none;
}
.msr_sendbtn_05 input[type=submit]:hover {
  background-color: #1e1e1e;
  color: #FFFFFF;
}
.msr_sendbtn_05 input[disabled=disabled] {
  cursor:default;
  opacity: 0.5;
}
.msr_sendbtn_05 input[disabled=disabled]:hover {
  background-color: #FFFFFF;
  color: #333333;
}


/* -----------------------------------------------------------
    img:hover
----------------------------------------------------------- */
a img:hover {
	opacity: 0.7;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
}