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

  BASE

----------------------------------------------------- */
html {
	scroll-behavior: smooth;
	scroll-padding-top: 60px;
}

body {
	width: 100%;
	text-align: left;
	font-size: 16px;
	line-height: 1.8;
	color: #5D6970;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
	letter-spacing: 0.05em;
	background: #FFFCF4;
}

/* ========== サイト本体（最初は完全非表示） ========== */
#site.is-hidden {
  opacity: 0;
  visibility: hidden;
}

#site.is-show {
  opacity: 1;
  visibility: visible;
  transition: opacity .6s ease;
}

/* ========== ローディング全面カバー ========== */
#loading {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  background: #FFFCF4; /* ご要望の背景色 */
}

/* フェードアウト */
#loading.is-hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}

/* ========== Lottieサイズ指定 ========== */
#lottie {
  width: 265px;   /* ← ご要望どおり */
  max-width: 80vw;
}

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

a {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	transition: .15s;
}

.inner {
	width: 90%;
	max-width: 1080px;
	margin-left: auto;
	margin-right: auto;
}

.inner02 {
	width: 90%;
	max-width: 960px;
	margin-left: auto;
	margin-right: auto;
}


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


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

  header

----------------------------------------------------- */
.header {
	position: fixed;
	width: calc(100% - 30px);
	background: rgb(255 255 255 / .9);
	border-radius: 15px;
	top: 15px;
	left: 15px;
	z-index: 130;
	
}


.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px 15px 25px;
	position: relative;
	width: 100%;
}

.header .logo {
	width: 175px;
	position: relative;
}

.header-nav {
	display: flex;
	align-items: center;
	gap:30px;
}


.contact-bt a {
	display: block;
	text-align:center;
	position: relative;
	font-weight: bold;
	color: #fff;
	background-image: linear-gradient(0deg, #85bf5e, #68b7e6);
	border-radius: 40px;
	padding: 10px 20px;
}

.contact-bt a:after {
	content: '';
	display: inline-block;
	width: 6px;
	height: 12px;
	background-image: url(../images/common/li01.svg);
	background-size: contain;
	vertical-align: middle;
	background-repeat: no-repeat;
	margin-left: 10px;
}

.header .g-nav ul {
	display: flex;
	align-items: center;
	gap:40px;
}

.header .g-nav li {
	line-height: 1;
}

.header .g-nav li:first-child {
	margin-left: 0;
}

.header .g-nav li a:hover {
	color: #68b7e6;
}



.contact-bt a:hover {
	opacity: 0.8;
	color: #fff!important;
}



.header-contact a:before {
	content: '';
	display: inline-block;
	width: 18px;
	height: 18px;
	background-image: url(../images/common/header-icon02.svg);
	background-size: contain;
	background-position: center;
	vertical-align: middle;
	background-repeat: no-repeat;
	margin-right: 8px;
}

.header-recruit {
	margin-left: 30px;
}

.header-contact {
	margin-left: 10px;
}

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

  NAV

----------------------------------------------------- */
body.fixed {
    position: fixed !important;
    width: 100%;
}

#g-nav {
  position: fixed;
  z-index: 100;
  top: 0;
  right: -80%;
  width: 80%;
  height: 100vh;
	padding-bottom: 60px;
  background: #f9f9f9;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
  padding: 90px 15px 15px 15px;
}
#g-nav.panelactive {
  right: 0;
}
#g-nav.panelactive #g-nav-list {
  position: fixed;
  z-index: 100;
      width: 60%;
  height: 100vh;
  overflow: auto;
	padding-bottom: 120px;
  -webkit-overflow-scrolling: touch;
}
#g-nav ul {
  position: absolute;
  z-index: 100;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.openbtn {
  position:relative;
  z-index: 10000;
	width: 30px;
    height: 20px;
  cursor: pointer;
}


.inPage .openbtn::after {
	color: #333;
}

.openbtn span {
  display: inline-block;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  position: absolute;
  left: 0;
  height: 2px;
  background-color: #000;
  width: 30px;
  z-index: 10000;
}

.inPage .openbtn span {
	background-color: #333;
}

.openbtn span:nth-of-type(1) {
  top: 0;
}
.openbtn span:nth-of-type(2) {
  top: 9px;
}
.openbtn span:nth-of-type(3) {
  top: 17px;
}
.openbtn.active span {
  background-color: #000;
}
.openbtn.active::after {
  color: #000;
}
.openbtn.active span:nth-of-type(1) {
  top: 0;
  left: 0;
  -webkit-transform: translateY(6px) rotate(-45deg);
      -ms-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  top: 12px;
  left: 0;
  -webkit-transform: translateY(-6px) rotate(45deg);
      -ms-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
}
#g-nav a {
  display: block;
}
#g-nav dl {
  padding: 0 0 10px 0;
  margin: 0 0 10px 0;
  
}
#g-nav dt {
  font-weight: normal;
  margin: 0;
  font-weight: 700;
  padding: 15px 8px;
border-bottom: 1px solid #ddd;
}
#g-nav dt a {
  position: relative;
}
#g-nav dd {
  font-weight: normal;
  margin: 0;
  padding: 15px 8px;
border-bottom: 1px solid #ddd;
}


#g-nav dd.contact-bt {
	border-bottom: none;
}

#g-nav dd a {
  position: relative;
  padding-left: 15px;
}
#g-nav dt a:before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background-size: contain;
    vertical-align: middle;
	margin-right: 8px;
}
.navBanner {
  padding: 0;
  margin: 0 auto;
  width: 300px;
  margin: 0 0 10px 0;
}
.navBanner img {
  width: 100%;
  height: auto;
}

#g-nav dt.page_reservation,#g-nav dt.page_contact{
    max-width: 330px;
    padding: 0;
}

#g-nav dt.page_reservation a,#g-nav dt.page_contact a{
    text-align: center;
    color: #fff;
        padding: 20px 0 ;
    font-weight: 400;

}

#g-nav dt.page_reservation a{
      border: 1px solid #9d8e58;
  transition: 0.3s;
}

#g-nav dt.page_contact a{
           border: 1px solid #9b9b9b;
 transition: 0.3s;
}

#g-nav dt.page_reservation a:hover{
           background-color: #fff;
 color: #9d8e58;
}

#g-nav dt.page_contact a:hover{
        background-color: #fff;
color: #9b9b9b;
}

#g-nav dt.page_reservation{
    background-color: #9d8e58;
    border: 1px solid #9d8e58;
    margin: 0 0 10px;
}

#g-nav dt.page_contact{
    background-color: #9b9b9b;
        border: 1px solid #9b9b9b;
}

#g-nav dt.page_reservation a::before,#g-nav dt.page_contact a::before {
    content: none;
}


.h-style01 {
	text-align: left;
	font-size: 16px;
	margin-bottom: 50px;
	line-height: 1;
	font-weight: 500;
}

.h-style01 span {
	display: block;
	font-family: "Oswald", sans-serif;
	font-optical-sizing: auto;
	font-weight: 600;
	margin-bottom: 20px;
	font-size: 64px;
	font-style: italic;
}

.bt-style01 {
	width: 90%;
	max-width: 350px;
	margin: 0 auto 15px auto;
}

.bt-style01 a {
	display: block;
	text-align: center;
	background: linear-gradient(0deg, #85bf5e, #68b7e6);
	color: #fff;
	font-weight: 900;
	border-radius: 50px;
	padding: 25px 0;
	font-size: 26px;
	line-height: 1;
	position: relative;
}

.bt-style01 a:after {
	content: '';
	display: inline-block;
	width: 9px;
	height: 15px;
	background-image: url(../images/index/arrow01.svg);
	background-size: contain;
	vertical-align: middle;
	background-repeat: no-repeat;
	position: absolute;
	right: 30px;
	top: calc(50% - 7px);
}

.bt-style01 a:hover {
	opacity: 0.8;
}

.bt-style02 {
	text-align: center;
	
}

.bt-style02 a {
	font-size: 20px;
	font-weight: 900;
	color: #fff;
}

.bt-style02 a:hover {
	opacity: 0.8;
}

.bt-style02 a:before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 40px;
    background-image: url(../images/index/arrow02.svg);
	background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
	margin-right: 12px;
}

.top-sec03 .bt-style02 a,
.top-sec04 .bt-style02 a,
.service-box .bt-style02 a{
	color: #5D6970;
}

.top-sec03 .bt-style02 a:before {
    background-image: url(../images/index/arrow04.svg);
}

.top-sec04 .bt-style02 a:before,
.service-box .bt-style02 a:before{
    background-image: url(../images/index/arrow05.svg);
}


.table-style01 {
	width: 100%;
	border-top: 1px solid #324e90;
	border-bottom: 1px solid #324e90;
	color: #666;
	margin-bottom: 50px;
	position: relative;
	z-index: 5;
}


.table-style01 th {
	white-space: nowrap;
	padding: 20px;
	border-bottom: 1px solid #b3b3b3;
}

.table-style01 td {
	padding: 20px;
	border-bottom: 1px solid #b3b3b3;
}

.table-style01 tr {
	background: #fff;
}

.table-style01 tr:nth-child(odd) {
	background: #ebf4ff;
}

.table-style01 tr:last-child th,
.table-style01 tr:last-child td {
	border-bottom: none;
}




.footer-bg {
	background: url(../images/common/footer-bg1.jpg) left bottom no-repeat;
	background-size: 100% auto;
	padding-bottom: 150px;
}

.footer {
	position: relative;
	margin-top: -85px;
	padding-top: 75px;
	padding-bottom: 70px;
	color: #fff;
	background: url(../images/common/footer.svg) no-repeat #5D6970;
	background-size: cover;
	clip-path: polygon(
  /* 上辺（左右を150px切り込み） */
  150px 0,
  calc(100% - 150px) 0,

  /* 右上の斜め */
  100% 85px,

  /* 右下 */
  100% 100%,

  /* 左下 */
  0 100%,

  /* 左上の斜め */
  0 85px
);
}

.footer a {
	color: #fff;
}

.footer a:hover {
	opacity: 0.8;
}

.footer .nav-box {
	display: flex;
	position: relative;
	justify-content: space-between;
	position: relative;
	padding-top: 100px;
}

.footer .nav-box h3 {
	font-weight: 700;
	margin-bottom: 15px;
}

.footer .nav-box h3:before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 16px;
    background-image: url(../images/common/li02.svg);
	background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
	margin-right: 12px;
}

.footer .nav-box .nav-item ul {
	border-left: 1px solid #AEB4B8;
	padding-left: 15px;
	margin-left: 9px;
}

.footer .nav-box .nav-item li {
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 10px;
}

.footer-info {
	display: flex;
	gap:40px;
	justify-content: center;
    align-items: center;
	margin: 70px 0;
}

.footer-info dt {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 20px;
}

.footer-info dd {
	font-size: 14px;
}

.footer-logo {
	width: 123px;
}

.copyright {
	text-align: center;
	font-size: 12px;
	font-weight: 400;
}

.page-top {
	position: absolute;
	right: 50px;
	width: 60px;
	bottom: 60px;
}

.footer-sample-bt {
	margin-top: 20px;
}

.footer-sample-bt a {
	display: block;
	text-align:center;
	position: relative;
	font-weight: bold;
	color: #fff;
	background-image: linear-gradient(0deg, #85bf5e, #68b7e6);
	border-radius: 40px;
	padding: 5px 20px;
}

.footer-sample-bt a:after {
	content: '';
	display: inline-block;
	width: 6px;
	height: 12px;
	background-image: url(../images/common/li01.svg);
	background-size: contain;
	vertical-align: middle;
	background-repeat: no-repeat;
	margin-left: 10px;
}







