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

  BASE

----------------------------------------------------- */
html {
	scroll-behavior: smooth;
}
body {
	width: 100%;
	text-align: left;
	font-size: 16px;
	line-height: 1.8;
	color: #333;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
	letter-spacing: 0.05em;
}

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: 1040px;
	margin-left: auto;
	margin-right: auto;
}

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

.grecaptcha-badge {
	display:none;
}


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

  header

----------------------------------------------------- */
.header {
	position: relative;
}

.header-top {
	height: 6px;
	width: 100%;
	background: #22B073;
	background: linear-gradient(90deg,rgba(34, 176, 115, 1) 0%, rgba(0, 117, 185, 1) 100%);
}

.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 25px;
	position: relative;
}

.header .logo {
	width: 300px;
	position: relative;
	top: 1px;
}

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

.contact-bt a {
	background: #22B073;
	background: linear-gradient(90deg,rgba(34, 176, 115, 1) 0%, rgba(0, 117, 185, 1) 100%);
	display: flex;
	border-radius: 12px;
	padding: 12px 25px;
	line-height: 1;
	color: #fff!important;
	font-weight: 600;
}

.contact-bt a:after {
	content: '';
	display: inline-block;
	width: 20px;
	height: 15px;
	background-image: url(../images/common/header-mail.svg);
	background-size: contain;
	vertical-align: middle;
	margin-left: 12px;
	background-repeat: no-repeat;
	position: relative;
	top: 1px;
}

.eng-bt {
	text-align: right;
	font-size: 11px;
	margin-bottom: 10px;
	font-weight: 600;
}

.eng-bt a {
	display: flex;
	align-items: center;
	gap:5px;
	justify-content: flex-end;
}

.eng-bt a:after {
	content: '';
	display: inline-block;
	width: 15px;
	height: 15px;
	background-image: url(../images/common/header-global.svg);
	background-size: contain;
	vertical-align: middle;
	background-repeat: no-repeat;
	position: relative;
	top: 0;
}

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

.header .g-nav li {
	line-height: 1;
	margin-left: 50px;
	font-weight: 700;
}

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

.header .g-nav li a {
}

.header .g-nav li a:hover {
	color: #008ad4;
}

.header-recruit a,
.header-contact a{
	display: flex;
	color: #fff;
	background: #80167D;
	border-radius: 40px;
	align-items: center;
}

.header li.header-recruit a:hover,
.header li.header-contact a:hover {
	background: #AA50AA;
	color: #fff;
}


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

.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: 8px;
  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: 60px 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 {
  color: #333;
  display: block;
}
#g-nav dl {
  padding: 0 0 10px 0;
  margin: 0 0 10px 0;
  
}
#g-nav dt {
  font-weight: normal;
  font-size: 14px;
  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;
  font-size: 13px;
  margin: 0;
  padding: 5px 8px;
}
#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: center;
	color: #008ad4;
	font-size: 29px;
	margin-bottom: 50px;
	line-height: 1;
	font-weight: 500;
}

.h-style01 span {
	display: block;
	margin-bottom: 20px;
	font-size: 13px;
}

.bt-style01 a {
	border: 1px solid #008ad4;
	padding: 13px 0;
	text-align: center;
	display: block;
	font-weight: 500;
	color: #008ad4;
	position: relative;
	background: #fff;
}

.bt-style01 a:hover {
	background: #008ad4;
	color: #fff;
}

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

.bt-style01 a:hover:before {
	background-image: url(../images/index/arrow02.svg);
}

.bt-style02 {
	width: 100%;
	max-width: 300px;
	margin: 0 auto;
}

.bt-style02 a {
	border: 1px solid #008ad4;
	padding: 13px 0;
	text-align: center;
	display: block;
	font-weight: 500;
	color: #fff;
	position: relative;
	background: #008ad4;
	border-radius: 20px;
}

.bt-style02 a:hover {
	background: #fff;
	color: #008ad4;
}

.bt-style02 a:before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 14px;
    background-image: url(../images/index/arrow02.svg);
	background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
	position: absolute;
	right: 20px;
	top: calc(50% - 6px);
}

.bt-style02 a:hover:before {
	background-image: url(../images/index/arrow01.svg);
}

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

.footer {
	position: relative;
	padding-top: 50px;
}

.footer .inner {
	display: flex;
	position: relative;
	justify-content: space-between;
}

.footer .sec02 {
	display: flex;
	justify-content: space-between;
	gap:100px;
	font-weight: 600;
}

.footer .sec02 li {
	margin-bottom: 20px;
}

.pagetop {
	width: 95px;
	position: absolute;
	right: 50px;
	top: -45px;
}

.footer-logo {
	width: 180px;
	margin-bottom: 40px;
}

.footer dt {
	font-weight: 600;
	margin-bottom: 30px;
}

.footer dd {
	font-size: 13px;
	line-height: 2;
}

.nami-footer {
	position: absolute;
	right: 50px;
	bottom:50px;
	width: 140px;
}

.copyright {
	text-align: center;
	font-size: 15px;
	padding: 15px 0;
}

.fixBt {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 10;
}

.fixBt-inner {
	display:flex;
	width:100%;
}

.fixBt .num {
	width:50%;
}

.fixBt .web-bt {
	width:50%;
}

.fixBt a,
.fixBt .web-bt a{
	display: flex;
	justify-content: center;
	align-items: center;
	height:50px;
	text-align: center;
	background: #3fc688;
	font-size: 15px;
	font-weight: bold;
	line-height: 1.4;
	color:#fff;
}

.fixBt .web-bt a{
	background: #2197de;
	
}

.fixBt .web-bt span {
	display: flex;
	justify-content: center;
	align-items: center;
}

.fixBt a span:before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(../images/common/nav01.svg);
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
    margin-right: 5px;
}

.web-bt a span:before {
    content: '';
    display: inline-block;
    width: 35px;
    height: 30px;
    background-image: url(../images/common/nav02.png);
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
    margin-right: 5px;
}



