@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;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #eaeaea;
}
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 {
  position: relative;
  font-size: 18px;
  color: #333333;
  margin: 10px 0;
  padding: 10px 0 10px 40px;
  border-bottom: solid 4px #004374;
}
  h3::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 32px;
    margin: auto 0;
    background: url(/images/h3_icon.png);
    background-size: 100% 100%;
  }
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: 30vh;
}
@media screen and (min-width: 765px) {
  .pc-wrapper {
    display: flex;
    justify-content: space-around;
    width: 99%;
    max-width: 1024px;
    margin: 0 auto;
  }
    .wrapper-left {
      max-width: 774px;
    }
  #main,
  #sub {
    justify-content: space-around;
    max-width: 750px;
  }
}
#footer {
  width: 100%;
  padding: 5px 0;
  text-align: center;
  background: #004374;
  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%, #ffd70078 60%);
}

.box-d {
  width: 95%;
  margin: 10px auto;
  padding: .5em 1em;
  border: double 5px #004374;
}

.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;
  }
}

.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;
}

.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: #dd1111 !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;
}