@charset "UTF-8";
/* @import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap"); */

@import url('https://fonts.googleapis.com/css2?family=Calistoga&family=Noto+Sans+JP:wght@100..900&display=swap');

/*============================
	base
============================*/
:root {
  --text-color: #000;
  --color-white: #fff;
  --color-red: #1d2082;
  --color-blue: #5154aa;
  --font-sans: "Noto Sans JP", sans-serif;
  --bg-1: url("../img/texture-1.jpg") repeat-y center / 100% auto;
}

html {
  font-size: calc(10 / 1440 * 100vw);
  color: var(--text-color);
  overflow-x: hidden;
}

@media (max-width: 767px) {
  html {
    font-size: calc(10 / 767 * 100vw);
  }
}

body {
  background-color: var(--text-color);
  font-family: var(--font-sans);
  font-size: max(12px, 1.6rem);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.5;
  overflow-x: hidden;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

.js-fade {
  opacity: 0;
}

.js-fadeUp {
  animation: fadeUp 0.6s ease both;
}

.header img,
section img,
.footer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  vertical-align: bottom;
}

a {
  transition: 0.3s ease-in-out;
}

@media (min-width: 768px) {
  a:hover {
    opacity: 0.6;
  }

  a[href^="tel:"] {
    pointer-events: none;
  }
}

@media (max-width: 767px) {
  a[href^="tel:"] {
    text-decoration: underline;
  }
}

.sp {
  display: none;
}

@media (max-width: 767px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block;
  }
}

.map {
  width: 100%;
  height: 40rem;
}

.map iframe {
  display: block;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .map {
    height: 40rem;
  }
}
@media (max-width: 500px) {
  .map {
    height: 55rem;
  }
}

/*============================
	header
============================*/
.header {
  background-color: var(--text-color);
  width: 100%;
  height: 11.3rem;
  color: var(--color-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
}

@media (max-width: 767px) {
  .header {
    height: max(60px, 8rem);
  }
}

.header::after {
  content: "";
  background: url("../img/line.png") repeat-x center / 100%;
  width: 100%;
  height: 4rem;
  position: absolute;
  transform: translateY(50%);
  left: 0;
  bottom: 0;
}

.header .header__logo {
  width: 46rem;
  margin-left: 7rem;
}
@media (max-width: 900px) {
  .header .header__logo {
    width: 42rem;
    margin-left: 3rem;
  }
}
@media (max-width: 767px) {
  .header .header__logo {
    width: max(250px, 44rem);
    margin-left: 0;
  }
}

.header__hamburger-sp {
  visibility: hidden;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
}

@media (max-width: 767px) {
  .header__hamburger-sp {
    background-color: var(--color-red);
    width: 8rem;
    height: 8rem;
    min-width: 60px;
    min-height: 60px;
    visibility: visible;
  }

  .header__hamburger-sp::before,
  .header__hamburger-sp::after,
  .header__line-sp {
    content: "";
    background-color: var(--color-white);
    width: 5rem;
    min-width: 35px;
    height: 2px;
    border-radius: 5px;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    transition: 0.3s;
  }

  .header__hamburger-sp::before {
    top: 30%;
    transform-origin: bottom left;
  }

  .header__hamburger-sp::after {
    top: 70%;
    transform-origin: top left;
  }

  .header__hamburger-sp.js-transform::before,
  .header__hamburger-sp.js-transform::after {
    transform: scale(1.414);
    top: 50%;
  }

  .header__hamburger-sp.js-transform::before {
    transform: rotate(45deg) translateX(-50%);
  }

  .header__hamburger-sp.js-transform::after {
    transform: rotate(-45deg) translateX(-50%);
  }

  .js-transform .header__line-sp {
    transform: scale(0);
  }
}

.header__contents {
  display: flex;
  align-items: center;
  gap: 6rem 2.7rem;
  margin-right: 11rem;
}
@media (max-width: 900px) {
  .header__contents {
    margin-right: 7rem;
  }
}
@media (max-width: 767px) {
  .header__contents {
    background-color: var(--color-red);
    width: 100%;
    height: 100%;
    min-height: max-content;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 0;
    margin: 0;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    overflow-y: scroll;
    z-index: 100;
    transition: 0.3s ease-out;
  }

  .header__contents.js-show {
    opacity: 1;
    visibility: visible;
  }
}

.header__nav-list {
  display: flex;
  gap: 4rem;
  margin-right: 1rem;
  align-items: center;

}

@media (max-width: 767px) {
  .header__nav-list {
    gap: 4.5rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 768px) {
  .header__nav-item {
    position: relative;
  }

  .header__nav-item::before {
    content: "";
    background-color: var(--color-blue);
    width: 120%;
    height: 2px;
    position: absolute;
    transform: translate(-50%, -100%) scale(0, 1);
    transform-origin: center top;
    left: 50%;
    bottom: -1.5rem;
    transition: 0.3s ease-in-out;
  }

  .header__nav-item:hover::before {
    transform: translate(-50%, -100%) scale(1, 1);
  }
}

.header__nav-item:last-of-type {
  width: 8.3rem;
}
@media (max-width: 767px) {
  .header__nav-item:last-of-type {
    width: max(70px, 8rem);
  }
}

.header__nav-item a {
  letter-spacing: 0.1em;
  font-weight: 600;
}

.header__sns li {
  width: max(24px, 3.2rem);
  height: max(24px, 3.2rem);
}
.header__sns li img {
  object-fit: inherit;
}






/*============================
	footer
============================*/
.footer {
  color: var(--color-white);
  padding: 6rem 0 0;
  position: relative;
}
@media (max-width: 767px) {
  .footer {
    padding: 6rem 0 max(45px, 6rem);
  }
}

.footer::before {
  content: "";
  background: url("../img/line.png") repeat-x center / 100%;
  width: 100%;
  height: 4rem;
  position: absolute;
  transform: translateY(-50%);
  left: 0;
  top: 0;
}

.pagetop {
  background-color: var(--color-blue);
  width: max(30px, 4rem);
  height: max(30px, 4rem);
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 100;
}

.pagetop.js-top {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 768px) {
  .pagetop.js-top:hover {
    opacity: 0.6;
  }
}

.pagetop::before {
  content: "";
  display: inline-block;
  width: max(7px, 1rem);
  height: max(7px, 1rem);
  border: 0.2rem solid var(--color-white);
  border-left: 0;
  border-bottom: 0;
  position: absolute;
  transform: translate(-55%, -45%) rotate(-45deg);
  top: 50%;
  left: 50%;
}

.footer__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem 10rem;
}

@media (max-width: 767px) {
  .footer__inner {
    flex-direction: column;
  }
}

.footer__logo {
  display: block;
  width: max(260px, 47rem);
  height: auto;
}

.footer__link {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 4rem 2rem;
  margin-right: 5rem;
}

@media (max-width: 767px) {
  .footer__link {
    flex-direction: column;
    margin-right: 0;
  }
}

.footer__nav-list {
  display: flex;
  justify-content: center;
  gap: max(15px, 3rem) 4rem;
  margin-right: 2rem;
}

@media (max-width: 767px) {
  .footer__nav-list {
    flex-direction: column;
    align-items: center;
    margin-right: 0;
  }
}

.footer__nav-item a {
  display: block;
  letter-spacing: 0.1em;
  white-space: nowrap;
  font-weight: 600;
}

.footer__sns li {
  width: max(24px, 3.2rem);
  height: max(24px, 3.2rem);
}
.footer__sns li img {
  object-fit: inherit;
}

.copy {
  background-color: #1d2082;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 0.3rem 0 0.5rem;
  margin-top: 6rem;
}




/*  ----------------------------------------------------------

fixed btn

----------------------------------------------------------  */
.fixed-btn {
	position: fixed;
	top: 50%;
	right: 0;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	z-index: 999;
	width: max(60px, 8rem);
    list-style: none;
}
.fixed-btn li:not(:last-of-type) {
	margin-bottom: 2rem;
}
.fixed-btn li::marker {
    content: none;
}
.fixed-btn img {
  width: 100%;
  height: auto;
}

@media (min-aspect-ratio: 1440/720) { /* 横長 */
	/* .fixed-btn {
		top: 37%;
		width: 5rem;
	}
	.fixed-btn .reserve {
		margin-bottom: 1rem;
	} */
}
@media (min-aspect-ratio: 1440/560) { /* さらに横長 */
	/* .fixed-btn {
		top: 37%;
		width: 4rem;
	}
	.fixed-btn .reserve {
		margin-bottom: 0.5rem;
	} */
}

@media screen and (max-width: 767px) {
	.fixed-btn {
		top: auto;
		right: auto;
		bottom: 0;
		transform: none;
		-webkit-transform: none;
		width: 100%;
		display: flex;
	}
  .fixed-btn::after {
    content: "";
    background: url("../img/line.png") repeat-x center / 100%;
    width: 100%;
    height: 4rem;
    transform: translateY(-50%);
    position: absolute;
    left: 0;
    top: 0;
  }

	.fixed-btn li {
		width: 100%;
        margin-top: 0;
        margin-bottom: 0 !important;
	}
  .fixed-btn li:not(:last-of-type) {
    border-right: solid 0.1rem #fff;
  }
	.fixed-btn a.sp {
		width: 100%;
		padding: 0;
		height: max(45px, 6rem);
		display: flex !important;
		align-items: center;
		justify-content: center;
		text-decoration: none !important;
		line-height: 1;
	}
    .fixed-btn a.pc {
        display: none;
    }
	/* icon */
	.fixed-btn li img {
		width: max(20px, 2.8rem);
		height: max(20px, 2.8rem);
		margin-right: max(10px, 1.1rem);
	}	
	/* txt */
	.fixed-btn a > span {
		display: flex;
		flex-direction: column;
	}
	.fixed-btn a > span > span:nth-child(1) {
		margin-left: 0;
		margin-bottom: 0.3rem;
		font-size: max(10px, 1.3rem);
	}
	.fixed-btn a > span > span:nth-child(2) {
		/* font-weight: bold; */
		font-size: 1.5rem;
        text-decoration: underline;
	}		
	.fixed-btn li.tel {
		margin-bottom: 0;
	}	
	.fixed-btn .tel a > span > span:nth-child(2) {
		font-size: max(17px, 2.2rem);
	}	
	.fixed-btn .tel a {
		background: #000;
		color: #fff;
	}	
	.fixed-btn .reserve a {
		background: #C89E45;
		color: #fff;
	}	
}




._reserve {
  text-align: center;
  font-size: max(17px, 2.3rem);
  margin: 8rem 0;
}





/*-------------------------
  contact
---------------------------*/
  
@media screen and (min-width: 768px) {
	form {
		padding: 20px 0 0 0;
		/* max-width: 1200px; */
		margin: 0 auto;
		width: calc(100% - 40px);
	}
  
	form div {
		margin-bottom: 40px !important;
	}
  
	form div label {
		display: block;
		font-weight: bold;
		margin-bottom: 10px;
		/* font-size: 1.6rem; */
	}
  
	form select {
		padding: 20px;
		background: #fff;
		border: #bbb solid 1px;
		border-radius: 3px;
	}
  
	form input,
	form textarea {
		width: calc(100% - 40px);
		padding: 15px 20px;
		background: #fff;
		border: #bbbbbb solid 1px;
		border-radius: 4px;
		font-size: 1.5em;
		font-size: max(15px, 1.9rem);
    color: #000;
	}
	form textarea {
	  resize: vertical;
	  height: 25rem;
	}
	form input[type="submit"] {
		border: 0px;
		width: 40%;
		background: #1d2082;
		border: 2px solid #fff;
		border: solid 0.2rem #fff;
		color: #fff;
		font-weight: 600;
		padding: 2rem 0;
		margin: 6rem auto 0;
		display: block;
        letter-spacing: 0.5rem;
        text-align: center;

	}
}
  
  form input[type="submit"]:hover {
	transition: all 0.3s;
	cursor: pointer;
	opacity: 0.7;
  }
  .CMS-FORM-RADIO input[type="radio"] {
    width: 2rem;
    height: 2rem;
    display: block;
    margin-top: 1.3rem;
    border-radius: 50%;
}
.CMS-FORM-RADIO {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 70%;
}
.CMS-FORM-RADIO label{
    display: block;
    width: calc(100% - 3.5rem);
}
.CMS-FORM-RADIO > label {
    font-weight: normal;
    padding-top: 0.8rem;
}
.CMS-FORM-RADIO > label:not(:last-of-type) {
    margin-bottom: 1rem;
}

.CMS-FORM-required {
	display: inline-block;
	margin-left: 0.5em;
	padding: 0.1em 0.5em;
	background-color: #c00;
	color: #fff;
	font-size: max(11px, 0.85em);
	font-weight: bold;
	line-height: 1.4;
	vertical-align: 0.08em;
	border-radius: 2px;
	white-space: nowrap;
}

@media screen and (max-width: 767px) {
	form {
		padding: 0 0 0px;
	}
  
	form div {
		margin-bottom: 20px;
	}
  
	form div label {
		display: block;
		font-weight: bold;
		margin-bottom: 10px;
		font-size: max(14px, 1.8rem);
	}
  
	form select {
		padding: 20px;
		background: #fff;
		border: #bbb solid 1px;
		border-radius: 3px;
	}
  
	form input,
	form textarea {
		max-width: 1000px;
		width: calc(100% - 20px);
    width: 100%;
		padding: 15px 10px;
		background: #fff;
		border: #bbbbbb solid 1px;
		border-radius: 4px;
		font-size: 1.4em;
    color: #000;
	}
	form textarea {
		height: 20rem;
	  }  
  
	form input[type="submit"] {
		border: 0px;
		width: 60%;
		background: #1d2082;
		border: 2px solid #fff;
		border: solid 0.4rem #fff;
		color: #fff;
		font-weight: 600;
		padding: 2rem 0;
		margin: 6rem auto 0;
		display: block;
        letter-spacing: 0.5rem;
        text-align: center;

	}

	.CMS-FORM-RADIO input[type="radio"] {
        width: 2rem;
        height: 2rem;
        margin-top: 0;
        margin-bottom: 1.5rem;
    }
    .CMS-FORM-RADIO {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 100%;
    }
    .CMS-FORM-RADIO label{
        width: calc(100% - 3.5rem);
        padding-top: 0;
        margin-top: -0.1rem;
    }
    .CMS-FORM-RADIO > label {
        font-weight: normal;
    }
    .CMS-FORM-RADIO > label:not(:last-of-type) {
        margin-bottom: 0;
    }

  }
  
@media screen and (max-width: 450px) {

	.inner-flex h2 {
		font-size: 25px;
	}
	.inner-flex-reverse h2{
		font-size: 25px;
	}
	.inner-flex-reverse h2{
		font-size: 25px;
	}

}


.thanks_width {
	text-align: center;
	margin: auto;
  }
  .thanks_width .btn {
	margin: 0 auto;
  } 


/*
 * required mark 
 */
 .form_required1 {
	width: 250px;
	display: flex;
	justify-content: space-between;
  }
  .form_required2 {
	display: inline-block;
	background-color: #DA002C;
	color: #fff;
	font-size: max(12px, 1.5rem);
	line-height: 1;
	font-weight: bold;
	width: 6rem;
	padding: 0.5rem 0;
	text-align: center;
  
	margin-top: 3px;
	margin-left: 30px;
  
  }
  @media screen and (max-width: 767px) {
	.form_required1 {
	  width: 100%;
	}  
	.form_required2 {
    	width: 9rem;
  	padding: 0.7rem 0;
	font-size: max(12px, 1.7rem);

	  /* width: 14vw;
	  height: 5.5vw;   */
	}
  }
  

  /*
 * privacy policy
 */

.privacy {
	width: calc(100% - 40px) !important;
	margin: 0 auto 5rem;
	border: 4px solid #bebebe;
	height: 500px;
	overflow: auto;
	overflow-y: scroll !important;
	background-color: #fff;
  }
  .privacy p {
	color: #000;
	padding: 0 20px;
  }
  .privacy span {
	font-weight: bold;
  }
  
  p.privacy_notes {
	padding: 4rem 0 2rem;
	padding-left: 2em;
	text-indent: -1em;
    font-size: max(12px, 1.6rem);
    line-height: 2;
  }
  
  @media screen and (max-width: 767px) {
	.privacy {
		width: calc(100% - 20px) !important;
		/* height: 110vw; */
		height: 380px;
	}
  }


.recruit__block {
    max-width: 1000px;
    margin: 0 auto;
}
.recruit__text {
    text-align: center;
    margin: 0 0 7rem;
    font-size: max(13px, 1.8rem);
    line-height: 2;
}
.recruit__text span {
  font-size: 1.2em;
}

  
/*
 * thanx
 */

.thanx {
    text-align: center;
    font-size: 1.6rem;
}
.back {
    text-align: center;
    display: block;
    font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
    .thanx {
        text-align: left;
    }
}





.thanx__txt {
  font-size: max(13px, 1.6rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 2.3;
  text-align: center;
}
.thanx_btn a {
  display: block;
background: #fff;
  width: max-content;
  color: #000;
  padding: 1.5rem 5rem;
  font-weight: 500;
  margin: 4rem auto 0;
  border-radius: 0.6rem;
  font-size: max(14px, 1.7rem);
}







