@charset "UTF-8";

:root {
  --main-color: #1768b3;
  --sub-color: #1789b3;
  --link-color: #1f95a0;

  --color-01: #1768b3;
  --color-02: #1789b3;
  --color-03: #1f95a0;
}

/* add font */
.sans {
  font-family: "Noto Sans JP", sans-serif;
}
.serif {
  font-family: "Noto Serif JP", serif;
}
.font_en {
  font-family: 'Times New Roman', Times, serif;
}

/*
  header
========================================================================== */
.head, .head * {
	box-sizing: border-box;
}
.head img {
	max-width: 100%;
}
.head {
	font-size: max(calc((15 / 1400) * 100vw), calc(15px * 0.97));
  position: absolute !important;
  z-index: 10;
  width: 100%;
  top: 0;
  left: 0;
}
.head_ttl {
  font-size: 80%;
  color: #fff;
  text-align: right;
  margin: 0 6em 0 0;
  padding-top: 1.4em;
  line-height: 1;
}
.header, .header * {
	box-sizing: border-box;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  padding: 0 max(0.714vw,9px) 0 max(2.857vw,37px);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.header .head_l {
  padding-top: max(0.571vw,7px);
}
.header .head_r {
  display: flex;
  gap: max(0.571vw,7px);
}
.header h1 {
  font-size: max(0.857vw,11px);
  color: #2e2e2e;
}
.header .logo {
  display: block;
  width: max(9.286vw,120px);
  margin: max(4vw,52px) 0 0 max(4.286vw,55px);
}
.header .tel {
  position: relative;
  width: max(15.714vw,204px);
  height: max(3.214vw,41px);
  display: flex;
  align-items: center;
  line-height: 1;
  letter-spacing: 0.03em;
  padding: 0 max(0.714vw,9px) max(0.357vw,4px) max(2.857vw,37px);
  background-color: #377dc4;
  font-size: max(1.786vw,23px);
  color: #fff;
}
.header .tel::before {
  content: "";
  position: absolute;
  top: 50%;
  left: max(1.071vw,13px);
  transform: translateY(-50%);
  width: max(1.071vw,13px);
  aspect-ratio: 15/18;
  background-image: url(../images/common/header_ico_tel.png);
  background-size: max(1.071vw,13px) auto;
}
.header .btn {
  position: relative;
  width: max(14.857vw,193px);
}
.header .line {
  width: max(14.857vw,193px);
  background-color: #06c755;
}
.header .line::before {
  height: max(1.714vw,22px);
  background-image: url(../images/top/header_ico_line.png);
}

/*
  gnav
========================================================================== */
.gnav, .gnav * {
	box-sizing: border-box;
}
.gnav img {
	max-width: 100%;
	vertical-align: middle;
}
.gnav {
	font-size: max(calc((15 / 1400) * 100vw), calc(15px * 0.97));
	padding: 1.4em 4em;
	position: relative;
}
.gnav ul {
	display: flex;
  justify-content: space-between;
	align-items: center;
	position: relative;
	z-index: 1;
}
.gnav li {
  flex: auto;
	position: relative;
	text-align: center;
}
.gnav li::before,
.gnav li::after {
	content: "";
	display: block;
	position: absolute;
	height: 100%;
	width: 1px;
	top: 0;
}
.gnav li::after {
  right: 0;
  background-color: #2e2e2e;
}
.gnav li:first-child::before {
  left: 0;
  background-color: #2e2e2e;
}
.gnav li a {
	display: block;
	transition: 0.3s;
	padding: 0.5em 0;
  line-height: 1;
  letter-spacing: 0.08em;
  border-radius: 2em;
}
.gnav li a i {
  color: #444;
  font-weight: 300;
}

.gnav li:nth-of-type(1) {
  font-size: 106.6%;
}

/*
  overlay navigation
========================================================================== */
.onav {
	display: none;
	position: fixed;
	padding: 1.4em;
	top: 0;
	left: 0;
	z-index: 99999;	
	width: 100%;
	min-width: 1200px;
	height: 100%;
	min-height: 570px;	
	box-sizing: border-box;
	font-size: max(calc((15 / 1400) * 100vw), calc(15px * 0.97));
}
.onav .menu {
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.94);
	display: flex;
  align-items: center;
  justify-content: center;
	flex-wrap: wrap;
	flex-direction: column;
}
.onav .m_close {
	position: absolute;
	top: 4em;
	right: 3.4em;
	width: 2.73em;
	cursor: pointer;
}
.onav .menu .inner {
  width: 84em;
}
.onav .wrap_menu ul {
	display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  border-bottom: 1px solid #2c2c2c;
  gap: 2em 0;
  padding: 0 2.4em 3em;
  margin-bottom: 3em;
}
.onav .wrap_menu ul li {
	line-height: 1;
}
.onav .wrap_menu li a {
	color: #2c2c2c;
	display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 0.5em;
  align-items: center;
	text-decoration: none;
  transition: 0.3s;
}
.onav .wrap_menu li a:before {
	content: "";
	display: block;
  width: 0.27em;
  aspect-ratio: 4 / 7;
  background-color: #2c2c2c;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.onav .wrap_menu li a:hover {
  opacity: 0.7;
}

/*
  footer
========================================================================== */
.footer, .footer * {
	box-sizing: border-box;
}
.footer img {
	max-width: 100%;
}
.footer {
  color: #2e2e2e;
	font-size: max(calc((15 / 1400) * 100vw), calc(15px * 0.97));
  position: relative;
  background-color: #e0e7ed;
}
.footer .logo {
  width: 36.66em;
  margin: 0 auto 3.6em;
  display: grid;
  align-items: center;
  text-align: center;
  aspect-ratio: 550 / 158;
  background-color: #fff;
}
.footer .logo a {
  display: block;
  width: 26.46em;
  margin: 0 auto;
}
.footer .logo img {
  aspect-ratio: 397 / 81;
}
.foot_inr {
  position: relative;
  padding: 0 0 4.8em;
  display: grid;
  grid-template-columns: 36em 1fr;
  gap: 0 3em;
}
/* --------------------------- left */
.foot_lft {
  padding: 0 0 0 7.6em;
}
.foot_lft .foot_ico {
  position: relative;
  padding-left: 5em;
  background-repeat: no-repeat;
  background-position: 1.6em 0;
  background-size: 2.26em auto;
}
.foot_lft .foot_ico span {
  font-size: 113%;
}
.foot_tel {
  min-height: 2.6em;
  margin: 0 0 1em;
  padding: 0 0 0 3.2em;
  background-repeat: no-repeat;
  background-position: 1.4em 50%;
  background-size: 2.53em auto;
  background-image: url("../images/common/foot_ico_tel.png");
}
.foot_tel.foot_ico span {
  font-size: 250%;
  letter-spacing: 0.04em;
  line-height: 1;
  display: block;
}
.foot_btn {
  margin: 0 0 1.4em;
}
.foot_btn a {
  display: block;
  width: 25.86em;
  aspect-ratio: 388 / 71;
  display: grid;
  align-items: center;
  text-align: center;
  color: #fff;
  background-color: #293f76;
  position: relative;
  background-repeat: no-repeat;
  background-position: 1.4em 50%;
  background-size: 2.53em auto;
  background-image: url("../images/common/foot_ico_web.png");
}
.foot_btn a::before {
  content: "";
  display: block;
  position: absolute;
  height: 0.8em;
  right: 1.6em;
  top: calc(50% - 0.4em);
  aspect-ratio: 11 / 12;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.foot_btn a span {
  line-height: 1;
  font-size: 166.6%;
  margin-top: 0.1em;
}
.foot_addr {
  margin: 0 0 1.8em;
  background-image: url("../images/common/foot_ico_locate.png");
}
.foot_accs {
  margin: 0 0 3.2em;
  background-image: url("../images/common/foot_ico_train.png");
}
.footer .timetable {
  width: 25.86em;
}
.footer .timetable table {
	border-collapse: collapse;
	line-height: 1;
  width: 100%;
  margin: 0 0 0.5em;
}
.footer .timetable th,
.footer .timetable td {
	text-align: center;
	vertical-align: middle;
	padding: 0;
	line-height: 1;
	padding: 0.6em 0;
}
.footer .timetable th {
	width: auto;
	font-weight: normal;
  letter-spacing: 0.1em;
  font-size: 100%;
}
.footer .timetable td {
	width: calc((100% - 36%) / 8);
}
.footer .timetable thead {
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}
.footer .timetable tbody tr {
  border-bottom: 1px solid #333;
}
.footer .timetable tbody th,
.footer .timetable tbody td {
  padding: 0.6em 0 0.7em;
}
.footer .timetable tbody th {
  font-size: 87%;
}
/* --------------------------- navigation */
.foot_nav {
  padding: 3em 0 0;
  display: grid;
  grid-template-columns: 11em 28.1em 1fr;
}
.foot_nav div:nth-of-type(2) {
  display: grid;
  align-items: start;
  grid-template-columns: 12em 1fr;
  grid-template-rows: auto 1fr;
  gap: 0;
}
.foot_nav div:nth-of-type(2) h3 {
  grid-column: 1 / 3;
}
.foot_nav h3 {
  font-size: 111%;
  margin: 0 0 0.6em;
}
.foot_nav ul {
  display: grid;
  gap: 0.7em;
}
.foot_nav a {
  display: inline-block;
  position: relative;
  padding-left: 1em;
  line-height: 1.3;
  letter-spacing: -0.06em;
  transition: 0.3s;
  color: #2e2e2e;
  text-decoration: underline;
}
.foot_nav a:hover {
  opacity: 0.7;
}
.foot_nav a::before {
  content: "▶";
  display: block;
  position: absolute;
  left: 0;
  top: 0.6em;
  font-size: 62%;
}
.foot_nav a span {
  font-size: 88.8%;
}

/* --------------------------- humanity */
.foot_humanity {
  position: absolute;
  width: 4.66em;
  bottom: 1em;
  right: 2.4em;
}
.foot_humanity img {
  aspect-ratio: 70 / 60;
}
/* --------------------------- copyright */
.footer .copyright {
  position: relative;
  z-index: 3;
  background-color: #293f76;
  color: #fff;
  text-align: center;
  padding: 1em 0;
  font-size: 93.3%;
  line-height: 1;
  letter-spacing: 0.06em;
}
/* --------------------------- pagetop */
.pagetop {
	position: fixed;
	cursor: pointer;
	z-index: 9999;
	width: 44px;
	bottom: 40px;
	right: 0;
}

/*
  mainPhoto
========================================================================== */
.mainPhoto {
  margin: 0 auto;
  width: 100%;
}

/*
  sidemenu / sidebanner
========================================================================== */
/* sidemenu */
.sidemenu {
  position: relative;
  width: 290px;
  line-height: 1;
  background: #FFF;
  padding: 22px 20px 38px;
  box-sizing: border-box;
}
.sidemenu::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #1768b3;
  opacity: 0.2;
}
.sidemenu h2 {
  margin-left: 4px;
  font-family: 'Times New Roman', Times, serif;
  font-size: 37.5px;
  letter-spacing: .12em;
  color: #2e2e2e;
}
.sidemenu h2::first-letter {
  font-size: 50px;
  color: #1768b3;
}
.sidemenu ul {
  margin-top: 18px;
  border-top: #b1b1b1 solid 1px;
}
.sidemenu li {
  border-bottom: #b1b1b1 solid 1px;
}
.sidemenu ul li a {
	display: block;
  line-height: 1.157;
  padding: 16px 16px 16px 8px;
  font-family: "Noto Serif JP";
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .04em;
  color: #2e2e2e;
  background: url(../images/common/menu_after.png) right 8px center no-repeat;
  background-size: 8px auto;
}

/* sidebanner */
.sidebanner {
  margin-top: 50px;
}
.sidebanner ul li + li {
  margin-top: 40px;
}

/*
  lowinfo
========================================================================== */
.lowinfo {
  /* margin-topの値は変更しないでください */
  margin-top: 20px;
  background-image: url("../images/common/lowinfo_bg.jpg");
  background-position: right bottom;
  background-size: cover;
  background-repeat: no-repeat;
  aspect-ratio: 800/460;
  padding: 50px 450px 0 40px;
  box-sizing: border-box;
}
.lowinfo .logo {
  display: block;
  width: 260px;
  margin: 0 auto;
}
.lowinfo .tel {
  padding-top: 15px;
  border-top: 1px solid #7b7b7b;
  margin: 16px 0;
  text-align: center;
}
.lowinfo .tel .txt {
  font-size: 18px;
  color: #2e2e2e;
  line-height: 1;
}
.lowinfo .tel .num {
  font-size: 33px;
  color: #2e2e2e;
  line-height: 1;
  font-weight: 500;
  margin-top: 10px;
}
.lowinfo .tel .num span {
  position: relative;
  padding-left: 28px;
  font-weight: 500;
}
.lowinfo .tel .num span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 22px;
  aspect-ratio: 22/25;
  background-image: url(../images/common/lowinfo_ico01.png);
  background-size: cover;
}
.lowinfo .btn {
  display: block;
  width: 260px;
  margin: 0 auto 14px;
}
.lowinfo .acs {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 40px;
  font-size: 16px;
  font-weight: 500;
  color: #182845;
}
.lowinfo .acs::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  width: 20px;
  aspect-ratio: 20/31;
  background-image: url(../images/common/lowinfo_ico02.png);
  background-size: cover;
}
.lowinfo .sta {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 40px;
  font-size: 16px;
  font-weight: 500;
  color: #182845;
  margin-top: 18px;
}
.lowinfo .sta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  width: 20px;
  aspect-ratio: 20/26;
  background-image: url(../images/common/lowinfo_ico03.png);
  background-size: cover;
}
/* .lowinfo .bus {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 40px;
  font-size: 16px;
  color: #343434;
}
.lowinfo .bus::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 12px;
  width: 21px;
  aspect-ratio: 21/11;
  background-image: url(../images/common/lowinfo_ico04.png);
  background-size: cover;
}
.lowinfo .prk {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 40px;
  font-size: 16px;
  color: #343434;
}
.lowinfo .prk::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 14px;
  width: 19px;
  aspect-ratio: 19/16;
  background-image: url(../images/common/lowinfo_ico05.png);
  background-size: cover;
} */

/*
  ページキャッチ・見出し・コラム
========================================================================== */
/* page-catch */
.page-catch {
  /* margin-bottomの値は変更しないでください */
  margin-top: 0;
  margin-right: 10px;
  margin-bottom: 40px;
  margin-left: 0;
  padding: 40px 20px 42px 30px;
  text-align: center;
  font-family: "Times New Roman", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  position: relative;
  border: 1px solid #62548f;
}

.page-catch::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #2e538e;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  pointer-events: none;
}

/* 見出し */
.ttl-low {
  /* margin-bottomの値は変更しないでください */
  margin-bottom: 15px;
  padding: 12px 10px 10px 50px;
  color: #fff;
  font-family: "Times New Roman", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: 0.1em;
  position: relative;
}
.ttl-low::before {
  content: "";
  position: absolute;
  left: 18px;
  bottom: 0;
  width: 6px;
  height: calc(100% - 6px);
  background-color: #fff;
}

.ttl-low1-1 {
  background: url("../images/common/ttl_low_bg.png") repeat top left/10px, var(--main-color);
}

.ttl-low1-2 {
  background: url("../images/common/ttl_low_bg.png") repeat top left/10px, var(--sub-color);
}

.ttl-low1-3 {
  background: url("../images/common/ttl_low_bg.png") repeat top left/10px, var(--link-color);
}

.ttl-low2 {
  /* margin-bottomの値は変更しないでください */
  margin-bottom: 15px;
  padding: 10px 0 8px 40px;
  font-family: "Times New Roman", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: 0.1em;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-left-width: 10px;
  border-left-style: solid;
  position: relative;
}
.ttl-low2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 3px;
  width: 3px;
  height: 100%;
}

.ttl-low2-1 {
  color: var(--main-color);
}
.ttl-low2-1::before {
  background-color: var(--main-color);
}

.ttl-low2-2 {
  color: var(--sub-color);
}
.ttl-low2-2::before {
  background-color: var(--sub-color);
}

.ttl-low2-3 {
  color: var(--link-color);
}
.ttl-low2-3::before {
  background-color: var(--link-color);
}

.ttl-low3 {
  /* margin-bottomの値は変更しないでください */
  margin-bottom: 10px;
  padding: 12px 1em 10px 1em;
  text-align: center;
  font-family: "Times New Roman", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: 0.1em;
  border-top-width: 1px;
  border-top-style: dashed;
  border-bottom-width: 1px;
  border-bottom-style: dashed;
}

.ttl-low3-1 {
  color: var(--main-color);
}

.ttl-low3-2 {
  color: var(--sub-color);
}

.ttl-low3-3 {
  color: var(--link-color);
}

.ttl-low4 {
  /* ↓変更しないでください */
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 10px;
  font-family: "Times New Roman", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.1em;
}

.ttl-low4 > span {
  /* ↓変更しないでください */
  margin: 2.5px 0;
  /* ↑変更しないでください */
}

.ttl-low4 > span:nth-of-type(n+2) {
  /* ↓変更しないでください */
  flex: 0 1 auto;
  width: auto;
  min-width: 0;
  /* ↑変更しないでください */
  padding: 3px 0 1px 0;
}

.ttl-low4 > span:nth-of-type(1) {
  /* ↓変更しないでください */
  flex: 0 1 auto;
  /* ↑変更しないでください */
  margin-right: 10px;
  padding: 3px 5px 1px 5px;
  width: auto;
  min-width: 0;
  color: #fff;
}

.ttl-low4-1 > span:nth-of-type(1) {
  background-color: var(--main-color);
}

.ttl-low4-2 > span:nth-of-type(1) {
  background-color: var(--sub-color);
}

.ttl-low4-3 > span:nth-of-type(1) {
  background-color: var(--link-color);
}

.ttl-low5 {
  /* margin-bottomの値は変更しないでください */
  margin-bottom: 15px;
  padding: 9px 1em 7px 1em;
  text-align: center;
  color: #fff;
  font-family: "Times New Roman", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: 0.1em;
  border-radius: 100px;
}

.ttl-low5-1 {
  background-color: var(--main-color);
}

.ttl-low5-2 {
  background-color: var(--sub-color);
}

.ttl-low5-3 {
  background-color: var(--link-color);
}

/* コラム */
.colunm {
  padding: 30px 30px 20px;
  background: #fdf5f2;
  border: 1px solid #e97a5a;
}

.colunm .ttl-btn {
  margin-bottom: 20px;
  padding: 7px 30px 5px 90px;
  text-align: center;
  color: #2e2e2e;
  font-family: "Times New Roman", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "YuMincho", "Yu Mincho", "游明朝体", "Noto Serif JP", serif;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: 0.05em;
  background: #e97a5a;
  position: relative;
}

.colunm .ttl-btn .colum {
  padding: 3px 24px;
  color: #e97a5a;
  font-family: "Times New Roman", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "YuMincho", "Yu Mincho", "游明朝体", "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: bold;
  background: #fff;
  border: 1px solid #e97a5a;
  position: absolute;
  top: -10px;
  left: -8px;
  transform: rotate(-20deg);
}

.colum::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent #e97a5a transparent;
  border-width: 0px 5px 10px 5px;
  transform: rotate(180deg);
  bottom: -10px;
  right: 40px;
}

.colum::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
  border-width: 0px 4.5px 9px 4.5px;
  transform: rotate(180deg);
  bottom: -6px;
  right: 41px;
}

.colunm + .colunm {
  border: 1px solid #d7ac50;
  background-color: #fbf8f1;
}

.colunm + .colunm .ttl-btn {
  background: #d7ac50;
}

.colunm + .colunm .ttl-btn .colum {
  color: #d7ac50;
  border: 1px solid #d7ac50;
}

.colunm + .colunm .colum::before {
  border-color: transparent transparent #d7ac50 transparent;
}