@charset "UTF-8";
/* @import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,700&subset=japanese');
 */
* {
  font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ","ＭＳ Ｐゴシック","MS PGothic",sans-serif;
  /* font-family: "Noto Sans JP","Hiragino Kaku Gothic ProN","Meiryo",sans-serif; */
  box-sizing: border-box;
}

html {
  font-size: 62.5%; /* def 1rem = 10px */ 
} 
body {
  margin: 0;
}
table {
  border-collapse: collapse;
}
h2 {
  position: relative;
  margin: 2px 0;
  padding: 5px 5px 5px 25px;
  background: #74C3E1;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}
  h2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    border-left: solid 25px #fff;
    border-bottom: solid 40px transparent;
  }
h3 {
  font-size: 18px;
  color: #333333;
  margin: 10px 0;
  padding: 8px 0 8px 20px;
  border-left: solid 6px #64b4cc;
}

h4 {
  position: relative;
  margin: 2px 0;
  padding: 0;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}
  h4::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    width: 15%;
    margin: 0 auto;
    border: solid 2px #090909;
    border-radius: 2px;
  }

#main,
#sub {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 98%;
  margin: 0 auto 15px;
  background: #fff;
}
#main {
  min-height: 5vh;
}
@media screen and (min-width: 768px) {
  .pc-wrapper {
    display: flex;
    justify-content: space-around;
    width: 99%;
    max-width: 1024px;
    margin: 0 auto;
  }
    .wrapper-left {
      width: 750px;
    }
  #main,
  #sub {
    justify-content: space-around;
    max-width: 1000px;
  }
}

#sidebar {
  width: 250px;
  background: #fff;
}
  .sidebar__banner {
    width: 100%;
  }
  .sidebar__head {
    width: 100%;
    padding: 10px;
    background-color: #62B6CC;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
  }
  .sidebar__list {
    width: 100%;
    background-color: #fff;
    padding: 10px;
    font-size: 14px;
    color: #333333;
    line-height: 24px;
  }
    .sidebar__item {
      display: block;
      color: #333333;
      border-bottom: 1px solid #ddd;
    }
      .sidebar__item:last-of-type {
        border-bottom: none;
      }
      .sidebar__item:hover {
        color: #d83e28;
      }
    .sidebar__list img {
      display: block;
      width: 90%;
      margin: 2px auto;
    }

    .sidebar__logo_btn a {
      display: block;
      border-bottom: 1px solid #ddd;
      padding: 7px 0;
      text-align: center;
    }
      .sidebar__logo_btn a img {
        height: 35px;
        max-width: 100%;
      }
@media screen and (max-width: 1000px) {
  #sidebar {
    display: none;
  }
}

#header {
  width: 100%;
  margin-bottom: 5px;
  border-bottom: solid 2px #62B6CC;
}
.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;
    max-width: 33%;
    max-height: 100%;
    margin: 0 auto;
  }
    .header__logo-img {
      display: block;
      max-width: 100%;
      height: 50px;
      object-fit: contain;
    }
  .header__list {
    display: flex;
    width: 65%;
    max-width: 550px;
    height: 80%;
    background: #fff;
  }
    .header__item {
      width: 33.3%;
      border-left: solid 1px #aaa;
      font-size: 14px;
      color: #333;
      font-weight: bold;
      text-decoration: none;
    }
      .header__item:last-of-type {
        border-right: solid 1px #aaa;
      }
      .header__img {
        display: block;
        height: 60%;
        object-fit: contain;
        margin: 0 auto;
      }
      .header__item>div {
        text-align: center;
        font-size: 10px;
      }
  .header__tel {
    display: none;
  }
  @media screen and (min-width: 1024px) {
    .header__inner {
      width: 1024px;
      height: 74px;
    }
  .header__logo {
    display: block;
    height: 90%;
    margin: auto 0;
  }
  .header__list {
    justify-content: flex-end;
    width: 65%;
  }
    .header__item {
      width: 22%;
    }
      .header__item>div {
        font-size: 16px;
      }
  .header__tel {
    display: block;
    width: 35%;
    object-fit: contain;
  }
}


#footer {
  width: 100%;
  padding: 5px 0;
  text-align: center;
  background: #62B6CC;
  color: #fff;
  font-size: 14px;
  line-height: 1.4em;
}
  #footer a {
    color: #fff;
  }
  #footer a:hover {
    color: #d83e28;;
  }

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

.box-d {
  width: 95%;
  margin: 10px auto;
  padding: .5em 1em;
  border: double 5px #62B6CC;
}

.responsive-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
@media screen and (min-width: 765px) {
  .responsive-box {
    flex-wrap: nowrap;
    justify-content: space-around;
  }
}

.table {
  border-spacing: 0;
  font-size: 1.2rem;
}
  .table th,
  .table td {
    padding: 0.6em 0.2em;
    border: solid 1px #fff;
    border-top: none;
  }
  .table th {
    background: #62B6CC;
    color: #fff;
  }
  .table td {
    background: #eee;
  }
@media screen and (min-width: 768px) {
  .table {
    font-size: 1.4rem;
  }
}

.d-sp {
  display: block !important;
}
.d-pc {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .d-sp {
    display: none !important;
  }
  .d-pc {
    display: block !important;
  }
}

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

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

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

.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; }
}

.c{text-align:center}
.l{text-align:left}
.r{text-align:right}

.nb{font-weight:normal}
.b{font-weight:bold}
.u{text-decoration:underline}
.nu{text-decoration:none}

.gray{color:gray !important}
.white{color:white !important}
.yellow{color:yellow !important}
.red{color:red !important}
.green{color:green !important}
.blue{color:#33558a !important}
.black{color:black !important}
.orange{color:#ff7700 !important}

.ad_form #btnConfirm {
  display: inline-block;
  text-align: center;
  width: 40%;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(#ffc648 , #fd550e);
  border-radius: 8px;
  padding: 10px 0 8px 0;
  font-size: 25px;
  font-weight: bold;
  border: 2px solid #fe8325;
  margin: 0 auto;
}

.modal_img {
  display: block;
  width: 90%;
  max-width: 500px;
  object-fit: contain;
  margin: auto;
}
.modal_close {
  position: absolute;
  top: -20px;
  right: 0;
  width: 42px;
  height: 42px;
}

.pr {
  width: 100%;
  margin: 10px auto;
  padding: 0.5em 1em;
  background: #ffe4b5;
}