@charset "UTF-8";
/* color
**************************************************************************************************/
/* font
**************************************************************************************************/
/* reset,preset
**************************************************************************************************/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  interpolate-size: allow-keywords;
}

body {
  line-height: 1;
  margin: 0;
  -webkit-text-size-adjust: 100%;
}

html {
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

p {
  line-height: 1.5;
  margin: 0;
}

article, aside, details, figcaption, figure,
footer, header, main, hgroup, menu, nav, section {
  display: block;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

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

dl {
  margin: 0;
  padding: 0;
}
dl dt, dl dd {
  margin: 0;
  padding: 0;
}

li {
  margin: 0;
  padding: 0;
}

p, li, dd { /* word-break: auto-phrase; */ }

input, select {
  vertical-align: middle;
}

a, button, input, select {
  outline: none;
  cursor: pointer;
}

img {
  vertical-align: middle;
}

figure {
  margin: 0;
  padding: 0;
}

picture {
  display: block;
}

object {
  display: block;
}

select, input {
  field-sizing: content;
}

:placeholder-shown ::-webkit-input-placeholder,
:-ms-input-placeholder {
  color: #e5e5e5;
}

/* link
**************************************************************************************************/
a {
  color: #000;
  text-decoration: none;
  outline: none;
  backface-visibility: hidden;
}
a.disabled {
  pointer-events: none;
  opacity: 0.5;
}
a img {
  border: 0;
  position: relative;
}
@media screen and (min-width: 1025px) {
  a {
    transition: opacity 0.2s;
  }
  a:hover {
    opacity: 0.8;
  }
}

/* animation
**************************************************************************************************/
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -150px, 0);
    transform: translate3d(0, -150px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes sdl {
  0% {
    transform: scale(0, 1);
    transform-origin: 0 0;
  }
  35% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  35.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  70%, 100% {
    transform: scale(0, 1);
    transform-origin: 0 100%;
  }
}
@keyframes floating-y {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10%);
  }
  100% {
    transform: translateY(0);
  }
}
.fadeInUpLeft {
  animation: fadeInUpLeft 1.2s;
  animation-fill-mode: forwards;
}

@keyframes fadeInUpLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
    clip-path: inset(0 100% 0 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    clip-path: inset(0);
  }
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}
@keyframes reverse_scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(100%);
  }
}
/* font
**************************************************************************************************/
/* headline
**************************************************************************************************/
/* background
**************************************************************************************************/
/* float-align
**************************************************************************************************/
/* img
**************************************************************************************************/
img.full {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.wf {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

/* embed
**************************************************************************************************/
.embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.embed iframe  , .embed video {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.gmap {
  position: relative;
  width: 100%;
  padding-top: 100%;
}
.gmap iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 1025px) {
  .gmap {
    padding-top: 56.25%;
  }
}

/* select input
**************************************************************************************************/
/* lists
**************************************************************************************************/
.list-bullet {
  display: grid;
  grid-auto-flow: row;
  padding-left: 1.5em;
  list-style-type: disc;
}
.list-bullet > li:not(:last-child) {
  margin-bottom: 0.5em;
}

.list-notice {
  counter-reset: list;
  display: grid;
  position: relative;
  grid-auto-flow: row;
  margin-left: 0;
  padding-left: 1.5em;
  list-style: none;
  row-gap: 0.5em;
}
.list-notice > li {
  counter-increment: list;
}
.list-notice > li::before {
  position: absolute;
  left: 0;
  content: "※";
}

.list-customnumber {
  counter-reset: nested-list;
  display: grid;
  position: relative;
  grid-auto-flow: row;
  margin-left: 0;
  padding-left: 1.5em;
  list-style: none;
  row-gap: 0.5em;
}
.list-customnumber > li {
  counter-increment: nested-list;
}
.list-customnumber > li::before {
  position: absolute;
  left: 0;
  content: counter(nested-list) "）";
}

/* text
**************************************************************************************************/
/* images
**************************************************************************************************/
/* border
**************************************************************************************************/
/* fontsize
**************************************************************************************************/
/* table
**************************************************************************************************/
table {
  border-spacing: 0;
}

/* box
**************************************************************************************************/
/* reset-slider
**************************************************************************************************/
.bx-wrapper {
  margin-bottom: 0;
  box-shadow: none;
  border: 0;
  background: none;
}

/* scroll
**************************************************************************************************/
.scroll-wrap {
  position: relative;
}
.scroll-wrap .scroll {
  height: 100%;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
@media screen and (min-width: 1025px) {
  .scroll-wrap .scroll {
    overflow: visible;
  }
}

/* fix
**************************************************************************************************/
/* form
**************************************************************************************************/
input[type=text],
input[type=password],
input[type=email],
input[type=tel],
input[type=radio],
input[type=submit],
input[type=reset],
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -moz-box-shadow: none;
  box-shadow: none;
  outline: none;
  cursor: pointer;
}

input[type=text],
input[type=email],
input[type=tel],
textarea,
select {
  border: 0;
  border-radius: 5px;
  box-shadow: none;
  background: #fff;
  font-size: 1rem;
  padding: 0.8em 1em;
  width: 100%;
  color: #000;
}

select {
  appearance: auto;
}

input[type=submit].btn-next {
  border-radius: 100px;
  text-align: center;
  font-weight: bold;
  background: #130A52;
  color: #fff;
  font-size: 1rem;
  display: inline-block;
  padding: 1em 0.5em;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  width: 250px;
}

main.user input[type=submit].btn-next {
  background: #1F55F5;
}

main.doctor input[type=submit].btn-next {
  background: #130A52;
}

input[type=submit].btn-next:hover {
  opacity: 0.8;
}

input[type=submit].btn-back {
  border-radius: 100px;
  text-align: center;
  font-weight: bold;
  background: #dfdfdf;
  color: #111;
  font-size: 1rem;
  display: inline-block;
  padding: 1em 0.5em;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  width: 250px;
}

input[type=submit].btn-back:hover {
  opacity: 0.8;
}

.label-radio {
  position: relative;
  padding: 0 0 0 28px;
  font-size: 1rem;
  margin-bottom: 0.5em;
  display: block;
}

.label-radio input::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  background: url(../img/common/input-radio-off.svg) 0 0 no-repeat;
  background-size: contain;
}

.label-radio input:checked::before {
  background: url(../img/common/input-radio-on.svg) 0 0 no-repeat;
  background-size: contain;
}

input[type=checkbox] {
  display: none;
}

input[type=checkbox] + span {
  color: #aaa;
}

input[type=checkbox] + span:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(../img/common/icn-form-checkbox-off.svg) 0 0 no-repeat;
  background-size: contain;
  position: relative;
  top: 3px;
  margin-right: 5px;
}

input[type=checkbox]:checked + span {
  color: #000;
}

input[type=checkbox]:checked + span:before {
  background: url(../img/common/icn-form-checkbox-on.svg) 0 0 no-repeat;
  width: 18px;
  height: 16px;
  background-size: contain;
}

input::placeholder,
textarea::placeholder {
  color: #959595;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #959595;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #959595;
}

/* width
**************************************************************************************************/
/* flex
**************************************************************************************************/
/* clrfix
**************************************************************************************************/
.clrfix:after {
  content: ".";
  display: block;
  height: 0px;
  clear: both;
  visibility: hidden;
}

/*# sourceMappingURL=config.css.map */



/* モーダル */
.simple-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);

  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;

  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}


.simple-modal.is-show {
  opacity: 1;
  visibility: visible;
}

.simple-modal img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;

  transform: scale(.95);
  transition: transform .3s ease;
}

.simple-modal.is-show img {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;

  width: 50px;
  height: 50px;
  border: 1px solid #fff;
  background: none;
  cursor: pointer;

  padding: 0;
  appearance: none;
}

/* ×の線 */
.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  inset: 50%;
  width: 60%;
  height: 2px;
  background: #fff;
  transform-origin: center;
}

/* 1本目 */
.modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

/* 2本目 */
.modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* hover */
.modal-close:hover {
  opacity: .7;
}



.modal-close:hover {
  opacity: .7;
}

@media screen and (min-width: 1025px) {
	
	.modal-close {
		width: 100px;
		height: 100px;
	}
	.simple-modal img {
	  max-width: 60vw;
	  max-height: 80vh;
	}
}


.c-slider-logo ul li a{
	pointer-events: none;
}