@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #333;
}

a:hover {
  color: #666;
}

img {
  display: block;
  border: none;
  width: 100%;
  height: auto;
}

.clear {
  clear: both;
  height: 0;
  line-height: 0;
  font-size: 0;
}

.space10 {
  height: 10px;
}

.space20 {
  height: 20px;
}

.space30 {
  height: 30px;
}

.space40 {
  height: 40px;
}

.space100 {
  height: 100px;
}

.mt5 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.ml5 {
  margin-left: 5px;
}

.ml10 {
  margin-left: 10px;
}

.ml20 {
  margin-left: 20px;
}

.ml30 {
  margin-left: 30px;
}

.ml40 {
  margin-left: 40px;
}

.ml50 {
  margin-left: 50px;
}

.mr5 {
  margin-right: 5px;
}

.mr10 {
  margin-right: 10px;
}

.mr20 {
  margin-right: 20px;
}

.mr30 {
  margin-right: 30px;
}

.mr40 {
  margin-right: 40px;
}

.mr50 {
  margin-right: 50px;
}

.bold {
  font-weight: bold;
}

.txt-left {
  text-align: left;
}

.txt-center {
  text-align: center;
}

.txt-right {
  text-align: right;
}

.red {
  color: #c00;
}

li {
  list-style: none;
}

.bd-01 {
  background: linear-gradient(transparent 60%, rgba(252, 238, 33, 0.6) 0%);
  font-weight: bold;
}

th,
td {
  text-align: left;
}

.link a {
  color: #0052a5;
}

.link a:hover {
  color: #ffb700;
}

.alpha {
  transition: 0.4s;
}
.alpha:hover {
  opacity: 0.75;
}

/** ***********************************************

COMMON

*********************************************** **/
.cols-2 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cols-2 .col {
  display: block;
  width: 50%;
}

.cols-3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.cols-3 .col {
  display: block;
  width: 33.3333333333%;
}

.cols-4 {
  font-size: 0;
}

.cols-4 .col {
  font-size: 14px;
  display: inline-block;
  vertical-align: top;
  width: 25%;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

body {
  -webkit-text-size-adjust: 100%;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-size: 16px;
  background-color: #f5f5f5;
}

#wrapper {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  background-color: #fff;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 0 20px;
}
@media screen and (max-width: 500px) {
  .inner {
    padding: 0;
  }
}

.mv {
  margin-bottom: 80px;
  display: block;
}
@media screen and (max-width: 500px) {
  .mv {
    margin-bottom: 30px;
  }
}

h2.title-h2 {
  font-size: 18px;
  padding: 12px 20px;
  margin-bottom: 40px;
  text-align: left;
  color: #fff;
  background-color: #004492;
  letter-spacing: 1px;
}
@media screen and (max-width: 500px) {
  h2.title-h2 {
    font-size: 14px;
    padding: 15px 20px 13px;
    margin-bottom: 20px;
    margin-top: 20px;
  }
}

.wrap-form {
  background-color: #f5f5f5;
  padding: 30px;
  max-width: 1000px;
}

.wrap-form .item p {
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: bold;
}

.wrap-form .req {
  color: #de1c24;
  font-size: 12px;
}

.wrap-form input[type=text] {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  height: 40px;
  border: solid 1px #ddd;
  border-radius: 3px;
}

.wrap-form input.age {
  width: 100px;
}

.wrap-form .item {
  margin-bottom: 20px;
}

.wrap-form .item .note {
  font-weight: normal;
  padding: 0 !important;
  font-size: 12px;
}

.wrap-form label {
  display: inline-block;
  margin-bottom: 10px;
  margin-right: 10px;
  letter-spacing: 2px;
  background-color: #fff;
  padding: 10px;
  border: solid 1px #ddd;
  border-radius: 3px;
  vertical-align: middle;
}

.wrap-form textarea {
  border: solid 1px #ddd;
  padding: 5px;
  width: 100%;
  height: 100px;
  border-radius: 3px;
  font-size: 16px;
}

.wrap-form p.error {
  color: #de1c24;
  font-weight: normal;
  font-size: 14px;
  padding: 5px;
  background-color: floralwhite;
}

#bt-submit {
  cursor: pointer;
}

#bt-submit:disabled {
  opacity: 0.4;
}

#bt-submit img {
  max-width: 250px;
  margin: 20px auto 0;
}

.notice {
  font-weight: bold;
  color: #de1c24;
  margin-bottom: 20px;
}

#wrap-confirm {
  width: 800px;
  height: auto;
  max-height: 90%;
  margin: 0 auto;
  background-color: #ddd;
  position: fixed;
  top: 50px;
  left: 50%;
  margin-left: -400px;
  z-index: 12;
  overflow: auto;
  display: none;
}

#wrap-confirm table {
  width: 100%;
  border-spacing: 1px;
}

#wrap-confirm th {
  padding: 15px;
  white-space: nowrap;
  background-color: #eee;
}

#wrap-confirm td {
  padding: 15px;
  background-color: #fff;
}

#wrap-confirm td img {
  max-width: 400px;
  max-height: 400px;
  width: auto;
  height: auto;
}

#wrap-confirm .send {
  width: 200px;
  border: none;
  background-color: #de1c24;
  font-size: 14px;
  display: inline-block;
  padding: 10px;
  text-align: center;
  color: #fff;
  border-radius: 3px;
  position: relative;
}

#wrap-confirm .send .loader {
  display: none;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 10px;
  right: 10px;
}

#wrap-confirm .back {
  width: 200px;
  border: none;
  background-color: #333;
  font-size: 14px;
  display: inline-block;
  padding: 10px;
  text-align: center;
  color: #fff;
  border-radius: 3px;
}

#wrap-confirm p.note {
  font-size: 14px;
  margin-bottom: 5px;
}

.bg-layer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 10;
  display: none;
}

.bg-layer .bt-close {
  font-size: 40px;
  color: #fff;
  position: absolute;
  top: 0px;
  right: 20px;
  font-style: normal;
}

.sp {
  display: none;
}

@media screen and (max-width: 800px) {
  .block {
    padding: 0 10px;
  }
  #wrap-confirm {
    width: 90%;
    margin-left: 0;
    left: 5%;
  }
  #wrap-confirm th {
    padding: 15px;
    font-size: 14px;
  }
  #wrap-confirm td {
    padding: 15px;
    font-size: 14px;
  }
  .bg-layer .bt-close {
    font-size: 30px;
    right: 10px;
  }
  #wrap-confirm td img {
    max-width: 300px;
    max-height: 300px;
    width: auto;
    height: auto;
  }
  #wrap-confirm p.note {
    font-size: 12px;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 500px) {
  #sec-01 .inner {
    padding: 20px;
  }
  .sp {
    display: block;
  }
  #sec-01 p {
    font-size: 14px;
  }
  #sec-01 p.p1 {
    font-size: 16px;
  }
  #sec-01 p.p2 {
    font-size: 24px;
    letter-spacing: 2px;
  }
  #wrap-confirm {
    width: 98%;
    margin-left: 0;
    left: 1%;
  }
  #wrap-confirm th {
    padding: 10px;
    font-size: 12px;
  }
  #wrap-confirm td {
    padding: 10px;
    font-size: 12px;
  }
  .bg-layer .bt-close {
    font-size: 30px;
    right: 10px;
  }
  #wrap-confirm td img {
    max-width: 100%;
    max-height: 300px;
    width: auto;
    height: auto;
  }
  #wrap-confirm .send {
    width: 45%;
    border: none;
    background-color: #de1c24;
    font-size: 14px;
    display: inline-block;
    padding: 10px;
    text-align: center;
    color: #fff;
    border-radius: 3px;
  }
  #wrap-confirm .back {
    width: 45%;
    border: none;
    background-color: #333;
    font-size: 14px;
    display: inline-block;
    padding: 10px;
    text-align: center;
    color: #fff;
    border-radius: 3px;
  }
}
/** sec-02 TAB-1 **/
.tab-menu {
  text-align: center;
  margin-bottom: 50px;
  border-bottom: solid 5px #de1c24;
}
@media screen and (max-width: 500px) {
  .tab-menu {
    gap: 5px !important;
  }
}
.tab-menu a {
  display: block;
  padding: 20px;
  background-color: #ddd;
  font-size: 18px;
  border-radius: 6px 6px 0 0;
  position: relative;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .tab-menu a {
    padding: 10px;
  }
}
.tab-menu a.selected,
.tab-menu a:hover {
  background-color: #de1c24;
  color: #fff;
}
.tab-menu a.selected .icon-dw,
.tab-menu a:hover .icon-dw {
  border-color: #fff;
}
.tab-menu .icon-dw {
  width: 12px;
  height: 12px;
  display: block;
  position: absolute;
  top: 25px;
  right: 10%;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  transform: rotate(135deg);
}
@media screen and (max-width: 600px) {
  .tab-menu .icon-dw {
    position: static;
    width: 8px;
    height: 8px;
    margin: 5px auto 0;
  }
}

.block-1 h4 {
  margin-bottom: 10px;
}
@media screen and (max-width: 500px) {
  .block-1 h4 {
    margin-top: 20px;
  }
}
.block-1 .wrap-flex {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.block-1 .wrap-flex a {
  width: calc(25% - 10px);
  border: solid 1px #ddd;
  display: block;
}
@media screen and (max-width: 500px) {
  .block-1 .wrap-flex a {
    width: calc(50% - 10px);
  }
}

.wrap-cont {
  padding: 0 20px;
}
@media screen and (max-width: 500px) {
  .wrap-cont {
    padding: 0 10px;
  }
}

.wrap {
  padding: 0 20px;
}
@media screen and (max-width: 500px) {
  .wrap {
    padding: 0 10px;
  }
}

#sec-02 .block {
  padding-bottom: 40px;
}
@media screen and (max-width: 500px) {
  #sec-02 .block {
    padding: 0;
  }
}

#sec-02 p.desc {
  padding: 0 20px 1em;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 1.6;
}

p.note {
  padding: 0 20px 1em;
  font-size: 14px;
  line-height: 160%;
}

.txt-bd {
  border: solid 1px #000;
  padding: 5px 10px;
  display: inline-block;
  font-size: 16px;
  margin-bottom: 20px;
}

.title-h3 {
  margin-bottom: 20px;
}

.flex-lens {
  display: flex;
  margin-bottom: 30px;
  align-items: center;
  flex-wrap: wrap;
}
.flex-lens .col-1 {
  width: 25%;
}
@media screen and (max-width: 600px) {
  .flex-lens .col-1 {
    width: 50%;
  }
}
.flex-lens .col-1 .cap {
  display: block;
  font-size: 12px;
  margin-top: 5px;
}
.flex-lens .col-2 {
  width: 70%;
  padding-left: 30px;
}
@media screen and (max-width: 600px) {
  .flex-lens .col-2 {
    width: 100%;
    padding-left: 0;
    margin-top: 30px;
  }
}

.in {
  padding-left: 20px;
}

.txt-h4 {
  padding: 0 20px 10px;
  font-size: 20px;
}
@media screen and (max-width: 500px) {
  .txt-h4 {
    font-size: 16px;
  }
}

.list-items {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
@media screen and (max-width: 500px) {
  .list-items {
    margin-bottom: 20px;
  }
}
.list-items li {
  width: 25%;
  padding: 10px;
  text-align: center;
}
@media screen and (max-width: 500px) {
  .list-items li {
    width: 50%;
    padding: 0 5px;
  }
}
.list-items li .wrap-bts {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 10px;
}
@media screen and (max-width: 500px) {
  .list-items li .wrap-bts {
    flex-direction: column;
  }
}
.list-items li .bt {
  font-size: 12px;
  display: block;
  background-color: #0071bc;
  color: #fff;
  padding: 10px;
  max-width: 120px;
  width: 100%;
  border-radius: 3px;
  font-weight: bold;
  filter: drop-shadow(0 1px 2px #999);
  transition: 0.4s;
}
@media (hover: hover) {
  .list-items li .bt:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 500px) {
  .list-items li .bt {
    margin: 0 auto;
    max-width: 100%;
    filter: drop-shadow(0 1px 1px #999);
  }
}
.list-items li .bt.bt-2 {
  background-color: #f60;
}
.list-items li .wrap-img {
  padding: 10px;
  height: 200px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
@media screen and (max-width: 500px) {
  .list-items li .wrap-img {
    height: 150px;
  }
}
.list-items li .wrap-img img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 150px;
}
.list-items li p.name {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 500px) {
  .list-items li p.name {
    font-size: 12px;
  }
}
.list-items li a span.bt {
  font-size: 12px;
  display: block;
  margin: 0 auto;
  background-color: #0071bc;
  color: #fff;
  padding: 5px;
  max-width: 100px;
}

.block-3 p.desc {
  font-weight: bold;
}

.rotate {
  transform: rotate(-90deg);
}

#tab-1 .block-3a p {
  margin-bottom: 1em;
  padding: 0 20px;
  line-height: 1.6;
}

#tab-1 .block-3a p.p1 {
  font-weight: bold;
  font-size: 18px;
  background-color: rgba(250, 222, 0, 0.33);
  padding: 10px 20px;
}

#tab-1 .block-3a p.p1 .sp1 {
  font-size: 16px;
}

#tab-1 .block-3a p.p2 {
  font-weight: bold;
  font-size: 18px;
  background-color: rgba(250, 222, 0, 0.33);
  padding: 10px 20px;
}

#tab-1 .block-3a img.serial {
  width: 100%;
  max-width: 500px;
  display: block;
  margin-top: 10px;
}

.wrap-p3 {
  margin-bottom: 30px;
}

#tab-1 .block-3a p.p3 {
  font-size: 14px;
  margin-bottom: 5px;
}

#tab-1 .block-3a p.p4 {
  padding-top: 20px;
  font-weight: bold;
}

#bt-form {
  margin: 30px 0 30px;
  display: block;
  width: 100%;
  font-weight: bold;
  max-width: 400px;
  text-align: center;
  background-color: #de1c24;
  color: #fff !important;
  padding: 25px;
  border-radius: 3px;
  letter-spacing: 1px;
  font-size: 18px;
  margin-left: 20px;
  filter: drop-shadow(0 1px 2px #999);
  transition: 0.4s;
}
#bt-form::before {
  content: "▶";
  font-size: 14px;
  margin-right: 10px;
}
@media screen and (max-width: 500px) {
  #bt-form {
    margin: 0 auto;
    font-weight: bold;
    font-size: 16px;
    width: 80%;
    padding: 20px;
  }
}

@media (hover: hover) {
  #bt-form:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 500px) {
  #sec-02 .tab-menu {
    margin-bottom: 20px;
  }
  #sec-02 .tab-menu li a {
    padding: 15px 10px 10px;
    font-size: 13px;
  }
  #sec-02 .tab-menu li a i {
    font-size: 15px;
  }
  #sec-02 .block {
    padding-bottom: 20px;
  }
  #sec-02 .block p.desc {
    padding: 0 10px;
    font-size: 14px;
  }
  p.note {
    padding: 0 10px 1em;
    font-size: 12px;
  }
  .txt-bd {
    font-size: 14px;
    margin-top: 20px;
    width: 100%;
  }
  #tab-1 .block-3a p {
    font-size: 14px;
  }
  #tab-1 .block-3a p.p1 {
    font-weight: bold;
    font-size: 14px;
    background-color: rgba(250, 222, 0, 0.33);
    padding: 10px 20px;
  }
  #tab-1 .block-3a p.p1 .sp1 {
    font-size: 12px;
  }
  #tab-1 .block-3a p.p2 {
    font-weight: bold;
    font-size: 14px;
    background-color: rgba(250, 222, 0, 0.33);
    padding: 10px 20px;
  }
  #tab-1 .block-3a p.p3 {
    font-size: 12px;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 380px) {
  #sec-02 .tab-menu li a {
    padding: 12px 10px;
    font-size: 12px;
  }
  .list-items li a p.name {
    font-size: 10px;
    margin-bottom: 5px;
  }
  .list-items li a span.bt {
    display: none;
  }
}
/** sec-03 CONTACT **/
#sec-03 {
  margin-bottom: 50px;
}

#tab-2 .block-1 p.p1 {
  font-weight: bold;
  margin-bottom: 5px;
}

#tab-2 .block-1 p.p2 {
  color: #de1c24;
  font-weight: bold;
  font-size: 14px;
}

#tab-2 .block-1 p.p3 {
  display: inline-block;
  border: solid 1px #de1c24;
  padding: 5px;
  font-size: 14px;
  color: #de1c24;
  margin-bottom: 10px;
  font-weight: bold;
}

#tab-2 .block-1 p.p4 {
  font-size: 13px;
}

.wrap-bq {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.wrap-bq .col-1 {
  width: 400px;
}
@media screen and (max-width: 500px) {
  .wrap-bq .col-1 {
    width: 100%;
  }
}
.wrap-bq .col-1 img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  height: 300px;
}
.wrap-bq .col-2 {
  width: 300px;
}
@media screen and (max-width: 500px) {
  .wrap-bq .col-2 {
    width: 100%;
  }
}
.wrap-bq .col-2 img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  height: 300px;
}
.wrap-bq .col-2 .cap {
  display: block;
  font-size: 14px;
  text-align: center;
  margin: 10px auto 0;
}

.img-right {
  float: right;
  margin: 0 0 1em 20px;
  max-width: 150px;
}

#tab-2 .block-2 .bt {
  text-align: center;
  margin-top: 30px;
}

#tab-2 .block-2 .bt img {
  max-width: 280px;
}

#tab-2 .block-3 .p1 {
  margin-top: 30px;
  font-weight: bold;
  font-size: 18px;
  padding-bottom: 10px;
}

#tab-2 .block-3 li {
  margin-top: 10px;
  list-style: disc;
  list-style-position: outside;
  margin-left: 20px;
  line-height: 180%;
}

#tab-2 .block-3 .flow {
  max-width: 700px;
  width: 100%;
  display: block;
  margin: 0 auto 20px;
}

#tab-2 .block-3 .img-right {
  max-width: 200px;
}

.age {
  padding: 10px;
  font-size: 16px;
  border: solid 1px #ddd;
  border-radius: 3px;
}

.zip {
  max-width: 150px;
}

.zipnote {
  margin-left: 10px;
  font-size: 12px;
  color: #666;
}

@media screen and (max-width: 500px) {
  #tab-2 .block-2 .bt img {
    max-width: 200px;
  }
  #tab-2 .block-1 p.p1 {
    font-size: 14px;
  }
  #tab-2 .block-1 p.p2 {
    font-size: 12px;
  }
  #tab-2 .block-1 p.p4 {
    font-size: 13px;
  }
  #tab-2 .block-2 p {
    font-size: 14px;
  }
  #tab-2 .block-2 .bt img {
    max-width: 100%;
  }
  .img-right {
    max-width: 120px;
  }
  #tab-2 .block-3 .p1 {
    margin-top: 20px;
    font-size: 16px;
  }
  #tab-2 .block-3 li {
    margin-top: 10px;
    margin-left: 20px;
    line-height: 160%;
    font-size: 14px;
  }
  #tab-2 .block-3 .img-right {
    max-width: 120px;
  }
  .img-scroll {
    width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
  .img-scroll img {
    max-width: inherit;
    display: table-cell;
    width: 1000px;
  }
}
/** sec-02 TAB-3 **/
#tab-3 .block-1 li {
  margin-top: 6px;
  list-style: disc;
  list-style-position: outside;
  margin-left: 20px;
  line-height: 160%;
  font-size: 14px;
}

#tab-3 .block-1 li p {
  padding: 10px 0;
  line-height: 180%;
}

#tab-3 .block-2 p {
  padding-bottom: 1em;
  line-height: 160%;
  font-size: 14px;
}

/** お問い合わせ **/
#sec-03 .contact {
  width: 100%;
  max-width: 600px;
  background-color: aliceblue;
  padding: 30px 40px;
}
#sec-03 .contact a {
  color: #333;
}
#sec-03 p {
  margin-bottom: 10px;
}
#sec-03 p.p1 {
  font-weight: bold;
  margin-bottom: 30px;
  font-size: 18px;
}
#sec-03 p.p3 {
  font-weight: bold;
  font-size: 18px;
}
#sec-03 p.p3 a {
  font-size: 28px;
  letter-spacing: 1.5px;
}
#sec-03 p.p4 {
  font-size: 14px;
}
#sec-03 p.p4 a {
  font-size: 20px;
  font-weight: bold;
}
#sec-03 h5 {
  margin-bottom: 10px;
}
#sec-03 .bt {
  margin: 0 0 30px;
  display: block;
  width: 100%;
  font-weight: bold;
  max-width: 500px;
  text-align: center;
  background-color: #0071bc;
  color: #fff !important;
  padding: 25px;
  border-radius: 3px;
  letter-spacing: 1px;
  font-size: 18px;
  filter: drop-shadow(0 1px 2px #999);
  transition: 0.4s;
}
#sec-03 .bt::before {
  content: "▶";
  font-size: 14px;
  margin-right: 10px;
}
@media (hover: hover) {
  #sec-03 .bt:hover {
    opacity: 0.7;
  }
}
#sec-03 .note {
  font-size: smaller;
  margin-left: 5px;
}
#sec-03 .font-s {
  font-size: smaller;
}

@media screen and (max-width: 500px) {
  #sec-03 .block {
    padding: 0;
  }
  #sec-03 .contact {
    margin: 0;
    padding: 20px;
  }
  #sec-03 p.p1 {
    font-weight: bold;
    font-size: 16px;
  }
  #sec-03 p.p3 {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 24px;
  }
  #sec-03 .bt {
    padding: 20px;
  }
}
footer {
  background-color: #000;
  text-align: center;
  padding: 50px;
}

#page-top {
  width: 100%;
  background-color: #333;
  display: block;
  padding: 15px;
  text-align: center;
  color: #fff;
}

#page-top i {
  color: #fff;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M233.4 105.4c12.5-12.5 32.8-12.5 45.3 0l192 192c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L256 173.3 86.6 342.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l192-192z" fill="white"/></svg>');
  display: block;
  width: 20px;
  height: 20px;
  margin: 0 auto;
}

#logo-kt {
  display: block;
  max-width: 240px;
  margin: 0 auto;
}

@media screen and (max-width: 500px) {
  .title-present {
    font-size: 13px;
  }
}

.wrap-present {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 500px) {
  .wrap-present {
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media screen and (max-width: 500px) {
  .wrap-present .col {
    width: calc(50% - 20px);
  }
}
.wrap-present .col img {
  display: block;
  margin: 0 auto 10px;
  width: auto;
  height: 200px;
}
@media screen and (max-width: 500px) {
  .wrap-present .col img {
    height: 100px;
  }
}
.wrap-present .col .cap {
  display: block;
  text-align: center;
  font-size: 14px;
}
@media screen and (max-width: 500px) {
  .wrap-present .col .cap {
    font-size: 12px;
  }
}

.in {
  margin-left: 10px;
}
@media screen and (max-width: 500px) {
  .in {
    margin-left: 0;
  }
}/*# sourceMappingURL=common.css.map */