@charset "utf-8";

/* import */
/* @import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Dancing+Script:400,700&display=swap'); */

/* theme */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body,
input,
buttn,
textarea {
  /* font-family: "Noto Sans JP", sans-serif; */
  font-family: Arial, Helvetica, sans-serif;
}
body {
  color: #3a3a3a;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  -webkit-overflow-scrolling: touch;
  font-family: sans-serif;
}
a {
  color: inherit;
}
a,
a:hover {
  text-decoration: none;
}
input:not([type="radio"]),
textarea,
button {
  font-size: inherit;
  font-family: inherit;
  border: none;
  padding: 0;
  color: inherit;
  background: transparent;
}
button {
  cursor: pointer;
}
:focus {
  outline: none;
}
svg,
path {
  pointer-events: none;
}
svg {
  display: block;
}
img {
  vertical-align: bottom;
}
small,
.small {
  font-size: 0.75rem;
}
strong,
.strong {
  font-weight: 700;
}
table {
  width: 100%;
}
th,
td {
  vertical-align: middle !important;
}
input[type="checkbox"] {
  margin: 0 4px 0 0;
}
em {
  font-weight: 700;
}
.header-ttl {
  width: 40%;
}
@media (max-width: 575.98px) {
  .header-ttl {
    width: 70%;
    margin-left: 16px;
  }
}

/* utility */
.dancing {
  font-family: "Dancing Script", cursive;
}
.hide {
  display: none;
}
.shadow {
  box-shadow: 0 0.25rem 0.25rem rgba(165, 144, 144, 0.12);
}
.paragraph + .paragraph {
  margin-top: 1rem;
}
.text-center {
  text-align: center !important;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
.table-scrolling {
  overflow-x: auto;
}
.img-fluid,
.w-100 {
  width: 100%;
}
.bold {
  font-weight: 700;
}
.star {
  color: #ffa311;
}
.link {
  color: #ff6a85;
  font-weight: 700;
  text-decoration: underline;
  padding-left: 5px;
}
.square {
  background-color: #ffeaf0;
  background-image: linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff),
    linear-gradient(-45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff);
  background-size: 25px 25px;
}
.gradient {
  background: linear-gradient(to bottom, #ffeaf0 0%, #fff 100%);
}
@media (min-width: 576px) {
  .for-pc {
    display: block;
  }
  .for-sp {
    display: none !important;
  }
  .hover:hover {
    filter: brightness(110%);
  }
}
@media (max-width: 575.98px) {
  .for-pc {
    display: none !important;
  }
  .for-sp {
    display: block;
  }
  .link {
    font-size: 1.5rem;
  }
}

/* color */
.bg-light-pink {
  background: #f4acbb;
}
.bg-pink {
  background: #df97a8;
}
.bg-yellow {
  background: #ffa311;
}
.bg-purple {
  background: #aa89bd;
}
.color-white {
  color: #fff;
}
.color-yellow {
  color: #ffa311;
}
.color-purple {
  color: #aa89bd;
}
.color-pink {
  color: #df97a8;
}

/* m */
.mt--sm {
  margin-top: 8px;
}
.mt--md {
  margin-top: 16px;
}
.mt--lg {
  margin-top: 32px;
}
.mt--lg2 {
  margin-top: 46px;
}
.mb--sm {
  margin-bottom: 8px;
}
.mb--md {
  margin-bottom: 16px;
}
.mb--lg {
  margin-bottom: 32px;
}
.ml--sm {
  margin-left: 8px;
}
.ml--md {
  margin-left: 16px;
}
.ml--lg {
  margin-left: 32px;
}
.mr--sm {
  margin-right: 8px;
}
.mr--md {
  margin-right: 16px;
}
.mr--lg {
  margin-right: 32px;
}
.mx--sm {
  margin-left: 8px;
  margin-right: 8px;
}
.mx--md {
  margin-left: 16px;
  margin-right: 16px;
}
.mx--lg {
  margin-left: 32px;
  margin-right: 32px;
}
.my--sm {
  margin-top: 8px;
  margin-bottom: 8px;
}
.my--md {
  margin-top: 16px;
  margin-bottom: 16px;
}
.my--lg {
  margin-top: 32px;
  margin-bottom: 32px;
}
.m--sm {
  margin: 8px;
}
.m--md {
  margin: 16px;
}
.m--lg {
  margin: 32px;
}

/* p */
.pt--sm {
  padding-top: 8px;
}
.pt--md {
  padding-top: 16px;
}
.pt--lg {
  padding-top: 32px;
}
.pb--sm {
  padding-bottom: 8px;
}
.pb--md {
  padding-bottom: 16px;
}
.pb--lg {
  padding-bottom: 32px;
}
.pl--sm {
  padding-left: 8px;
}
.pl--md {
  padding-left: 16px;
}
.pl--lg {
  padding-left: 32px;
}
.pr--sm {
  padding-right: 8px;
}
.pr--md {
  padding-right: 16px;
}
.pr--lg {
  padding-right: 32px;
}
.px--sm {
  padding-left: 8px;
  padding-right: 8px;
}
.px--md {
  padding-left: 16px;
  padding-right: 16px;
}
.px--lg {
  padding-left: 32px;
  padding-right: 32px;
}
.py--sm {
  padding-top: 8px;
  padding-bottom: 8px;
}
.py--md {
  padding-top: 16px;
  padding-bottom: 16px;
}
.py--lg {
  padding-top: 32px;
  padding-bottom: 32px;
}
.p--sm {
  padding: 8px;
}
.p--md {
  padding: 16px;
}
.p--lg {
  padding: 32px;
}

/* c */
.c {
  display: flex;
  align-items: center;
  justify-content: center;
}
.c--jStart {
  justify-content: flex-start;
}
.c--jEnd {
  justify-content: flex-end;
}
.c--jBetween {
  justify-content: space-between;
}
.c--jEvenly {
  justify-content: space-evenly;
}
.c--jAround {
  justify-content: space-around;
}
.c--aStart {
  align-items: flex-start;
}
.c--aEnd {
  align-items: flex-end;
}
.c--aStrech {
  align-items: stretch;
}
.c--col {
  flex-direction: column;
}
.c--colRev {
  flex-direction: column-reverse;
}
.c--rowRev {
  flex-direction: row-reverse;
}
.c--wrap {
  flex-wrap: wrap;
}
.c__fix {
  flex: 0 0 0;
}
.c__flex {
  flex: 1 1 100%;
}

/* .container */
.container {
  width: 100%;
  padding-right: 16px;
  padding-left: 16px;
  margin-right: auto;
  margin-left: auto;
  background: #fff;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (max-width: 575.98px) {
  .container {
    padding-right: 8px;
    padding-left: 8px;
  }
}

/* 記号 */
.do {
  color: #ff0000;
  font-size: 4rem;
  font-weight: 500;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    opacity: .2;
}
.ci {
  color: #e8b200;
  font-size: 4rem;
  font-weight: 500;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    opacity: .2;
}
.ta {
  color: #339e4a;
  font-size: 4rem;
  font-weight: 500;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    opacity: .2;
}
.hy {
  color: #aeadad;
  font-size: 4rem;
  font-weight: 500;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    opacity: .2;
}
.no {
  color: #0000ff;
  font-size: 4rem;
  font-weight: 500;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    opacity: .2;
}

.hikaku_star{
  font-size: 1.2em;
  color: #ff8a00;
  line-height: 2;
}

