/* A modern CSS reset */
*,*::before,*::after{box-sizing:border-box}body,h1,h2,h3,h4,p,figure,blockquote,dl,dd{margin:0}ul[role="list"],ol[role="list"]{list-style:none}html:focus-within{scroll-behavior:smooth}body{min-height:100vh;text-rendering:optimizeSpeed;line-height:1.5}a:not([class]){text-decoration-skip-ink:auto}img,picture{max-width:100%}picture{display:block}input,button,textarea,select{font:inherit}@media(prefers-reduced-motion:reduce){html:focus-within{scroll-behavior:auto}*,*::before,*::after{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important}}

:root {
  --hd-pch: 200px;
  --hd-pcsh: 80px;
  --hd-sph: 114px;
  --hd-spsh: 90px;
  --color-primary: #5b5959;
  --link-blue: #0071bb;
  --bg-gray: #f0f0f0;
  --red: #e40012;
  --cyan: #00acb9;
}

html {
  scroll-behavior: smooth;
  font-size: 15px;
  font-size: 4vw;
  font-size: min(4vw, 16px);
}
@media print,screen and (min-width:780px) {
  html {
    scroll-padding-top: var(--hd-pcsh);
    font-size: 16px;
  }
}

body {
  font-size: 1rem;
  line-height: 1.75;
	background-color: #fff;
	-webkit-text-size-adjust: 100%;
	font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: var(--color-primary);
  text-align: center;
}

a {
  color: var(--link-blue);
}
@media (hover:hover) {
  a:hover {
    text-decoration: none;
  }
}

img {
  vertical-align: bottom;
}
img[src$="svg"] {
  width: 100%;
  display: block;
}

/* header & gnav */
.l-header {
  position: fixed;
  display: flex;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 1000;
}
.l-header .site-id .logo {
  display: flex;
}
.l-header .site-id .logo .mark {
  width: 28.417%;
}
.l-header .site-id .logo .main {
  width: 71.583%;
}
.l-gnav .gnav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 1.2;
}
.l-gnav .gnav-list a {
  display: block;
  color: #000;
  text-decoration: none;
}
@media print,screen and (min-width:780px) {
  .l-header {
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-end;
    height: var(--hd-pch);
    transition: height .3s ease-in-out, padding .3s ease-in-out;
  }
  .l-header .site-id {
    width: 100%;
  }
  .l-header .site-id .logo {
    width: 278px;
    margin: 0 auto;
  }
  .l-header .menu {
    display: none;
  }
  .l-gnav {
    display: flex;
    align-items: center;
    margin: 1rem 0;
  }
  .l-gnav .gnav-list {
    display: flex;
    flex-wrap: wrap;
    max-width: 596px;
    margin-left: auto;
  }
  .l-gnav .gnav-list > li {
    padding: 0 1rem;
    margin: .25rem 0;
    border-right: 1px solid #000;
  }
  .l-gnav .gnav-list > li:last-of-type {
    border-right: none;
  }
  .l-header_contact {
    display: flex;
    font-weight: 700;
    margin-left: auto;
    max-width: 364px;
  }
  .l-header_contact .col {
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    padding: .5rem 1rem;
    background-color: var(--cyan);
    white-space: nowrap;
  }
  .l-header_contact .col.tel {
    font-size: 1.125rem;
    border-radius: .5rem 0 0 .5rem;
  }
  .l-header_contact .col.map {
    font-size: 1rem;
  }
  .l-header_contact .col.map::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: .5rem;
    width: 1px;
    height: calc(100% - 1rem);
    background-color: #fff;
  }
  .l-header_contact .icon {
    display: block;
    width: 1rem;
    margin-right: .5rem;
  }
  body.is-hd-short .l-header {
    padding-top: 0;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: var(--hd-pcsh);
  }
  body.is-hd-short .l-header .site-id {
    width: auto;
    margin-bottom: 0;
  }
  body.is-hd-short .l-header .site-id .logo {
    width: 58px;
    margin: 0 auto 0 40px;
  }
  body.is-hd-short .l-header .site-id .logo .mark {
    width: 100%;
  }
  body.is-hd-short .l-header .site-id .logo .main {
    display: none;
  }
  body.is-hd-short .l-gnav {
    margin: 0;
    width: calc(100% - 60px);
  }
  body.is-hd-short .l-gnav .gnav-list {
    margin-left: 0;
    max-width: calc(100% - 364px);
  }
}
@media print,screen and (min-width:960px) {
  body.is-hd-short .l-header .site-id .logo {
    width: 205px;
  }
  body.is-hd-short .l-header .site-id .logo .mark {
    width: 28.417%;
  }
  body.is-hd-short .l-header .site-id .logo .main {
    display: block;
  }
  body.is-hd-short .l-gnav {
    width: calc(100% - 260px);
  }
}
@media screen and (max-width:779.98px) {
  .l-header {
    justify-content: space-between;
    align-items: flex-end;
    height: var(--hd-sph);
    padding-bottom: 1.16rem;
    transition: height .3s ease-in-out, transform .3s ease-in-out, background-color .3s ease-in-out;
  }
  body.is-hd-short .l-header {
    height: var(--hd-spsh);
  }
  body.is-hd-down .l-header {
    transform: translateY(-100%);
  }
  body.is-menu-active .l-header,
  body.is-hd-down.is-menu-active .l-header {
    height: var(--hd-spsh);
    background-color: #848484;
    transform: translateY(0);
  }
  .l-header .site-id {
    width: 213px;
    margin: 0 0 0 7.46%;
  }
  .l-header .site-id .logo .main {
    transition: filter .3s ease-in-out;
  }
  body.is-menu-active .l-header .site-id .logo .main {
    filter: brightness(15);
  }
  .l-header .menu {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 63px;
    height: 55px;
    padding-top: 10px;
    padding-right: 8px;
    cursor: pointer;
    background-color: #646464;
    color: #fff;
    text-align: center;
    font-size: 10px;
    line-height: 1;
  }
  .l-header .menu .btn {
    display: block;
    position: relative;
    width: 30px;
    height: 22px;
    margin-bottom: 5px;
  }
  .l-header .menu .btn::before,
  .l-header .menu .btn::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all .3s ease-in-out;
  }
  .l-header .menu .btn::before {
    top: 0;
  }
  .l-header .menu .btn::after {
    bottom: 0;
  }
  .l-header .menu .btn i {
    display: block;
    position: absolute;
    left: 0;
    top: calc(50% - 1px);
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: oapcity .3s ease-in-out;
  }
  body.is-menu-active .l-header .menu .btn::before {
    top: calc(50% - 1px);
    transform: rotate(135deg);
  }
  body.is-menu-active .l-header .menu .btn::after {
    bottom: calc(50% - 1px);
    transform: rotate(-135deg);
  }
  body.is-menu-active .l-header .menu .btn i {
    opacity: 0;
  }
  .l-gnav {
    position: fixed;
    left: 0;
    top: 90px;
    width: 100%;
    height: calc(100dvh - 90px);
    background-color: #848484;
    overflow-y: auto;
    padding-top: 20px;
    padding-bottom: 60px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease-in-out, visibility .3s ease-in-out;
  }
  body.is-menu-active .l-gnav {
    visibility: visible;
    opacity: 1;
  }
  .l-gnav .gnav-list {
    text-align: center;
    width: 79.33%;
    margin: 0 auto;
    border-top: 1px solid #fff;
  }
  .l-gnav .gnav-list > li {
    border-bottom: 1px solid #fff;
  }
  .l-gnav .gnav-list a {
    padding: .75em 0;
    color: #fff;
    font-size: 1.33rem;
  }
  .l-header_contact {
    display: none;
  }
}
@media (hover:hover) {
  .l-gnav .gnav-list a:hover,
  .l-header_contact a:hover {
    text-decoration: underline;
  }
}

/* main */
.l-main {
  padding-top: var(--hd-sph);
}
.l-main.l-main-gray {
  padding-bottom: 6%;
  background-color: #f0f0f0;
}
.l-main.l-main-gray::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: var(--hd-sph);
  background-color: #fff;
}
@media print,screen and (min-width:780px) {
  .l-main {
    padding-top: var(--hd-pch);
  }
  .l-main.l-main-gray {
    padding-bottom: 3.25rem;
  }
  .l-main.l-main-gray::before {
    height: var(--hd-pch);
  }
}

/* footer */
.l-footer {
  width: 89%;
  max-width: 900px;
  margin: 3.67rem auto 0;
  padding-bottom: 60px;
  color: #000;
}
.l-footer .cooperation {
  border-top: 1px solid #666;
  border-bottom: 1px solid #666;
  color: #000;
  line-height: 1.9;
  padding: .75em 0;
  margin-bottom: 3rem;
  font-size: 1.13rem;
}
.l-footer .cooperation a {
  color: #000;
}
.l-footer .logo {
  width: 44.2%;
  margin: 0 auto 1rem;
}
.l-footer .copyright {
  font-size: .8rem;
  font-weight: 200;
}

@media print,screen and (min-width:780px) {
  .l-footer {
    margin: 2.5rem auto 0;
    padding-bottom: 1rem;
  }
  .l-footer .cooperation {
    margin-bottom: 2rem;
    font-size: 1.25rem;
  }
  .l-footer .logo {
    max-width: 200px;
  }
  .l-footer .copyright {
    font-size: .9375rem;
  }
}

/* fixed btns */
.l-fixed_btns {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  font-weight: 700;
  z-index: 1100;
}
.l-fixed_btns .col {
  position: relative;
  display: flex;
  width: 50%;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  height: 52px;
  background-color: var(--cyan);
  white-space: nowrap;
}
.l-fixed_btns .col.tel {
  font-size: 19px;
  border-radius: 8px 0 0 0;
}
.l-fixed_btns .col.map {
  font-size: 16px;
  border-radius: 0 8px 0 0;
}
.l-fixed_btns .col.map::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: .5rem;
  width: 1px;
  height: calc(100% - 1rem);
  background-color: #fff;
}
.l-fixed_btns .icon {
  display: block;
  width: 1rem;
  margin-right: .5rem;
}

/* tools */
.f-en {
  font-family: "Marcellus", serif;
  font-weight: 400;
}
.f-serif {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}
.full-img {
  display: block;
  width: 100%;
  max-width: none;
}
.text-red {
  color: var(--red);
}
.bg-gray {
  padding-top: 1rem;
  padding-bottom: 1.33rem;
  background-color: var(--bg-gray);
}

@media print,screen and (min-width:780px) {
  .only-sp {
    display: none!important;
  }
  .bg-gray {
    padding-top: 1.5rem;
    padding-bottom: 3.125rem;
  }
}
@media screen and (max-width:779.98px) {
  .only-pc {
    display: none!important;
  }
}



/*　コンテンツ中表組　*/

.table{
	width: 100%;
	border: solid 2px #888;
	border-collapse: separate;
  	border-spacing: 0;
  	border-radius: 10px;
  	overflow: hidden;
	margin-top: 20px;
	margin-bottom: 20px;
}

.th{
	border-bottom: 1px solid #aaa;
	text-align: center;
	padding: 6px 30px;
}



.trgray{
	background-color: #EEEEEE;
} 

.th1{
	background-color: #f9dbe8;
	border-bottom: 1px solid #aaa;
	border-left: none;
	text-align: center;
	padding: 0.5rem 5rem;
	
	font-size: 80%;
}

.th2{
	background-color: #e1ecb9;
	border-bottom: 1px solid #aaa;
	border-left: 1px solid #aaa;
	text-align: center;
	padding: 0.5rem 1rem;
	font-size: 80%;
}

.th3{
	background-color: #d2ecfa;
	border-bottom: 1px solid #aaa;
	border-left: 1px solid #aaa;
	text-align: center;
	padding: 0.5rem;
	
	font-size: 80%;
}

.td{
	border-bottom: 1px solid #aaa;
	border-left: 1px solid #aaa;
	text-align: center;
	font-size: 80%;
}

.table tr:last-child th,
.table tr:last-child td {
  border-bottom: none;
}

/*　コンテンツ中表組　*/


