@charset "UTF-8";
@font-face {
  font-family: 'themify';
  src: url("../fonts/themify/themify.eot?-fvbane");
  src: url("../fonts/themify/themify.eot?#iefix-fvbane") format("embedded-opentype"), url("../fonts/themify/themify.woff?-fvbane") format("woff"), url("../fonts/themify/themify.ttf?-fvbane") format("truetype"), url("../fonts/themify/themify.svg?-fvbane#themify") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* ===================================================================== */
/* Reset * /
/* ===================================================================== */
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, dialog, figure, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* ===================================================================== */
/*  * /
/* ===================================================================== */
html {
  height: 100%;
  font-size: 100%;
}

body {
  width: 100%;
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica,
  '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック','Yu Gothic',
  'Hiragino Kaku Gothic ProN','メイリオ', arial, Meiryo,
  'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  line-height: 1.8;
  text-align: justify;
  text-justify: inter-ideograph;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  letter-spacing: .2rem;
  color: #414042;
}

section {
  padding: 6rem 0;
  background: #fff;
  position: relative;
}

img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.wrapper {
  width: 100%;
}

.container {
  width: 1240px;
  height: 100%;
  padding: 0;
  margin: 0 auto;
}

@media only screen and (max-width: 1240px) {
  .container {
    width: 90%;
  }
}

/* safari */
_::-webkit-full-page-media, _:future, :root .container::before,
.container::after {
  display: block;
}

/* ----------------------------------------
fot Tablet & Smartphone
---------------------------------------- */
@media only screen and (max-width: 1240px) {
  html {
    font-size: 95%;
  }
}

@media only screen and (max-width: 900px) {
  html {
    font-size: 92%;
  }
}

@media only screen and (max-width: 486px) {
  html {
    font-size: 90%;
  }

  section {
    padding: 4rem 0;
    background: #fff;
  }
}

/* ===================================================================== */
/* General * /
/* ===================================================================== */
a {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  color: #f6c826;
  cursor: pointer;
}

a:hover, a:focus, a:active {
  outline: none;
  color: #e3971d;
  text-decoration: none;
  border-bottom: 1px solid #e3971d;
}

input {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="search"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

::-webkit-selection {
  color: #fff;
  background: #ddd;
}

::-moz-selection {
  color: #fff;
  background: #ddd;
}

::selection {
  color: #fff;
  background: #ddd;
}

/* ===================================================================== */
/* display * /
/* ===================================================================== */
.only_sp_show { /* スマホ時のみ表示 */
  display: none;
}

.only_pc_show { /* PC時のみ表示 */
  display: run-in;
}

/* ----------------------------------------
fot Smartphone
---------------------------------------- */
@media screen and (max-width: 480px) {
  .only_sp_show { /* スマホ時のみ表示 */
    display: run-in;
   }

  .only_pc_show { /* PC時のみ表示 */
    display: none;
  }
}

/* ===================================================================== */
/* Font * /
/* ===================================================================== */
.fc_green-1 {color: #009550;}
.fc_green-2 {color: #68cf9a;}
.fc_green-3 {color: #d2f2da;}
.fc_yellow-1 {color: #f6c826;}
.fc_pink-1 {color: #e3971d;}

.ff_crimson {
  font-family: "Crimson Text", serif;
}

.ff_roboto {
  font-family: "Roboto", arial, sans-serif;
}

.ff_noto-sans {
  font-family: 'Noto Sans JP', sans-serif;
}

.mincho {
  font-family: '游明朝', 'Yu Mincho', 'ヒラギノ明朝 ProN W3',
  'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', 'ＭＳ 明朝', serif;
}

/* ===================================================================== */
/* Utility * /
/* ===================================================================== */
.object-fit {
  object-fit: cover;
  font-family: 'object-fit: cover;'; /*IE対策*/
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.flex-L {
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-flex-flow: row nowrap;
  display: flex;
  justify-content: flex-start;
  flex-flow: row nowrap;
}

.flex-R {
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-flex-flow: row-reverse nowrap;
  display: flex;
  justify-content: flex-start;
  flex-flow: row-reverse nowrap;
}

.flex-C {
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-flex-flow: row nowrap;
  display: flex;
  justify-content: center;
  flex-flow: row nowrap;
}

.d_block {display: block;}
.d_inline {display: inline;}
.d_inline-block {display: inline-block;}
.fs_60 {font-size: 60%;}
.fs_65 {font-size: 65%;}
.fs_70 {font-size: 70%;}
.fs_75 {font-size: 75%;}
.fs_80 {font-size: 80%;}
.fs_85 {font-size: 85%;}
.fs_90 {font-size: 90%;}
.fs_95 {font-size: 95%;}
.fs_105 {font-size: 105%;}
.fs_110 {font-size: 110%;}
.fs_115 {font-size: 115%;}
.fs_120 {font-size: 120%;}
.fs_140 {font-size: 140%;}
.fs_150 {font-size: 150%;}
.fs_160 {font-size: 160%;}
.fs_170 {font-size: 170%;}
.fs_180 {font-size: 180%;}
.fs_190 {font-size: 190%;}
.fs_200 {font-size: 200%;}
.bg-GY {background: #f1f1f1;}
.bg-YE {background: #fff7dc;}

/* ----------------------------------------
fot Smartphone
---------------------------------------- */
@media screen and (max-width: 480px) {
  .sp_block-1 {
    display: block;
  }
}

/* ===================================================================== */
/* Effect * /
/* ===================================================================== */
.effectIn1 {
  -moz-transition: 1.2s;
  -webkit-transition: 1.2s;
  -o-transition: 1.2s;
  -ms-transition: 1.2s;
  transition: 1.2s;
  opacity: 0;
  -moz-transition: translate(0, 30px);
  -webkit-transition: translate(0, 30px);
  -o-transition: translate(0, 30px);
  -ms-transition: translate(0, 30px);
  transform: translate(0, 30px);
}
.effectOut1 {
  -moz-transition: 1.2s;
  -webkit-transition: 1.2s;
  -o-transition: 1.2s;
  -ms-transition: 1.2s;
  transition: 1.2s;
  opacity: 1.0;
  -moz-transition: translate(0, 0px);
  -webkit-transition: translate(0, 0px);
  -o-transition: translate(0, 0px);
  -ms-transition: translate(0, 0px);
  transform: translate(0, 0px);
}

.effectIn2 {
  -moz-transition: 1.2s;
  -webkit-transition: 1.2s;
  -o-transition: 1.2s;
  -ms-transition: 1.2s;
  transition: 1.2s;
  opacity: 0;
  -moz-transition: translate(-30px, 0);
  -webkit-transition: translate(-30px, 0);
  -o-transition: translate(-30px, 0);
  -ms-transition: translate(-30px, 0);
  transform: translate(-30px, 0);
}
.effectOut2 {
  -moz-transition: 1.2s;
  -webkit-transition: 1.2s;
  -o-transition: 1.2s;
  -ms-transition: 1.2s;
  transition: 1.2s;
  opacity: 1.0;
  -moz-transition: translate(0, 0px);
  -webkit-transition: translate(0, 0px);
  -o-transition: translate(0, 0px);
  -ms-transition: translate(0, 0px);
  transform: translate(0, 0px);
}

.animate-01 {
  opacity: 0;
}

.animate-02 {
  -moz-transition: 1.2s;
  -webkit-transition: 1.2s;
  -o-transition: 1.2s;
  -ms-transition: 1.2s;
  transition: 1.2s;
  opacity: 0;
  -moz-transition: translate(-30px, 0);
  -webkit-transition: translate(-30px, 0);
  -o-transition: translate(-30px, 0);
  -ms-transition: translate(-30px, 0);
  transform: translate(-30px, 0);
}
.animate-02_off {
  -moz-transition: 1.2s;
  -webkit-transition: 1.2s;
  -o-transition: 1.2s;
  -ms-transition: 1.2s;
  transition: 1.2s;
  opacity: 1.0;
  -moz-transition: translate(0, 0px);
  -webkit-transition: translate(0, 0px);
  -o-transition: translate(0, 0px);
  -ms-transition: translate(0, 0px);
  transform: translate(0, 0px);
}

/* ===================================================================== */
/* Header * /
/* ===================================================================== */
.header-wrap {
  position: relative;
}

#header {
  width: 100%;
  height: 60px;
  background: rgba(255, 255, 255, .9);
  position: fixed;
  z-index: 9000;
}

#global-nav {
  width: 100%;
  height: 100%;
}

#header-menu {
  list-style-type: none;
}

#header-menu li a {
  display: block;
  height: 100%;
  color: #414042;
  font-size: .9rem;
  font-weight: bold;
  letter-spacing: .12rem;
  white-space: nowrap;
  padding: 1rem;
  box-sizing: border-box;
  position: relative;
}

#header-menu li a::before {
  font-family: "FontAwesome";
  content: "\f105";
}
#header-menu li.header-dl a::before {
  font-family: "FontAwesome";
  content: "\f15c";
}

#header-menu li a:hover {
  color: #f6c826;
  border-bottom: none;
}

#header-menu .header-logo {
  height: 60px;
  margin-right: auto;
}

#header-menu .header-logo img {
  width: 200px;
  height: 100%;
}

#header-menu .header-logo a {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  height: 100%;
  padding: 0 1.2rem .2rem;
}
#header-menu .header-dl a {
  color: #fff;
  background: #e3971d;
}

/* safari */
_::-webkit-full-page-media, _:future,
:root #header-menu .header-logo a,
#header-menu .header-dl a {
  padding-right: 2rem;
}

#header-menu .header-logo a::before,
#header-menu .header-dl a::before {
  content: "";
  margin-right: 0;
}

#header-menu .header-logo a:hover {
  opacity: .5;
}
#header-menu .header-dl a:hover {
  color: #fff;
  background: #f6c826;
  border-bottom: none;
}
#header-menu .header-logo a:hover::after,
#header-menu .header-dl a:hover::after {
  width: 0;
  height: 0;
}

#header-menu .header-dl a i {
  font-weight: bold;
  letter-spacing: 0;
}

.smaller #header-menu .header-logo,
.smaller #header-menu .header-dl {
  min-height: 60px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.smaller #header-menu .header-logo img {
  width: 180px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.smaller #header-menu li a {
  font-size: .8rem;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.smaller #header-menu li a:hover {
  color: #f6c826;
}

.smaller #header-menu .header-logo a,
.smaller #header-menu .header-dl a {
  color: #fff;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.smaller #header-menu .header-logo a {
  font-size: 1.5rem;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.smaller #header-menu .header-dl a {
  font-size: .8rem;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.smaller #header-menu .header-dl a:hover {
  color: #fff;
  background: #f6c826;
}

/* ===================================================================== */
/* Sub Page * /
/* ===================================================================== */
#sub-header {
  background-color: #009550;
}
.sub-title {
  margin: 10rem auto 1rem;
  text-align: center;
  color: #fff;
  font-size: 2.8rem;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}

.sub-title h1 {
  line-height: 1.25;
}

@media only screen and (max-width: 480px) {
  .sub-title {
    font-size: 2.6rem;
  }
}

.sub-page .title-2 {
  display: none;
}

/* ===================================================================== */
/* Drawer Menu * /
/* ===================================================================== */
#drawer-header {
  position: relative;
  z-index: 9999;
}

#drawer-header .drawer-hamburger {
  width: 2.4rem;
  padding-top: 18px;
  padding-right: 1.6rem;
  padding-left: 1.6rem;
}

#drawer-header .drawer-hamburger-icon,
#drawer-header .drawer-hamburger-icon::before,
#drawer-header .drawer-hamburger-icon::after {
  height: 2px;
  background-color: #009550;
}
.drawer-open #drawer-header .drawer-hamburger-icon {
    background-color: transparent;
}

#drawer-header .drawer-nav {
  background-color: #009550;
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-flex-flow: column nowrap;
  display: flex;
  justify-content: flex-start;
  flex-flow: column nowrap;
}

#drawer-header .drawer-menu {
  padding: 2rem 1rem;
}

#drawer-header .drawer-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

#drawer-header .drawer-menu li a {
 display: block;
  height: 100%;
  color: #fff;
  font-size: .9rem;
  font-weight: bold;
  letter-spacing: .12rem;
  white-space: nowrap;
  padding: 1.2rem;
  box-sizing: border-box;
}
#drawer-header .drawer-menu li a::before {
  font-family: "FontAwesome";
  content: "\f105";
}

#drawer-header .drawer-menu li a:hover {
  border-bottom: none;
}

#drawer-header .header-dl {
  width: 100%;
  text-align: center;
  padding: 2rem 1rem;
  margin-top: auto;
  background-color: #e3971d;
}

#drawer-header .header-dl a {
  color: #fff;
  font-weight: bold;
  letter-spacing: .12rem;
  white-space: nowrap;
}

#drawer-header .header-dl a::before {
  font-family: "FontAwesome";
  content: "\f15c";
}

.drawer-overlay {
  z-index: 9000;
  background-color: rgba(255, 255, 255, .7);
}

.smaller #drawer-header .drawer-hamburger {
  width: 2.4rem;
  padding-top: 20px;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.smaller #drawer-header .drawer-hamburger-icon,
.smaller #drawer-header .drawer-hamburger-icon::before,
.smaller #drawer-header .drawer-hamburger-icon::after {
  background-color: #009550;
}
.drawer-open .smaller #drawer-header .drawer-hamburger-icon {
    background-color: transparent;
}

@media only screen and (min-width: 1121px) {
  #drawer-header {
    display: none;
  }
}

@media only screen and (max-width: 1120px) {
  #header-menu li:not(.header-logo) {
    display: none;
  }
}

/* ===================================================================== */
/* Link * /
/* ===================================================================== */
.cv-btn {
  text-align: left;
  margin: 2rem 0;
}

.cv-btn a {
  display: inline-block;
  width: auto;
  color: #fff;
  font-weight: bold;
  letter-spacing: .15rem;
  text-decoration: none;
  padding: 1rem 3rem 1.2rem 4rem;
  background: #e3971d;
  border-radius: 36px;
  border: none;
}

.cv-btn a::before {
  font-family: "FontAwesome";
  content: "\f15c";
  margin-right: 6px;
}

.cv-btn a:hover {
  background: #f6c826;
  box-shadow: 0 0 24px rgba(0, 0, 0, .2);
}

#main-visual .cv-btn a {
  width: 98%;
  font-size: 1.2rem;
  text-align: center;
}

.cv-btn a i {
  font-weight: bold;
  margin-right: .5rem;
}

.link-box {
  text-align: center;
  margin: 3rem 0;
}

.link-box a {
  display: inline-block;
  width: auto;
  color: #fff;
  text-decoration: none;
  padding: 1rem 4rem 1rem 3rem;
  background: #009550;
  position: relative;
}
.link-box a::after {
  font-family: "Font Awesome 5 Free";
  content: "\f0da";
  color: #fff;
  font-weight: 900;
  width: 2rem;
  height: 100%;
  padding: 1rem;
  padding-left: .8rem;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(255, 255, 255, .2);
}

.link-box a:hover {
  color: #fff;
  background: #f6c826;
  border-bottom: none;
}

@media only screen and (max-width: 560px) {
  #main-visual .cv-btn a {
    padding: 1rem 1rem 1.2rem;
  }
}

@media only screen and (max-width: 400px) {
  .cv-btn a {
    padding: 1rem 1.5rem 1.2rem 2rem;
  }
}

/* ===================================================================== */
/* Title * /
/* ===================================================================== */
.title-1 {
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  padding: 1.5rem .5rem 2rem;
  margin-bottom: 6rem;
  background: #e8b500;
  position: relative;
}
.title-1::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 0;
  bottom: -28px;
  border-style: solid;
  border-width: 30px 30px 0 30px;
  border-color: #e8b500 transparent transparent transparent;
}

.title-2 {
  color: #009550;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
}

.title-1 h2,
.title-2 h2 {
  font-weight: bold;
  line-height: 1.3;
}

.title-2 p {
  color: #414042;
  font-size: 1.35rem;
}
.title-2 p span {
  color: #f6c826;
  font-size: 1.2em;
  border-bottom: 2px solid #f6c826;
}

.title-3 {
  color: #009550;
  font-size: 1.5rem;
  padding-bottom: .5rem;
  margin-bottom: 1rem;
  position: relative;
}
.title-3::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #009550;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
}
.title-3 h3 {
  font-weight: bold;
}

.title-1, .title-2, .title-3 {
  font-family: 'Noto Sans JP', sans-serif;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

@media only screen and (max-width: 560px) {
  .title-1 {
    font-size: 6.5vw;
  }

  .title-2 {
    font-size: 8vw;
  }
}

/* ===================================================================== */
/* Up Down * /
/* ===================================================================== */
.up-down {
  display: table;
  width: 4rem;
  height: 4rem;
  background: #999;
  border-radius: 50%;
  position: absolute;
  bottom: -2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1000;
}

.up-down a {
  display: table-cell;
  vertical-align: middle;
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  line-height: 0;
  letter-spacing: 0;
  border-bottom: none;
}

.up-down a:hover {
  border-bottom: none;
  padding-top: .5rem;
}

#footer .up-down a:hover {
  padding-top: 0;
  padding-bottom: .5rem;
}

/* ===================================================================== */
/* Footer * /
/* ===================================================================== */
#footer {
  background: #f1f1f1;
  padding-top: 3rem;
  position: relative;
}

#footer .up-down {
  top: -2rem;
  bottom: auto;
}

#footer-menu {
  list-style-type: none;
  padding: 2rem 0;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
}

#footer-menu li a {
  display: block;
  color: #009550;
  font-size: .8rem;
  font-weight: bold;
  letter-spacing: .12rem;
  white-space: nowrap;
  padding: .5rem .8rem;
}

#footer-menu li a::before {
  font-family: "FontAwesome";
  content: "\f105";
}

#footer-menu li a:hover {
  color: #f6c826;
  border-bottom: none;
}

#footer-menu li a:hover::after {
  content: "";
  width: 2rem;
  height: 3px;
  background: #009550;
  position: absolute;
  bottom: .5rem;
  left: 0;
  right: 0;
  margin: auto;
}

#footer .copyright {
  color: #fff;
  font-size: .7rem;
  letter-spacing: .08rem;
  text-align: center;
  background: #009550;
  padding: 1rem 0;
}

#footer .copyright a {
  color: #fff;
  text-decoration: underline;
  border-bottom: none;
}
#footer .copyright a:hover {
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
  border-bottom: none;
}

@media only screen and (max-width: 480px) {
  #footer-menu {
    display: inline-block;
    width: 100%;
    padding: 2rem 0 4rem;
  }

  #footer-menu li a {
    border-bottom: 1px dotted;
  }
}

/* ===================================================================== */
/* Contact * /
/* ===================================================================== */
.contact-content {
  min-height: 50vh;
  padding-bottom: 9rem;
}

.page-contact.thanks .text-center {
  margin-bottom: 5rem;
}

.contact-form {
  width: 60%;
  margin: 0 20%;
}

.contact-form .tel-btn {
  text-align: center;
  padding: 1rem;
}

.contact-form .tel-btn a {
  display: inline-block;
  color: #e3971d;
  font-size: 2rem;
}
.contact-form .tel-btn a::before {
  font-family: "FontAwesome";
  content: "\f095";
  margin-right: .5rem;
}
.contact-form .tel-btn a:hover {
  color: #f6c826;
  border-bottom: none;
}

.contact-form dl {
  margin: 3rem 0 1rem;
}

.contact-form dl > div {
  overflow: hidden;
  margin-bottom: 1.2rem;
}

.contact-form dt,
.contact-form dd {
  padding: 0 1rem;
}

.contact-form dt {
  margin-bottom: .2rem;
}

.contact-form dl > div.required dt span::after {
  content: "必須";
  color: #fff;
  font-size: .7em;
  letter-spacing: 0;
  padding: 0 .2rem;
  margin-left: .2rem;
  background: #e3971d;
}

.contact-form .input-text {
  width: 100%;
  padding: .5rem;
  border: 1px solid #009550;
  box-sizing: border-box;
}

.contact-form .text-area {
  width: 100%;
  height: 12rem;
  padding: .5rem;
  border: 1px solid #009550;
  box-sizing: border-box;
}

.send-btn {
  text-align: center;
}

.send-btn .submit-btn {
  display: inline-block;
  width: 60%;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: .05rem;
  text-decoration: none;
  padding: 1rem 4rem 1.2rem;
  background: #e3971d;
  border-radius: 36px;
  border: none;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.send-btn .submit-btn:hover {
  color: #fff;
  background: #f6c826;
  border-bottom: none;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.check-area {
  text-align: center;
  padding: 0 1rem;
  margin-bottom: 1.5rem;
}

.check-area a {
  display: inline-block;
  height: 2rem;
  font-size: 1.2rem;
  margin-bottom: .5rem;
}
.check-area a::before {
  font-family: "FontAwesome";
  content: "\f105";
  margin-right: .2rem;
}

.check-area .check-btn {
  margin-right: .5rem;
}

.send-btn .submit-btn[disabled] {
  background: #ccc;
  cursor: default;
}

@media only screen and (max-width: 991px) {
  .contact-form dt,
  .contact-form dd {
    padding: 0;
  }
}

@media only screen and (max-width: 780px) {
  .send-btn .submit-btn {
    width: 80%;
  }
}

@media only screen and (max-width: 560px) {
  .send-btn .submit-btn {
    width: 100%;
  }
}

@media only screen and (max-width: 520px) {
  .contact-form {
    width: 100%;
    margin: 0;
  }
}

#thanks .contact-content {
  height: 55vh;
}

/* ===================================================================== */
/* common * /
/* ===================================================================== */

.bc_green {background-color: #009650;}
.c_white {color: #fff;}
.fs_08 {font-size: .8rem;}
.ta_center {text-align: center;}
