@charset "UTF-8";
/*-------------------------------------------------------------------

	Init

-------------------------------------------------------------------*/
body {
  color: #333;
  background-color: #ffffff;
  font-size: 1.4rem;
  line-height: 1.8;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media all and (-ms-high-contrast: none) {
  /*IE 11*/
  body {
    font-family: "メイリオ", Meiryo, sans-serif !important;
  }
}
h1, h2, h3, h4, h5, h6, p, ul, ol, dl, dt, dd, figure {
  margin: 0;
  padding: 0;
}

ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.4;
  font-size: 1em;
}

address {
  font-style: inherit;
}

a {
  color: inherit;
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

p {
  margin-bottom: 1em;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

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

img[src$=".svg"] {
  width: 100%;
  height: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

hr {
  border: none;
  height: 1px;
  background: #000000;
  margin-bottom: 1em;
}

div#ui-datepicker-div {
  z-index: 9999 !important;
}

* {
  box-sizing: border-box;
}

/*-------------------------------------------------------------------
	PC
-------------------------------------------------------------------*/
@media screen and (min-width: 641px) {
  html {
    font-size: calc(20px * 640 / 750);
  }
}
/*-------------------------------------------------------------------
	SP
-------------------------------------------------------------------*/
@media screen and (max-width: 640px) {
  html {
    font-size: 2.666667vw;
  }
}
/*-------------------------------------------------------------------

	Common layout

-------------------------------------------------------------------*/
.bread-crumb {
  margin-bottom: 2em;
  font-size: 10px;
  font-size: 1rem;
  line-height: 1.4;
}
.bread-crumb li {
  display: inline-block;
  margin-bottom: 0.5em;
}
.bread-crumb li::after {
  content: "／";
  display: inline-block;
  margin: 0 1em;
}
.bread-crumb li:last-child::after {
  display: none;
}
.bread-crumb li a {
  color: inherit;
}
.bread-crumb li:last-child a {
  text-decoration: none;
}
.bread-crumb li .fa-home {
  margin-right: 0.5em;
}

/* box */
.box_white{
  background: #fff;
}
.box_blue{
	background: #007d9f;
	color: #fff;
}
.box_radius{
  border-radius: 0.5rem;
}
.box_radius_l{
  border-radius: 1rem;
}
.box_shadow{
  box-shadow: 0px 0.05rem 1rem 0px rgba(0, 0, 0, 0.1);
}
.box_border{
  border: 1px solid #dddddd;
}
.box_border_brown{
  border: 0.1rem solid #dfc8c2;
}

/*-------------------------------------------------------------------

	Animation

-------------------------------------------------------------------*/
.a-hidden {
  opacity: 0;
  visibility: hidden;
}

/*my-fadeInUp*/
@-webkit-keyframes my-fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes my-fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.my-fadeInUp {
  -webkit-animation-name: my-fadeInUp;
  animation-name: my-fadeInUp;
}

/*my-fadeInLeft*/
@-webkit-keyframes my-fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100px, 0, 0);
    transform: translate3d(-100px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes my-fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100px, 0, 0);
    transform: translate3d(-100px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.my-fadeInLeft {
  -webkit-animation-name: my-fadeInLeft;
  animation-name: my-fadeInLeft;
}

/*my-fadeInRight*/
@-webkit-keyframes my-fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes my-fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.my-fadeInRight {
  -webkit-animation-name: my-fadeInRight;
  animation-name: my-fadeInRight;
}

/*---------------basic fade---------------*/
/*fast*/
.a-fade-in {
  -webkit-animation-name: fade-in;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-in;
  -webkit-animation-iteration-count: 1;
  animation-name: fade-in;
  animation-duration: 0.5s;
  animation-timing-function: ease-in;
  animation-iteration-count: 1;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
/*slow*/
.a-fade-in-slow {
  -webkit-animation-name: fade-in-slow;
  -webkit-animation-duration: 3s;
  -webkit-animation-timing-function: ease-in;
  -webkit-animation-iteration-count: 1;
  animation-name: fade-in-slow;
  animation-duration: 1s;
  animation-timing-function: ease-in;
  animation-iteration-count: 1;
}

@-webkit-keyframes fade-in-slow {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes fade-in-slow {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

/*-------------------------------------------------------------------

	text

-------------------------------------------------------------------*/
.times-new-roman-itaric{
	font-family: "Times New Roman", serif;
	font-style: italic;
}
.shippori-mincho{
  font-family: "Shippori Mincho B1", serif;
  font-style: normal;
}
.text_lt-150{
	letter-spacing: -0.15em;
}
.text_lt-250{
	letter-spacing: -0.25em;
}
.list_check > li{
	line-height: 1.3;
	padding:0.1em 0 0.1em 2.5rem;
	background: url(../img/ic_check.svg) no-repeat left 0.4em;
	background-size: 1.6rem 1.2rem;
}
.marker_yellow,
.marker_pink{
  position: relative;
  z-index: 1;
}
.marker_yellow::before,
.marker_pink::before{
  content: "";
  background: #ffff66;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 40%;
  width: 100%;
  z-index: -1;
}
.marker_pink::before{
  background: #ff6699;
  opacity: 0.2;
}

.text_super{
  font-size: 50%;
  position: relative;
  top: -0.8em;
}

.mark_dot{
  position: relative;
}
.mark_dot::after{
  background: #d60c5e;
  border-radius: 50%;
  content: "";
  position: absolute;
  height: 0.5rem;
  width: 0.5rem;
  top: -0.2rem;
  left: calc(50% - 0.25rem);
}