@charset "utf-8";
/* reset */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}
table{border-collapse:collapse; width:100%;}
fieldset,img{border:0; vertical-align:top;}
address,caption,cite,code,dfn,em,th,var{font-style:normal;font-weight:normal;}
li{list-style:none;}
caption,th{text-align:left;}
h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:400;}
q:before,q:after{content:'';}
abbr,acronym{border:0;font-variant:normal;}
sup{vertical-align:top;}
sub{vertical-align:text-bottom;}
input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}
input,textarea,select{*font-size:100%;}
legend{color:#000;}
del,ins{text-decoration:none;}
section{display:block;}
figure,figcaption{margin:0; padding:0;}
main {display:block;padding:0;margin:0;position: relative;z-index: 2;}
small {font-size: 100%;}
.cf:after{content:".";display:block;height:0;clear:both;visibility:hidden;font-size: 0.1em;}
.cf	{display:inline-block;zoom:1;}
ul.col {
	letter-spacing:-0.5em;
}
ul.col li {
	display:inline-block;
	vertical-align:top;
	letter-spacing:0.01em;
}
/* \*/
* html .cf	{height:1%;}
.cf	{display:block;}
/* */
a:link,a:visited {
    backface-visibility:hidden;
-webkit-backface-visibility: hidden;  
    transition: ease-in-out .2s;
	text-decoration:none;
	color:var(--c-base);
}
a:hover {
    outline:none;
}
a:focus, *:focus { outline:none; }
img {
	max-width: 100%;
    height: auto;
}
:root {
    --f-jp: "Noto Sans JP", sans-serif;
    --f-en: "Manrope", sans-serif;
    --c-base:#1f2c28;
    --c-gr:#4ebd6a;
    --c-line:#d9e3dc;
    --c-bg:#f2f7f7;
}

/*----------------common----------------*/
body {
  font-family: var(--f-jp);
  font-size: 16px;
  line-height: 2.2;
  letter-spacing: 0.04em;
  color: var(--c-base);
  word-wrap: break-word;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
    font-feature-settings: "palt";
}
html.with-menu {
    width: auto;
    overflow: visible;
    scroll-behavior: auto;
}

body.active {

}

.header {
    position: fixed;
    z-index: 99;
    top: 35px;
    left: 35px;
    right: 35px;
    background-color: #fff;
    border-radius: 10px;
    height: 100px;
    display: flex;
    align-items: center;
    padding-left: 20px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.07);
    padding-right: 125px;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.header.down {
    transform: translateY(-150%);
}
.header.fixed {
    transform: inherit;
}
.header.scroll {
    top: 15px;
    left: 15px;
    right: 15px;
}
.header__site-id {
    padding-right: 2%;
}
.header.is-active {
    border-bottom-left-radius: 0;
}
.header__site-id img {
    width: calc(520px / 2);
}
.header__nav {
    margin-left: auto;
    line-height: 1.5;
}
.header__nav-top {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 10px;
    gap:20px;
}
.header__nav-top li a{
    font-size: 13px;
    font-weight: 600;
    padding-left: 20px;
    background-repeat: no-repeat;
    background-position: left center;
}
.header__nav-top li a:hover {
    color: var(--c-gr);
}
.header__nav-top li:nth-child(1) a {
    background-image: url("../images/icon_header01.png");
    background-size: 14px;
    
}
.header__nav-top li:nth-child(2) a {
    background-image: url(../images/icon_header03.png);
    background-size: 14px;
}
.header__nav-top-search {
    display: flex;
    background-color: #f2f4f3;
    font-size: 12px;
    font-weight: 600;
    height: 30px;
    justify-content: center;
    align-items: center;
    width: 90px;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.header__nav-top-search:hover {
    color: var(--c-gr);
}
.header__nav-top-search span {
    background-image: url("../images/header_search.png");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 18px;
}
.header__nav-under {
    display: flex;
    align-items: center;
    gap:35px;
}
.header__nav-under > li {
    padding-bottom: 20px;
    margin-bottom: -20px;
}
.header__nav-under > li:hover > a{
    color: var(--c-gr);
}
.header__nav-under > li > a{
    white-space: nowrap;
}
.header__nav-under li a {
    font-weight: 600;
    font-size: 17px;
    letter-spacing: 0.05em;  
}
.header__nav-under li a:hover {
    color: var(--c-gr);
}
.header__nav-local {
    position: absolute;
    left: 0;
    right: 0;
    top: 100px;
    background-color: #fff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    display: flex;
    padding: 2%;
    align-items: flex-start;
    font-feature-settings: "palt";
    opacity: 0;
    pointer-events: none;
    transition:ease-in-out .3s;
    border-top: var(--c-line) 1px solid;
    box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.1);
}

.header__nav-local.is-active{
    opacity: 1;
    pointer-events: inherit;
    margin-top: 0px;
}
.header__nav-local-img {
    flex-shrink: 0;
    width: 220px;
    margin-right: 3%;
    position: relative;
    
    overflow: hidden;
    border-radius: 10px;
}
.header__nav-local-img a {
    display: block;
    background-color: #000;
}
.header__nav-local-img a:hover {
    opacity: 0.8;
}
.header__nav-local-ttl {
    position: absolute;
    z-index: 1;
    bottom: 20px;
    left: 20px;
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 0.05em;
}
.header__nav-local-ttl span {
    display: block;
    font-family: var(--f-en);
    font-size: 11px;
    font-weight: 700;
}
.header__nav-local-bg {
    opacity: 0.8;
}
.header__nav-local-list {
    display: flex;
    flex-wrap: wrap;
    gap:10px 15px;
    align-items: flex-start;
    flex: 1;
}
.header__nav-local-more-ttl {
    color: var(--c-gr);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    
}
.header__nav-local-more-ttl:after {
    background-color: var(--c-line);
    height: 1px;
    display: block;
    content: "";
    flex: 1;
    margin-left: 30px;
}
.header__nav-local-more-ttl:not(:first-child) {
    margin-top: 30px;
}
.header__nav-local-txt {
    flex: 1;
}
.header__nav-local-more-ttl a {
    color: var(--c-gr);
}
.header__nav-local-more-ttl a:hover {
    text-decoration: underline;
    opacity: 0.8;
}
.header__nav-local-list li {
    width: calc((100% - 45px) / 4);

}
.header__nav-local-list li a {
    display: flex;
    align-items: center;
    font-size: 14px;
    position: relative;
    padding-right: 25px;
}
.header__nav-local-list li a:hover {
    color: var(--c-gr);
}
.header__nav-local-list li a::after {
  position: absolute;
  top: 50%;
  right: 10px;
  display: block;
  content: '';
  width: 8px;
  height: 8px;
  margin-top: -4px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top-width: 2px;
  border-right-width: 2px;
  border-top-style: solid;
  border-right-style: solid;
  border-top-color: var(--c-gr);
  border-right-color: var(--c-gr);
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.header__sitemap {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
    top: 0;
    background-color: rgba(0,0,0,0.5);
    overflow: auto;
    display: none;
    width: 100vw;
}
.header__sitemap-scroll {
    overflow: auto;
}
.header__sitemap-logo {
  position: absolute;
  left: 55px;
    top: 57px;
}
.header__sitemap-logo a {
    display: inline-block;
}
.header__sitemap-logo img {
    width: calc(520px / 2);
}
.header__sitemap-inner {
    background-color: #fff;
    padding: 130px 50px;
    margin: 20px;
    border-radius: 20px;
    overflow: auto;
}
.header__sitemap-col2 {
    display: flex;
    flex-wrap: wrap;
    gap:30px 50px;
}
.header__sitemap-item-sp-only {
    display: none;
}
.header__sitemap-item:not(:last-child) {
    margin-bottom: 30px;
}
.header__sitemap-item ul {
    display: flex;
    flex-wrap: wrap;
    line-height: 1.5;
    gap:5px 20px;
    margin-top: 20px;
}
.header__sitemap-item ul li {
    width: calc((100% - 60px) /4);
}
.header__sitemap-item ul li a {
    font-size: 15px;
    position: relative;
    padding-left: 20px;
    font-weight: 500;
}
.header__sitemap-item ul li a:hover {
  color: var(--c-gr);
}
.header__sitemap-item ul li a:before {
  position: absolute;
  top: 50%;
    left: 0;
  display: block;
  content: "";
  width: 6px;
  height: 6px;
  margin-top: -3px;
  transform: rotate(45deg);
  border-top-width: 2px;
  border-right-width: 2px;
  border-top-style: solid;
  border-right-style: solid;
  border-top-color: var(--c-gr);
  border-right-color: var(--c-gr);
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.header__sitemap-ttl {
    font-weight: 700;
    font-size: 24px;
    position: relative;
    border-bottom: var(--c-line) 1px solid;
}
.header__sitemap-ttl a {
    display: block;
    padding-bottom: 10px;
    padding-top: 10px;
}
.header__sitemap-ttl a:hover {
    color: var(--c-gr);
}
.header__sitemap-ttl a:after {
  width: 55px;
  height: 26px;
  background-image: url("../images/arrow_w.png");
  background-size: 18px;
  background-color: var(--c-gr);
  background-repeat: no-repeat;
  background-position: center center;
  content: "";
  right: 0;
  border-radius: 40px;
  top: 50%;
  position: absolute;
  z-index: 1;
  margin-top: -13px;
}
.header__sitemap-local-ttl {
    font-weight: 700;
    font-size: 17px;
    color: var(--c-gr);
    margin-bottom: -10px;
    margin-top: 20px;
}
.header__sitemap-local-ttl a {
    color: var(--c-gr);
}
.header__sitemap-other {
    border-top: var(--c-line) 1px solid;
    margin-top: 50px;
    padding-top: 50px;
}
.header__sitemap-other ul {
    display: flex;
    gap:0px 20px;
    flex-wrap: wrap;
}
.header__sitemap-other ul li{
    width: calc((100% - 40px) / 3);
}
.header__sitemap-other ul li a {
    font-size: 14px;
    font-weight: 500;
    position: relative;
    padding-left: 17px;
}
.header__sitemap-other ul li a:before {
    width: 8px;
    height: 1px;
    background-color: var(--c-gr);
    content: "";
    position: absolute;
    left:0;
    top: 50%;
    z-index: 1;
}
.header__search-box {
    position: fixed;
    z-index: 9999999;
    left: 35px;
    right: 35px;
    top: 35px;
    background-color: #fff;
    text-align: center;
    padding: 40px;
    border-radius: 10px;
    border-top: var(--c-line) 1px solid;
    box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.1);
    display: none;
}
.header__search-box form {
    position: relative;
    width: 390px;
    margin: auto;
}
.header__search-box p {
    margin-bottom: 15px;
}
.header__search-box .txt {
    width: 100%;
    border: var(--c-base) 2px solid;
    height: 55px;
    box-sizing: border-box;
    border-radius: 40px;
    padding: 15px;
    padding-right: 60px;
}
.header__search-box .btn {
    position: absolute;
    width: 40px;
    height: 40px;
    background-image: url("../images/icon_search.png");
    background-repeat: no-repeat;
    background-position: center center;
    border: none;
    background-color: var(--c-gr);
    background-size: 22px;
    border-radius: 50%;
    right: 10px;
    top: 50%;
    margin-top: -20px;
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    cursor: pointer;
}
.header__search-box .btn:hover {
    background-color: #b3d872;
}
.header__search-box .close {
    width: 40px;
    height: 40px;
    background-image: url("../images/close.png");
    background-color: var(--c-gr);
    position: absolute;
    z-index: 8;
    right: 20px;
    top: 20px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 28px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.header__search-box .close:hover {
    background-color: #b3d872;
}
.header__menu {
    width: 100px;
    height: 100px;
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 9999999;
    text-align: center;
    background-color: var(--c-gr);
    cursor: pointer;
    display: block;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
}
.scroll .header__menu {
    right: 15px;
    top: 15px;
}
.header__menu.is-active {
    border-bottom-right-radius: 0px;
}
.header__menu.active {
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
}
.header__menu p {
    font-weight: 700;
    font-size: 11px;
    color: #fff;
    letter-spacing: 0.08em;
    line-height: 1;
    margin-top: 7px;
}
.header__menu .cl {
    display: none;
}
.header__menu.active .op {
    display: none;
}
.header__menu.active .cl {
    display: block;
}
.header__menu .menu-trigger,
.header__menu .menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.header__menu .menu-trigger {
  position: relative;
  width: 40px;
  height: 20px;
}
.header__menu .menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
}
.header__menu .menu-trigger span:nth-of-type(1) {
  top: 0;
}
.header__menu .menu-trigger span:nth-of-type(2) {
  top: 9px;
}
.header__menu .menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
.header__menu.active .menu-trigger span:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(-45deg);
  transform: translateY(9px) rotate(-45deg);
}
.header__menu.active .menu-trigger span:nth-of-type(2) {
  opacity: 0;
}
.header__menu.active .menu-trigger span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(45deg);
  transform: translateY(-9px) rotate(45deg);
}
.header__sitemap-close {
    background-color: var(--c-gr);
    color: #fff;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    font-weight: 700;
    border-radius: 40px;
    cursor: pointer;
    margin: auto;
    margin-top: 40px;
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.header__sitemap-close:hover {
    background-color: #b3d872;
}
.header__sp-sub {
    display: none;
}
.header__sitemap-search {
    margin-top: 50px;
    display: none;
}
.header__sitemap-search form {
    position: relative;
    width: 390px;
    margin:auto;
}
.header__sitemap-search form {
    box-sizing: border-box;
  width: 100%;
}
.header__sitemap-search .txt {
    width: 100%;
    border: var(--c-base) 2px solid;
    height: 55px;
    box-sizing: border-box;
    border-radius: 40px;
    padding: 15px;
    padding-right: 60px;
}
.header__sitemap-search .btn {
    position: absolute;
    width: 40px;
    height: 40px;
    background-image: url("../images/icon_search.png");
    background-repeat: no-repeat;
    background-position: center center;
    border: none;
    background-color: var(--c-gr);
    background-size: 22px;
    border-radius: 50%;
    right: 10px;
    top: 50%;
    margin-top: -20px;
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    cursor: pointer;
}
.header__sitemap-search .btn:hover {
    background-color: #b3d872;
}
.header__sitemap-search .close {
    width: 40px;
    height: 40px;
    background-image: url("../images/close.png");
    background-color: var(--c-gr);
    position: absolute;
    z-index: 8;
    right: 20px;
    top: 20px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 28px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.header__sitemap-search .close:hover {
    background-color: #b3d872;
}
.inner1320 {
    max-width: 1320px;
    width: 86%;
    margin: auto;
}
.txt-link {
    position: relative;
}
.txt-link:link,
.txt-link:visited{
    color: var(--c-gr);
    text-decoration: underline;
    font-weight: 500;
}
.txt-link:hover {
    text-decoration: none;
}
.txt-link--arrow {
    padding-left: 20px;
    display:inline-block;
    margin-top: 10px;
}
.txt-link--arrow:before {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    content: "";
    width: 8px;
    height: 8px;
    margin-top: -4px;
    transform: rotate(45deg);
    border-top-width: 2px;
    border-right-width: 2px;
    border-top-style: solid;
    border-right-style: solid;
    border-top-color: var(--c-gr);
    border-right-color: var(--c-gr);
    transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.com-btn--mdt {
    margin-top: 50px;
}
.com-btn--center {
        text-align: center;
    }
    .com-btn--center a {
        margin-inline:auto;
    }
.com-btn a {
    background: #4EBD6A;
    background-color: var(--c-gr);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    color: #fff;
    font-weight: 700;
    border-radius: 40px;
    max-width: 360px;
    position: relative;
    transition: ease-in-out .2s;
}
.com-btn a:hover {
   background-color: #b3d872;
}
.com-btn a:after {
    position: absolute;
  top: 50%;
  right: 25px;
  display: block;
  content: '';
  width: 8px;
  height: 8px;
  margin-top: -4px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top-width: 2px;
  border-right-width: 2px;
  border-top-style: solid;
  border-right-style: solid;
  border-top-color: #fff;
  border-right-color: #fff;
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.lead__visual {
	margin-bottom: 40px;
}
.lead__visual img {
    width: 100%;
    border-radius: 10px;
}
.page-contents__main p + table,
.page-contents__main p + ol.number,
.page-contents__main p + p.border-box,
.page-contents__main p + p.border-box-red {
    margin-top: 15px;
}
.page-contents__main table + p,
.page-contents__main ol.number + p,
.page-contents__main p.border-box + p,
.page-contents__main p.border-box-red + p {
    margin-top: 15px;
}
dl.connection-link {
	  display: flex;
    border: var(--c-line) solid 1px;
    border-radius: 10px;
    padding: 15px;
    font-weight: 600;
}
dl.connection-link dt {
    padding-right: 10px;
}
dl.connection-link a {
    color: var(--c-gr);
    text-decoration: underline;
}
dl.connection-link a:hover {
		text-decoration: none;
}
.footer__overlay {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 5;
    background-color: rgba(0,0,0,0.3);
    display: none;
}
.footer__overlay.active {
    display: block !important;
}
.footer__bnr {
    background-color: #f7f8f8;
    padding-top: 80px;
    padding-bottom: 80px;
}
.footer__bnr-sub {
    display: flex;
    gap:15px;
    flex-wrap: wrap;
}
.footer__bnr-sub li {
    width: calc((100% - 30px) / 3);
}
.footer__bnr-sub li a {
    display: flex;
    height: 60px;
    justify-content: center;
    align-items: center;
    border: var(--c-line) 1px solid;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.07);
    position: relative;
    line-height: 1.5;
    padding-left: 30px;
    padding-right: 30px;
    background-color: #fff;
}
.footer__bnr-sub li a:hover {
    color: var(--c-gr);
}
.footer__bnr-sub li a:after {
    position: absolute;
    top: 50%;
    right: 20px;
    display: block;
    content: '';
    width: 8px;
    height: 8px;
    margin-top: -4px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border-top-width: 2px;
    border-right-width: 2px;
    border-top-style: solid;
    border-right-style: solid;
    border-top-color: var(--c-gr);
    border-right-color: var(--c-gr);
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.footer__bnr-sub li a:hover:after {
    right: 15px;
}
.footer__bnr-main {
    display: flex;
    gap:15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.footer__bnr-main li {
    width: calc((100% - 30px) / 3);
}
.footer__bnr-main li a {
    display: block;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.07);
    border-radius: 15px;
    overflow: hidden;
    border: var(--c-line) 1px solid;
}
.footer__bnr-main li img {

    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.footer__bnr-main li a:hover img {
   opacity: 0.8;
}
.footer__add {
    background-image: url("../images/bg_foot.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    text-align: center;
    padding-top: 100px;
    color: #fff;
    height: 400px;
}
.footer__add dt img {
    width: calc(796px / 2);
}
.footer__add dd {
    font-size: 15px;
    font-weight: 500;
    margin-top: 15px;
}
.footer__bottom {
    display: flex;
    align-items: center;
    padding-top: 25px;
    padding-bottom: 25px;
}
.footer__bottom-sns {
    margin-left: auto;
}
.footer__bottom-sns a {
    display: block;
}
.footer__bottom-sns a:hover {
    opacity: 0.8;
}
.footer__bottom-sns img {
    width: 35px;
}
.footer__bottom-copy {
    font-size: 13px;
    font-family: var(--f-en);
    font-weight: 700;
}
.footer__fix {
    position: fixed;
    width: 100px;
    z-index: 4;
    top: 50%;
    right: 0;
    margin-top: -100px;
}
.footer__fix ul {
    position: relative;
    z-index: 2;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.07);
    border: var(--c-line) 1px solid;
}
.footer__fix li {
    position: relative;
    z-index: 3;
}
.footer__fix li:not(:last-child) a{
    border-bottom: var(--c-line) 1px solid;
}
.footer__fix li a {
    display: flex;
    height: 100px;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    position: relative;
    z-index: 3;
    background-color: #fff;

}
.footer__fix li a:hover,
.footer__fix li.is-active a{
    color: var(--c-gr);
}
.footer__fix li a span{
    background-repeat: no-repeat;
    background-position: center top;
    padding-top: 35px;
}
.footer__fix li:nth-child(1) a span{
    background-image: url("../images/icon_fix_access.png");
    background-size: 29px;
}
.footer__fix li:nth-child(2) a span{
    background-image: url("../images/icon_fix_tel.png");
    background-size: 30px;
}
.footer__fix-open-tel {
    position: absolute;
    bottom: 0;
    height: 100px;
    z-index: -4;
    background-color: var(--c-gr);
    color: #fff;
    width: 280px;
    right: 85px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-flow: column;
    line-height: 1.5;
    padding-left: 25px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    transform: translateX(100%);
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);

}
.footer__fix-open-tel.is-active {
    transform: translateX(0%);
}
.footer__fix-open-tel dt {
    font-weight: 700;
}
.footer__fix-open-tel dd a {
    font-family: var(--f-en);
  font-weight: 700;
    font-size: 25px;
    color: #fff;
    background-image: url("../images/icon_tel_w.png");
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 27px;
}
.footer__fix-open-tel dd a span {
    font-size: 60%;
    font-family: var(--f-jp);
}
br.sp-only {
        display: none;
    }
.page-ttl {
    height: 440px;
    
    display: flex;
    align-items: center;
    color: #fff;
    position: relative;
    line-height: 1.5;
    box-sizing: border-box;
    padding-top: 100px;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    will-change: transform; /* スムーズに */
    background-position: center center;
    background-image: url(../images/pagettl_other.jpg);
    
}
.department .page-ttl {
    background-image: url("../images/pagettl_department.jpg");
}
.visitors .page-ttl {
    background-image: url(../images/pagettl_visitors.jpg);
}
.department .page-ttl {
    background-image: url(../images/pagettl_department.jpg);
}
.hospitalization .page-ttl {
    background-image: url(../images/pagettl_hospitalization.jpg);
}
.for-medical .page-ttl {
    background-image: url(../images/pagettl_for-medical.jpg);
}
.about .page-ttl {
    background-image: url(../images/pagettl_about.jpg);
}
.clinical-trial .page-ttl {
    background-image: url(../images/pagettl_clinicaltrial.jpg);
}
.recruit .page-ttl {
    background-image: url("../images/pagettl_recruit.jpg");
}
.volunteer .page-ttl, .magazine .page-ttl, .reception .page-ttl, .link .page-ttl, .policy .page-ttl, .contact .page-ttl, .sitemap .page-ttl , .news .page-ttl {
    background-image: url(../images/pagettl_other.jpg);
}
.page-ttl span {
    font-family: var(--f-en);
    font-weight: 800;
    margin-bottom: 10px;
    display: block;
}
.page-ttl dl {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 15px;
}
.page-ttl dd:before {
    width: 30px;
    height: 1px;
    content: "";
    background-color: #fff;
    display: block;
    margin-left: 15px;
    margin-right: 15px;   
}
.page-ttl dd {
    font-family: var(--f-en);
    font-weight: 800;
    display: flex;
    align-items: center;
}
.page-ttl:before {
    background: #D8F1B0;
background: linear-gradient(60deg,rgba(216, 241, 176, 1) 0%, rgba(216, 241, 176, 0) 66%);
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    content: "";
    width: 450px;
}
.page-ttl:after {
    background-color: rgba(0,0,0,0.12);
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    content: "";
}
.page-ttl .inner1320 {
    position: relative;
    z-index: 2;
}
.page-ttl .inner1320:after {
    background-image: url("../images/bg_pagettl.png");
  width: 408px;
  height: 451px;
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  left: -139px;
  top: -150px;
  z-index: -1;
    background-size: cover;
}
.page-ttl h1 {
    font-size: 45px;
    font-weight: 700;
}
.page-ttl ul {
    display: flex;
    margin-top: 5px;
    flex-wrap: wrap;
    gap:10px;
}
.page-ttl ul li {
    background-color: #fff;
    color: var(--c-gr);
    font-weight: 700;
    font-size: 14px;
    padding-left: 10px;
    padding-top: 2px;
    padding-bottom: 1px;
    padding-right: 10px;
    border-radius: 40px;
}
.page-contents {
    display: flex;
    margin-top: 50px;
    padding-bottom: 100px;
}
.page-contents__one {
    max-width: 980px;
    margin: auto;
    width: 86%;
}
.page-contents__main {
    order: 2;
    flex: 1;
    margin-right: 9%;
    margin-left: 5%;
}
.page-contents__local {
    order: 1;
    font-size: 15px;
    width: 350px;
}
.page-contents__local-sticky {
    position: sticky;
    top: 160px;
transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.page-contents__local-sticky.down {
    top: 30px;
}
.page-contents__local h3{
    background-color: var(--c-gr);
    margin-bottom: 25px;
    color: #fff;
    
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    height: 100px;
    display: flex;
    justify-content: center;
    flex-flow: column;
    padding-left: 40px;
    box-sizing: border-box;
    font-weight: 700;
    font-size: 25px;
    line-height: 1.4;
}
.page-contents__local h3 span {
    font-family: var(--f-en);
    font-size: 13px;
    margin-top: 2px;
    font-weight: 800;
}
.page-contents__local dt {
    font-weight: 500;
}
.page-contents__local li {
    line-height: 1.5;
}
.page-contents__local li:not(:last-child) {
    margin-bottom: 10px;
}
.page-contents__local li a {
    font-weight: 500;
    position: relative;
    padding-left: 20px;
    display: inline-block;
}
.page-contents__local li a:hover,
.page-contents__local li a.current {
    color: var(--c-gr);
}
.page-contents__local li a:before {
    position: absolute;
    top: 8px;
    left: 0;
    display: block;
    content: "";
    width: 6px;
  height: 6px;
  transform: rotate(45deg);
  border-top-width: 2px;
  border-right-width: 2px;
  border-top-style: solid;
  border-right-style: solid;
  border-top-color: var(--c-base);
  border-right-color: var(--c-base);
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.page-contents__local li a:hover:before,
.page-contents__local li a.current:before{
  border-top-color: var(--c-gr);
  border-right-color: var(--c-gr);
}
.page-contents__local-link {
    padding-left: 40px;
    padding-right: 40px;
}
.page-contents__local dl {
    border-bottom: var(--c-line) 1px solid;
}
.page-contents__local dt {
    padding-bottom: 15px;
    padding-top: 15px;
    cursor: pointer;
    font-weight: 700;
    position: relative;
    transition: ease-in-out .2s;
}
.page-contents__local dt:hover {
    color: var(--c-gr);
}
.page-contents__local dt:after {
    width: 14px;
    height: 2px;
    content: "";
    position: absolute;
    z-index: 1;
    right: 5px;
    background-color: var(--c-gr);
    top: 50%;
    margin-top: -1px;
}
.page-contents__local dt:before {
    width: 14px;
    height: 2px;
    content: "";
    position: absolute;
    z-index: 1;
    right: 5px;
    background-color: var(--c-gr);
    top: 50%;
    margin-top: -1px;
    transform: rotate(90deg);
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.page-contents__local dt.active {
    color: var(--c-gr);
}
.page-contents__local dt.active:before {
    transform: rotate(0deg);
}
.page-contents__local dd {
    display: none;
    padding-bottom: 25px;
}
.topic-path {
    font-size: 13px;
    font-weight: 500;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 15px;
}
.topic-path li a:hover {
    text-decoration: underline;
}
.topic-path li {
    display: flex;
    align-items: center;
}
.topic-path li:last-child {
    color: var(--c-gr);
}
.topic-path li:not(:last-child):after {
    width: 10px;
    height: 1px;
    content: "";
    background-color: var(--c-base);
    display: block;
    margin-left: 8px;
    margin-right: 8px;
}

.inner990 {
    max-width: 990px;
    width: 80%;
    margin: auto;
}
.second-ttl {
    font-size: 27px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.5;
    border-bottom: var(--c-line) 1px solid;
    padding-bottom: 15px;
    margin-bottom: 40px;
    padding-left: 25px;
    position: relative;
}
.second-ttl:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 5px;
    bottom: 20px;
    left: 0;
    width: 5px;
background: linear-gradient(0deg,rgba(255, 166, 0, 1) 50%, rgba(78, 189, 106, 1) 50%);
    border-radius: 40px;
}
.second-ttl span {
        font-size: 70%;
    }
.third-ttl {
    font-weight: 700;
    font-size: 20px;
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
}
.third-ttl:before {
    content: "";
    width: 8px;
    height: 8px;
    border: var(--c-gr) 5px solid;
    position: absolute;
    left: 0px;
    top: 13px;
    border-radius: 50%;
    background-color: #fff;
}
.btn-group {
    display:flex;
    flex-wrap: wrap;
    gap:15px;
}
.btn-group li{
    width: calc((100% - 30px) / 3);
}
.btn-group li a {
    display: flex;
  height: 65px;
  align-items: center;
  border: var(--c-line) 1px solid;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.07);
  position: relative;
  line-height: 1.5;
  padding-left: 20px;
  padding-right: 30px;
  background-color: #fff;
}
.btn-group li a:hover {
    color: var(--c-gr);
}
.btn-group li a:after {
  position: absolute;
  top: 50%;
  right: 20px;
  display: block;
  content: '';
  width: 8px;
  height: 8px;
  margin-top: -4px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top-width: 2px;
  border-right-width: 2px;
  border-top-style: solid;
  border-right-style: solid;
  border-top-color: var(--c-gr);
  border-right-color: var(--c-gr);
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.sec-mdb {
    margin-bottom: 90px;
}
.sec-second-mdb {
    margin-bottom: 50px;
}
.page-index {
    display: flex;
    flex-wrap: wrap;
    gap:0px 40px;
}
.page-index li:nth-child(-n+2) {
    border-top: var(--c-line) 1px solid;
}
.page-index li {
    width: calc((100% - 40px) / 2 );
    border-bottom: var(--c-line) 1px solid;
}
.page-index li a {
    font-weight: 700;
    font-size: 19px;
    display: flex;
    height: 120px;
    align-items: center;
    position: relative;
    padding-right: 70px;
}
.page-index li a:hover {
    color: var(--c-gr);
}
.page-index li a:after {
  width: 55px;
  height: 26px;
  background-image: url("../images/arrow_w.png");
  background-size: 18px;
  background-color: var(--c-gr);
  background-repeat: no-repeat;
  background-position: center center;
  content: "";
  right: 0;
  border-radius: 40px;
  top: 50%;
  position: absolute;
  z-index: 1;
  margin-top: -13px;
}
.txt-red {
    color: #f05344;
}
.txt-gr {
    color: var(--c-gr);
}
.txt-mdb {
	margin-bottom: 30px;
}
a.txt-call {
    text-decoration: underline;
    color: var(--c-gr);
    font-weight: 700;
}
a:hover.txt-call {
		text-decoration: none;
}
.border-box {
  border: var(--c-line) solid 1px;
  border-radius: 10px;
  padding: 30px;
	font-weight: 600;
}
.border-box-red {
  border: #f05344 solid 1px;
  border-radius: 10px;
  padding: 30px;
	background-color: #fdedec;
  color: #f05344;
	font-weight: 600;
}
ol.number {
  counter-reset: number;
  list-style: none;
  padding-left: 10px;
}
ol.number > li {
  position: relative;
  padding-left: 1.5em;
	line-height: 1.8;
}
ol.number > li::before {
  counter-increment: number;
  content: counter(number)'.';
  position: absolute;
  left: 0;
	color: var(--c-gr);
	font-weight: 600;
}
ol.number > li > ol {
    counter-reset: number;
    list-style: none;
    padding-left: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
}
ol.number > li > ol > li {
  position: relative;
  padding-left: 2em;
	line-height: 1.8;
}
ol.number > li > ol > li::before {
  counter-increment: number;
  content: '（'counter(number)'）';
  position: absolute;
  left: 0;
	color: var(--c-gr);
}
ol.number li + li {
	margin-top: 15px;
}

.course__schedule-update {
  text-align: right;
  margin-bottom: 15px;
  font-size: 15px;
}
.course__schedule {
    border-top: var(--c-line) 1px solid;
    border-left: var(--c-line) 1px solid;
    font-size: 15px;
    line-height: 1.5;
}
.course__schedule thead th {
  font-weight: 700;
  text-align: center;
  background-color: #f2f7f7;
}
.course__schedule th {
    border-bottom: var(--c-line) 1px solid;
    border-right: var(--c-line) 1px solid;
    padding: 10px;
    text-align: center;
}
.course__schedule tbody th {
    width: 15%;
}
.course__schedule td {
    border-bottom: var(--c-line) 1px solid;
    border-right: var(--c-line) 1px solid;
    padding: 10px;
    text-align: center;
    width: 14%;
}
.course__note {
    padding: 15px;
    background-color: #FFF5E4;
    border-radius: 5px;
    font-size: 15px;
    line-height: 1.8;
    margin-top: 30px;
}
.course__caution {
    margin-top: 15px;
    font-size: 15px;
}
.tbl-basic {
    border-top: var(--c-line) 1px solid;
    border-left: var(--c-line) 1px solid;
    line-height: 1.7;
}
.tbl-basic th {
  background-color: #f2f7f7;
  border-bottom: var(--c-line) 1px solid;
  border-right: var(--c-line) 1px solid;
  padding: 10px;
  font-weight: 600;
  text-align: center;
  width: 180px;
}
.tbl-basic td {
  border-bottom: var(--c-line) 1px solid;
  border-right: var(--c-line) 1px solid;
  padding: 18px;
}
.caution-txt {
  font-size: 15px;
  margin-top: 15px;
}
.caution-txt .txt-red {
    font-weight: 700;
}
.caution-txt li {
  text-indent: -1rem;
  padding-left: 1rem;
}
.blank-link {
    background-image: url("../images/icon_blank.svg");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 15px;
    padding-right: 22px;
    margin-right: 5px;
    color: var(--c-gr) !important;
    text-decoration: underline !important;
    font-weight: 500;
}
.blank-link:hover {
    text-decoration: none !important;
}
.dot-list li {
    position: relative;
    padding-left: 20px;
    line-height: 1.8;
}
.dot-list li:not(:last-child) {
    margin-bottom: 10px;
}
.dot-list li:before {
    width: 8px;
    height: 8px;
    content: "";
    background-color: var(--c-gr);
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    top: 11px;
    left: 0;
}
.dot-list--bg li:nth-child(odd) {
    background-color: var(--c-bg);
}
.dot-list--bg li {
    padding: 10px;
    padding-left: 30px;
    margin-bottom: 0 !important;
}
.dot-list--bg li:before {
  top: 50%;
    margin-top: -4px;
    left: 15px;
}
.pdf-list {
    margin-top: 40px;
    line-height: 1.8;
}
.pdf-list li {
    padding: 10px;
}
.pdf-list li:nth-child(odd) {
    background-color: var(--c-bg);
}
.pdf-list li a {
    text-decoration: underline;
    background-image: url("../images/icon_pdf.svg");
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 22px;
    display: inline-block;
}
.pdf-list li a.excel {
    background-image: url("../images/icon_excel.svg");
}
.pdf-list li a.word {
    background-image: url("../images/icon_word.svg");
}
.pdf-list li a.ppt {
    background-image: url("../images/icon_pp.svg");
}
.pdf-list li a:hover {
    text-decoration: none;
    color: var(--c-gr);
}
.lead-txt {
    margin-bottom: 50px;
}
.bg-clr {
    background-color: var(--c-bg);
    border-radius: 10px;
    padding: 30px;
}
.txt-bold {
    font-weight: 700;
}
@media screen and (max-width:1230px){
.header__nav-under {
  gap: 20px;
}
.header__nav-under li a {
  font-size: 16px;
}
}
@media screen and (max-width:1080px){

html {
    font-size: calc(100vw / 37.5);
  }
body {
    font-size: 1.4rem;
    line-height: 1.9;
}
br.pc-only {
display: none;
}
br.sp-only {
    display: inherit;
}
.header {
  top: 1rem !important;
  left: 1rem !important;
  right: 1rem !important;
  border-radius: 0.8rem;
  height: 6rem;
padding-left: 1rem;
    padding-right: 6rem;
    transform: inherit !important;
}
    .header__nav {
        display: none;
    }
.header__site-id img {
  width: 16rem;
}
.header__menu {
  width: 6rem;
  height: 6rem;
  right: 0rem !important;
    top: 0rem !important;
  border-top-right-radius: 0.8rem;
  border-bottom-right-radius: 0.8rem;
}
.header__menu.active {
  border-bottom-left-radius: 0.8rem;
  border-top-left-radius: 0.8rem;
    border-top-right-radius: 0.8rem;
    border-bottom-right-radius: 0.8rem;
}
.header__menu .menu-trigger {
  width: 3rem;
  height: 1.8rem;
}
.header__menu .menu-trigger span {
  height: 0.2rem;
}
.header__menu .menu-trigger span:nth-of-type(2) {
  top: 0.8rem;
}
.header__menu.active .menu-trigger span:nth-of-type(1) {
  -webkit-transform: translateY(0.8rem) rotate(-45deg);
  transform: translateY(0.8rem) rotate(-45deg);
}
.header__menu.active .menu-trigger span:nth-of-type(3) {
  -webkit-transform: translateY(-0.8rem) rotate(45deg);
  transform: translateY(-0.8rem) rotate(45deg);
}
.header__menu p {
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin-top: 0.5rem;
}
    .header__sitemap {
 
    }
.header__sitemap-logo {
    left: 2rem;
        top: 2.2rem;
  }
.header__sitemap-ttl a {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.header__sitemap-logo img {
  width: 16rem;
}
.header__sitemap-inner {
  padding: 9rem 3rem 4rem 3rem;
  margin: 0rem;
  border-radius: 0rem;
}
.header__sitemap-col2 {
  display: block;
}
.header__sitemap-item {
  width: auto;
}
.header__sitemap-item:not(:last-child) {
  margin-bottom: 0px;
}
.header__sitemap-ttl {
  font-size: 1.6rem;
}
.header__sitemap-item ul {
  margin-top: 1.5rem;
    padding-bottom: 2rem;
    display: none;
}
.header__sitemap-local-group {
    display: none;
    padding-bottom: 2rem;
}

.header__sitemap-local-ttl {
  font-size: 1.5rem;
  margin-bottom: -0.5rem;
  margin-top: 1.5rem;
}
    .header__sitemap-local-group ul {
        display: block !important;
        padding-bottom: 0rem;
    }
.header__sitemap-item ul li {
  width: auto;
}
    .header__sitemap-item ul li:not(:last-child) {
        margin-bottom: 0.7rem;
    }
.header__sitemap-item ul li a {
  font-size: 1.4rem;
  padding-left: 1.5rem;
}
.header__sitemap-item ul li a::before {
  width: 0.4rem;
  height: 0.4rem;
  margin-top: -0.2rem;
  border-top-width: 0.2rem;
  border-right-width: 0.2rem;
}
.header__sitemap-item-sp-only {
    display: block;
}
    .header__sitemap-ttl--sp-toggle a{
        pointer-events: none;
    }
.header__sitemap-other {
  border-top: none;
  margin-top: 3rem;
  padding-top: 0;
}
.header__sitemap-other ul {
  display: block;
}
.header__sitemap-other ul li {
  width: auto;
}
.header__sitemap-other ul li:not(:last-child) {
    margin-bottom: 0.7em;
  }
.header__sitemap-other ul li a::before {
  width: 0.7rem;
  height: 1px;
    top: 1rem;
}
.header__sitemap-ttl a::after {
  width: 4rem;
    height: 2rem;
    background-size: 1.5rem;
    border-radius: 4rem;
    margin-top: -1rem;
}
    .header__sitemap-ttl--sp-toggle {
        position: relative;
    }
    .header__sitemap-ttl--sp-toggle:before {
        position: absolute;
        width: 14px;
        height: 2px;
        background-color: var(--c-gr);
        content: "";
        z-index: 1;
        right: 12px;
        top: 50%;
        margin-top: -1px;
        transition: ease-in-out .2s;
}
.header__sitemap-ttl--sp-toggle:after {
        position: absolute;
        width: 14px;
        height: 2px;
        background-color: var(--c-gr);
        content: "";
        z-index: 1;
        right: 12px;
        top: 50%;
        margin-top: -1px;
        transition: ease-in-out .2s;
    transform: rotate(90deg);
}
.header__sitemap-ttl--sp-toggle.active:after {
    transform: rotate(0deg);
}
.header__sitemap-ttl--sp-toggle a::after {
    display: none;
  }
.header__sitemap-other ul li a {
  font-size: 1.3rem;
  padding-left: 1.5rem;
    display: block;
    line-height: 1.4;
}
.header__sitemap-close {
  width: 10rem;
  height: 3.3rem;
  border-radius: 4rem;
  margin-top: 4rem;
}

.header__sp-sub {
    display: flex;
    margin-left: auto;
    gap:1rem;
    margin-right: 1.3rem;
}
.header__sp-sub li a{
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: normal;
    height: 6rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
    .header__sp-sub li span {
        background-image: url("../images/icon_fix_access.png");
        background-repeat: no-repeat;
        background-position: center top;
        background-size: 2.2rem;
        padding-top: 2.5rem;
    }
    .header__sp-sub li:nth-child(2) span {
        background-image: url("../images/icon_fix_tel.png");
        background-size: 2.3rem;
    }
.header__sitemap-search {
    display: block;
    margin-top: 3rem;
}
.header__sitemap-search .txt {
  border-width: 1px;
  height: 4.5rem;
  border-radius: 4rem;
  padding: 1.3rem;
    padding-right: 1.3rem;
  padding-right: 5rem;
}
.header__sitemap-search .btn {
  width: 3rem;
  height: 3rem;
  background-size: 1.5rem;
  right: 1rem;
  margin-top: -1.5rem;
}
.page-contents {
  display: block;
margin-top: 3rem;
  padding-bottom: 8rem;
}
.page-contents__local {
  font-size: 1.4rem;
  width: auto;
  margin-right: 7%;
}
.page-contents__main {
    margin-bottom: 6rem;
    margin-left: 0;
    margin-right: 0;
    padding-left: 7%;
    padding-right: 7%;
}
.page-index {
  display: block;
}
.page-index li {
  width: 100%;
}
.page-index li:first-child {
  border-top: var(--c-line) 1px solid !important;
}
.page-index li:nth-child(-n+2) {
  border-top: none;
}
.page-index li a {
  font-size: 1.5rem;
  height: 7rem;
  padding-right: 70px;
}
.topic-path {
  font-size: 1rem;
  margin-top: 1.5rem;
}
.topic-path li:not(:last-child)::after {
  width: 0.5rem;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.page-index li a::after {
  width: 4rem;
  height: 2rem;
  background-size: 1.5rem;
  border-radius: 4rem;
  margin-top: -1rem;
}
.page-contents__local h3 {
  margin-bottom: 1.5rem;
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
  height: 8rem;
  padding-left: 7%;
    padding-right:7%;
  font-size: 1.8rem;
}
.page-contents__local li:not(:last-child) {
  margin-bottom: 0.5rem;
}  
.page-contents__local h3 span {
  font-size: 1.1rem;
  margin-top: 0.2rem;
}    
.page-contents__local-link {
  padding-left: 7%;
  padding-right: 7%;
}
.page-contents__local li a {
  padding-left: 1.8rem;
}  
.page-contents__local li a::before {
  width: 0.6rem;
  height: 0.6rem;
    top: 0.6rem;
  border-top-width: 0.2rem;
  border-right-width: 0.2rem;
} 
.page-contents__local dt {
  padding-bottom: 1.2rem;
  padding-top: 1.2rem;
}
.page-contents__local dt::before {
  width: 1.3rem;
  height: 0.2rem;
  right: 0.5;
  margin-top: -0.1rem;
}
.page-contents__local dt::after {
  width: 1.3rem;
  height: 0.2rem;
  right: 0.5;
  margin-top: -0.1rem;
}
.page-contents__local dd {
  padding-bottom: 2.5rem;
}
.txt-mdb {
	margin-bottom: 3rem;
}
.border-box,
.border-box-red {
  padding: 1.5rem;
}
ol.number {
    padding-left: 1rem;
}
ol.number li + li {
    margin-top: 1.2rem;
}
.lead__visual {
	margin-bottom: 3rem;
}
.page-contents__main p + table,
.page-contents__main p + ol.number,
.page-contents__main p + p.border-box,
.page-contents__main p + p.border-box-red {
    margin-top: 1.5rem;
}
.page-contents__main table + p,
.page-contents__main ol.number + p,
.page-contents__main p.border-box + p,
.page-contents__main p.border-box-red + p {
    margin-top: 1.5rem;
}
dl.connection-link {
	  display: block;
    padding: 1.4rem;
}
dl.connection-link dt {
    padding-right: 0.8rem;
}
.footer__bnr-main {
  display: block;
  margin-bottom: 3rem;
}
.footer__bnr-main li {
  width: 100%;
} 
.footer__bnr-main li:not(:last-child) {
		margin-bottom: 1rem;
}
.footer__bnr {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.footer__bnr-main li a {
  border-radius: 1rem;
}
.footer__bnr-sub {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
} 
.footer__bnr-sub {
  display: block;
} 
.footer__bnr-sub li {
  width: auto;
}
.footer__bnr-sub li:not(:last-child) {
  margin-bottom: 1rem;
}
.footer__bnr-sub li a {
  height: 5rem;
  border-radius: 0.8rem;
  font-size: 1.3rem;
  padding-left: 1.5rem;
  padding-right: 2.5rem;
    justify-content: flex-start;
}
.footer__bnr-sub li a::after {
  right: 1.5rem;
  width: 0.6rem;
  height: 0.6rem;
  margin-top: -0.3rem;
  border-top-width: 0.2rem;
  border-right-width: 0.2rem;
}
.footer__add {
  padding-top: 4rem;
  height: 24rem;
}
.footer__add dt img {
  width: 25rem;
} 
.footer__add dd {
  font-size: 1.2rem;
  margin-top: 1rem;
} 
.footer__bottom {
  display: block;
  padding-top: 2rem;
  padding-bottom: 2rem;
    text-align: center;
} 
.footer__bottom-copy {
  font-size: 1.1rem;
    margin-bottom: 1.5rem;
}
.footer__bottom-sns img {
  width: 3rem;
}
    .footer__fix {
        display: none;
    }
.page-ttl {
  height: 26rem;
  padding-top: 6rem;
}

.page-ttl dl {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}  
.page-ttl dd::before {
  width: 1.4rem;
        margin-left: 0.7rem;
        margin-right: 0.7rem;
}
.page-ttl h1 {
  font-size: 2.8rem;
}
.page-ttl ul li {
  font-size: 1.1rem;
  padding-left: 1rem;
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
  padding-right: 1rem;
  border-radius: 3rem;
}
.page-ttl .inner1320::after {
  width: calc(40.8rem * 0.5);
  height: calc(45.1rem * 0.5);
  left: -5rem;
  top: -8rem;
}
.page-ttl span {
  margin-bottom: 0.2rem;
  font-size: 1.3rem;
}
.page-ttl ul {
  margin-top: 0.5rem;
  gap: 0.5rem;
}
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.btn-group li {
  width: calc((100% - 1rem) / 2);
}
.btn-group li a {
  height: 5.7rem;
  border-radius: 0.8rem;
  padding-left: 1rem;
  padding-right: 2.3rem;
    font-size: 1.3rem;
}
.btn-group li a::after {
  right: 1.2rem;
  width: 0.6rem;
  height: 0.6rem;
  margin-top: -0.3rem;
  border-top-width: 0.2rem;
  border-right-width: 0.2rem;
}
.btn-group li a::after {
  right: 1.2rem;
  width: 0.6rem;
  height: 0.6rem;
  margin-top: -0.3rem;
  border-top-width: 0.2rem;
  border-right-width: 0.2rem;
}
.second-ttl {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  padding-bottom: 1.4rem;
  margin-bottom: 1.8rem;
    padding-left: 1.5rem;
}
    .second-ttl span {
        display: block;
    } 
.second-ttl:before {
  top: 0.2rem;
  bottom: 1.4rem;
  width: 0.5rem;
  border-radius: 4rem;
}
.third-ttl {
  font-size: 1.6rem;
  padding-left: 2.2rem;
  margin-bottom: 1.5rem;
    line-height: 1.6;
}
.third-ttl::before {
  width: 0.6rem;
  height: 0.6rem;
    border-width: 0.4rem;
  top: 0.8rem;
}
.sec-mdb {
  margin-bottom: 4.5rem;
}
.com-btn--mdt {
  margin-top: 3rem;
}
.com-btn a {
  height: 5.5rem;
  border-radius: 4rem;
  max-width:30rem;
    margin-left: auto;
    margin-right: auto;
}
.com-btn a::after {
  right: 2rem;
  width: 0.6rem;
  height: 0.6rem;
  margin-top: -0.3rem;
  border-top-width: 0.2rem;
  border-right-width: 0.2rem;
}
.course__schedule-scroll {
    overflow: auto;
}
.course__schedule {
    white-space: nowrap;
    font-size: 1.3rem;
}
.course__schedule td {
  padding: 0.8rem;
  width: 14%;
}
.course__schedule-update {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  margin-top: 0;
}
.course__schedule th {
  padding: 0.7rem;
}
.course__schedule td {
  padding: 0.7rem;
}
.scroll-hint-icon {
  top: calc(50% - 3.5rem) !important;
    left: calc(50% - 5rem) !important;
    width: 11rem !important;
    border-radius: 0.5rem !important;
    padding: 2rem 1rem 0.5rem 1rem !important;
}
.scroll-hint-text {
  font-size: 1rem !important;
  margin-top: 0.5rem !important;
}
.scroll-hint-icon::before {
  width: 2rem !important;
    height: 2rem !important;
}
.scroll-hint-icon::after {
  width: 3.3rem;
  height: 1.2rem;
  top: 0.9rem;
  margin-left: -1.6rem;
}
.course__note {
  padding: 1rem;
  border-radius: 0.5rem;
  font-size: 1.3rem;
  margin-top: 2rem;
}
.course__caution {
  margin-top: 1rem;
  font-size: 1.3rem;
}
.caution-txt {
  font-size: 1.3rem;
  margin-top: 1.5rem;
}
.tbl-basic {
    font-size: 1.3rem;
    line-height: 1.6;
    }
.tbl-basic th {
  padding: 1rem;
  width: 9rem;
}
.tbl-basic td {
  padding: 1rem;
}
.tbl-scroll {
    overflow: auto;
}
.tbl-scroll table{
    white-space: nowrap;
}
.sec-second-mdb {
  margin-bottom: 3rem;
}
.blank-link {
  background-size: 1.4rem;
  padding-right: 1.8rem;
  margin-right: 0.5rem;
}
.dot-list li {
  padding-left: 1.5rem;
}
.dot-list li::before {
    width: 0.6rem;
    height: 0.6rem;
    margin-top: 0;
    top: 1rem;
}
.dot-list--bg li {
  padding: 0.8rem;
  padding-left: 2.7rem;
}
.dot-list--bg li::before {
    top: 1.7rem;
  }
.pdf-list li {
  padding: 0.8rem;
}
.pdf-list li a {
  background-size: 1.4rem;
  padding-left: 2.4rem;
}
.pdf-list {
  margin-top: 3rem;
}
.lead-txt {
  margin-bottom: 3rem;
}
.dot-list li:not(:last-child) {
  margin-bottom: 1rem;
}
.bg-clr {
  border-radius: 1rem;
  padding: 2rem;
}
.txt-link--arrow {
    padding-left: 1.5rem;
    margin-top: 1rem;
}
.txt-link--arrow:before {
    width: 0.6rem;
        height: 0.6rem;
        margin-top: -0.3rem;
        border-top-width: 0.2rem;
        border-right-width: 0.2rem;
}
}

