@charset "utf-8";
/*----------------------------------------------------------------------------
変数
----------------------------------------------------------------------------*/
:root {
  --fontMain: "Noto Sans JP", sans-serif;
  --colorMain: #f70047;
}

/*----------------------------------------------------------------------------
リセット
----------------------------------------------------------------------------*/
body,
p,
h1,
h2 {
  margin: 0;
}

/*----------------------------------------------------------------------------
初期設定
----------------------------------------------------------------------------*/
/* フォント */
body {
  font-family: var(--fontMain);
  font-optical-sizing: auto;
  font-style: normal;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.main {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pageInner {
  width: 57%;
  margin-left: auto;
  margin-right: auto;
}

/*----------------------------------------------------------------------------
スプラッシュ画面
----------------------------------------------------------------------------*/
.sprash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sprash__logo {
  width: max(260px, 14%);
}

.sprash__logo img {
  width: 100%;
  height: atuo;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*----------------------------------------------------------------------------
コンテンツ
----------------------------------------------------------------------------*/
header{
  box-sizing: border-box;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

.headerLogo {
  width: max(130px, 7%);
  margin-top: 20px;
}

.headerLogo img {
  width: 100%;
  height: atuo;
}

.companyData {
  width: 100%;
  margin-bottom: 20px;
  border-collapse: collapse;
}
.companyData tr {
  border-bottom: 1px solid #ccc;
}

.companyData th,
.companyData td {
  color: #333;
}

.companyData th {
  min-width: 6em;
  padding: 20px 0;
  text-align: left;
  font-weight: 700;
  font-size: clamp(16px, 1vw, 20px);
}

.companyData td {
  padding-left: 20px;
  font-weight: 600;
  font-size: clamp(13px, 0.83vw, 16px);
}

footer {
  padding: 20px;
  text-align: center;
  background-color: #333;
}
.copyright {
  color: #fff;
}

/*----------------------------------------------------------------------------
404ページ
----------------------------------------------------------------------------*/
.body404 .pageInner{
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/*----------------------------------------------------------------------------
共通パーツ
----------------------------------------------------------------------------*/
.commonTitle {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 30px;
  padding-bottom: 20px;
  font-weight: 600;
  font-size: clamp(26px, 1.7vw, 32px);
  border-bottom: 1px solid #ccc;
}

.commonTitle::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin-right: clamp(20px, 2.7%, 30px);
  border-radius: 50%;
  background-color: var(--colorMain);
}

.commonTitle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 20%;
  border-bottom: 1px solid var(--colorMain);
}

.titlePlane{
  font-weight: 700;
  font-size: clamp(26px, 1.7vw, 32px);
}

.commonButton{
  display: block;
  box-sizing: border-box;
  width: 320px;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  color: #FFF;
  background-image: url(/images/arrowWhite.svg);
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-color: var(--colorMain);
}

.commonButton:hover{
  opacity: 0.7;
  transition: 0.3s;
}

.commonLink{
  color: inherit;
}

.commonLink:visited{
  color: inherit;
}

/* ユーティリティ */
.inlineCenter{
  text-align: center;
}

.blockCenter{
  margin-left: auto;
  margin-right: auto;
}

.notPointerEvent{
  pointer-events: none;
}

.mbLarge{
  margin-bottom: 120px;
}

/* レスポンシブ */
@media (max-width: 768px){
  .pageInner {
    width: 90%;
  }
}