@charset "utf-8";
html {
  scroll-behavior: smooth;
}
/* スクロールデザイン */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-track {
  background-color: #ffffff;
}
::-webkit-scrollbar-thumb {
  background-color: #ffffff;
}
body {
  width: 100%;
  min-width: 340px;
  min-height: 100vh;
  font-family: "BIZ UDPMincho", serif;
  font-size: 16px;
  color: #595959;
  user-select: none;
}
header {
  width: 100%;
  height: 85px;
  padding-left: 2%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(89, 89, 89, 0.8);
  color: #ffffff;
}
header .title {
  width: 100%;
  text-align: start;
  font-size: 24px;
}
header .openMainNavBtn {
  position: absolute;
  top: 0;
  right: 10px;
  height: 100%;
}
header #openMainNavBtnHiddn {
  opacity: 0;
  transition: transform 2s, opacity 1s 1s;
}
header #openMainNavBtnHiddn:hover {
  transform: rotate(1080deg);
}
header #openMainNavBtnVisible {
  opacity: 1;
  transition: opacity 1s;
}
header .openMainNavBtn img {
  width: 50px;
  padding: 5px;
}
header .mainNav {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-wrap: wrap;
  position: fixed;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  padding-top: 10vh;
  background-color: rgb(101, 101, 101, 0.8);
  color: #ffffff;
}
header #mainNavHidden {
  top: -100vh;
  opacity: 0;
  visibility: hidden;
  transition: top 1s, opacity 0.1s 1s, visibility 0.1s 1s;
}
header #mainNavVisible {
  top: 0;
  opacity: 1;
  visibility: visible;
  transition: top 1s 0.1s, opacity 0.1s, visibility 0.1s;
}
.mainNav ul {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-wrap: wrap;
}
.mainNav .maxWidthSubNav {
  display: none;
}
.mainNav li {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid rgb(255, 255, 255, 0.2);
  text-transform: capitalize;
  font-size: 18px;
}
.mainNav li a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mainNav #closeMainNav {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: rgb(89, 89, 89);
  border-bottom: none;
}
.mainNav .closeMainNavBtn {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}
.mainNav .closeMainNavBtn img {
  width: 30px;
  height: 50px;
  object-fit: contain;
}
main {
  width: 100%;
}
footer {
  width: 100%;
  padding: 10vh 10px;
  background-color: #595959;
  position: relative;
  color: #ffffff;
}
.footerContent {
  width: 270px;
  margin: 7vh 0;
}
.footerContent li {
  margin-top: 30px;
}
.footerContent h2 {
  font-size: 24px;
}
.footerContent p {
  margin-top: 10px;
}
.footerContent li a {
  display: flex;
  justify-content: start;
  align-items: center;
}
.footerContent .serviceGuide {
  padding-left: 20px;
}
.footerContent .serviceGuide a:hover {
  text-decoration: underline;
}
.footerContent img {
  width: 25px;
  margin-right: 10px;
}
.copyright {
  width: 100%;
  padding: 5px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
}
.copyright p {
  font-size: 10px;
}
.copyright span {
  margin: 0 5px;
}

/* ファーストビュー */
header {  
  transition: height 1s 0.8s, padding-left 1s, background-color 1s;
}
#firstPageHeader {
  height: 100vh;
  /* padding-left: 20%; */
  background-color: rgb(89, 89, 89, 1);
}
header .title a {
  display: block;
  transform: translate(0%, 0%);
  transition: transform 1s;
}
#firstPageHeader .title a {
  display: block;
  transform: translate(15vw, 0%);
}
#firstPageHeader .openMainNavBtn {
  opacity: 0;
}
#firstPageMain .topImages {
  filter: opacity(1);
}

/* ページ内リンク */
.anchor {
  height: 85px;
}

/* 反社会的勢力 | プライバシーポリシー */
.policyLink {
  position: absolute;
  top: -25px;
  right: 10px;
  width: 100%;
  max-width: 420px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-size: 14px;
  color: #595959;
}
.policyLink a:hover {
  text-decoration: underline;
}

main .outline {
  width: 100%;
  min-height: 500px;
  max-width: 1380px;
  margin: 0 auto;
}

section {
  width: 100%;
  min-height: 500px;
  max-width: 1380px;
  margin: 0 auto;
  padding: 55px 10px 90px;
}
.contents {
  width: 100%;
  background-image: url(../img/background-image-02.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.subTitle {
  width: 100%;
  height: 90px;
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.subTitle img {
  width: 100%;
  height: 250%;
  object-fit: contain;
}

/* mainMessageSec */
.mainMessageSec {
  width: 100%;
  max-width: none;
  height: 100vh;
  display: flex;
  justify-content: start;
  align-items: end;
  position: relative;
  color: #ffffff;
}
.mainMessageSec .topImages {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  filter: opacity(0.7);
  transition: filter 1s 1.5s;
}
.mainMessageSec .topImages img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mainMessageSec h2 {
  font-size: 26px;
  font-weight: 700;
}
.mainMessageSec p {
  margin-top: 20px;
  line-height: 2;
  font-size: 18px;
}

/* serviceSec */
.serviceSec .servic_contents {
  display: flex;
  justify-content: space-around;
  align-items: start;
  flex-wrap: wrap;
}
.serviceSec .content {
  width: 460px;
  margin: 5vh auto;
  padding-left: min(10px, 2%);
  padding-right: min(10px, 2%);
}
.serviceSec h3 {
  width: 100%;
  padding-bottom: 5px;
  border-bottom: 1px solid rgb(140, 140, 140, 0.4);
  font-size: 22px;
}
.serviceSec .contentMessage {
  width: 100%;
  min-height: 185px;
  padding-top: 15px;
  line-height: 1.5;
}
.serviceSec .serviceDetail {
  margin: 20px 0;
  position: relative;
}
.serviceSec .serviceImage {
  width: 100%;
  border-radius: 3px;
}
.serviceSec .linkBtn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: end;
  align-items: center;
  background-color: rgb(140, 140, 140, 0.4);
  border-radius: 3px;
  transition: background-color 1s;
}
.serviceSec .linkBtn:hover {
  background-color: transparent;
  transition: background-color 1s;
}
.serviceSec .linkBtn label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10%;
  height: 100%;
  background-color: #4D1316;
  border-radius: 0 3px 3px 0;
  writing-mode: vertical-rl;
  text-orientation: upright;
  color: #ffffff;
}

/* informationSec */
.informationSec {
  display: flex;
  justify-content: space-around;
  align-items: start;
  flex-wrap: wrap;
}
.informationSec .infoRow {
  width: 100%;
  padding-bottom: 10px;
  border-bottom: 1px solid rgb(140, 140, 140, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.informationSec dl {
  width: 100%;
  max-width: 570px;
}
.informationSec dt {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: start;
  align-items: end;
  font-size: 14px;
}
.informationSec dd {
  width: 100%;
  min-height: 35px;
  margin-top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.informationSec dd ul {
  padding-bottom: 30px;
}
.informationSec dd li {
  margin-top: 30px;
}
.informationSec .board_member {
  padding-bottom: 50px;
}
.informationSec .board_member li {
  margin-top: 50px;
}
.informationSec .locationMap {
  width: 100%;
  max-width: 570px;
  height: 100%;
  padding-top: 20px;
}
.informationSec .locationMap iframe {
  width: 100%;
}

/* messageSec */
.messageSec dl {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}
.messageSec dd {
  width: 100%;
  max-width: 590px;
  padding: 20px 10px;
  line-height: 1.5;
}
.messageSec img {
  width: 100%;
  max-width: 280px;
}
.messageSec dd .message {
  margin-top: 10px;
}
.messageSec dd h2 {
  font-size: 20px;
}
.messageSec .message .fontDecoration {
  margin-right: 5px;
  font-size: 26px;
  font-weight: 700;
}
.messageSec dd p {
  margin-top: 10px;
  line-height: 1.8;
}
.messageSec dd #lastText {
  width: 100%;
  text-align: end;
}
.messageSec dd .messageName {
  margin-top: 10px;
}
.messageSec .messageName label {
  display: block;
  font-size: 18px;
}