﻿/* ==============================
- less setting
============================== */
.font-icon {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.far {
  font-weight: 400;
}
.fas {
  font-weight: 900;
}
.box-sizing {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.float-clear {
  clear: both;
  content: '';
  display: block;
}
.translateY50 {
  top: 50%;
  -o-transform: translateY(-50%);
     transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.translateYX50 {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
   -o-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
}
/* flex関連
---------------------*/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.flex-direction_column {
  -webkit-box-direction: vertical;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.justify-content_space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.align-items_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.align-items_baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
          align-items: baseline;
}
.align-self_center {
  -ms-flex-item-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.align-self_flex-end {
  -ms-flex-item-align: end;
  -webkit-align-self: flex-end;
  align-self: flex-end;
}
/* color
---------------------*/
.white_btn {
  border: 1px solid #CCC;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#E6E6E6), to(white));
  background-image: -webkit-linear-gradient(bottom, #E6E6E6 0%, white 100%);
  background-image: -o-linear-gradient(bottom, #E6E6E6 0%, white 100%);
  background-image: linear-gradient(to top, #E6E6E6 0%, white 100%);
}
*,
*:before,
*:after {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-family: "Hiragino Sans", "メイリオ", Meiryo, sans-serif;
  color: #444;
}


/* font-sizeを12pxから変更 */ 

@media screen and (max-width: 760px) {
  html {
    line-height: 1.4;
    font-size: 14px;
  }
}

/* font-sizeを13pxから変更 */ 

@media screen and (min-width: 760px) {
  html {
    line-height: normal;
    font-size: 15px;
  }
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
li {
  list-style-type: none;
}
a {
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}
/* form
---------------------*/
input,
button,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #444;
}
select::-ms-expand {
  display: none;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
  /*background-color: beige;*/
}
input[type="text"],
input[type="tel"],
input[type="mail"],
input[type="password"],
select {
  width: 100%;
  height: 40px;
  background: #FFF;
  padding: 5px;
  border: 1px solid #CCC;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}
@media screen and (max-width: 768px) {
  input[type="text"],
  input[type="tel"],
  input[type="mail"],
  input[type="password"],
  select {
    font-size: 16px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 737px) {
  input[type="text"],
  input[type="tel"],
  input[type="mail"],
  input[type="password"],
  select {
    padding: 5px 10px;
    line-height: normal;
  }
}
input[type="button"],
input[type="submit"],
button {
  -webkit-appearance: button;
}
input[type="button"]:hover,
input[type="submit"]:hover,
button:hover {
  opacity: 0.8;
}
textarea {
  width: 100%;
  background: #FFF;
  padding: 5px;
  border: 1px solid #CCC;
}
@media screen and (max-width: 768px) {
  textarea {
    font-size: 16px;
  }
}
iframe {
  display: block;
  width: 100%;
  border: 1px solid #D4D4D4;
}
/*ラジオボタン
---------------------*/
.RadioBox {
  display: inline-block;
}
.RadioBox input[type=radio] {
  display: none;
}
.RadioBox input[type=radio] + label:before {
  content: "\f111";
  font-family: "Font Awesome 5 Free";
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  display: inline-block;
  font-size: 22px;
  vertical-align: sub;
}
.RadioBox input[type=radio]:checked + label:before {
  content: "\f058";
  font-weight: 900;
  color: #65CC4C;
}
.RadioBox label {
  display: block;
  cursor: pointer;
}
/*チェックボックス
---------------------*/
.CheckBox {
  display: inline-block;
}
.CheckBox input[type=checkbox] {
  display: none;
}
.CheckBox input[type=checkbox] + label:before {
  content: "\f0c8";
  font-family: "Font Awesome 5 Free";
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  display: inline-block;
  font-size: 22px;
  vertical-align: sub;
}
.CheckBox input[type=checkbox]:checked + label:before {
  content: "\f14a";
  font-weight: 900;
  color: #65CC4C;
}
.CheckBox label {
  display: block;
  cursor: pointer;
}
/*セレクトボックス
---------------------*/
.SelectBox {
  position: relative;
}
.SelectBox:after {
  content: "\f107";
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 900;
  position: absolute;
  right: 10px;
  top: 50%;
  -o-transform: translateY(-50%);
     transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  color: #CCC;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .SelectBox:after {
    font-size: 18px;
  }
}
@media screen and (min-width: 769px) {
  .SelectBox:after {
    font-size: 25px;
  }
}
.SelectBox select {
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media screen and (max-width: 768px) {
  .SelectBox select {
    padding-right: 30px;
  }
}
@media screen and (min-width: 769px) {
  .SelectBox select {
    padding-right: 32px;
  }
}
.SelectBox select::-ms-expand {
  display: none;
}
/*************************
layout
*************************/
@media screen and (max-width: 768px) {
  .Main {
    padding: 30px 0;
  }
}
@media screen and (min-width: 769px) {
  .Main {
    width: 1000px;
    margin: auto;
    padding: 30px 0;
  }
}
@media screen and (max-width: 768px) {
  .Inner {
    padding: 0 10px;
  }
}
/* 共通
---------------------*/
h2 {
  display: block;
  width: 100%;
  font-weight: bold;
  position: relative;
  padding: 0 10px 5px;
  border-bottom: 2px solid #CCC;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 16px;
    margin: 0 0 10px;
  }
}
@media screen and (min-width: 769px) {
  h2 {
    font-size: 22px;
    margin: 0 0 20px;
  }
}
h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 50%;
  height: inherit;
  border-bottom: 2px solid #65CC4C;
}
h2:first-child {
  margin-top: 0;
}
h4 {
  display: block;
  width: 100%;
  font-weight: bold;
  background: #E4E4E4;
  padding: 5px 10px;
  margin: 20px 0 10px;
}
@media screen and (max-width: 768px) {
  h4 {
    font-size: 14px;
  }
}
@media screen and (min-width: 769px) {
  h4 {
    font-size: 16px;
  }
}
h4:first-child {
  margin-top: 0;
}
/* 上部へ戻る
---------------------*/
#pageTop {
  position: fixed;
  bottom: 20px;
  right: 50px;
}
@media screen and (max-width: 768px) {
  #pageTop {
    display: none;
  }
}
#pageTop a {
  display: block;
  z-index: 999;
  width: 45px;
  height: 45px;
  position: relative;
  background-color: #65CC4C;
  color: #FFF;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  opacity: 0.7;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
}
#pageTop a:hover {
  text-decoration: none;
  opacity: 0.5;
}
#pageTop a:before {
  content: "\f106";
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 900;
  font-size: 18px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
   -o-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
}
/* ボタン
---------------------*/
.BtnBox {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .BtnBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-direction: vertical;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    padding: 20px 0 0;
  }
}
@media screen and (min-width: 769px) {
  .BtnBox {
    padding: 30px 0 0;
  }
}
@media screen and (min-width: 769px) {
  .BtnBox > div {
    margin: 0 50px 0 0;
  }
}
.BtnBox > div:last-of-type {
  margin-right: 0;
}
.BtnBox .Advance {
  display: inline-block;
  min-width: 200px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .BtnBox .Advance {
    width: 150px;
    margin: 0 0 10px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
}
@media screen and (min-width: 769px) {
  .BtnBox .Advance {
    min-width: 200px;
  }
}
.BtnBox .Advance:after {
  content: "\f105";
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 900;
  top: 50%;
  -o-transform: translateY(-50%);
     transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  position: absolute;
  right: 10px;
  font-size: 20px;
  color: #FFF;
  pointer-events: none;
}
.BtnBox .Advance .Already {
  display: block;
  width: 100%;
  font-size: 16px;
  background: #65CC4C;
  border: none;
  color: #FFF;
  cursor: pointer;
  padding: 10px;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}
.BtnBox .Advance .Orange {
  display: block;
  width: 100%;
  font-size: 16px;
  background: #ff831e;
  border: none;
  color: #FFF;
  cursor: pointer;
  padding: 10px;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}
.BtnBox .Return {
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 768px) {
  .BtnBox .Return {
    width: 150px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
}
@media screen and (min-width: 769px) {
  .BtnBox .Return {
    min-width: 200px;
  }
}
.BtnBox .Return:after {
  content: "\f104";
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 900;
  top: 50%;
  -o-transform: translateY(-50%);
     transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  position: absolute;
  left: 10px;
  font-size: 20px;
  color: #FFF;
  pointer-events: none;
}
.BtnBox .Return .Back {
  display: block;
  width: 100%;
  background: #777777;
  border: none;
  color: #FFF;
  text-align: center;
  padding: 10px;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .BtnBox .Return .Back {
    font-size: 14px;
  }
}
@media screen and (min-width: 769px) {
  .BtnBox .Return .Back {
    font-size: 16px;
  }
}
/* Step
---------------------*/
.Step {
  padding: 0 0 40px;
}
.Step ul {
  display: table;
  width: 100%;
  table-layout: fixed;
}
.Step li {
  display: table-cell;
  text-align: center;
  position: relative;
}
.Step li span {
  display: block;
}
.Step li .Order {
  width: 25px;
  height: 25px;
  position: relative;
  border-radius: 50%;
  background: #D4D4D4;
  color: #FFF;
  font-weight: bold;
  margin: 0 auto 5px;
  line-height: 27px;
  z-index: 1;
}
@media screen and (min-width: 769px) {
}
@media screen and (max-width: 768px) {
  .Step li .StepTxt {
    font-size: 11px;
  }
}
.Step li:after {
  background: #D4D4D4;
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  top: 12px;
}
.Step li:first-of-type:after {
  right: 0;
  width: 50%;
}
.Step li:last-of-type:after {
  left: 0;
  width: 50%;
}
.Step .Active .Order {
  background: #65CC4C;
  color: #FFF;
}
.Step .Active .StepTxt {
  font-weight: bold;
  color: #65CC4C;
}
@media screen and (min-width: 769px) {
  .Step .Active .StepTxt {
    font-size: 14px;
  }
}
/* フリー入力のタグ
---------------------*/
dj_title {
  display: block;
  width: 100%;
  font-weight: bold;
  position: relative;
  padding: 0 10px 5px;
  border-bottom: 2px solid #CCC;
}
@media screen and (max-width: 768px) {
  dj_title {
    font-size: 16px;
    margin: 30px 0 10px;
  }
}
@media screen and (min-width: 769px) {
  dj_title {
    font-size: 22px;
    margin: 30px 0 20px;
  }
}
dj_title i:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 50%;
  height: inherit;
  border-bottom: 2px solid #65CC4C;
}
dj_title:first-child {
  margin-top: 0;
}
dj_flag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
          align-items: baseline;
  border-bottom: 2px dashed #CCC;
  font-weight: bold;
  margin: 0 0 10px;
}
@media screen and (max-width: 768px) {
  dj_flag {
    font-size: 14px;
    padding: 20px 5px 5px;
  }
}
@media screen and (min-width: 769px) {
  dj_flag {
    font-size: 16px;
    padding: 20px 10px 5px;
  }
}
dj_flag:first-child {
  padding-top: 0;
}
dj_flag i::before {
  content: "\f024";
  font-weight: 900;
  color: #65CC4C;
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 768px) {
  dj_flag i::before {
    font-size: 18px;
    padding: 0 10px 0 0;
  }
}
@media screen and (min-width: 769px) {
  dj_flag i::before {
    font-size: 20px;
    padding: 0 15px 0 0;
  }
}
dj_frame {
  display: block;
  width: 100%;
  font-weight: bold;
  background: #E4E4E4;
  padding: 5px 10px;
  margin: 20px 0 10px;
}
@media screen and (max-width: 768px) {
  dj_frame {
    font-size: 14px;
  }
}
@media screen and (min-width: 769px) {
  dj_frame {
    font-size: 16px;
  }
}
dj_frame:first-child {
  margin-top: 0;
}
dj_red {
  color: #D94545;
}
dj_blue {
  color: #2F67BD;
}
dj_bold {
  font-weight: bold;
}
/*************************
datepicker カレンダー
*************************/
/*カレンダーボタン
---------------------*/
.SttDateCal input[type="text"] {
  width: 150px;
  margin: 0 5px 0 0;
}
.SttDateCal button[type="button"] {
  display: inline-block;
  padding: 0;
  background: none;
  border: none;
  -webkit-appearance: button;
  cursor: pointer;
}
.SttDateCal button[type="button"]:before {
  content: "\f073";
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  vertical-align: middle;
  font-size: 30px;
  color: #777777;
}
.SttDateCal button[type="button"]:focus {
  outline: 0;
}
@media screen and (max-width: 768px) {
  #ui-datepicker-div {
    width: 80%;
  }
}
@media screen and (min-width: 769px) {
  #ui-datepicker-div {
    width: 18%;
  }
}
.ui-widget-content {
  border: 1px solid #FFF;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.ui-datepicker td {
  padding: 0;
}
.ui-datepicker {
  z-index: 2000 !important;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
}
.ui-datepicker-group.ui-datepicker-group-first .ui-datepicker-header {
  border-right: 1px solid #FFF;
}
.ui-datepicker .ui-datepicker-title {
  font-size: 16px;
}
.ui-widget-header {
  background: #444;
  border: 1px solid #444;
  font-weight: normal;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
}
.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
  display: none;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  width: 20px;
  height: 20px;
  cursor: pointer;
  top: 50%;
  -o-transform: translateY(-50%);
     transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.ui-datepicker .ui-datepicker-prev {
  left: 10px;
}
.ui-datepicker .ui-datepicker-next {
  right: 0;
}
.ui-datepicker .ui-datepicker-prev:after,
.ui-datepicker .ui-datepicker-next:after {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 900;
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
   -o-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
  font-size: 20px;
}
.ui-datepicker .ui-datepicker-prev:after {
  content: "\f104";
  left: 50%;
}
.ui-datepicker .ui-datepicker-next:after {
  content: "\f105";
  right: 50%;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  background: none;
  position: static;
  margin: 0;
  width: auto;
  height: auto;
}
.ui-datepicker th {
  font-size: 13px;
  color: #777777;
}
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
  background: #FFF;
  border: 1px solid #FFF;
  text-align: center;
  color: #777777;
  font-weight: normal;
}
.ui-state-default:hover,
.ui-widget-content .ui-state-default:hover,
.ui-widget-header .ui-state-default:hover {
  background: #E4E4E4;
  color: initial;
}
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  background: #FFFFCC;
}
.ui-widget-content .ui-state-highlight.ui-state-hover {
  background: #FFFFCC;
  color: #444;
}
/* 日曜日 */
.day-sunday .ui-state-default,
.day-sunday .ui-state-active {
  background-image: none;
  color: #D94545;
}
/* 土曜日 */
.day-saturday .ui-state-default,
.day-saturday .ui-state-active {
  background-image: none;
  color: #2F67BD;
}
/* 祝祭日 */
.day-holiday .ui-state-default,
.day-holiday .ui-state-active {
  background-image: none;
  color: #D94545;
}
/* 記念日 */
.day-anniversary .ui-state-default,
.day-anniversary .ui-state-active {
  background-image: none;
  color: #D94545;
}
/* 今日 */
/* 選択日 */
.ui-datepicker-current-day .ui-state-active {
  background-image: none;
  background-color: #65CC4C;
  color: #FFF;
}
.ui-widget-content .ui-state-hover {
  background: none;
  color: #FFF;
  border: none;
}
/* 年月のリストメニュー */
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  width: auto;
}
.ui-datepicker table {
  font-size: 16px;
}
.ui-datepicker .ui-datepicker-header .ui-widget-content .ui-state-hover {
  background-color: #999;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  display: none;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current:hover {
  color: #444;
}
.ui-datepicker .ui-datepicker-buttonpane button {
  width: 70px;
  background: #D4D4D4;
  color: #FFF;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  padding: 4px;
  font-size: 13px;
}
.ui-datepicker .ui-datepicker-buttonpane button:hover {
  border: 1px solid #FFF;
  background: #D4D4D4;
  color: #FFF;
}
