@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;
}
body {
  font-size: 0.9rem;
  font-weight: 350;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  -webkit-overflow-scrolling: touch;
}
a {
  color: inherit;
  display: block;
}
a, a:hover {
  text-decoration: none;
}
a img {
  pointer-events: 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: .75rem;
}
strong, .strong {
  font-weight: 700;
}
table {
  width: 100%;
}
th, td {
  vertical-align: middle;
}
input[type="checkbox"] {
  margin: 0 4px 0 0;
}
em {
  font-weight: 700;
  background: linear-gradient(transparent 70%, #FFEE1185 70%);
}

/* utility */
.dancing {
  font-family: 'Dancing Script', cursive;
}
.shadow {
  box-shadow: 0 .25rem .25rem rgba(165, 144, 144, 0.12);
}
.paragraph + .paragraph {
  margin-top: 1rem;
}
.text-center {
  text-align: center;
}
.table-scrolling {
  overflow-x: auto;
}
.img-fluid,
.w-100 {
  width: 100%;
}
@media (max-width: 575.98px) {
.img-fluid,
.w-100 {
  width: 100%;
}
}
.bold {
  font-weight: 700;
}
.star {
  color: #ffa311;
}
.link {
  font-weight: 700;
}
.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%);
}
.gradient--dark {
  background: linear-gradient(to bottom, #f5acbb 0%,#e097a8 100%);
}

/* CHECK */
.balloon1{
  position: relative;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.2em;
  font-size: 14px;
  background-color: #ff9800;
}
.balloon1::before{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: 2px;
  bottom: 2px;
  border-right: 20px solid #ff9800;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  transform: rotate(-45deg);
}

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

/* color */
.bg-light-pink {
  background: #f4acbb;
}
.bg-pink {
  background: #df97a8;
}
.bg-pink {
  background: #df97a8;
}
.bg-yellow {
  background: #ffa311;
}
.bg-purple {
  background: #aa89bd;
}
.bg-light {
  background: #ffeaf0;
}
.color-white {
  color: #fff;
}
.color-yellow {
  color: #ffa311;
}
.color-purple {
  color: #aa89bd;
}
.color-pink {
  color: #df97a8;
}
.color-blue{
  color: #3e619a;
}
.color-red{
  color: #ea4b4b;
}
.fc-r{
	color: #FF0000;
}
.fc-y{
	color: #e8b200;
}
.fc-b{
	color: #0000FF;
}
.fc-gr{
  color: #339e4a;
}

.f-bold {
  font-weight: 700;
}

/* m */
.mt--sm {
  margin-top: 8px;
}
.mt--md {
  margin-top: 16px;
}
.mt--lg {
  margin-top: 32px;
}
.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;
}
.margin-custom01{
  margin: 16px 0;
}
@media (max-width: 575.98px){
  .margin-custom01{
    margin: 0;
  }
}

/* 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 {
  font-size: 1.6em;
  padding: 8px;
}
.p--md {
  padding: 16px 0;
}
.p--lg {
  padding: 32px;
}

/* c */
.c {
  display: flex;
  align-items: center;
  justify-content: center;
}
.c--jStart {
  justify-content: flex-start;
}
@media (max-width: 576px) {
.c--jStart {
    display: inline-block;
    text-align: center;
}
}
.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 80%;
}

/* .container */
.container {
  width: 100%;
  padding-right: 16px;
  padding-left: 16px;
  margin-right: auto;
  margin-left: auto;
}
@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: 10px;
    padding-left: 10px;
  }
}

/* breadcrumb */
.breadcrumb {
  font-size: .75rem;
}

/* 検索フォーム編集 */
label{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
select {
  /* styling */
  display: inline-block;
  font: inherit;
  line-height: 1.5em;
  padding: 0.5em 3.5em 0.5em 1em;
  /* reset */
  margin: 0;      
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  margin-bottom: 16px;
  width: 49%;
}


/* arrows */
select.classic {
  background-image:
    linear-gradient(45deg, transparent 50%, #fff 50%),
    linear-gradient(135deg, #fff 50%, transparent 50%),
    linear-gradient(to right, #000, #000);
  background-position:
    calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px),
    100% 0;
  background-size:
    5px 5px,
    5px 5px,
    2.5em 2.5em;
  background-repeat: no-repeat;
}

select.classic:focus {
  background-image:
    linear-gradient(45deg, white 50%, transparent 50%),
    linear-gradient(135deg, transparent 50%, white 50%),
    linear-gradient(to right, gray, gray);
  background-position:
    calc(100% - 15px) 1em,
    calc(100% - 20px) 1em,
    100% 0;
  background-size:
    5px 5px,
    5px 5px,
    2.5em 2.5em;
  background-repeat: no-repeat;
  outline: 0;
}

@media (max-width: 575.98px){
  .search-form{
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
}

/* recommend_button */
.recommend_button{
  margin: 16px 0 16px;
  padding: 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.recommend_button a{
  padding: 10px;
  color: #fff;
  background: #f5a82e;
  -webkit-box-shadow: 0px 7px 0px #b96141;
  box-shadow: 0px 7px 0px #b96141;
  height: 70px;
  font-size: 1.1rem;
  position: relative;
}
@media (min-width: 780px){
  .recommend_button a{
    font-size: 1.8rem;
  }
}

/* ボタンの光沢 */
.is-reflection a {
  overflow: hidden;
}
.is-reflection a:after {
  -moz-animation: is-reflection 4s ease-in-out infinite;
  -moz-transform: rotate(45deg);
  -ms-animation: is-reflection 4s ease-in-out infinite;
  -ms-transform: rotate(45deg);
  -o-animation: is-reflection 4s ease-in-out infinite;
  -o-transform: rotate(45deg);
  -webkit-animation: is-reflection 4s ease-in-out infinite;
  -webkit-transform: rotate(45deg);
  animation: is-reflection 4s ease-in-out infinite;
  background-color: #fff;
  content: " ";
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: -180px;
  transform: rotate(45deg);
  width: 30px;
}
/* アニメーションを遅延させる */
.is-reflection + .is-reflection a:after {
  -webkit-animation-delay: .3s;
  animation-delay: .3s;
}
@keyframes is-reflection {
  0% { -webkit-transform: scale(0) rotate(45deg); transform: scale(0) rotate(45deg); opacity: 0; }
  80% { -webkit-transform: scale(0) rotate(45deg); transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { -webkit-transform: scale(4) rotate(45deg); transform: scale(4) rotate(45deg); opacity: 1; }
  100% { -webkit-transform: scale(50) rotate(45deg); transform: scale(50) rotate(45deg); opacity: 0; }
}
@-webkit-keyframes is-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; }
}

/* CVボタン矢印揺れ */
.is-trembling a:before {
  -webkit-animation-name:is-trembling;
  -webkit-animation-duration:.8s;
  -webkit-animation-iteration-count:infinite;
  -webkit-animation-timing-function:ease;
  -moz-animation-name:is-trembling;
  -moz-animation-duration:1s;
  -moz-animation-iteration-count:infinite;
  -moz-animation-timing-function:ease;
}
@-webkit-keyframes is-trembling {
  0% {-webkit-transform:translate(-3px, 0);}
  100% {-webkit-transform:translate(0, 0);}
}

/* ボタンをバウンドさせる */
.is-bounce {
  animation: bounce 4s infinite;
  -moz-animation: bounce 4s infinite;
  -webkit-animation: bounce 4s infinite;
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
@-webkit-keyframes bounce {
  0%, 4%, 10%, 18%, 100% {-webkit-transform: translateY(0);}
  5% {-webkit-transform: translateY(-6px);}
  12% {-webkit-transform: translateY(-4px);}
}
@keyframes bounce {
  20%, 24%, 30%, 34%, 100% {-webkit-transform: translateY(0);transform: translateY(0);}
  25% {-webkit-transform: translateY(-6px);transform: translateY(-6px);}
  32% {-webkit-transform: translateY(-4px);transform: translateY(-4px);}
}
/* アニメーションを遅延させる */
.is-bounce + .is-bounce {
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
}

/* ぷるるるるん！ */
.is-purun {
  -webkit-animation: is-purun 5s infinite;
  -moz-animation: is-purun 5s infinite;
  animation: is-purun 5s infinite;
}
@-webkit-keyframes is-purun {
   0% { -webkit-transform: scale(1.0, 1.0) translate(0%, 0%); }
   4% { -webkit-transform: scale(0.9, 0.9) translate(0%, 3%); }
   8% { -webkit-transform: scale(1.1, 0.8) translate(0%, 7%); }
  12% { -webkit-transform: scale(0.9, 0.9) translate(0%, -7%); }
  18% { -webkit-transform: scale(1.1, 0.9) translate(0%, 3%); }
  25% { -webkit-transform: scale(1.0, 1.0) translate(0%, 0%); }
}
@keyframes is-purun {
   0% { transform: scale(1.0, 1.0) translate(0%, 0%); }
   4% { transform: scale(0.9, 0.9) translate(0%, 3%); }
   8% { transform: scale(1.1, 0.8) translate(0%, 7%); }
  12% { transform: scale(0.9, 0.9) translate(0%, -7%); }
  18% { transform: scale(1.1, 0.9) translate(0%, 3%); }
  25% { transform: scale(1.0, 1.0) translate(0%, 0%); }
}
/* アニメーションを遅延させる */
.is-purun + .is-purun {
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
}