@charset "UTF-8";

:root {
  --color-01: #575147;
  --color-02: #887760;
  --color-03: #5d1510;
  --main-color: #575147;
  --sub-color: #887760;
  --link-color: #5d1510;
}

/* add font */
.sans {
  font-family: "Noto Sans JP", sans-serif;
}
.serif {
  font-family: "Noto Serif JP", serif;
}
.roboto_c {
  font-family: "Roboto Condensed", sans-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: 83%;
  color: #696969;
  margin: 0 0 0 2.6em;
  padding-top: 0.8em;
  line-height: 1;
}
.head_logo {
  position: absolute;
  width: 17.26em;
  top: 9.2em;
  left: 2.6em;
}
.head_logo img {
  aspect-ratio: 259 / 69;
}
.head_btn {
  position: absolute;
  top: 0;
  right: 0.6em;
  display: grid;
  grid-template-columns: auto auto;
  gap: 0.8em;
}
.head_btn p,
.head_btn a {
  display: grid;
  align-items: center;
  text-align: center;
  color: #fff;
  line-height: 1;
  height: 3em;
  background-repeat: no-repeat;
  background-position: 0 0;
  letter-spacing: 0.1em;
}
.head_btn p {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #5d1510;
  background-size: 1em auto;
  background-position: 1.2em 45%;
  background-image: url("../images/common/ico_tel_w.png");
  aspect-ratio: 220 / 45;
  padding-left: 1em;
}
.head_btn p span {
  font-size: 152.7%;
}
.head_btn a {
  position: relative;
  background-color: #5b544a;
  aspect-ratio: 150 / 45;
  text-align: center;
}
.head_btn a span {
  font-size: 116.6%;
}
.head_btn a::before {
  content: "";
  display: block;
  position: absolute;
  width: 0.53em ;
  aspect-ratio: 1 / 1;
  right: 0.2em;
  bottom: 0.2em;
  background-color: #fff;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

/*
  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 5.2em;
	position: relative;
  background-color: rgba(44,44,44,0.8);
}
.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: #ffffff;
}
.gnav li:first-child::before {
  left: 0;
  background-color: #ffffff;
}
.gnav li a {
  font-family: "Noto Sans JP", sans-serif;
	display: block;
	transition: 0.3s;
	padding: 0.5em 0;
  line-height: 1;
  letter-spacing: 0.08em;
  border-radius: 2em;
  color: #fff;
}

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

/*
  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: #f7f3ef;
}
.footer .logo {
  grid-column: 1 / 3;
  margin: 0 auto 3.2em;
  width: 30.93em;
  aspect-ratio: 464 / 156;
  display: grid;
  align-items: center;
  text-align: center;
  background-color: #ffffff;
}
.footer .logo img {
  width: 22.73em;
  aspect-ratio: 341 / 91;
}
.footer .f_ico {
  display: grid;
  grid-template-columns: 2.53em 1fr;
}
.footer .f_ico::before {
  content: "";
  display: block;
  width: 2.53em;
  aspect-ratio: 1 / 1;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
}
.footer_inr {
  padding: 0 7.6em 0 6em;
  display: grid;
  grid-template-columns: 25.86em 1fr;
  gap: 0 4.6em;
}
.footer .tel {
  gap: 0 1.4em;
  margin: 0 0 1.13em 1.4em;
}
.footer .tel::before {
  background-image: url("../images/common/foot_ico_tel.png");
}
.footer .tel span {
  font-size: 250%;
  line-height: 1;
  font-family: 'Times New Roman', Times, serif;
}
.footer .tel_notice{
  font-feature-settings: "palt";
	text-indent: -1em;
  margin-left: 5.5em;
  margin-top: -0.8em;
  margin-bottom: 0.7em;
	line-height: 1.4;
}
.footer .tel_notice span{
	font-size: 0.88em;
}
.footer .btn {
  margin: 0 0 1.4em;
}
.footer .addr {
  gap: 0 1em;
  margin: 0 0 1em 1.4em;
}
.footer .addr::before {
  background-image: url("../images/common/foot_ico_addr.png");
}
.footer .addr span {
  font-size: 111%;
  line-height: 1.5;
}
.footer .accs {
  gap: 0 1em;
  align-items: center;
  margin: 0 0 1.8em 1.4em;
}
.footer .accs::before {
  background-image: url("../images/common/foot_ico_accs.png");
}
.footer .accs span {
  font-size: 111%;
  line-height: 1.5;
}

/* --------------------------- timetable */
.footer .timetable table {
	border-collapse: collapse;
	line-height: 1;
  width: 100%;
}
.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;
}
.footer .timetable td {
	width: calc((100% - 33%) / 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.8em 0;
}
.footer .timetable tbody th {
  font-size: 97%;
}
.footer .timetable tbody td i {
  font-size: 69%;
}
.footer .timetable ul {
  margin: 0.5em 0 0;
  font-size: 97%;
}
/* --------------------------- nav */
.footer .nav {
  display: grid;
  grid-template-columns: 17em 15.73em 1fr;
  align-items: start;
  position: relative;
}
.footer .nav h3 {
  font-size: 111%;
  line-height: 1;
  margin-bottom: 1em;
}
.footer .nav div > a {
  display: block;
  line-height: 1;
  font-size: 88.8%;
  color: #2e2e2e;
  margin-bottom: 1em;
  transition: 0.3s;
}
.footer .nav div > a::before {
  content: "▶";
  display: inline-block;
  font-size: 67.5%;
  margin-right: 0.5em;
}
.footer .nav div > a:hover {
  opacity: 0.7;
}
.footer .nav div > a span {
  display: inline-block;
  border-bottom: 1px solid #2e2e2e;
  padding: 0 0 0.5em;
}
/* --------------------------- banner */
.footer .banner {
  margin-top: 1.4em;
  display: grid;
  gap: 1.2em 0;
}
/* --------------------------- humanity */
.footer .humanity {
  position: relative;
  z-index: 3;
  grid-column: 1 / 3;
  margin: -3em 3em 1.5em auto;
  text-align: right;
  width: fit-content;
}
.footer .humanity a {
  display: inline-block;
  width: 7.2em;
}
.footer .humanity img {
  aspect-ratio: 108 / 95;
}
/* --------------------------- copyright */
.footer .copyright {
  position: relative;
  z-index: 3;
  grid-column: 1 / 3;
  background-color: #52504f;
  color: #fff;
  text-align: center;
  padding: 1em 0;
  font-size: 93.3%;
  line-height: 1;
  letter-spacing: 0.06em;
}
/* --------------------------- pagetop */
.pagetop {
	width: 44px;
	position: fixed;
	bottom: 48px;
	right: 0;
	cursor: pointer;
	z-index: 9999;
}

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

/*
  sidemenu / sidebanner
========================================================================== */
/* sidemenu */
.sidemenu {
  position: relative;
}
.sidemenu::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  height: 100%;
  background-color: rgba(44,44,44,.4);
}
.sidemenu div {
  position: relative;
  padding: 36px 20px 40px;
  background-color: #fff;
}
.sidemenu .ttl {
  font-family: "Times New Roman", serif;
  font-size: 37px;
  color: #2e2e2e;
  line-height: 1;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}
.sidemenu .ttl::first-letter {
  font-size: 50px;
  color: #575147;
}
.sidemenu ul {
  border-top: 1px solid #b1b1b1;
}
.sidemenu ul li {
  border-bottom: 1px solid #b1b1b1;
}
.sidemenu ul li a {
  position: relative;
  font-size: 17px;
  color: #2e2e2e;
  line-height: 1.2;
  display: flex;
  align-items: center;
  padding: 0px 20px 0px 8px;
  height: 57px;
}
.sidemenu ul li a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent #52504f;
  border-width: 5px 0px 5px 8px;
}

/* sidebanner */
.sidebanner {
  margin-top: 50px;
}

.sidebanner ul li {
  margin-bottom: 20px;
}

/*
  counseling
========================================================================== */

/*
  lowinfo
========================================================================== */
.lowinfo {
  /* margin-topの値は変更しないでください */
  margin-top: 20px;
  padding: 25px 25px 0;
  background-position: right bottom;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../images/common/lowinfo_bg.jpg);
  box-sizing: border-box;
  color: #333;
  position: relative;
  aspect-ratio: 800 / 460;
}
.lowinfo * {
  box-sizing: border-box;
}
.lowinfo a, .lowinfo img {
  display: block;
}
.lowinfo .content {
  width: 362px;
  padding: 80px 0 0;
}
.lowinfo .logo {
  width: 233px;
  padding: 0 8px 18px;
  margin: 0 auto 18px;
  border-bottom: 1px solid #2e2e2e;
}
.lowinfo .logo img {
  aspect-ratio: 217 / 57;
}
.lowinfo .tel {
  margin: 0 auto 8px;
  text-align: center;
}
.lowinfo .tel span {
  display: block;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #4a4a4a;
}
.lowinfo .tel span:nth-of-type(1) {
  font-size: 16.65px;
  padding-left: 27px;
}
.lowinfo .tel span:nth-of-type(2) {
  position: relative;
  font-size: 29.11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  width: fit-content;
  margin: 0 auto;
  padding: 5px 0 10px 30px;
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: 24px auto;
  background-image: url("../images/common/lowinfo_ico_tel.png");
}
.lowinfo .btn {
  width: 278px;
  margin: 0 auto 27px;
}
.lowinfo .btn a {
  display: block;
}
.lowinfo .btn a img {
  aspect-ratio: 278 / 50;
}
.lowinfo .addr,
.lowinfo .accs {
  min-height: 30px;
  font-size: 14px;
  color: #2e2e2e;
  padding-left: 30px;
  margin: 0 0 0 40px;
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: 18px auto;
}
.lowinfo .addr {
  background-image: url("../images/common/lowinfo_ico_location.png");
  margin-bottom: 15px;
}
.lowinfo .accs {
  padding-top: 5px;
  background-image: url("../images/common/lowinfo_ico_train.png");
}


/*
  ページキャッチ・見出し・コラム
========================================================================== */
/* page-catch */
.page-catch {
  /* margin-bottomは固定値 */
  margin-top: 0;
  margin-right: 10px;
  margin-bottom: 40px;
  margin-left: 0;
  padding: 52px 30px 57px;
  text-align: center;
  font-family: 'Noto Serif JP', 'Times New Roman', 'YuMincho', 'Yu Mincho', '游明朝体', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', serif;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  position: relative;
  border: 1px solid #e7d8c5;
  color: #282828;
}
.page-catch::after {
  position: absolute;
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #e7d8c5;
  top: 10px;
  left: 10px;
  z-index: -1;
  pointer-events: none;
}
.page-catch h2 {
  font-size: 24px;
  margin-bottom: 1em;
}
.page-catch p:not(:last-child) {
  margin-bottom: 1.5em;
}

/* 見出し */
.ttl-low {
  /* margin-bottomの値は変更しないでください */
  margin-bottom: 15px;
  padding: 10px 80px 10px 48px;
  font-family: 'Noto Serif JP', 'Times New Roman', 'YuMincho', 'Yu Mincho', '游明朝体', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', serif;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: 0;
  color: #fff;
  position: relative;
  background-repeat: repeat-y;
  background-position: 0 0;
  background-size: 100% auto;
}
.ttl-low::before {
  content: "";
  display: block;
  position: absolute;
  width: 6px;
  height: 80%;
  bottom: 0;
  left: 17px;
  background-color: #fff;
}
.ttl-low1-1 {
  background-image: url("../images/common/ttl-low1_01.png");
}
.ttl-low1-2 {
  color: #5b544a;
  background-image: url("../images/common/ttl-low1_02.png");
}
.ttl-low1-3 {
  background-image: url("../images/common/ttl-low1_03.png");
}

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

.ttl-low2-1 {
  color: var(--color-01);
  border-color: var(--color-01);
}
.ttl-low2-2 {
  color: var(--color-02);
  border-color: var(--color-02);
}
.ttl-low2-3 {
  color: var(--color-03);
  border-color: var(--color-03);
}

.ttl-low3 {
  /* margin-bottomの値は変更しないでください */
  margin-bottom: 10px;
  padding: 10px 45px;
  font-family: 'Noto Serif JP', 'Times New Roman', 'YuMincho', 'Yu Mincho', '游明朝体', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', serif;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: 0.08em;
  border-top-width: 1px;
  border-top-style: dashed;
  border-bottom-width: 1px;
  border-bottom-style: dashed;
}
.ttl-low3-1 {
  color: var(--color-01);
  border-color: var(--color-01);
}
.ttl-low3-2 {
  color: var(--color-02);
  border-color: var(--color-02);
}
.ttl-low3-3 {
  color: var(--color-03);
  border-color: var(--color-03);
}

.ttl-low4 {
  /* ↓変更しないでください */
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 10px;
  font-family: 'Noto Serif JP', 'Times New Roman', 'YuMincho', 'Yu Mincho', '游明朝体', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', 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 4px 10px;
  width: auto;
  min-width: 0;
  color: #fff;
}
.ttl-low4-1 > span:nth-of-type(1) {
  background-color: var(--color-01);
}
.ttl-low4-2 > span:nth-of-type(1) {
  background-color: var(--color-02);
}
.ttl-low4-3 > span:nth-of-type(1) {
  background-color: var(--color-03);
}

.ttl-low5 {
  /* margin-bottomの値は変更しないでください */
  margin-bottom: 10px;
  padding: 10px 100px 10px 50px;
  font-family: 'Noto Serif JP', 'Times New Roman', 'YuMincho', 'Yu Mincho', '游明朝体', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', serif;
  font-size: 18px;
  line-height: 1.3;
  border-radius: 100px;
  color: #fff;
}
.ttl-low5-1 {
  background-color: var(--color-01);
}
.ttl-low5-2 {
  background-color: var(--color-02);
}
.ttl-low5-3 {
  background-color: var(--color-03);
}



/* コラム */
.colunm {
  padding: 30px 30px 20px;
  background: #f7faff;
  border: 1px solid #022358;
}
.colunm .ttl-btn {
  margin-bottom: 10px;
  padding: 10px 30px 8px 90px;
  text-align: center;
  color: #fff;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: 0.05em;
  background: #022358;
  position: relative;
}
.colunm .ttl-btn .colum {
  padding: 3px 16px;
  color: #022358;
  font-size: 16.5px;
  background: #fff;
  filter: drop-shadow(0 0 1px #022358);
  position: absolute;
  top: -2px;
  left: -14px;
  transform: rotate(-20deg);
}
.colunm .ttl-btn .colum::before {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  aspect-ratio: 1 / 1;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: #fff;
  bottom: -9px;
  right: 10px;
}

.colunm + .colunm {
  background-color: #fafffe;
  border-color: #155f52;
}
.colunm + .colunm .ttl-btn {
  background: #155f52;
}
.colunm + .colunm .ttl-btn .colum {
  color: #155f52;
  filter: drop-shadow(0 0 1px #155f52);
}
