@charset "UTF-8";
/*===========================================
  ベース設定
===========================================*/

html {
  font-size: 62.5%;

  scroll-behavior: smooth;
}

body {
  background-color: #fafafa;
  font-size: 1.6rem;
  font-family: 'Zen Maru Gothic', "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  line-height: 1.5;
}

/* ボックス要素の計算 */

*,
*:before,
*:after {
  box-sizing: border-box;
}

/* 青い線を消す */

*:focus {
  outline: none;
}

/* リンク */

a {
  text-decoration: underline;
}

/* 画像の調整 */

img {
  max-width: 100%;
  height: auto;
}

/* 改行調整 */

.nowrap {
  display: inline-block;
  width: max-content;
  text-indent: initial;
  white-space: nowrap;
}

/* 要素枠 */

.inner {
  margin: 0 auto;
  width: 88%;
}

/*===========================================
  コンテナー（container）
===========================================*/

.container {
  margin: 0 auto;
  /* max-width: 959px; */
	max-width: 920px;
  background: #fff;
}

/*===========================================
  ダウンロード（download）
===========================================*/

.download {
  padding: 0 5% 30px;
  text-align: center;
}

.download__title {
  margin-top: 7%;
  margin-bottom: 20px;
}

.download__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.download__item {
  margin: 1%;
  width: 23%;
  border: solid 1px #eee;
}

.download__button {
  margin: 5%;
}

.download__link {
  display: block;
  border-radius: 5px;
  background-color: #e50211;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  font-size: 25px;
  line-height: 90px;
  transition: 0.3s;
}

.download__link:hover {
  background-color: #ac030e;
}

@media screen and (max-width:750px) {
  .download__item {
    width: 31.33333%;
    width: calc(94% / 3);
  }
  .download__link {
    font-size: 22px;
    line-height: 80px;
  }
}

@media screen and (max-width:520px) {
  .download__item {
    width: 48%;
  }
  .download__link {
    font-size: 19px;
    line-height: 70px;
  }
}

/*===========================================
  お問い合わせ（contact）
===========================================*/

.contact,
.contact dt,
.contact dd {
  font-weight: 500 !important;
}

.contact {
  margin: 0 5% 5%;
  padding: 2.5% 5%;
  width: 90%;
  border: solid 4px #12478a;
  color: #333333;
  font-size: 1.6rem;
}

.contact h3 {
  margin-bottom: 10px;
  text-align: center;
  font-size: 120%;
}

.contact dl {
  margin: 10px 0;
}

.contact li {
  margin-left: 1em;
  text-indent: -1em;
}

.contact a {
  color: #102b16;
}

@media screen and (max-width:750px) {
  .contact {
    padding: 7% 5%;
    font-size: 1.4rem;
  }
}

/*===========================================
  フッター（footer）
===========================================*/

.footer {
  background-color: #191b61;
  color: #ffffff;
  text-align: center;
}

.footer__pagetop {
  background: #eee;
  color: #000000;
}

.footer__pagetop a {
  display: block;
  padding: 0.8em 1em;
  font-size: 1.2rem;
}

.footer__pagetop span {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  color: #000;
  vertical-align: middle;
  text-decoration: none;
}

.footer__pagetop span::before {
  position: absolute;
  top: 50%;
  left: 0;
  margin: auto;
  width: 0.6em;
  height: 0.6em;
  border-top: 1px solid #808080;
  border-right: 1px solid #808080;
  content: "";
  vertical-align: middle;
  -webkit-transform: rotate(-45deg) translateY(-50%);
  transform: rotate(-45deg) translateY(-50%);
}

.footer__company dl {
  padding: 2em 2em 0;
  font-size: 1.2rem;
}

.footer__company dt,
.footer__company dd {
  display: inline;
  margin: 0 5px;
}

.footer__copyright {
  padding: 2em;
  /* color: #fff; */
  font-size: 1rem;
}

@media screen and (max-width:750px) {
  .footer__contact dt {
    margin-bottom: 1em;
    font-size: 1.4rem;
  }
  .footer__contact dd {
    text-align: left;
  }
  .footer__contact dd+dd {
    margin-top: 0.5em;
    font-size: 1.3rem;
  }
  .footer__contact dd:last-child {
    margin-left: 1em;
    text-indent: -1em;
  }
}

/*===========================================
  モーダル（modal）
===========================================*/

.modalArea {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: none;
  width: 100%;
  height: 100%;
}

.modalBg {
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.9);
}

.modalWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  background-color: #fff;
  transform: translate(-50%, -50%);
}

.closeModal {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 20px;
  text-align: center;
  font-size: 20px;
  line-height: 20px;
  cursor: pointer;
}

.modalContents {
  text-align: center;
}

.modalThumbnail {
  margin: 0 auto 30px;
  width: 60%;
}

.modalList {
  display: flex;
}

.modalItem {
  padding: 0 2%;
  width: 50%;
}

@media screen and (max-width:750px) {
  .modalWrapper {
    padding: 5%;
  }
  .modalThumbnail {
    margin: 0 auto 7%;
    width: 80%;
  }
}