@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: bottom;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  vertical-align: bottom;
  max-width: 100%;
}

.form-wrap input,
.form-wrap textarea,
.form-wrap select {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 10px;
  outline: none;
  border-radius: 8px;
  border: solid 1px #dfe6ea;
}

.form-wrap input::-webkit-input-placeholder,
.form-wrap textarea::-webkit-input-placeholder,
.form-wrap select::-webkit-input-placeholder {
  color: #b2bbc5;
}

.form-wrap input:-ms-input-placeholder,
.form-wrap textarea:-ms-input-placeholder,
.form-wrap select:-ms-input-placeholder {
  color: #b2bbc5;
}

.form-wrap input::-ms-input-placeholder,
.form-wrap textarea::-ms-input-placeholder,
.form-wrap select::-ms-input-placeholder {
  color: #b2bbc5;
}

.form-wrap input::placeholder,
.form-wrap textarea::placeholder,
.form-wrap select::placeholder {
  color: #b2bbc5;
}

@media (max-width: 768px) {
  .form-wrap input,
  .form-wrap textarea,
  .form-wrap select {
    border-radius: 4px;
  }
}

.form-wrap input[type="text"],
.form-wrap input[type="email"] {
  height: 54px;
  width: 67%;
}

@media (max-width: 768px) {
  .form-wrap input[type="text"],
  .form-wrap input[type="email"] {
    height: 40px;
    width: 100%;
  }
}

.form-wrap textarea {
  width: 100%;
  height: 140px;
  resize: none;
  padding-top: 10px;
  line-height: 2.4rem;
}

@media (max-width: 768px) {
  .form-wrap textarea {
    height: 100px;
  }
}

.form-wrap .select-wrap {
  position: relative;
  width: 100%;
}

.form-wrap .select-wrap:before {
  content: "";
  display: block;
  position: absolute;
  right: 22px;
  top: 19px;
  border-top: solid 11px #000;
  border-left: solid 6px transparent;
  border-right: solid 6px transparent;
  pointer-events: none;
}

.form-wrap .select-wrap select {
  width: 100%;
  height: 50px;
  cursor: pointer;
  -webkit-appearance: none;
  /* ベンダープレフィックス(Google Chrome、Safari用) */
  -moz-appearance: none;
  /* ベンダープレフィックス(Firefox用) */
  appearance: none;
  /* 標準のスタイルを無効にする */
}

.form-wrap .select-wrap ::-ms-expand {
  display: none;
}

.form-wrap label {
  display: inline-block;
  position: relative;
}

.form-wrap label input[type="checkbox"] {
  display: none;
}

.form-wrap label span {
  cursor: pointer;
}

.form-wrap label span:before {
  content: "";
  display: block;
  position: absolute;
  left: -17px;
  top: 0px;
  background: #fff;
  border: solid 1px #dfe6ea;
  height: 24px;
  width: 24px;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.form-wrap label input[type="checkbox"]:checked + span:after {
  content: "";
  display: block;
  position: absolute;
  left: -11px;
  top: 0px;
  border-bottom: solid 2px #ff5b76;
  border-right: solid 2px #ff5b76;
  height: 16px;
  width: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media (max-width: 768px) {
  .form-wrap label span:before {
    width: 17px;
    height: 17px;
    border-radius: 2px;
    left: -7px;
  }
  .form-wrap label input[type="checkbox"]:checked + span:after {
    height: 14px;
    width: 8px;
    left: -3px;
    top: -2px;
  }
}

.form-wrap input[type="submit"],
.form-wrap input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.form-wrap input[type="submit"]::-webkit-search-decoration,
.form-wrap input[type="button"]::-webkit-search-decoration {
  display: none;
}

.form-wrap input[type="submit"]::focus,
.form-wrap input[type="button"]::focus {
  outline-offset: -2px;
}

.form-wrap dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 8px;
}

.form-wrap dl dt {
  width: 25%;
  padding: 20px 0 0 0;
  font-weight: bold;
}

.form-wrap dl dt .required {
  display: block;
  background: #d33015;
  color: #fff;
  font-size: 14px;
  text-align: center;
  width: 50px;
  height: 26px;
  line-height: 26px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .form-wrap dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 2px;
  }
  .form-wrap dl dt {
    width: 100%;
    padding: 4px 2px 9px;
  }
}

.form-wrap dl dd {
  width: 75%;
  padding: 0 0 24px 0;
}

@media (max-width: 768px) {
  .form-wrap dl dd {
    width: 100%;
    padding-bottom: 16px;
  }
}

.form-wrap dl dd.radio label {
  display: inline-block;
  padding-left: 37px;
  position: relative;
}

.form-wrap dl dd.radio label input[type="radio"] {
  display: none;
}

.form-wrap dl dd.radio label span {
  cursor: pointer;
}

.form-wrap dl dd.radio label span:before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: -4px;
  background: #fff;
  border: solid 2px #e8ecf1;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.form-wrap dl dd.radio label input[type="radio"]:checked + span:after {
  content: "";
  display: block;
  position: absolute;
  left: 9px;
  top: -2px;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #000;
}

@media (max-width: 768px) {
  .form-wrap dl dd.radio label {
    padding-left: 26px;
  }
  .form-wrap dl dd.radio label span:before {
    height: 14px;
    width: 14px;
  }
  .form-wrap dl dd.radio label input[type="radio"]:checked + span:after {
    left: 6px;
    top: -4px;
    height: 6px;
    width: 6px;
  }
}

.form-wrap .consent-wrap {
  text-align: center;
  margin-bottom: 40px;
}

.form-wrap .consent-wrap a {
  color: #b55736;
  padding-bottom: 2px;
  border-bottom: 1px solid #b55736;
}

.form-wrap .consent-wrap a:hover {
  border-bottom: none;
}

@media (max-width: 768px) {
  .form-wrap .consent-wrap {
    margin-bottom: 38px;
  }
}

.form-wrap .btn-wrap {
  margin: 0 auto;
  display: block;
  width: 280px;
  position: relative;
}

.form-wrap .btn-wrap:before, .form-wrap .btn-wrap:after {
  display: block;
  content: "";
  position: absolute;
  right: 8%;
  top: 26px;
  width: 8px;
  height: 3px;
  border-radius: 2px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: #fff;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

.form-wrap .btn-wrap:after {
  top: 30px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.form-wrap .btn-wrap .btn {
  height: 56px;
  border-radius: 28px;
  border: solid 2px transparent;
  color: #fff;
  background: #ff5b76;
  cursor: pointer;
  padding: 0;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.form-wrap .btn-wrap:hover:before, .form-wrap .btn-wrap:hover:after {
  right: 4%;
  background: #ff5b76;
}

.form-wrap .btn-wrap:hover .btn {
  background: #fff;
  border-color: #ff5b76;
  color: #ff5b76;
}

@media (max-width: 768px) {
  .form-wrap .btn-wrap {
    width: 260px;
    max-width: 100%;
  }
  .form-wrap .btn-wrap:before, .form-wrap .btn-wrap:after {
    width: 5px;
    height: 2px;
    border-radius: 1px;
    right: 6%;
    top: 17px;
  }
  .form-wrap .btn-wrap:after {
    top: 20px;
  }
  .form-wrap .btn-wrap .btn {
    height: 40px;
    border-radius: 20px;
  }
}

.iframe-wrap {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}

.iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .sp {
    display: none !important;
  }
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  color: #676766;
}

main {
  display: block;
}

.content {
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
}

p {
  line-height: 2.4rem;
}

h3 {
  text-align: center;
  font-size: 3.2rem;
  line-height: 2.4rem;
  font-weight: bold;
  letter-spacing: 2px;
}

h3 span {
  display: block;
  margin-bottom: 13px;
}

.btn {
  display: block;
  margin: 0 auto;
  width: 280px;
  max-width: 100%;
  height: 56px;
  border: solid 2px transparent;
  padding-top: 20px;
  border-radius: 35px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

.btn.btn-arrow {
  position: relative;
}

.btn.btn-arrow:before, .btn.btn-arrow:after {
  display: block;
  content: "";
  position: absolute;
  right: 8%;
  top: 23px;
  width: 8px;
  height: 3px;
  border-radius: 2px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

.btn.btn-arrow:after {
  top: 27px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
  .content {
    width: 90%;
  }
  h3 {
    font-size: 2.4rem;
  }
  h3 span {
    margin-bottom: 5px;
  }
  h3 span img {
    height: 10px;
  }
  .btn {
    max-width: 100%;
    width: 260px;
    height: 40px;
    border-radius: 20px;
    font-size: 14px;
    padding-top: 12px;
  }
  .btn.btn-arrow:before, .btn.btn-arrow:after {
    width: 5px;
    height: 2px;
    border-radius: 1px;
    right: 5%;
    top: 15px;
  }
  .btn.btn-arrow:after {
    top: 18px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}

header {
  padding: 6px 20px 0 0;
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header h1 {
  margin-left: 0;
  font-size: 3rem;
  letter-spacing: 0.3em;
}

header h1 a {
  color: #111;
}

header h1:hover {
  opacity: 0.7;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media only screen and (min-width: 1281px) {
  header h1 {
    margin-left: calc((100% - 1280px) / 2);
  }
}

header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 780px;
}

header nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 65%;
}

header nav ul li a {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.7rem;
  font-weight: bold;
  color: #453c3c;
}

header nav ul li a span {
  display: block;
  font-size: 1rem;
  color: #87614b;
  letter-spacing: 0.05em;
}

header nav ul li a:hover {
  border-bottom: 2px solid #132d52;
}

header nav .btn {
  background: #ff5b76;
  color: #fff;
  width: 232px;
  max-width: 30%;
  margin: 0;
}

header nav .btn:hover {
  background: #fff;
  color: #ff5b76;
  border-color: #ff5b76;
}

@media (max-width: 768px) {
  header {
    padding: 5px 5% 0;
    height: 60px;
    position: relative;
  }
  header h1 {
	margin-top: -12px;
    margin-left: 0;
  }
  header h1 a img {
	        width: 120px !important;
        height: auto;
  }
  header nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1;
    background: #fff;
    padding: 10px 0 20px;
  }
  header nav ul {
    display: block;
    width: 100%;
  }
  header nav ul li {
    margin-bottom: 10px;
    text-align: center;
  }
  header nav ul li a {
    font-size: 1.4rem;
  }
  header nav ul li a span {
    margin-bottom: 2px;
  }
  header nav ul li a span img {
    height: 8px;
  }
  header nav .btn {
    margin: 0 auto;
    max-width: none;
  }
  header .menu-trigger {
    position: relative;
    height: 18px;
    width: 30px;
    cursor: pointer;
	margin-top: 8px;
  }
  header .menu-trigger span {
    background: #b55736;
    display: block;
    height: 4px;
    width: 100%;
    position: absolute;
    top: 0;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    border-radius: 2px;
  }
  header .menu-trigger span:nth-of-type(2) {
    top: 50%;
  }
  header .menu-trigger span:nth-of-type(3) {
    top: 100%;
  }
  header .menu-trigger.active span {
    top: 6px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  header .menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
  }
  header .menu-trigger.active span:nth-of-type(3) {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}

.mv {
  background: #b7a170;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, #b7a170 0%, #f3e1d7 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#51c2e3', endColorstr='#4bcba6',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
  margin-bottom: 147px;
  position: relative;
}

.mv .content {
  height: 580px;
  padding-top: 203px;
}

.mv .content h2 {
  color: #fff;
  font-weight: 900;
  font-size: 8rem;
  letter-spacing: 4px;
}

.mv .content h2 span {
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2.4rem;
  margin-top: 22px;
  letter-spacing: 1px;
}

.mv .img-wrap {
  position: absolute;
  right: 22px;
  bottom: -183px;
  width: 47%;
}

@media (max-width: 768px) {
  .mv {
    margin-bottom: 113px;
  }
  .mv .content {
    height: 515px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-top: 33px;
  }
  .mv .content h2 {
    margin-left: 17px;
    font-size: 4rem;
    line-height: 5.9rem;
  }
  .mv .content h2 span {
    font-weight: normal;
    font-size: 1.4rem;
    margin-top: 16px;
  }
  .mv .img-wrap {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: -98px;
    width: 90%;
    max-width: 337px;
  }
}

main.home .service h3 {
  
}

main.home .service ul {
  width: 690px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

main.home .service ul li {
  width: 30%;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 2.6rem;
  text-align: center;
  color: #7d6d5f;
}

main.home .service ul li .img-wrap {
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  main.home .service h3 {
    margin-bottom: 27px;
  }
  main.home .service ul {
    width: 217px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  main.home .service ul li {
    width: 100%;
    font-size: 1.4rem;
    line-height: 2.4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: left;
    margin-bottom: 20px;
  }
  main.home .service ul li .img-wrap {
    margin: 0 16px 0 0;
    width: 80px;
  }
}

main.home .service .bg {
  background: #f5ede6;
  padding: 200px 0 85px;
  margin: -144px 0 69px;
}

main.home .service .bg .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 1120px;
  max-width: 100%;
  margin: 0 auto 43px;
}

main.home .service .bg .row .box {
  background: #fff;
  border: 4px solid #b78977;
  border-radius: 8px;
  width: 48%;
  padding: 30px 5px 28px;
  text-align: center;
}

main.home .service .bg .row .box h4 {
  color: #b55736;
  font-weight: bold;
  margin-bottom: 26px;
}

main.home .service .bg p {
  text-align: center;
}

main.home .service .bg p a {
  color: #b55736;
  padding-bottom: 2px;
  border-bottom: 1px solid #b55736;
}

main.home .service .bg p a:hover {
  border-bottom: none;
}

@media (max-width: 768px) {
  main.home .service .bg {
    padding: 22px 0 27px;
    margin: 0 0 16px;
  }
  main.home .service .bg .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 13px;
  }
  main.home .service .bg .row .box {
    width: 90%;
    border-width: 2px;
    border-radius: 4px;
    padding: 17px 15px 14px;
  }
  main.home .service .bg .row .box h4 {
    font-size: 1.4rem;
    margin-bottom: 16px;
  }
  main.home .service .bg .row .box + .box {
    margin-top: 20px;
    padding-bottom: 19px;
  }
}

main.home .company {
  margin-bottom: 72px;
}

main.home .company h3 {
  margin-bottom: 53px;
}

main.home .company .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

main.home .company .content dl {
  width: 36%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  line-height: 2.4rem;
}

main.home .company .content dl dt, main.home .company .content dl dd {
  border-top: 1px solid #dfe5e9;
  padding: 14px 0 16px;
}

main.home .company .content dl dt:first-of-type, main.home .company .content dl dd:first-of-type {
  border-top: none;
}

main.home .company .content dl dt {
  width: 28%;
  font-weight: bold;
  padding-left: 10px;
}

main.home .company .content dl dd {
  width: 72%;
}

main.home .company .content .iframe-wrap {
  width: 61%;
  padding-bottom: 28%;
}

@media (max-width: 768px) {
  main.home .company {
    margin-bottom: 46px;
  }
  main.home .company h3 {
    margin-bottom: 27px;
  }
  main.home .company .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  main.home .company .content dl {
    width: 100%;
    font-size: 1.4rem;
  }
  main.home .company .content dl dt, main.home .company .content dl dd {
    padding: 11px 0 14px;
  }
  main.home .company .content dl dt {
    width: 32%;
    padding-left: 6px;
  }
  main.home .company .content dl dd {
    width: 68%;
  }
  main.home .company .content .iframe-wrap {
    width: 100%;
    padding-bottom: 53%;
  }
}

main.home .recruit {
  background: #f0f9ff;
  padding: 65px 0 60px;
  margin-bottom: 67px;
}

main.home .recruit h3 {
  margin-bottom: 49px;
}

main.home .recruit > p {
  text-align: center;
  margin-bottom: 38px;
}

@media (max-width: 768px) {
  main.home .recruit {
    padding: 21px 5% 16px;
    margin-bottom: 18px;
  }
  main.home .recruit h3 {
    margin-bottom: 17px;
  }
  main.home .recruit > p {
    text-align: left;
    margin-bottom: 20px;
  }
}

main.home .recruit ul {
  width: 880px;
  max-width: 90%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  main.home .recruit ul {
    max-width: 100%;
  }
}

main.home .recruit ul li {
  background: #fff;
  margin-bottom: 20px;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.07);
          box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.07);
  border-radius: 8px;
}

main.home .recruit ul li .ac-trigger {
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 2.4rem;
  text-align: center;
  padding: 39px 10px 40px;
  cursor: pointer;
  position: relative;
}

main.home .recruit ul li .ac-trigger:before, main.home .recruit ul li .ac-trigger:after {
  display: block;
  content: "";
  position: absolute;
  right: 48px;
  top: 52px;
  width: 18px;
  height: 4px;
  border-radius: 2px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: #132d52;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

main.home .recruit ul li .ac-trigger:after {
  right: 37px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

main.home .recruit ul li .ac-trigger.active:before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

main.home .recruit ul li .ac-trigger.active:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media (max-width: 768px) {
  main.home .recruit ul li {
    border-radius: 4px;
  }
  main.home .recruit ul li .ac-trigger {
    font-size: 1.4rem;
    text-align: left;
    padding: 15px 40px 12px 19px;
  }
  main.home .recruit ul li .ac-trigger:before, main.home .recruit ul li .ac-trigger:after {
    width: 9px;
    height: 2px;
    border-radius: 1px;
    right: 25px;
    top: 46%;
  }
  main.home .recruit ul li .ac-trigger:after {
    right: 20px;
  }
}

main.home .recruit ul li .ac-content {
  padding: 10px 0 42px;
}

main.home .recruit ul li .ac-content .inner {
  width: 460px;
  margin: 0 auto;
}

main.home .recruit ul li .ac-content .inner dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 13px;
}

main.home .recruit ul li .ac-content .inner dl dt,
main.home .recruit ul li .ac-content .inner dl dd {
  border-bottom: 1px solid #dfe5e9;
  padding: 15px 0 20px;
}

main.home .recruit ul li .ac-content .inner dl dt:first-of-type,
main.home .recruit ul li .ac-content .inner dl dd:first-of-type {
  padding-top: 0;
}

main.home .recruit ul li .ac-content .inner dl dt {
  font-weight: bold;
  width: 29%;
  padding-left: 10px;
  line-height: 2.4rem;
}

main.home .recruit ul li .ac-content .inner dl dd {
  width: 71%;
  line-height: 2.4rem;
}

main.home .recruit ul li .ac-content .inner p + p {
  margin-top: 10px;
}

main.home .recruit ul li .ac-content .inner p.or {
  color: #ff5b76;
}

@media (max-width: 768px) {
  main.home .recruit ul li .ac-content {
    padding: 10px 20px 20px;
  }
  main.home .recruit ul li .ac-content .inner {
    width: 100%;
  }
  main.home .recruit ul li .ac-content .inner dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  main.home .recruit ul li .ac-content .inner dl dt,
  main.home .recruit ul li .ac-content .inner dl dd {
    width: 100%;
    padding: 10px 5px 10px;
  }
  main.home .recruit ul li .ac-content .inner dl dt {
    border-bottom: none;
    padding-bottom: 0;
  }
}

main.home .news {
  margin-bottom: 80px;
}

main.home .news h3 {
  margin-bottom: 32px;
}

main.home .news ul {
  width: 960px;
  max-width: 100%;
  margin: 0 auto 19px;
}

main.home .news ul li {
  display: -ms-flexbox;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 0 15px;
}

main.home .news ul li:nth-of-type(even) {
  background: #f1ffeb;
}

main.home .news ul li time {
  font-weight: bold;
  line-height: 2.4rem;
  padding-left: 18px;
  width: 15%;
}

main.home .news ul li h4 {
  line-height: 2.4rem;
  color: #132d52;
  border-bottom: 1px solid transparent;
}

main.home .news ul li h4:hover {
  border-color: #132d52;
}

main.home .news .btn-arrow {
  background: #957749;
}

main.home .news .btn-arrow:before, main.home .news .btn-arrow:after {
  background: #fff;
}

main.home .news .btn-arrow:hover {
  background: #ff5b76;
}

main.home .news .btn-arrow:hover:before, main.home .news .btn-arrow:hover:after {
  right: 4%;
}

@media (max-width: 768px) {
  main.home .news {
    margin-bottom: 33px;
  }
  main.home .news h3 {
    margin-bottom: 8px;
  }
  main.home .news ul {
    max-width: 90%;
  }
  main.home .news ul li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 7px 9px 7px 14px;
  }
  main.home .news ul li time {
    padding-left: 0;
    width: 100%;
    line-height: normal;
  }
}

main.home .inquiry {
  background: url(../img/contact-bg.png) center center/cover no-repeat;
  padding: 69px 0 80px;
  position: relative;
}

main.home .inquiry:before, main.home .inquiry:after {
  display: block;
  content: "";
  position: absolute;
}

main.home .inquiry:before {
  background: url(../img/contact2.png) center center/contain no-repeat;
  right: 0px;
  top: -120px;
  width: 40%;
  padding-bottom: 22%;
}

main.home .inquiry:after {
  background: url(../img/contact1.png) center center/contain no-repeat;
  left: 60px;
  bottom: -100px;
  width: 20%;
  padding-bottom: 27%;
}

main.home .inquiry h3 {
  color: #111;
  margin-bottom: 45px;
}

main.home .inquiry .form-wrap {
  background: #fff;
  border-radius: 8px;
  width: 850px;
  max-width: 100%;
  margin: 0 auto;
  padding: 40px 86px 40px;
  position: relative;
  z-index: 200;
}

main.home .inquiry a {
  color: #b55736;
}

@media (max-width: 768px) {
  main.home .inquiry {
    padding: 21px 0 27px;
  }
  main.home .inquiry:before, main.home .inquiry:after {
    display: none;
  }
  main.home .inquiry h3 {
    margin-bottom: 28px;
  }
  main.home .inquiry .form-wrap {
    width: 90%;
    border-radius: 4px;
    padding: 20px 20px 32px;
  }
}

footer {
  padding: 30px 0;
}

footer .copyright {
  font-size: 1.2rem;
  line-height: 2.4rem;
  text-align: center;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  footer {
    padding: 26px 0;
  }
  footer .copyright {
    font-size: 1rem;
    line-height: 1.2rem;
    letter-spacing: normal;
  }
}

.section-enTtl {
  color: #87614b;
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.service-img {
  width: 90%;
}

.inner {
  max-width: 90%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .inner {
    max-width: 100%;
  }
}

.under-ttl {
  background: #b7a170;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, #b7a170 0%, #f3e1d7 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#51c2e3', endColorstr='#4bcba6',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
  height: 176px;
  text-align: center;
  padding-top: 41px;
}

.under-ttl h2 {
  color: #fff;
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 2px;
}

.under-ttl h2 span {
  display: block;
  margin-bottom: 11px;
}

@media (max-width: 768px) {
  .under-ttl {
    height: 112px;
    padding-top: 24px;
  }
  .under-ttl h2 {
    font-size: 2.4rem;
  }
  .under-ttl h2 span {
    margin-bottom: 5px;
  }
  .under-ttl h2 span img {
    height: 10px;
  }
}

.breadcrunb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 23px auto 0;
  width: 1280px;
  max-width: 100%;
}

.breadcrunb ul li {
  font-size: 1.2rem;
  color: #132d52;
}

.breadcrunb ul li + li:before {
  content: ">";
  margin: 0 5px;
}

.breadcrunb ul li a {
  color: #b55736;
  padding-bottom: 4px;
  border-bottom: 1px solid #b55736;
}

.breadcrunb ul li a:hover {
  border-bottom: none;
}

main.news {
  margin: 45px 0 30px;
}

main.news .news-list {
  width: 960px;
  max-width: 100%;
  margin: 0 auto 38px;
}

main.news .news-list li {
  display: -ms-flexbox;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 0 15px;
}

main.news .news-list li:nth-of-type(even) {
  background: #f1ffeb;
}

main.news .news-list li time {
  font-weight: bold;
  line-height: 2.4rem;
  padding-left: 18px;
  width: 15%;
}

main.news .news-list li h4 {
  line-height: 2.4rem;
  color: #132d52;
  border-bottom: 1px solid transparent;
}

main.news .news-list li h4:hover {
  border-color: #132d52;
}

@media (max-width: 768px) {
  main.news {
    margin: 18px 0 18px;
  }
  main.news .news-list {
    max-width: 90%;
    margin-bottom: 30px;
  }
  main.news .news-list li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 7px 9px 7px 14px;
  }
  main.news .news-list li time {
    padding-left: 0;
    width: 100%;
    line-height: normal;
  }
}

main.news .pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main.news .pagination ul li {
  text-align: center;
  margin: 0 10px;
}

main.news .pagination ul li span,
main.news .pagination ul li a {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  font-size: 1.4rem;
}

main.news .pagination ul li span {
  background: #4bcba6;
  color: #fff;
}

main.news .pagination ul li a {
  background: #edf0f2;
  color: #000;
}

main.news .pagination ul li a:hover {
  background: #4bcba6;
  color: #fff;
}

@media (max-width: 768px) {
  main.news .pagination ul li {
    margin: 0 7px;
  }
}

main.news-single {
  margin: 41px 0 61px;
}

main.news-single .content {
  width: 800px;
}

main.news-single .content h4 {
  font-weight: bold;
  font-size: 3.2rem;
  line-height: 4rem;
  margin-bottom: 7px;
}

main.news-single .content time {
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 2.4rem;
  display: block;
  margin-bottom: 17px;
}

main.news-single .content .img-wrap {
  text-align: center;
  margin-bottom: 18px;
}

main.news-single .content .img-wrap img {
  max-width: 100%;
  max-height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 768px) {
  main.news-single {
    margin: 17px 0 15px;
  }
  main.news-single .content {
    width: 90%;
  }
  main.news-single .content h4 {
    font-size: 1.6rem;
    line-height: 2.4rem;
    margin-bottom: 0;
  }
  main.news-single .content time {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  main.news-single .content .img-wrap {
    margin-bottom: 14px;
  }
  main.news-single .content .img-wrap img {
    max-height: 188px;
  }
}

main.inquiry {
  margin: 42px 0 24px;
}

main.inquiry .content {
  width: 850px;
}

main.inquiry .content > p {
  text-align: center;
  margin-bottom: 50px;
}

main.inquiry .content .form-wrap {
  background: #f1ffeb;
  border-radius: 8px;
  padding: 54px 0 60px;
}

main.inquiry .content .form-wrap span.error {
  display: inline;
}

main.inquiry .content .form-wrap dl {
  width: 674px;
  margin: 0 auto;
}

main.inquiry .content .form-wrap dl dt, main.inquiry .content .form-wrap dl dd {
  padding: 0;
  margin-bottom: 32px;
  line-height: 2.4rem;
}

main.inquiry .content .form-wrap .consent-wrap {
  margin-bottom: 46px;
}

main.inquiry .content .form-wrap .consent-wrap a {
  color: #4bcba6;
}

main.inquiry .content .thanks {
  text-align: center;
}

main.inquiry .content .to-top {
  background: #4bcba6;
  margin-top: 40px;
}

main.inquiry .content .to-top:before, main.inquiry .content .to-top:after {
  background: #fff;
}

@media (max-width: 768px) {
  main.inquiry {
    margin: 17px 0 9px;
  }
  main.inquiry .content {
    width: 90%;
  }
  main.inquiry .content > p {
    text-align: left;
    margin-bottom: 18px;
  }
  main.inquiry .content .form-wrap {
    border-radius: 4px;
    padding: 17px 0 34px;
  }
  main.inquiry .content .form-wrap dl {
    width: 90%;
    margin-bottom: 10px;
  }
  main.inquiry .content .form-wrap dl dt {
    margin-bottom: 4px;
  }
  main.inquiry .content .form-wrap dl dd {
    margin-bottom: 14px;
  }
  main.inquiry .content .form-wrap .consent-wrap {
    text-align: left;
    margin-bottom: 26px;
  }
  main.inquiry .content .thanks {
    text-align: left;
  }
}

main.pp {
  margin: 60px 0 100px;
}

main.pp .content {
  width: 960px;
}

main.pp .content > p {
  font-size: 1.8rem;
  margin-bottom: 100px;
}

main.pp .content dl {
  line-height: 2.8rem;
}

main.pp .content dl dt {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

main.pp .content dl dd {
  margin-bottom: 30px;
}

main.pp .content dl dd p {
  margin-bottom: 10px;
}

main.pp .content dl dd ul {
  list-style: outside decimal;
  margin-left: 2rem;
}

main.pp .content dl dd ul li {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  main.pp .content {
    width: 90%;
  }
  main.pp .content > p {
    font-size: 1.4rem;
    margin-bottom: 60px;
  }
  main.pp .content dl {
    line-height: 2.4rem;
  }
  main.pp .content dl dt {
    font-size: 1.4rem;
  }
}

header h1 a img {
    width: 160px;
}
