@charset "UTF-8";
/*----------------------------------------
 Common Style
------------------------------------------*/
/* 共通部分
------------------------------------------*/
html{
  font-size:100%;
}

body{
  margin: 0;
  font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
  background-color: #fff;
}

.wrapper {
  max-width:1100px;
  width: 90%;
  margin: 0 auto;
}

.headerArea{
  width: 100%;
  background: #fff;
  box-sizing: border-box;
  border-bottom: #1760A0 solid;
  position: fixed;
  display: flex;
  top: 40px;
  left: 0;
  z-index: 98;
}

.step1-content,
.menu-content{
  padding-top: 290px;
  z-index: 1;
}

.step2-content,
.step3-content,
.result-content{
  padding-top: 310px;
  z-index: 1;
}

.error-content{
  padding-top: 310px;
  z-index: 1;
}

.content{
  text-align: center;
  margin-top: 0.5rem;
}

.footerFixed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 5px;
  min-height: 100vh; 		/* コンテンツの高さの最小値＝ブラウザの高さに設定 */
}

a{
  text-decoration: none;
}

img{
  max-width: 100%;
}

hr{
  border: none;     /* 全ての線の情報を消去 */
  display: block;
  border-bottom:#1760A0 solid;
  width:100%
}
hr.dot{
  border: none;     /* 全ての線の情報を消去 */
  display: block;
  border-bottom:#1760A0 dotted;
  width:90%
}

.hidden{
  display: none;
}

.sp20{
  margin-right: 20px;
}


/* パンくずリスト
------------------------------------------*/
.breadcrumb{
  margin: 20px 0 0 0;
  padding: 0;
  display: -webkit-box; /*Android4.3*/
  display: -moz-box;    /*Firefox21*/
  display: -ms-flexbox; /*IE10*/
  display: -webkit-flex; /*PC-Safari,iOS8.4*/
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  overflow-wrap: break-word;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  font-size: 0.9rem;
}

.breadcrumb .list{
  text-align: center;
  color:#6f747e;
  padding-top: 1.5rem;
}

.breadcrumb .past{
  font-weight: bold;
  color: #000;
  padding-top: 0rem;
}

.breadcrumb .past_icon{
  padding-bottom: 0.5rem;
}

/* 見出し
------------------------------------------*/
.page-titleArea{
  margin: 10px auto;
  text-transform: none;
  min-width: 640px;
}
.page-title{
  font-size: 2.5rem;
  margin: 10px auto;
  text-transform: none;
}
.page-title span{
  white-space: nowrap;
}

.sub-title{
  padding: 0.5em;
  color: #000;
  background: #fff;
  border-top: solid 4px #4472C4;
  border-bottom: solid 4px #4472C4;
  font-weight: bold;
}
.ul-title{
  border-bottom: solid 1px #1760A0;
  text-align: left;
  font-weight: bold;
}

/* ボタン
------------------------------------------*/
.seni{
  width: 100%;
  margin: 2rem auto;
  text-align: center;
}
.button{
  font-size:1.0rem;
  background: #D9D9D9;
  color: #000;
  border-radius: 5px;
  padding: 10px 15px;
  outline: none;
  border:none;
  min-width: 200px;
}
.button:hover{
  background: #BFBFBF;
}

/* 税タイプ選択ボタン ADD230313 */
.flexBox{
  display: flex;
  flex-direction: column;
  align-items: center;
}
button.select_button {
  font-size:1.0rem;
  line-height: 1.0;
  position: relative;
  /*display: inline-block;*/
  padding: 0.8em 2rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border: 2px solid #27acd9;
  border-radius: 0;
  background-color: #e1f3f9;
  min-width: 330px;
  margin-top: 5px;
}
button.select_button:hover{
  color: #fff;
  background: #27acd9;
}


button.select_button2 {
  font-size:1.0rem;
  line-height: 1.0;
  position: relative;
  /*display: inline-block;*/
  padding: 0.8em 2rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border: 2px solid #4472C4;
  border-radius: 0;
  background-color: #f1f6ff;
  min-width: 330px;
  margin-top: 5px;
}
button.select_button2:hover{
  color: #fff;
  background: #4472C4;
}

button.btn_02 {
  font-size:1.0em;
	display: block;
	text-align: center;
	text-decoration: none;
	width: 380px;
	margin: auto;
	padding: 1em 4em;
	font-weight: bold;
	border: 2px solid #27acd9;
	background: #27acd9;
	color: #fff;
	transition: 0.5s;
}
button.btn_02:hover {
	color: #27acd9;
	background: #fff;
}

/* トップに戻すボタン */
#pagetop_btn{
    position: fixed;
    bottom: 40px;
    right: 10px;
    height: 50px;
    width: 50px;
    color: #FFF;
    font-size: 32px;
    background-color: #b6daee;
    border: none;
    border-radius: 50%;
    outline: none;
    transform: rotate(-90deg);
  }

 
/* ボックス 
------------------------------------------*/
.box_nomal{
  border: 2px solid #4472C4;
  margin: .5em auto;
}
.box_nomal .title{
  color: #4472C4;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  margin: 0 0 0.2em 0.3em;
  /*width: calc(100% - 0.5em);*/
  /*border-bottom: 2px solid #4472C4;*/
}
.box_nomal .inner{
  padding: .7em;
}

/* ストライプ */
.box_stripe{
  position: relative;
  background: linear-gradient(
  -45deg,
  #fff 25%, #d8e0ff 25%,
  #d8e0ff 50%, #fff 50%,
  #fff 75%, #d8e0ff 75%,
  #d8e0ff
  );
  background-size: 8px 8px;
  padding: 8px;
  margin: 0.5em auto;
}
.box_stripe .inner{
  background: #FFF;
  padding: 0.7em;
}
.box_stripe .title{
  color: #4472C4;
  margin: 0 0 0.2em 0.3em;
  font-size: 1.2em;
  font-weight: bold;
}

/* 装飾 
------------------------------------------*/
.icon_required {
	background: #ff5959;
	color: #fff;
	font-weight: normal;
	padding: 2px 4px;
	font-size: 11px;
	margin: 0 0.1em 0 0.5em;
	border-radius: 3px;
  white-space: nowrap;
}
.icon_type {
	color: #f1f6ff;
	border: 1px solid #f1f6ff;
	box-sizing: border-box;
	padding: 1px 4px;
	font-size: 11px;
	margin: 0 0 0 0.4em;
	border-radius: 3px;
  white-space: nowrap;
}
.hosoku {
	color: #6f747e;
  margin: 0.2em 0 0 0;
}

.p-sty1{
  font-weight: bold;
}

/* ERROR(IllegalOperation)
------------------------------------------*/
.error-content{
  text-align: center;
  margin: 1.5rem auto;
}


/* STEP1
------------------------------------------*/
.step1-content,
.menu-content{
  text-align: center;
  margin: 1.5rem auto;
}
.info{
  margin: 0.5rem auto;
  font-size: 0.9rem;
  text-align: left;
  width: 73%;
}
.info-erea{
  margin: 1.5rem 0;
}
.scroll-box{
  width: 70%;
  height: 200px;
  margin: auto;
  padding: 10px;
  border: #4472C4 1px solid;
  overflow-y: scroll;
  font-size: 0.9rem;
  text-align: justify;
}
.non-scroll-box{
  width: 70%;
  height: auto;
  margin: auto;
  padding: 10px;
  border: #4472C4 1px solid;
  font-size: 0.9rem;
  text-align: justify;
}

.scroll_nonscrollbar-box{
  width: 70%;
  height: 200px;
  margin: auto;
  padding: 10px;
  border: #0070c0 1px solid;
  overflow-y: scroll;
  font-size: 0.9rem;
  text-align: justify;
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
}
 /*Google Chrome、Safariへの対応*/
 .scroll_nonscrollbar-box::-webkit-scrollbar{
  display: none;
}

.caption{
  background-color: #4472C4;
  border: #4472C4 1px solid;
  color: #fff;
  width: 70%;
  padding: 10px;
  margin: auto;
  text-align: left;
}

.non-scroll-box_pink{
  width: 70%;
  height: auto;
  margin: auto;
  padding: 10px;
  border: #FF0066 1px solid;
  font-size: 0.9rem;
  text-align: justify;
}
.caption_pink{
  background-color: #FF0066;
  border: #FF0066 1px solid;
  color: #fff;
  width: 70%;
  padding: 10px;
  margin: auto;
  text-align: left;
}

iframe{
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}
.box_check {
  width: 70%;
  text-align:left;
  margin:  auto;
  background-color: #f1f6ff;
  border: #4472C4 1px solid;
  border-top: none;
  padding: 0px 10px;
}
.box_check label {
  display: inline-block;
}
.box_check label span {
  margin-left: .3em;
}

/* STEP2
------------------------------------------*/
.step2-content{
  text-align: left;
  margin: 1.5rem auto;
}

.form-style {
  max-width: 800px;
  padding: 20px 0;
  font: 13px Arial, Helvetica, sans-serif;
  margin:0 auto;
}
.form-style .table1{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0px 3px;
}
.form-style .table1 th {
  width: 30%;
  font-weight: normal;
  padding: 1em;
  background: #4472C4;
  color: #fff;
}
.form-style .table1 td {
  padding: 1em;
  background: #f1f6ff;
}
.form-style span.required{
	color:#ff5959;
}
input,select,textarea{
  border: 1px solid #b1b1b1;
  padding: 5px;
  margin-top: 5px;
}
.table1 input:focus,
.table1 select:focus,
.table1 textarea:focus{
  border: 1px solid #ffd380;
  background-color:#fff6c6;
  outline: none;
}
.form-info{
  font-size: 1.2em;
  margin-bottom: 5px;
  border-bottom: 2px solid #4472C4;
}
.form-info span{
  white-space: nowrap;
}


.form-style2 {
  max-width: 800px;
  padding: 20px 0;
  font: 13px Arial, Helvetica, sans-serif;
  margin:0 auto;
}
.form-style2 .table1{
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0px 3px;
}
.form-style2 .table1 th {
  width: 30%;
  font-weight: normal;
  padding: 1em;
  background: #4472C4;
  color: #fff;
  border: #fff solid 1px;
}
.form-style2 .table1 td {
  padding: 1em;
  box-sizing: border-box;
  border: #4472C4 solid 1px;
  border-right: none;
}
.form-style2 span.required{
	color:#ff5959;
}
input,select,textarea{
  border: 1px solid #b1b1b1;
  padding: 5px;
  margin-top: 5px;
}
.table1 input:focus,
.table1 select:focus,
.table1 textarea:focus{
  border: 1px solid #ffd380;
  background-color:#fff6c6;
  outline: none;
}


/* STEP3
------------------------------------------*/
.step3-content{
  text-align: left;
  margin: 1.5rem 0;
}

.confirm-field {
	max-width: 600px;
	padding: 20px 12px 10px 20px;
	font: 13px Arial, Helvetica, sans-serif;
}

/* RESULT
------------------------------------------*/
.result-content{
  text-align: center;
  margin-top: 5rem;
}

.result-content p{
  font-size:1.125rem;
  margin: 1rem 0 42px;
}



/*----------------------------------
レスポンシブ対応
------------------------------------*/
@media screen and (max-width:640px) {
  /*　画面サイズが640px以下の場合ここの記述が適用される　*/
  .step1-content,
  .menu-content{
    padding-top: 280px;
  }
  .step2-content,
  .step3-content,
  .result-content{
    padding-top: 320px;
  }
  
  .error-content{
    padding-top: 340px;
  }
  
  .page-titleArea{
    margin: 10px auto;
    text-transform: none;
    min-width: 100%;
  }
}
@media screen and (min-width:481px) {
/*　画面サイズが481px以上の場合ここの記述が適用される　*/
  .sp{display: none;}
}

@media screen and (max-width:480px) {
/*　画面サイズが480px以下の場合ここの記述が適用される　*/
  .pc{display: none;}

  .headerArea{
    border-bottom: none;
  }

  .step1-content,
  .menu-content{
    padding-top: 240px;
  }

  .step2-content,
  .step3-content,
  .result-content{
    padding-top: 250px;
  }
  
  .error-content{
    padding-top: 280px;
  }

  /* パンくずリスト*/
  .breadcrumb{
    display: -webkit-box; /*Android4.3*/
    display: -moz-box;    /*Firefox21*/
    display: -ms-flexbox; /*IE10*/
    display: -webkit-flex; /*PC-Safari,iOS8.4*/
    display: flex;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .breadcrumb>div{
    width: 16.666666%;
    margin: 0;
}
  .breadcrumb .list{
    background-color: #fff;
    border: #8ba0c4 1px solid;
    border-bottom: none;
    margin: 0;
    font-size: 0.75rem;
    padding: 10px 0;
    border-radius: 0 15px 0 0;
  }
  
  .breadcrumb .past{
    position: relative;
    background-color: #4472C4;
    border: #4472C4 1px solid;
    color:#fff;
    padding: 10px 0;
    font-weight: bold;
    border-radius: 0 15px 0 0;
  }

  .breadcrumb p{display: none;}

  .breadcrumb .past::after {
    position: absolute;
    bottom: -15px;
    left: 35%;
    width: 0;
    height: 0;
    content: '';
    border-width: 14px 12px 0 12px;
    border-style: solid;
    border-color: #4472C4 transparent transparent transparent;
  }

  /* 見出し */
  .page-title{
    font-size: 1.5rem;
    text-transform: none;
  }

  /* ボタン */
  .button{
    min-width: 100px;
  }
  button.select_button{
    min-width: none;
    width: 80%;
  }
  
  
  /* STEP1 
　------------------------------------------*/
  .info{
    text-align: left;
  }

  .info{
    margin: auto;
    width: 100%;
    font-size: 0.9rem;
    text-align: left;
  }

  /* STEP2 メールフォーム
　------------------------------------------*/
  .form-style {
    padding: 5px 0;
  }
  .form-style .table1 tr,
  .form-style .table1 th,
  .form-style .table1 td {
    display: block; /* セルを縦に */
    border: none; /* 線をリセット */
    box-sizing:border-box;
    width:100%;
  }
  .form-info{
    font-size: 1.15em;
    text-align: center;
  }

  .form-style2 {
    padding: 5px 0;
  }

  .form-style2 .table1 tr,
  .form-style2 .table1 th,
  .form-style2 .table1 td {
    display: block; /* セルを縦に */
    border: none; /* 線をリセット */
    box-sizing: border-box;
    word-break:break-all;
    width:100%;
  }

}

@media screen and (max-width:700px) {
/*　画面サイズが700px以下の時、お客様氏名の姓と名の項目を縦に並べる　*/
  .table1 label {
    display: block; /* ブロックを作るように */
    margin: 5px 0; /* 前後のスペース */
  }
}