@charset "utf-8";
/* CSS Document */

/* 共通設定 */
html {
  overflow: overlay;
  height: 100%;
}
* html .clearfix {
  height: 1px;
}
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", Meiryo, sans-serif;
  color: #595345;
  /* background: #ebe7e0; */
}
.svg-symbol {
  display: none;
}

.warp {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
  min-height: 100vh;
}
.en {
  font-size: 0.9em;
  letter-spacing: 0px;
  font-weight: bold;
}

h1.title,
h2.title,
h3.title,
h4.title,
h5.title {
  font-weight: normal;
  margin: 15px 0 40px 0;
  font-size: 1.8em;
}

h1.title-line,
h2.title-line,
h3.title-line {
  font-size: 1.8em;
  position: relative;
  padding-bottom: 15px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: normal;
  line-height: 1.8em;
}

h1.title-line:after,
h2.title-line:after,
h3.title-line:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: #71b7a6;
}

a {
  text-decoration: none;
  color: #595345;
  transition: all 0.2s linear;
}
a:hover {
  opacity: 0.8;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
em {
  font-weight: bold;
  font-style: normal;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

html::-webkit-scrollbar {
  overflow: hidden;
  width: 3px;
}
html::-webkit-scrollbar:horizontal {
  height: 3px;
}
html::-webkit-scrollbar-button {
  display: none;
}
html::-webkit-scrollbar-thumb {
  background: #71b7a6;
}
html::-webkit-scrollbar-corner {
  background: #71b7a6;
}
html::-webkit-scrollbar-track {
  background: transparent;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
  .pc {
    display: block;
  }
  p {
    line-height: 2em;
    font-size: 1.2em;
    margin-block-start: 1.5em;
    margin-block-end: 1.5em;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block;
  }
  p {
    line-height: 2em;
    font-size: 1em;
    margin-block-start: 1.5em;
    margin-block-end: 1.5em;
  }
}

.animation {
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

.fade,
.fadeup,
.fadedown,
.fadeleft,
.faderight,
.blur {
  opacity: 0;
}

.fade.animated {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-name: fadein;
  animation-name: fadein;
}
.fadeup.animated {
  -webkit-animation-name: fadeup;
  animation-name: fadeup;
  -webkit-transform: translateY(20%);
  transform: translateY(20%);
}
.fadedown.animated,
.fadeup.animated {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
}
.fadedown.animated {
  -webkit-animation-name: fadedown;
  animation-name: fadedown;
  -webkit-transform: translateY(-20%);
  transform: translateY(-20%);
}
.fadeleft.animated {
  -webkit-animation-name: fadeleft;
  animation-name: fadeleft;
  -webkit-transform: translateX(-20%);
  transform: translateX(-20%);
}
.fadeleft.animated,
.faderight.animated {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
}
.faderight.animated {
  -webkit-animation-name: faderight;
  animation-name: faderight;
  -webkit-transform: translateX(20%);
  transform: translateX(20%);
}
.blur.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: blur-in;
  animation-name: blur-in;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.text-marker {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#fbf3aa),
    to(#fff7ad)
  ) !important;
  background-image: linear-gradient(90deg, #fff7ad, #fff7ad) !important;
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 30%;
  display: inline;
  font-weight: 700;
  opacity: 1;
  position: relative;
}
.text-marker.animated {
  background-size: 100% 30%;
}

.bouncein.animated {
  -webkit-animation: bounce 3s ease-in-out infinite;
  animation: bounce 3s ease-in-out infinite;
  opacity: 1;
}

.zoomin.animated {
  -webkit-animation: zoomIn 0.6s ease-in-out;
  animation: zoomIn 0.6s ease-in-out;
  opacity: 1;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20%);
    transform: translateY(20%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20%);
    transform: translateY(20%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes fadedown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20%);
    transform: translateY(-20%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadedown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20%);
    transform: translateY(-20%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20%);
    transform: translateX(-20%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20%);
    transform: translateX(-20%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes faderight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20%);
    transform: translateX(20%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes faderight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20%);
    transform: translateX(20%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes blur-in {
  0% {
    -webkit-filter: blur(10px);
    filter: blur(10px);
    opacity: 0;
  }
  to {
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
  }
}
@keyframes blur-in {
  0% {
    -webkit-filter: blur(10px);
    filter: blur(10px);
    opacity: 0;
  }
  to {
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
  }
}

@keyframes bounce {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  30% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  70% {
    -webkit-transform: scale(1.025);
    transform: scale(1.025);
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.stroke__line {
  height: 70px;
  width: 1px;
  margin: 5% auto;
}

.stroke {
  position: relative;
}
.stroke .border {
  content: "";
  position: absolute;
  opacity: 0;
}
.stroke .border.top,
.stroke .border.bottom {
  width: 100%;
}

.stroke .border.top {
  border-top: 1px solid #4c4948;
  right: 0;
  top: 0;
}
.stroke .border.bottom {
  border-bottom: 1px solid #4c4948;
  left: 0;
  bottom: 0;
}

.stroke .border.right,
.stroke .border.left {
  height: 100%;
}

.animation.animated .border {
  opacity: 1;
}

.stroke .border.right {
  border-right: 1px solid #4c4948;
  right: 0;
  top: 0;
}
.stroke .border.left {
  border-left: 1px solid #4c4948;
  left: 0;
  top: 0;
}

.stroke .border.line-left {
  width: 50%;
  border-bottom: 1px solid #4c4948;
  left: 50%;
  top: 0;
}
.stroke .border.line-right {
  width: 50%;
  border-bottom: 1px solid #4c4948;
  right: 50%;
  top: 0;
}

.stroke .border.down {
  height: 100%;
  border-left: 1px solid #4c4948;
  left: 0;
  top: 0;
}

.stroke.animated .border {
  opacity: 1;
}
.stroke.animated .border.top,
.stroke.animated .border.bottom {
  animation: stroke-width 1.8s;
}
.stroke.animated .border.right,
.stroke.animated .border.left {
  animation: stroke-height 1.8s;
}

.stroke.animated .border.line-left {
  animation: stroke-line-left 1.8s;
}
.stroke.animated .border.line-right {
  animation: stroke-line-right 1.8s;
}

.stroke.animated .border.down {
  animation: stroke-down 1.8s infinite;
}

@keyframes stroke-width {
  0% {
    width: 0;
    opacity: 1;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}
@keyframes stroke-height {
  0% {
    height: 0;
    opacity: 1;
  }
  100% {
    height: 100%;
    opacity: 1;
  }
}

@keyframes stroke-line-left {
  0% {
    width: 0;
    opacity: 1;
  }
  50% {
    width: 50%;
    opacity: 1;
  }
}
@keyframes stroke-line-right {
  0% {
    width: 0;
    opacity: 1;
  }
  50% {
    width: 50%;
    opacity: 1;
  }
}

@keyframes stroke-down {
  0% {
    height: 0;
    opacity: 0;
  }
  90% {
    height: 90%;
    opacity: 1;
  }
  100% {
    height: 100%;
    opacity: 0;
  }
}

.delay-02 {
  animation-delay: 0.6s;
}
.delay-04 {
  animation-delay: 0.7s;
}
.delay-06 {
  animation-delay: 0.8s;
}

/* ヘッダー */
#head {
  width: 100%;
  padding: 7px 0;
  z-index: 9998;
  background: #fff;
}
#head .head-wp {
  margin: 0 auto;
  position: relative;
}
#head a {
}
#head h1 {
  margin: 0;
}

#head img {
  width: 50%;
  max-width: 150px;
  margin: 0 1%;
}

@media screen and (min-width: 768px) {
  #footer {
    background: #795548;
    padding: 50px 0;
    /* height: 300px; */
    box-sizing: border-box;
  }
  #footer .footer-wp {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    color: #fff;
    position: relative;
  }
  #footer .footer-wp address {
    font-style: normal;
  }
  #footer .info-box {
    width: 500px;
  }

  #footer .info-box a {
    color: #fff;
  }
  #footer .info-box h2 {
    font-size: 1.2em;
    font-weight: normal;
  }
  #footer .info-box .address-list {
    margin-top: 20px;
    margin-bottom: 15px;
  }
  #footer .info-box .address-list li {
    margin: 5px 0;
  }
  #footer .info-box a.link-btn {
    background: #fff;
    color: #795548;
    display: block;
    width: 80px;
    font-size: 1.2em;
    padding: 5px 10px;
    box-sizing: border-box;
    text-align: center;
    margin: 0;
    margin-top: 14px;
  }

  #footer .logo-list {
    position: absolute;
    right: 0;
    bottom: 85px;
    font-size: 1.1em;
  }
  #footer .logo-list li {
    display: inline-block;
  }
  #footer .logo-list img {
    width: 75px;
  }

  #footer .page-list a {
    color: #fff;
  }
  #footer .page-list {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.1em;
  }
  #footer .page-list li {
    margin: 0 5px;
  }
  #footer .page-list li:nth-child(1) {
    display: inline-block;
  }
  #footer .page-list li:nth-child(2) {
    display: inline-block;
  }
  #footer .page-list li:nth-child(3) {
    display: inline-block;
  }
  #footer .page-list li:nth-child(4) {
    display: inline-block;
    margin-right: 0;
  }
  #footer .copyright {
    text-align: right;
    width: 300px;
    position: absolute;
    right: 0;
    bottom: 5px;
    font-size: 0.8em;
  }
  #footer .back {
    border-radius: 50%;
    background: #231815;
    display: block;
    width: 60px;
    height: 60px;
    position: absolute;
    top: -30px;
    right: 0;
    padding: 10px;
    box-sizing: border-box;
  }
  #footer .back img {
    border-radius: 50%;
  }

  /* 採用案内 */
  #recruit {
  }
  #recruit .hd {
    height: 75px;
    width: 1px;
    margin: 20px auto 60px auto;
  }
  #recruit .section-001 {
    padding: 80px 0;
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
  }
  #recruit .section-001 h1 {
    letter-spacing: 1px;
  }
  #recruit .section-001 h1 br {
    display: none;
  }

  #recruit .section-001 {
  }
  #recruit .section-001 .inner {
    text-align: center;
  }

  #recruit .section-001 .detail-list {
    margin: 50px auto;
    border: 1px dotted #9e9e9e;
    padding: 5%;
    box-sizing: border-box;
  }
  #recruit .section-001 .detail-list-item {
    padding: 10px 0;
    margin: 10px 0;
    border-bottom: 1px dotted #9e9e9e;
  }
  #recruit .section-001 .detail-list-item:last-child {
    border: 0;
    padding-bottom: 0;
  }

  #recruit .section-001 .detail-list h2 {
    font-weight: normal;
    display: inline-block;
    width: 20%;
    vertical-align: top;
    margin: 0;
    text-align: justify;
    text-align-last: justify;
    margin-right: 10%;
    line-height: 2em;
    font-size: 1em;
  }

  #recruit .section-001 .detail-list .text {
    display: inline-block;
    width: 60%;
    vertical-align: top;
    margin: 0;
    text-align: justify;
    font-size: 1.1em;
  }
  #recruit .section-001 .detail-list .text-list {
    display: inline-block;
    width: 60%;
    vertical-align: top;
    text-align: justify;
  }
  #recruit .section-001 .detail-list .text-list-item {
    font-size: 1.2em;
    margin: 0 0 20px 0;
  }
  #recruit .section-001 .detail-list .text-list-item:nth-child(2) {
    border-top: 1px dotted #9e9e9e;
    padding-top: 40px;
  }

  #recruit .section-001 .detail-list h3 {
    margin: 10px;
    font-size: 0.9em;
    margin-top: 0px;
    font-weight: normal;
  }

  #recruit .section-001 .detail-list .list-item-text {
    margin: 10px;
  }
  #recruit .section-001 .detail-list .detail-list-item .list-item-text {
    font-size: 1em;
  }

  #recruit small {
    display: block;
  }

  #recruit a.link-btn {
    background: #595345;
    color: #ffffff;
    display: block;
    width: 150px;
    font-size: 1.2em;
    padding: 11px 10px;
    box-sizing: border-box;
    text-align: center;
    margin: 60px auto;
  }

  .contact-link-btn {
    display: block;
    width: 200px;
    margin: 0 auto;
    background: #795548;
    color: #fff;
    padding: 20px;
    font-size: 1.2em;
    border-radius: 5px;
  }
}

@media screen and (max-width: 767px) {
  .en {
  }
  h1.title,
  h2.title,
  h3.title,
  h4.title,
  h5.title {
    font-weight: normal;
    margin: 10px 0 40px 0;
    font-size: 1.6em;
  }

  h2.title-line,
  h3.title-line {
    font-size: 1.5em;
    position: relative;
    padding-bottom: 15px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: normal;
    line-height: 1.8em;
  }

  #head {
    position: relative;
    max-width: 500px;
    margin: 0px auto;
    width: 100%;
  }
  #head h1 {
    margin: 0 10px;
    font-weight: normal;
    width: 225px;
  }
  #head h1 span {
    display: block;
    font-size: 0.35em;
    margin-bottom: 8px;
  }

  #footer {
    background: #795548;
    padding: 50px 0;
  }
  #footer .footer-wp {
    width: 92%;
    max-width: 375px;
    margin: 0 auto;
    color: #fff;
    position: relative;
  }
  #footer .footer-wp address {
    font-style: normal;
  }
  #footer .info-box {
  }

  #footer .info-box a {
    color: #fff;
  }

  #footer .info-box h2 {
    font-size: 1em;
    font-weight: normal;
  }

  #footer .info-box ul {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  #footer .info-box ul li {
    margin: 5px 0;
  }
  #footer .info-box a.link-btn {
    background: #fff;
    color: #71b7a6;
    display: block;
    width: 80px;
    font-size: 1.2em;
    padding: 5px 10px;
    box-sizing: border-box;
    text-align: center;
    margin: 0;
    margin-top: 14px;
    letter-spacing: 1px;
  }

  #footer .page-list a {
    color: #fff;
  }
  #footer .page-list {
    font-size: 1em;
    margin: 30px 0 20px 0;
    width: 280px;
  }
  #footer .page-list li {
  }
  #footer .page-list li:nth-child(1) {
    display: block;
    margin-bottom: 10px;
  }
  #footer .page-list li:nth-child(2) {
    display: inline-block;
  }
  #footer .page-list li:nth-child(3) {
    display: inline-block;
    margin: 0 10px;
  }
  #footer .page-list li:nth-child(4) {
    display: inline-block;
  }

  #footer .logo-list {
    margin: 30px 0 20px 0;
  }
  #footer .logo-list li {
    display: inline-block;
    margin-right: 5px;
  }
  #footer .logo-list img {
    width: 100px;
  }

  #footer .copyright {
    text-align: left;
    font-size: 0.7em;
  }
  #footer .back {
    border-radius: 50%;
    background: #231815;
    display: block;
    width: 60px;
    height: 60px;
    position: absolute;
    bottom: 0px;
    right: 0;
    padding: 10px;
    box-sizing: border-box;
  }
  #footer .back img {
    border-radius: 50%;
  }

  /* 採用案内 */
  #recruit {
  }
  #recruit .hd {
    height: 75px;
    width: 1px;
    margin: 20px auto 60px auto;
  }
  #recruit .section-001 {
    padding: 80px 0 20px 0;
    text-align: center;
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
  }
  #recruit .section-001 h1 {
    letter-spacing: 1px;
    line-height: 1.8em;
  }
  #recruit .section-001 p {
    text-align: justify;
  }
  #recruit .section-001 p br {
  }

  #recruit .section-001 {
  }
  #recruit .section-001 .inner {
    text-align: center;
  }

  #recruit .section-001 .detail-list {
    margin: 50px auto;
    box-sizing: border-box;
    border: 1px dotted #9e9e9e;
    padding: 5%;
    box-sizing: border-box;
  }
  #recruit .section-001 .detail-list-item {
    padding: 10px 0;
    margin: 10px 0;
    border-bottom: 1px dotted #9e9e9e;
  }
  #recruit .section-001 .detail-list-item:last-child {
    border: 0;
    padding-bottom: 0;
  }

  #recruit .section-001 .detail-list h2 {
    font-weight: normal;
    vertical-align: top;
    margin: 0;
    margin-bottom: 15px;
    text-align: justify;
    line-height: 2em;
    font-size: 1em;
    display: block;
  }

  #recruit .section-001 .detail-list .text {
    display: inline-block;
    width: 100%;
    vertical-align: top;
    margin: 0;
    text-align: justify;
    font-size: 1em;
  }
  #recruit .section-001 .detail-list .text-list {
    width: 100%;
    vertical-align: top;
    text-align: justify;
  }
  #recruit .section-001 .detail-list .text-list-item {
    font-size: 1.2em;
    margin: 0 0 20px 0;
  }
  #recruit .section-001 .detail-list .text-list-item:nth-child(2) {
    border-top: 1px dotted #9e9e9e;
    padding-top: 40px;
  }

  #recruit .section-001 .detail-list h3 {
    margin: 10px;
    font-size: 0.9em;
    margin-top: 0px;
    font-weight: normal;
  }

  #recruit .section-001 .detail-list .list-item-text {
    margin: 10px;
  }
  #recruit .section-001 .detail-list .detail-list-item .list-item-text {
    font-size: 0.9em;
  }

  #recruit small {
    display: block;
  }
  #recruit a.link-btn {
    background: #595345;
    color: #ffffff;
    display: block;
    width: 150px;
    font-size: 1.2em;
    padding: 11px 10px;
    box-sizing: border-box;
    text-align: center;
    margin: 0 auto 30px auto;
  }

  .contact-link-btn {
    display: block;
    width: 200px;
    margin: 0 auto 40px auto;
    background: #795548;
    color: #fff;
    padding: 20px;
    font-size: 1.2em;
    border-radius: 5px;
  }
}
@media screen and (max-width: 500px) {
}
@media screen and (min-width: 1024px) {
}
@media screen and (min-width: 1280px) {
}
@media screen and (min-width: 1360px) {
}
