@charset "utf-8";
/* ---------------------------------------------------------------------------------------------------*/
/* rest css */
/* ---------------------------------------------------------------------------------------------------*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,output,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,menu,nav,section,main,summary,time,mark,audio,video,embed{outline:0; margin:0; padding:0; border:0; font:inherit; vertical-align:baseline; background:transparent;}
article,aside,canvas,details,figcaption,figure,footer,header,menu,nav,section,main,summary,address{display:block;}
h1,h2,h3,h4,h5,h6,strong,em,b,i{font-style:normal; font-weight:bold;}
div,p{word-wrap:break-word; overflow-wrap:break-word;}
ol,ul{list-style: none;}
li{list-style: inherit;}
blockquote,q{quotes: none;}
blockquote:before,blockquote:after,q:before,q:after{content:""; content:none;}
img{vertical-align:bottom;}
table{border-spacing:0; border-collapse:separate; word-break:break-all; empty-cells:show;}
caption,th{text-align:left;}
input,button,textarea,select{margin:0; font:inherit;}
input,textarea{padding:0;}
*{-webkit-box-sizing:border-box; -moz-box-sizing:border-box; -o-box-sizing:border-box; -ms-box-sizing:border-box; box-sizing:border-box;}
html > *{-webkit-tap-highlight-color:rgba(0,0,0,0);}

/* ---------------------------------------------------------------------------------------------------*/
/* base style */
/* ---------------------------------------------------------------------------------------------------*/
body{
    margin: 0;
    font-family: 'Source Sans Pro', 'Roboto', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    word-break: break-all;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}
h1,h2,h3,h4,table,tr,th,td,ul,ol,li,i,dl,dd,dt{
    font-size: 14px;
    line-height: 1.6em;
    color: rgba(0, 0, 0, .88);
    font-weight: 400;
}
a{
    color: #f6ab00;
    text-decoration: none;
}
a:hover,
a.hover{
    color: #e8380c;
    text-decoration: underline;
}
p{
    font-size: 14px;
    color: rgba(0, 0, 0, .88);
    line-height: 1.8em;
    text-align: justify;
}
p.caution{
    font-size: 13px;
    padding-left: 1em;
    text-indent: -1em;
}
hr{
    margin: 0;
    padding: 0;
    border: none;
    border-top: 1px solid rgba(102, 102, 102, .24);
}
#wrapper{
    padding-top: 80px;
    flex-grow: 1;
    min-width: 1280px;
}
.inner{
    margin: 0 auto;
    width: 1120px;
}
.columBody{
    margin: 0 auto;
    padding: 48px 0 80px;
    width: 1120px;
    display: flex;
    flex-wrap: wrap;
}
.mainContent{
    width: 700px;
}
.sideContent{
    margin-left: auto;
    width: 340px;
}
.thumbImage{
    overflow: hidden;
    line-height: 0;
}
.thumbImage img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.2s ease-out;
}
.pc_hide{
    display: none;
}
.sp_hide{
    display: block;
}

/* ---------------------------------------------------------------------------------------------------*/
/* headImage */
/* ---------------------------------------------------------------------------------------------------*/
.headImage{
    height: 140px;
    line-height: 140px;
    font-size: 32px;
    font-weight: 600;
    color: #FFF;
    text-align: center;
    text-shadow: 0 4px 8px rgba(0,0,0,.5);
}
.headImage.pageBlog{
    background: url("../images/common/head_initiative.jpg") 50% 50% no-repeat;
    background-size: cover;
}

/* ---------------------------------------------------------------------------------------------------*/
/* linkButton */
/* ---------------------------------------------------------------------------------------------------*/
.linkButton{
    margin: 0 auto;
    width: 380px;
    height: 80px;
    border: 2px solid rgba(0, 0, 0, .88);
}
.linkButton a{
    display: block;
    width: 100%;
    height: 100%;
    font-size: 16px;
    font-weight: 600;
    color: rgba(0, 0, 0, .88);
    line-height: 76px;
    text-align: center;
    border: 2px solid #FFF;
    border-bottom: 2px solid #DDD;
    background: linear-gradient(135deg, #f6ab00 50%, #FFF 50%);
    background-position: 86% 0;
    background-size: 240% auto;
    position: relative;
    transition: all 0.2s ease-out;
}
.linkButton i{
    font-size: 18px;
    display: block;
    position: absolute;
    top: calc(50% - 7px);
    right: 16px;
    transition: all 0.2s ease-out;
}
.linkButton a:hover,
.linkButton a.hover{
    background-position: 0 0;
    border: 2px solid #FFF;
    box-shadow: none;
    text-decoration: none;
}
.linkButton a:hover i,
.linkButton a.hover i{
    right: 12px;
}

/* ---------------------------------------------------------------------------------------------------*/
/* linkButtonOrange */
/* ---------------------------------------------------------------------------------------------------*/
.linkButtonOrange{
    margin: 0 auto;
    width: 380px;
    height: 80px;
}
.linkButtonOrange a{
    display: block;
    width: 100%;
    height: 100%;
    font-size: 18px;
    font-weight: 600;
    color: #FFF;
    line-height: 80px;
    text-align: center;
    background: #ff8800;
    position: relative;
    transition: all 0.2s ease-out;
    box-shadow: 0 -4px 0 0 rgba(0,0,0,.2) inset;
}
.linkButtonOrange i{
    font-size: 18px;
    display: block;
    color: #FFF;
    position: absolute;
    top: calc(50% - 7px);
    right: 20px;
    transition: all 0.2s ease-out;
}
.linkButtonOrange a:hover,
.linkButtonOrange a.hover{
    text-decoration: none;
    background: #e8380c;
    box-shadow: none;
}
.linkButtonOrange a:hover i,
.linkButtonOrange a.hover i{
    top: calc(50% - 3px);
}

/* ---------------------------------------------------------------------------------------------------*/
/* miniButton */
/* ---------------------------------------------------------------------------------------------------*/
.miniButton{
    padding-top: 24px;
    text-align: center;
}
.miniButton a{
    padding: 0 24px;
    display: inline-block;
    font-size: 14px;
    color: rgba(0, 0, 0, .88);
    line-height: 40px;
    border: 2px solid rgba(0, 0, 0, .88);
}
.miniButton i{
    padding-left: 4px;
    font-size: 12px;
}
.miniButton a:hover,
.miniButton a.hover{
    text-decoration: none;
    background: #f6ab00;
}

/* ---------------------------------------------------------------------------------------------------*/
/* header */
/* ---------------------------------------------------------------------------------------------------*/
#campaignHeader {
    width: 100%;
    min-width: 1120px;
	height: auto;
    min-height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #112266;
}
#campaignHeader p:nth-of-type(1) a{
    margin-right: 8px;
    font-weight: 700;
    font-size: 18px;
	color: #03bbdd;
}
#campaignHeader p:nth-of-type(2) a{
    margin-right: 8px;
	color: #FFF;
}
#campaignHeader i {
    margin-right: 16px;
    font-size: 16px;
    color: #03bbdd;
}
#campaignHeader a img {
    width: auto;
    height: 32px;
    transition: all 0.3s ease-out;
}
#campaignHeader a:hover img,
#campaignHeader a.hover img {
    opacity: .6;
}
/* ---------------------------------------------------------------------------------------------------*/
header {
    width: 100%;
    min-width: 1280px;
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 9999;
    box-shadow:0px 4px 12px 0px rgba(0, 0, 0, .16);
    background: #FFF;
}
header .logo{
    padding-left: 40px;
}
header .logo img{
    height: 40px;
}
header .logo img:hover,
header .logo img.hover{
    opacity: 0.6;
}
header .catch{
    padding-left: 40px;
    font-size: 13px;
    color: rgba(0,0,0,.56);
}
header .nav{
    margin-left: auto;
    display: flex;
}
header .nav a{
    padding: 0 24px;
    font-size: 14px;
    font-weight: 600;
    line-height: 80px;
    color: rgba(0, 0, 0, .88);
    transition: all 0.2s ease-out;
}
header .nav a.trial{
    color: #FFF;
    background: #f6ab00;
}
header .nav a:hover,
header .nav a.hover{
    color: #f6ab00;
    text-decoration: none;
    box-shadow: 0 -4px 0 0 #f6ab00 inset;
}
header .nav a.trial:hover,
header .nav a.trial.hover{
    color: #FFF;
    background: #e8380c;
}
header .spNav{
    display: none;
}
.spMenu{
    display: none;
}

/* ---------------------------------------------------------------------------------------------------*/
/* breadlist */
/* ---------------------------------------------------------------------------------------------------*/
.breadList{
    border-bottom: 1px dotted #DDD;
}
.breadList ul{
    margin: 0 auto;
    width: 1120px;
    display: flex;
    min-height: 40px;
    flex-wrap: wrap;
}
.breadList li{
    padding-right: 12px;
    display: inline-block;
    font-size: 13px;
    color: #888;
}
.breadList li,
.breadList li i,
.breadList li a{
    font-size: 12px;
    color: #888;
    line-height: 40px;
}
.breadList ul li:last-child,
.breadList ul li:last-child a{
    padding-right: 0;
}

/* ---------------------------------------------------------------------------------------------------*/
/* backTopButton */
/* ---------------------------------------------------------------------------------------------------*/
.backTopButton{
    position: fixed;
    bottom: 40px;
    right: 56px;
    z-index: 9999;
}
.backTopButton a{
    padding-top: 8px;
    display: block;
    width: 88px;
    height: 64px;
    background: rgba(255, 255, 255, .8);
    border: 2px solid rgba(0, 0, 0, .88);
    box-shadow: 0 0 0 2px #FFF inset;
    transition: all 0.2s ease-out;
}
.backTopButton a i,
.backTopButton a span{
    display: block;
    color: rgba(0, 0, 0, .88);
    text-align: center;
    transition: all 0.2s ease-out;
}
.backTopButton a i{
    font-size: 32px;
}
.backTopButton a span{
    font-size: 12px;
}
.backTopButton a:hover,
.backTopButton a.hover{
    background: #f6ab00;
    text-decoration: none;
}
.backTopButton a:hover i,
.backTopButton a:hover span{
    color:#FFF;
}

/* ---------------------------------------------------------------------------------------------------*/
/* footer */
/* ---------------------------------------------------------------------------------------------------*/
footer{
    background: url("../images/common/bg_footer.png") 0 50%;
}
footer .inner{
    padding: 40px 0 24px;
    display: flex;
}
footer p.attention{
    font-size: 12px;
    line-height: 1.6em;
    color: #888;
}
footer nav{
    padding: 16px 0;
}
footer nav ul{
    display: flex;
    border-left: 1px solid rgba(255, 255, 255, .88);
}
footer nav ul li{
    border-right: 1px solid rgba(255, 255, 255, .88);
}
footer nav ul li a{
    display: inline-block;
    padding: 0 16px;
    font-size: 14px;
    line-height: 24px;
    color: rgba(255, 255, 255, .88);
}
footer nav ul li a:hover,
footer nav ul li a.hover{
    color: #f6ab00;
}
footer .copy{
    font-size: 13px;
    color: #888;
    line-height: 40px;
    text-align: center;
    background: #151515;
}

/* ---------------------------------------------------------------------------------------------------*/
/* thanks */
/* ---------------------------------------------------------------------------------------------------*/
.thanks{
    background: url("../images/top/top_wishing_bg.png") 50% 100% repeat;
}
.thanks .inner{
    margin: 64px auto 80px;
    padding: 32px;
    width: 880px;
    background: #FFF;
    border: 8px solid #F5F5F5;
}
.thanks .inner h1{
    margin-bottom: 24px;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
}
.thanks .inner p{
    margin: 1em 0;
    text-align: center;
}
.thanks .inner .linkButtonOrange{
    margin-top: 24px;
}

/* ---------------------------------------------------------------------------------------------------*/
/* common */
/* ---------------------------------------------------------------------------------------------------*/
.common {
    background: #FAFAFA;
}
.common .inner{
    margin: 64px auto 80px;
    padding: 40px;
    width: 880px;
    background: #FFF;
}
.common h1{
    padding: 16px;
    font-size: 24px;
    line-height: 1.6em;
    font-weight: 600;
    border-top: 4px solid #222;
    border-bottom: 1px solid #222;
}
.common p{
    margin: 1em 0;
}
.common h3{
    margin-top: 40px;
    margin-bottom: 14px;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6em;
    background: #F5F5F5;
}
.common ul{
    margin-left: 12px;
    padding-left: 12px;
}
.common ul li{
    margin: 0.5em 0;
    list-style-type: disc;
}
.common ul li ul li{
    list-style-type: circle;
}
.common .mailAddress{
    margin-bottom: 32px;
    display: flex;
    align-items: center;
}
.common .mailAddress img{
    width: 210px;
}
.common table{
    margin-top: 24px;
    margin-bottom: 32px;
    border-top: 1px solid #CCC;
}
.common table tr:nth-of-type(2n) {
    background: #F5F5F5;
}
.common table th{
    font-weight: 600;
    white-space: nowrap;
    padding: 1em;
    border-left: 1px solid #CCC;
    border-bottom: 1px solid #CCC;
}
.common table td{
    padding: 1em;
    border-right: 1px solid #CCC;
    border-left: 1px solid #CCC;
    border-bottom: 1px solid #CCC;
}
.common table img{
    width: 210px;
}
.common table .tIndent{
    margin-bottom: 0;
    padding-left: 1em;
    text-indent: -1em;
}
.common .mt32{
    margin-top: 32px;
}
/* ---------------------------------------------------------------------------------------------------*/
/* form */
/* ---------------------------------------------------------------------------------------------------*/
.form{
	
}
.form .form_row{
	padding: 16px 16px 16px 0;
	display: flex;
	width: 100%;
	border-top: 1px solid #E5E5E5;
}
.form .form_row > p{
	display: none;
}
.form .form_row > label{
	padding-right: 24px;
	width: 320px;
	display: flex;
	flex-direction: column;
	font-size: 14px;
}
.form .form_row > label span{
	order: 2;
    margin-top: 2px;
    width: 3.6em;
    display: block;
    font-size: 12px;
    color: #FFF;
	line-height: 22px;
    text-align: center;
    padding: 0 4px;
    border-radius: 3px;
	background: #d9534f;
}
.form .form_row > label span.any {
    background: #CCC;
}
.form .form_row > div{
	flex: 1;
}
.form input[type="text"],
.form input[type="email"],
.forminput[type="tel"]{
	width: 100%;
    max-width: 100%;
    padding: 8px;
    border: 1px solid #CCC;
    border-radius: 3px;
    background: #fafafa;
    -webkit-appearance: none;
    font-size: 100%;
    font-family: inherit;
    outline: none;
	line-height: 26px;
}
.form input[type="text"]:focus,
.form input[type="email"]:focus,
.form input[type="tel"]:focus,
.form textarea:focus {
  box-shadow: 0px 0px 5px #55ccff;
  border: 1px solid #55ccff;
  background: #ffffff;
}
.form input[type="radio"] {
  margin-right: 16px;
  margin-top: 16px;
  outline: none;
}
.form textarea {
  display: block;
  width: 100% !important;
  height: auto !important;
  padding: 8px;
  border: 1px solid #CCC;
  border-radius: 3px;
  background: #fafafa;
  -webkit-appearance: none;
  font-size: 100%;
  font-family: inherit;
  outline: none;
}
.form .form_row #age,
.form .form_row .tellcell{
	margin: 0 6px;
	width: 6em;
}
.form .error{
	padding-top: 4px;
}
.form input[type="submit"] {
  margin: 0 auto;
  width: 240px;
  border: none;
  background: #F6AB00;
  font-size: 15px;
  font-weight: 600;
  color: #FFF;
  line-height: 64px;
  text-align: center;
  font-family: inherit;
  -webkit-appearance: none;
  cursor: pointer;
  box-shadow: 0 -4px 0 0 rgba(0,0,0,.2) inset;
  transition: all 0.2s ease-out;
}

.form input[type="submit"]:hover {
  background: #e8380c;
  box-shadow: none;
}