@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%;
  font-family: "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Verdana, sans-serif;
}

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

body {
  color: #333333;
}

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

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

h1, h2, h3, h4, h5 {
  margin: 0;
  padding: 0;
  line-height: 1.25em;
}

a {
  color: #0070C0;
  text-decoration: none;
}

p {
  margin-top: 0;
  margin-bottom: 1.5em;
}

ul,
dl {
  padding: 0;
}

li, dt, dd {
  margin: 0px;
  padding: 0px;
}

table,
th,
td {
  border-collapse: collapse;
  border: 1px;
}

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"],
textarea {
  font-family: "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Verdana, sans-serif;
  font-size: 16px;
  border: 1px solid #c3cbd0;
  background-color: #fff;
  width: 100%;
  padding: 0.4rem;
  border-radius: 2px;
}

/* ボタン */
button,
input[type="button"],
input[type="submit"] {
  font-size: 16px;
  letter-spacing: normal;
  text-transform: none;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* セレクトボックス */
.select {
  position: relative;
  display: inline-block;
}

.select.block {
  display: block;
  margin-bottom: .5em;
}

.select select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  padding: .4em 50px .4em .4em;
  width: 100%;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 2px;
}

.select select::-ms-expand {
  display: none;
}

.select select option:not(:last-child) {
  border-bottom: 1px dashed #ccc;
}

.select::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  pointer-events: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 100%;
  content: "";
  background-color: #0070C0;
  border-radius: 0 2px 2px 0;
}

.select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  display: inline-block;
  margin-top: -6px;
  width: 8px;
  height: 8px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  pointer-events: none;
}

.front-flex {
    display: flex;
    width: 1280px;
    margin-bottom: 80px;
}

.front-flex li {
  text-align: left;
    color: #BF0000;
}

/* ***************************************************
 SP
*************************************************** */
@media screen and (max-width: 1000px) {
  .pc {
    display: none !important;
  }
  html.scroll-prevent {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  body {
    min-width: 320px;
    min-height: 100vh;
    line-height: 1.75em;
    font-size: 1rem;
    font-weight: bold;
  }

.front-flex {
    display: block;
    width: 100%;
}

.front-flex li {
      margin-left: 20px;
}

  .container {
    padding-top: 90px;
  }
  @-webkit-keyframes show {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  @keyframes show {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  .header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    height: 60px;
    padding: 0 0 0 4vw;
    background-color: #fff;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  }
  .header.fixed {
    -webkit-animation: show .5s ease 0s;
            animation: show .5s ease 0s;
    position: fixed;
    -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
  }
  .header .header-left {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-right: 20px;
  }
  .header .header-left .logo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
    color: #333333;
    white-space: nowrap;
  }
  .header .header-left .logo img {
    width: 32px;
    margin-right: 14px;
  }
  .header .header-left .logo b {
    display: block;
    font-size: 11px;
    line-height: 1.5em;
  }
  .header .header-left .logo strong {
    display: block;
    font-size: 14px;
    line-height: 1.25em;
  }
  .header .header-nav {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    min-width: 100%;
    height: calc(100vh - 60px);
    background-color: #fff;
    padding: 10px 4vw;
    -webkit-animation: show .5s ease 0s;
            animation: show .5s ease 0s;
    overflow-y: auto;
  }
  .header .header-nav.active {
    display: block;
  }
  .header .header-nav ul {
    list-style: none;
    height: 100%;
    margin: 0;
    padding-top: 20px;
    font-size: 22px;
  }
  .header .header-nav ul li {
    white-space: nowrap;
    padding: 20px 0;
  }
  .header .header-nav ul li:not(:last-child) a {
    position: relative;
    height: 100%;
    color: #0070C0;
    padding: 20px 0 0 35px;
    line-height: 1em;
  }
  .header .header-nav ul li:not(:last-child) a::before, .header .header-nav ul li:not(:last-child) a::after {
    position: absolute;
    content: "";
  }
  .header .header-nav ul li:not(:last-child) a::before {
    top: 22px;
    left: 0;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #0070C0;
  }
  .header .header-nav ul li:not(:last-child) a::after {
    top: 29px;
    left: 11px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-right: 0 solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 6px solid #fff;
  }
  .header .header-nav ul li:last-child {
    margin-top: 80px;
    text-align: center;
    font-size: 20px;
  }
  .header .header-nav ul li:last-child a {
    display: inline-block;
    width: 100%;
    max-width: 500px;
    text-align: center;
    background-color: #0070C0;
    color: #fff;
    border-radius: 40px;
    padding: 14px;
  }
  #hamburger {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    width: 60px;
    height: 60px;
  }
  #hamburger div {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #hamburger i {
    display: inline-block;
    width: 50%;
    height: 3px;
    border-radius: 2px;
    background-color: #0070C0;
  }
  #hamburger i:before, #hamburger i:after {
    content: "";
    height: 3px;
    border-radius: 3px;
    display: block;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background-color: #0070C0;
  }
  #hamburger i:before {
    -webkit-transform: translate(0px, -9px);
            transform: translate(0px, -9px);
  }
  #hamburger i:after {
    -webkit-transform: translate(0px, 6px);
            transform: translate(0px, 6px);
  }
  #hamburger.active i {
    height: 0;
  }
  #hamburger.active i:before {
    -webkit-transform: rotate(-45deg) translate(0, 0);
            transform: rotate(-45deg) translate(0, 0);
  }
  #hamburger.active i:after {
    -webkit-transform: rotate(45deg) translate(-1px, -2px);
            transform: rotate(45deg) translate(-1px, -2px);
  }
  /* ////////////////// フッター ////////////////// */
  .footer {
    margin-top: 60px;
  }
  .footer a {
    color: #333333;
  }
  .footer-reserve {
    text-align: center;
    padding: 0 4vw;
  }
  .footer-reserve .reserve-inner {
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
    padding: 50px 3vw;
    background-color: #0070C0;
    color: #fff;
    border-radius: 10px;
  }
  .footer-reserve h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .footer-reserve .reserve-btn-wrapper {
    margin-top: 30px;
  }
  .footer-reserve .reserve-btn-wrapper .reserve-btn {
    max-width: 300px;
    margin: 0 auto 30px;
  }
  .footer-reserve .reserve-btn-wrapper .reserve-btn p {
    position: relative;
    display: inline-block;
    margin: 0 auto 15px;
    padding: 0 15px;
    font-size: 20px;
  }
  .footer-reserve .reserve-btn-wrapper .reserve-btn p::before, .footer-reserve .reserve-btn-wrapper .reserve-btn p::after {
    content: "";
    position: absolute;
    bottom: 0;
    display: inline-block;
    width: 3px;
    height: 30px;
    background-color: #fff;
  }
  .footer-reserve .reserve-btn-wrapper .reserve-btn p::before {
    left: 0;
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
  .footer-reserve .reserve-btn-wrapper .reserve-btn p::after {
    right: 0;
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  .footer-reserve .reserve-btn-wrapper .reserve-btn > img {
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  }
  .footer-reserve .dl-title {
    position: relative;
    display: inline-block;
    margin: 50px auto 15px;
    padding: 0 15px;
    font-size: 20px;
    color: #0070C0;
  }
  .footer-reserve .dl-title::before, .footer-reserve .dl-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    display: inline-block;
    width: 3px;
    height: 50px;
    background-color: #0070C0;
  }
  .footer-reserve .dl-title::before {
    left: 0;
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
  .footer-reserve .dl-title::after {
    right: 0;
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  .footer-reserve .dl-button {
    margin-bottom: 60px;
  }
  .footer-reserve .dl-button a {
    display: inline-block;
    width: 100%;
    padding: 12px 6vw;
    background-color: #0070C0;
    color: #fff;
    font-size: 18px;
    line-height: 30px;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  }
  .footer-reserve .dl-button a span {
    display: inline-block;
    text-align: left;
  }
  .footer-reserve .dl-button a img {
    margin-left: 8px;
    margin-bottom: 12px;
  }
  .footer-mail {
    padding: 60px 0 75px;
    border-top: 1px solid #D6DED6;
    text-align: center;
    font-style: normal;
  }
  .footer-mail h3 {
    font-size: 28px;
    color: #0070C0;
    margin-bottom: 35px;
  }
  .footer-mail p {
    margin: 0 auto;
  }
  .footer-bottom {
    background-color: #F3FAFF;
    padding: 40px 0 0;
  }
  .footer-bottom h2 {
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1em;
    color: #0070C0;
    padding: 0 4vw;
  }
  .footer-list-wrapper {
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
    padding: 25px 4vw 0;
  }
  .footer-list h3 {
    font-size: 14px;
    color: #0070C0;
    line-height: 1em;
    margin-bottom: .5em;
  }
  .footer-list h3::before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 5px;
    border-radius: 50%;
    background-color: #0070C0;
  }
  .footer-list ul {
    list-style: none;
    margin: 0 auto 30px;
    padding: 0 0 0 17px;
    font-size: 14px;
  }
  .footer-list ul li {
    margin-bottom: .25em;
    line-height: 1.5em;
  }
  .copyright {
    border-top: 1px solid #D6DED6;
    text-align: center;
    margin: 0;
    padding: .75em;
    font-size: 12px;
  }
  article section,
  .mv {
    padding-left: 4vw;
    padding-right: 4vw;
    margin: 0 auto;
  }
  .front-mv {
    margin-top: 30px;
    margin-bottom: 80px;
    color: #0070C0;
    text-align: center;
  }
  .front-mv h1 {
    margin-bottom: 40px;
  }
  .front-mv h1 small {
    position: relative;
    top: -15px;
    font-size: 20px;
    background-color: #0070C0;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
  }
  .front-mv h1 small::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -19px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-top: 10px solid #0070C0;
  }
  .front-mv h1 span {
    display: block;
    font-size: 24px;
    margin-bottom: 20px;
  }
  .front-mv h1 strong {
    display: block;
    font-size: 48px;
  }
  .front-mv p {
    font-size: 21px;
    line-height: 1.5em;
  }








   .gairai-mv {
    margin-top: 30px;
    margin-bottom: 80px;
    color: #0070C0;
    text-align: center;
  }
  .gairai-mv h1 {
    margin-bottom: 40px;
  }
  .gairai-mv h1 small {
    position: relative;
    top: -15px;
    font-size: 16px;
    background-color: #0070C0;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
  }
  .gairai-mv h1 small::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -19px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-top: 10px solid #0070C0;
  }
  .gairai-mv h1 span {
    display: block;
    font-size: 15px;
    margin-bottom: 20px;
  }
  .gairai-mv h1 strong {
    display: block;
    font-size: 26px;
  }
  .gairai-mv p {
    font-size: 15px;
    line-height: 1.5em;
  }

  .front-point {
    margin-bottom: 100px;
  }
  .front-point h2 {
    margin-bottom: 50px;
    font-size: 28px;
    color: #0070C0;
    text-align: center;
  }
  .front-point h2 small {
    display: block;
    font-size: 20px;
  }

  .gairai-point h2 {
    margin-bottom: 0px;
    font-size: 22px;
    color: #000000;
    text-align: center;
  }

  .gairai-point h3 {
    margin-bottom: 0px;
    font-size: 16px;
    color: #000000;
    text-align: center;
  }

  .front-point .point-innner {
    text-align: center;
  }
  .front-point .point-innner:not(:last-child) {
    margin-bottom: 60px;
  }
  .front-point .point-innner h3 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    color: #0070C0;
    margin-bottom: 15px;
    text-align: left;
  }
  .front-point .point-innner h3 > small {
    font-size: 11px;
    line-height: 1em;
    margin-right: 15px;
    text-align: center;
  }
  .front-point .point-innner h3 > small span {
    display: block;
    font-size: 32px;
    line-height: 1em;
  }
  .front-point .point-innner h3 > b {
    font-size: 32px;
    line-height: 1.125em;
  }
  .front-point .point-innner p {
    font-size: 14px;
    line-height: 1.75em;
    margin: 0;
    text-align: left;
  }
  .front-point .point-innner p.subtitle {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .front-point .point-innner p strong {
    color: #0070C0;
  }
  .front-point .point-innner p.note {
    font-size: 12px;
    font-weight: normal;
  }
  .front-point .point-innner img {
    max-width: 70%;
    margin-top: 30px;
  }
  .section-title {
    margin-bottom: 50px;
    font-size: 28px;
    text-align: center;
    color: #0070C0;
  }

.front-note {
    background-color: #FFDFDF;
    border-radius: 18px;
    margin-bottom: 100px;
    padding: 50px 4vw;
    text-align: center;
}

.front-note2 {
    background-color: #CCEDFE;
    border-radius: 18px;
    margin-bottom: 100px;
    padding: 50px 4vw;
    text-align: center;
}

.front-note h2,.front-note2 h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #BF0000;
    text-align: center;
}

.front-note p,.front-note2 p {
    font-size: 14px;
    margin-bottom: 15px;
    color:#BF0000;
}



  .front-recommend {
    background-color: #F3FAFF;
    border-radius: 18px;
    margin-bottom: 100px;
    padding: 50px 4vw;
  }
  .front-recommend ul {
    list-style: none;
    font-size: 14px;
    margin: 0 auto 40px;
    padding: 0;
  }
  .front-recommend ul li {
    margin-bottom: 15px;
    padding: 5px 0 10px 40px;
    background-image: url(../images/common/ico-check.svg);
    background-repeat: no-repeat;
    background-size: 28px;
  }
  .front-recommend .img {
    margin: 0;
    padding: 0 6vw;
    text-align: center;
  }
  .front-target {
    margin-bottom: 50px;
  }
  .front-target h3 {
    font-size: 18px;
    color: #0070C0;
    margin-bottom: 20px;
    line-height: 32px;
    background-image: url(../images/common/ico-home.png);
    background-repeat: no-repeat;
    background-size: 28px;
    padding-left: 40px;
  }
  .front-target ul {
    list-style: none;
    margin: 0 0 20px;
    padding: 0 0 0 67px;
  }
  .front-target ul li {
    position: relative;
    margin-bottom: 10px;
  }
  .front-target ul li::before {
    content: "";
    position: absolute;
    top: .5em;
    left: -20px;
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 5px;
    border-radius: 50%;
    background-color: #0070C0;
  }
  .front-flow-wrapper {
    padding-top: 50px;
    border-top: 1px solid #D6DED6;
  }
  .front-flow ol {
    list-style: none;
    padding: 0;
    margin-bottom: 50px;
  }
  .front-flow ol li {
    max-width: 325px;
    margin: 0 auto;
    text-align: center;
  }
  .front-flow ol li:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    margin: 30px auto 5px;
    border-bottom: 0 solid transparent;
    border-left: 24px solid transparent;
    border-right: 24px solid transparent;
    border-top: 30px solid #0070C0;
  }
  .front-flow ol li:last-child {
    margin-top: 10px;
  }
  .front-flow ol li figure {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .front-flow ol li figcaption {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    font-size: 20px;
    color: #0070C0;
    margin-bottom: 10px;
  }
  .front-flow ol li figcaption > small {
    display: inline-block;
    background-color: #fff;
    font-size: 11px;
    line-height: 1em;
    text-align: center;
    margin-right: 10px;
  }
  .front-flow ol li figcaption > small span {
    display: block;
    font-size: 28px;
    line-height: 1em;
  }
  .front-flow ol li figcaption b small {
    display: block;
    font-size: 14px;
    line-height: 1em;
  }
  .front-necessary {
    margin-bottom: 100px;
  }
  .front-necessary h3 {
    font-size: 20px;
    color: #0070C0;
    margin-bottom: 20px;
    line-height: 34px;
    background-image: url(../images/common/ico-bag.png);
    background-repeat: no-repeat;
    background-size: 28px;
    padding-left: 40px;
  }
  .front-necessary .list {
    list-style: none;
    margin: 0 0 20px;
    padding: 0 0 0 67px;
  }
  .front-necessary .list li {
    position: relative;
    margin-bottom: 5px;
  }
  .front-necessary .list li::before {
    content: "";
    position: absolute;
    top: .5em;
    left: -20px;
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 5px;
    border-radius: 50%;
    background-color: #0070C0;
  }
  .front-necessary .note {
    list-style: none;
    margin: 0 auto;
    padding: 0 0 0 67px;
  }
  .front-necessary .note li {
    position: relative;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.5em;
  }
  .front-necessary .note li::before {
    content: "※";
    position: absolute;
    top: 0;
    left: -20px;
    border-radius: 50%;
  }
  .page-title {
    font-size: 22px;
    margin: 0 auto 30px;
    padding-bottom: 30px;
    text-align: center;
    color: #0070C0;
    border-bottom: 1px solid #D6DED6;
  }
  .about-concept {
    margin-bottom: 50px;
    text-align: center;
  }
  .about-concept h2 {
    font-size: 63px;
    color: #D9EAF6;
  }
  .about-concept h3 {
    font-size: 24px;
    color: #0070C0;
    margin: 10px 0 20px;
    line-height: 1.5em;
  }
  .about-concept .text {
    text-align: left;
  }
  .about-concept .text p {
    font-size: 14px;
    line-height: 1.5em;
  }
  .about-network .section-title {
    font-size: 24px;
    margin-bottom: 25px;
  }
  .about-network p {
    text-align: center;
    margin: 0;
    line-height: 1.5em;
  }
  .about-network p.text {
    text-align: left;
    font-size: 14px;
  }
  .about-network p.img {
    margin: 30px auto;
  }
  .about-network p.memo {
    font-size: 16px;
  }
  .corp-mv {
    text-align: center;
    margin-bottom: 50px;
  }
  .corp-mv h2 {
    font-size: 20px;
    line-height: 1.75em;
    white-space: nowrap;
    margin-bottom: 20px;
  }
  .corp-mv h2 strong {
    background-color: #0070C0;
    color: #fff;
  }
  .corp-mv img {
    max-width: 80%;
  }
  .corp-question {
    position: relative;
    margin-bottom: 50px;
    padding: 0 4vw;
  }
  .corp-question div {
    background-color: #F3FAFF;
    padding: 40px 4vw;
  }
  .corp-question::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -39px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    border: 20px solid transparent;
    border-top: 20px solid #F3FAFF;
  }
  .corp-question h2 {
    margin-bottom: 30px;
    font-size: 18px;
    color: #0070C0;
    text-align: center;
  }
  .corp-question ul {
    list-style: none;
    font-size: 14px;
    margin: 0 auto;
  }
  .corp-question ul li {
    margin-bottom: 15px;
    padding: 0 0 10px 35px;
    background-image: url(../images/common/ico-check.svg);
    background-repeat: no-repeat;
    background-size: 25px;
  }
  .corp-image .section-title {
    font-size: 23px;
    margin-bottom: 40px;
  }
  .corp-image h3 {
    font-size: 20px;
    color: #0070C0;
  }
  .corp-image .image-inner {
    margin: 0 auto 40px;
  }
  .corp-image ul {
    list-style: none;
    margin-bottom: 10px;
  }
  .corp-image ul li {
    position: relative;
    padding-left: 20px;
  }
  .corp-image ul li::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 1px solid #333333;
    margin-right: 8px;
  }
  .corp-mail {
    padding: 60px 0 0;
    border-top: 1px solid #D6DED6;
    text-align: center;
    font-style: normal;
  }
}

/* ***************************************************
 PC
*************************************************** */
@media all and (min-width: 1001px) {
  .sp {
    display: none !important;
  }
  body {
    line-height: 1.75em;
    font-size: 18px;
    font-weight: bold;
  }
  .container {
    padding-top: 110px;
  }
  #hamburger {
    display: none;
  }
  @-webkit-keyframes show {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  @keyframes show {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  .header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    height: 80px;
    padding: 0 0 0 4%;
    background-color: #fff;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  }
  .header.fixed {
    -webkit-animation: show .5s ease 0s;
            animation: show .5s ease 0s;
    position: fixed;
    height: 70px;
    -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
  }
  .header .header-left {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-right: 20px;
  }
  .header .header-left .logo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 400px;
    margin: 0;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
    color: #333333;
    white-space: nowrap;
  }
  .header .header-left .logo img {
    margin-right: 14px;
  }
  .header .header-left .logo b {
    display: block;
    font-size: 16px;
    line-height: 1.5em;
  }
  .header .header-left .logo strong {
    display: block;
    font-size: 20px;
    line-height: 1.25em;
  }
  .header .header-nav {
    width: 75%;
    max-width: 680px;
    height: 100%;
    margin-left: 70px;
  }
  .header .header-nav ul {
    list-style: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
  }
  .header .header-nav ul li {
    height: 100%;
    white-space: nowrap;
    margin-left: 6%;
  }
  .header .header-nav ul li:last-child a {
    padding: 0 25px;
    background-color: #0070C0;
    color: #fff;
  }
  .header .header-nav ul li a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
  }
  .header .header-nav ul li span::after {
    content: "";
    display: block;
    width: 0;
    height: 4px;
    background-color: #0070C0;
    margin: 0 auto;
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  .header .header-nav ul li:hover span::after, .header .header-nav ul li.current span::after {
    width: 100%;
  }
  /* ////////////////// フッター ////////////////// */
  .footer {
    margin-top: 100px;
  }
  .footer a {
    color: #333333;
  }
  .footer-reserve {
    text-align: center;
  }
  .footer-reserve .reserve-inner {
    width: 1040px;
    margin: 0 auto;
    padding: 50px;
    background-color: #0070C0;
    color: #fff;
    border-radius: 10px;
  }
  .footer-reserve h2 {
    font-size: 35px;
    margin-bottom: 30px;
  }
  .footer-reserve .reserve-btn-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer-reserve .reserve-btn-wrapper .reserve-btn {
    width: 400px;
    margin-right: 80px;
  }
  .footer-reserve .reserve-btn-wrapper .reserve-btn p {
    position: relative;
    display: inline-block;
    margin: 0 auto 15px;
    padding: 0 15px;
    font-size: 24px;
  }
  .footer-reserve .reserve-btn-wrapper .reserve-btn p::before, .footer-reserve .reserve-btn-wrapper .reserve-btn p::after {
    content: "";
    position: absolute;
    bottom: 0;
    display: inline-block;
    width: 3px;
    height: 30px;
    background-color: #fff;
  }
  .footer-reserve .reserve-btn-wrapper .reserve-btn p::before {
    left: 0;
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
  .footer-reserve .reserve-btn-wrapper .reserve-btn p::after {
    right: 0;
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  .footer-reserve .reserve-btn-wrapper .reserve-btn > img {
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  }
  .footer-reserve .dl-title {
    position: relative;
    display: inline-block;
    margin: 70px auto 20px;
    padding: 0 15px;
    font-size: 24px;
    color: #0070C0;
  }
  .footer-reserve .dl-title::before, .footer-reserve .dl-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    display: inline-block;
    width: 3px;
    height: 30px;
    background-color: #0070C0;
  }
  .footer-reserve .dl-title::before {
    left: 0;
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
  .footer-reserve .dl-title::after {
    right: 0;
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  .footer-reserve .dl-button {
    margin-bottom: 100px;
  }
  .footer-reserve .dl-button a {
    display: inline-block;
    padding: 25px 48px;
    background-color: #0070C0;
    color: #fff;
    font-size: 24px;
    line-height: 30px;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  }
  .footer-reserve .dl-button a img {
    margin-left: 8px;
  }
  .footer-mail {
    padding: 60px 0 75px;
    border-top: 1px solid #D6DED6;
    text-align: center;
    font-style: normal;
  }
  .footer-mail h3 {
    font-size: 28px;
    color: #0070C0;
    margin-bottom: 35px;
  }
  .footer-mail p {
    margin: 0 auto;
  }
  .footer-bottom {
    background-color: #F3FAFF;
    padding-top: 40px;
  }
  .footer-bottom h2 {
    width: 1040px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1em;
    color: #0070C0;
  }
  .footer-list-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 1040px;
    margin: 0 auto;
    padding: 25px 0 60px;
  }
  .footer-list:not(:last-child) {
    margin-right: 65px;
  }
  .footer-list h3 {
    font-size: 14px;
    color: #0070C0;
    line-height: 1em;
    margin-bottom: .5em;
  }
  .footer-list h3::before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 5px;
    border-radius: 50%;
    background-color: #0070C0;
  }
  .footer-list ul {
    list-style: none;
    margin: 0;
    padding: 0 0 0 17px;
    font-size: 14px;
  }
  .footer-list ul li {
    margin-bottom: .25em;
    line-height: 1.5em;
  }
  .copyright {
    border-top: 1px solid #D6DED6;
    text-align: center;
    margin: 0;
    padding: .75em;
    font-size: 12px;
  }
  article section,
  .mv {
    width: 1040px;
    margin: 0 auto;
  }
  .front-mv {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 460px;
    margin-bottom: 80px;
    background-image: url(../images/front/mv.png);
    background-repeat: no-repeat;
    background-position: center right;
    color: #0070C0;
  }
  .front-mv h1 {
    margin-bottom: 40px;
  }
  .front-mv h1 small {
    position: relative;
    top: -10px;
    font-size: 20px;
    background-color: #0070C0;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
  }
  .front-mv h1 small::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -19px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-top: 10px solid #0070C0;
  }
  .front-mv h1 span {
    display: block;
    font-size: 26px;
    margin-bottom: 20px;
  }
  .front-mv h1 strong {
    display: block;
    font-size: 54px;
  }
  .front-mv p {
    font-size: 21px;
    line-height: 1.5em;
  }





  .gairai-mv {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 460px;
    margin-bottom:0px;
    color: #0070C0;
  }
  .gairai-mv h1 {
    margin-bottom: 40px;
  }
  .gairai-mv h1 small {
    position: relative;
    top: -10px;
    font-size: 20px;
    background-color: #0070C0;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
  }
  .gairai-mv h1 small::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -19px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-top: 10px solid #0070C0;
  }
  .gairai-mv h1 span {
    display: block;
    font-size: 20px;
    margin:20px;
  }
.gairai-mv h1 strong {
    display: block;
    font-size: 38px;
    line-height: 130%;
}
  .gairai-mv p {
    font-size: 21px;
    line-height: 1.5em;
  }

  .gairai-point h2 {
    margin-bottom: 0px;
    font-size: 28px;
    color: #000000;
    text-align: center;
  }

  .gairai-point h3 {
    margin-bottom: 0px;
    font-size: 22px;
    color: #000000;
    text-align: center;
  }  

  .front-point {
    margin-bottom: 100px;
  }
  .front-point h2 {
    margin-bottom: 50px;
    font-size: 28px;
    color: #0070C0;
    text-align: center;
  }
  .front-point h2 small {
    display: block;
    font-size: 20px;
  }
  .front-point .point-innner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .front-point .point-innner:not(:last-child) {
    margin-bottom: 60px;
  }
  .front-point .point-innner.point1 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    padding-left: 50px;
  }
  .front-point .point-innner.point1 img {
    margin-right: 60px;
  }
  .front-point .point-innner.point2 {
    padding-right: 100px;
  }
  .front-point .point-innner.point2 img {
    margin-left: 80px;
  }
  .front-point .point-innner.point3 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    padding-left: 180px;
    padding-right: 50px;
  }
  .front-point .point-innner.point3 img {
    margin-right: 80px;
  }
  .front-point .point-innner h3 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    color: #0070C0;
    margin-bottom: 15px;
  }
  .front-point .point-innner h3 > small {
    font-size: 11px;
    line-height: 1em;
    margin-right: 15px;
    text-align: center;
  }
  .front-point .point-innner h3 > small span {
    display: block;
    font-size: 32px;
    line-height: 1em;
  }
  .front-point .point-innner h3 > b {
    font-size: 32px;
    line-height: 1.125em;
  }
  .front-point .point-innner p {
    font-size: 16px;
    line-height: 1.75em;
    margin: 0;
  }
  .front-point .point-innner p.subtitle {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .front-point .point-innner p strong {
    color: #0070C0;
  }
  .front-point .point-innner p.note {
    font-size: 14px;
    font-weight: normal;
  }
  .section-title {
    margin-bottom: 50px;
    font-size: 28px;
    text-align: center;
    color: #0070C0;
  }


.front-note {
    background-color: #FFDFDF;
    border-radius: 18px;
    margin-bottom: 100px;
    padding: 50px;
    text-align: center;
    width: 100%;
    margin:5px;
}

.front-note2 {
    background-color: #CCEDFE;
    border-radius: 18px;
    margin-bottom: 100px;
    padding: 50px;
    text-align: center;
    width: 100%;
    margin:5px;
}

.front-note a:link,.front-note2 a:link { text-decoration: underline; }

.front-note h2,.front-note2 h2 {
    margin-bottom: 20px;
    font-size: 34px;
    color: #BF0000;
    text-align: center;
}

.front-note p,.front-note2 p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #BF0000;
}

  .front-recommend {
    background-color: #F3FAFF;
    border-radius: 18px;
    margin-bottom: 100px;
    padding: 50px;
  }
  .front-recommend ul {
    list-style: none;
    font-size: 22px;
    margin: 0 auto 40px;
    padding-left: 200px;
  }
  .front-recommend ul li {
    margin-bottom: 15px;
    padding: 5px 0 10px 70px;
    background-image: url(../images/common/ico-check.svg);
    background-repeat: no-repeat;
  }
  .front-recommend .img {
    margin: 0;
    text-align: center;
  }
  .front-target {
    margin-bottom: 100px;
  }
  .front-target h3 {
    font-size: 20px;
    color: #0070C0;
    margin-bottom: 30px;
    line-height: 32px;
    background-image: url(../images/common/ico-home.png);
    background-repeat: no-repeat;
    padding-left: 50px;
  }
  .front-target ul {
    list-style: none;
    margin: 0 0 30px;
    padding: 0 0 0 67px;
  }
  .front-target ul li {
    position: relative;
    margin-bottom: 10px;
  }
  .front-target ul li::before {
    content: "";
    position: absolute;
    top: .5em;
    left: -20px;
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 5px;
    border-radius: 50%;
    background-color: #0070C0;
  }
  .front-flow-wrapper {
    padding-top: 100px;
    border-top: 1px solid #D6DED6;
  }
  .front-flow h2 {
    margin-bottom: 75px;
  }
  .front-flow ol {
    list-style: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0;
    margin-bottom: 50px;
  }
  .front-flow ol li {
    position: relative;
  }
  .front-flow ol li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 35%;
    right: -38px;
    display: inline-block;
    width: 0;
    height: 0;
    border: 13px solid transparent;
    border-left: 13px solid #0070C0;
  }
  .front-flow ol li figure {
    position: relative;
  }
  .front-flow ol li figcaption {
    font-size: 20px;
    color: #0070C0;
    text-align: center;
    margin-top: 5px;
  }
  .front-flow ol li figcaption > small {
    position: absolute;
    top: -24px;
    left: 15px;
    background-color: #fff;
    font-size: 15px;
    line-height: 1em;
  }
  .front-flow ol li figcaption > small span {
    display: block;
    font-size: 36px;
    line-height: 1em;
  }
  .front-flow ol li figcaption b small {
    display: block;
    font-size: 14px;
    line-height: 1em;
  }
  .front-necessary {
    margin-bottom: 100px;
  }
  .front-necessary h3 {
    font-size: 20px;
    color: #0070C0;
    margin-bottom: 20px;
    line-height: 34px;
    background-image: url(../images/common/ico-bag.png);
    background-repeat: no-repeat;
    padding-left: 50px;
  }
  .front-necessary .list {
    list-style: none;
    margin: 0 0 35px;
    padding: 0 0 0 67px;
  }
  .front-necessary .list li {
    position: relative;
    margin-bottom: 5px;
  }
  .front-necessary .list li::before {
    content: "";
    position: absolute;
    top: .5em;
    left: -20px;
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 5px;
    border-radius: 50%;
    background-color: #0070C0;
  }
  .front-necessary .note {
    list-style: none;
    margin: 0 auto;
    padding: 0 0 0 67px;
  }
  .front-necessary .note li {
    position: relative;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.5em;
  }
  .front-necessary .note li::before {
    content: "※";
    position: absolute;
    top: 0;
    left: -20px;
    border-radius: 50%;
  }
  .page-title {
    font-size: 32px;
    margin: 30px auto 100px;
    text-align: center;
    color: #0070C0;
  }
  .about-concept {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 100px;
  }
  .about-concept h2 {
    font-size: 63px;
    color: #D9EAF6;
  }
  .about-concept h3 {
    font-size: 26px;
    color: #0070C0;
    margin: 10px 0 20px;
    line-height: 1.5em;
  }
  .about-concept .text {
    margin-right: 50px;
  }
  .about-concept .text p {
    font-size: 16px;
    line-height: 1.5em;
  }
  .about-network .section-title {
    margin-bottom: 25px;
  }
  .about-network p {
    text-align: center;
    margin: 0;
  }
  .about-network p.text {
    font-size: 20px;
  }
  .about-network p.memo {
    font-size: 16px;
  }
  .corp-mv {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 70px;
  }
  .corp-mv h2 {
    font-size: 34px;
    line-height: 1.75em;
    white-space: nowrap;
  }
  .corp-mv h2 strong {
    background-color: #0070C0;
    color: #fff;
  }
  .corp-question {
    position: relative;
    background-color: #F3FAFF;
    margin-bottom: 130px;
    padding: 50px;
  }
  .corp-question::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -99px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    border: 50px solid transparent;
    border-top: 50px solid #F3FAFF;
  }
  .corp-question h2 {
    margin-bottom: 40px;
    font-size: 28px;
    color: #0070C0;
    text-align: center;
  }
  .corp-question ul {
    list-style: none;
    font-size: 22px;
    margin: 0 auto;
    padding-left: 130px;
  }
  .corp-question ul li {
    margin-bottom: 15px;
    padding: 5px 0 10px 70px;
    background-image: url(../images/common/ico-check.svg);
    background-repeat: no-repeat;
  }
  .corp-image h3 {
    font-size: 26px;
    color: #0070C0;
  }
  .corp-image .image-inner {
    width: 655px;
    margin: 0 auto 50px;
  }
  .corp-image ul {
    list-style: none;
  }
  .corp-image ul li {
    position: relative;
  }
  .corp-image ul li::before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 1px solid #333333;
    margin-right: 8px;
  }
  .corp-mail {
    padding: 60px 0 0;
    border-top: 1px solid #D6DED6;
    text-align: center;
    font-style: normal;
  }
}
