@charset "UTF-8";
/* ===================================================================
アミングリクルート
=================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500&display=swap");
body, div, pre, p, blockquote, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, fieldset, th, td, figure, figcaption {
  margin: 0;
  padding: 0;
}

input, textarea {
  margin: 0;
  font-size: 100%;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 100%;
}

fieldset, img {
  border: 0;
}

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

address, caption, cite, code, dfn, em, th, var {
  font-style: normal;
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
  line-height: 1.7;
}

q:after, q:before {
  content: "";
}

a, input {
  outline: none;
}

input, textarea {
  border-radius: 0;
  font-family: YuGothic, "Yu Gothic", 游ゴシック体, 游ゴシック, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "ＭＳ Ｐゴシック", Osaka, "MS PGothic", Arial, Helvetica, Verdana, sans-serif;
}

input[type=button], input[type=submit] {
  -webkit-appearance: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

abbr, acronym {
  border: 0;
}

* {
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.serif {
  font-family: serif;
}

@media screen and (min-width: 1367px) {
  .hidden-desktop {
    display: none;
  }
}
@media screen and (min-width: 961px) and (max-width: 1366px) {
  .hidden-laptop {
    display: none;
  }
}
@media screen and (min-width: 601px) and (max-width: 960px) {
  .hidden-tablet {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .hidden-mobile {
    display: none;
  }
}
.txt {
  text-align: justify;
  text-justify: inter-ideograph;
}

p, table {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 600px) {
  p, table {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 2;
  }
}

a {
  color: #212121;
  text-decoration: none;
}
a:hover {
  transition: all 0.3s;
}

/*  Inview animation  */
.inv {
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50%);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

.logo img {
  transition: all 0.3s;
}
.logo:hover img {
  opacity: 0.7;
}

/*  scroll icon animation  */
@keyframes upDown {
  0% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(10px);
  }
  40% {
    transform: translateY(0);
  }
}
/*  contents  */
.section {
  padding: 50px 0;
}

.content {
  max-width: 1300px;
  margin: auto;
  padding: 0 15px;
}
@media screen and (max-width: 600px) {
  .content.only-pc {
    padding: 0;
  }
}

.section-title {
  text-align: center;
  font-size: 1.2307692308vw;
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .section-title {
    font-size: 3.5897435897vw;
  }
}
.section-title .image {
  height: 2.5384615385vw;
  width: auto;
  margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
  .section-title .image {
    height: 6.1538461538vw;
  }
}
.section-title .image img {
  height: 100%;
  width: auto;
}

.youtube {
     position: relative;
     padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
     height: 0;
     overflow: hidden;
}
.youtube {
    text-align: center;
    margin: 15% auto;
    width: 90%;
    max-width: 850px;
}
.youtube iframe {
  position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
}
.btn-link {
  background: #5A9696;
  color: #FFFFFF;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 60px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  margin: 0 auto;
  transition: all 0.3s;
  border: solid 3px #5A9696;
}
.btn-link::after {
  content: "";
  background: url(../img/btn_arrow.svg) no-repeat center;
  background-size: contain;
  width: 10px;
  height: 15px;
  position: absolute;
  right: 15px;
  transition: all 0.3s;
}
.btn-link:hover {
  background: rgba(90, 150, 150, 0.6);
  color: #FFFFFF;
  border: solid 3px #5A9696;
}
.btn-link:hover::after {
  transform: translateX(5px);
}

.pagetop {
  background: #5A9696;
  color: #FFFFFF;
  position: fixed;
  right: 40px;
  bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  z-index: 100;
}
@media screen and (max-width: 600px) {
  .pagetop {
    right: 20px;
    bottom: 20px;
  }
}

html {
  font-size: 62.5%;
}
@media screen and (max-width: 600px) {
  html {
    font-size: 60%;
  }
}

body {
  background: #FFFFFF;
  color: #212121;
  font-family: "Noto Sans JP", sans-serif;
  height: 100%;
  width: 100%;
  line-height: 1;
  letter-spacing: 0.05rem;
  text-align: left;
  padding: 0px;
  margin: 0px;
}
@media screen and (max-width: 960px) {
  body.open {
    position: fixed;
  }
}

::-moz-selection {
  background: #212121;
  color: #FFFFFF;
  text-shadow: none;
}

::selection {
  background: #212121;
  color: #FFFFFF;
  text-shadow: none;
}

::-moz-selection {
  background: #212121;
  background: #212121;
  text-shadow: none;
}

.legacy-ie {
  background: #eee;
  width: 100%;
  padding: 100px 0;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  z-index: 10000;
}

.legacy-ie a {
  color: #4285f4;
  text-decoration: none;
}

.noscript {
  background: #f5f5f5;
  width: 100%;
  padding: 100px 0;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  z-index: 10000;
}

/*  header  */
.header {
  background: #FFFFFF;
  height: 80px;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  height: 100%;
  padding: 10px;
  margin: auto;
}
.header .container .logo {
  height: 60px;
  width: auto;
}
@media screen and (max-width: 600px) {
  .header .container .logo {
    margin: auto;
    text-align: center;
  }
}
.header .container .logo img {
  height: 100%;
  width: auto;
}
.header .container .btn-link {
  margin: 0;
}
@media screen and (max-width: 600px) {
  .header .container .btn-link {
    display: none;
  }
}

/*  footer  */
.footer {
  padding: 20px;
  font-size: 12px;
  background: #5A9696;
  color: #FFFFFF;
  text-align: center;
}

#kv {
  position: relative;
  width: 100%;
  height: 600px;
}
@media screen and (max-width: 600px) {
  #kv {
    height: 450px;
  }
  #kv .content img {
    width: 55%;
  }
}
#kv picture {
  position: absolute;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
}
#kv picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#kv .content {
  position: relative;
  z-index: 1;
}

#sp-contact {
  padding: 20px 0;
}
#sp-contact p {
  color: #5A9696;
  text-align: center;
  margin-bottom: 10px;
}

#intro {
  background: #FAF8F0;
}
#intro .content {
  text-align: center;
}
#intro .content h3 {
  color: #5A9696;
  margin-bottom: 20px;
  font-size: 3.8461538462vw;
}
@media screen and (max-width: 600px) {
  #intro .content h3 {
    font-size: 6.4102564103vw;
  }
}
#intro .content .intro-title {
  font-size: 3.0769230769vw;
  margin-bottom: 30px;
}
@media screen and (max-width: 600px) {
  #intro .content .intro-title {
    font-size: 6.4102564103vw;
    line-height: 1.7;
  }
}
#intro .content p {
  margin-top: 20px;
}

#shop {
  padding-bottom: 0;
}

#work {
  background: #FAF8F0;
}
#work .only-pc {
  margin-bottom: 30px;
}
@media screen and (min-width: 601px) {
  #work .only-pc {
    display: flex;
    justify-content: space-between;
  }
  #work .only-pc .image {
    width: 31.6666666667%;
  }
}
@media screen and (max-width: 600px) {
  #work .only-pc .image:not(:last-child) {
    margin-bottom: 30px;
  }
}
#work p {
  text-align: center;
  font-size: 1.75vw;
}
@media screen and (max-width: 600px) {
  #work p {
    font-size: 4.1025641026vw;
  }
}

#happy {
  background: url(../img/happy_bg.jpg) no-repeat top center;
  background-size: cover;
}
@media screen and (max-width: 600px) {
  #happy {
    padding: 0;
  }
}

#interview .item {
  padding: 30px 0;
  background-image: linear-gradient(90deg, rgba(247, 247, 247, 0), 40%, #f7f7f7 40%);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#interview .item:first-child {
  margin-bottom: 30px;
}
@media screen and (min-width: 961px) {
  #interview .item.reverse {
    background-image: linear-gradient(-90deg, rgba(247, 247, 247, 0), 40%, #f7f7f7 40%);
    flex-direction: row-reverse;
  }
}
@media screen and (max-width: 960px) {
  #interview .item {
    padding: 20px;
    background-image: linear-gradient(rgba(247, 247, 247, 0), 200px, #f7f7f7 200px);
  }
}
#interview .item .image,
#interview .item .text-area {
  width: 100%;
}
#interview .item .image img,
#interview .item .text-area img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 961px) {
  #interview .item .image,
  #interview .item .text-area {
    width: 50%;
  }
}
@media screen and (min-width: 961px) {
  #interview .item .text-area {
    padding: 0 40px;
  }
}
#interview .item .text-area .year {
  display: inline-block;
  padding: 0 10px;
  margin-bottom: 20px;
  background: #5A9696;
  color: #FFFFFF;
}
#interview .item .text-area .title {
  font-size: 2.8571428571vw;
  line-height: 1.7;
  margin-bottom: 30px;
}
@media screen and (max-width: 960px) {
  #interview .item .text-area .title {
    font-size: 5.1282051282vw;
    text-align: center;
  }
}
@media screen and (max-width: 960px) {
  #interview .item .text-area .image-sp {
    margin-top: 30px;
  }
}

#requirements .section-title .image {
  height: 3.3846153846vw;
  width: auto;
  margin-bottom: 22px;
}
@media screen and (max-width: 600px) {
  #requirements .section-title .image {
    height: 8.2051282051vw;
  }
}
#requirements .requirements-table:not(:last-child) {
  margin-bottom: 50px;
}
#requirements .requirements-table h2 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
#requirements .requirements-table table {
  width: 100%;
  border-top: 1px dotted #212121;
}
#requirements .requirements-table table tr {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  border-bottom: 1px dotted #212121;
}
#requirements .requirements-table table tr th {
  width: 260px;
  padding: 20px;
  vertical-align: center;
  background: rgba(90, 150, 150, 0.3);
  display: flex;
  align-items: center;
}
@media screen and (max-width: 960px) {
  #requirements .requirements-table table tr th {
    width: 100%;
    padding: 10px;
    border-bottom: 1px dotted #212121;
  }
}
#requirements .requirements-table table tr td {
  width: calc(100% - 260px);
  padding: 20px;
}
@media screen and (max-width: 960px) {
  #requirements .requirements-table table tr td {
    width: 100%;
    padding: 10px;
  }
}
#requirements a.btn-link {
  width: 320px;
}

#casual {
  background: url(../img/casual_bg.jpg) no-repeat;
  background-size: cover;
}
#casual .content {
  padding: 0;
}
@media screen and (min-width: 961px) {
  #casual {
    display: flex;
  }
  #casual .image {
    width: 40%;
    height: 500px;
  }
}
@media screen and (min-width: 961px) and (min-width: 1301px) {
  #casual .image {
    max-width: calc((100vw - 1300px) / 2 + 520px);
  }
}
@media screen and (min-width: 961px) {
  #casual .image img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
}
#casual .text-area {
  text-align: center;
  padding: 40px 0;
  box-sizing: border-box;
}
@media (min-width: 1301px) {
  #casual .text-area {
    margin-right: calc((100vw - 1300px) / 2);
    max-width: 780px;
  }
}
@media screen and (min-width: 961px) {
  #casual .text-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60%;
  }
}
#casual .text-area .title {
  margin-top: auto;
  margin-bottom: 30px;
  font-size: 3.0769230769vw;
}
@media screen and (max-width: 600px) {
  #casual .text-area .title {
    font-size: 7.6923076923vw;
    line-height: 1.7;
  }
}
#casual .text-area p {
  font-size: 1.2307692308vw;
  margin-bottom: 30px;
}
@media screen and (max-width: 600px) {
  #casual .text-area p {
    font-size: 3.3333333333vw;
  }
}
#casual .text-area .btn-link {
  width: 90%;
  margin-bottom: auto;
}

.entry {
  max-width: 1000px;
}
@media screen and (min-width: 601px) {
  .entry {
    text-align: center;
  }
}
.entry img {
  width: 100%;
  height: auto;
  margin: 30px 0;
}
.entry h1 {
  position: relative;
  display: block;
  border-top: solid #5A9696 1px;
  border-bottom: solid #5A9696 1px;
  padding: 30px 0;
  color: #5A9696;
  font-size: 3.0769230769vw;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .entry h1 {
    padding: 20px 0;
    font-size: 5.1282051282vw;
  }
}
.entry h1::before {
  content: "";
  display: block;
  border-top: solid #5A9696 1px;
  position: absolute;
  top: 10px;
  width: 100%;
}
.entry h1::after {
  content: "";
  display: block;
  border-top: solid #5A9696 1px;
  position: absolute;
  bottom: 10px;
  width: 100%;
}
.entry h2, .entry a {
  font-size: 2.3076923077vw;
}
@media screen and (max-width: 600px) {
  .entry h2, .entry a {
    font-size: 4.358974359vw;
  }
}
.entry a {
  color: #5A9696;
  text-decoration: underline;
}
.entry h3 {
  font-size: 2.6923076923vw;
  color: #5A9696;
}
@media screen and (max-width: 600px) {
  .entry h3 {
    font-size: 5.1282051282vw;
  }
}
.entry h5 {
  font-size: 14px !important;
}
.entry h6 {
  font-size: 14px !important;
}
.entry p {
  margin-bottom: 10px;
}
.entry blockquote {
  background: #EEE;
  padding: 15px 15px 5px 15px;
  margin-bottom: 10px;
}
.entry ul {
  list-style: disc;
  margin-left: 20px;
}
.entry ol {
  margin-left: 20px;
}
.entry strong {
  font-weight: bold;
}
.entry .alignleft {
  display: inline;
  float: left;
  margin-right: 20px;
}
.entry .alignright {
  display: inline;
  float: right;
  margin-left: 20px;
}
.entry .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.entry p:has(iframe) {
  width: 100vw;
  margin: 0 -15px;
  line-height: 0;
}
@media (min-width: 1001px) {
  .entry p:has(iframe) {
    margin-left: calc((100vw - 1000px) / 2 * -1 - 15px);
  }
}
.entry p:has(iframe) iframe {
  width: 100%;
  height: 300px;
}