@charset "UTF-8";
html {
  overflow-x: hidden;
  font-size: 10px;
  /*&::-webkit-scrollbar {
    width: 15px;
    background-color: $yellow; 
  }

  &::-webkit-scrollbar-thumb {
    background: $bpink;
    width: 7px;
    border-radius: 7px;
  }*/
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  min-height: 100vh;
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
  font-weight: 300;
  line-height: 2;
  position: relative;
}

html, body {
  transition: background 0.5s ease, color 0.5s ease;
}

main, header, footer, section, div {
  transition: all 0.6s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  line-height: 1;
}

p {
  margin: 0 0 0.5em;
}

footer {
  position: sticky;
  top: 100%;
}

a {
  transition: 0.3s;
  text-decoration: none;
  color: #000000;
}
a:hover {
  transition: 0.3s;
}

a[href*=tel] {
  pointer-events: none;
}
@media (max-width: 769px) {
  a[href*=tel] {
    pointer-events: auto;
  }
}

img {
  width: 100%;
  vertical-align: middle;
  height: auto;
}

video {
  display: block;
}

.MIN {
  font-family: "Noto Serif JP", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

.CoF {
  font-family: "corporate-logo-ver2", sans-serif;
}

/* フェードインアニメーション（6パターン） */
.fade-up, .fade-down, .fade-left, .fade-right, .fade-in, .zoom-in {
  opacity: 0;
  transition: all 1s ease;
}

.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.fade-down.in-view {
  opacity: 1;
  transform: translateY(0);
}

.fade-left.in-view {
  opacity: 1;
  transform: translateX(0);
}

.fade-right.in-view {
  opacity: 1;
  transform: translateX(0);
}

.fade-in.in-view {
  opacity: 1;
}

.zoom-in.in-view {
  opacity: 1;
  transform: scale(1);
}

.fade-up {
  transform: translateY(30px);
}

.fade-down {
  transform: translateY(-30px);
}

.fade-left {
  transform: translateX(-30px);
}

.fade-right {
  transform: translateX(30px);
}

.zoom-in {
  transform: scale(0.95);
}

.Pc-only {
  display: block;
}

@media (max-width: 769px) {
  .Pc-only {
    display: none;
  }
}
.Sp-only {
  display: none;
}

@media (max-width: 769px) {
  .Sp-only {
    display: block;
  }
}
header {
  background: #fff;
  z-index: 101;
  position: fixed;
  width: 100%;
  height: 70px;
  top: 0;
}
header #header-Wrap {
  width: 100%;
  height: 100%;
  position: relative;
  min-height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#PW-h-logo {
  max-width: 300px;
  margin-left: 25px;
}
@media (max-width: 769px) {
  #PW-h-logo {
    max-width: 200px;
    margin-left: 2rem;
  }
}

.PW-h-MenuBox {
  display: flex;
  width: 100%;
  max-width: 400px;
  height: 100%;
  justify-content: space-between;
}
@media (max-width: 769px) {
  .PW-h-MenuBox {
    max-width: none;
  }
}
@media (max-width: 769px) {
  .PW-h-Menu {
    width: 100%;
  }
}
.PW-h-Menu ol {
  list-style: none;
  max-width: 500px;
  padding: 0;
  margin: 0;
  font-size: 1.6rem;
}
@media (max-width: 769px) {
  .PW-h-Menu ol {
    flex-direction: column;
    font-size: 1.4rem;
  }
}
.PW-h-Menu ol li {
  position: relative;
  font-weight: bold;
  margin: 0;
  line-height: 2;
}
@media (max-width: 769px) {
  .PW-h-Menu ol li {
    margin-left: 0rem;
    border-bottom: solid 1px #231815;
    display: block;
    text-align: center;
    padding: 0.25em;
    line-height: 1.6;
  }
}
.PW-h-Menu ol li::before {
  content: "";
  position: absolute;
  display: inline-block;
  font-size: 1rem;
  color: #231815;
  padding-right: 0.5rem;
  top: 0.25rem;
}
@media (max-width: 769px) {
  .PW-h-Menu ol li::before {
    position: absolute;
    left: 2em;
    top: 1em;
  }
}
.PW-h-Menu ol li:nth-child(11)::after {
  content: "";
  display: block;
  width: 100%;
  border-bottom: dashed 2px #fff;
  padding: 0.5em 0;
  margin-bottom: 1em;
}
.PW-h-Menu ol li a {
  display: block;
  color: #fff;
}
.PW-h-Menu ol li a::after {
  content: "";
  position: absolute;
  bottom: -0.25em;
  left: 0;
  width: 0;
  height: 2px;
  background: #231815;
  transition: width 0.4s ease;
}
.PW-h-Menu ol li a:hover::after, .PW-h-Menu ol li a.current::after {
  width: 100%;
}
@media (max-width: 1200px) {
  .PW-h-Menu ol li a:hover::after, .PW-h-Menu ol li a.current::after {
    display: none;
  }
}
.PW-h-Menu ol li a.current {
  font-weight: bold;
  color: #231815;
}

/* ハンバーガー本体 */
.PW-hamburger {
  width: 70px;
  height: 70px;
  position: relative;
  justify-content: center;
  align-items: center;
  z-index: 1001;
  background: none;
  border: none;
  cursor: pointer;
}

.PW-hamburger span {
  display: block;
  width: 28px;
  height: 4px;
  background: #fff;
  margin: 3px auto;
  transition: 0.3s;
}

/* ハンバーガーがアクティブになった時の "×" アニメーション */
.PW-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 6px);
}

.PW-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.PW-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -6px);
}

/* メニューの初期状態 */
.PW-hamburger {
  display: flex;
  position: relative;
  top: 0;
  right: 0;
  flex-direction: column;
}
.PW-hamburger::before {
  content: "";
  background-color: #231815;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}

#PW-nav {
  position: fixed;
  top: 0;
  right: 0;
  background: #231815;
  color: #fff;
  padding: 10rem 7rem 4rem;
  /*border-bottom: solid 2px $mainColor;*/
  transform: translateX(120%);
  transition: transform 0.3s ease;
  z-index: 1000;
}
@media (max-width: 769px) {
  #PW-nav {
    padding: 7rem 2rem 3rem;
  }
}

#PW-nav.active {
  transform: translateX(0%);
}
@media (max-width: 769px) {
  #PW-nav.active {
    transform: translateX(0%);
  }
}

.PW-body {
  margin: 0 auto;
}
.PW-main {
  margin: 0 auto;
  position: relative;
}

#PW-F-Recruit {
  margin: 120px auto 0px;
}
@media (max-width: 769px) {
  #PW-F-Recruit {
    margin: 25vw auto 0px;
  }
}
#PW-F-Recruit h2 {
  width: 100%;
  max-width: 1100px;
  font-size: 6rem;
  font-weight: 900;
  color: #004FE5;
  margin: 0 auto 0px;
}
@media (max-width: 769px) {
  #PW-F-Recruit h2 {
    font-size: 4rem;
  }
}
#PW-F-Recruit h2 span {
  font-size: 2rem;
  font-weight: bold;
  margin-left: 1.25rem;
  vertical-align: top;
}
@media (max-width: 769px) {
  #PW-F-Recruit h2 span {
    font-size: 1.5rem;
  }
}
#PW-F-Recruit .PW-inner {
  position: relative;
  width: 100%;
  max-width: 1260px;
  margin: auto;
  padding: 1px 80px 95px;
  background-color: #231815;
  border-radius: 30px;
}
@media (max-width: 1400px) {
  #PW-F-Recruit .PW-inner {
    padding: 1px 40px 95px;
  }
}
#PW-F-Recruit .PW-Box-Parent {
  margin: auto;
}
#PW-F-Recruit .PW-Box-Child {
  display: flex;
  overflow: hidden;
  position: relative;
  height: 355px;
}
@media (max-width: 769px) {
  #PW-F-Recruit .PW-Box-Child {
    height: 37vw;
  }
}
#PW-F-Recruit .PW-Box-Child::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  -ms-background-size: cover;
  background-size: cover;
  transition: all 0.3s ease-out;
  background-position: center;
}
#PW-F-Recruit .PW-Box-Child:hover::after {
  transform: scale(1.1);
  opacity: 0.9;
}
#PW-F-Recruit .PW-Box-Child:nth-child(1)::after {
  background-image: url("../img/footer/PW-F-Recruit-P01.png");
  z-index: -1;
}
#PW-F-Recruit .PW-Box-Child:nth-child(2)::after {
  background-image: url("../img/footer/PW-F-Recruit-P02.png");
  z-index: -1;
}
#PW-F-Recruit .PW-Box-Child-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  width: 100%;
  max-width: 1100px;
}
@media (max-width: 1400px) {
  #PW-F-Recruit .PW-Box-Child-inner {
    flex-wrap: nowrap;
    padding: 0 3vw;
  }
}
#PW-F-Recruit .PW-Box-Child h3 {
  width: 60%;
  margin-right: 5%;
  font-size: 6rem;
  font-weight: 900;
  color: #FCD68C;
  line-height: 1.6;
}
@media (max-width: 769px) {
  #PW-F-Recruit .PW-Box-Child h3 {
    width: 80%;
    margin-right: 0%;
    font-size: 7.5vw;
  }
}
#PW-F-Recruit .PW-Box-Child-Link {
  display: flex;
  width: 35%;
  max-width: 300px;
  height: 60px;
  background-color: #fff;
  color: #004FE5;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  align-content: center;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 0.3s ease-out;
  background-position: center;
}
@media (max-width: 769px) {
  #PW-F-Recruit .PW-Box-Child-Link {
    width: 43%;
    font-size: 3.5vw;
    height: 11vw;
  }
}
#PW-F-Recruit .PW-Box-Child:hover .PW-Box-Child-Link {
  background-color: #FCD68C;
  box-shadow: 3px 10px 15px -6px rgba(0, 0, 0, 0.4);
}

#PW-F-Contact {
  display: flex;
  margin: 50px auto 0px;
  padding: 72px 0 136px;
  background-color: #E6E6E6;
}
@media (max-width: 1400px) {
  #PW-F-Contact {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 769px) {
  #PW-F-Contact {
    margin: 10vw auto 0px;
    padding: 10vw 2rem 10vw;
  }
}
#PW-F-Contact h2 {
  width: 100%;
  max-width: 1100px;
  font-size: 6rem;
  font-weight: 900;
  color: #231815;
  margin: 0 auto 30px;
}
@media (max-width: 769px) {
  #PW-F-Contact h2 {
    font-size: 4rem;
  }
}
#PW-F-Contact h2 span {
  font-size: 2rem;
  font-weight: bold;
  margin-left: 1.25rem;
  vertical-align: top;
}
@media (max-width: 769px) {
  #PW-F-Contact h2 span {
    font-size: 1.5rem;
  }
}
#PW-F-Contact .PW-inner {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: auto;
}
#PW-F-Contact .PW-F-ContactBox {
  display: flex;
}
@media (max-width: 769px) {
  #PW-F-Contact .PW-F-ContactBox {
    flex-direction: column;
  }
}
#PW-F-Contact .PW-F-ContactBox-left {
  position: relative;
  width: 48%;
  margin-right: 4%;
  background-color: #fff;
  padding: 35px 55px;
  border-radius: 30px;
  text-align: center;
  pointer-events: auto;
}
@media (max-width: 769px) {
  #PW-F-Contact .PW-F-ContactBox-left {
    width: 100%;
    margin-right: 0%;
    padding: 5vw 5vw;
    margin-bottom: 5vw;
  }
}
#PW-F-Contact .PW-F-ContactBox-left:hover {
  box-shadow: 0 10px 10px -6px rgba(0, 0, 0, 0.4);
  transform: scale(1.05);
  transition: all 0.3s;
}
#PW-F-Contact .PW-F-ContactBox-right {
  width: 48%;
  background-color: #fff;
  padding: 35px 55px;
  border-radius: 30px;
  text-align: center;
}
@media (max-width: 769px) {
  #PW-F-Contact .PW-F-ContactBox-right {
    width: 100%;
    padding: 5vw 5vw;
  }
}
#PW-F-Contact .PW-F-ContactBox-right:hover {
  box-shadow: 0 10px 10px -6px rgba(0, 0, 0, 0.4);
  transform: scale(1.05);
  transition: all 0.3s;
}
#PW-F-Contact .PW-F-ContactBox-ttl {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5em;
}
@media (max-width: 769px) {
  #PW-F-Contact .PW-F-ContactBox-ttl {
    font-size: 2rem;
  }
}
#PW-F-Contact .PW-F-ContactBox-tel {
  font-size: 6rem;
  font-weight: 600;
  line-height: 1;
  color: #231815;
  position: relative;
}
@media (max-width: 769px) {
  #PW-F-Contact .PW-F-ContactBox-tel {
    font-size: 4rem;
  }
}
#PW-F-Contact .PW-F-ContactBox-tel::before {
  content: "";
  width: 40px;
  height: 40px;
  margin-right: 10px;
  display: inline-block;
  background-size: cover;
  background-image: url("../img/Icon-phone.svg");
}
@media (max-width: 769px) {
  #PW-F-Contact .PW-F-ContactBox-tel::before {
    width: 3rem;
    height: 3rem;
  }
}
#PW-F-Contact .PW-F-ContactBox-contact {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 65px;
  color: #231815;
  position: relative;
}
@media (max-width: 769px) {
  #PW-F-Contact .PW-F-ContactBox-contact {
    font-size: 3rem;
    line-height: 1.3;
  }
}
#PW-F-Contact .PW-F-ContactBox-contact::before {
  content: "";
  width: 40px;
  height: 32px;
  margin-right: 10px;
  display: inline-block;
  background-size: cover;
  background-image: url("../img/Iconl-email.svg");
}
@media (max-width: 769px) {
  #PW-F-Contact .PW-F-ContactBox-contact::before {
    width: 2.8rem;
    height: 2.2rem;
  }
}
#PW-F-Contact .PW-F-ContactBox-data {
  font-size: 2rem;
  font-weight: 400;
  margin-top: 0.25em;
}
@media (max-width: 769px) {
  #PW-F-Contact .PW-F-ContactBox-data {
    font-size: 1.6rem;
  }
}

footer .PW-F-inner {
  width: auto;
  padding: 8rem 0 0;
  margin: auto;
}
@media (max-width: 1400px) {
  footer .PW-F-inner {
    width: auto;
    padding: 36px 0px 0 0px;
  }
}
footer .PW-F-logo {
  max-width: 300px;
  margin-left: 25px;
  margin-bottom: 30px;
}
@media (max-width: 769px) {
  footer .PW-F-logo {
    max-width: 200px;
  }
}
footer .PW-F-txt {
  background-color: #000000;
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
  padding: 1em;
}
@media (max-width: 769px) {
  footer .PW-F-txt {
    font-size: 1rem;
  }
}

#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s ease;
}
#loading-screen.hidden {
  opacity: 0;
  pointer-events: none;
}
#loading-screen .logo {
  opacity: 0;
  animation: fadeInLogo 1s ease forwards;
  animation-delay: 0.5s;
}
#loading-screen .logo svg {
  width: 200px;
  height: auto;
}

@keyframes fadeInLogo {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/*@include mq("tab"){
    margin-top: 72px;
}

&::after { 
    content: "";
    display: inline-block;
    background-size: contain;
    background-image: url('../../assets/img/about/GO_about_pic07.webp');
    width: 100%;
    max-width: 146px;
    height: 230px;
    position: absolute;
    top: 30px; right: -81px;
    @include mq("tab"){
        max-width: 73px;
        height: 115px;
        top: 12px; right: -41px;
    }
}
*/
#PW-MV {
  position: relative;
  overflow: hidden;
  width: auto;
  height: 100%;
}
@media (max-width: 769px) {
  #PW-MV {
    margin-bottom: 3rem;
  }
}
#PW-MV .mv-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/top/PW-HeaderPic.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
  filter: blur(0px);
  transition: filter 0.2s ease;
}

.PW-main {
  margin-top: 9rem;
}
@media (max-width: 769px) {
  .PW-main {
    margin-top: 7rem;
  }
}
.PW-MV-Flex {
  display: flex;
}
@media (max-width: 769px) {
  .PW-MV-Flex {
    height: calc(70vh - 70px);
  }
}
.PW-MV-Txt {
  display: flex;
  max-width: 300px;
  width: 100%;
  writing-mode: vertical-rl;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  line-height: 3;
  margin: auto;
  z-index: 1;
  align-items: center;
}
@media (max-width: 769px) {
  .PW-MV-Txt {
    font-size: 3.8vw;
    width: auto;
    max-width: 220px;
    height: 100%;
    justify-content: center;
  }
}
.PW-MV-inner {
  padding: 0 2rem;
}
.PW-MV-concept {
  max-width: 1000px;
  text-align: center;
  margin: 0 auto 0;
  padding: 10rem 0 0rem;
  letter-spacing: 0.1em;
  position: relative;
}
@media (max-width: 769px) {
  .PW-MV-concept {
    padding-top: 6rem;
  }
}
.PW-MV-concept::after {
  content: "";
  display: block;
  width: 275px;
  height: 3px;
  background: #c9caca;
  margin: 7rem auto auto;
}
.PW-MV-concept h2 {
  font-size: 2.4rem;
  margin-bottom: 1.25em;
  font-weight: 500;
  letter-spacing: 0.3em;
}
@media (max-width: 769px) {
  .PW-MV-concept h2 {
    font-size: 2rem;
  }
}
.PW-MV-concept-txt {
  font-size: 1.8rem;
  line-height: 2;
  font-weight: 600;
}
@media (max-width: 769px) {
  .PW-MV-concept-txt {
    font-size: 1.4rem;
    text-align: left;
  }
}
.PW-Tenpo {
  display: flex;
  max-width: 950px;
  margin: auto auto auto;
  padding-top: 9rem;
}
@media (max-width: 769px) {
  .PW-Tenpo {
    padding-top: 6rem;
  }
}
.PW-Tenpo-hr {
  writing-mode: vertical-rl;
  font-size: 1.4rem;
  letter-spacing: 0.4em;
  position: relative;
  margin-right: 3rem;
}
.PW-Tenpo-hr::before {
  content: "";
  display: block;
  height: 100%;
  width: 7px;
  margin-left: 0.25em;
  background-color: #000000;
}
.PW-Tenpo-Wflex {
  display: flex;
  flex-direction: column;
  width: 50%;
}
@media (max-width: 1000px) {
  .PW-Tenpo-Wflex {
    width: 70%;
  }
}
@media (max-width: 769px) {
  .PW-Tenpo-Wflex {
    width: 100%;
    padding-right: 2rem;
  }
}
.PW-Tenpo-ttl {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
}
@media (max-width: 769px) {
  .PW-Tenpo-ttl {
    justify-content: space-between !important;
    align-items: flex-end !important;
  }
}
.PW-Tenpo-ttl::after {
  content: "";
  position: absolute;
  display: block;
  width: 250px;
  height: 2px;
  background-color: #000000;
  right: -6rem;
  top: 3.6rem;
  z-index: -1;
}
@media (max-width: 769px) {
  .PW-Tenpo-ttl::after {
    width: 100% !important;
    top: auto !important;
    right: 0rem !important;
    bottom: -2rem !important;
  }
}
.PW-Tenpo-ttl img {
  width: 100%;
  max-width: 150px;
}
@media (max-width: 769px) {
  .PW-Tenpo-ttl img {
    width: 45%;
  }
}
.PW-Tenpo-ttl span {
  font-size: 1.4rem;
  margin-top: 0.5em;
  margin-left: 3rem;
}
@media (max-width: 769px) {
  .PW-Tenpo-ttl span {
    font-size: 1rem;
    margin-left: 2rem;
    margin-top: 0;
  }
}
.PW-Tenpo-txt {
  font-size: 1.9rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 2;
  margin-bottom: 2rem;
}
@media (max-width: 769px) {
  .PW-Tenpo-txt {
    font-size: 3.25vw;
  }
}
.PW-Tenpo-link {
  display: flex;
  align-items: center;
}
.PW-Tenpo-link .more {
  font-size: 1.3rem;
  letter-spacing: 0.5em;
  text-align: center;
  padding: 0.25em 2.5em 0.25em 3em;
  border: solid 1px #c9caca;
  margin-right: 8rem;
  position: relative;
}
.PW-Tenpo-link .more:hover {
  background-color: #E6E6E6;
}
.PW-Tenpo-link .more::after {
  content: "";
  position: absolute;
  display: block;
  width: 100px;
  height: 1px;
  background-color: #c9caca;
  right: -8rem;
  top: 1.6rem;
}
.PW-Tenpo-link .Facebook {
  width: 100%;
  display: block;
  max-width: 27px;
  margin-right: 0.5rem;
  z-index: 1;
}
.PW-Tenpo-link .Facebook:hover {
  opacity: 0.7;
}
.PW-Tenpo-link .instagram {
  width: 100%;
  display: block;
  max-width: 27px;
  z-index: 1;
}
.PW-Tenpo-link .instagram:hover {
  opacity: 0.7;
}
.PW-Tenpo-pic {
  max-width: 400px;
}
@media (max-width: 1000px) {
  .PW-Tenpo-pic {
    width: 40%;
  }
}
@media (max-width: 769px) {
  .PW-Tenpo-pic {
    display: none;
  }
}
.PW-Tenpo-pic-sp {
  display: none;
}
@media (max-width: 769px) {
  .PW-Tenpo-pic-sp {
    display: block;
    margin: 6vw auto;
  }
}

#PW-Tenpo01 .PW-Tenpo {
  padding-top: 10rem;
}

#PW-Tenpo02 .PW-Tenpo-ttl {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
}
#PW-Tenpo02 .PW-Tenpo-ttl::after {
  content: "";
  right: -15rem;
  top: 2.7rem;
}
#PW-Tenpo02 .PW-Tenpo-ttl img {
  max-width: 180px;
}

#PW-Tenpo03 .PW-Tenpo-ttl {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
}
#PW-Tenpo03 .PW-Tenpo-ttl::after {
  content: "";
  right: -4rem;
  top: 5.7rem;
}
#PW-Tenpo03 .PW-Tenpo-ttl img {
  max-width: 40px;
  margin: auto 2rem auto 4rem;
}

#PW-Tenpo04 .PW-Tenpo-ttl {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
}
#PW-Tenpo04 .PW-Tenpo-ttl::after {
  content: "";
  right: -5rem;
  top: 5.4rem;
}
#PW-Tenpo04 .PW-Tenpo-ttl img {
  max-width: 80px;
  margin: auto 0.5em auto 1.25em;
}

#PW-Tenpo05 .PW-Tenpo-ttl {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
}
#PW-Tenpo05 .PW-Tenpo-ttl::after {
  content: "";
  right: -3rem;
  top: 6.6rem;
}
#PW-Tenpo05 .PW-Tenpo-ttl img {
  max-width: 80px;
  margin: auto 0.5em auto 1.25em;
}

#PW-Tenpo06 .PW-Tenpo-ttl {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
}
#PW-Tenpo06 .PW-Tenpo-ttl::after {
  content: "";
  right: -6rem;
  top: 5.2rem;
}
#PW-Tenpo06 .PW-Tenpo-ttl img {
  max-width: 80px;
  margin: auto 0.5em auto 1.25em;
}

#PW-Tenpo07 .PW-Tenpo-ttl {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
}
#PW-Tenpo07 .PW-Tenpo-ttl::after {
  content: "";
  right: -13.5rem;
  top: 3.3rem;
}
#PW-Tenpo07 .PW-Tenpo-ttl img {
  max-width: 130px;
}

#PW-Tenpo08 .PW-Tenpo-ttl {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
}
#PW-Tenpo08 .PW-Tenpo-ttl::after {
  content: "";
  right: -16rem;
  top: 5.6rem;
}
#PW-Tenpo08 .PW-Tenpo-ttl img {
  max-width: 90px;
  margin: auto 0.5em auto 1.25em;
}

#PW-Tenpo09 .PW-Tenpo-ttl {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
}
#PW-Tenpo09 .PW-Tenpo-ttl::after {
  content: "";
  right: -7rem;
  top: 5.7rem;
}
#PW-Tenpo09 .PW-Tenpo-ttl img {
  max-width: 95px;
  margin: auto 0.5em auto 0.25em;
}

#PW-Tenpo10 .PW-Tenpo-ttl {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
}
#PW-Tenpo10 .PW-Tenpo-ttl::after {
  content: "";
  right: -3.6rem;
  top: 5.3rem;
}
#PW-Tenpo10 .PW-Tenpo-ttl img {
  max-width: 100px;
  margin: auto 0.5em auto 0.25em;
}

#PW-Tenpo11 .PW-Tenpo {
  padding-top: 0rem;
}
#PW-Tenpo11 .PW-Tenpo-ttl {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
}
#PW-Tenpo11 .PW-Tenpo-ttl::after {
  content: "";
  right: -10.8rem;
  top: 3.8rem;
}
#PW-Tenpo11 .PW-Tenpo-ttl img {
  max-width: 150px;
}

#PW-company {
  width: auto;
  text-align: center;
  margin: 8rem auto 0rem;
  padding: 8rem 2rem 10rem;
  letter-spacing: 0.1em;
  position: relative;
  background-color: #E6E6E6;
}
@media (max-width: 769px) {
  #PW-company {
    text-align: left;
    margin: 6rem auto 0rem;
    padding: 6rem 2rem 7rem;
  }
}
#PW-company .PW-inner {
  max-width: 1000px;
  padding: 0 2rem;
  margin: auto;
}
@media (max-width: 769px) {
  #PW-company .PW-inner {
    padding: 0rem;
  }
}
#PW-company .PW-company-ttl {
  font-size: 2.4rem;
  margin-bottom: 1.25em;
  font-weight: 500;
  letter-spacing: 0.3em;
}
@media (max-width: 769px) {
  #PW-company .PW-company-ttl {
    text-align: center;
    font-size: 2rem;
  }
}
#PW-company .PW-company-txt {
  font-size: 1.8rem;
  line-height: 2;
  font-weight: 500;
  margin-bottom: 3rem;
}
@media (max-width: 769px) {
  #PW-company .PW-company-txt {
    font-size: 1.4rem;
  }
}
#PW-company .PW-company-txt2 {
  font-size: 1.3rem;
  line-height: 2;
  font-weight: 500;
}
@media (max-width: 769px) {
  #PW-company .PW-company-txt2 {
    font-size: 1.1rem;
  }
}

#PW-history {
  width: auto;
  text-align: center;
  margin: 0rem auto 0rem;
  padding: 8rem 2rem 10rem;
  letter-spacing: 0.25em;
  position: relative;
}
@media (max-width: 769px) {
  #PW-history {
    padding: 6rem 2rem 6rem;
  }
}
#PW-history::after {
  content: "";
  display: block;
  width: 275px;
  height: 3px;
  background: #c9caca;
  margin: 10rem auto auto;
}
@media (max-width: 769px) {
  #PW-history::after {
    margin: 5rem auto auto;
  }
}
#PW-history .PW-inner {
  max-width: 1000px;
  padding: 0 2rem;
  margin: auto;
}
@media (max-width: 769px) {
  #PW-history .PW-inner {
    padding: 0rem;
  }
}
#PW-history .PW-history-ttl {
  font-size: 2.4rem;
  margin-bottom: 1.25em;
  font-weight: 500;
  letter-spacing: 0.3em;
}
@media (max-width: 769px) {
  #PW-history .PW-history-ttl {
    font-size: 2rem;
  }
}
#PW-history .PW-history-txt {
  font-size: 1.8rem;
  line-height: 2;
  font-weight: 500;
  margin-bottom: 3rem;
}
@media (max-width: 769px) {
  #PW-history .PW-history-txt {
    font-size: 1.4rem;
  }
}
#PW-history .PW-history-list {
  display: flex;
  justify-content: center;
  text-align: left;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media (max-width: 769px) {
  #PW-history .PW-history-list {
    flex-direction: column;
    font-size: 2.8vw;
  }
}
#PW-history .PW-history-list-left {
  width: 46%;
  margin-right: 4%;
}
@media (max-width: 769px) {
  #PW-history .PW-history-list-left {
    width: 100%;
    margin-right: 0;
  }
}
#PW-history .PW-history-list-right {
  width: 50%;
}
@media (max-width: 769px) {
  #PW-history .PW-history-list-right {
    width: 100%;
  }
}

#PW-companyAbout {
  width: auto;
  text-align: center;
  margin: 0rem auto 0rem;
  padding: 0rem 2rem 10rem;
  letter-spacing: 0.25em;
  position: relative;
}
@media (max-width: 769px) {
  #PW-companyAbout {
    margin: 0rem 2rem 7rem;
    padding: 0rem 0rem 0rem;
  }
}
#PW-companyAbout::after {
  content: "";
  display: block;
  width: 275px;
  height: 3px;
  background: #c9caca;
  margin: 10rem auto auto;
}
@media (max-width: 769px) {
  #PW-companyAbout::after {
    margin: 6rem auto auto;
  }
}
#PW-companyAbout .PW-inner {
  max-width: 1100px;
  padding: 0 2rem;
  margin: auto;
}
@media (max-width: 769px) {
  #PW-companyAbout .PW-inner {
    padding: 0rem;
  }
}
#PW-companyAbout .PW-companyAbout-List {
  display: flex;
  justify-content: center;
  text-align: left;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media (max-width: 769px) {
  #PW-companyAbout .PW-companyAbout-List {
    flex-direction: column;
    font-size: 1.2rem;
  }
}
#PW-companyAbout .PW-companyAbout-List-company {
  width: 46%;
  margin-right: 4%;
}
@media (max-width: 769px) {
  #PW-companyAbout .PW-companyAbout-List-company {
    width: 100%;
    margin-right: 0%;
  }
}
#PW-companyAbout .PW-companyAbout-List-company dl {
  display: flex;
  flex-wrap: wrap;
  margin: auto;
}
#PW-companyAbout .PW-companyAbout-List-company dl dt {
  width: 25%;
  margin-right: 3%;
}
@media (max-width: 769px) {
  #PW-companyAbout .PW-companyAbout-List-company dl dt {
    width: 100%;
    margin-right: 0%;
    text-align: center;
    font-size: 1.5rem;
  }
}
#PW-companyAbout .PW-companyAbout-List-company dl dd {
  width: 72%;
  margin: 0;
}
@media (max-width: 769px) {
  #PW-companyAbout .PW-companyAbout-List-company dl dd {
    width: 100%;
    text-align: center;
    margin-bottom: 1em;
  }
}
#PW-companyAbout .PW-companyAbout-List-tenpo {
  width: 50%;
  display: flex;
}
@media (max-width: 769px) {
  #PW-companyAbout .PW-companyAbout-List-tenpo {
    width: 100%;
    flex-direction: column;
    text-align: center;
  }
}
#PW-companyAbout .PW-companyAbout-List-tenpo span {
  font-size: 1.4rem;
  width: 47%;
  margin-right: 6%;
}
@media (max-width: 769px) {
  #PW-companyAbout .PW-companyAbout-List-tenpo span {
    width: 100%;
    margin-right: 0%;
    margin-bottom: 1.25em;
  }
}
#PW-companyAbout .PW-companyAbout-List-tenpo span:nth-child(2) {
  margin: 1.5em 0 0;
}
@media (max-width: 769px) {
  #PW-companyAbout .PW-companyAbout-List-tenpo span:nth-child(2) {
    margin: 0 0;
  }
}
#PW-companyAbout .PW-companyAbout-List-tenpo-title {
  font-size: 1.6rem !important;
}
@media (max-width: 769px) {
  #PW-companyAbout .PW-companyAbout-List-tenpo-title {
    display: inline-block;
    font-size: 1.8rem;
    margin-bottom: 0.25em !important;
  }
}

#PW-recruit {
  width: auto;
  text-align: center;
  margin: 0rem auto 0rem;
  padding: 0rem 2rem 0rem;
  letter-spacing: 0.25em;
  position: relative;
}
#PW-recruit::after {
  content: "";
  display: block;
  width: 275px;
  height: 3px;
  background: #c9caca;
  margin: 10rem auto auto;
}
@media (max-width: 769px) {
  #PW-recruit::after {
    margin: 8rem auto auto;
  }
}
#PW-recruit .PW-inner {
  max-width: 1100px;
  padding: 0 2rem;
  margin: auto;
}
@media (max-width: 769px) {
  #PW-recruit .PW-inner {
    padding: 0rem;
  }
}
#PW-recruit .PW-recruit-ttl {
  font-size: 2.4rem;
  margin-bottom: 1em;
}
@media (max-width: 769px) {
  #PW-recruit .PW-recruit-ttl {
    font-size: 2rem;
  }
}
#PW-recruit .PW-recruit-wrap {
  display: flex;
  justify-content: center;
  text-align: left;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 6rem;
}
@media (max-width: 769px) {
  #PW-recruit .PW-recruit-wrap {
    font-size: 3vw;
    margin-bottom: 4rem;
    flex-direction: column;
  }
}
#PW-recruit .PW-recruit-wrap-left {
  width: 48%;
  margin-right: 4%;
  padding: 1rem 4rem 2.5rem;
  background-color: #FCD68C;
  text-align: center;
}
@media (max-width: 769px) {
  #PW-recruit .PW-recruit-wrap-left {
    width: 100%;
    margin-right: 0%;
    margin-bottom: 4%;
    padding: 1rem 2rem 1.5rem;
  }
}
#PW-recruit .PW-recruit-wrap-right {
  width: 48%;
  padding: 1rem 4rem 2.5rem;
  background-color: #FCD68C;
  text-align: center;
}
@media (max-width: 769px) {
  #PW-recruit .PW-recruit-wrap-right {
    width: 100%;
    padding: 1rem 2rem 1.5rem;
  }
}
#PW-recruit .PW-recruit-wrap-ttl {
  font-size: 2.2rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 0.5em;
  padding-bottom: 0.25em;
  border-bottom: solid 3px #fff;
}
@media (max-width: 769px) {
  #PW-recruit .PW-recruit-wrap-ttl {
    font-size: 1.8rem;
  }
}
#PW-recruit .PW-recruit-contact-txt {
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 1em;
}
@media (max-width: 769px) {
  #PW-recruit .PW-recruit-contact-txt {
    font-size: 1.5rem;
  }
}
#PW-recruit .PW-recruit-contact-link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: 550px;
  font-size: 2.2rem;
  font-weight: 500;
  border: solid 2px #c9caca;
  padding: 1.5rem 2rem;
  margin: auto;
}
@media (max-width: 769px) {
  #PW-recruit .PW-recruit-contact-link {
    padding: 1rem 1.5rem;
  }
}
#PW-recruit .PW-recruit-contact-link span:nth-child(1) {
  max-width: 100px;
  margin-right: 5rem;
}
@media (max-width: 769px) {
  #PW-recruit .PW-recruit-contact-link span:nth-child(1) {
    max-width: 80px;
    margin-right: 1rem;
  }
}
#PW-recruit .PW-recruit-contact-link span:nth-child(2) {
  font-size: 2.2rem;
  line-height: 1.6;
}
@media (max-width: 769px) {
  #PW-recruit .PW-recruit-contact-link span:nth-child(2) {
    font-size: 2.8vw;
    line-height: 2;
  }
}
#PW-recruit .PW-recruit-contact-link:hover {
  border: solid 2px #FCD68C;
  background-color: #fff;
  box-shadow: 5px 10px 10px -6px rgba(0, 0, 0, 0.2);
}

#PW-TOP {
  margin: 0 auto;
  padding: 0 2rem;
}
#PW-TOP .PW-TOP {
  display: block;
  max-width: 100px;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  text-align: right;
  margin: 0 0 0 auto;
}
#PW-TOP .PW-TOP:hover {
  opacity: 0.7;
}
@media (max-width: 769px) {
  #PW-TOP .PW-TOP {
    font-size: 1.6rem;
  }
}

#PW-slider {
  width: calc(100% - 300px);
  margin: 0 0 0 0px;
  overflow: hidden;
}
@media (max-width: 769px) {
  #PW-slider {
    margin: 0;
    width: 55%;
    height: 100%;
  }
}
#PW-slider .slider-wrapper {
  overflow: hidden;
  width: 100%;
}
#PW-slider .slider-track {
  display: flex;
  gap: 3rem;
  width: -moz-max-content;
  width: max-content;
  animation: slide_left 30s linear infinite;
  opacity: 1;
}
@media (min-width: 1401px) {
  #PW-slider .slider-track {
    animation: slide_left 30s linear infinite;
    gap: 4rem;
  }
}
@media (max-width: 769px) {
  #PW-slider .slider-track {
    gap: 1.5rem;
  }
}
#PW-slider .slick-item {
  width: 25vw;
  display: block;
  overflow: hidden;
  height: 650px;
}
@media (min-width: 1401px) {
  #PW-slider .slick-item {
    width: 20vw;
  }
}
@media (max-width: 769px) {
  #PW-slider .slick-item {
    width: 66.6666666667vw;
    height: 100%;
  }
}
#PW-slider .slick-item img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
@keyframes slide_left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

#PW-slider2 {
  width: 100%;
  margin: 0 0 0 0px;
  overflow: hidden;
}
@media (max-width: 769px) {
  #PW-slider2 {
    margin: 0;
  }
}
#PW-slider2 .slider-wrapper {
  overflow: hidden;
  width: 100%;
}
#PW-slider2 .slider-logo {
  display: flex;
  width: 9.0909090909vw;
  gap: 4rem;
  width: -moz-max-content;
  width: max-content;
  animation: slide_left2 40s linear infinite;
  opacity: 1;
  align-items: center;
  margin-top: 60px;
}
@media (max-width: 769px) {
  #PW-slider2 .slider-logo {
    gap: 2rem;
    animation: slide_left2 30s linear infinite;
  }
}
#PW-slider2 .slick-item {
  width: 100%;
  display: block;
}
#PW-slider2 .slick-item:nth-child(1) {
  max-width: 56px;
}
@media (max-width: 769px) {
  #PW-slider2 .slick-item:nth-child(1) {
    max-width: 40px;
  }
}
#PW-slider2 .slick-item:nth-child(2) {
  max-width: 100px;
}
@media (max-width: 769px) {
  #PW-slider2 .slick-item:nth-child(2) {
    max-width: 80px;
  }
}
#PW-slider2 .slick-item:nth-child(3) {
  max-width: 80px;
}
@media (max-width: 769px) {
  #PW-slider2 .slick-item:nth-child(3) {
    max-width: 60px;
  }
}
#PW-slider2 .slick-item:nth-child(4) {
  max-width: 80px;
}
@media (max-width: 769px) {
  #PW-slider2 .slick-item:nth-child(4) {
    max-width: 60px;
  }
}
#PW-slider2 .slick-item:nth-child(5) {
  max-width: 150px;
}
@media (max-width: 769px) {
  #PW-slider2 .slick-item:nth-child(5) {
    max-width: 100px;
  }
}
#PW-slider2 .slick-item:nth-child(6) {
  max-width: 80px;
}
@media (max-width: 769px) {
  #PW-slider2 .slick-item:nth-child(6) {
    max-width: 60px;
  }
}
#PW-slider2 .slick-item:nth-child(7) {
  max-width: 100px;
}
@media (max-width: 769px) {
  #PW-slider2 .slick-item:nth-child(7) {
    max-width: 80px;
  }
}
#PW-slider2 .slick-item:nth-child(8) {
  max-width: 80px;
}
@media (max-width: 769px) {
  #PW-slider2 .slick-item:nth-child(8) {
    max-width: 60px;
  }
}
#PW-slider2 .slick-item:nth-child(9) {
  max-width: 90px;
}
@media (max-width: 769px) {
  #PW-slider2 .slick-item:nth-child(9) {
    max-width: 70px;
  }
}
#PW-slider2 .slick-item:nth-child(10) {
  max-width: 200px;
}
@media (max-width: 769px) {
  #PW-slider2 .slick-item:nth-child(10) {
    max-width: 150px;
  }
}
#PW-slider2 .slick-item:nth-child(11) {
  max-width: 160px;
}
@media (max-width: 769px) {
  #PW-slider2 .slick-item:nth-child(11) {
    max-width: 120px;
  }
}
#PW-slider2 .slick-item:nth-child(12) {
  max-width: 56px;
}
@media (max-width: 769px) {
  #PW-slider2 .slick-item:nth-child(12) {
    max-width: 40px;
  }
}
#PW-slider2 .slick-item:nth-child(13) {
  max-width: 100px;
}
@media (max-width: 769px) {
  #PW-slider2 .slick-item:nth-child(13) {
    max-width: 80px;
  }
}
#PW-slider2 .slick-item:nth-child(14) {
  max-width: 80px;
}
@media (max-width: 769px) {
  #PW-slider2 .slick-item:nth-child(14) {
    max-width: 60px;
  }
}
#PW-slider2 .slick-item:nth-child(15) {
  max-width: 80px;
}
@media (max-width: 769px) {
  #PW-slider2 .slick-item:nth-child(15) {
    max-width: 60px;
  }
}
#PW-slider2 .slick-item:nth-child(16) {
  max-width: 150px;
}
@media (max-width: 769px) {
  #PW-slider2 .slick-item:nth-child(16) {
    max-width: 100px;
  }
}
#PW-slider2 .slick-item:nth-child(17) {
  max-width: 80px;
}
@media (max-width: 769px) {
  #PW-slider2 .slick-item:nth-child(17) {
    max-width: 60px;
  }
}
#PW-slider2 .slick-item:nth-child(18) {
  max-width: 100px;
}
@media (max-width: 769px) {
  #PW-slider2 .slick-item:nth-child(18) {
    max-width: 80px;
  }
}
#PW-slider2 .slick-item:nth-child(19) {
  max-width: 80px;
}
@media (max-width: 769px) {
  #PW-slider2 .slick-item:nth-child(19) {
    max-width: 60px;
  }
}
#PW-slider2 .slick-item:nth-child(20) {
  max-width: 90px;
}
@media (max-width: 769px) {
  #PW-slider2 .slick-item:nth-child(20) {
    max-width: 70px;
  }
}
#PW-slider2 .slick-item:nth-child(21) {
  max-width: 200px;
}
@media (max-width: 769px) {
  #PW-slider2 .slick-item:nth-child(21) {
    max-width: 150px;
  }
}
#PW-slider2 .slick-item:nth-child(22) {
  max-width: 160px;
}
@media (max-width: 769px) {
  #PW-slider2 .slick-item:nth-child(22) {
    max-width: 120px;
  }
}
#PW-slider2 .slick-item img {
  width: 100%;
  display: block;
}
@keyframes slide_left2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

#PW-contact {
  width: auto;
  text-align: center;
  margin: 0rem auto 0rem;
  padding: 9rem 2rem 0rem;
  letter-spacing: 0.25em;
  position: relative;
}
@media (max-width: 769px) {
  #PW-contact {
    padding: 7rem 0rem 0rem;
  }
}
#PW-contact .PW-inner {
  max-width: 1000px;
  padding: 9rem 0 0rem;
  margin: auto;
}
#PW-contact .PW-contact-ttl {
  font-size: 2.4rem;
  margin-bottom: 1.25em;
  font-weight: 500;
  letter-spacing: 0.3em;
}
@media (max-width: 769px) {
  #PW-contact .PW-contact-ttl {
    font-size: 2rem;
  }
}
#PW-contact .PW-contact-txt {
  font-size: 1.8rem;
  line-height: 2;
  font-weight: 500;
  margin-bottom: 5rem;
}
@media (max-width: 769px) {
  #PW-contact .PW-contact-txt {
    font-size: 1.4rem;
  }
}
#PW-contact .PW-contact-txt2 {
  font-size: 1.4rem;
  line-height: 2;
  font-weight: 500;
  margin-bottom: 3rem;
}
@media (max-width: 769px) {
  #PW-contact .PW-contact-txt2 {
    font-size: 1.2rem;
    padding: 0 2rem;
    text-align: left;
  }
}
#PW-Form {
  width: auto;
  max-width: 900px;
  margin: auto;
}

form#PW-contact {
  padding: 0rem 2rem 0rem;
}
form#PW-contact .error-message {
  color: #FF0000;
  font-size: 1.4rem;
}
form#PW-contact dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
}
@media (max-width: 769px) {
  form#PW-contact dl {
    flex-direction: column;
  }
}
form#PW-contact dl dt {
  width: 30%;
  font-size: 1.6rem;
  margin-bottom: 1.5em;
}
@media (max-width: 769px) {
  form#PW-contact dl dt {
    width: 100%;
    font-size: 1.4rem;
    margin-bottom: 1em;
  }
}
form#PW-contact dl dt span {
  display: inline-block;
  padding: 0.25em 1em;
  margin-right: 1em;
  font-size: 1.3rem;
  color: #fff;
  background-color: #E6E6E6;
}
@media (max-width: 769px) {
  form#PW-contact dl dt span {
    font-size: 1rem;
  }
}
form#PW-contact dl dd {
  width: 70%;
  font-size: 1.6rem;
  margin: 0 auto 1.5em;
}
@media (max-width: 769px) {
  form#PW-contact dl dd {
    font-size: 1.4rem;
    width: 100%;
  }
}
form#PW-contact dl dd input, form#PW-contact dl dd textarea {
  width: 100%;
  padding: 0.25em 0.5em;
  font-size: 1.6rem;
  line-height: 1.6;
  border: solid 1px #c9caca;
  border-radius: 3px;
}
@media (max-width: 769px) {
  form#PW-contact dl dd input, form#PW-contact dl dd textarea {
    font-size: 1.4rem;
  }
}
form#PW-contact dl dd input::-moz-placeholder, form#PW-contact dl dd textarea::-moz-placeholder {
  color: #c9caca;
  font-weight: 400;
}
form#PW-contact dl dd input::placeholder, form#PW-contact dl dd textarea::placeholder {
  color: #c9caca;
  font-weight: 400;
}
form#PW-contact dl dd .addressFlex {
  display: flex;
  margin-bottom: 0.5em;
}
form#PW-contact dl dd .addressFlex input {
  width: 40%;
  margin-left: 0.5em;
}
form#PW-contact dl dd .PW-Form-txt {
  margin-top: 0.5em;
  font-size: 1.4rem;
}
@media (max-width: 769px) {
  form#PW-contact dl dd .PW-Form-txt {
    font-size: 1.2rem;
  }
}

.button_submit {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 250px;
  margin: 0 auto 2em;
  background-color: #FCD68C;
  color: #fff;
  padding: 1em 2em;
  font-size: 2.2rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
}
@media (max-width: 769px) {
  .button_submit {
    font-size: 1.8rem;
  }
}
.button_submit:hover {
  opacity: 0.7;
}
.button_back {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 250px;
  margin: 0 auto 2em;
  background-color: #c9caca;
  color: #fff;
  padding: 1em 2em;
  font-size: 2.2rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  line-height: 1.2;
}
.button_back:hover {
  opacity: 0.7;
}

#LT-privacy {
  margin: 0px;
  text-align: justify;
}
#LT-privacy h2 {
  font-size: 6rem;
  font-weight: 900;
  color: #231815;
  padding-bottom: 0.5em;
  margin-bottom: 0.75em;
  border-bottom: solid 1px #D2D2D2;
}
@media (max-width: 1200px) {
  #LT-privacy h2 {
    font-size: 4rem;
    line-height: 1.2;
  }
}
@media (max-width: 769px) {
  #LT-privacy h2 {
    font-size: 3rem;
    line-height: 1.2;
  }
}
#LT-privacy h2 span {
  font-size: 2rem;
  font-weight: bold;
  margin-left: 1.25rem;
  vertical-align: top;
}
@media (max-width: 769px) {
  #LT-privacy h2 span {
    font-size: 1.5rem;
    vertical-align: middle;
  }
}
#LT-privacy .LT-inner {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: auto;
  padding-top: 35px;
}
@media (max-width: 1400px) {
  #LT-privacy .LT-inner {
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}
#LT-privacy .LT-privacy-Text1 {
  font-size: 1.6rem;
  margin-bottom: 1.5em;
}
@media (max-width: 769px) {
  #LT-privacy .LT-privacy-Text1 {
    font-size: 1.4rem;
  }
}
#LT-privacy .LT-privacy-Link {
  color: #231815;
  font-weight: bold;
}
#LT-privacy .LT-privacy-Box {
  margin-bottom: 40px;
}
#LT-privacy .LT-privacy-Box-Title {
  color: #231815;
  font-size: 2rem;
  line-height: 1.75em;
  font-weight: 600;
  padding-left: 0.25em;
  margin-bottom: 1em;
  border-left: solid 4px #231815;
  border-radius: 2px;
}
@media (max-width: 769px) {
  #LT-privacy .LT-privacy-Box-Title {
    padding-left: 0.5em;
    font-size: 1.6rem;
  }
}
#LT-privacy .LT-privacy-Box-Text {
  font-size: 1.6rem;
  margin-bottom: 1em;
}
@media (max-width: 769px) {
  #LT-privacy .LT-privacy-Box-Text {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
#LT-privacy .LT-privacy-Box-List {
  font-size: 1.6rem;
  padding-left: 1.5em;
  margin: -1em 0 0;
  line-height: 1.6;
}
@media (max-width: 769px) {
  #LT-privacy .LT-privacy-Box-List {
    font-size: 1.4rem;
    margin: -0.5em 0 0;
  }
}