@charset "UTF-8";
/*フォントカラー*/
body {
  color: #111;
  line-height: 1.8;
  overflow-x: hidden;
}

body * {
  word-break: break-word;
}

a,
a:link,
button {
  outline-style: none;
  font-weight: bold;
  text-decoration: underline;
  outline-style: none;
  color: #111;
}

a:hover,
button:hover {
  text-decoration: none;
}

/* アニメ対策 */
a,
a:link,
button,
a img,
.button_wrap {
  transition: all 0.3s ease-in-out;
}

a:hover,
button:hover {
  transition: all 0.3s;
}

a:hover img {
  opacity: 0.7;
}

/* adjust
====================================================================================================================================== */
.clear {
  clear: both;
}

.ma0 {
  margin: 0 !important;
}

.mab0 {
  margin-bottom: 0 !important;
}

.mab05em {
  margin-bottom: 0.5em !important;
}

.mab1em {
  margin-bottom: 1em !important;
}

.mab15em {
  margin-bottom: 1.5em !important;
}

.mab2em {
  margin-bottom: 2em !important;
}

.mab25em {
  margin-bottom: 2.5em !important;
}

.mab3em {
  margin-bottom: 3em !important;
}

.mab4em {
  margin-bottom: 4em !important;
}

.mat05em {
  margin-top: 0.5em !important;
}

.mat1em {
  margin-top: 1em !important;
}

/*font size*/
.font_xs {
  font-size: 0.8em;
}

.font_xs_rem {
  font-size: 0.8rem;
}

.font_sm {
  font-size: 0.9em;
}

.font_la {
  font-size: 1.2em;
}

.font_xl {
  font-size: 1.4em;
}

.font_normal {
  font-weight: normal;
}

.font_bold {
  font-weight: bold;
}

.text_center {
  text-align: center !important;
}

.text_right {
  text-align: right !important;
}

.text_left {
  text-align: left !important;
}

.line_height_min {
  line-height: 1.6;
}

.letter {
  letter-spacing: 0.08em;
}

/* common
====================================================================================================================================== */
/*非表示*/
.none,
.visible-off {
  display: none !important;
}

@media (min-width: 1024px) {
  .sp {
    display: none !important;
  }
}
@media (max-width: 1024px) {
  .sp {
    display: inherit !important;
  }
  .sp_off {
    display: none !important;
  }
}
img.filer_image.none {
  display: inline !important;
}

.hide {
  display: none;
}

img {
  max-width: 100%;
  height: auto;
}

#conts.in .wrapper .flame {
  display: contents;
}

p:empty,
p strong:empty {
  display: none;
}

/* スクロールして画面に入ったらフェードイン */
.scroll_fadein {
  opacity: 0;
  translate: 0 50px;
  transition: 1.3s ease-out;
}
.scroll_fadein.window_in {
  opacity: 1;
  translate: 0;
}

.scroll_opacity {
  opacity: 0;
  transition: 1.7s ease-out;
}
.scroll_opacity.window_in {
  opacity: 1;
}

/*左寄せ・右寄せ対策*/
img.left_align_img {
  margin-right: 2rem;
}
img.right_align_img {
  margin-left: 2rem;
}

.flex {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.flex.gap15em {
  gap: 1.5rem;
}
.flex.gap15em .box {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .flex.column02 {
    flex-wrap: wrap;
  }
  .flex.column02 .box {
    width: calc(50% - 0.75rem);
  }
}
@media (max-width: 1024px) {
  .flex {
    display: block;
  }
  .flex.gap15em .box {
    margin-bottom: 1.5rem;
  }
}

/*list*/
.page_in:not(.page_tour) #conts {
  margin-bottom: 4rem;
}

#main ul,
#main ol,
#conts ul,
#conts ol {
  margin-bottom: 2rem;
  line-height: 1.6;
  overflow: hidden;
}
#main ul > li,
#main ol > li,
#conts ul > li,
#conts ol > li {
  position: relative;
  margin-bottom: 0.5em;
}
#main ul > li:last-child,
#main ol > li:last-child,
#conts ul > li:last-child,
#conts ol > li:last-child {
  margin-bottom: 0;
}
#main ul > li,
#conts ul > li {
  padding-left: 0.9em;
}
#main ul > li:before,
#conts ul > li:before {
  content: "";
  display: block;
  width: 0.65em;
  aspect-ratio: 1/1;
  background-color: #FCDF00;
  position: absolute;
  top: 0.45em;
  left: 0;
  border-radius: 50%;
}
#main ul > li strong,
#conts ul > li strong {
  line-height: 1;
}
#main ul.list_yoko li,
#conts ul.list_yoko li {
  display: inline-block;
  padding-right: 0.8rem;
  padding-left: 1.1em;
}
#main ul.list_yoko li:before,
#conts ul.list_yoko li:before {
  top: 0.3em;
  width: 0.8em;
}
#main ol,
#conts ol {
  counter-reset: ordered_num;
  padding-left: 1.6rem;
}
#main ol > li,
#conts ol > li {
  list-style-type: decimal;
  list-style-position: outside;
}
#main ul.plane,
#main ol.plane,
#main .field_wrap ul,
#main ul.plane li,
#main ol.plane li,
#main .field_wrap ul li,
#main .contents ul.plane,
#main .contents ol.plane,
#main .contents ul.plane li,
#main .contents ol.plane li,
#conts ul.plane,
#conts ol.plane,
#conts .field_wrap ul,
#conts ul.plane li,
#conts ol.plane li,
#conts .field_wrap ul li,
#conts .contents ul.plane,
#conts .contents ol.plane,
#conts .contents ul.plane li,
#conts .contents ol.plane li {
  list-style-type: none !important;
  padding: 0;
}
#main ul.plane li:before, #main ul.plane li:after,
#main ol.plane li:before,
#main ol.plane li:after,
#main .field_wrap ul li:before,
#main .field_wrap ul li:after,
#main ul.plane li li:before,
#main ul.plane li li:after,
#main ol.plane li li:before,
#main ol.plane li li:after,
#main .field_wrap ul li li:before,
#main .field_wrap ul li li:after,
#main .contents ul.plane li:before,
#main .contents ul.plane li:after,
#main .contents ol.plane li:before,
#main .contents ol.plane li:after,
#main .contents ul.plane li li:before,
#main .contents ul.plane li li:after,
#main .contents ol.plane li li:before,
#main .contents ol.plane li li:after,
#conts ul.plane li:before,
#conts ul.plane li:after,
#conts ol.plane li:before,
#conts ol.plane li:after,
#conts .field_wrap ul li:before,
#conts .field_wrap ul li:after,
#conts ul.plane li li:before,
#conts ul.plane li li:after,
#conts ol.plane li li:before,
#conts ol.plane li li:after,
#conts .field_wrap ul li li:before,
#conts .field_wrap ul li li:after,
#conts .contents ul.plane li:before,
#conts .contents ul.plane li:after,
#conts .contents ol.plane li:before,
#conts .contents ol.plane li:after,
#conts .contents ul.plane li li:before,
#conts .contents ul.plane li li:after,
#conts .contents ol.plane li li:before,
#conts .contents ol.plane li li:after {
  display: none;
}

/*default heading*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  margin: 0 0 0.6em;
  line-height: 1.5;
}

h1.page_title {
  font-size: 1.8rem;
  text-align: center;
  margin: 0;
}

h2 {
  font-size: 1.8rem;
  padding-bottom: 0.15em;
  border-bottom: 3px solid #111;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.4rem;
}
h3.tit_icon {
  position: relative;
  padding: 0.2em 0 0.2em 2em;
}
h3.tit_icon:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  width: 1.8em;
  height: 1.8em;
  background: #FCDF00 url(../images/icon/nav_kutikomi.svg) no-repeat center center;
  background-size: 60% auto;
  border-radius: 50%;
}

h4 {
  font-size: 1.2rem;
  position: relative;
  padding-left: 1em;
  overflow: hidden;
}
h4:before {
  content: "";
  display: block;
  width: 0.65em;
  aspect-ratio: 1/1;
  background-color: #FCDF00;
  position: absolute;
  top: 0.45em;
  left: 0;
  border-radius: 50%;
  width: 0.8em;
  top: 0.32em;
}

h5 {
  font-size: 1.1rem;
}

/*hr*/
hr {
  height: 1px;
  border-bottom: dashed 1px #111;
  background: none;
  margin: 2.5rem 0;
  overflow: hidden;
  clear: both;
}

/*段落*/
p {
  margin-bottom: 2rem;
  clear: both;
}
p:last-child {
  margin-bottom: 0;
}

table p {
  margin-bottom: 0;
}

/*カラー*/
.red {
  color: #E54100;
}

.green {
  color: #00A629;
}

/*マーカースタイル*/
.marker {
  font-weight: bold;
  background: linear-gradient(transparent 60%, #FCDF00 0%);
}

.catch {
  font-size: 1.4rem;
  line-height: 1.6;
}

.bg_color {
  display: inline-block;
  background-color: #FCDF00;
  padding: 0.2em 0.3em 0.1em;
  margin: 0 0.2em;
  line-height: 1.2;
}
.bg_color.bg_green {
  background: #00A629;
  color: #fff;
}

/*container*/
.section_box {
  clear: both;
  margin-bottom: 6rem;
}
.section_box .section_box {
  margin-bottom: 4rem;
}
.section_box .img_box {
  text-align: center;
  margin-bottom: 1.5rem;
}
.section_box > *:last-child {
  margin-bottom: 0 !important;
}
.section_box .point_box {
  margin-top: 2rem;
}

.common_box .img_box {
  float: left;
  max-width: 50%;
  margin-right: 2rem;
}
.common_box .img_box img {
  max-width: 100%;
}
.common_box.right .img_box {
  float: right;
  margin-right: auto;
  margin-left: 2rem;
}
.common_box .text_box {
  overflow: hidden;
}

.img_caption {
  text-align: left;
  padding-top: 0.2em;
}

.common_box_just .img_box {
  float: left;
  max-width: 50%;
  margin-right: 1rem;
}
.common_box_just .img_box img {
  max-width: 100%;
}
.common_box_just .text_box {
  overflow: hidden;
}

.tour_about {
  font-size: 0.9rem;
  padding: 1.2em !important;
  line-height: 1.6;
}
.tour_about .img_box {
  width: 35%;
  max-width: 120px;
  margin: -1.8rem;
  margin-right: 0.5rem;
}
@media (min-width: 1024px) {
  .tour_about .text_box {
    padding: 0.4em 0;
  }
}

.width_full {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

@media (max-width: 768px) {
  .common_box .img_box {
    float: none !important;
    max-width: none !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }
}
/* カラム調整 */
.photo_column_in {
  margin: 2rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.photo_column_in.column03 {
  grid-template-columns: repeat(3, 1fr);
}
.photo_column_in .image_wrap img {
  width: 100%;
  height: auto;
}

.two_column_box {
  display: flex;
  gap: 2rem;
}

@media (max-width: 480px) {
  .two_column_box {
    flex-direction: column;
  }
}
/*タグ*/
.tags {
  margin-bottom: 0 !important;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3em;
}
.tags li {
  margin-bottom: 0 !important;
  font-size: 0.8rem;
  font-weight: bold;
  background-color: #FCDF00;
  line-height: 1.1 !important;
  padding: 0.4em 0.6em !important;
}
.tags li:before,
.tags li :after {
  display: none !important;
}

/*索引*/
.list_box,
.qa_box {
  margin: 0 auto 1rem;
}
.list_box a, .list_box:not(:has(.icon_area)) a,
.qa_box a,
.qa_box:not(:has(.icon_area)) a {
  line-height: 1.6;
  text-decoration: none;
  color: #111;
}
.list_box .border_box,
.qa_box .border_box {
  position: relative;
  border: 1px solid #111;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  background-color: #fff;
  transition: 0.3s;
}
.list_box .border_box:hover,
.qa_box .border_box:hover {
  background-color: #FCF6D7;
}
.list_box .border_box:before,
.qa_box .border_box:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  left: auto;
  right: 1.2rem;
  top: calc(50% - 0.85rem);
  width: 1.7rem;
  height: 1.7rem;
  background: #111 url(../images/icon/link_arrow_w.svg) no-repeat center center;
  background-size: 50% auto;
  border-radius: 50%;
}
.list_box a[target=_blank] .border_box:before,
.qa_box a[target=_blank] .border_box:before {
  background-image: url(../images/icon/link_out_w.svg);
}
.list_box:has(.icon_area) .border_box:before,
.qa_box:has(.icon_area) .border_box:before {
  border-radius: 0;
  right: 0;
  top: auto;
  bottom: 0;
}
.list_box .icon_area,
.qa_box .icon_area {
  width: 200px;
  aspect-ratio: 1/1;
  overflow: hidden;
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .list_box .icon_area,
  .qa_box .icon_area {
    width: 140px;
  }
}
.list_box .icon_area img,
.qa_box .icon_area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.list_box .text_area,
.qa_box .text_area {
  width: calc(100% - 140px);
  flex-grow: 1;
  padding: 1.7rem 1.5rem;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.list_box .text_area .title,
.qa_box .text_area .title {
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 0;
}
.list_box .text_area .title .ext,
.qa_box .text_area .title .ext {
  display: inline-block;
  font-size: 0.75em;
  font-weight: normal;
  margin-left: 7px;
}
.list_box .comment_text,
.qa_box .comment_text {
  font-size: 0.8rem;
  margin-top: 0.4em;
}
.list_box .comment_text p,
.qa_box .comment_text p {
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .btn_column .list_box {
    display: inline-block;
    width: calc(50% - 2rem);
    margin: 0 0.5rem 1rem;
    vertical-align: top;
  }
}
.banner_box {
  display: inline-block;
  width: calc(49.5% - 30px);
  margin: 0 15px 30px;
  vertical-align: top;
  overflow: hidden;
}
@media (max-width: 768px) {
  .banner_box {
    width: 100%;
    margin: 0 0 2rem;
  }
}
@media (min-width: 1024px) {
  .banner_box {
    width: calc(49.5% - 40px);
    margin: 0 20px 50px;
  }
}
.banner_box a {
  text-decoration: none;
}
.banner_box .banner_area {
  background: #111;
  position: relative;
  margin-bottom: 1.2rem;
  aspect-ratio: 10/6;
  border-radius: 12px;
  overflow: hidden;
}
.banner_box .banner_area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner_box .banner_area img:hover {
  transform: scale(1.08);
  opacity: 0.8;
}
.banner_box .banner_area .tag_list {
  position: absolute;
  left: 8px;
  top: 5px;
}
.banner_box .banner_area .tag_list .tag {
  background: #FCDF00;
  color: #111;
  font-size: 0.8rem;
  padding: 0.3em 0.4em;
  margin: 0 2px 2px 0;
  display: inline-block;
  line-height: 1.2;
}
.banner_box .banner_area .title {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  padding: 0.5rem 0.75rem;
  padding-top: 1rem;
  color: #fff;
  font-size: 1.2rem;
  -webkit-text-decoration: 0 0 20px rgba(0, 0, 0, 0.5);
          text-decoration: 0 0 20px rgba(0, 0, 0, 0.5);
}
.banner_box .last_arrow {
  position: relative;
  text-decoration: underline;
  text-align: right;
  padding: 0.2rem 2.5rem 0.2rem 0;
}
.banner_box .last_arrow:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  left: auto;
  right: 0;
  top: calc(50% - 1rem);
  width: 2rem;
  height: 2rem;
  background: #111 url(../images/icon/link_arrow_w.svg) no-repeat center center;
  background-size: 42% auto;
  border-radius: 50%;
}

.intro_text {
  font-weight: bold;
}
.intro_text .comment {
  font-size: 0.8rem;
  margin-bottom: 0.7rem;
}
.intro_text ul {
  font-size: 0.9rem;
  margin-bottom: 0.2rem !important;
}

.qa_box {
  position: relative;
  border: 1px solid #111;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  background-color: #fff;
  transition: 0.3s;
  flex-direction: column;
}
.qa_box .qa_title {
  position: relative;
  padding: 1.7rem 1.5rem;
  margin: 0 !important;
  padding-right: calc(1.5rem + 40px);
  font-weight: bold;
}
.qa_box .qa_title:before, .qa_box .qa_title:after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  top: 50%;
  left: auto;
  right: 1.5rem;
  width: 1rem;
  height: 2px;
  background-color: #111;
}
.qa_box .qa_title:after {
  rotate: 90deg;
}
.qa_box.opened .qa_title:after {
  display: none !important;
}
.qa_box .qa_answer {
  border-top: dashed 1px #111;
  margin: 0 1.5rem 1.7rem;
  padding: 1.7rem 0 0;
}

/* ポイント強調ボックス */
.point_box {
  position: relative;
  border: 1px solid #111;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  background-color: #fff;
  transition: 0.3s;
  position: relative;
  flex-direction: column;
  clear: both;
  background: #fff;
  padding: 1.7rem;
  margin-bottom: 2rem;
  font-size: 0.9em;
  border-width: 2px;
  box-shadow: 3px 3px 0 #111;
  overflow: visible;
}
@media (min-width: 1024px) {
  .point_box {
    display: flex;
    flex-direction: row;
    gap: 40px;
  }
  .point_box .img_box {
    max-width: 45%;
    margin-bottom: 0 !important;
  }
}
.point_box.bg_yellow {
  background: #FCF6D7;
}
.point_box > img,
.point_box .img_box {
  margin-bottom: 2rem;
}
.point_box h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5em;
}
.point_box .point_mark {
  position: absolute;
  left: -0.9rem;
  top: -0.9rem;
  background-color: #FCDF00;
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.color_box {
  clear: both;
  background: #F2F2F2;
  border-radius: 12px;
  padding: 1.7rem;
  margin-bottom: 2rem;
}
.color_box :last-child {
  margin-bottom: 0;
}
.color_box.bg_yellow {
  background: #FCF6D7;
}
.color_box.kutikomi h3 {
  font-size: 1.2rem;
}
.color_box.kutikomi p {
  font-size: 0.9rem;
  margin-bottom: 1em;
}
.color_box.kutikomi p:last-child {
  margin-bottom: 0;
}

.plan_box {
  margin-bottom: 3.2rem;
}
.plan_box:last-child {
  margin-bottom: 0;
}
.plan_box h3 {
  margin-bottom: 0.65rem;
}
.plan_box ul {
  margin-bottom: 1.2rem !important;
  font-size: 0.9rem;
  line-height: 1.4;
}
.plan_box .color_box {
  padding: 1.2rem;
  font-size: 0.9rem;
}

/*ボタン*/
.button_area {
  text-align: center;
}

a.btn,
button.btn,
input.btn {
  display: inline-block;
  text-align: center;
  line-height: 1.6;
  padding: 1rem 2rem;
  padding-right: 3.5rem;
  margin: 0 0.5rem 1rem;
  background: #111 url(../images/icon/link_arrow_w.svg) no-repeat right 1.3rem center;
  background-size: 1rem auto;
  color: #fff;
  font-weight: bold;
  width: auto;
  min-width: 220px;
  text-decoration: none;
  border-radius: 2.5rem;
}
a.btn[target=_blank],
button.btn[target=_blank],
input.btn[target=_blank] {
  background-image: url(../images/icon/link_out_w.svg);
}
a.btn:hover,
button.btn:hover,
input.btn:hover {
  transform: scale(1.04);
}
a.btn.no_icon,
button.btn.no_icon,
input.btn.no_icon {
  background-image: none;
  padding-right: 2rem;
}
a.btn.comment_on,
button.btn.comment_on,
input.btn.comment_on {
  margin-bottom: 0.2rem;
}
a.btn span,
button.btn span,
input.btn span {
  color: inherit !important;
}
a.btn.btn_simple,
button.btn.btn_simple,
input.btn.btn_simple {
  background-color: #fff;
  color: #111;
  border: solid 1px #111;
  background-image: url(../images/icon/link_arrow.svg);
}
a.btn.btn_simple[target=_blank],
button.btn.btn_simple[target=_blank],
input.btn.btn_simple[target=_blank] {
  background-image: url(../images/icon/link_out.svg);
}
a.btn.btn_color,
button.btn.btn_color,
input.btn.btn_color {
  position: relative;
  background-color: #EB5600;
  border: solid 3px #111;
  font-size: 1.2rem;
}
a.btn.btn_back,
button.btn.btn_back,
input.btn.btn_back {
  padding-left: 3.5rem;
  padding-right: 2rem;
  background-position: 22px center;
  background-image: url(../images/icon/link_arrow_l.svg);
}

/* table */
table {
  width: 100%;
  margin-bottom: 2rem;
}
table caption {
  display: none;
}
table th,
table td {
  padding: 1rem 0;
  line-height: 1.8;
  vertical-align: top;
  border-bottom: dashed 1px #111;
}
table th ul,
table th ol,
table td ul,
table td ol {
  margin-top: 0.8rem;
  margin-bottom: 0.8rem !important;
}
table th ul:first-child,
table th ol:first-child,
table td ul:first-child,
table td ol:first-child {
  margin-top: 0 !important;
}
table th ul:last-child,
table th ol:last-child,
table td ul:last-child,
table td ol:last-child {
  margin-bottom: 0 !important;
}
table th {
  font-weight: bold;
  min-width: 30%;
  padding-right: 1rem;
}
table thead th {
  font-size: 0.9em;
  padding: 0.5em 1rem;
}

/* iframe */
.movie {
  aspect-ratio: 16/9;
  margin-bottom: 2.5rem;
}
.movie iframe {
  width: 100%;
  height: 100%;
}

/* form */
:disabled {
  opacity: 0.4;
  pointer-events: none;
}

.required {
  background: #111;
  color: #fff;
  font-size: 0.75rem;
  padding: 0.25em 0.35em;
  margin: 0 0 0 0.5em;
}

.errorlist,
.error_text {
  color: #EB5600;
  font-weight: bold;
  font-size: 0.8rem;
  margin: 0 0 0.5rem !important;
}
.errorlist li,
.error_text li {
  padding-left: 0 !important;
}
.errorlist li:before, .errorlist li:after,
.error_text li:before,
.error_text li:after {
  display: none !important;
}
.errorlist li:before,
.error_text li:before {
  content: "※";
}

.form_tit {
  font-weight: bold;
  margin-bottom: 0.3rem;
}

form input[type=text],
form input[type=email],
form input[type=number],
form input[type=tel],
form input[type=url],
form input[type=date],
form input[type=time],
form textarea {
  background: #F2F2F2;
  border: solid 2px #F2F2F2;
  color: #111;
  width: 100%;
  padding: 0.6rem;
  font-size: 16px;
  line-height: 1.6;
}
form input[type=text]:focus,
form input[type=email]:focus,
form input[type=number]:focus,
form input[type=tel]:focus,
form input[type=url]:focus,
form input[type=date]:focus,
form input[type=time]:focus,
form textarea:focus {
  border-color: #ccc;
}
form select {
  display: inline-block;
  min-width: 7.5em;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  background: #fff;
  border: solid 2px #ccc;
  border-radius: 6px;
  font-size: 1rem;
  height: auto;
  line-height: 1.6;
  padding: 10px;
  padding-right: 20px;
  margin: 0 0.5em 0.5em 0;
}
form .help_text {
  padding-top: 0.5em;
}

.caution_box,
.errornote {
  padding: 0.8rem 1.5em;
  margin: 0 auto 2.5rem !important;
  color: #EB5600;
  font-weight: bold;
  background: #ffe5e0;
  border-radius: 12px;
}

.errornote {
  text-align: center;
}/*# sourceMappingURL=common.css.map */