@charset "UTF-8";
/* 
.m-plus-1p-regular {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 400;
  font-style: normal;
}

*/
/* Common */
body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: "M PLUS 1p", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #000;
  letter-spacing: 0;
  line-height: 1.75;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 15px;
  }
}

* {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  transform: rotateZ(0.03deg);
}

p {
  transform: rotateZ(0.03deg);
}

ul,
ol {
  transform: rotateZ(0.03deg);
}

div,
th,
td,
dt,
dd,
a {
  transform: rotateZ(0.03deg);
}

figure {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

.inner {
  position: relative;
  width: 1010px;
  max-width: 100%;
  margin: auto;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .inner {
    width: 600px;
  }
}

.inner-sm {
  position: relative;
  width: 960px;
  max-width: 100%;
  margin: auto;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .inner-sm {
    width: 600px;
  }
}

.inner-lg {
  position: relative;
  width: 1040px;
  max-width: 100%;
  margin: auto;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .inner-lg {
    width: 600px;
  }
}

.row {
  display: flex;
  align-items: flex-start;
}

.row-between {
  justify-content: space-between;
}

.row-wrap {
  flex-wrap: wrap;
}

.col-3 {
  width: 32%;
}
@media screen and (max-width: 767px) {
  .col-3 {
    width: 100%;
  }
}

.mb20 {
  margin-bottom: 20px;
}

.tb-none {
  display: block;
}
@media screen and (max-width: 1080px) {
  .tb-none {
    display: none;
  }
}

.sp-none {
  display: block !important;
}
@media screen and (max-width: 767px) {
  .sp-none {
    display: none !important;
  }
}

.tb-show {
  display: none !important;
}
@media screen and (max-width: 1080px) {
  .tb-show {
    display: block !important;
  }
}

.sp-show {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp-show {
    display: block !important;
  }
}

.center {
  text-align: center;
}

.btn01 {
  display: inline-block;
  width: 190px;
  height: 50px;
  padding: 13px 5px 5px 5px;
  border: 2px solid #f6ab00;
  border-radius: 10px;
  background-image: linear-gradient(180deg, #fbd580, rgb(246, 171, 0) 49%);
  text-align: center;
  color: #fff;
  font-size: 17px;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .btn01 {
    width: 160px;
    height: 45px;
    font-size: 14px;
  }
}
.btn01--lines {
  padding: 5px 5px 5px 5px;
}
.btn01--dl {
  position: relative;
  padding: 7px 30px 5px 5px;
}
@media screen and (max-width: 767px) {
  .btn01--dl {
    padding: 4px 30px 5px 5px;
    font-size: 14px;
    line-height: 1.3;
  }
}
.btn01--dl::after {
  content: "";
  position: absolute;
  top: 11px;
  right: 8px;
  width: 22px;
  height: 50px;
  background: url("../images/btn-dl.png") no-repeat 0% 0px;
  background-size: 22px auto;
}
@media screen and (max-width: 767px) {
  .btn01--dl::after {
    right: 4px;
    background-size: 18px auto;
  }
}
.btn01--dl > span {
  display: block;
  font-size: 12px;
}
.btn01--lg {
  width: 100%;
}

.tbOnly {
  display: none;
}
@media screen and (max-width: 1080px) {
  .tbOnly {
    display: block;
  }
}

.tbNone {
  display: block;
}
@media screen and (max-width: 1080px) {
  .tbNone {
    display: none;
  }
}

.sup02 {
  position: relative;
  top: -5px;
  vertical-align: top;
  font-size: 29px;
}
@media screen and (max-width: 767px) {
  .sup02 {
    top: -4px;
    font-size: 18px;
  }
}

/* モーダルウィンドウ
--------------------------- */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  background: white;
  padding: 10px;
  border-radius: 10px;
  width: 700px;
  max-width: 90%;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transform: translateY(-10px);
  -webkit-animation: fadeInModal 0.4s ease forwards;
          animation: fadeInModal 0.4s ease forwards;
  position: relative;
}
@media screen and (max-width: 767px) {
  .modal {
    max-width: 80%;
    padding: 20px;
  }
}
.modal__left {
  width: 170px;
}
@media screen and (max-width: 767px) {
  .modal__left {
    margin: 0 auto;
  }
}
.modal__right {
  width: calc(100% - 220px);
  text-align: left;
}
@media screen and (max-width: 767px) {
  .modal__right {
    width: 100%;
  }
}

@-webkit-keyframes fadeInModal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInModal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.close-btn {
  position: absolute;
  top: -25px;
  right: -25px;
  width: 50px;
  height: 50px;
  background: #04a6e9;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  cursor: pointer;
  font-weight: bold;
}