@charset "utf-8";

/* ---------------------------------------------------------------
	Reset
--------------------------------------------------------------- */
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
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,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display:block;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}

/* add to
---------------------------------------------------------- */
html{
	-webkit-text-size-adjust: 100%;
	box-sizing: border-box;
}
*, *:before, *:after{
	box-sizing: inherit;
}
main{
	display: block;
}
img {
	border-style: none;
}
button, input, select, textarea {
	font-family: inherit;
	font-weight: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}



/* ---------------------------------------------------------------
	Base
--------------------------------------------------------------- */
body {
	color: #000;
	font-size: 15px;
	font-weight: normal;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, arial, sans-serif;
	line-height: 1.5;
	word-break: normal;
	overflow-wrap: break-word;
	word-wrap: break-word;
	background-color: #fff;
	-webkit-font-smoothing: antialiased;
	text-align: left;
}

a {
	color: #333;
	text-decoration: underline;
}

strong{
	font-weight: bold;
}
em{
	font-style: italic;
}
del{
	font-style: line-through;
}

sup, sub {
	line-height: 1.35;
	font-size: 10px;
}
sup {
	vertical-align: super;
}
sub {
	vertical-align: sub;
}

img{
	max-width: 100%;
	height: auto !important;
	display: block;
	margin: auto;
}

table{
	max-width: 100%;
}

/* PCのみ */
@media all and (min-width: 751px) {
	body{
		/*min-width: 750px;*/
	}
	#all{
		/*width: 750px;*/
		margin: auto;
	}
	
	a,
	a img{
		-webkit-transition: 0.3s;
		-moz-transition: 0.3s;
		-o-transition: 0.3s;
		-ms-transition: 0.3s;
		transition: 0.3s;
	}
	a:hover{
		text-decoration: none;
	}
	a:hover img{
		opacity: 0.7;
		filter: alpha(opacity=70);
		-ms-filter: "alpha( opacity=70 )";
	}
}
/* SPのみ */
@media all and (max-width: 750px) {
	body{
		width: 100%;
		min-width: 320px;
	}
	#all{
		width: 100%;
	}
}



/* ---------------------------------------------------------------
	Content
--------------------------------------------------------------- */

/* common
---------------------------------------------------------- */


/* cta
---------------------------------------------------------- */
.cta{
	position: relative;
	background: #fff4cc;
	padding: 4.5% 0 5%;
}
.cta a{
	display: block;
	margin: auto;
	width: 90%;
}
.cta p{
	margin-top: 2%;
}
/* SPのみ */
@media all and (max-width: 750px) {
}


/* company
---------------------------------------------------------- */
.company_more{
	display: none;
}
.company_btm{
	position: relative;
}
.company_btm_btn{
	background: #407fde;
	border-radius: 29px;
	width: calc(270 / 750 * 400px);
	margin: auto;
	padding: 0.5em 0;
	text-align: center;
	line-height: 1;
	font-size: calc(30 / 750 * 400px);
	font-weight: bold;
	color: #fff;
	position: absolute;
	top: 40%;
	left: 0;
	right: 0;
	cursor: pointer;
}
.company_btm_btn::after{
	content: "";
	display: inline-block;
	background: url("img/icon_plus.png") no-repeat;
	background-size: contain;
	width: calc(20 / 750 * 400px);
	height: calc(20 / 750 * 400px);
	position: absolute;
	right: 9%;
	top: 34%;
}
.company_btm.on .company_btm_btn::after{
	background-image: url("img/icon_minus.png");
}
/* SPのみ */
@media all and (max-width: 750px) {
	.company_btm_btn{
		border-radius: calc(29vw / 750 * 100);;
		width: calc(270vw / 750 * 100);
		font-size: calc(30vw / 750 * 100);
	}
	.company_btm_btn::after{
		width: calc(20vw / 750 * 100);
		height: calc(20vw / 750 * 100);
	}
}


/* form
---------------------------------------------------------- */
.regist {
    margin: 0 3%;
	background: #fff;
}
.regist-tit {
    background: #ff7800;
	padding: 5% 0;
}
.regist-tit img{
	width: 85%;
}
.regist-box {
    border: 3px solid #ff7800;
    border-radius: 10px;
    margin: 0 auto;
    max-width: 800px;
    background: #fff;
    overflow: hidden; }
    .mv .regist-box form {
      padding: 20px; 
}
.regist-btn {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
	margin: 0 3% 2.5%;
}
.regist-frm {
    max-width: 760px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; }
.regist-frm .col {
      width: 48.7%;
      margin-bottom: 20px; }
.regist-frm .txt {
      font-size: 15px;
      line-height: 1.5;
      font-weight: bold;
      margin-bottom: 8px;
      text-align: left;
      }
.regist-frm .txt span {
        font-size: 10px;
        margin-left: 0.6em;
        display: inline-block;
        font-weight: normal; }
.regist-frm .txt2 {
      font-size: 10px;
      line-height: 1.5;
      margin-top: 8px;
      text-align: left;
      font-weight: normal; }
.regist-frm .txt2 a {
        text-decoration: underline; }
.regist-frm .txt2 br {
        display: none; }

.regist-frm select,
.regist-frm option,
.regist-frm input {
  -webkit-appearance: none;
  outline: none;
  color: #242424;
  font-size: 16px;
  line-height: 1.7;
  font-family: 'Noto Sans JP', sans-serif; }

.regist-frm select,
.regist-frm input {
  width: 100%;
  border: 1px solid #c5c5c5;
	border: none;
  background: #f4f4f4;
  border-radius: 8px;
  padding: 10px 15px;
  height: 50px; }

.regist-frm select {
  background: #f4f4f4 url("img/arrow_down.png") no-repeat center right 17px/12px auto; }

.regist-frm input::placeholder {
  color: #c5c5c5; }

.regist-tit p {
    font-size: 20px;
    text-align: center;
    padding: 8px;
}
.regist-frm .txt span {
  font-size: 9px;
  margin-left: 10px;
  display: block;
  font-weight: bold;
}
.regist-frm .txt2 a {
  text-decoration: underline;
  font-size: 10px;
  color: #000;
}

.regist-box_in {
    padding: 20px 20px 0;
}

    .regist-tit p {
        font-size: 14px;
    }

    .regist-frm .col {
        width: 100%;
    }

    .regist-frm .txt {
        text-align: center;
    }

    .regist-frm .txt span {
        margin: 0;
        font-size: 10px;
    }

    .regist-frm select, .regist-frm input {
        padding: 8px 12px;
        height: 46px;
		font-size: 16px;
    }
.txt2{
	background: #efefef;
	margin-top: 5%;
	padding: 3%;
	font-size: 10px;
	font-weight: bold;
}
.txt2 a{
	color: #034aff;
}
/* PCのみ */
@media all and (min-width: 751px) {
	.regist-frm select,
	.regist-frm input {
		width: 93%;
	}
}


/* footer
---------------------------------------------------------- */
footer{
	margin-top: 6%;
	background: #efefef;
	padding-bottom: 6%;
}
footer dt{
	background: #d8d8d8;
	text-align: center;
	font-size: calc(28 / 750 * 400px);
	font-weight: bold;
	padding: 0.5em 0;
}
footer dd{
	padding: 6% 7% 0;
}
footer dd p{
	margin: 1.5em 0;
	font-size: calc(24 / 750 * 400px);
	line-height: 1.58;
	text-align: justify;
}
address{
	text-align: center;
	font-style: normal;
	font-size: calc(20 / 750 * 400px);
	font-weight: 500;
}
/* SPのみ */
@media all and (max-width: 750px) {
	footer dt{
		font-size: calc(28vw / 750 * 100);
		font-size: 14px;
	}
	footer dd img{
		width: 100%;
		max-width: 322px;
	}
	footer dd p{
		font-size: calc(24vw / 750 * 100);
		font-size: 12px;
	}
	address{
		font-size: calc(20vw / 750 * 100);
		font-size: 10px;
	}
}


/* ---------------------------------------------------------------
	PC サイド設定
--------------------------------------------------------------- */

/*------- base -------*/
.background {
	background: #fffdf1;
	background-attachment: fixed;
}
#all{
	display: flex;
	justify-content: center;
	align-items: flex-start;
}
.sticky{
	position: sticky;
	/*left: 0;*/
	top: 0;
}
#all{
	width: 100%;
}
.area_center{
	background: #fff;
}
/* PCのみ */
@media all and (min-width: 751px) {
	.area_center{
		width: 400px;
		border: 2px solid #fe7801;
		border-radius: 20px;
		box-sizing: content-box;
		margin: 30px auto;
	}
	h1 img{
		border-radius: 20px 20px 0 0;
	}
	#content{
		width: 400px;
	}
	footer{
		border-radius: 0 0 20px 20px;
	}
}
/*------- 左サイトナビ -------*/
.nav_left{
	z-index: 10;
	width: calc(100% - 400px / 2);
	height: 100vh;
	min-height: 625px;
}
.nav_left img{
	margin: 30px 5px 0 7%;
}
/*------- 右サイトナビ -------*/
.nav_right{
	z-index: 10;
	width: calc(100% - 400px / 2);
	height: 100vh;
	min-height: 625px;
/*	display: flex;
	align-items: flex-end;
	justify-content: center;
*/	
}
.logo_mitsubishi_pc{
	position: absolute;
	right: 0;
	margin: 30px 7% 0 5px;
	width: 85%;
	max-width: 273px;
}
.nav_right_kaitori{
	position: absolute;
	bottom: 45px;
	left: 5%;
}
.nav_right_kaitori a{
	display: block;
	margin-top: 15px;
}
/*------- スクロールバー非表示 -------*/
body {
	scrollbar-width: none; /*Firefox対応のスクロールバー非表示コード*/  
	-ms-overflow-style: none;/*Internet Explore対応のスクロールバー非表示コード*/  
}
body::-webkit-scrollbar{
	display:none;
}
/* SPのみ */
@media all and (max-width: 750px) {
	.nav_left,
	.nav_right{
		display: none;
	}
	.area_center{
		width: 100%;
	}
}
