@charset "UTF-8";
/*----------------------------

基本設定

----------------------------*/
html {
  font-size: 62.5%; }

@media screen and (max-width: 768px) {
  html {
    font-size: 2.41vw; } }
body {
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  font-size: 1.4rem; }

img {
  max-width: 100%;
  -webkit-backface-visibility: hidden;
  vertical-align: bottom; }

.wrapper {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box; }

p.lead {
  font-size: 1.6rem;
  line-height: 1.8; }
  p.lead a {
    font-weight: bold;
    text-decoration: underline;
    color: inherit; }
  p.lead span {
    display: inline-block;
    text-align: left; }

@media screen and (min-width: 769px) and (max-width: 1020px) {
  .wrapper {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px; } }
@media screen and (min-width: 769px) {
  .sp {
    display: none; } }
@media screen and (max-width: 768px) {
  .pc {
    display: none; }

  .wrapper {
    width: 100%;
    padding-right: 5vw;
    padding-left: 5vw; } }
.section {
  padding-top: 60px;
  padding-bottom: 60px; }
  .section.bggray {
    background-color: #FAFAFA; }
  .section.bgdgray {
    background-color: #E8E8E8; }

@media screen and (max-width: 768px) {
  .section {
    padding-top: 60px;
    padding-bottom: 60px; } }
/*----------------------------

基本のレイアウトパーツ

----------------------------*/
.column, .column-alw {
  display: flex;
  margin-left: -10px;
  margin-right: -10px; }
  .column > *, .column-alw > * {
    width: auto;
    margin-left: 10px;
    margin-right: 10px; }
  .column.fixed > *, .column-alw.fixed > * {
    width: calc(100% - 20px); }
  .column.alc, .column-alw.alc {
    align-items: center; }

@media screen and (max-width: 768px) {
  .column {
    flex-direction: column;
    margin-left: 0px;
    margin-right: 0px; }
    .column > * {
      margin-left: 0px;
      margin-right: 0px;
      margin-top: 20px; }
    .column.fixed > * {
      width: 100%; } }
ul.linklist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 1.6rem; }
  ul.linklist > li {
    padding: 0.5rem 2.5rem;
    border-left: 1px solid #B8B8B8;
    text-align: center; }
    ul.linklist > li:last-child {
      border-right: 1px solid #B8B8B8; }
    ul.linklist > li a {
      color: inherit;
      text-decoration: none;
      line-height: 2.8rem; }
      ul.linklist > li a img {
        max-height: 2.8rem;
        width: auto; }
    ul.linklist > li.blank a {
      background: url("../img/icon_blank.svg") left center no-repeat;
      background-size: auto 1.2rem;
      padding-left: 2.8rem; }

@media screen and (max-width: 768px) {
  ul.linklist {
    flex-direction: column;
    justify-content: flex-start;
    border-bottom: 1px solid #B8B8B8; }
    ul.linklist > li {
      border-top: 1px solid #B8B8B8;
      border-left: none;
      text-align: left;
      padding: 0.8rem; }
      ul.linklist > li:last-child {
        border-right: none; } }
/*----------------------------

見出し系

----------------------------*/
h3.eng, h2.eng {
  text-align: center;
  margin-bottom: 30px; }
  h3.eng span.ja, h2.eng span.ja {
    display: block;
    font-size: 2.8rem;
    font-weight: bold; }
  h3.eng span.en, h2.eng span.en {
    display: block;
    font-size: 1.3rem;
    color: #001C4E;
    margin-top: 0.8rem; }

h3.basic {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 3rem;
  margin-top: 5rem;
  border-left: 4px solid #223A65;
  padding: 0.5rem 0 0.5rem 1.5rem; }

h4.basic {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem; }
  h4.basic.navy {
    color: #223A65; }

@media screen and (max-width: 768px) {
  h3.eng span.ja {
    font-size: 2.4rem; }
  h3.eng span.en {
    font-size: 0.9rem;
    margin-top: 0.6rem; } }
.ullist {
  border-bottom: 1px solid #C0C0C0; }
  .ullist .item {
    border-top: 1px solid #C0C0C0;
    padding: 15px 0;
    display: flex;
    justify-content: space-between; }
    .ullist .item .txt span {
      display: block;
      font-size: 1.6rem;
      padding: 2px 0; }
      .ullist .item .txt span.main {
        font-weight: bold; }
    .ullist .item .int .btn.xsmall {
      margin-top: 0; }

/*----------------------------

ボタン

----------------------------*/
.btn, button {
  font-family: "Noto Sans JP", sans-serif;
  min-width: 40rem;
  height: 65px;
  margin-top: 30px;
  font-weight: bold;
  font-size: 2rem;
  padding: 0.5em;
  margin-left: auto;
  margin-right: auto;
  border-radius: 5px;
  background-color: #353535;
  text-decoration: none;
  color: #FFF;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  text-align: center;
  line-height: 1.2;
  display: block; }
  .btn a, .btn p, button a, button p {
    display: block;
    color: inherit;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 0.5em;
    margin: -0.5em; }
  .btn.small, button.small {
    max-width: 35rem;
    min-width: 25rem;
    height: 50px;
    font-size: 1.8rem;
    margin-top: 20px; }
  .btn.xsmall, button.xsmall {
    max-width: 20rem;
    min-width: 10rem;
    height: 40px;
    font-size: 1.4rem;
    margin-top: 20px; }
.btn-c-navy {
  background-color: #001C4E; }

.btn-c-orange {
  background-color: #EC4E20; }

.btn-c-off, button:disabled {
  background-color: #909090;
  pointer-events: none; }

.btn-c-gray {
  background-color: #646464; }

.btn-c-line {
  background-color: #FFF;
  border: 2px solid #001C4E;
  color: #001C4E; }

.btn-i-right {
  position: relative;
  padding-left: 1.8rem; }
  .btn-i-right:after {
    content: '';
    width: 1.8rem;
    height: 1.8rem;
    background: url("../img/icon_right.svg") center center no-repeat;
    background-size: contain;
    opacity: 0.8;
    position: absolute;
    right: 2rem;
    top: 50%;
    margin-top: -1rem; }

.btn-i-arr {
  position: relative;
  padding-left: 1.8rem; }
  .btn-i-arr:after {
    content: '';
    width: 1.8rem;
    height: 1.8rem;
    background: url("../img/icon_right.svg") center center no-repeat;
    background-size: contain;
    opacity: 0.8;
    position: absolute;
    left: 1.5rem;
    top: 50%;
    margin-top: -1rem; }

.btn-i-login {
  position: relative;
  padding-left: 1.8rem; }
  .btn-i-login:after {
    content: '';
    width: 1.8rem;
    height: 1.8rem;
    background: url("../img/icon_login.svg") center center no-repeat;
    background-size: contain;
    opacity: 0.8;
    position: absolute;
    left: 1.5rem;
    top: 50%;
    margin-top: -1rem; }

.btn-i-edit {
  position: relative;
  padding-left: 1.8rem; }
  .btn-i-edit:after {
    content: '';
    width: 1.8rem;
    height: 1.8rem;
    background: url("../img/icon_pen.svg") center center no-repeat;
    background-size: contain;
    opacity: 0.8;
    position: absolute;
    left: 1.5rem;
    top: 50%;
    margin-top: -1rem; }

.btn-i-back {
  position: relative;
  margin: 0;
  width: 10rem;
  padding-left: 1.8rem; }

.btn-i-back:after {
  content: '';
  width: 1.8rem;
  height: 1.8rem;
  background: url("../img/icon_left.svg") center center no-repeat;
  background-size: contain;
  opacity: 0.8;
  position: absolute;
  left: 1.5rem;
  top: 50%;
  margin-top: -1rem; }

.bgbox {
  padding: 30px;
  background-color: #FAFAFA; }
  .bgbox.w50 {
    width: 50%;
    margin-left: auto;
    margin-right: auto; }
  .bgbox.w25 {
    width: 25%;
    margin-left: auto;
    margin-right: auto; }
  .bgbox.wfit {
    width: fit-content;
    margin-left: auto;
    margin-right: auto; }

@media screen and (max-width: 768px) {
  .btn, button {
    max-width: none;
    min-width: auto;
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
    height: 60px;
    margin-top: 20px;
    font-size: 1.8rem; }
    .btn.small, button.small {
      max-width: none;
      height: 50px;
      font-size: 1.6rem;
      margin-top: 20px; }
    .btn.xsmall, button.xsmall {
      max-width: none;
      height: 40px;
      font-size: 1.4rem;
      margin-top: 20px; }

  .column .btn, .column button {
    width: 100%;
    margin-left: 0;
    margin-right: 0; }
  .column .btn {
    margin-bottom: 0;
    margin-top: 0; }

  .bgbox.w50, .bgbox.w25, .bgbox.wfit {
    width: auto; } }
.bannerbox {
  border: 1px solid #001C4E;
  border-radius: 5px;
  width: 500px;
  height: 90px;
  line-height: 1.5;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px; }
  .bannerbox a {
    display: block;
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
    color: #001C4E; }
    .bannerbox a p.img {
      width: 100%; }
    .bannerbox a p.txt {
      width: 100%;
      font-size: 1.6rem;
      font-weight: bold; }
      .bannerbox a p.txt span {
        font-weight: normal;
        font-size: 1.4rem; }

@media screen and (max-width: 768px) {
  .bannerbox {
    width: 100%;
    height: auto; }
    .bannerbox a {
      flex-direction: row;
      flex-direction: column; }
      .bannerbox a p.img {
        width: 100%; }
        .bannerbox a p.img img {
          width: 100%; }
      .bannerbox a p.txt {
        width: auto;
        padding: 1em; } }
/*----------------------------

その他

----------------------------*/
.mb0 {
  margin-bottom: 0px !important; }

.mb10 {
  margin-bottom: 10px; }

.mb20 {
  margin-bottom: 20px; }

.mb30 {
  margin-bottom: 30px; }

.mt0 {
  margin-top: 0px; }

.mt10 {
  margin-top: 10px; }

.mt20 {
  margin-top: 20px; }

.mt30 {
  margin-top: 30px; }

.tac {
  text-align: center; }

.tal {
  text-align: left; }

.tar {
  text-align: right; }

.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 20px; }

.youtube iframe {
  width: 100%;
  height: 100%; }

a, button {
  transition: all 0.3s; }
  a:hover, button:hover {
    opacity: 0.6; }