@charset "UTF-8";
/* @import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,700&subset=japanese'); */

* {
  /* font-family: "Noto Sans JP","Hiragino Kaku Gothic ProN","Meiryo",sans-serif; */
  font-family: "Hiragino Kaku Gothic ProN","Meiryo",sans-serif;
  box-sizing: border-box;
}
html {
  font-size: 62.5%; /* def 1rem = 10px */ 
} 
body {
  margin: 0;
  background: #fff;
  font-size: 1.6rem;
}
table {
  border-collapse: collapse;
}

#main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: flex-start;
  align-items: flex-start;
  width: 98%;
  margin: 0 auto 10px;
  background: #fff;
  color: #111;
}
@media screen and (min-width: 1024px) {
  .pc-wrapper {
    display: flex;
    justify-content: space-around;
    width: 99%;
    max-width: 1024px;
    margin: 0 auto;
  }
    .wrapper-left {
      max-width: 774px;
    }
  #main {
    justify-content: space-around;
    /* width: 750px; */
  }
}

#footer {
  width: 100%;
  padding: 10px 0;
  text-align: center;
  background: #2774CC;
  color: #fff;
  font-size: 14px;
  line-height: 1.4em;
}
  #footer a {
    color: #fff;
  }
  #footer a:hover {
    color: #d83e28;;
  }
@media screen and (min-width: 768px) {
  #footer {
    padding-bottom: 10px;
  }
}

#header {
  width: 100%;
  margin-bottom: 5px;
  border-bottom: solid 3px #2774CC;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 50px;
  margin: 0 auto;
}
  .header__logo {
    display: flex;
    align-items: center;
    width: 33%;
    height: 100%;
    padding: 3px;
  }
    .header__logo-img {
      max-width: 100%;
      max-height: 100%;
    }
  .header__list {
    display: flex;
    width: 65%;
    max-width: 500px;
    height: 80%;
    background: #fff;
  }
    .header__item {
      width: 33.3%;
      border-left: solid 1px #2774CC;
      font-size: 14px;
      color: #333;
      font-weight: bold;
      text-decoration: none;
    }
      .header__item:last-of-type {
        border-right: solid 1px #2774CC;
      }
      .header__img {
        display: block;
        height: 60%;
        object-fit: contain;
        margin: 0 auto;
      }
      .header__item>div {
        text-align: center;
        font-size: 10px;
      }
  @media screen and (min-width: 1024px) {
    .header__inner {
      width: 1024px;
      height: 64px;
    }
  .header__logo {
    display: block;
    height: 90%;
    margin: auto 0;
  }
  .header__list {
    width: 55%;
  }
    .header__item>div {
      font-size: 16px;
    }
}

  h2 {
    width: 100%;
  padding: 5px 10px;
  background: #2774CC;
  color: #fff;
  font-size: 18px;
}
  h3 {
  border-bottom: dotted 3px #2774CC;
}
  h4 {
  position: relative;
  margin-left: 20px;
  padding: 3px 0 3px 30px;
  background: #deebf7;
}
    h4::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -20px;
    width: 45px;
    height: 45px;
    margin: auto 0;
    background-color: #ffbb00;
    background-image: url(/images/article/h4.png);
    background-repeat: no-repeat;
    background-size: 75%;
    background-position: center;
    border-radius: 50%;
    border-bottom: solid 3px goldenrod;
    transform: rotate(-60deg);
  }

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

span.line {
  background: linear-gradient(transparent 60%, gold 60%);
}

.fullw {
  grid-column: 1/-1;
  width: 100%;
}

.compare-img {
  display: block;
  width: 25%;
  margin: auto;
}

.contact {
  width: 100%;
  max-width: 800px;
  margin: 10px auto;
  padding: 10px;
  background: #F2F2F2;
}
  .contact_img {
    width: 100%;
  }
  @media screen and (min-width: 1024px) {
    .contact_img--half {
      width: 49%;
      object-fit: contain;
    }
  }
.contact_form th {
  text-align: left;
}

.sub-text {
  width: 95%;
  text-align: right;
  color: #888;
  font-size: 8px;
}

.reflection-base {
  position: relative;
  overflow: hidden;
}

.reflection {
  height      :100%;
  width       :30px;
  position    :absolute;
  top         :-180px;
  left        :0;
  background-color: #fff;
  opacity     :0;
  transform: rotate(45deg);
  animation: reflection 3s cubic-bezier(0, 0.3, 0.6, 0)infinite;
  -webkit-transform: rotate(45deg);
  -webkit-animation: reflection 2.5s cubic-bezier(0, 0.3, 0.6, 0)infinite;
  -moz-transform: rotate(45deg);
  -moz-animation: reflection 2s cubic-bezier(0, 0.3, 0.6, 0)infinite;
  -ms-transform: rotate(45deg);
  -ms-animation: reflection 2s cubic-bezier(0, 0.3, 0.6, 0)infinite;
  -o-transform: rotate(45deg);
  -o-animation: reflection 2s cubic-bezier(0, 0.3, 0.6, 0)infinite;
}

@keyframes reflection {
  0% { transform: scale(0) rotate(45deg); opacity: 0; }
  80% { transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { transform: scale(4) rotate(45deg); opacity: 1; }
  100% { transform: scale(50) rotate(45deg); opacity: 0; }
}
@-webkit-keyframes reflection {
  0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
  80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
  100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}
@-moz-keyframes reflection {
  0% { -moz-transform: scale(0) rotate(45deg); opacity: 0; }
  80% { -moz-transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { -moz-transform: scale(4) rotate(45deg); opacity: 1; }
  100% { -moz-transform: scale(50) rotate(45deg); opacity: 0; }
}
@-ms-keyframes reflection {
  0% { -ms-transform: scale(0) rotate(45deg); opacity: 0; }
  80% { -ms-transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { -ms-transform: scale(4) rotate(45deg); opacity: 1; }
  100% { -ms-transform: scale(50) rotate(45deg); opacity: 0; }
}
@-o-keyframes reflection {
  0% { -o-transform: scale(0) rotate(45deg); opacity: 0; }
  80% { -o-transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { -o-transform: scale(4) rotate(45deg); opacity: 1; }
  100% { -o-transform: scale(50) rotate(45deg); opacity: 0; }
}

.bobble {
  animation: bobble 2.5s linear infinite;
  -webkit-animation: bobble 2.5s linear infinite;
  -moz-animation: bobble 2.5s linear infinite;
}
@keyframes bobble {
  55% { transform: rotate(0deg); }
  59% { transform: rotate(3deg); }
  63% { transform: rotate(-3deg); }
  67% { transform: rotate(3deg); }
  71% { transform: rotate(-3deg); }
  75% { transform: rotate(0deg); }
}