@charset "UTF-8";
/* CSS Document */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

#container {
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.4em;
  line-height: 1.7;
  color: #202020;
  min-width: 1200px;
  position: relative;
  overflow-x: hidden;
}

@media screen and (max-width: 768px) {
  #container {
    font-size: 1.3rem;
    min-width: 320px;
  }
}

a {
  text-decoration: none;
  word-break: break-word;
}

a[href^="tel:"] {
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

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

::selection {
  background-color: #caaf33;
  color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 1em;
  margin: 0;
}

address {
  font-style: normal;
}

small {
  font-size: 100%;
}

iframe {
  border: none;
  vertical-align: bottom;
}

input, select, textarea {
  font-size: 16px !important;
  vertical-align: middle;
}

button {
  cursor: pointer;
}

ol, ul {
  list-style-type: none;
}

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

table {
  border-collapse: collapse;
  width: 100%;
}

table th {
  text-align: left;
}

.ophv {
  -webkit-transition: .3s;
  transition: .3s;
}

.ophv:hover {
  opacity: .6;
  text-decoration: none;
}

.pc {
  display: block;
}

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

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

/*----------------------------------------------------
 ヘッダー
----------------------------------------------------*/
header {
  background-color: #101010;
  color: #f5f5f5;
  /*h1 {
		font-size: 12px;
		font-weight: normal;
		text-align: right;
		@media screen and (max-width: 768px) {
			display: none;
		}
	}*/
}

header .inner {
  max-width: 1800px;
  min-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 10px 4.16% 20px;
}

@media screen and (max-width: 768px) {
  header .inner {
    min-width: auto;
    padding: 0;
  }
}

header .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media screen and (max-width: 768px) {
  header .nav {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (max-width: 768px) {
  header .logo {
    width: 16%;
    width: 192px;
    padding-left: 10px;
  }
}

header .btn_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header .access {
  display: none;
  width: 16%;
  width: 60px;
}

@media screen and (max-width: 768px) {
  header .access {
    display: block;
  }
}

header .hmenu {
  display: none;
  width: 16%;
  width: 60px;
}

@media screen and (max-width: 768px) {
  header .hmenu {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  header .gnav {
    display: none;
  }
}

header .gnav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header .gnav ul li {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-left: 60px;
  position: relative;
}

header .gnav ul li a {
  display: block;
  color: #f5f5f5;
  -webkit-transition: .3s;
  transition: .3s;
}

header .gnav ul li a span {
  display: block;
  font-size: 10px;
  font-weight: normal;
  color: #717171;
  -webkit-transition: .3s;
  transition: .3s;
}

header .gnav ul li a:hover {
  color: #caaf33;
}

header .gnav ul li a:hover span {
  color: #caaf33;
}

header .gnav ul .drop {
  display: none;
  padding-top: 20px;
  position: absolute;
  z-index: 100;
  left: 0;
}

header .gnav ul .drop ul {
  display: block;
  background-color: #303030;
  width: 230px;
}

header .gnav ul .drop ul li {
  font-size: 14px;
  font-weight: normal;
  text-align: left;
  border-bottom: 1px solid #505050;
  margin: 0;
}

header .gnav ul .drop ul li a {
  padding: 12px 20px;
}

header .gnav ul .drop ul li a::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  margin-right: 10px;
  border-style: solid;
  border-width: 3px 0 3px 5.2px;
  border-color: transparent transparent transparent #f5f5f5;
}

header .gnav_sp {
  display: none;
  width: 100%;
  background-color: #313131;
  position: absolute;
  z-index: 100;
  left: 0;
}

header .gnav_sp ul {
  padding: 0 10px;
}

header .gnav_sp ul li {
  font-size: 13px;
  border-bottom: 1px solid #909090;
}

header .gnav_sp ul li:last-child {
  border: none;
}

header .gnav_sp ul li a {
  display: block;
  color: #d0d0d0;
  padding: 14px 10px;
}

header .gnav_sp ul li a::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  margin-right: 10px;
  border-style: solid;
  border-width: 3px 0 3px 5.2px;
  border-color: transparent transparent transparent #d0d0d0;
}

header .gnav_sp ul li a:hover {
  color: #caaf33;
}

#header_fix {
  width: 100%;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
}

/*----------------------------------------------------
 フッター
----------------------------------------------------*/
footer {
  background-color: #101010;
  color: #f5f5f5;
}

footer .inner {
  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;
  max-width: 1800px;
  min-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 50px 4.16% 60px;
  position: relative;
}

@media screen and (max-width: 768px) {
  footer .inner {
    display: block;
    min-width: auto;
    padding: 40px 10px 10px;
  }
}

footer .logo {
  margin-bottom: 10px;
}

footer address {
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  footer address {
    text-align: center;
  }
}

footer .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  footer .nav {
    display: none;
  }
}

footer .nav ul {
  margin-left: 60px;
}

footer .nav ul li a {
  display: block;
  font-size: 14px;
  line-height: 2;
  color: #f5f5f5;
  -webkit-transition: .3s;
  transition: .3s;
}

footer .nav ul li a::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  margin-right: 10px;
  border-style: solid;
  border-width: 3px 0 3px 5.2px;
  border-color: transparent transparent transparent #f5f5f5;
}

footer .nav ul li a:hover {
  color: #caaf33;
}

footer .nav ul ul {
  margin-left: 20px;
}

footer .nav_sp {
  display: none;
  margin: 30px 0;
}

@media screen and (max-width: 768px) {
  footer .nav_sp {
    display: block;
  }
}

footer .nav_sp ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

footer .nav_sp ul li {
  margin-bottom: 10px;
}

footer .nav_sp ul li::after {
  content: "|";
}

footer .nav_sp ul li:last-child::after {
  display: none;
}

footer .nav_sp a {
  color: #f5f5f5;
  padding: 0 15px;
}

footer .copyright {
  font-size: 11px;
  position: absolute;
  bottom: 40px;
  left: 4.16%;
}

@media screen and (max-width: 768px) {
  footer .copyright {
    text-align: center;
    position: static;
  }
}

#foot_content .inner {
  max-width: 1800px;
  min-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 50px 4.16%;
}

@media screen and (max-width: 768px) {
  #foot_content .inner {
    min-width: auto;
    padding: 25px 10px;
  }
}

@media screen and (max-width: 768px) {
  #foot_content .content_list {
    display: none;
  }
}

#foot_content .content_list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#foot_content .content_list ul li {
  width: 23.3%;
}

#foot_content .content_list_sp {
  display: none;
}

@media screen and (max-width: 768px) {
  #foot_content .content_list_sp {
    display: block;
  }
}

#foot_content .content_list_sp ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#foot_content .content_list_sp ul li {
  text-align: center;
  width: 47.8%;
  margin-bottom: 15px;
}

#foot_content .content_list_sp ul li:last-child, #foot_content .content_list_sp ul li:nth-last-child(2) {
  margin: 0;
}

#foot_contact {
  background-color: #ece6cc;
}

#foot_contact .inner {
  max-width: 1800px;
  min-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 4.16%;
}

@media screen and (max-width: 768px) {
  #foot_contact .inner {
    min-width: auto;
    padding: 40px 10px;
  }
}

#foot_contact table tr {
  border-top: 1px solid #b7b192;
}

#foot_contact table tr:last-child {
  border-bottom: 1px solid #b7b192;
}

#foot_contact table th, #foot_contact table td {
  font-size: 18px;
  font-weight: bold;
  padding: 18px 20px;
}

@media screen and (max-width: 768px) {
  #foot_contact table th, #foot_contact table td {
    display: block;
    font-size: 13px;
    text-align: center;
    padding: 0;
  }
}

#foot_contact table th {
  position: relative;
}

@media screen and (max-width: 768px) {
  #foot_contact table th {
    padding-top: 20px;
  }
}

#foot_contact table th::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  margin-right: 10px;
  border-style: solid;
  border-width: 3px 0 3px 5.2px;
  border-color: transparent transparent transparent #101010;
}

@media screen and (max-width: 768px) {
  #foot_contact table th::before {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  #foot_contact table td:last-of-type {
    padding-bottom: 20px;
  }
}

#foot_contact table a {
  text-decoration: underline;
  color: #040c72;
}

#foot_contact .btn {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  #foot_contact .btn {
    margin-top: 25px;
  }
}

#foot_contact .btn a {
  display: block;
  border: 1px solid #040c72;
  color: #040c72;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  max-width: 500px;
  width: 100%;
  height: 75px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
}

@media screen and (max-width: 768px) {
  #foot_contact .btn a {
    font-size: 14px;
    max-width: 300px;
    height: 55px;
    padding: 14px;
  }
}

#foot_contact .btn a::after {
  content: '';
  background-color: #040c72;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.2, 1, 0.2, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.2, 1, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.2, 1, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.2, 1, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.2, 1, 0.2, 1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

#foot_contact .btn a span {
  position: relative;
  z-index: 1;
}

#foot_contact .btn a span::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-image: url(../img/common/ico_mail.png);
  background-size: cover;
  width: 28px;
  height: 18px;
  margin-right: 16px;
}

@media screen and (max-width: 768px) {
  #foot_contact .btn a span::before {
    width: 20px;
    height: 14px;
    margin-right: 12px;
  }
}

#foot_contact .btn a:hover {
  color: #fff;
}

#foot_contact .btn a:hover span::before {
  background-image: url(../img/common/ico_mail_white.png);
}

#foot_contact .btn a:hover::after {
  background-color: #040c72;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

#pagetop {
  position: fixed;
  right: 50px;
  bottom: 50px;
}

@media screen and (max-width: 768px) {
  #pagetop {
    right: 10px;
    bottom: 25px;
  }
}

/*----------------------------------------------------
 トップ
----------------------------------------------------*/
.p_top #slider figure, .p_top #slider_sp figure {
  text-align: center;
  outline: none;
}

.p_top #slider figure img, .p_top #slider_sp figure img {
  display: inline;
}

@media screen and (max-width: 768px) {
  .p_top #slider {
    display: none;
  }
}

.p_top #slider_sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .p_top #slider_sp {
    display: block;
  }
}

.p_top .about .inner {
  padding-top: 100px;
}

@media screen and (max-width: 768px) {
  .p_top .about .inner {
    padding-top: 50px;
  }
}

.p_top .about .secttl {
  font-size: 48px;
  text-align: center;
  color: #040c72;
  margin-bottom: 36px;
  padding-bottom: 20px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .p_top .about .secttl {
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 10px;
  }
}

.p_top .about .secttl span {
  display: block;
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .p_top .about .secttl span {
    font-size: 13px;
  }
}

.p_top .about .secttl::after {
  content: "";
  display: block;
  background-color: #caaf33;
  width: 90px;
  height: 5px;
  margin: 0 auto;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}

@media screen and (max-width: 768px) {
  .p_top .about .secttl::after {
    width: 55px;
    height: 3px;
  }
}

.p_top .about .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #202020;
  color: #fff;
  height: 550px;
}

@media screen and (max-width: 768px) {
  .p_top .about .flex {
    display: block;
    height: auto;
  }
}

.p_top .about .flex .txtbox, .p_top .about .flex figure {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 50%;
}

@media screen and (max-width: 768px) {
  .p_top .about .flex .txtbox, .p_top .about .flex figure {
    width: auto;
  }
}

.p_top .about .flex .txtbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-image: url(../img/top/about01.jpg);
  padding: 120px 0;
}

@media screen and (max-width: 768px) {
  .p_top .about .flex .txtbox {
    font-size: 13px;
    padding: 40px 20px;
  }
}

.p_top .about .flex .txtbox .txt {
  width: 75%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .p_top .about .flex .txtbox .txt {
    width: auto;
  }
}

.p_top .about .flex .txtbox p {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .p_top .about .flex .txtbox p {
    font-size: 13px;
  }
}

.p_top .about .flex .txtbox .btn {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .p_top .about .flex .txtbox .btn {
    margin-top: 25px;
  }
}

.p_top .about .flex .txtbox .btn a {
  display: block;
  border: 1px solid #fff;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  max-width: 380px;
  width: 100%;
  height: 70px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .p_top .about .flex .txtbox .btn a {
    font-size: 14px;
    max-width: 285px;
    height: 50px;
    padding: 10px;
  }
}

.p_top .about .flex .txtbox .btn a::after {
  content: '';
  background-color: #fff;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.2, 1, 0.2, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.2, 1, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.2, 1, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.2, 1, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.2, 1, 0.2, 1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

.p_top .about .flex .txtbox .btn a span {
  position: relative;
  z-index: 1;
}

.p_top .about .flex .txtbox .btn a:hover {
  color: #101010;
}

.p_top .about .flex .txtbox .btn a:hover::after {
  background-color: #fff;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.p_top .about .flex figure {
  background-image: url(../img/top/about02.jpg);
}

@media screen and (max-width: 768px) {
  .p_top .about .flex figure {
    height: 275px;
  }
}

.p_top .info .inner {
  max-width: 1800px;
  min-width: 1200px;
  margin: 0 auto;
  padding: 100px 4.16%;
}

@media screen and (max-width: 768px) {
  .p_top .info .inner {
    min-width: auto;
    padding: 50px 10px;
  }
}

.p_top .info ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .p_top .info ul {
    display: block;
  }
}

.p_top .info ul li {
  width: 48.3%;
}

@media screen and (max-width: 768px) {
  .p_top .info ul li {
    width: auto;
    margin-bottom: 25px;
  }
}

@media screen and (max-width: 768px) {
  .p_top .info ul li:last-child {
    margin: 0;
  }
}

.p_top .info .box {
  background-color: #ece6cc;
  padding: 30px;
}

@media screen and (max-width: 768px) {
  .p_top .info .box {
    padding: 20px 15px;
  }
}

.p_top .info .box .secttl {
  font-size: 34px;
  line-height: 1.4;
  color: #040c72;
  margin-bottom: 25px;
  padding-left: 33px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .p_top .info .box .secttl {
    font-size: 22px;
    margin-bottom: 15px;
    padding-left: 15px;
  }
}

.p_top .info .box .secttl span {
  display: block;
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .p_top .info .box .secttl span {
    font-size: 13px;
  }
}

.p_top .info .box .secttl::before {
  content: "";
  display: block;
  background-color: #caaf33;
  width: 5px;
  height: 65px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

@media screen and (max-width: 768px) {
  .p_top .info .box .secttl::before {
    width: 4px;
    height: 45px;
  }
}

.p_top .info .box .article_list {
  background-color: #fff;
  height: 315px;
  padding: 0 25px;
  overflow-y: scroll;
}

@media screen and (max-width: 768px) {
  .p_top .info .box .article_list {
    height: 285px;
    padding: 0 15px;
  }
}

.p_top .info .box .article_list article {
  border-bottom: 1px solid #c0c0c0;
  padding: 16px 30px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .p_top .info .box .article_list article {
    padding: 15px 35px 15px 20px;
  }
}

.p_top .info .box .article_list article::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-right: 10px;
  border-style: solid;
  border-width: 3px 0 3px 5.2px;
  border-color: transparent transparent transparent #202020;
  position: absolute;
  top: 26px;
  left: 16px;
}

@media screen and (max-width: 768px) {
  .p_top .info .box .article_list article::before {
    top: 22px;
    left: 7px;
  }
}

.p_top .info .box .article_list article .date {
  font-weight: bold;
}

.p_top .info .box .article_list article .ttl {
  font-weight: normal;
}

.p_top .info .box .article_list article a {
  text-decoration: underline;
  color: #040c72;
}

.p_top .employment {
  background-color: #101010;
}

.p_top .employment .inner {
  max-width: 1800px;
  min-width: 1200px;
  margin: 0 auto;
  padding: 100px 4.16%;
}

@media screen and (max-width: 768px) {
  .p_top .employment .inner {
    min-width: auto;
    padding: 50px 10px;
  }
}

.p_top .employment .secttl {
  font-size: 48px;
  text-align: center;
  color: #fff;
  margin-bottom: 36px;
  padding-bottom: 20px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .p_top .employment .secttl {
    font-size: 17px;
    margin-bottom: 20px;
  }
}

.p_top .employment .secttl span {
  display: block;
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .p_top .employment .secttl span {
    font-size: 13px;
  }
}

.p_top .employment .secttl::after {
  content: "";
  display: block;
  background-color: #caaf33;
  width: 90px;
  height: 5px;
  margin: 0 auto;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}

@media screen and (max-width: 768px) {
  .p_top .employment .secttl::after {
    width: 55px;
    height: 3px;
  }
}

.p_top .employment ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .p_top .employment ul {
    display: block;
  }
}

.p_top .employment ul li {
  width: 48.3%;
  height: 450px;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .p_top .employment ul li {
    width: auto;
    height: 275px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .p_top .employment ul li:last-child {
    margin: 0;
  }
}

.p_top .employment ul li a {
  display: block;
  width: 100%;
  height: 100%;
}

.p_top .employment ul li figure {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}

.p_top .employment ul li .txtbox {
  -webkit-transform: skewX(-6deg);
          transform: skewX(-6deg);
  height: 100%;
  padding: 56px 60px 30px 40px;
  position: absolute;
  top: 0;
  right: -30px;
}

@media screen and (max-width: 768px) {
  .p_top .employment ul li .txtbox {
    padding: 35px 60px 15px 20px;
  }
}

.p_top .employment ul li .txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-transform: skewX(6deg);
          transform: skewX(6deg);
}

.p_top .employment ul li .ttl {
  font-size: 36px;
  line-height: 1.4;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color: #fff;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .p_top .employment ul li .ttl {
    font-size: 22px;
  }
}

.p_top .employment ul li .btn {
  border: 1px solid #fff;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  max-width: 180px;
  width: 100%;
  height: 45px;
  margin-top: auto;
  padding: 10px;
}

@media screen and (max-width: 768px) {
  .p_top .employment ul li .btn {
    font-size: 12px;
    width: auto;
    height: auto;
    padding: 4px;
  }
}

.p_top .employment ul li:first-child figure {
  background-image: url(../img/top/employment01.jpg);
}

.p_top .employment ul li:first-child .txtbox {
  background-color: #056abf;
  background-color: rgba(5, 106, 191, 0.8);
}

.p_top .employment ul li:last-child figure {
  background-image: url(../img/top/employment02.jpg);
}

.p_top .employment ul li:last-child .txtbox {
  background-color: #040c72;
  background-color: rgba(4, 12, 114, 0.8);
}

.p_top .sns .inner {
  max-width: 1800px;
  min-width: 1200px;
  margin: 0 auto;
  padding: 100px 4.16%;
}

@media screen and (max-width: 768px) {
  .p_top .sns .inner {
    min-width: auto;
    padding: 50px 10px;
  }
}

.p_top .sns .secttl {
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 48px;
  color: #040c72;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .p_top .sns .secttl {
    font-size: 22px;
    margin-bottom: 15px;
  }
}

.p_top .sns .secttl::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-size: cover;
  width: 50px;
  height: 50px;
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  .p_top .sns .secttl::before {
    width: 25px;
    height: 25px;
    margin-right: 10px;
  }
}

.p_top .sns ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .p_top .sns ul {
    display: block;
  }
}

.p_top .sns ul li {
  width: 48.3%;
}

@media screen and (max-width: 768px) {
  .p_top .sns ul li {
    width: auto;
    margin-bottom: 35px;
  }
}

.p_top .sns ul li:first-child .secttl::before {
  background-image: url(../img/top/ico_instagram.png);
}

@media screen and (max-width: 768px) {
  .p_top .sns ul li:last-child {
    margin: 0;
  }
}

.p_top .sns ul li:last-child .secttl::before {
  background-image: url(../img/top/ico_twitter.png);
}

.p_top .sns ul li iframe {
  width: 100% !important;
  height: 48.3vw !important;
  min-height: 580px !important;
  max-height: 860px !important;
}

@media screen and (max-width: 768px) {
  .p_top .sns ul li iframe {
    min-height: auto !important;
    height: 355px !important;
  }
}

.p_top .sale {
  background-color: #101010;
}

.p_top .sale .inner {
  max-width: 1800px;
  min-width: 1200px;
  margin: 0 auto;
  padding: 100px 4.16%;
}

@media screen and (max-width: 768px) {
  .p_top .sale .inner {
    min-width: auto;
    padding: 50px 10px;
  }
}

.p_top .sale .secttl {
  font-size: 48px;
  text-align: center;
  color: #fff;
  margin-bottom: 36px;
  padding-bottom: 20px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .p_top .sale .secttl {
    font-size: 22px;
    margin-bottom: 20px;
  }
}

.p_top .sale .secttl span {
  display: block;
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .p_top .sale .secttl span {
    font-size: 13px;
  }
}

.p_top .sale .secttl::after {
  content: "";
  display: block;
  background-color: #caaf33;
  width: 90px;
  height: 5px;
  margin: 0 auto;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}

@media screen and (max-width: 768px) {
  .p_top .sale .secttl::after {
    width: 55px;
    height: 3px;
  }
}

.p_top .sale .box {
  background-color: #f4f5f8;
  padding: 40px;
}

@media screen and (max-width: 768px) {
  .p_top .sale .box {
    padding: 25px 15px;
  }
}

.p_top .sale .box .ttl {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  color: #040c72;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .p_top .sale .box .ttl {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
}

.p_top .sale .box .tbl_scroll {
  height: 240px;
  overflow-y: scroll;
  white-space: nowrap;
}

.p_top .sale .box table thead th {
  background-color: #101010;
  color: #fff;
  text-align: center;
  padding: 18px 40px;
}

@media screen and (max-width: 768px) {
  .p_top .sale .box table thead {
    display: none;
  }
}

.p_top .sale .box table tbody tr {
  border-bottom: 1px solid #c0c0c0;
}

.p_top .sale .box table tbody th, .p_top .sale .box table tbody td {
  font-weight: bold;
  padding: 18px 40px;
}

@media screen and (max-width: 768px) {
  .p_top .sale .box table tbody th, .p_top .sale .box table tbody td {
    padding: 10px 0;
  }
}

@media screen and (max-width: 768px) {
  .p_top .sale .box table tbody th {
    display: block;
    font-weight: bold;
    padding-bottom: 0;
  }
}

@media screen and (max-width: 768px) {
  .p_top .sale .box table tbody td {
    display: inline-block;
    vertical-align: top;
    font-weight: normal;
    padding-top: 0;
  }
}

@media screen and (max-width: 768px) {
  .p_top .sale .box table tbody td:first-of-type {
    width: 38%;
  }
}

@media screen and (max-width: 768px) {
  .p_top .sale .box table tbody td:last-of-type {
    width: 62%;
  }
}

.p_top .sale .btn {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .p_top .sale .btn {
    margin-top: 25px;
  }
}

.p_top .sale .btn a {
  display: block;
  background-color: #101010;
  border: 1px solid #fff;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  max-width: 380px;
  width: 100%;
  height: 70px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .p_top .sale .btn a {
    font-size: 14px;
    max-width: 300px;
    height: 55px;
    padding: 14px;
  }
}

.p_top .sale .btn a::after {
  content: '';
  background-color: #fff;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.2, 1, 0.2, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.2, 1, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.2, 1, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.2, 1, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.2, 1, 0.2, 1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

.p_top .sale .btn a span {
  position: relative;
  z-index: 1;
}

.p_top .sale .btn a:hover {
  color: #101010;
}

.p_top .sale .btn a:hover::after {
  background-color: #fff;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

/*----------------------------------------------------
 下層共通
----------------------------------------------------*/
.p_low #pagehead {
  background-color: #ece6cc;
  height: 200px;
  padding-top: 70px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .p_low #pagehead {
    height: 100px;
    margin-bottom: 40px;
    padding-top: 25px;
  }
}

.p_low #pagehead::after {
  content: "";
  display: block;
  background-color: #caaf33;
  width: 90px;
  height: 5px;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

@media screen and (max-width: 768px) {
  .p_low #pagehead::after {
    width: 55px;
    height: 3px;
  }
}

.p_low #pagehead .ttl {
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 48px;
  line-height: 1.4;
  text-align: center;
  color: #040c72;
}

@media screen and (max-width: 768px) {
  .p_low #pagehead .ttl {
    font-size: 26px;
  }
}

.p_low #pagehead .ttl span {
  display: block;
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .p_low #pagehead .ttl span {
    font-size: 13px;
  }
}

.p_low #pagenav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 1200px;
  margin: 0 auto;
  padding: 10px 0 80px;
}

@media screen and (max-width: 768px) {
  .p_low #pagenav {
    display: none;
  }
}

.p_low #pagenav .lnav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
}

.p_low #pagenav .lnav ul li {
  margin-right: 30px;
}

.p_low #pagenav .lnav ul li::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  margin-right: 10px;
  border-style: solid;
  border-width: 3px 0 3px 5.2px;
  border-color: transparent transparent transparent #202020;
}

.p_low #pagenav .lnav ul li a {
  color: #202020;
  -webkit-transition: .3s;
  transition: .3s;
}

.p_low #pagenav .lnav ul li a:hover {
  color: #caaf33;
}

.p_low #pagenav .breadcrumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
}

.p_low #pagenav .breadcrumb ul li::after {
  content: ">";
  margin: 0 6px;
}

.p_low #pagenav .breadcrumb ul li a {
  color: #202020;
  -webkit-transition: .3s;
  transition: .3s;
}

.p_low #pagenav .breadcrumb ul li a:hover {
  color: #caaf33;
}

.p_low #pagenav .breadcrumb ul li:last-child::after {
  display: none;
}

.p_low .section:nth-child(even) {
  background-color: #f6f6f6;
}

.p_low .section .inner {
  width: 1200px;
  margin: 0 auto;
  padding: 100px 0;
}

@media screen and (max-width: 768px) {
  .p_low .section .inner {
    width: auto;
    padding: 40px 10px;
  }
}

.p_low .section:first-child .inner {
  padding-top: 0;
}

.p_low .secttl {
  font-size: 28px;
  border-bottom: 1px solid #c0c0c0;
  color: #040c72;
  margin-bottom: 26px;
  padding: 30px 0 20px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .p_low .secttl {
    font-size: 17px;
    margin-bottom: 20px;
    padding: 15px 0;
  }
}

.p_low .secttl::before {
  content: "";
  display: block;
  background-color: #040c72;
  width: 80px;
  height: 4px;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 768px) {
  .p_low .secttl::before {
    width: 48px;
    height: 3px;
  }
}

.p_low .secttl span {
  color: #202020;
}

.p_low .pagination {
  margin-top: 40px;
}

.p_low .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;
}

.p_low .pagination ul li {
  margin-right: 10px;
}

.p_low .pagination ul li:last-child {
  margin: 0;
}

.p_low .pagination ul li a, .p_low .pagination ul li span {
  display: block;
  border: 1px solid #101010;
  color: #101010;
  padding: 5px 11px;
}

.p_low .pagination ul li a {
  color: #101010;
  -webkit-transition: .3s;
  transition: .3s;
}

.p_low .pagination ul li span {
  background-color: #101010;
  color: #fff;
}

.p_low .pagination ul li:hover a {
  background-color: #101010;
  color: #fff;
}

/*----------------------------------------------------
 牧場紹介
----------------------------------------------------*/
.p_stables .section .cap {
  margin-bottom: 26px;
}

@media screen and (max-width: 768px) {
  .p_stables .section .cap {
    margin-bottom: 20px;
  }
}

.p_stables .section .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .p_stables .section .flex {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .p_stables .section .flex figure {
    text-align: center;
  }
}

.p_stables .section .flex .txt {
  width: 560px;
}

@media screen and (max-width: 768px) {
  .p_stables .section .flex .txt {
    width: auto;
  }
}

.p_stables .section table tr {
  border-top: 1px solid #c0c0c0;
}

.p_stables .section table tr:last-child {
  border-bottom: 1px solid #c0c0c0;
}

.p_stables .section table th, .p_stables .section table td {
  padding: 14px 20px;
}

@media screen and (max-width: 768px) {
  .p_stables .section table th, .p_stables .section table td {
    padding: 10px;
  }
}

.p_stables .section table th {
  width: 120px;
}

@media screen and (max-width: 768px) {
  .p_stables .section table th {
    width: 80px;
  }
}

.p_stables .section table a {
  text-decoration: underline;
  color: #040c72;
}

.p_stables .section .btn {
  margin-top: 20px;
}

.p_stables .section .btn a {
  display: block;
  background-color: #101010;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  max-width: 320px;
  width: 100%;
  height: 55px;
  margin: 0 auto;
  padding: 14px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .p_stables .section .btn a {
    font-size: 13px;
    max-width: 290px;
    height: 50px;
  }
}

.p_stables .section .btn a::after {
  content: '';
  background-color: #040c72;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.2, 1, 0.2, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.2, 1, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.2, 1, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.2, 1, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.2, 1, 0.2, 1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

.p_stables .section .btn a span {
  position: relative;
  z-index: 1;
}

.p_stables .section .btn a:hover::after {
  background-color: #040c72;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.p_stables .section .taiken {
  background-color: #caaf33;
  color: #fff;
  font-weight: bold;
  text-align: center;
  margin-top: 50px;
  padding: 50px;
}

@media screen and (max-width: 768px) {
  .p_stables .section .taiken {
    padding: 30px 20px;
  }
}

.p_stables .section .taiken .ttl {
  font-size: 36px;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .p_stables .section .taiken .ttl {
    font-size: 23px;
  }
}

.p_stables .section .taiken .cap {
  font-size: 1.8rem;
  margin-bottom: 26px;
}

@media screen and (max-width: 768px) {
  .p_stables .section .taiken .cap {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }
}

.p_stables .section .taiken .btn_list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 768px) {
  .p_stables .section .taiken .btn_list ul {
    display: block;
  }
}

.p_stables .section .taiken .btn_list ul li {
  max-width: 350px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .p_stables .section .taiken .btn_list ul li {
    max-width: 290px;
    margin: 0 auto;
  }
}

.p_stables .section .taiken .btn_list ul li a {
  display: block;
  background-color: #040c72;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  width: 100%;
  height: 65px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .p_stables .section .taiken .btn_list ul li a {
    font-size: 13px;
    height: 50px;
    padding: 14px;
  }
}

.p_stables .section .taiken .btn_list ul li a span::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

.p_stables .section .taiken .btn_list ul li a::after {
  content: '';
  background-color: #101010;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.2, 1, 0.2, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.2, 1, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.2, 1, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.2, 1, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.2, 1, 0.2, 1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

.p_stables .section .taiken .btn_list ul li a span {
  position: relative;
  z-index: 1;
}

.p_stables .section .taiken .btn_list ul li a:hover::after {
  background-color: #101010;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.p_stables .section .taiken .btn_list ul li:first-child {
  margin-right: 60px;
}

@media screen and (max-width: 768px) {
  .p_stables .section .taiken .btn_list ul li:first-child {
    margin: 0 auto 15px;
  }
}

.p_stables .section .taiken .btn_list ul li:first-child span::before {
  background-image: url(../img/stables/ico_memo.png);
  width: 16px;
  height: 19px;
}

.p_stables .section .taiken .btn_list ul li:last-child span::before {
  background-image: url(../img/common/ico_mail_white.png);
  background-size: cover;
  width: 20px;
  height: 13px;
}

/*----------------------------------------------------
 育成環境
----------------------------------------------------*/
.p_facilities .section .cap {
  margin-bottom: 26px;
}

@media screen and (max-width: 768px) {
  .p_facilities .section .cap {
    margin-bottom: 20px;
  }
}

.p_facilities .section .img_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .p_facilities .section .img_list {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p_facilities .section .img_list figure {
  width: 22.9%;
  margin: 0 33px 30px 0;
}

@media screen and (max-width: 768px) {
  .p_facilities .section .img_list figure {
    width: 47.8%;
    margin: 0 0 20px;
  }
}

.p_facilities .section .img_list figure:nth-child(4n) {
  margin-right: 0;
}

.p_facilities .section .img_list figure figcaption {
  text-align: center;
  margin-top: 10px;
}

.p_facilities .section .ttl {
  font-size: 2rem;
  font-weight: bold;
  color: #c1a522;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .p_facilities .section .ttl {
    font-size: 1.5rem;
  }
}

.p_facilities .section .kyokan {
  margin-bottom: 60px;
}

.p_facilities .section .kyokan .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .p_facilities .section .kyokan .flex {
    display: block;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 768px) {
  .p_facilities .section .kyokan figure {
    text-align: center;
  }
}

.p_facilities .section .kyokan .txtarea {
  width: 885px;
}

@media screen and (max-width: 768px) {
  .p_facilities .section .kyokan .txtarea {
    width: auto;
    margin-top: 15px;
  }
}

.p_facilities .section .kyokan .name {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .p_facilities .section .kyokan .name {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
}

.p_facilities .section .btn a {
  display: block;
  background-color: #101010;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  max-width: 380px;
  width: 100%;
  height: 65px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .p_facilities .section .btn a {
    font-size: 13px;
    max-width: 290px;
    height: 50px;
    padding: 14px;
  }
}

.p_facilities .section .btn a::after {
  content: '';
  background-color: #040c72;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.2, 1, 0.2, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.2, 1, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.2, 1, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.2, 1, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.2, 1, 0.2, 1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

.p_facilities .section .btn a span {
  position: relative;
  z-index: 1;
}

.p_facilities .section .btn a:hover::after {
  background-color: #040c72;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

/*----------------------------------------------------
 活躍馬紹介
----------------------------------------------------*/
.p_results .section .article_list {
  height: 280px;
  overflow-y: scroll;
}

@media screen and (max-width: 768px) {
  .p_results .section .article_list {
    height: 255px;
  }
}

.p_results .section .article_list article {
  border-bottom: 1px solid #c0c0c0;
  padding: 20px 30px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .p_results .section .article_list article {
    padding: 15px 35px 15px 20px;
  }
}

.p_results .section .article_list article:first-child {
  padding-top: 0;
}

.p_results .section .article_list article:first-child::before {
  top: 8px;
}

@media screen and (max-width: 768px) {
  .p_results .section .article_list article:first-child::before {
    top: 8px;
  }
}

.p_results .section .article_list article::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-right: 10px;
  border-style: solid;
  border-width: 3px 0 3px 5.2px;
  border-color: transparent transparent transparent #c1a522;
  position: absolute;
  top: 28px;
  left: 16px;
}

@media screen and (max-width: 768px) {
  .p_results .section .article_list article::before {
    top: 22px;
    left: 8px;
  }
}

.p_results .section .article_list article .date {
  font-weight: bold;
  color: #c1a522;
}

.p_results .section .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .p_results .section .flex {
    display: block;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 768px) {
  .p_results .section .flex figure {
    text-align: center;
  }
}

.p_results .section .flex .txt {
  width: 680px;
}

@media screen and (max-width: 768px) {
  .p_results .section .flex .txt {
    width: auto;
    margin-top: 15px;
  }
}

.p_results .section .flex .data {
  padding: 0 10px;
}

@media screen and (max-width: 768px) {
  .p_results .section .flex .data {
    padding: 0;
  }
}

.p_results .section .flex .name {
  font-size: 2.4rem;
  font-weight: bold;
  color: #040c72;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .p_results .section .flex .name {
    font-size: 1.7rem;
  }
}

.p_results .section .flex .box {
  background-color: #ece6cc;
  margin-top: 20px;
  padding: 20px 30px;
}

@media screen and (max-width: 768px) {
  .p_results .section .flex .box {
    margin-top: 15px;
    padding: 20px;
  }
}

.p_results .section .flex .box .ttl {
  font-size: 1.6rem;
  font-weight: bold;
  color: #040c72;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .p_results .section .flex .box .ttl {
    font-size: 1.5rem;
  }
}

.p_results .section .img_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .p_results .section .img_list {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 40px;
  }
}

.p_results .section .img_list .box {
  width: 22.5%;
  margin: 0 40px 40px 0;
}

@media screen and (max-width: 768px) {
  .p_results .section .img_list .box {
    width: 47.8%;
    margin: 0 0 20px;
  }
}

.p_results .section .img_list .box:nth-child(4n) {
  margin-right: 0;
}

.p_results .section .img_list .box .figcaption {
  margin-top: 10px;
}

.p_results .section .img_list .box .name {
  font-weight: bold;
  color: #040c72;
}

.p_results .section .img_list02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .p_results .section .img_list02 {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p_results .section .img_list02 figure {
  text-align: center;
  width: 17.9%;
  margin: 0 30px 40px 0;
}

@media screen and (max-width: 768px) {
  .p_results .section .img_list02 figure {
    width: 47.8%;
    margin: 0 0 20px;
  }
}

.p_results .section .img_list02 figure:nth-child(5n) {
  margin-right: 0;
}

.p_results .section .img_list02 figure figcaption {
  margin-top: 10px;
}

.p_results .section .tbl_scroll {
  overflow: auto;
  white-space: nowrap;
}

.p_results .section table thead th {
  background-color: #040c72;
  color: #fff;
  text-align: center;
  padding: 20px;
}

@media screen and (max-width: 768px) {
  .p_results .section table thead th {
    display: none;
  }
}

.p_results .section table tbody tr {
  border-bottom: 1px solid #c0c0c0;
}

.p_results .section table tbody th, .p_results .section table tbody td {
  font-size: 1.4rem;
  padding: 20px;
}

@media screen and (max-width: 768px) {
  .p_results .section table tbody th, .p_results .section table tbody td {
    font-size: 1.3rem;
    padding: 10px 0;
  }
}

@media screen and (max-width: 768px) {
  .p_results .section table tbody th {
    display: block;
    font-weight: bold;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .p_results .section table tbody td {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    vertical-align: top;
    padding-top: 0;
  }
}

@media screen and (max-width: 768px) {
  .p_results .section table tbody td:first-of-type {
    width: 38%;
  }
}

@media screen and (max-width: 768px) {
  .p_results .section table tbody td:last-of-type {
    width: 60%;
  }
}

/*----------------------------------------------------
 販売馬情報
----------------------------------------------------*/
.p_sale .section .ttl {
  font-size: 2rem;
  font-weight: bold;
  color: #c1a522;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .p_sale .section .ttl {
    font-size: 1.5rem;
  }
}

.p_sale .section .ttl span {
  color: #202020;
}

@media screen and (max-width: 768px) {
  .p_sale .section .ttl span {
    display: block;
  }
}

.p_sale .section .profile {
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .p_sale .section .profile {
    margin-bottom: 45px;
  }
}

.p_sale .section .profile:last-child {
  margin-bottom: 0;
}

.p_sale .section .profile .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .p_sale .section .profile .flex {
    display: block;
  }
}

.p_sale .section .profile .flex .txt {
  width: 650px;
}

@media screen and (max-width: 768px) {
  .p_sale .section .profile .flex .txt {
    width: auto;
  }
}

@media screen and (max-width: 768px) {
  .p_sale .section .profile .flex figure {
    text-align: center;
    margin-bottom: 20px;
  }
}

.p_sale .section .profile .flex table {
  margin-bottom: 20px;
}

.p_sale .section .profile .flex table th, .p_sale .section .profile .flex table td {
  font-size: 1.1rem;
  border: 1px solid #c0c0c0;
  padding: 4px 20px;
}

@media screen and (max-width: 768px) {
  .p_sale .section .profile .flex table th, .p_sale .section .profile .flex table td {
    padding: 4px;
  }
}

.p_sale .section .profile .flex table th {
  font-weight: normal;
}

.p_sale .section .profile .flex .thx {
  text-align: center;
  text-decoration: underline;
}

.p_sale .section .btn_list {
  margin-top: 20px;
}

.p_sale .section .btn_list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 768px) {
  .p_sale .section .btn_list ul {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p_sale .section .btn_list ul li {
  max-width: 240px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .p_sale .section .btn_list ul li {
    width: 47.8%;
    margin: 0 auto;
  }
}

.p_sale .section .btn_list ul li a {
  display: block;
  background-color: #101010;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  width: 100%;
  height: 50px;
  margin: 0 auto;
  padding: 14px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .p_sale .section .btn_list ul li a {
    font-size: 12px;
    height: 45px;
    padding: 10px;
  }
}

.p_sale .section .btn_list ul li a::after {
  content: '';
  background-color: #040c72;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.2, 1, 0.2, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.2, 1, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.2, 1, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.2, 1, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.2, 1, 0.2, 1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

.p_sale .section .btn_list ul li a span {
  position: relative;
  z-index: 1;
}

.p_sale .section .btn_list ul li a:hover::after {
  background-color: #040c72;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.p_sale .section .btn_list ul li.pdf_btn span::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  background-image: url(../img/sale/ico_pdf.png);
  background-size: cover;
  width: 17px;
  height: 18px;
}

@media screen and (max-width: 768px) {
  .p_sale .section .btn_list ul li.pdf_btn span::before {
    width: 14px;
    height: 15px;
    margin-right: 8px;
  }
}

.p_sale .section .btn_list ul li:nth-child(2) {
  margin-left: 40px;
}

@media screen and (max-width: 768px) {
  .p_sale .section .btn_list ul li:nth-child(2) {
    margin: 0 auto;
  }
}

.p_sale #section02 table thead th {
  background-color: #040c72;
  color: #fff;
  text-align: center;
  padding: 18px 40px;
}

@media screen and (max-width: 768px) {
  .p_sale #section02 table thead th {
    display: none;
  }
}

.p_sale #section02 table tbody tr {
  border-bottom: 1px solid #c0c0c0;
}

.p_sale #section02 table tbody th, .p_sale #section02 table tbody td {
  padding: 18px 40px;
}

@media screen and (max-width: 768px) {
  .p_sale #section02 table tbody th, .p_sale #section02 table tbody td {
    padding: 10px 0;
  }
}

.p_sale #section02 table tbody th {
  font-weight: normal;
}

@media screen and (max-width: 768px) {
  .p_sale #section02 table tbody th {
    display: block;
    font-weight: bold;
  }
}

@media screen and (max-width: 768px) {
  .p_sale #section02 table tbody td {
    display: inline-block;
    vertical-align: top;
    padding-top: 0;
  }
}

@media screen and (max-width: 768px) {
  .p_sale #section02 table tbody td:first-of-type {
    width: 38%;
  }
}

@media screen and (max-width: 768px) {
  .p_sale #section02 table tbody td:last-of-type {
    width: 62%;
  }
}

/*----------------------------------------------------
 会社案内
----------------------------------------------------*/
.p_company .section .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .p_company .section .flex {
    display: block;
  }
}

.p_company .section .flex .txt {
  width: 690px;
}

@media screen and (max-width: 768px) {
  .p_company .section .flex .txt {
    width: auto;
  }
}

.p_company .section .flex .rinen {
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .p_company .section .flex .rinen {
    margin-bottom: 20px;
  }
}

.p_company .section .flex .ttl {
  font-size: 2rem;
  font-weight: bold;
  color: #c1a522;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .p_company .section .flex .ttl {
    font-size: 1.5rem;
  }
}

.p_company .section .flex ol {
  padding-left: 2em;
  text-indent: -2em;
}

@media screen and (max-width: 768px) {
  .p_company .section .flex figure {
    text-align: center;
    margin-top: 15px;
  }
}

.p_company .section table tr {
  border-bottom: 1px solid #c0c0c0;
}

.p_company .section table th, .p_company .section table td {
  padding: 20px;
}

@media screen and (max-width: 768px) {
  .p_company .section table th, .p_company .section table td {
    padding: 10px;
  }
}

.p_company .section table th {
  width: 250px;
}

@media screen and (max-width: 768px) {
  .p_company .section table th {
    width: 80px;
  }
}

.p_company .section table a {
  text-decoration: underline;
  color: #040c72;
}

.p_company .section .address_list .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #fff;
  margin-bottom: 40px;
  padding: 30px;
}

@media screen and (max-width: 768px) {
  .p_company .section .address_list .box {
    display: block;
    margin-bottom: 25px;
    padding: 20px;
  }
}

.p_company .section .address_list .box:last-child {
  margin-bottom: 0;
}

.p_company .section .address_list .box .txt {
  width: 525px;
  padding-top: 10px;
}

@media screen and (max-width: 768px) {
  .p_company .section .address_list .box .txt {
    width: auto;
  }
}

.p_company .section .address_list .box .name {
  font-size: 21px;
  font-weight: bold;
  color: #040c72;
  margin-bottom: 20px;
  padding-left: 20px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .p_company .section .address_list .box .name {
    font-size: 16px;
  }
}

.p_company .section .address_list .box .name::before {
  content: "";
  display: block;
  background-color: #040c72;
  width: 4px;
  height: 22px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

.p_company .section .address_list .box .name span {
  color: #202020;
}

.p_company .section .address_list .box .ttl {
  font-size: 1.6rem;
  font-weight: bold;
  color: #c1a522;
  margin: 20px 0 10px;
}

@media screen and (max-width: 768px) {
  .p_company .section .address_list .box .ttl {
    font-size: 1.5rem;
  }
}

.p_company .section .address_list .box ol {
  padding-left: 2em;
  text-indent: -2em;
}

@media screen and (max-width: 768px) {
  .p_company .section .address_list .box .map {
    margin-top: 15px;
  }
}

.p_company .section .address_list .box .map iframe {
  width: 550px;
  height: 400px;
}

@media screen and (max-width: 768px) {
  .p_company .section .address_list .box .map iframe {
    width: 100%;
    height: 230px;
  }
}

/*----------------------------------------------------
 採用情報
----------------------------------------------------*/
.p_employment .section .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .p_employment .section .flex {
    display: block;
  }
}

.p_employment .section .flex .txtarea {
  width: 680px;
}

@media screen and (max-width: 768px) {
  .p_employment .section .flex .txtarea {
    width: auto;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .p_employment .section .flex figure {
    text-align: center;
  }
}

.p_employment .section .img_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .p_employment .section .img_list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 20px;
  }
}

.p_employment .section .img_list figure {
  width: 47.8%;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .p_employment .section .img_list figure {
    text-align: center;
  }
}

.p_employment .section .catch {
  font-size: 2.2rem;
  font-weight: bold;
  color: #c1a522;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .p_employment .section .catch {
    font-size: 1.5rem;
    text-align: left;
    margin-bottom: 15px;
  }
}

.p_employment .section .btn_list {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .p_employment .section .btn_list {
    margin-top: 20px;
  }
}

.p_employment .section .btn_list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .p_employment .section .btn_list ul {
    display: block;
  }
}

.p_employment .section .btn_list ul li {
  max-width: 370px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .p_employment .section .btn_list ul li {
    max-width: 265px;
    margin: 0 auto 15px;
  }
}

.p_employment .section .btn_list ul .btn a {
  display: block;
  background-color: #101010;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  max-width: 370px;
  width: 100%;
  height: 70px;
  margin: 0 auto;
  padding: 22px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .p_employment .section .btn_list ul .btn a {
    font-size: 13px;
    height: 50px;
    padding: 15px;
  }
}

.p_employment .section .btn_list ul .btn a::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

.p_employment .section .btn_list ul .btn a::after {
  content: '';
  background-color: #040c72;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.2, 1, 0.2, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.2, 1, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.2, 1, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.2, 1, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.2, 1, 0.2, 1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

.p_employment .section .btn_list ul .btn a span {
  position: relative;
  z-index: 1;
}

.p_employment .section .btn_list ul .btn a:hover::after {
  background-color: #040c72;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.p_employment .section .name {
  background-color: #040c72;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 30px;
  padding: 16px 30px;
}

@media screen and (max-width: 768px) {
  .p_employment .section .name {
    font-size: 13px;
    margin-bottom: 20px;
    padding: 15px;
  }
}

.p_employment .section .ttl {
  font-size: 2rem;
  font-weight: bold;
  color: #c1a522;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .p_employment .section .ttl {
    font-size: 1.5rem;
  }
}

.p_employment .section .cap {
  margin-bottom: 26px;
}

@media screen and (max-width: 768px) {
  .p_employment .section .cap {
    margin-bottom: 20px;
  }
}

.p_employment .section .cap a {
  text-decoration: underline;
  color: #040c72;
}

.p_employment .section .tbl table tr {
  border-top: 1px solid #c0c0c0;
}

.p_employment .section .tbl table tr:last-child {
  border-bottom: 1px solid #c0c0c0;
}

.p_employment .section .tbl table th, .p_employment .section .tbl table td {
  padding: 20px 26px;
}

@media screen and (max-width: 768px) {
  .p_employment .section .tbl table th, .p_employment .section .tbl table td {
    padding: 10px;
  }
}

.p_employment .section .tbl table th {
  width: 280px;
}

@media screen and (max-width: 768px) {
  .p_employment .section .tbl table th {
    width: 80px;
  }
}

.p_employment .section .ref {
  margin: 26px 0;
}

@media screen and (max-width: 768px) {
  .p_employment .section .ref {
    margin: 15px 0;
  }
}

.p_employment .section .contact {
  background-color: #ece6cc;
  font-size: 1.6rem;
  font-weight: bold;
  margin-top: 26px;
  padding: 30px;
}

@media screen and (max-width: 768px) {
  .p_employment .section .contact {
    font-size: 1.4rem;
    margin-top: 15px;
    padding: 15px;
  }
}

.p_employment .section .contact .contact_ttl {
  color: #040c72;
  margin-bottom: 10px;
}

.p_employment .section .apply_btn {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .p_employment .section .apply_btn {
    margin-top: 20px;
  }
}

.p_employment .section .apply_btn a {
  display: block;
  background-color: #101010;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  max-width: 350px;
  width: 100%;
  height: 65px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .p_employment .section .apply_btn a {
    font-size: 13px;
    max-width: 290px;
    height: 50px;
    padding: 15px;
  }
}

.p_employment .section .apply_btn a span::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-image: url(../img/common/ico_mail_white.png);
  background-size: cover;
  width: 20px;
  height: 13px;
  margin-right: 10px;
}

.p_employment .section .apply_btn a::after {
  content: '';
  background-color: #040c72;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.2, 1, 0.2, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.2, 1, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.2, 1, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.2, 1, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.2, 1, 0.2, 1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

.p_employment .section .apply_btn a span {
  position: relative;
  z-index: 1;
}

.p_employment .section .apply_btn a:hover::after {
  background-color: #040c72;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

form table tr {
  border-top: 1px solid #c0c0c0;
}

form table tr:last-child {
  border-bottom: 1px solid #c0c0c0;
}

form table th, form table td {
  padding: 20px 26px;
}

@media screen and (max-width: 768px) {
  form table th, form table td {
    display: block;
    padding: 15px 10px;
  }
}

form table th {
  width: 280px;
}

@media screen and (max-width: 768px) {
  form table th {
    width: auto;
    padding-bottom: 0;
  }
}

form table td span {
  display: block;
  margin-top: 10px;
}

form table ul li {
  margin-bottom: 10px;
}

form table ul li:last-child {
  margin-bottom: 0;
}

form table .list_col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

form table .list_col li {
  margin-right: 20px;
}

form .input01 {
  border: 1px solid #c0c0c0;
  max-width: 70px;
  width: 100%;
  height: 35px;
}

form .input02 {
  border: 1px solid #c0c0c0;
  max-width: 160px;
  width: 100%;
  height: 35px;
}

form .input03 {
  border: 1px solid #c0c0c0;
  max-width: 280px;
  width: 100%;
  height: 35px;
}

form .input04 {
  border: 1px solid #c0c0c0;
  max-width: 380px;
  width: 100%;
  height: 35px;
}

form textarea {
  border: 1px solid #c0c0c0;
  max-width: 550px;
  width: 100% !important;
  height: 150px !important;
}

form .btn {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  form .btn {
    margin-top: 20px;
  }
}

form .btn button {
  display: block;
  background: #101010;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  max-width: 350px;
  width: 100%;
  height: 65px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
}

@media screen and (max-width: 768px) {
  form .btn button {
    font-size: 13px;
    max-width: 290px;
    height: 50px;
    padding: 15px;
  }
}

form .btn button::after {
  content: '';
  background-color: #040c72;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.2, 1, 0.2, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.2, 1, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.2, 1, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.2, 1, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.2, 1, 0.2, 1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

form .btn button span {
  position: relative;
  z-index: 1;
}

form .btn button:hover {
  background: #101010;
}

form .btn button:hover::after {
  background-color: #040c72;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

form #privacy {
  margin-top: 50px;
}

form #privacy .head {
  background-color: #040c72;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  padding: 16px;
}

@media screen and (max-width: 768px) {
  form #privacy .head {
    font-size: 13px;
    padding: 10px;
  }
}

form #privacy .body {
  border-bottom: 1px solid #c0c0c0;
  height: 220px;
  padding: 30px 20px;
  overflow-y: scroll;
}

@media screen and (max-width: 768px) {
  form #privacy .body {
    height: 200px;
    padding: 15px 40px 15px 0;
  }
}

form #privacy dl dt {
  font-weight: bold;
  margin-top: 26px;
}

form #privacy ul {
  padding-left: 1em;
  margin-top: 26px;
}

/*----------------------------------------------------
 お問い合わせ
----------------------------------------------------*/
.p_contact .section .telbox {
  border: 1px solid #040c72;
}

.p_contact .section .telbox .head {
  background-color: #040c72;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  padding: 10px;
}

@media screen and (max-width: 768px) {
  .p_contact .section .telbox .head {
    font-size: 15px;
  }
}

.p_contact .section .telbox .body {
  font-size: 2.4rem;
  font-weight: bold;
  padding: 40px 60px;
}

@media screen and (max-width: 768px) {
  .p_contact .section .telbox .body {
    font-size: 1.7rem;
    padding: 25px;
  }
}

.p_contact .section .telbox table th {
  position: relative;
}

.p_contact .section .telbox table th::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  margin-right: 10px;
  border-style: solid;
  border-width: 4px 0 4px 6.9px;
  border-color: transparent transparent transparent #040c72;
}

@media screen and (max-width: 768px) {
  .p_contact .section .telbox table th, .p_contact .section .telbox table td {
    display: block;
  }
}

.p_contact .section .telbox table th {
  color: #040c72;
}

.p_contact .section .telbox table td {
  padding-left: 15px;
}

.p_contact .section .cap {
  margin-bottom: 26px;
}

@media screen and (max-width: 768px) {
  .p_contact .section .cap {
    margin-bottom: 20px;
  }
}

.p_contact .section .cap a {
  text-decoration: underline;
  color: #040c72;
}
