@charset "UTF-8";

body,
html {
  height: 100%;
  margin: 0 auto;
  letter-spacing: 2px;
  font-size: 13px;
}

body {
  margin: 0;
  font-family: "Yu Gothic", sans-serif;
}

/* Windows OS用フォント */
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic"), url("/fonts/YuGothic.ttf") format("truetype");
}

/* iOS用フォント */
@font-face {
  font-family: "Hiragino Kaku Gothic ProN";
  src: local("Hiragino Kaku Gothic ProN"), url("/fonts/HiraginoKakuProN-W6.otf") format("opentype");
}

/* iOS用フォントを指定 */
@media screen and (max-width: 480px) {
  body {
    font-family: "Hiragino Kaku Gothic ProN", sans-serif;
  }
}

.wrap::before {
  content: "";
  display: block;
  top: 0;
  position: fixed;
  z-index: -2;
  height: 100vh;
  width: 100%;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  background-image: url(../images/bg003.jpg);
  /* animation: image_anime 60s ease infinite; /* 5秒のアニメーションを繰り返す */
}

/*@keyframes image_anime {
  0% {
    background-image: url(../images/bg002.jpg);
  }
  25% {
    background-image: url(../images/bg003.jpg);
  }
  50% {
    background-image: url(../images/bg004.jpg);
  }
  75% {
    background-image: url(../images/bg001.jpg);
  }
  100% {
    background-image: url(../images/bg002.jpg);
  }
}*/
.language {
  display: block;
  position: fixed;
  z-index: 1;
  right: 13px;
  top: 23px;
  cursor: pointer;
  text-align: center;
}

.language span a {
  background: #000;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
}

.language span a:link {
  color: #fff;
}

.language span a:visited {
  color: #fff;
}

.language span a:hover {
  color: #fff;
}

.language span a:active {
  color: #fff;
}

@media screen and (min-width: 768px) {
  .menu-wrap {
    width: 1000px;
    margin: 0 auto;
  }

  .hamburger {
    display: block;
    position: fixed;
    z-index: 3;
    left: 13px;
    top: 12px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
  }

  .hamburger span {
    display: block;
    position: fixed;
    width: 40px;
    height: 3px;
    left: 20px;
    border-radius: 2px;
    background: #fff;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }

  .hamburger span:nth-child(1) {
    top: 20px;
  }

  .hamburger span:nth-child(2) {
    top: 30px;
  }

  .hamburger span:nth-child(3) {
    top: 40px;
  }

  /* ナビ開いてる時のボタン */
  .hamburger.active span:nth-child(1),
  .hamburger.active span:nth-child(3) {
    width: 12px;
  }

  .hamburger.active span:nth-child(1) {
    -webkit-transform: translate(1px, 3px) rotate(315deg);
    -moz-transform: translate(1px, 3px) rotate(315deg);
    transform: translate(2px, 3px) rotate(315deg);
  }

  .hamburger.active span:nth-child(3) {
    -webkit-transform: translate(11px, -17px) rotate(-45deg);
    -moz-transform: translate(11px, -17px) rotate(45deg);
    transform: translate(10px, -17px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    width: 24px;
    transform: translate(0px, 0px)rotate(270deg);
  }

  nav.globalMenuSp {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    color: #dbd9d8;
    text-align: center;
    transform: translateY(-100%);
    transition: all 0.6s;
    width: 350px;
  }

  nav.globalMenuSp ul {
    background: rgba(10, 10, 10, 0.4);
    margin: 0 auto;
    padding: 0;
    width: 100%;
  }

  nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    border-bottom: 1px solid #000;
  }

  nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }

  nav.globalMenuSp ul li:hover {
    background: #000;
  }

  nav.globalMenuSp ul li a {
    display: block;
    color: #dbd9d8;
    padding: 1.4em 0;
    text-decoration: none;
  }

  /* このクラスを、jQueryで付与・削除する */
  nav.globalMenuSp.active {
    transform: translateY(0%);
    width: 350px;
  }

  .main-logo {
    margin: 0 auto;
    width: 100%;
    padding: 80px 0 20px;
    text-align: center;
  }

  .main-logo img {
    width: 700px;
    height: auto;
  }

  h1 {
    color: #fff;
    text-align: center;
    font-size: 20px;
    margin-bottom: 40px;
  }

  h2 {
    width: 750px;
    margin: 0 auto;
    text-align: center;
    background: rgba(10, 10, 10, 0.4);
    color: #fff;
    line-height: 3.0em;
    font-size: 150%;
  }

  h3 {
    text-align: center;
    color: #fff;
    line-height: 1.0em;
    font-size: 15px;
  }

  section {
    width: 750px;
    margin: 0 auto;
    display: table;
  }

  .section {
    width: 750px;
    margin: 0 auto;
    display: table;
  }

  .menu a {
    width: 28.3%;
    height: 360px;
    float: left;
    padding: 17.2px;
    margin-top: 5px;
    background: rgba(10, 10, 10, 0.4);
    text-decoration: none;
  }

  .menu img {
    width: 100%;
    height: auto;
  }

  .menu02 a {
    width: 19.5%;
    float: left;
    padding: 0px 50px 60px;
    margin-top: 50px;
    background: rgba(57, 38, 23, 0.7);
    text-decoration: none;
  }

  .menu02 h3 {
    text-align: center;
    color: #fff;
    line-height: 1.5em;
    margin: 0;
    font-size: 100%;
  }

  .menu02 img {
    width: 100%;
    height: auto;
  }

  .menu03 a {
    width: 19.5%;
    float: left;
    padding: 0px 50px 60px;
    margin-top: 3px;
    background: rgba(57, 38, 23, 0.7);
    text-decoration: none;
  }

  .menu03 h3 {
    text-align: center;
    color: #fff;
    line-height: 1.5em;
    margin: 0;
    font-size: 100%;
  }

  .menu03 img {
    width: 100%;
    height: auto;
  }

  .menu p {
    color: #fff;
    line-height: 1.5em;
    font-size: 15px;
  }

  .content {
    width: 100%;
    padding: 20px 0 100px 0;
    margin-top: 5px;
    background: rgba(10, 10, 10, 0.4);
  }

  .content h3 {
    font-size: 180%;
    color: #fff;
    line-height: 1.5em;
  }

  .content h4 {
    font-size: 115%;
    color: #fff;
    line-height: 3.5em;
    border: 1px solid #fff;
    width: 270px;
    text-align: center;
    margin: 50px auto 10px;
  }

  .content table {
    margin: 0 auto;
  }

  .content td {
    padding: 10px;
    margin: 0;
    border-bottom: 1px solid #fff;
    color: #fff;
  }

  .content p {
    text-align: center;
    line-height: 2.5em;
    color: #fff;
  }

  .content p img {
    width: 90%;
    height: auto;
  }

  .content p.founding img {
    width: 80%;
    margin: 0 10%;
  }

  .story {
    width: 750px;
    padding: 20px 0px 100px 0px;
    margin-top: 5px;
    background: rgba(10, 10, 10, 0.4);
  }

  .story h3 {
    font-size: 130%;
    color: #fff;
    line-height: 1.5em;
  }

  .story h4 {
    font-size: 115%;
    color: #fff;
    line-height: 3.5em;
    border: 1px solid #fff;
    width: 270px;
    text-align: center;
    margin: 50px auto 10px;
  }

  .story table {
    margin: 0 auto;
  }

  .story td {
    padding: 10px;
    margin: 0;
    border-bottom: 1px solid #fff;
    color: #fff;
  }

  .story p {
    width: auto;
    margin: 0 10%;
    text-align: left;
    line-height: 2.5em;
    color: #fff;
  }

  .story p.founding img {
    width: 100%;
    height: auto;
  }

  .story p a:link {
    color: #fff;
  }

  .story p a:active {
    color: #fff;
  }

  .story p a:hover {
    color: #fff;
  }

  .story p a:visited {
    color: #fff;
  }

  .mailmagazine {
    width: 750px;
    padding: 20px 0px 100px 0px;
    margin-top: 5px;
    background: rgba(10, 10, 10, 0.4);
  }

  .mailmagazine h3 {
    font-size: 130%;
    color: #000;
    line-height: 1.5em;
  }

  .mailmagazine h4 {
    font-size: 115%;
    color: #000;
    line-height: 3.5em;
    border: 1px solid #fff;
    width: 270px;
    text-align: center;
    margin: 50px auto 10px;
  }

  .mm-bd {
    background: #fff;
    margin: 50px 10%;
    padding: 50px 0;
  }

  .mailmagazine p {
    width: 80%;
    margin: 0 10%;
    text-align: left;
    line-height: 1.5em;
    color: #000;
  }

  .mailmagazine p.founding img {
    width: 100%;
  }

  .mailmagazine p a:link {
    color: #000;
  }

  .mailmagazine p a:active {
    color: #000;
  }

  .mailmagazine p a:hover {
    color: #000;
  }

  .mailmagazine p a:visited {
    color: #000;
  }

  .mailmagazine p.button-mm a {
    text-decoration: none;
  }

  .mailmagazine p.button-mm a:link {
    color: #fff;
  }

  .mailmagazine p.button-mm a:active {
    color: #fff;
  }

  .mailmagazine p.button-mm a:hover {
    color: #fff;
  }

  .mailmagazine p.button-mm a:visited {
    color: #fff;
  }

  .staffblog {
    width: 750px;
    padding: 20px 0px 100px 0px;
    margin-top: 5px;
    background: rgba(10, 10, 10, 0.4);
  }

  .staffblog h1 {
    font-size: 180%;
    color: #fff;
    line-height: 2.0em;
    width: 720px;
    margin: 0 auto;
    text-align: left;
  }

  .staffblog h3 {
    font-size: 130%;
    color: #ff6633;
    line-height: 2.0em;
    background: #fff;
    width: 720px;
    margin: 30px auto;
  }

  .staffblog h4 {
    font-size: 130%;
    color: #fff;
    line-height: 2.5em;
    width: 720px;
    text-align: left;
    margin: 50px auto 10px;
  }

  .staffblog p {
    width: 80%;
    margin: 0 10%;
    text-align: left;
    line-height: 1.5em;
    color: #fff;
  }

  .staffblog p img {
    width: 100%;
    margin: 20px 0;
  }

  .staffblog p a:link {
    color: #fff;
  }

  .staffblog p a:active {
    color: #fff;
  }

  .staffblog p a:hover {
    color: #fff;
  }

  .staffblog p a:visited {
    color: #fff;
  }

  .staffblog p.button-mm {
    margin: 30px auto;
  }

  .staffblog p.button-mm a {
    text-decoration: none;
  }

  .staffblog p.button-mm a:link {
    color: #fff;
  }

  .staffblog p.button-mm a:active {
    color: #fff;
  }

  .staffblog p.button-mm a:hover {
    color: #fff;
  }

  .staffblog p.button-mm a:visited {
    color: #fff;
  }

  .news {
    display: flex;
    padding: 15px;
    margin-top: 5px;
    background: rgba(10, 10, 10, 0.4);
    text-decoration: none;
    vertical-align: top;
  }

  .news-inner {
    padding: 15px;
    border: 1px solid #fff;
    width: 100%;
  }

  .news h3 {
    text-align: left;
    color: #fff;
    line-height: 1.5em;
  }

  .news p {
    color: #fff;
    line-height: 1.5em;
  }

  .news p img {
    height: auto;
  }

  .news a:link {
    color: #fff;
  }

  .news a:visited {
    color: #fff;
  }

  .news a:hover {
    color: #fff;
  }

  .news a:active {
    color: #fff;
  }

  .button {
    margin: 40px auto 30px;
    width: 120px;
  }

  .button a {
    background: #fff;
    color: #0a8174;
    line-height: 1.5em;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
  }

  .button a:link {
    color: #0a8174;
  }

  .button a:visited {
    color: #0a8174;
  }

  .button a:hover {
    color: #0a8174;
  }

  .button a:active {
    color: #0a8174;
  }

  .phone {
    font-size: 350%;
    margin: -30px 0 0 0;
  }

  form {
    margin-bottom: 80px;
  }

  .btn-flat-double-border {
    display: inline-block;
    padding: 1em 3em;
    text-decoration: none;
    font-size: 18px;
    color: #fc6262;
    border: double 4px #fc6262;
    border-radius: 3px;
    transition: .4s;
  }

  .btn-flat-double-border:hover {
    background: #ffcccc;
  }

  .cp_iptxt {
    position: relative;
    width: 600px;
    margin: 2em auto;
    color: #fff;
  }

  .cp_iptxt input[type='text'] {
    font: 15px/24px sans-serif;
    box-sizing: border-box;
    width: 100%;
    letter-spacing: 1px;
    padding-left: 7em;
  }

  .cp_iptxt textarea[type='text'] {
    font: 15px/24px sans-serif;
    box-sizing: border-box;
    width: 100%;
    height: 200px;
    letter-spacing: 1px;
    padding-left: 7em;
  }

  .cp_iptxt input[type='text']:focus {
    outline: none;
  }

  .radio_label1 {
    color: #fff;
    position: relative;
    top: 11px;
  }

  .ef {
    position: relative;
    padding: 9px 15px;
    border: 0;
    border: 1px solid #bbb;
    background: transparent;
    color: #fff;
  }

  .ef~.focus_bg {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    transition: 0.4s;
    background-color: transparent;
  }

  .ef:focus {
    border: 1px solid #da3c41;
  }

  .ef:focus~.focus_bg,
  .cp_iptxt.ef~.focus_bg {
    width: 100%;
    transition: 0.4s;
    background-color: rgba(218, 60, 65, .3);
  }

  .ef~label {
    z-index: 2;
    top: 10px;
    left: 14px;
    width: 100%;
    transition: 0.3s;
    letter-spacing: 0.5px;
    color: #fff;
  }

  .ef:focus~label,
  .cp_iptxt.ef~label {
    font-size: 12px;
    top: -18px;
    left: 0;
    transition: 0.3s;
    color: #da3c41;
  }

  .cp_ipradio05 {
    width: 600px;
    margin: 2em auto;
    position: relative;
  }

  .cp_ipradio05 ul {
    padding: 20px 20px 10px 20px;
    list-style: none;
    border: 1px solid #cccccc;
    color: #fff;
  }

  .cp_ipradio05 .list_item {
    margin: 0 0 0.5rem 0;
    padding: 0;
  }

  .cp_ipradio05 label {
    line-height: 135%;
    position: relative;
    margin: 0.5rem;
    cursor: pointer;
  }

  .cp_ipradio05 .option-input {
    position: relative;
    margin: 0 1rem 0 0;
    cursor: pointer;
  }

  .cp_ipradio05 .option-input:before {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0.125rem;
    width: 0.75rem;
    height: 0.75rem;
    content: '';
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
    border-radius: 50%;
    background: #da3c41;
  }

  .cp_ipradio05 .option-input:checked:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  .cp_ipradio05 .option-input:after {
    position: absolute;
    top: -0.25rem;
    left: -0.125rem;
    width: 1rem;
    height: 1rem;
    content: '';
    border: 2px solid #f2f2f2;
    border-radius: 50%;
    background: #ffffff;
  }

  #pagination {
    margin: 50px auto;
    width: 600px;
  }

  #pagination a {
    text-decoration: none;
    outline: none;
    display: block;
    padding: 20px 0;
    width: 40px;
    text-align: center;
    color: white;
  }

  #pagination div {
    position: absolute;
    top: 0;
    opacity: 0;
    width: 40px;
    overflow: hidden;
    transition: .5s linear;
  }

  #pagination .left {
    left: 0;
  }

  #pagination .right {
    right: 0;
  }

  #pagination .line {
    width: 30px;
    height: 2px;
    position: absolute;
    bottom: 10px;
    left: -35px;
    background: white;
    transition: .5s linear .2s;
  }

  #pagination .left a:nth-child(2):hover~.line,
  #pagination .right a:nth-child(2):hover~.line {
    left: 5px;
  }

  #pagination .left a:nth-child(3):hover~.line,
  #pagination .right a:nth-child(3):hover~.line {
    left: 45px;
  }

  #pagination .left a:nth-child(4):hover~.line,
  #pagination .right a:nth-child(4):hover~.line {
    left: 85px;
  }

  #pagination nav {
    background: #FCFCFC;
    color: #4D4644;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    width: 600px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, .2);
    transition: .3s linear;
  }

  #pagination .text {
    display: inline-block;
    letter-spacing: 2px;
    padding: 20px 10px;
    cursor: pointer;
  }

  #pagination nav:hover div {
    background: #D8CDC9;
    opacity: 1;
  }

  #pagination div:hover .prev {
    opacity: 0;
    display: none;
  }

  #pagination div:hover .next {
    display: none;
  }

  #pagination div:hover {
    width: auto;
  }

  #pagination .prev:before {
    content: "<";
    font-family: FontAwesome;
  }

  #pagination .next:before {
    content: ">";
    font-family: FontAwesome;
  }

  .border {
    border: 1px solid #fff;
    padding: 10px 0;
    margin: 20px auto;
    width: 680px;
    overflow: hidden;
  }

  footer .foot-wrap {
    width: 750px;
    margin: 0 auto;
  }

  footer .foot {
    display: inline-table;
    width: 372px;
    vertical-align: middle;
  }

  footer .foot img {
    width: 100%;
    height: auto;
  }

  footer .company {
    font-size: 30px;
    line-height: 0.3em;
  }

  footer a {
    color: #dbd9d8;
    text-decoration: none;
  }

  footer a:link {
    color: #dbd9d8;
  }

  footer a:visited {
    color: #dbd9d8;
  }

  footer a:hover {
    color: #dbd9d8;
  }

  footer a:active {
    color: #dbd9d8;
  }

  .sp-none {
    display: none;
  }

  .ml15 {
    margin-left: 15px;
  }

  section .news:nth-child(odd) {
    margin-top: 5px;
  }
}

@media screen and (max-width: 767px) {
  .container-wrap {
    padding: 15px;
  }

  .menu-wrap {
    width: 1000px;
    margin: 0 auto;
  }

  .hamburger {
    display: block;
    position: fixed;
    z-index: 3;
    left: 13px;
    top: 12px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
  }

  .hamburger span {
    display: block;
    position: fixed;
    width: 40px;
    height: 3px;
    left: 20px;
    border-radius: 2px;
    background: #fff;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }

  .hamburger span:nth-child(1) {
    top: 20px;
  }

  .hamburger span:nth-child(2) {
    top: 30px;
  }

  .hamburger span:nth-child(3) {
    top: 40px;
  }

  /* ナビ開いてる時のボタン */
  .hamburger.active span:nth-child(1),
  .hamburger.active span:nth-child(3) {
    width: 12px;
  }

  .hamburger.active span:nth-child(1) {
    -webkit-transform: translate(1px, 3px) rotate(315deg);
    -moz-transform: translate(1px, 3px) rotate(315deg);
    transform: translate(2px, 3px) rotate(315deg);
  }

  .hamburger.active span:nth-child(3) {
    -webkit-transform: translate(11px, -17px) rotate(-45deg);
    -moz-transform: translate(11px, -17px) rotate(45deg);
    transform: translate(10px, -17px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    width: 24px;
    transform: translate(0px, 0px)rotate(270deg);
  }

  nav.globalMenuSp {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    color: #dbd9d8;
    text-align: center;
    transform: translateY(-100%);
    transition: all 0.6s;
    width: 100%;
  }

  nav.globalMenuSp ul {
    background: rgba(10, 10, 10, 0.7);
    margin: 0 auto;
    padding: 0;
    width: 100%;
  }

  nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    border-bottom: 1px solid #000;
  }

  nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }

  nav.globalMenuSp ul li:hover {
    background: #000;
  }

  nav.globalMenuSp ul li a {
    display: block;
    color: #dbd9d8;
    padding: 1.4em 0;
    text-decoration: none;
  }

  /* このクラスを、jQueryで付与・削除する */
  nav.globalMenuSp.active {
    transform: translateY(0%);
    width: 100%;
  }

  .main-logo {
    margin: 0 auto;
    width: 100%;
    padding: 60px 0 20px 0;
  }

  .main-logo img {
    width: 100%;
    height: auto;
  }

  h1 {
    color: #fff;
    text-align: center;
    font-size: 20px;
    margin-bottom: 40px;
  }

  h2 {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    background: rgba(10, 10, 10, 0.4);
    color: #fff;
    line-height: 2.8em;
    font-size: 100%;
  }

  h3 {
    text-align: center;
    color: #fff;
    line-height: 0.5em;
  }

  .t-left {
    text-align: left;
  }

  section {
    width: 100%;
    margin: 0 auto;
    display: contents;
  }

  .section {
    width: 100%;
    margin: 0 auto;
    display: table;
  }

  .menu a {
    width: auto;
    display: block;
    padding: 15px;
    margin: 10px 0;
    background: rgba(10, 10, 10, 0.4);
    text-decoration: none;
  }

  .menu img {
    width: 100%;
    height: auto;
  }

  .menu02 a {
    width: auto;
    float: left;
    padding: 0px 65px 60px;
    margin-top: 20px;
    background: rgba(57, 38, 23, 0.7);
    text-decoration: none;
  }

  .menu02 h3 {
    text-align: center;
    color: #fff;
    line-height: 1.7em;
    margin: 0;
  }

  .menu02 img {
    width: 100%;
  }

  .menu03 a {
    width: auto;
    float: left;
    padding: 0px 65px 60px;
    margin-top: 20px;
    background: rgba(57, 38, 23, 0.7);
    text-decoration: none;
  }

  .menu03 h3 {
    text-align: center;
    color: #fff;
    line-height: 1.7em;
    margin: 0;
  }

  .menu03 img {
    width: 100%;
  }

  .menu p {
    color: #fff;
    line-height: 1.5em;
    text-align: center;
  }

  .content {
    width: 100%;
    padding: 20px 0 100px 0;
    margin-top: 5px;
    background: rgba(10, 10, 10, 0.4);
  }

  .content h3 {
    font-size: 180%;
    color: #fff;
    line-height: 1.5em;
  }

  .content h4 {
    font-size: 115%;
    color: #fff;
    line-height: 3.5em;
    border: 1px solid #fff;
    width: 80%;
    text-align: center;
    margin: 50px auto 10px;
  }

  .content table {
    margin: 0 auto;
    width: 100%;
  }

  .content td {
    padding: 10px;
    margin: 0;
    border-bottom: 1px solid #fff;
    color: #fff;
  }

  .content p {
    text-align: center;
    line-height: 2.5em;
    color: #fff;
    margin: 15px;
  }

  .story {
    width: 100%;
    padding: 20px 0 80px 0;
    margin-top: 5px;
    background: rgba(10, 10, 10, 0.4);
  }

  .story h3 {
    font-size: 130%;
    color: #fff;
    line-height: 1.5em;
  }

  .story h4 {
    font-size: 115%;
    color: #fff;
    line-height: 3.5em;
    border: 1px solid #fff;
    width: 100%;
    text-align: center;
    margin: 50px auto 10px;
  }

  .story table {
    margin: 0 auto;
  }

  .story td {
    padding: 10px;
    margin: 0;
    border-bottom: 1px solid #fff;
    color: #fff;
  }

  .story p {
    width: auto;
    margin: 0 5%;
    text-align: left;
    line-height: 2.5em;
    color: #fff;
  }

  .story p.founding img {
    width: 100%;
    height: auto;
  }

  .story p a:link {
    color: #fff;
  }

  .story p a:active {
    color: #fff;
  }

  .story p a:hover {
    color: #fff;
  }

  .story p a:visited {
    color: #fff;
  }

  .content p.border a:link {
    color: #fff;
  }

  .content p.border a:active {
    color: #fff;
  }

  .content p.border a:hover {
    color: #fff;
  }

  .content p.border a:visited {
    color: #fff;
  }

  .mailmagazine {
    width: auto;
    padding: 20px 40px 100px 40px;
    margin-top: 5px;
    background: rgba(10, 10, 10, 0.4);
  }

  .mailmagazine p {
    color: #fff;
  }

  .mailmagazine p img {
    width: 100%;
  }

  .mailmagazine p a:link {
    color: #000;
  }

  .mailmagazine p a:active {
    color: #000;
  }

  .mailmagazine p a:hover {
    color: #000;
  }

  .mailmagazine p a:visited {
    color: #000;
  }

  .mailmagazine p.button-mm a {
    text-decoration: none;
  }

  .mailmagazine p.button-mm a:link {
    color: #fff;
  }

  .mailmagazine p.button-mm a:active {
    color: #fff;
  }

  .mailmagazine p.button-mm a:hover {
    color: #fff;
  }

  .mailmagazine p.button-mm a:visited {
    color: #fff;
  }

  .news {
    width: auto;
    display: inline-block;
    padding: 15px;
    margin-top: 5px;
    background: rgba(10, 10, 10, 0.4);
    text-decoration: none;
    vertical-align: top;
  }

  .news-inner {
    padding: 15px;
    border: 1px solid #fff;
    height: auto;
  }

  .news h3 {
    text-align: left;
    color: #fff;
    line-height: 1.5em;
  }

  .news p {
    color: #fff;
    line-height: 1.5em;
  }

  .news p img {
    height: auto;
  }

  .news a:link {
    color: #fff;
  }

  .news a:visited {
    color: #fff;
  }

  .news a:hover {
    color: #fff;
  }

  .news a:active {
    color: #fff;
  }

  .button {
    margin: 40px auto 30px;
    width: 120px;
  }

  .button a {
    background: #fff;
    color: #0a8174;
    line-height: 1.5em;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
  }

  .button a:link {
    color: #0a8174;
  }

  .button a:visited {
    color: #0a8174;
  }

  .button a:hover {
    color: #0a8174;
  }

  .button a:active {
    color: #0a8174;
  }

  .phone {
    font-size: 240%;
    margin: -30px 0 0 0;
  }

  form {
    margin-bottom: 80px;
  }

  .btn-flat-double-border {
    -webkit-appearance: none;
    display: inline-block;
    padding: 1em 3em;
    text-decoration: none;
    font-size: 18px;
    color: #fc6262;
    border: double 4px #fc6262;
    border-radius: 5px;
    transition: .4s;
  }

  .btn-flat-double-border:hover {
    background: #ffcccc;
  }

  .cp_iptxt {
    position: relative;
    width: auto;
    margin: 2em auto;
    color: #fff;
  }

  .cp_iptxt input[type='text'] {
    font: 15px/24px sans-serif;
    box-sizing: border-box;
    width: 100%;
    letter-spacing: 1px;
  }

  .cp_iptxt textarea[type='text'] {
    font: 15px/24px sans-serif;
    box-sizing: border-box;
    width: 100%;
    height: 200px;
    letter-spacing: 1px;
  }

  .cp_iptxt input[type='text']:focus {
    outline: none;
  }

  .radio_label1 {
    color: #fff;
    position: absolute;
    top: 60px;
    left: 12px;
    width: 80px;
  }

  .ef {
    position: relative;
    padding: 9px 15px;
    border: 0;
    border: 1px solid #bbb;
    background: transparent;
    color: #fff;
  }

  .ef~.focus_bg {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    transition: 0.4s;
    background-color: transparent;
  }

  .ef:focus {
    border: 1px solid #da3c41;
  }

  .ef:focus~.focus_bg,
  .cp_iptxt.ef~.focus_bg {
    width: 100%;
    transition: 0.4s;
    background-color: rgba(218, 60, 65, .3);
  }

  .ef~label {
    position: absolute;
    z-index: 2;
    top: 10px;
    left: 14px;
    width: 100%;
    transition: 0.3s;
    letter-spacing: 0.5px;
    color: #fff;
  }

  .ef:focus~label,
  .cp_iptxt.ef~label {
    font-size: 12px;
    top: -18px;
    left: 0;
    transition: 0.3s;
    color: #da3c41;
  }

  .cp_ipradio05 {
    width: auto;
    margin: 2em auto;
    position: relative;
  }

  .cp_ipradio05 ul {
    padding: 20px 20px 10px 100px;
    list-style: none;
    border: 1px solid #cccccc;
    color: #fff;
    font-size: 80%;
  }

  .cp_ipradio05 .list_item {
    margin: 0 0 0.5rem 0;
    padding: 0;
  }

  .cp_ipradio05 label {
    line-height: 135%;
    position: relative;
    margin: 0.5rem;
    cursor: pointer;
  }

  .cp_ipradio05 .option-input {
    position: relative;
    margin: 0 1rem 0 0;
    cursor: pointer;
  }

  .cp_ipradio05 .option-input:before {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0.125rem;
    width: 0.75rem;
    height: 0.75rem;
    content: '';
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
    border-radius: 50%;
    background: #da3c41;
  }

  .cp_ipradio05 .option-input:checked:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  .cp_ipradio05 .option-input:after {
    position: absolute;
    top: -0.25rem;
    left: -0.125rem;
    width: 1rem;
    height: 1rem;
    content: '';
    border: 2px solid #f2f2f2;
    border-radius: 50%;
    background: #ffffff;
  }

  #pagination {
    margin: 50px auto;
    width: 100%;
  }

  #pagination a {
    text-decoration: none;
    outline: none;
    display: block;
    padding: 20px 0;
    width: 100%;
    text-align: center;
    color: white;
  }

  #pagination div {
    position: absolute;
    top: 0;
    opacity: 0;
    width: 40px;
    overflow: hidden;
    transition: .5s linear;
  }

  #pagination .left {
    left: 0;
  }

  #pagination .right {
    right: 0;
  }

  #pagination .line {
    width: 30px;
    height: 2px;
    position: absolute;
    bottom: 10px;
    left: -35px;
    background: white;
    transition: .5s linear .2s;
  }

  #pagination .left a:nth-child(2):hover~.line,
  #pagination .right a:nth-child(2):hover~.line {
    left: 5px;
  }

  #pagination .left a:nth-child(3):hover~.line,
  #pagination .right a:nth-child(3):hover~.line {
    left: 45px;
  }

  #pagination .left a:nth-child(4):hover~.line,
  #pagination .right a:nth-child(4):hover~.line {
    left: 85px;
  }

  #pagination nav {
    background: #FCFCFC;
    color: #4D4644;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    width: auto;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, .2);
    transition: .3s linear;
  }

  #pagination .text {
    display: inline-block;
    letter-spacing: 2px;
    padding: 20px 10px;
    cursor: pointer;
  }

  #pagination nav:hover div {
    background: #D8CDC9;
    opacity: 1;
  }

  #pagination div:hover .prev {
    opacity: 0;
    display: none;
  }

  #pagination div:hover .next {
    display: none;
  }

  #pagination div:hover {
    width: auto;
  }

  #pagination .prev:before {
    content: "<";
    font-family: FontAwesome;
  }

  #pagination .next:before {
    content: ">";
    font-family: FontAwesome;
  }

  .border {
    border: 1px solid #fff;
    padding: 10px 0;
    margin: 20px auto;
    width: auto;
  }

  .content p img {
    width: 100%;
    height: auto;
  }

  footer .foot-wrap {
    width: 100%;
    margin: 0 auto;
  }

  footer .foot {
    display: block;
  }

  footer .foot img {
    margin: 10px auto;
    width: 100%;
    height: auto;
  }

  footer .company {
    font-size: 25px;
    line-height: 0.3em;
  }

  footer a {
    color: #dbd9d8;
    text-decoration: none;
  }

  footer a:link {
    color: #dbd9d8;
  }

  footer a:visited {
    color: #dbd9d8;
  }

  footer a:hover {
    color: #dbd9d8;
  }

  footer a:active {
    color: #dbd9d8;
  }

  .d-none {
    display: none;
  }

  .staffblog {
    padding: 0 20px 50px 20px;
    background: rgba(10, 10, 10, 0.4);
  }

  .staffblog h4 {
    color: #fff;
  }

  .staffblog p img {
    width: 100%;
    margin: 20px 0;
  }

  .staffblog p {
    color: #fff !important;
  }

  .staffblog p a:link {
    color: #fff;
  }

  .staffblog p a:active {
    color: #fff;
  }

  .staffblog p a:hover {
    color: #fff;
  }

  .staffblog p a:visited {
    color: #fff;
  }

  .staffblog p.button-mm {
    margin: 30px auto;
  }

  .staffblog p.button-mm a {
    text-decoration: none;
    font-size: 12px;
  }

  .staffblog p.button-mm a:link {
    color: #fff;
  }

  .staffblog p.button-mm a:active {
    color: #fff;
  }

  .staffblog p.button-mm a:hover {
    color: #fff;
  }

  .staffblog p.button-mm a:visited {
    color: #fff;
  }
}

@media screen and (min-width: 751px) {
  footer {
    margin-top: 80px;
    background: rgba(10, 10, 10, 0.6);
    color: #dbd9d8;
    padding: 20px;
    font-size: 100%;
  }

  .entry-talk-box {
    border-collapse: separate;
    border-spacing: 15px 2px;
    display: table;
    margin: 30px auto;
    table-layout: fixed;
    width: 84%;
  }

  .entry-talk-img {
    display: table-cell;
    vertical-align: top;
    width: 100px;
  }

  .entry-talk-img img {
    border-radius: 50%;
    width: 100px;
  }

  .entry-talk-txt {
    background-color: rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid #ddd;
    border-radius: 8px;
    display: table-cell;
    padding: 10px;
    position: relative;
  }

  .entry-talk-txt-left:after {
    content: '';
    position: absolute;
    border-right: 12px solid rgba(255, 255, 255, 0.6);
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    left: -12px;
    top: 40px;
  }

  .entry-talk-txt-right:after {
    content: '';
    position: absolute;
    border-left: 12px solid rgba(255, 255, 255, 0.6);
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    right: -12px;
    top: 40px;
  }

  .entry-talk-txt p {
    line-height: 2.0;
    margin: 0;
    font-size: 90%;
    color: #000;
    padding: 20px;
  }
}

@media screen and (max-width: 750px) {
  footer {
    background: rgba(10, 10, 10, 0.6);
    color: #dbd9d8;
    padding: 10px 20px 35px 20px;
    margin-top: 100px;
    font-size: 90%;
  }

  .entry-talk-box {
    border-collapse: separate;
    border-spacing: 15px 2px;
    display: table;
    margin: 30px auto;
    table-layout: fixed;
    width: 100%;
  }

  .entry-talk-img {
    display: table-cell;
    vertical-align: top;
    width: 50px;
  }

  .entry-talk-img img {
    border-radius: 50%;
    width: 50px;
  }

  .entry-talk-txt {
    background-color: rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid #ddd;
    border-radius: 8px;
    display: table-cell;
    padding: 10px;
    position: relative;
  }

  .entry-talk-txt-left:after {
    content: '';
    position: absolute;
    border-right: 12px solid rgba(255, 255, 255, 0.6);
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    left: -12px;
    top: 15px;
  }

  .entry-talk-txt-right:after {
    content: '';
    position: absolute;
    border-left: 12px solid rgba(255, 255, 255, 0.6);
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    right: -12px;
    top: 15px;
  }

  .entry-talk-txt p {
    line-height: 2.0;
    margin: 0;
    font-size: 90%;
    color: #000;
  }
}

.recruit h5 {
  color: #000;
  width: 80%;
  margin: 40px auto 10px auto;
  font-size: 120%;
  text-align: center;
  line-height: 4.0em;
  background-color: #fff;
}

.recruit table {
  width: 80%;
  margin-top: 20px;
}

.recruit th {
  border-bottom: 1px solid #fff;
  color: #fff;
  text-align: left;
  width: 25%;
}

.recruit td {
  border-bottom: 1px solid #fff;
  line-height: 2.0em;
  font-size: 90%;
}

.content a {
  color: #fff;
}

.content a:link {
  color: #fff;
}

.content a:visited {
  color: #fff;
}

.content a:hover {
  color: #fff;
}

.content a:active {
  color: #fff;
}

.menu04 a {
  width: 48.9%;
  float: left;
  padding: 0px 0 60px 0;
  margin: 3px 0;
  background: rgba(57, 38, 23, 0.7);
  text-decoration: none;
  font-size: 80%;
}

.menu04 h3 {
  text-align: center;
  color: #fff;
  line-height: 1.7em;
  margin: 0;
}

.menu04 img {
  width: 100%;
  height: auto;
}

.menu05 a {
  width: 48.9%;
  float: left;
  padding: 0px 0 60px 0;
  margin: 3px 0;
  background: rgba(57, 38, 23, 0.7);
  text-decoration: none;
  font-size: 80%;
}

.menu05 h3 {
  text-align: center;
  color: #fff;
  line-height: 1.7em;
  margin: 0;
}

.menu05 img {
  width: 100%;
  height: auto;
}

.menu06 a {
  width: 48.9%;
  float: left;
  padding: 0px 0 60px 0;
  margin: 3px 0;
  background: rgba(57, 38, 23, 0.7);
  text-decoration: none;
  font-size: 80%;
}

.menu06 h3 {
  text-align: center;
  color: #fff;
  line-height: 1.7em;
  margin: 0;
}

.menu06 img {
  width: 100%;
  height: auto;
}

.menu07 a {
  width: 48.9%;
  float: left;
  padding: 0px 0 60px 0;
  margin: 3px 0;
  background: rgba(57, 38, 23, 0.7);
  text-decoration: none;
  font-size: 80%;
}

.menu07 h3 {
  text-align: center;
  color: #fff;
  line-height: 1.7em;
  margin: 0;
}

.menu07 img {
  width: 100%;
  height: auto;
}

.menu08 a {
  width: 48.9%;
  float: left;
  padding: 0px 0 60px 0;
  margin: 3px 0;
  background: rgba(57, 38, 23, 0.7);
  text-decoration: none;
  font-size: 80%;
}

.menu08 h3 {
  text-align: center;
  color: #fff;
  line-height: 1.7em;
  margin: 0;
}

.menu08 img {
  width: 100%;
  height: auto;
}

.menu09 a {
  width: 48.9%;
  float: left;
  padding: 0px 0 60px 0;
  margin: 3px 0;
  background: rgba(57, 38, 23, 0.7);
  text-decoration: none;
  font-size: 80%;
}

.menu09 h3 {
  text-align: center;
  color: #fff;
  line-height: 1.7em;
  margin: 0;
}

.menu09 img {
  width: 100%;
  height: auto;
}

.mr1 {
  margin-right: 7px !important;
}

@media screen and (min-width: 768px) {
  .special-plate {
    width: 550px;
    display: flex;
    margin: 0 auto;
    padding: 0;
  }

  .special {
    width: 750px;
    margin: 0 auto;
    padding-top: 40px;
  }

  .special img {
    width: 100%;
  }

  .sp-none {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .special-plate {
    width: 90%;
    display: flex;
    margin: 0 auto;
    padding: 0;
  }

  .special {
    width: auto;
    margin: 0 auto;
    padding-top: 40px;
  }

  .special img {
    width: 100%;
  }

  .pc-none {
    display: none;
  }
}

.special-plate p {
  margin: 0;
}

.special-plate img {
  width: 100%;
  height: auto;
}

/* ボタン全体 */
.flowbtn17 {
  border-radius: 50%;
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  font-size: 30px;
  text-decoration: none;
  transition: .5s;
  background-color: #444;
  color: #fff;
}

/* ボタンマウスホバー時のテキスト指定 */
.flowbtn17:hover {
  text-decoration: none;
}

/* アイコンをど真ん中に */
.flowbtn17 i {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* Twitterマウスホバー時 */
.flowbtn17.fl_tw2:hover {
  background: linear-gradient(135deg, #13f1fc 0%, #0470dc 100%);
}

/* Instagramマウスホバー時 */
.flowbtn17.insta_btn2:hover {
  background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
}

/* Facebookマウスホバー時 */
.flowbtn17.fl_fb2:hover {
  background: -webkit-linear-gradient(top, #5c80c6 0%, #34528c 74%);
  background: linear-gradient(to bottom, #5c80c6 0%, #34528c 74%);
}

/* Feedlyマウスホバー時 */
.flowbtn17.fl_fd2:hover {
  background: linear-gradient(135deg, #b1ea4d 0%, #459522 100%);
  font-size: 28px;
}

/* Pocketマウスホバー時 */
.flowbtn17.fl_pk2:hover {
  background: linear-gradient(135deg, #f36265 0%, #dd4f68 100%);
}

/* はてブアイコンのサイズ */
.flowbtn17.fl_hb2 {
  font-size: 25px;
}

/* はてブマウスホバー時 */
.flowbtn17.fl_hb2:hover {
  background: -webkit-linear-gradient(top, #1fbccd 0%, #1c91d4 84%);
  background: linear-gradient(to bottom, #1fbccd 0%, #1c91d4 84%);
}

/* YouTubeマウスホバー時 */
.flowbtn17.fl_yu2:hover {
  background: linear-gradient(135deg, #f5515f 0%, #c9293c 100%);
}

/* LINEマウスホバー時 */
.flowbtn17.fl_li2:hover {
  background: linear-gradient(135deg, #3a9278 0%, #00c300 100%);
}

/* お問い合わせマウスホバー時 */
.flowbtn17.fl_ma2:hover {
  background: linear-gradient(135deg, #fad961 0%, #f76b1c 100%);
}

/* ulタグの内側余白を０にする */
ul.snsbtniti2 {
  padding: 0 !important;
}

/* ボタン全体の位置 */
.snsbtniti2 {
  display: flex;
  flex-flow: row wrap;
}

/* ボタン同士の余白 */
.snsbtniti2 li {
  flex: 0 0 48%;
  text-align: center !important;
}

.snsarea {
  width: 320px;
  margin: 30px auto 0;
}

.snsbtniti {
  font-size: 38px;
}

.snsbtniti li {
  display: inline-block;
  margin: 0 4px;
}

.mr5 {
  margin-right: 5px;
}