@media print, all and (min-width: 751px) {
  body {
    font-size: 100%; /* 16pt */
    color: #000000;
    background: #ffffff;
    line-height: 2;
    word-wrap: break-word;
  }
  a,
  span,
  img {
    transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
  }
  :where(a, a:link, a:visited) {
    color: #00326c;
    text-decoration: none;
  }
  :where(a:hover) {
    color: #00326c;
    text-decoration: underline;
  }
  .container {
    width: 100%;
    min-width: 1180px;
  }
  .container-inner {
    width: 960px;
    margin: 0 auto;
  }
  .pc-anchor {
    margin-top: -80px !important;
    padding-top: 80px !important;
  }
  .fade-in {
    opacity: 0;
    -webkit-transform: translate(0, 50px);
    -moz-transform: translate(0, 50px);
    -o-transform: translate(0, 50px);
    -ms-transform: translate(0, 50px);
    transform: translate(0, 50px);
    -webkit-transition: all 500ms;
    -moz-transition: all 500ms;
    -o-transition: all 500ms;
    -ms-transition: all 500ms;
    transition: all 500ms;
  }
  .scroll-in {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  /* HEADER */
  #header {
    height: 110px;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
  }
  #header .container-inner {
    width: calc(100% - (100% - 960px) / 2 - 40px);
    height: 100%;
    padding: 0 40px 0 30px;
    margin: 0 0 0 auto;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    gap: 0 20px;
    position: relative;
    z-index: 2;
  }
  #header .container-inner:after {
    content: "";
    display: block;
    width: 100%;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.75);
    border-radius: 50px 0 0 50px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
  }
  #header .container-inner .primary {
    height: 100%;
    padding-top: 53px;
    box-sizing: border-box;
  }
  #header .container-inner .primary .h-logo {
    margin-bottom: 0;
  }
  #header .container-inner .primary .h-logo a {
    display: block;
    text-decoration: none;
  }
  #header .container-inner .primary .h-logo a img {
    vertical-align: middle;
  }
  #header .container-inner .primary .h-logo a:hover {
    text-decoration: none;
    filter: alpha(opacity=60); /* IE 6,7*/
    -ms-filter: "alpha(opacity=60)"; /* IE 8,9 */
    -moz-opacity: 0.6; /* FF , Netscape */
    -khtml-opacity: 0.6; /* Safari 1.x */
    opacity: 0.6;
    zoom: 1; /*IE*/
  }
  #header .container-inner .secondary {
    height: 100%;
    box-sizing: border-box;
  }
  /* NAV */
  #nav {
    height: 100%;
  }
  #nav #pc-nav {
    height: 100%;
    margin-bottom: 0;
    display: flex;
    gap: 0 50px;
    line-height: 1.45;
  }
  #nav #pc-nav a {
    text-decoration: none;
    color: #000;
    position: relative;
  }
  #nav #pc-nav > li {
    height: 100%;
    padding-top: 30px;
    box-sizing: border-box;
    position: relative;
  }
  #nav #pc-nav > li > a {
    display: block;
    height: 100%;
    padding-top: 26px;
    font-size: 125%; /* 20px */
    font-weight: bold;
    box-sizing: border-box;
  }
  #nav #pc-nav > li > a.space01 {
    letter-spacing: 0.5em;
    text-align: center;
  }
  #nav #pc-nav > li > a:before {
    content: "";
    width: 4px;
    height: 50px;
    border-radius: 0 0 10px 10px;
    background-color: #46bef1;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translate(-50%, -100%);
    transition: transform 0.3s ease-in-out;
    pointer-events: none;
  }
  #nav #pc-nav > li > a:hover {
    color: #00326c;
  }
  #nav #pc-nav > li:hover > a:before {
    transform: translate(-50%, 0);
  }
  #nav #pc-nav > li.on > a:before {
    transform: translate(-50%, 0);
  }
  #nav #pc-nav > li > .subbox {
    display: none;
    width: 190px;
    position: absolute;
    top: 110px;
    left: 50%;
    transform: translateX(-50%);
  }
  #nav #pc-nav > li > .subbox > .second {
    width: 100%;
    height: calc(100% - 15px);
    padding: 20px 15px 20px 30px;
    margin: 15px 0 0;
    box-sizing: border-box;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.75);
    border-radius: 4px;
  }
  #nav #pc-nav > li > .subbox > .second > li:not(:last-of-type) {
    margin-bottom: 12px;
  }
  #nav #pc-nav > li > .subbox > .second > li > a {
    display: block;
    font-size: 112.5%; /* 18px */
    transition: color 0.3s ease-in-out;
    position: relative;
  }
  #nav #pc-nav > li > .subbox > .second > li > a.space02 {
    letter-spacing: 0.75em;
  }
  #nav #pc-nav > li > .subbox > .second > li > a:before {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background-color: #46bef1;
    position: absolute;
    top: 12px;
    left: -30px;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
  }
  #nav #pc-nav > li > .subbox > .second > li > a:hover {
    color: #00326c;
    font-weight: bold;
  }
  #nav #pc-nav > li > .subbox > .second > li > a:hover:before {
    transform: translateX(0);
  }
  #nav #pc-nav > li > .subbox > .second > li.on > a, #nav #pc-nav > li > .subbox > .second > li.open > a {
    color: #00326c;
    font-weight: bold;
  }
  #nav #pc-nav > li > .subbox > .second > li.on > a:before, #nav #pc-nav > li > .subbox > .second > li.open > a:before {
    transform: translateX(0);
  }
  /* FOOTER */
  #footer {
    background-color: #46bef1;
  }
  #footer a {
    color: #000;
  }
  #footer .container-inner {
    padding: 37px 0 32px;
  }
  #footer .container-inner .f-sign {
    margin-bottom: 17px;
  }
  #footer .container-inner .f-sign .f-names {
    margin-bottom: 20px;
  }
  #footer .container-inner .f-sign .f-names .f-name {
    text-align: center;
  }
  #footer .container-inner .f-sign .f-names .f-name > a {
    display: block;
    text-decoration: none;
    font-size: 125%; /* 20px */
    font-weight: bold;
    line-height: 1.6;
  }
  #footer .container-inner .f-sign .f-names .f-name > a .subject {
    font-size: 120%; /* 24px */
  }
  #footer .container-inner .f-sign .f-names .f-name > a:hover {
    filter: alpha(opacity=60); /* IE 6,7*/
    -ms-filter: "alpha(opacity=60)"; /* IE 8,9 */
    -moz-opacity: 0.6; /* FF , Netscape */
    -khtml-opacity: 0.6; /* Safari 1.x */
    opacity: 0.6;
    zoom: 1; /*IE*/
  }
  #footer .container-inner .f-sign .f-address {
    text-align: center;
  }
  #footer .container-inner .f-sign .f-address .f-place {
    display: inline-block;
    margin-right: 12px;
  }
  #footer .container-inner .f-sign .f-address .f-tel {
    display: inline-block;
    margin-right: 12px;
  }
  #footer .container-inner .f-sign .f-address .f-fax {
    display: inline-block;
  }
  #footer .container-inner .f-sign .f-banner {
    width: 740px;
    margin-inline: auto;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, 1fr);
  }
  #footer .container-inner .f-sign .f-banner .banner > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 8px 13px;
    line-height: 1.375;
    box-sizing: border-box;
    font-weight: bold;
    text-decoration: none;
    background-color: #ffffff;
    text-align: center;
    transition: filter 0.3s ease-in-out;
  }
  #footer .container-inner .f-sign .f-banner .banner > a:hover {
    filter: brightness(0.8);
  }
  #footer .copyright {
    margin: 0;
    font-size: 85.7142%;
    line-height: 1.75;
    text-align: center;
  }
  /* NAVIGATION */
  #toggle {
    display: none;
  }
  .fixed {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    top: -40px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    z-index: 9999;
  }
  /* TITLE */
  #title {
    height: 420px;
    margin-bottom: 15px;
    background-image: url(../images/common/title-bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
  #title .container-inner {
    height: 100%;
    display: flex;
    align-items: flex-end;
  }
  #title .container-inner .title-box {
    line-height: 1.45;
    padding-bottom: 37px;
    color: #00326c;
  }
  #title .container-inner .title-box .level01 {
    font-size: 150%; /* 24px */
    font-weight: bold;
    margin-bottom: 7px;
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.8), 0 0 5px rgba(255, 255, 255, 0.8);
  }
  #title .container-inner .title-box .title {
    font-size: 225%; /* 36px */
    font-weight: bold;
    margin-bottom: 0;
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.8), 0 0 5px rgba(255, 255, 255, 0.8);
  }
  /* CONTENT */
  :where(#content a) {
    text-decoration: underline;
  }
  #breadcrumb {
    text-align: right;
    line-height: 1.55;
    margin-bottom: 70px;
  }
  #breadcrumb li {
    display: inline-block;
    vertical-align: middle;
    font-size: 87.5%; /* 14px */
  }
  #breadcrumb li a {
    color: #000;
  }
  #breadcrumb li a:hover {
    text-decoration: none;
    color: #00326c;
    font-weight: bold;
  }
  #breadcrumb li.on {
    color: #00326c;
    font-weight: bold;
  }
  #side .side-label {
    font-size: 112.5%; /* 18px */
    font-weight: bold;
    line-height: 1.55;
    padding-left: 20px;
    margin-bottom: 15px;
    position: relative;
  }
  #side .side-label:before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #78ce56;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 0;
  }
  #side .side-slist {
    margin-left: 10px;
  }
  #side .side-slist > li:not(:last-of-type) {
    margin-bottom: 5px;
  }
  #side .side-slist > li > a {
    display: block;
    font-size: 112.5%; /* 18px */
    text-decoration: none;
    padding-left: 32px;
    color: #000;
    position: relative;
  }
  #side .side-slist > li > a:hover {
    text-decoration: underline;
  }
  #side .side-slist > li > a:before {
    content: "";
    display: inline-block;
    width: 23px;
    height: 7px;
    background-image: url(../images/common/arrow02-green_icon.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 14px;
    left: 0;
  }
  .section {
    margin-bottom: 120px;
  }
  .section-s {
    margin-bottom: 80px;
  }
  .section-ss {
    margin-bottom: 60px;
  }
  .section-sss {
    margin-bottom: 40px;
  }
  .section-ssss {
    margin-bottom: 20px;
  }
  .pagetop {
    position: fixed;
    bottom: 0;
    right: 0;
    text-align: right;
    margin: 0;
    z-index: 5000;
  }
  .pagetop a {
    display: block;
    width: 50px;
    height: 50px;
    line-height: 0;
    text-decoration: none;
    background-color: #00326c;
    position: relative;
  }
  .pagetop a:hover {
    filter: alpha(opacity=60); /* IE 6,7*/
    -ms-filter: "alpha(opacity=60)"; /* IE 8,9 */
    -moz-opacity: 0.6; /* FF , Netscape */
    -khtml-opacity: 0.6; /* Safari 1.x */
    opacity: 0.6;
    zoom: 1; /*IE*/
  }
  .pagetop a img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
  #md-site.blue .pagetop a,
  #md-site.black .pagetop a {
    background-color: transparent;
  }
  .inlink {
    margin-top: -70px;
    padding-top: 70px;
  }
  /* SNAV */
  /* SUBNAV */
  #bottoms {
    display: none;
  }
}
@media print, all and (min-width: 751px) and (max-width: 1250px) {
  #nav #pc-nav {
    gap: 0 40px;
  }
}

/*# sourceMappingURL=layout_pc.css.map */
