@charset "UTF-8";
:root {
  --numOfListA: 7; /* リストAのimgタグの数 */
  --imgW: 602px; /* ここで画像の横幅を指定、px指定を推奨 */
  --mBetweenImg: 0px; /* ここで画像間の余白を指定。px指定を推奨 */
}

html body .container {
  width: calc(100% - 170px);
}
@media screen and (max-width: 1200px) {
  html body .container {
    width: 100%;
  }
}
html body .container main .ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 60px;
}
@media screen and (max-width: 768px) {
  html body .container main .ttl {
    padding-top: 38px;
  }
}
html body .container main .ttl h2 {
  writing-mode: vertical-rl;
  color: var(--white);
  font-size: 40px;
  font-family: "Shippori Mincho", serif;
  font-weight: medium;
  letter-spacing: 0.4em;
  padding-bottom: 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body .container main .ttl h2 {
    font-size: 20px;
    padding-bottom: 20px;
  }
}
html body .container main .ttl h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  width: 120px;
  background: var(--green);
}
html body .container main .ttl p {
  color: var(--white);
  font-size: 20px;
  letter-spacing: 0.18em;
  margin-top: 35px;
}
@media screen and (max-width: 768px) {
  html body .container main .ttl p {
    margin-top: 20px;
    font-size: 13px;
  }
}
html body .container main .kv-container {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
html body .container main .kv-container .kv-img-pc,
html body .container main .kv-container .kv-img-sp {
  background: #eee;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
}
html body .container main .kv-container .kv-img-pc.fadeInImg,
html body .container main .kv-container .kv-img-sp.fadeInImg {
  z-index: 100;
  -webkit-animation: fadeIn 2s forwards, scaleUp 15s forwards;
          animation: fadeIn 2s forwards, scaleUp 15s forwards;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes scaleUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
@keyframes scaleUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
html body .container main .declaration .inner {
  width: 1000px;
  margin: 0 auto;
  padding-top: 145px;
  padding-bottom: 50px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
}
@media screen and (max-width: 1200px) {
  html body .container main .declaration .inner {
    width: 100%;
  }
}
@media screen and (max-width: 1200px) and (max-width: 768px) {
  html body .container main .declaration .inner {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 45px;
    padding-bottom: 65px;
    padding-left: 50px;
    padding-right: 50px;
  }
}
html body .container main .declaration .inner .declaration-ttl h1 {
  writing-mode: vertical-rl;
  font-size: 40px;
  letter-spacing: 0.13em;
  line-height: 1.75;
  font-family: "Shippori Mincho", serif;
  font-weight: normal;
  color: var(--db);
  margin-left: 40px;
}
@media screen and (max-width: 768px) {
  html body .container main .declaration .inner .declaration-ttl h1 {
    writing-mode: horizontal-tb;
    margin-left: 0;
    font-size: 20px;
  }
}
html body .container main .declaration .inner .declaration-ttl h1 span {
  margin-top: -25px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  html body .container main .declaration .inner .declaration-ttl h1 span {
    margin-top: 0;
  }
}
html body .container main .declaration .inner .declaration-txt {
  writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
  html body .container main .declaration .inner .declaration-txt {
    writing-mode: horizontal-tb;
    margin-top: 15px;
  }
}
html body .container main .declaration .inner .declaration-txt p {
  font-size: 18px;
  letter-spacing: 0.16em;
  line-height: 2.8;
  color: var(--db);
  font-family: "小塚ゴシック Pro", "Kozuka Gothic Pro", sans-serif;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  html body .container main .declaration .inner .declaration-txt p {
    font-size: 13px;
    line-height: 2.2;
    letter-spacing: 0.1em;
    font-family: "Shippori Mincho", serif;
    font-weight: normal;
  }
}
html body .container main .declaration .inner .declaration-logo {
  margin-right: 20px;
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  html body .container main .declaration .inner .declaration-logo {
    margin-right: 0;
    margin-left: auto;
  }
}
html body .container main .declaration .inner .declaration-logo img {
  height: 50px;
}
@media screen and (max-width: 768px) {
  html body .container main .declaration .inner .declaration-logo img {
    height: 25px;
  }
}
html body .container main .business .inner {
  max-width: 1150px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body .container main .business .inner {
    width: 100%;
  }
}
html body .container main .business .inner .business-bk {
  width: 100%;
  height: 600px;
  background: url("../img/bk.jpg");
}
@media screen and (max-width: 768px) {
  html body .container main .business .inner .business-bk {
    height: 290px;
  }
}
html body .container main .business .inner .business-top {
  width: 960px;
  margin: 0 auto 70px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  html body .container main .business .inner .business-top {
    width: 100%;
    justify-content: center;
  }
}
@media screen and (max-width: 1200px) and (max-width: 768px) {
  html body .container main .business .inner .business-top {
    align-items: center;
    flex-direction: column;
    padding: 0 50px;
  }
}
html body .container main .business .inner .business-top .business-img {
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  html body .container main .business .inner .business-top .business-img {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  html body .container main .business .inner .business-top .business-img img {
    display: block;
    margin: 0 auto;
  }
}
html body .container main .business .inner .business-top .business-content {
  display: flex;
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  html body .container main .business .inner .business-top .business-content {
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
    margin-top: -25px;
  }
}
html body .container main .business .inner .business-top .business-content h3 {
  writing-mode: vertical-rl;
  font-family: "Shippori Mincho", serif;
  font-size: 40px;
  font-weight: medium;
  letter-spacing: 0.4em;
  color: var(--db);
}
@media screen and (max-width: 768px) {
  html body .container main .business .inner .business-top .business-content h3 {
    font-size: 20px;
    padding: 15px 10px;
    margin-bottom: 20px;
    background: var(--white);
  }
}
html body .container main .business .inner .business-top .business-content p {
  color: var(--gray-text);
  letter-spacing: 0em;
  line-height: 1.875;
  padding-right: 15px;
}
@media screen and (max-width: 768px) {
  html body .container main .business .inner .business-top .business-content p {
    padding: 0 12px 0 12px;
    font-size: 13px;
    width: 100%;
  }
}
html body .container main .business .inner .business-top .business-content p span {
  font-weight: bold;
  display: block;
  letter-spacing: 0.16em;
  margin-bottom: 5px;
}
html body .container main .business .inner .business-top .business-left {
  margin-top: -180px;
  width: 430px;
}
@media screen and (max-width: 1200px) {
  html body .container main .business .inner .business-top .business-left {
    width: 380px;
    margin-right: 30px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 768px) {
  html body .container main .business .inner .business-top .business-left {
    width: 100%;
    margin-top: -60px;
    margin-right: 0;
  }
}
html body .container main .business .inner .business-top .business-right {
  width: 430px;
  margin-top: -60px;
}
@media screen and (max-width: 1200px) {
  html body .container main .business .inner .business-top .business-right {
    width: 380px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 768px) {
  html body .container main .business .inner .business-top .business-right {
    width: 100%;
    margin-top: 65px;
  }
}
html body .container main .business .inner .business-bottom {
  width: 1000px;
  margin: 0 auto 190px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1200px) {
  html body .container main .business .inner .business-bottom {
    width: 100%;
    padding: 0 25px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 768px) {
  html body .container main .business .inner .business-bottom {
    flex-direction: column;
    padding: 0 50px;
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 1200px) {
  html body .container main .business .inner .business-bottom .business-img {
    width: 50%;
  }
}
@media screen and (max-width: 1200px) and (max-width: 768px) {
  html body .container main .business .inner .business-bottom .business-img {
    width: auto;
  }
}
@media screen and (max-width: 1200px) {
  html body .container main .business .inner .business-bottom .business-img img {
    display: block;
    width: 100%;
  }
}
html body .container main .business .inner .business-bottom .business-content {
  margin-left: 50px;
  display: flex;
  align-items: center;
  width: 500px;
}
@media screen and (max-width: 1200px) {
  html body .container main .business .inner .business-bottom .business-content {
    margin-left: 20px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 768px) {
  html body .container main .business .inner .business-bottom .business-content {
    flex-direction: column;
    width: 100%;
    margin-left: 0;
    margin-top: -25px;
  }
}
html body .container main .business .inner .business-bottom .business-content h3 {
  writing-mode: vertical-rl;
  font-family: "Shippori Mincho", serif;
  font-size: 40px;
  font-weight: medium;
  letter-spacing: 0.4em;
  color: var(--db);
  margin-right: 40px;
}
@media screen and (max-width: 1200px) {
  html body .container main .business .inner .business-bottom .business-content h3 {
    margin-right: 20px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 768px) {
  html body .container main .business .inner .business-bottom .business-content h3 {
    font-size: 20px;
    padding: 15px 10px;
    margin-right: 0;
    margin-bottom: 20px;
    background: var(--white);
  }
}
html body .container main .business .inner .business-bottom .business-content p {
  color: var(--gray-text);
  letter-spacing: 0.06em;
  line-height: 1.875;
}
@media screen and (max-width: 768px) {
  html body .container main .business .inner .business-bottom .business-content p {
    padding: 0 12px;
    font-size: 13px;
    width: 100%;
  }
}
html body .container main .business .inner .business-bottom .business-content p span {
  font-weight: bold;
  display: block;
  letter-spacing: 0.16em;
}
html body .container main .slide-container {
  overflow: hidden;
}
html body .container main .slide-container .slider-inner {
  display: flex;
  font-size: 0; /* 余計な余白を削除 */
  -webkit-animation: slideshow 45s linear infinite;
          animation: slideshow 45s linear infinite;
}
html body .container main .slide-container .slider-inner .slider-img {
  width: var(--imgW);
}
html body .container main .slide-container .slider-inner .slider-img,
html body .container main .slide-container .slider-inner .slider-img {
  margin-left: var(--mBetweenImg);
}
@-webkit-keyframes slideshow {
  100% {
    transform: translateX(calc((var(--numOfListA) * var(--imgW) + var(--mBetweenImg) * var(--numOfListA)) * -1));
  }
}
@keyframes slideshow {
  100% {
    transform: translateX(calc((var(--numOfListA) * var(--imgW) + var(--mBetweenImg) * var(--numOfListA)) * -1));
  }
}
html body .container main .greeting {
  background: var(--db-2);
  padding-top: 255px;
}
@media screen and (max-width: 768px) {
  html body .container main .greeting {
    padding-top: 50px;
  }
}
html body .container main .greeting .inner .greeting-container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 190px;
}
@media screen and (max-width: 768px) {
  html body .container main .greeting .inner .greeting-container {
    flex-direction: column;
    padding-bottom: 65px;
  }
}
html body .container main .greeting .inner .greeting-container .greeting-left {
  max-height: 35.714vw;
  height: 35.714vw;
  max-width: 33.571vw;
  width: 33.571vw;
  background: url("../img/bk.jpg");
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 80px;
}
@media screen and (max-width: 768px) {
  html body .container main .greeting .inner .greeting-container .greeting-left {
    max-width: none;
    max-height: none;
    height: 225px;
    width: calc(100% - 50px);
    margin: 0 25px;
  }
}
html body .container main .greeting .inner .greeting-container .greeting-left .ttl {
  padding-top: 0;
}
html body .container main .greeting .inner .greeting-container .greeting-right {
  width: 650px;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  html body .container main .greeting .inner .greeting-container .greeting-right {
    width: 100%;
    width: calc(100% - 76px);
    margin: 0 38px;
    padding: 0 12px;
  }
}
html body .container main .greeting .inner .greeting-container .greeting-right .greeting-top-content {
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  html body .container main .greeting .inner .greeting-container .greeting-right .greeting-top-content {
    margin-bottom: 50px;
  }
}
html body .container main .greeting .inner .greeting-container .greeting-right .greeting-top-content p {
  letter-spacing: 0.1em;
  color: var(--white);
  line-height: 2;
}
@media screen and (max-width: 768px) {
  html body .container main .greeting .inner .greeting-container .greeting-right .greeting-top-content p {
    font-size: 13px;
  }
}
html body .container main .greeting .inner .greeting-container .greeting-right .greeting-top-content p span {
  font-weight: bold;
  display: block;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  html body .container main .greeting .inner .greeting-container .greeting-right .greeting-top-content p span {
    margin-top: 30px;
    margin-bottom: 15px;
  }
}
html body .container main .greeting .inner .greeting-container .greeting-right .greeting-top-content p:first-child {
  margin-top: 20px;
}
html body .container main .greeting .inner .greeting-container .greeting-right .greeting-top-content p:not(:first-child) {
  margin-top: 15px;
}
html body .container main .greeting .inner .greeting-container .greeting-right .greeting-bottom-content {
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 900px) {
  html body .container main .greeting .inner .greeting-container .greeting-right .greeting-bottom-content {
    flex-direction: column;
    align-items: center;
  }
}
html body .container main .greeting .inner .greeting-container .greeting-right .greeting-bottom-content .left-img {
  margin-right: 75px;
}
@media screen and (max-width: 900px) {
  html body .container main .greeting .inner .greeting-container .greeting-right .greeting-bottom-content .left-img {
    margin-right: 0;
  }
}
@media screen and (max-width: 900px) {
  html body .container main .greeting .inner .greeting-container .greeting-right .greeting-bottom-content .left-img img {
    width: 380px;
  }
}
html body .container main .greeting .inner .greeting-container .greeting-right .greeting-bottom-content .right-content {
  color: var(--white);
}
html body .container main .greeting .inner .greeting-container .greeting-right .greeting-bottom-content .right-content .name {
  font-size: 16px;
  margin-bottom: 40px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 900px) {
  html body .container main .greeting .inner .greeting-container .greeting-right .greeting-bottom-content .right-content .name {
    text-align: center;
    margin-top: 23px;
    font-size: 13px;
    margin-bottom: 20px;
  }
}
html body .container main .greeting .inner .greeting-container .greeting-right .greeting-bottom-content .right-content .name span {
  font-family: "Shippori Mincho", serif;
  font-size: 28px;
  margin-top: 15px;
  display: block;
}
@media screen and (max-width: 900px) {
  html body .container main .greeting .inner .greeting-container .greeting-right .greeting-bottom-content .right-content .name span {
    font-size: 20px;
    margin-top: 7px;
  }
}
html body .container main .greeting .inner .greeting-container .greeting-right .greeting-bottom-content .right-content .certification {
  margin-bottom: 40px;
}
@media screen and (max-width: 900px) {
  html body .container main .greeting .inner .greeting-container .greeting-right .greeting-bottom-content .right-content .certification {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 0;
  }
}
html body .container main .greeting .inner .greeting-container .greeting-right .greeting-bottom-content .right-content .certification .cete {
  display: inline-block;
  font-size: 14px;
  padding: 8px 25px 6px;
  border: 1px solid var(--green);
}
@media screen and (max-width: 900px) {
  html body .container main .greeting .inner .greeting-container .greeting-right .greeting-bottom-content .right-content .certification .cete {
    font-size: 13px;
    margin-bottom: 15px;
  }
}
html body .container main .greeting .inner .greeting-container .greeting-right .greeting-bottom-content .right-content .certification p {
  font-size: 16px;
  margin-bottom: 15px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 900px) {
  html body .container main .greeting .inner .greeting-container .greeting-right .greeting-bottom-content .right-content .certification p {
    text-align: center;
    font-size: 13px;
    margin-bottom: 8px;
  }
}
html body .container main .infomation {
  background: var(--db-2);
  padding-bottom: 225px;
}
@media screen and (max-width: 768px) {
  html body .container main .infomation {
    padding-bottom: 80px;
    padding-left: 12px;
    padding-right: 12px;
  }
}
html body .container main .infomation .inner .infomation-container {
  width: 920px;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  html body .container main .infomation .inner .infomation-container {
    width: 100%;
    padding: 0 25px;
  }
}
html body .container main .infomation .inner .infomation-container .ttl-area {
  height: 500px;
  width: 475px;
  background: url("../img/bk.jpg");
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 70px;
}
@media screen and (max-width: 768px) {
  html body .container main .infomation .inner .infomation-container .ttl-area {
    height: 225px;
    max-width: 450px;
    width: 100%;
    margin-bottom: 25px;
  }
}
html body .container main .infomation .inner .infomation-container .ttl-area .ttl {
  padding-top: 0;
}
html body .container main .infomation .inner .infomation-container .infomation-bottom {
  display: flex;
  justify-content: center;
  display: flex;
}
@media screen and (max-width: 900px) {
  html body .container main .infomation .inner .infomation-container .infomation-bottom {
    flex-direction: column;
  }
}
html body .container main .infomation .inner .infomation-container .infomation-bottom .infomation-left {
  padding-right: 50px;
  border-right: var(--db-border) 1px solid;
}
@media screen and (max-width: 900px) {
  html body .container main .infomation .inner .infomation-container .infomation-bottom .infomation-left {
    padding-right: 0;
    border-right: none;
  }
}
html body .container main .infomation .inner .infomation-container .infomation-bottom .infomation-left dl {
  padding: 30px 0;
  display: flex;
  color: var(--white);
}
@media screen and (max-width: 768px) {
  html body .container main .infomation .inner .infomation-container .infomation-bottom .infomation-left dl {
    flex-direction: column;
    padding: 13px 0;
    font-size: 13px;
  }
}
html body .container main .infomation .inner .infomation-container .infomation-bottom .infomation-left dl:not(:last-child) {
  border-bottom: 1px solid var(--db-border);
}
html body .container main .infomation .inner .infomation-container .infomation-bottom .infomation-left dl dt {
  width: 190px;
  font-weight: bold;
  letter-spacing: 0.4em;
}
@media screen and (max-width: 768px) {
  html body .container main .infomation .inner .infomation-container .infomation-bottom .infomation-left dl dt {
    width: 100%;
    margin-bottom: 10px;
  }
}
html body .container main .infomation .inner .infomation-container .infomation-bottom .infomation-left dl dd {
  width: 300px;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 768px) {
  html body .container main .infomation .inner .infomation-container .infomation-bottom .infomation-left dl dd {
    width: 100%;
  }
}
html body .container main .infomation .inner .infomation-container .infomation-bottom .infomation-left dl dd span {
  margin-top: 10px;
  display: block;
}
html body .container main .infomation .inner .infomation-container .infomation-bottom .infomation-right {
  color: var(--white);
  margin-left: 49px;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}
@media screen and (max-width: 900px) {
  html body .container main .infomation .inner .infomation-container .infomation-bottom .infomation-right {
    margin-left: 0;
    margin-top: 25px;
  }
}
@media screen and (max-width: 900px) and (max-width: 768px) {
  html body .container main .infomation .inner .infomation-container .infomation-bottom .infomation-right {
    margin-left: 0;
    margin-top: 25px;
  }
}
html body .container main .infomation .inner .infomation-container .infomation-bottom .infomation-right .cete {
  letter-spacing: 0.12em;
  display: inline-block;
  font-size: 14px;
  padding: 8px 25px 6px;
  border: 1px solid var(--green);
}
html body .container main .infomation .inner .infomation-container .infomation-bottom .infomation-right .cete.mt {
  margin-top: 15px;
}
html body .container main .infomation .inner .infomation-container .infomation-bottom .infomation-right p {
  font-size: 16px;
  margin-bottom: 15px;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 768px) {
  html body .container main .infomation .inner .infomation-container .infomation-bottom .infomation-right p {
    font-size: 13px;
  }
}
html body .container main .history {
  padding: 140px 0 140px;
  margin-bottom: 150px;
  background: url("../img/bk.jpg");
  position: relative;
}
@media screen and (max-width: 768px) {
  html body .container main .history {
    padding: 80px 37px 60px;
    margin-bottom: 0;
  }
}
html body .container main .history .ttl {
  padding-top: 0;
  position: absolute;
  top: -75px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  html body .container main .history .ttl {
    top: -40px;
  }
}
html body .container main .history .inner {
  width: 900px;
  margin: 0 auto;
  padding: 0 25px;
}
@media screen and (max-width: 1200px) {
  html body .container main .history .inner {
    width: 100%;
  }
}
html body .container main .history .inner dl {
  display: flex;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid var(--db-border);
}
@media screen and (max-width: 768px) {
  html body .container main .history .inner dl {
    flex-direction: column;
    align-items: center;
  }
}
html body .container main .history .inner dl dt {
  color: var(--green);
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 40px;
  width: 160px;
  transform: translateY(-3px);
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  html body .container main .history .inner dl dt {
    font-size: 20px;
    width: 100%;
    text-align: center;
    margin-bottom: 13px;
  }
}
@media screen and (max-width: 768px) {
  html body .container main .history .inner dl dd {
    margin-right: auto;
  }
}
html body .container main .history .inner dl dd p {
  letter-spacing: 0.12em;
  color: var(--white);
}
@media screen and (max-width: 768px) {
  html body .container main .history .inner dl dd p {
    font-size: 14px;
    padding-left: 50px;
    text-indent: -50px;
    line-height: 1.54;
  }
}
html body .container main .history .inner dl dd p.mb {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  html body .container main .history .inner dl dd p.mb {
    margin-bottom: 30px;
  }
}
html body .container main .history .inner dl dd p span {
  display: inline-block;
  width: 70px;
  font-weight: bold;
  color: var(--green);
}
@media screen and (max-width: 768px) {
  html body .container main .history .inner dl dd p span {
    display: block;
    width: 50px;
    margin-bottom: -21.55px;
  }
}
html body .container main .recruit {
  margin-bottom: 220px;
}
@media screen and (max-width: 768px) {
  html body .container main .recruit {
    margin-bottom: 70px;
  }
}
html body .container main .recruit .inner {
  display: flex;
}
@media screen and (max-width: 768px) {
  html body .container main .recruit .inner {
    flex-direction: column;
  }
}
html body .container main .recruit .inner .recruit-left {
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  html body .container main .recruit .inner .recruit-left {
    width: 50%;
  }
}
@media screen and (max-width: 1200px) and (max-width: 768px) {
  html body .container main .recruit .inner .recruit-left {
    width: 100%;
  }
}
html body .container main .recruit .inner .recruit-left img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
  width: 45.714vw;
}
@media screen and (max-width: 1200px) {
  html body .container main .recruit .inner .recruit-left img {
    min-height: 0;
    min-width: 0;
    width: 100%;
  }
}
@media screen and (max-width: 1200px) and (max-width: 768px) {
  html body .container main .recruit .inner .recruit-left img {
    min-height: 0;
    min-width: 0;
    width: 100%;
  }
}
html body .container main .recruit .inner .recruit-right {
  width: 47.875%;
  height: auto;
  aspect-ratio: 1/1;
  background: url("../img/bk.jpg");
}
@media screen and (max-width: 1200px) {
  html body .container main .recruit .inner .recruit-right {
    width: 50%;
    min-width: 0;
  }
}
@media screen and (max-width: 1200px) and (max-width: 768px) {
  html body .container main .recruit .inner .recruit-right {
    min-width: 0;
    width: calc(100% - 50px);
    margin: -45px 25px 0;
    height: auto;
    min-height: 0;
    padding-top: 30px;
    padding-bottom: 30px;
    aspect-ratio: unset;
  }
}
html body .container main .recruit .inner .recruit-right .right-wrapper {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  html body .container main .recruit .inner .recruit-right .right-wrapper {
    width: 100%;
  }
}
html body .container main .recruit .inner .recruit-right .right-wrapper .ttl {
  padding-top: 0;
}
html body .container main .recruit .inner .recruit-right .right-wrapper .ttl h2 {
  letter-spacing: 0.3em;
}
@media screen and (max-width: 1350px) {
  html body .container main .recruit .inner .recruit-right .right-wrapper .ttl h2 {
    font-size: 25px;
  }
}
@media screen and (max-width: 1350px) and (max-width: 1200px) {
  html body .container main .recruit .inner .recruit-right .right-wrapper .ttl h2 {
    font-size: 30px;
    padding-bottom: 15px;
  }
}
@media screen and (max-width: 1350px) and (max-width: 1200px) and (max-width: 768px) {
  html body .container main .recruit .inner .recruit-right .right-wrapper .ttl h2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 1200px) {
  html body .container main .recruit .inner .recruit-right .right-wrapper .ttl p {
    margin-top: 15px;
  }
}
html body .container main .recruit .inner .recruit-right .right-wrapper .recruit-content {
  margin-top: 40px;
  color: var(--white);
  padding: 0 90px;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media screen and (max-width: 1350px) {
  html body .container main .recruit .inner .recruit-right .right-wrapper .recruit-content {
    margin-top: 0px;
    padding: 30px;
  }
}
@media screen and (max-width: 1350px) and (max-width: 1200px) {
  html body .container main .recruit .inner .recruit-right .right-wrapper .recruit-content {
    font-size: 14px;
    margin-top: 15px;
    padding: 0 40px;
  }
}
@media screen and (max-width: 1350px) and (max-width: 1200px) and (max-width: 900px) {
  html body .container main .recruit .inner .recruit-right .right-wrapper .recruit-content {
    margin-top: 5px;
  }
}
@media screen and (max-width: 1350px) and (max-width: 1200px) and (max-width: 900px) and (max-width: 768px) {
  html body .container main .recruit .inner .recruit-right .right-wrapper .recruit-content {
    font-size: 13px;
    line-height: 1.72;
    margin-top: 15px;
    padding: 0 25px;
  }
}
html body .container main .contact .inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 25px;
}
@media screen and (max-width: 768px) {
  html body .container main .contact .inner {
    padding: 0;
    width: 100%;
  }
}
html body .container main .contact .inner .contact-top {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  html body .container main .contact .inner .contact-top {
    flex-direction: column;
    padding: 0 25px;
    margin-bottom: 35px;
  }
}
html body .container main .contact .inner .contact-top .contact-left {
  height: 440px;
  width: 320px;
  background: url("../img/bk.jpg");
  margin-right: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  html body .container main .contact .inner .contact-top .contact-left {
    margin-right: 0;
    padding: 40px 0;
    height: auto;
    width: 100%;
    max-width: 200px;
  }
}
html body .container main .contact .inner .contact-top .contact-left .ttl {
  padding-top: 0;
}
html body .container main .contact .inner .contact-top .contact-left .ttl h2 {
  font-size: 35px;
  letter-spacing: 0.24em;
}
@media screen and (max-width: 768px) {
  html body .container main .contact .inner .contact-top .contact-left .ttl h2 {
    font-size: 18px;
  }
}
html body .container main .contact .inner .contact-top .contact-right {
  width: 560px;
}
@media screen and (max-width: 768px) {
  html body .container main .contact .inner .contact-top .contact-right {
    width: 100%;
    padding: 0 12px;
  }
}
html body .container main .contact .inner .contact-top .contact-right .content .content-text {
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 2.125;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  html body .container main .contact .inner .contact-top .contact-right .content .content-text {
    margin-top: 35px;
    line-height: 1.72;
    font-size: 13px;
  }
}
html body .container main .contact .inner .contact-top .contact-right .content .tel {
  display: flex;
  align-items: center;
  padding: 15px 30px;
  border: 1px solid var(--green);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  html body .container main .contact .inner .contact-top .contact-right .content .tel {
    margin: 0 auto;
    padding: 15px 20px;
  }
}
html body .container main .contact .inner .contact-top .contact-right .content .tel .tel-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-right: 30px;
  border-right: 1px solid var(--green);
}
html body .container main .contact .inner .contact-top .contact-right .content .tel .tel-icon i {
  color: var(--db);
  width: 33px;
  height: 33px;
}
html body .container main .contact .inner .contact-top .contact-right .content .tel .tel-icon p {
  margin-top: 10px;
  color: var(--db);
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.12em;
}
html body .container main .contact .inner .contact-top .contact-right .content .tel .tel-number {
  margin-left: 30px;
  font-size: 25px;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: var(--db);
}
@media screen and (max-width: 768px) {
  html body .container main .contact .inner .contact-top .contact-right .content .tel .tel-number {
    font-size: 16px;
  }
}
html body .container main .contact .inner .form-container {
  width: 750px;
  margin: 0 auto 150px;
}
@media screen and (max-width: 768px) {
  html body .container main .contact .inner .form-container {
    width: 100%;
    padding: 0 37px;
    margin: 0 auto 220px;
  }
}
html body .container main .contact .inner .form-container form div {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  html body .container main .contact .inner .form-container form div {
    margin-bottom: 20px;
  }
}
html body .container main .contact .inner .form-container form div.submit {
  margin: 0 auto;
  width: 250px;
}
@media screen and (max-width: 768px) {
  html body .container main .contact .inner .form-container form div.submit {
    width: 100%;
  }
}
html body .container main .contact .inner .form-container form div.submit input[type=submit] {
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--db);
  border: var(--db) 1px solid;
  font-family: "Shippori Mincho", serif;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.16em;
  height: 60px;
  padding-left: 0;
  transition: background var(--transition), color var(--transition);
}
@media screen and (max-width: 768px) {
  html body .container main .contact .inner .form-container form div.submit input[type=submit] {
    font-size: 13px;
    height: 50px;
  }
}
html body .container main .contact .inner .form-container form div.submit input[type=submit]:hover {
  color: var(--white);
  background: var(--db);
}
html body .container main .contact .inner .form-container form div label {
  display: block;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.12em;
  color: var(--db);
}
@media screen and (max-width: 768px) {
  html body .container main .contact .inner .form-container form div label {
    font-size: 13px;
  }
}
html body .container main .contact .inner .form-container form div label span {
  display: inline-block;
  margin-left: 10px;
  font-size: 16px;
  color: var(--white);
  background: var(--green2);
  padding: 4px 8px 2px;
}
@media screen and (max-width: 768px) {
  html body .container main .contact .inner .form-container form div label span {
    font-size: 11px;
  }
}
html body .container main .contact .inner .form-container form div input {
  width: 250px;
  margin-top: 20px;
  padding-left: 20px;
  width: 100%;
  height: 50px;
  background: var(--gray);
}
@media screen and (max-width: 768px) {
  html body .container main .contact .inner .form-container form div input {
    margin-top: 10px;
  }
}
html body .container main .contact .inner .form-container form div textarea {
  padding: 20px;
  margin-top: 20px;
  width: 100% !important;
  height: 250px !important;
  background: var(--gray);
}
@media screen and (max-width: 768px) {
  html body .container main .contact .inner .form-container form div textarea {
    margin-top: 10px;
  }
}
html body .container main .instagram {
  margin-bottom: 220px;
}
@media screen and (max-width: 1200px) {
  html body .container main .instagram {
    padding-top: 150px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 768px) {
  html body .container main .instagram {
    padding-top: 0;
    margin-bottom: 70px;
  }
}
html body .container main .instagram .inner {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  html body .container main .instagram .inner {
    width: 100%;
  }
}
@media screen and (max-width: 1200px) and (max-width: 768px) {
  html body .container main .instagram .inner {
    width: 100%;
    padding: 0 25px;
  }
}
html body .container main .instagram .inner .instagram-right {
  position: relative;
  width: 595px;
  height: 440px;
  margin-left: auto;
  margin-right: 40px;
  background: url("../img/bk.jpg");
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  html body .container main .instagram .inner .instagram-right {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 1200px) and (max-width: 768px) {
  html body .container main .instagram .inner .instagram-right {
    height: auto;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    padding: 60px 0 45px;
  }
}
html body .container main .instagram .inner .instagram-right .inner-content {
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  html body .container main .instagram .inner .instagram-right .inner-content {
    width: 100%;
  }
}
html body .container main .instagram .inner .instagram-right .inner-content .update {
  display: inline-block;
  padding: 0 10px;
  letter-spacing: 0.24em;
  font-size: 16px;
  font-family: "Shippori Mincho", serif;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--green);
}
@media screen and (max-width: 768px) {
  html body .container main .instagram .inner .instagram-right .inner-content .update {
    font-size: 13px;
  }
}
html body .container main .instagram .inner .instagram-right .inner-content .title {
  letter-spacing: 0.3em;
  font-size: 35px;
  font-family: "Shippori Mincho", serif;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  html body .container main .instagram .inner .instagram-right .inner-content .title {
    font-size: 19px;
  }
}
@media screen and (max-width: 768px) {
  html body .container main .instagram .inner .instagram-right .inner-content .button {
    width: 100%;
  }
}
html body .container main .instagram .inner .instagram-right .inner-content .button a {
  border: var(--white) solid 1px;
  height: 60px;
  width: 250px;
  letter-spacing: 0.16em;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background var(--transition), color var(--transition);
}
@media screen and (max-width: 768px) {
  html body .container main .instagram .inner .instagram-right .inner-content .button a {
    font-size: 13px;
    width: 61.5%;
    margin: 0 auto;
  }
}
html body .container main .instagram .inner .instagram-right .inner-content .button a:hover {
  background: var(--white);
  color: var(--db);
}
html body .container main .instagram .inner .instagram-right .grid-box {
  position: absolute;
  top: 50%;
  left: -340px;
  width: 420px;
  display: flex;
  transform: translateY(-50%);
  flex-wrap: wrap;
}
@media screen and (max-width: 1200px) {
  html body .container main .instagram .inner .instagram-right .grid-box {
    width: 550px;
    top: auto;
    bottom: 350px;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
  }
}
@media screen and (max-width: 1200px) and (max-width: 768px) {
  html body .container main .instagram .inner .instagram-right .grid-box {
    width: 300px;
    top: auto;
    bottom: 240px;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
  }
}
html body .container main .instagram .inner .instagram-right .grid-box li {
  width: calc(33.3333333333% - 10px);
}
@media screen and (max-width: 768px) {
  html body .container main .instagram .inner .instagram-right .grid-box li {
    width: calc(33.3333333333% - 5px);
  }
}
html body .container main .instagram .inner .instagram-right .grid-box li:not(:nth-child(3n)) {
  margin-right: 5px;
}
html body .container main .instagram .inner .instagram-right .grid-box li:not(:nth-child(n+3)) {
  margin-bottom: 5px;
}
html body .container main .instagram .inner .instagram-right .grid-box li img {
  width: 100%;
}
html body .container main .parallax-container {
  width: 100%;
  height: 610px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  html body .container main .parallax-container {
    height: 260px;
  }
}
html body .container main .parallax-container img {
  height: 800px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: -1060px;
}
@media screen and (max-width: 768px) {
  html body .container main .parallax-container img {
    height: 330px;
    top: -926px;
  }
}
/*# sourceMappingURL=layout.css.map */