@charset "UTF-8";
/*16*1.75/2*/
/*======*/
/* 共通 */
/*======*/
/* PC/SP出し分け
------------------------------ */
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* レイアウト
-----------------------------------*/
body {
  height: 100%;
}

main {
  margin-top: 0;
}

section .contents {
  max-width: 1408px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 767px) {
  section .contents {
    padding: 0 24px;
  }
}

section .contents p,
section .contents ul,
section .contents ol {
  margin-bottom: 1em;
}

.bg-color {
  background-color: #EDF2F7;
  padding-bottom: 160px;
}
@media (max-width: 767px) {
  .bg-color {
    padding-bottom: 120px;
  }
}

.intro {
  max-width: 1200px;
  font-size: 18px;
  margin: 80px auto 24px;
}
@media (max-width: 767px) {
  .intro {
    font-size: 14px;
    margin: 64px auto 24px;
  }
}

/* フォーム
-----------------------------------*/
input[type=text],
input[type=email],
input[type=tel],
textarea {
  width: 100%;
  padding: 8px;
  font-size: 16px;
}

input[type=date],
select {
  max-width: 100%;
  padding: 8px;
  font-size: 16px;
}

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button],
button {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

/* タイトル
-----------------------------------*/
.title-area {
  height: 432px;
  background: url(/images/common/title_bg01.jpg) no-repeat;
  background-position: top 64px left;
  background-size: cover;
  padding: 210px 0 136px;
}
@media (max-width: 767px) {
  .title-area {
    height: 212px;
    background: url(/images/common/title_bg01_sp.jpg) no-repeat;
    padding: 0;
    background-position: top left;
    background-size: cover;
  }
}
.title-area .heading-title {
  font-size: 18px;
  font-family: "Roboto Condensed", "Zen Kaku Gothic Antique", sans-serif;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.2em;
  text-align: center;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .title-area .heading-title {
    font-size: 12px;
    line-height: 1.6;
    padding: 84px 0 16px;
  }
}
.title-area .heading-title span {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-size: 40px;
  color: #0074C2;
  letter-spacing: 0.16em;
}
@media (max-width: 767px) {
  .title-area .heading-title span {
    font-size: 24px;
  }
}

.heading01 {
  font-size: 16px;
  font-family: "Roboto Condensed", "Zen Kaku Gothic Antique", sans-serif;
  line-height: 1.8;
  letter-spacing: 0.2em;
  text-align: center;
  padding-top: 160px;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .heading01 {
    font-size: 14px;
    padding-top: 80px;
    margin-bottom: 48px;
  }
}
.heading01 span {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-size: 32px;
  letter-spacing: 0.15em;
  color: #0074C2;
}
@media (max-width: 767px) {
  .heading01 span {
    font-size: 20px;
  }
}

.heading02 {
  position: relative;
  font-size: 28px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  line-height: 1.2;
  padding: 64px 0 24px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .heading02 {
    font-size: 18px;
    padding: 32px 0 16px;
    margin-bottom: 16px;
  }
}
.heading02::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 320px;
  height: 1px;
  background-color: #0074C2;
}
@media (max-width: 767px) {
  .heading02::after {
    width: 140px;
  }
}

.heading03 {
  position: relative;
  padding-left: 1em;
  font-size: 20px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  line-height: 1.3;
  margin: 48px auto 16px;
}
@media (max-width: 767px) {
  .heading03 {
    font-size: 16px;
    margin: 24px auto 16px;
  }
}
.heading03::after {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: 20px;
  background: url(/images/common/ic01.svg) no-repeat;
  background-position: bottom left;
  background-size: 100% 100%;
}
@media (max-width: 767px) {
  .heading03::after {
    height: 16px;
  }
}

/* リンクテキスト（リンク共通の記載があれば）
-----------------------------------*/
.link-txt {
  text-decoration: underline;
  color: #003075;
}
.link-txt:hover {
  color: #808080;
}

.ic-link-txt {
  position: relative;
  text-decoration: none;
  color: #003075;
  padding-left: 1em;
}
.ic-link-txt::before {
  content: "";
  display: block;
  position: absolute;
  width: 4px;
  height: 4px;
  left: 4px;
  top: 48%;
  margin-top: -2px;
  border-bottom: 1px solid #003075;
  border-right: 1px solid #003075;
  transform: rotate(-45deg);
}
.ic-link-txt:hover {
  text-decoration: none;
  color: #808080;
}

@media screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* リンクボタン
-----------------------------------*/
.com-bt {
  display: inline-block;
  min-width: 200px;
  padding: 16px 48px;
  border: 1px solid #003075;
  background-color: #FFF;
  color: #003075;
  font-family: "Roboto Condensed", "Zen Kaku Gothic Antique", sans-serif;
  box-shadow: 0px 4px 5px 0 rgba(0, 48, 177, 0.2);
  line-height: 1;
  text-align: center;
  vertical-align: top;
  transition: 0.5s all;
}
.com-bt:hover {
  background-color: #6B92C1;
  text-decoration: none;
  color: #FFF;
}
@media (max-width: 767px) {
  .com-bt {
    display: block;
    width: 100%;
    padding: 16px 32px;
  }
}
.com-bt.next {
  position: relative;
}
.com-bt.next::after {
  content: "";
  position: absolute;
  display: block;
  right: 16px;
  top: 50%;
  margin-top: -4px;
  border-color: #333;
  border-style: solid;
  border-width: 0 1px 1px 0;
  height: 8px;
  vertical-align: middle;
  width: 8px;
  transform: rotate(-45deg);
}
.com-bt.prev {
  position: relative;
  border: 1px solid #333;
  color: #333;
}
.com-bt.prev::before {
  content: "";
  position: absolute;
  display: block;
  left: 16px;
  top: 50%;
  margin-top: -4px;
  border-color: #333;
  border-style: solid;
  border-width: 0 1px 1px 0;
  height: 8px;
  vertical-align: middle;
  width: 8px;
  transform: rotate(135deg);
}
.com-bt.prev:hover {
  background-color: #848484;
  color: #FFF;
}
.com-bt:hover::before, .com-bt:hover::after {
  border-color: #FFF;
}

input[type=submit].com-bt,
input[type=button].com-bt,
button.com-bt {
  border: 1px solid #003075;
  background-color: #FFF;
  font-family: "Roboto Condensed", "Zen Kaku Gothic Antique", sans-serif;
  color: #003075;
  line-height: 1;
  cursor: pointer;
}
input[type=submit].com-bt:hover,
input[type=button].com-bt:hover,
button.com-bt:hover {
  background-color: #6B92C1;
  color: #FFF;
}
@media (max-width: 767px) {
  input[type=submit].com-bt,
input[type=button].com-bt,
button.com-bt {
    font-size: 14px;
  }
}
input[type=submit].com-bt.prev,
input[type=button].com-bt.prev,
button.com-bt.prev {
  position: relative;
  border: 1px solid #333;
  color: #333;
}
input[type=submit].com-bt.prev:hover,
input[type=button].com-bt.prev:hover,
button.com-bt.prev:hover {
  background-color: #848484;
  color: #FFF;
}

/*============*/
/* 共通・汎用 */
/*============*/
/* 段落
-----------------------------------*/
/* ぶら下げインデント */
.indent {
  margin-left: 1em;
  text-indent: -1em;
}

/* 汎用カラム
-----------------------------------*/
.row:after {
  content: "";
  clear: both;
  display: block;
}

.multicolumn,
.multilist {
  overflow: hidden !important;
}

.multicolumn-left {
  float: left;
}

.multicolumn-right {
  float: right;
}

.multilist li {
  float: left;
}

/* 横並びリスト
-----------------------------------*/
.list-col2,
.list-col3,
.list-col4 {
  display: flex;
  justify-content: space-around;
  gap: 24px 4%;
}
.list-col2.reverse,
.list-col3.reverse,
.list-col4.reverse {
  flex-direction: row-reverse;
}

.list-col2 li {
  width: 48%;
  text-align: center;
}

.list-col3 {
  gap: 16px 2%;
}
.list-col3 li {
  width: 32%;
  text-align: center;
}

.list-col4 {
  gap: 16px 1%;
}
.list-col4 li {
  width: 24%;
  text-align: center;
}

.list-news {
  margin-bottom: 0;
}
.list-news li {
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .list-news li {
    margin-bottom: 20px;
  }
}
.list-news li dl {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.list-news li dl dt {
  width: 108px;
  padding-left: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid #0074C2;
  line-height: 2;
}
@media (max-width: 767px) {
  .list-news li dl dt {
    width: 6.5em;
    font-size: 12px;
    padding: 0 1em 12px 0.5em;
  }
}
.list-news li dl dd {
  width: calc(100% - 108px);
  padding: 0 16px 16px;
  border-bottom: 1px solid #D3D3D3;
}
@media (max-width: 767px) {
  .list-news li dl dd {
    width: calc(100% - 5.5em);
    padding: 0 0 12px 1em;
    font-size: 14px;
  }
}

/* アコーディオン
-----------------------------------*/
.ac-menu {
  position: relative;
  margin-top: 24px;
  padding: 16px 64px 16px 24px;
  border: 1px solid #CECECE;
  line-height: 1;
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: bold;
  cursor: pointer;
}
.ac-menu::after {
  content: "";
  position: absolute;
  right: 16px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 calc(24px / 2) 16px calc(24px / 2);
  border-color: transparent transparent #CECECE transparent;
}
.ac-menu.open::after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px calc(24px / 2) 0 calc(24px / 2);
  border-color: #CECECE transparent transparent transparent;
}

.ac-cts {
  display: none;
  padding: 16px 24px;
}

/* カラム幅
-----------------------------------*/
.w1000 {
  width: 1000px;
}

/* リスト、アイコン
-----------------------------------*/
/* リスト（デフォルト） */
.list-df {
  margin-left: 23px;
  list-style: disc;
}

/* リスト（ドット） */
.list-dot li {
  padding-left: 1em;
}

.list-dot li:before {
  content: "・";
  margin-left: -1em;
}

/* リスト（数字） */
.list-num li {
  margin-left: 30px;
}

/* リスト（point） */
.list-point li {
  position: relative;
  padding-left: 1em;
}
.list-point li:not(:last-child) {
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .list-point li:not(:last-child) {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .list-point li {
    padding-left: 8px;
  }
}
.list-point li::before {
  content: "■";
  position: absolute;
  top: 8px;
  left: 0.5em;
  color: #0074C2;
  font-size: 6px;
}
@media (max-width: 767px) {
  .list-point li::before {
    font-size: 5px;
  }
}

/* テーブル
-----------------------------------*/
/* 幅 */
col.colw05 {
  width: 5%;
}

col.colw10 {
  width: 10%;
}

col.colw15 {
  width: 15%;
}

col.colw20 {
  width: 20%;
}

col.colw25 {
  width: 25%;
}

col.colw30 {
  width: 30%;
}

col.colw35 {
  width: 35%;
}

col.colw40 {
  width: 40%;
}

col.colw45 {
  width: 45%;
}

col.colw50 {
  width: 50%;
}

/* テーブル */
.table {
  width: 100%;
  margin-bottom: 1em;
  border-collapse: collapse;
  border-spacing: 0;
}
.table th {
  padding: 16px;
  border-top: solid 1px #D3D3D3;
  border-left: solid 1px #D3D3D3;
  border-right: solid 1px #D3D3D3;
  border-bottom: solid 1px #0074C2;
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 767px) {
  .table th {
    padding: 8px 4px;
  }
}
.table td {
  padding: 16px;
  border: solid 1px #D3D3D3;
}
@media (max-width: 767px) {
  .table td {
    padding: 8px 4px;
  }
}
/*# sourceMappingURL=common.css.map */