@charset "utf-8";


@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@300;600&display=swap");
@font-face {
  font-family: 'random';
	src: url("../../font/random.otf") format("opentype");
}
@font-face {
  font-family: 'yokomoji';
  src: url('../../font/yokomoji.otf') format('opentype');
}
/* -- form#mail_form, dl, dt, dd -------------------------------------------------------------------------------- */

body {
	/* background: url(../../img/contact-bg.png) no-repeat center center / cover; */
  background: #F3F3F3;
  color: #333333;
  /* cursor: none; */
	padding-top: 70px !important;
  /* margin: 0;
  padding: 0; */
  /* overflow-x: hidden;
  position: relative; */
}
.form{
  overflow-x: hidden;
  position: relative;
}
@media (min-width: 1311px) {
  body {
    cursor: none;
  }
}
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

@media (min-width: 1311px) {
  .is-sm {
    display: none;
  }
}

@media screen and (max-width: 1310px) {
  .is-sm {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .is-sm {
    display: block;
  }
}





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

img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

@media (min-width: 1311px) {
  .is-sm {
    display: none;
  }
}

@media screen and (max-width: 1310px) {
  .is-sm {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .is-sm {
    display: block;
  }
}

li {
  list-style: none;
}

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

@import url('https://fonts.googleapis.com/css2?family=Arima:wght@300&display=swap');/* // ヘッダー */
.header{
  font-family: 'Arima', cursive;
  font-weight: 300px;
  height: 70px;
  position: fixed;
  width: 100%;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;

  background-color: hsla(0,0%,96.5%,.6);
}

@media screen and (max-width: 767px) {
  .header {
    height: 60px;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}

.header__logo {
  width: 120px;
}

@media screen and (max-width: 767px) {
  .header__logo {
    width: 100px;
  }
}

.header__logo img {
  display: block;
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}

.header__nav li:not(:first-child) {
  margin-left: 48px;
}

.header__nav li a {
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  color: #333333;
  text-decoration: none;
  position: relative;
  font-size: 16px;
}

.header__nav li a::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background: transparent;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.message__nav a:hover::after, .message__nav a.is-active::after {
  background: -webkit-gradient(linear, left top, right top, from(#b1daf8), to(#fcd2d4));
  background: linear-gradient(to right, #b1daf8, #fcd2d4);
}

.member__nav a:hover::after, .member__nav a.is-active::after {
  background: -webkit-gradient(linear, left top, right top, from(#faebaa), to(#fac1b7));
  background: linear-gradient(to right, #faebaa, #fac1b7);
}

.careers__nav a:hover::after, .careers__nav a.is-active::after {
  background: -webkit-gradient(linear, left top, right top, from(#dff4a2), to(#fac4ba));
  background: linear-gradient(to right, #dff4a2, #fac4ba);
}

.contact__nav a:hover::after, .contact__nav a.is-active::after {
  background: -webkit-gradient(linear, left top, right top, from(#c8febb), to(#b1f6e5));
  background: linear-gradient(to right, #c8febb, #b1f6e5);
}


.envelope__nav a.btn--orange {
  color: #fff;
  background-image: -webkit-gradient(linear, left top, right top, from(#8d8be2), to(#fdbbcb));
  background-image: linear-gradient(90deg, #8d8be2, #fdbbcb);
}

.envelope__nav a.btn--orange:hover {
  color: #fff;
  background-image: -webkit-gradient(linear, left top, right top, from(#8d8be2), to(#fdbbcb));
  background-image: linear-gradient(90deg, #8d8be2, #fdbbcb);
}

.envelope__nav a.btn-c {
  font-size: 16px;
  position: relative;
  /* padding: 1.5rem 2rem 1.5rem 2rem; */
  border-radius: 18px;
  padding: 10px 20px;
}

a.btn-c i.fa {
  margin-right: 1rem;
}

a.btn-c:before {
  font-family: 'Font Awesome 5 Free';
  font-size: 1.6rem;
  line-height: 1;
  position: absolute;
  top: calc(50% - .8rem);
  right: 1rem;
  margin: 0;
  padding: 0;
  content: '\f054';
}



.drawer-icon {
  position: fixed;
  top: 20px;
  right: 16px;
  z-index: 300;
  display: none;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

@media screen and (max-width: 767px) {
  .drawer-icon {
    display: block;
  }
}

.drawer-icon.is-active {
  -webkit-transform: translateX(-200px);
          transform: translateX(-200px);
}

.drawer-icon.is-active .drawer-icon__bars1 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 8px;
}

.drawer-icon.is-active .drawer-icon__bars2 {
  display: none;
}

.drawer-icon.is-active .drawer-icon__bars3 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 8px;
}

.drawer-icon__bars {
  width: 22px;
  height: 20px;
  display: block;
  position: relative;
}

.drawer-icon__bars1,
.drawer-icon__bars2,
.drawer-icon__bars3 {
  position: absolute;
  width: 30px;
  height: 2px;
  background: #3EA1D1;
  top: 0;
  left: 0;
}

.drawer-icon__bars1 {
  top: 0;
}

.drawer-icon__bars2 {
  top: 8px;
}

.drawer-icon__bars3 {
  top: 16px;
}

.drawer-content {
  width: 200px;
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  background: #fff;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
  z-index: 299;
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

.drawer-content.is-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer-content__item {
  border-bottom: 1px dotted #707070;
}

.drawer-content__item a {
  display: block;
  color: #707070;
  padding: 18px 20px;
  position: relative;
}

.drawer-content__item a::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
  height: 11px;
  background: url(../img/arrow-b@3x.png) no-repeat center center/contain;
}

.drawer-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 298;
  display: none;
}

.drawer-background.is-active {
  display: block;
}

.form-img{
	width: 500px;
	margin: 0 auto;
}
@media screen and (max-width: 1310px) {
  .form-img{
    width: 65%;
  }
}
@media screen and (max-width: 767px) {
  .form-img{
    width: 65%;
  }
}

.contact_bg1{
  position: absolute;
  background: #F6D5D6;
  width: 49%;
  height: 640px;
  left: -200px;
  top: 10px;
  border-radius: 50%;
  z-index: -1;
}
.contact_bg2{
  position: absolute;
  background: #E6FAE1;
  width: 42%;
  height: 641px;
  right: -145px;
  top: 600px;
  border-radius: 50%;
  z-index: -1;
}
.contact_bg3{
  position: absolute;
  background: #FCF7D9;
  width: 41%;
  height: 560px;
  left: -100px;
  top: 1100px;
  border-radius: 50%;
  z-index: -1;
}

@media screen and (max-width: 1310px) {
  .contact_bg1{
    height: 540px;
    width: 540px;
  }
  .contact_bg2{
    width: 540px;
    height: 541px;
  }
  .contact_bg3{
    width: 450px;
    height: 450px;
  }
}

@media screen and (max-width: 767px) {
  .contact_bg1{
    height: 250px;
    width: 250px;
    left: -100px;
  }
  .contact_bg2{
    height: 250px;
    width: 250px;
    right: -100px;
    top: 500px;
  }
  .contact_bg3{
    height: 250px;
    width: 250px;
  }
}




form#mail_form * {
	margin: 0;
	box-sizing: content-box;
	font-family: 'Zen Maru Gothic', sans-serif;
}

form#mail_form {
	width: 1000px;
	margin: 50px auto;
	/* background: #fff; */
	margin-top: -40px;
	border-radius: 7px;
	/* box-shadow: 0 0 7px rgba( 0, 0, 0, 0.2 ); */
	line-height: 1.8;
}

form#mail_form dl {
	width: 90%;
	margin: 0 auto;
	border-bottom: 1px solid #5B5B5B;
}



h2 {
  position: relative;
  color: #C0C0C0;
  font-family: 'random' !important; 
  letter-spacing: .1em;
  font-size: 80px;
	text-align: center;
	padding: 20px 0;
}

@media screen and (max-width: 750px) {
  h2 {
    font-size: 50px;
  }
}

h2 span {
  position: absolute;
  font-size: 28px;
  font-family: 'yokomoji' !important; 
  letter-spacing: 1px;
  color: #5B5B5B;
  bottom: 40px;
	/* right: 270px; */
  right: 30%;
}
@media screen and (max-width: 750px) {
  h2 span {
    right: 17%;
    font-size: 23px;
    bottom: 30px;
  }
}


h2.left {
  text-align: right;
}

h2.left span {
  left: auto;
  right: 110px;
}

h2.center span {
  left: 50%;
}

.inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
}

@media screen and (max-width: 750px) {
  .inner {
    margin: 0 5%;
  }
}





form#mail_form dl:after,
form#mail_form dl dt:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

form#mail_form dl dt {
  font-size: 16px;
	width: 30%;
	float: left;
	padding: 35px 0 25px;
	text-align: right;
}

form#mail_form dl dd {
	width: 65%;
	float: right;
	padding: 30px 0 25px 5%;
}

form#mail_form dl dt i {
	float: left;
	position: relative;
	top: -2px;
}




/* -- span.required, span.optional -------------------------------------------------------------------------------- */

form#mail_form dl dt span.required{
	display: inline-block;
	font-size: 85%;
	color: #ffffff;
	padding: 4px 10px;
	border-radius: 3px;
}

form#mail_form dl dt span.required {
	background: #cae9ff;
	border: 1px solid #cae9ff;
}

/* form#mail_form dl dt span.optional {
	background: #337ab7;
	border: 1px solid #2e6da4;
} */

.optional{
	display: none;
}




/* -- error message -------------------------------------------------------------------------------- */

form#mail_form dl dd span.error_blank,
form#mail_form dl dd span.error_format,
form#mail_form dl dd span.error_match {
	display: block;
	color: #ff0000;
	margin-top: 5px;
}

.contact-message{
  text-align: center;
  margin-top: 60px;
  display: none;
}
.contact-message .error{
	color: #f00;
}




/* -- loading -------------------------------------------------------------------------------- */

div.loading-layer {
	width: 100vw;
	height: 100vh;
	background: rgba( 0, 0, 0, 0.7 );
	position: fixed;
	left: 0px;
	top: 0px;
	z-index: 10000;
}

span.loading {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border-top: 5px solid rgba( 255, 255, 255, 0.2 );
	border-right: 5px solid rgba( 255, 255, 255, 0.2 );
	border-bottom: 5px solid rgba( 255, 255, 255, 0.2 );
	border-left: 5px solid #ffffff;
	-webkit-transform: translateZ( 0 );
	-ms-transform: translateZ( 0 );
	transform: translateZ( 0 );
	-webkit-animation: load-circle 1.0s linear infinite;
	animation: load-circle 1.0s linear infinite;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -30px;
	margin-left: -30px;
}

@-webkit-keyframes load-circle {
	0% {
		-webkit-transform: rotate( 0deg );
		transform: rotate( 0deg );
	}
	100% {
		-webkit-transform: rotate( 360deg );
		transform: rotate( 360deg );
	}
}

@keyframes load-circle {
	0% {
		-webkit-transform: rotate( 0deg );
		transform: rotate( 0deg );
	}
	100% {
		-webkit-transform: rotate( 360deg );
		transform: rotate( 360deg );
	}
}




/* -- input, select, textarea -------------------------------------------------------------------------------- */

form#mail_form input[type="text"],
form#mail_form input[type="email"],
form#mail_form input[type="tel"] {
	width: calc( 100% - 4% - 2px );
	padding: 7px 2%;
	border: 1px solid #5B5B5B;
	border-radius: 8px;
	background: #fff;
	-webkit-appearance: none;
	font-size: 16px;
	font-family: inherit;
	line-height: normal;
	
}

form#mail_form input[type="text"]:focus,
form#mail_form input[type="email"]:focus,
form#mail_form input[type="tel"]:focus,
form#mail_form textarea:focus {
	box-shadow: 0px 0px 5px #55ccff;
	border: 1px solid #55ccff;
	background: #ffffff;
}

form#mail_form ul li input[type="radio"],
form#mail_form ul li input[type="checkbox"] {
	margin: 0 10px 0 0;
}

form#mail_form select {
	padding: 7px 2%;
	border: 1px solid #cccccc;
	font-size: 16px;
	font-family: inherit;
	line-height: normal;
}

form#mail_form textarea {
	display: block;
	width: calc( 100% - 4% - 2px );
	height: 200px;
	padding: 7px 2%;
	resize: vertical;
	border: 1px solid #5B5B5B;
	border-radius: 8px;
	background: #fff;
	-webkit-appearance: none;
	font-size: 16px;
	font-family: inherit;
	line-height: normal;
}


/* -- ul, li -------------------------------------------------------------------------------- */

form#mail_form ul {
	list-style-type: none;
}

form#mail_form ul li label {
	display: block;
	margin-top: 10px;
	padding: 7px 2%;
	border-radius: 8px;
	background: #fff;
}

form#mail_form ul li:first-child label {
	margin-top: 0px;
}

form#mail_form ul li label:hover {
	cursor: pointer;
	background: #fafafa;
}




/* -- input design -------------------------------------------------------------------------------- */

form#mail_form input[name="company"] {
	width: 70%;
}

form#mail_form input[name="name_1"],
form#mail_form input[name="name_2"],
form#mail_form input[name="read_1"],
form#mail_form input[name="read_2"],
form#mail_form input[name="postal"],
form#mail_form input[name="phone"],
form#mail_form input[name="schedule"] {
	width: 30%;
}

form#mail_form input[name="mail_address"],
form#mail_form input[name="mail_address_confirm"] {
	width: 80%;
}

form#mail_form input[name="postal"] + a {
	display: inline-block;
	padding: 7px 20px;
	border: 1px solid #cae9ff;
	border-radius: 3px;
	background: #cae9ff;
	font-size: 16px;
	line-height: normal;
	color: #ffffff;
	text-decoration: none;
	border-radius: 8px;
}

form#mail_form input[name="postal"] + a:hover {
	cursor: pointer;
	opacity: 0.6;
  transition: all 0.5s;
}




/* -- button -------------------------------------------------------------------------------- */

form#mail_form p#form_submit {
	/* margin: 0 auto; */
	padding: 30px 0;
	text-align: center;
}

form#mail_form input[type="button"] {
	padding: 7px 20px;
	border: 1px solid #cae9ff;
	border-radius: 3px;
	background: #cae9ff;
	font-size: 16px;
	color: #ffffff;
	font-family: inherit;
	-webkit-appearance: none;
	border-radius: 8px;
}

form#mail_form input[type="button"]:hover {
	cursor: pointer;
	opacity: 0.6;
  transition: all 0.5s;
}
/* 
form#mail_form input[type="button"] {
} */








/* -- responsive ----------------------------------------------------------------------------------------------------------------------- */

/* 1000pixel start */
@media screen and ( max-width: 1000px ) {


/* -- form#mail_form, dl, dt, dd -------------------------------------------------------------------------------- */

form#mail_form {
	width: 95%;
	font-size: 100%;
}

form#mail_form dl dt {
	width: auto;
	float: none;
	padding: 25px 0 10px;
	text-align: left;
	font-weight: bold;
}

form#mail_form dl dd {
	width: auto;
	float: none;
	padding: 0px 0 20px 0px;
}

form#mail_form dl dt i {
	float: none;
	position: static;
	font-weight: normal;
}


/* -- span.required, span.optional -------------------------------------------------------------------------------- */

form#mail_form dl dt span.required{
	margin: 0 15px 0 0;
}




/* -- input design -------------------------------------------------------------------------------- */

form#mail_form input[name="phone"],
form#mail_form input[name="schedule"] {
	width: 60%;
}




/* -- button -------------------------------------------------------------------------------- */

form#mail_form p#form_submit {
	padding: 25px 0;
}

form#mail_form input[type="button"] {
	margin-left: 0;
}
}

.contact-footer-text{
  font-size: 16px;
}
.contact-privacy-link{
  color: #a8c2ee;
}



/* 画像認証 */
.img_test img{
  width: 200px;
}



footer {
  font-family: 'Arima', cursive;
  padding: 60px 0 24px;
  color: #fff;
  background: linear-gradient(-45deg, #f9c2eb, #a8c2ee, #c2f9d0, #ffdea5) fixed;
  -webkit-animation: GradietionAnimation 9s ease infinite;
          animation: GradietionAnimation 9s ease infinite;
  background-size: 800% 800%;
}

@media screen and (max-width: 767px) {
  footer {
    padding-top: 30px;
    padding-bottom: 14px;
  }
}

@-webkit-keyframes GradietionAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes GradietionAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .footer__content {
    display: block;
  }
}

.footer__left {
  width: 36%;
}

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

.footer__logo a:hover {
  opacity: 0.6;
}

.footer__logo img {
  width: 150px;
}

.footer__tel, .footer__address {
  font-size: 14px;
}

.footer__address {
  padding-top: 26px;
}

@media screen and (max-width: 767px) {
  .footer__address {
    margin-top: 13px;
  }
}

.footer__tel {
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .footer__tel {
    margin-top: 6px;
  }
}

.footer__center {
  width: 48%;
}

@media screen and (max-width: 767px) {
  .footer__center {
    width: 100%;
    margin-top: 24px;
  }
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
}

.footer__nav li:not(:first-child) {
  margin-left: 40px;
}

@media screen and (max-width: 767px) {
  .footer__nav li:not(:first-child) {
    margin-left: 20px;
  }
}

.footer__nav li a:hover {
  opacity: 0.6;
}

.footer__right {
  width: 16%;
}

@media screen and (max-width: 767px) {
  .footer__right {
    width: 100%;
    margin-top: 24px;
  }
}

.footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media screen and (max-width: 767px) {
  .footer__sns {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
}

.footer__sns li:not(:first-child) {
  margin-left: 16px;
}

.footer__sns li a:hover {
  opacity: 0.6;
}

.fa-twitter:before {
  font-size: 30px;
}

.fa-facebook:before {
  font-size: 30px;
}

.fa-instagram:before {
  font-size: 34px;
}

.footer__copy {
  margin-top: 46px;
  font-size: 14px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .footer__copy {
    margin-top: 22px;
  }
}
/* 1000pixel end */




/*カーソル要素*/
#cursor {
  z-index: 999;
  position: fixed;
  /*丸の大きさと色の指定*/
  background: #fff;
  border-radius: 10px;
  width: 10px;
  height: 10px;
  margin: -10px 0 0 -10px;
  /*真ん中にくるようにマイナスマージンで調整*/
  pointer-events: none;
  /*クリックできなくなるのを防ぐため。noneで対応*/
  opacity: 0;
  -webkit-transition: -webkit-transform 0.1s;
  transition: -webkit-transform 0.1s;
  transition: transform 0.1s;
  transition: transform 0.1s, -webkit-transform 0.1s;
  /*アニメーションの秒数指定*/
}

/*ちょっと遅れてついてくるストーカー要素*/
#stalker {
  z-index: 999;
  position: fixed;
  /*丸の大きさと色の指定*/
  background: rgba(249, 138, 138, 0.4);
  width: 40px;
  height: 40px;
  border-radius: 30px;
  margin: -30px 0 0 -30px;
  /*真ん中にくるようにマイナスマージンで調整*/
  z-index: 998;
  /*カーソルの後ろに来るように*/
  pointer-events: none;
  /*クリックできなくなるのを防ぐため。noneで対応*/
  opacity: 0;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  /*アニメーションの秒数指定*/
}

#cursor.active,
#stalker.active {
  -webkit-transform: scale(2);
          transform: scale(2);
}







