@charset "UTF-8";
/* ***************************************************
 PC / SP共通
*************************************************** */
/* ////////////////// タグ初期値 ////////////////// */
html,
body {
  height: 100%;
  margin: 0;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

*, *::after, *::before {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  color: #000;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
  margin: 0;
  padding: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: bottom;
}

h1, h2, h3, h4, h5 {
  margin: 0;
  padding: 0;
  line-height: 1.25em;
  font-family: Yu Gothic, "游ゴシック", Meiryo, "メイリオ", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Osaka, Verdana, sans-serif;
}

a {
  color: #000;
  text-decoration: none;
  font-family: Yu Gothic, "游ゴシック", Meiryo, "メイリオ", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Osaka, Verdana, sans-serif;
}

p {
  margin-top: 0;
  margin-bottom: 1.5em;
  font-family: Yu Gothic, "游ゴシック", Meiryo, "メイリオ", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Osaka, Verdana, sans-serif;
}

ul,
dl {
  padding: 0;
}

li, dt, dd {
  margin: 0px;
  padding: 0px;
  font-family: Yu Gothic, "游ゴシック", Meiryo, "メイリオ", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Osaka, Verdana, sans-serif;
}

table,
th,
td {
  border-collapse: collapse;
  border: 1px;
  font-family: Yu Gothic, "游ゴシック", Meiryo, "メイリオ", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Osaka, Verdana, sans-serif;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  -moz-box-sizing: content-box;
  height: 0;
}

/* テーブル */
table {
  width: 100%;
  margin: 0 auto 1.5em;
  min-height: 0.1%;
  overflow: auto;
}

td,
th {
  padding: 0.5em;
  border: 1px solid #CCC;
}

th {
  white-space: nowrap;
  background-color: #EEE;
  font-weight: normal;
}

/* ////////////////// フォーム ////////////////// */
form {
  margin: 0px auto;
}

input[type=text],
input[type=email],
input[type=tel],
select,
option,
textarea {
  font-family: Yu Gothic, "游ゴシック", Meiryo, "メイリオ", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Osaka, Verdana, sans-serif;
  font-size: 15px;
  border: 1px solid #DCDCDC;
  background-color: #F5F5F5;
  border: none;
  border-radius: 6px;
  width: 100%;
  padding: 12px 20px;
}

/* ボタン */
button,
input[type=button],
input[type=submit] {
  font-family: Yu Gothic, "游ゴシック", Meiryo, "メイリオ", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Osaka, Verdana, sans-serif;
  font-size: 16px;
  letter-spacing: normal;
  text-transform: none;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* テキストエリア */
textarea {
  resize: none;
  min-height: 150px;
}

/* チェックボックス */
input[type=checkbox] {
  display: none;
  border: none;
}

input[type=checkbox] {
  cursor: pointer;
  display: inline-block;
  margin: 0 15px 0 0;
  padding: 0 0 0 25px;
  position: relative;
}

input[type=checkbox]::before {
  -webkit-transform: translateY(-50%);
  background: #fff;
  border: 2px solid #DCDCDC;
  border-radius: 0;
  content: "";
  display: block;
  height: 1em;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
}

input[type=checkbox]::after {
  border-bottom: 3px solid #00007B;
  border-left: 3px solid #00007B;
  content: "";
  display: block;
  height: 7px;
  left: 11px;
  margin-top: -0.2em;
  opacity: 0;
  position: absolute;
  top: 60%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 14px;
}

input[type=checkbox]:checked::after {
  opacity: 1;
}

/* ***************************************************
 SP
*************************************************** */
@media screen and (max-width:999px) {
  .pc {
    display: none !important;
  }
  html.scroll-prevent {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    min-width: 320px;
    min-height: 100vh;
    line-height: 1.75em;
    font-size: 1rem;
  }
  header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 150px;
    background-color: #eee;
  }
  header h1 img {
    width: 150px;
  }
  /* ////////////////// フッター ////////////////// */
  footer {
    width: 100%;
    padding: 10px;
    border-top: 1px solid #ddd;
    text-align: center;
  }
  footer p {
    font-size: 13px;
    margin: 0;
  }
  /* ////////////////// 共通 ////////////////// */
  .normal-title {
    margin: 0 0 30px 0;
    font-size: 30px;
    font-weight: bold;
    text-align: left;
    line-height: 1.2;
    color: #000;
    font-weight: 900;
  }
  strong {
    color: #00007B;
  }
  main > div {
    position: relative;
    padding: 80px 4vw 0 4vw;
  }
  main > div:last-child {
    padding: 80px 4vw;
  }
  section,
  aside,
  form {
    max-width: 1000px;
    margin: 0 auto;
  }
  table th,
  table td {
    vertical-align: middle !important;
  }
  .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  main {
    width: 100%;
  }
  #company table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #company table tr th, #company table tr td {
    padding: 7px;
    border: none;
  }
  #company table tr th {
    width: 100%;
    background-color: transparent;
    border-bottom: 2px solid #177F3B;
    font-weight: bold;
    text-align: left;
    font-size: 15px;
  }
  #company table tr td {
    width: 100%;
    text-align: left;
    background-color: transparent;
    font-size: 14px;
  }
  #partner .flex {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  #partner .flex::before {
    content: "";
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    display: block;
    width: 155px;
    height: 0;
  }
  #partner .flex .flex-item {
    width: 155px;
    margin: 0 0 20px 0;
  }
  #partner .flex .flex-item:last-child {
    margin: 0 5px;
  }
  #partner .flex .flex-item .partner-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 80px;
    padding: 0;
  }
  #partner .flex .flex-item .partner-logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  #partner .flex .flex-item p {
    margin: 10px 0 0 0;
    font-size: 15px;
    text-align: center;
  }
}
/* ***************************************************
 PC
*************************************************** */
@media all and (min-width:1000px) {
  .sp {
    display: none !important;
  }
  body {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-width: 320px;
    min-height: 100vh;
    line-height: 1.75em;
    font-size: 16px;
  }
  header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    width: 40%;
    height: 100vh;
    background-color: #eee;
  }
  header h1 img {
    width: 250px;
  }
  /* ////////////////// フッター ////////////////// */
  footer {
    position: fixed;
    right: 15px;
    bottom: 15px;
  }
  footer p {
    margin: 0;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
            writing-mode: vertical-rl;
  }
  /* ////////////////// 共通 ////////////////// */
  .normal-title {
    margin: 0 0 50px 0;
    font-size: 52px;
    font-weight: bold;
    text-align: left;
    line-height: 1.2;
    color: #000;
    font-weight: 900;
  }
  strong {
    color: #00007B;
  }
  main > div {
    position: relative;
    padding: 140px 80px 0 60px;
  }
  main > div:last-child {
    padding: 140px 80px 140px 60px;
  }
  section,
  aside,
  form {
    max-width: 1000px;
    margin: 0 auto;
  }
  table th,
  table td {
    vertical-align: middle !important;
  }
  .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  main {
    width: 60%;
  }
  #company table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #company table tr th, #company table tr td {
    padding: 15px;
    border: none;
  }
  #company table tr th {
    width: 130px;
    background-color: transparent;
    border-bottom: 2px solid #177F3B;
    font-weight: bold;
    text-align: left;
  }
  #company table tr td {
    width: calc(100% - 130px);
    border-bottom: 1px solid #ddd;
    text-align: left;
    background-color: transparent;
  }
  #company table tr td a:hover {
    opacity: 0.7;
  }
  #partner .flex {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  #partner .flex .flex-item {
    width: 225px;
    margin: 0 15px;
  }
  #partner .flex .flex-item a:hover {
    opacity: 0.7;
  }
  #partner .flex .flex-item .partner-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 100px;
    padding: 0 10px;
  }
  #partner .flex .flex-item .partner-logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  #partner .flex .flex-item p {
    margin: 10px 0 0 0;
    font-size: 15px;
    text-align: center;
  }
}