@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: #666;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
	letter-spacing: 0.05em;
	border-bottom: 30px solid #324e90;
}

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

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

.triangle {
	position: absolute;
	right: 0;
	top: 0;
	width: 0;
	height: 0;
	border-right: 200px solid #324e90;
	border-top: 0 solid transparent;
	border-bottom: 440px solid transparent;
}

.oswald {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

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


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

  header

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


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

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

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

.contact-bt {
	position: absolute;
	z-index: 10;
	right: 30px;
	top: -40px;
}

.contact-bt a {
	display: block;
	width: 130px;
	height: 130px;
	border-radius: 50%;
	background: #fff;
	text-align:center;
	line-height: 130px;
	position: relative;
	font-size: 13px;
	font-weight: bold;
	color: #324e90;
}

.contact-bt a:after {
	content: '';
	display: block;
	width: 28px;
	height: 28px;
	background-image: url(../images/common/header-mail.svg);
	background-size: contain;
	vertical-align: middle;
	background-repeat: no-repeat;
	position: absolute;
	left: calc(50% - 14px);
	bottom: 15px;
}

.header .g-nav ul {
	display: flex;
	align-items: center;
	font-size: 13px;
}

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

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

.header .g-nav li a {
	padding: 0 25px;
	border-right: 1px solid;
}

.header .g-nav li:last-child a {
	border-right: none;
}

.header .g-nav li a:hover {
	color: #324e90;
}

.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: 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: 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: 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 a {
	display: block;
	padding: 10px 0;
	text-align: center;
	border-radius: 10px;
	background: #fff;
	font-weight: bold;
	color: #324e90;
	font-size: 14px;
	position: relative;
}

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


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

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

.bt-style02 a:hover {
	background: #fff;
	color: #324e90;
}

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


.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;
	padding-top: 0;
}

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

.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: 280px;
}

.footer a {
	color: #324e90;
}

.footer .inner {
	margin-bottom: 60px;
}

.footer dt {
	font-weight: 600;
	font-size: 19px;
	margin-bottom: 1em;
}

.footer dd {
	margin-bottom: 0.5em;
}

.copyright {
	text-align: right;
	padding: 15px;
	font-size: 13px;
	color: #666666;
	position: relative;
	overflow: hidden;
	width: 100%;
	padding-bottom: 50px;
}


.copyright .car {
	position: absolute;
	left: 80px;
	bottom: 0;
	width: 90px;
	/*animation: carRun 30s linear infinite;*/
}

/* 右端で消えて、左に瞬間ワープして再スタート */
@keyframes carRun {
	0% {
		left: 0;
		opacity: 1;
	}

	70% {
		left: calc(100% - 90px); /* 右端まで移動 */
		opacity: 1;
	}

	75% {
		left: calc(100% - 90px);
		opacity: 0; /* 右端でフェードアウト */
	}

	80% {
		left: 0;
		opacity: 0; /* 左端に瞬間移動 (見えない状態) */
	}

	85% {
		left: 0;
		opacity: 1; /* 左端で再びフェードイン */
	}

	100% {
		left: 0;
		opacity: 1;
	}
}




.banner {
	position: absolute;
	top: 0;
	left: -50px;
    background-color: #324e90;
	margin-bottom: 25px;
    color: white;
    padding: 10px 40px;
    width: 400px;
    font-size: 21px;
    font-weight: bold;
    text-align: center;
    clip-path: polygon(
        0% 0%,        /* 左上 */
        calc(100% - 30px) 0%, /* 右上から左に30px移動した点 */
        100% 100%,     /* 右下（そのまま） */
        0% 100%       /* 左下 */
    );
    
    /* 要素内のテキスト配置 */
    display: flex;
    justify-content: flex-start; /* テキストを左寄せに */
    align-items: center;
    /* paddingで調整したテキストの配置をさらに中央に近づける */
    padding-left: 50px; 
}

/* テキストを中央に寄せるための調整 */
.banner .text {
    margin: 0;
}

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


.service-title02 {
	font-size: 21px;
	line-height: 1.4;
	color: #fff;
	font-weight: bold;
	position: relative;
	overflow: hidden;
	padding: 15px 0;
}

.service-title02 h2 {
	position: relative;
	z-index: 2;
}

.service-title02:after {
	content: '';
	display: block;
	width: 40%;
	height: 70px;
	transform: skewX(27deg);
	background-color: #324e90;
	position: absolute;
	left: -50px;
	top: 0;
	z-index: 1;
}

.inner05 {
	width: 90%;
	max-width: 1050px;
	margin-left: auto;
	margin-right: auto;
}













