@charset "UTF-8";

:root {
  --main-color: #219ebc;
  --sub-color: #3ebad1;
  --link-color: #faa450;
}

/*========================================================================== */
/*
  01. header
========================================================================== */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  padding: 0 max(1.143vw,14px) 0 max(3.571vw,46px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}
.header * {
  box-sizing: border-box;
}
.header a, .header img {
  display: block;
}
.header h1 {
  font-size: max(0.786vw,10px);
  color: #2e2e2e;
  line-height: 1;
}
.header .btns {
  display: flex;
  gap: max(0.714vw,9px);
}
.header .btns .btn {
  width:max(15vw,195px);
  height:max(4.571vw,59px);
  text-align:center;
  font-size: max(1.429vw,18px);
  color: #fff;
  padding-left:20px;
  background-image:url("../images/top/head_web_btn.png");
  background-repeat:repeat;
  opacity:0.9;
  position:relative;
}

.header .btns .btn:hover {
  opacity:0.7;
}

.header .btns .btn.mail {
  width:max(15vw,195px);
  height:max(4.571vw,59px);
  background-image:url("../images/top/head_mail_btn.png");
}

.header .btns .btn:before {
	position:absolute;
    left: max(2.357vw,30px);
    top: max(2.286vw,29px);
    content: "";
    background-image: url(../images/top/head_pc.png);
    background-size: cover;
    width: max(1.786vw,23px);
    height: max(1.571vw,20px);
}

.header .btns .btn.mail:before {
    left: max(2.357vw,30px);
    top: max(2.286vw,29px);
    content: "";
    background-image: url(../images/top/head_mail.png);
    background-size: cover;
    width: max(1.571vw,20px);
	height: max(1.143vw,14px);
}


.header .btns .btn:after {
	position:absolute;
    right: max(0.714vw,9px);
    top: max(1.786vw,23px);
    content: "";
    background-image: url("../images/top/head_btn_arrow.png");
    background-size: 100% 100%;
    width: max(1.071vw,13px);
	height: max(1.071vw,13px);
}


.header .btns .btn p {
	font-size:max(1vw,13px);
	margin-top:max(0.357vw,4px);
	margin-left:min(-1.429vw,-19px);
	letter-spacing:0.1em;
}

.header .btns .btn.mail {
  background-color: rgba(47, 174, 211, 0.7);
}

.l_header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.l_header * {
  box-sizing: border-box;
}
.l_header a, .l_header img {
  display: block;
}
.l_header .box {
  padding: max(1.143vw,14px) 0 0 max(1.857vw,24px);
}
.l_header h1 {
  font-size: max(0.857vw,11px);
  color: #2c2c2c;
}
.l_header .logo {
  width: max(11.714vw,152px);
  margin: max(5vw,65px) 0 0 max(1.429vw,18px);
}
.l_header .btns {
  display: flex;
  gap: max(0.143vw,1px);
}
.l_header .btn {
  width: max(7.643vw,99px);
}
.l_header .btn.tel {
  width: max(16.857vw,219px);
  position: relative;
}
.l_header .btn.tel span {
  position: absolute;
  top: 10%;
  left: 20%;
  font-size: max(1.786vw,23px);
  color: #2e2e2e;
  letter-spacing: 1px;
}

/*
  02. gnav
========================================================================== */
.gnav {
  padding: max(1.429vw,18px) 0;
  background-color: #efefef;
}
.gnav * {
  box-sizing: border-box;
}
.gnav a, .gnav span, .gnav img {
  display: block;
}
.gnav > ul {
  display: flex;
  justify-content: center;
  width: max(91.42vw,1188px);
  margin: auto;
}
.gnav > ul > li{
	width: 100%;
}
.gnav > ul > li > * {
  font-size: max(1.071vw,13px);
  color: #333;
  line-height: 1;
  display: block;
  padding: max(0.643vw,8px) 0;
  position: relative;
  text-align: center;
}
.gnav > ul > li > *::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: max(2.357vw,30px);
  background-color: #333;
}
.gnav > ul > li:last-child > *::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: max(2.429vw,31px);
  background-color: #2e2e2e;
}

.gnav > ul > li.submenu{
	position: relative;
}

.gnav > ul > li.submenu > span{
	cursor: pointer;
}

.gnav > ul > li.submenu > div{
	display: none;
	position: absolute;
	left: 0;
	bottom:0;
	transform: translateY(100%);
	background-color: #efefef;
	padding: 15px;
	width: 710px;
	z-index: 1;
}
.gnav > ul > li.submenu:hover > div{
	display: block;
}
.gnav > ul > li.submenu > div .ttl{
	display: none;
}
.gnav > ul > li.submenu > div .block{
	padding: 30px 20px 20px;
}
.gnav > ul > li.submenu .sidemenu{
	background-color: #fff;
}
.gnav > ul > li.submenu .sidemenu .label{
	width: 10.5em;
}
.gnav > ul > li.submenu .sidemenu ul{
	display: flex;
	flex-wrap: wrap;
}
.gnav > ul > li.submenu .sidemenu ul + p.label{
	margin-top: 1.2em;
}
.gnav > ul > li.submenu .sidemenu ul li{
	border-bottom:none;
	text-align: left;
	padding-right: 2em;
}
.gnav > ul > li.submenu .sidemenu ul li a{
	text-align: left;
}
.gnav > ul > li.submenu .sidemenu ul li a:before{
	content:"・";
}
/* 
  03. footer
========================================================================== */
.footer {
  position: relative;
  padding: max(13.571vw,176px) max(6.429vw,83px) max(3.357vw,43px);
  background-image: url(../images/top/footer_bg.jpg);
  background-size: cover;
  box-sizing: border-box;
}
.footer * {
  box-sizing: border-box;
}
.footer a, .footer img {
  display: block;
}
.footer .logo {
  position: absolute;
  top: min(-11.857vw,-155px);
  left: 50%;
  transform: translateX(-50%);
  width: max(24.143vw,313px);
  margin: 0 auto;
}
.footer .tel p {
  text-align: center;
  color: #fff;
  line-height: 1;
}
.footer .tel p:first-child {
  font-size: max(1.143vw,14px);
}
.footer .tel p:last-child {
  margin-top: max(0.857vw,11px);
  font-size: max(2.714vw,35px);
}
.footer .tel p:last-child span {
  padding-left: max(2.429vw,31px);
  position: relative;
  display: inline-block;
}
.footer .tel p:last-child span::before {
  content: "";
  position: absolute;
  top: 22%;
  left: 0;
  width: max(1.786vw,23px);
  height: max(2vw,26px);
  background-image: url(../images/top/footer_icon_tel.png);
  background-size: cover;
}
.footer .btns {
  margin-top: max(1vw,13px);
  display: flex;
  justify-content: center;
  gap: max(0.714vw,9px);
}
.footer .btns .btn {
  width:max(17.857vw,232px);
  height:max(4.571vw,59px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: max(1.429vw,18px);
  color: #ffffff;
  background-image:url("../images/top/footer_btn_bg.png");
  background-repeat: repeat;
  
}
.footer .inr {
  margin-top: max(5.714vw,74px);
  display: flex;
  justify-content: space-between;
}
.footer .address {
  font-size: max(1.143vw,14px);
  color: #fff;
}
.footer .ps {
  margin-top: max(1.857vw,24px);
  font-size: max(1.286vw,16px);
  color: #fff0ab;
}
.footer .ps .icon {
  padding-left: max(1.786vw,23px);
  position: relative;
}

.footer .ps .icon .txt1 {
	font-size:max(0.857vw,11px);
}

.footer .ps .icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: max(1.571vw,20px);
  height: max(1.571vw,20px);
  background-size: cover;
}
.footer .ps .icon.train::before {
  background-image: url(../images/top/footer_icon_train.png);
}
.footer .ps .icon.car::before {
  background-image: url(../images/top/footer_icon_car.png);
}
.footer .timetable {
  width: max(31vw,403px);
  margin-top: max(2.143vw,27px);
}
.footer .timetable table {
  width: 100%;
  margin: 0 auto;
}
.footer .timetable table, .footer .timetable td, .footer .timetable th {
  border-collapse: collapse;
  text-align: center;
  color: #fff;
  line-height: 1;
}
.footer .timetable thead {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.footer .timetable thead th, .footer .timetable thead td {
  font-size: max(1.143vw,14px);
}
.footer .timetable tbody {
  border-bottom: 1px solid #fff;
}
.footer .timetable tbody th {
  font-size: max(1.143vw,14px);
}
.footer .timetable tbody th span {
  font-size: max(0.571vw,7px);
  vertical-align: middle;
}
.footer .timetable tbody td {
  font-size: max(1.143vw,14px);
}
.footer .timetable tbody tr:not(:first-child) {
  border-top: 1px solid #fff;
}
.footer .timetable tr {
  display: flex;
}
.footer .timetable th, .footer .timetable td {
  padding: max(0.786vw,10px) 0;
}
.footer .timetable th {
  width: max(9.571vw,124px);
}
.footer .timetable td {
  width: calc((100% - 9.571vw) / 8);
}
.footer .timetable .note {
  margin: max(0.357vw,4px) 0 0;
  font-size: max(1vw,13px);
  color: #fff;
}
.footer nav {
  display: flex;
  gap: max(2.286vw,29px);
}
.footer nav ul li:not(:first-child) {
  margin-top: max(1vw,13px);
}
.footer nav ul li a {
  font-size: max(1vw,13px);
  color: #fff;
  line-height: 1;
}
.footer .copy {
  margin-top: max(4.571vw,59px);
  font-size: max(1.143vw,14px);
  text-align: center;
  color: #fff;
  line-height: 1;
}
.footer.low_f {
  margin-top: max(17.857vw,232px);
}

.mainPhoto {
  position: relative;
  margin: 0 auto;
  width: 100%;
}
.mainPhoto .logo {
  position: absolute;
  top: max(7.429vw,96px);
  left: max(3.143vw,40px);
  width: max(14.286vw,185px);
}
.mainPhoto .tel {
  position: absolute;
  right: 0;
  bottom: max(4.571vw,59px);
  padding: max(0.714vw,9px) max(1.429vw,18px);
  background-color: rgba(49, 135, 190,0.8);
}
.mainPhoto .tel p {
  color: #fff;
  text-align: center;
  font-family: "Noto Sans JP", serif;
  line-height: 1;
  letter-spacing: max(0.143vw,1px);
}
.mainPhoto .tel p:first-child {
  font-size: max(1.143vw,14px);
  padding-bottom: max(0.571vw,7px);
  margin-bottom: max(0.571vw,7px);
  border-bottom: 1px solid #fff;
}
.mainPhoto .tel p:last-child {
  font-size: max(2vw,26px);
  line-height: 1;
}
.mainPhoto .tel p:last-child span {
  position: relative;
  padding-left: max(2.143vw,27px);
}
.mainPhoto .tel p:last-child span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: max(1.214vw,15px);
  height: max(1.571vw,20px);
  background-image: url(../images/common/low_kv_ico01.png);
  background-size: cover;
}

/*
  05. menu
========================================================================== */
.sidemenu * {
  box-sizing: border-box;
}
.sidemenu .ttl {
  width: 128px;
  margin: 0 auto;
}
.sidemenu .block {
  position: relative;
  margin-top: 50px;
  padding: 46px 26px 5px;
  border: 1px solid #363636;
}
.sidemenu .block::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 68px;
  background-color: #363636;
}
.sidemenu .label {
  width: 100%;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e5eef1;
  font-size: 16px;
  color: #242424;
}
.sidemenu ul {
  margin-top: 16px;
  padding: 17px 25px 30px;
  border: 1px solid #363636;
}
.sidemenu ul li {
  border-bottom: 1px dashed #242424;
}
.sidemenu ul li a {
  display: block;
  font-size: 16px;
  color: #2e2e2e;
  text-align: center;
  padding: 13px 0;
}

/* sidebanner */
.sidebanner {
  margin-top: 60px;
}
.sidebanner li:not(:first-child) {
  margin-top: 15px;
}

/*
  06. counseling (low only)
========================================================================== */
.counseling {
  margin-top: 80px;
}

.lowinfo {
  /* margin-topは固定値 */
  margin-top: 20px;
  padding: 20px 480px 0 34px;
  background-image: url("../images/common/lowinfo_bg.jpg");
  background-position: right bottom;
  background-size: cover;
  background-repeat: no-repeat;
  aspect-ratio: 800/464;
  box-sizing: border-box;
}
.lowinfo a, .lowinfo img {
  display: block;
}
.lowinfo .logo {
  width: 266px;
}
.lowinfo .tel {
  margin-top: 25px;
  font-family: "Noto Sans JP", serif;
}
.lowinfo .tel p {
  color: #2e2e2e;
  text-align: center;
  font-size: 16px;
  line-height: 1;
  padding-bottom: 4px;
  border-bottom: 2px solid #80c4ca;
}
.lowinfo .tel a {
  font-size: 34px;
  color: #2e2e2e;
  letter-spacing: 1px;
  line-height: 1;
  text-align: center;
  margin-top: 5px;
}
.lowinfo .tel a span {
  padding-left: 34px;
  position: relative;
  display: inline-block;
}
.lowinfo .tel a span::before {
  content: "";
  position: absolute;
  top: 58%;
  transform: translateY(-50%);
  left: 0;
  width: 23px;
  height: 26px;
  background-image: url(../images/common/lowinfo_icon_tel.png);
  background-size: cover;
}
.lowinfo .btns {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
}
.lowinfo .btns .btn {
  width: 140px;
}
.lowinfo .acs {
  margin-top: 15px;
}
.lowinfo .acs p {
  font-size: 16px;
  color: #2e2e2e;
}
.lowinfo .acs p:first-child {
  text-align: center;
  line-height: 1;
  padding-bottom: 4px;
  border-bottom: 2px solid #80c4ca;
}
.lowinfo .acs p:last-child {
  margin-top: 5px;
}
.lowinfo .pa {
  margin-top: 10px;
  padding: 12px;
  background-color: rgba(255, 255, 255,0.7);
}
.lowinfo .pa p {
  font-size: 15px;
  color: #2e2e2e;
  padding-left: 25px;
  position: relative;
}
.lowinfo .pa p + p {
  margin-top: 10px;
}
.lowinfo .pa p::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background-size: cover;
}
.lowinfo .pa p span {
  font-size: 12x;
}
.lowinfo .pa p:first-child::before {
  background-image: url(../images/common/lowinfo_icon_train.png);
}
.lowinfo .pa p:last-child::before {
  background-image: url(../images/common/lowinfo_icon_car.png);
}


/* 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: "Noto Serif JP", serif;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  border: 1px solid #005082;
  position: relative;
}

.page-catch::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../images/common/page-catch_bg.jpg);
  background-size: 4px 4px;
  background-repeat: repeat;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: -1;
  pointer-events: none;
}

.page-catch .item + .item {
  margin-top: 20px;
}

.page-catch .item + .case-records-wrap,
.page-catch .case-records-wrap + .case-records-wrap {
  margin-top: 30px;
}

.page-catch h2 {
  font-size: 28px;
}

.page-catch .pagecatch-ttl {
  display: inline-block;
  padding: 10px 20px 8px;
  color: #fff;
  background-color: var(--main-color);
  border-radius: 4px;
}

.page-catch .img-lst {
  margin-right: auto;
  margin-left: auto;
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 0 10px;
}

.page-catch .img-lst li {
  flex: 1 0 0;
}

.page-catch .case-txt {
  letter-spacing: 0;
}

.page-catch .video {
  margin-right: auto;
  margin-left: auto;
  width: 90%;
  aspect-ratio: 16 / 9;
}

.page-catch .video iframe {
  display: block;
  width: 100%;
  height: 100%;
}

/* 見出し */
.ttl-low {
  /* margin-bottomは固定値 */
  margin-bottom: 15px;
  padding: 12px 10px 12px 52px;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: 0.1em;
  color: #fff;
  background-image: url(../images/common/ttl-low1_icon.png);
  background-size: 24px 30px;
  background-repeat: no-repeat;
  background-position: top 9px left 9px;
}

.ttl-low1-1 {
  background-color: #219ebc;
}

.ttl-low1-2 {
  background-color: #3ebad1;
}

.ttl-low1-3 {
  background-color: #faa450;
}

.ttl-low2 {
  /* margin-bottomは固定値 */
  margin-bottom: 15px;
  padding: 6px 0 6px 24px;
  font-family: "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;
  top: 0;
  left: 3px;
  width: 3px;
  height: 100%;
}

.ttl-low2-1 {
  color: #219ebc;
  border-bottom-color: #219ebc;
  border-left-color: #219ebc;
}

.ttl-low2-2 {
  color: #3ebad1;
  border-bottom-color: #3ebad1;
  border-left-color: #3ebad1;
}

.ttl-low2-3 {
  color: #faa450;
  border-bottom-color: #faa450;
  border-left-color: #faa450;
}

.ttl-low2-1::before {
  background-color: #219ebc;
}

.ttl-low2-2::before {
  background-color: #3ebad1;
}

.ttl-low2-3::before {
  background-color: #faa450;
}

.ttl-low3 {
  /* margin-bottomは固定値 */
  margin-bottom: 10px;
  padding: 12px 1em 10px 1em;
  text-align: center;
  font-family: "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: #219ebc;
  border-top-color: #219ebc;
  border-bottom-color: #219ebc;
}

.ttl-low3-2 {
  color: #3ebad1;
  border-top-color: #3ebad1;
  border-bottom-color: #3ebad1;
}

.ttl-low3-3 {
  color: #faa450;
  border-top-color: #faa450;
  border-bottom-color: #faa450;
}

.ttl-low4 {
  /* margin-bottomは固定値 */
  margin-bottom: 10px;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.1em;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.ttl-low4 > span {
  margin: 2.5px 0;
}

.ttl-low4 > span:last-of-type {
  padding: 3px 0 1px 0;
  width: auto;
  min-width: 0;
  flex: 0 1 auto;
}

.ttl-low4 > span:first-of-type {
  margin-right: 10px;
  padding: 3px 5px 1px 5px;
  width: auto;
  min-width: 0;
  color: #fff;
  flex: 0 1 auto;
  white-space: nowrap;
}

.ttl-low4-1 > span:first-of-type {
  background-color: #219ebc;
}

.ttl-low4-2 > span:first-of-type {
  background-color: #3ebad1;
}

.ttl-low4-3 > span:first-of-type {
  background-color: #faa450;
}

.ttl-low5 {
  /* margin-bottomは固定値 */
  margin-bottom: 15px;
  padding: 9px 2.2222em 7px 2.2222em;
  text-align: center;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: 0.1em;
  border-radius: 100px;
}

.ttl-low5-1 {
  background-color: #219ebc;
}

.ttl-low5-2 {
  background-color: #3ebad1;
}

.ttl-low5-3 {
  background-color: #faa450;
}

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

.colunm .ttl-btn {
  margin-bottom: 20px;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: 0.05em;
  position: relative;
  display: flex;
}

.colunm .ttl-btn .colum {
  padding: 9px 18px;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  background: #33abb6;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: skew(-15deg);
}

.colunm .ttl-btn .colum p {
  transform: skew(15deg);
}

.colunm .ttl-btn .ttl {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 3px 30px;
  background-color: #80c4ca;
  transform: skew(-15deg);
}

.colunm .ttl-btn .ttl p {
  transform: skew(15deg);
}

.colunm + .colunm {
  background: #f6fcfd;
  border: 1px solid #a7dae1;
}

.colunm + .colunm .ttl-btn .colum {
  background: #59bcd3;
}

.colunm + .colunm .ttl-btn .ttl {
  color: #2e2e2e;
  background-color: #bee6ee;
}

.colunm + .colunm + .colunm {
  background: #fffbf8;
  border: 1px solid #fcd3ac;
}

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

.colunm + .colunm + .colunm .ttl-btn .ttl {
  color: #2e2e2e;
  background-color: #fddab8;
}