@charset "utf-8";

@import url("reset.css");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
@import url("https://fonts.googleapis.com/css?family=Noto+Serif+JP:400,700&display=swap&subset=japanese");

html {
}

body{
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, sans-serif;
  font-size: 1.1em;
  color: #333;
  margin: auto;
  border-top: 15px solid #146238;
}
@media only screen and (max-width: 1200px) {
  body{
    margin: auto;
  }
}
@media screen and (max-width: 560px) {
  body {
    font-size: 1em;
    min-width: inherit;
    margin: auto;
    padding: 0;
  }
}

img {
  border: none;
}

.material-icons {
  vertical-align: middle;
  font-size: 1.5em !important;
}

table {
  border-collapse: collapse;
}

table.default {
  width: 100%;
  font-style: normal;
}
@media only screen and (max-width: 560px) {
  table.default  {
    font-size: 0.9em;
  }
}

table.default th {
  border: 1px solid #aaa;
  background: #E7F5E8;
  text-align: left;
  padding: 1em 2em;
}
@media only screen and (max-width: 1200px) {
  table.default th {
    padding: 1em;
  }
}
@media only screen and (max-width: 560px) {
  table.default th {
    padding: 0.5em 1em;
    white-space: nowrap;
  }
}

table.default thead th {
  background: #EDEDED;
}


table.default td {
  border: 1px solid #aaa;
  padding: 1em 2em;
  text-align: left;
  background: #FFF;
}
@media only screen and (max-width: 1200px) {
  table.default td {
    padding: 1em;
  }
}
@media only screen and (max-width: 560px) {
  table.default td {
    padding: 0.5em 1em;
  }
}

.border th, .border td {
  border-top: 3px solid #aaa !important;
}


ul.default {
  margin: 0.25em 0;
  padding: 0;
  list-style: none;
  line-height: 1.5em;
}
td ul.default:first-of-type {
  margin: 0;
}

ul.default li {
  margin: 0.25em 0 0.25em 1em;
  padding: 0;
  position: relative;
}

ul.default li:before {
  content: "";
  width: 0.5em;
  height: 0.5em;
  display: inline-block;
  background-color: #485C69;
  border-radius: 50%;
  position: absolute;
  top: 0.5em; 
  left: -1em;
  margin-right: 0.5em;
}


ul.nowrapList li {
  display: inline-block;
  margin-right: 1em;
}

iframe {
  display: block;
}

a {
  color: #1B1B1B;
  transition: all .30s ease;
}

a:hover {
  text-decoration: none;
  transition: all .30s ease;
}

.small {
  font-size: 0.8em;
}

.big {
  font-size: 1.2em;
}

.fontRed {
  color: #FF0000;
}

.fontBlue {
  color: #146238;
}

.fontYellow {
  color: #ffcc00;
}

.fontGreen {
  color: #0A8A00;
}

.fontOrange {
  color: #ff7e00;
}

.fontGray {
  color: #555555;
}

.nowrap {
  white-space: nowrap;
  display: inline-block;
}

img.imgCenter {
  max-width: 100%;
  display: block;
  margin: auto;
}


/*================================================
inview
================================================*/

.scrollView {
  opacity: 0;
  transform: translate(0,50px);
  -webkit-transform: translate(0,50px);
}

.scrollViewAction {
  -webkit-animation: scrollViewA 0.5s forwards ease-in-out;
  animation: scrollViewA 0.5s forwards ease-in-out;
}
@-webkit-keyframes scrollViewA {
  0% {
    opacity: 0;
    -webkit-transform: translate(0,50px);
  }
  100% {
    opacity: 1.0;
    -webkit-transform: translate(0,0);
  }
}
@keyframes scrollViewA {
  0% {
    opacity: 0;
    transform: translate(0,30px);
    -webkit-transform: translate(0,50px);
  }
  100% {
    opacity: 1.0;
    transform: translate(0,0);
    -webkit-transform: translate(0,0);
  }
}

.fadeIn {
  opacity: 0;
}

.fadeInAction {
  -webkit-animation: fadeInA 0.5s forwards ease-in-out;
  animation: fadeInA 0.5s forwards ease-in-out;
}
@-webkit-keyframes fadeInA {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1.0;
  }
}
@keyframes fadeInA {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1.0;
  }
}



header {
  width: auto;
  margin: 0 auto;
  box-shadow: 0px 0px 16px -6px rgba(0,0,0,0.6);
}

header h1 {
  width: auto;
  margin: 0 auto;
  padding: 20px 0;
}

header h1 img {
  display: block;
  margin: 0 auto;
  padding: 0;
  max-width: 80%;
}
@media only screen and (max-width: 560px) {
  header h1 img {
    max-width: 70%;
  }
}



h2 {
  text-align: center;
  font-weight: bold;
  font-size: 2.5em;
  color: #146238;
  margin: 0 auto 50px auto;
  padding: 0;
  line-height: 1.25em;
  position: relative;
}
@media only screen and (max-width: 560px) {
  h2 {
    font-size: 1.7em;

  }
}



#contents {
}
@media only screen and (max-width: 1200px) {
  #contents {
  }
}

#annai {
  background: #E7F5E8;
  padding: 1.5em 1.5em;
  border-radius: 0.5em;
  margin: 5vw 5%;
  max-width: 1200px;
  box-sizing: border-box;
}
@media only screen and (max-width: 560px) {
  #annai {
    max-width: 80vw;
  }
}

.section {
  margin: 0 auto;
  padding: 80px 0 !important;
  width: 100%;
  box-sizing: border-box;
}
.section:nth-child(odd) {
  background: #F3F3F3;
}
@media only screen and (max-width: 1200px) {
  .section {
  }
}
@media only screen and (max-width: 560px) {
  .section {
    padding: 60px 0 !important;
  }
}

.section .sectionInner {
  width: 100%;
  max-width: 1200px;
  margin: 80px auto 0 auto;
  box-sizing: border-box;
  overflow: hidden;
}
@media only screen and (max-width: 1200px) {
  .section .sectionInner {
    margin: 30px auto 0 auto !important;
    padding: 0 5%;
  }
}
@media only screen and (max-width: 560px) {
  .section .sectionInner {
    padding: 0 3%;
  }
}

.section .sectionInner:first-child {
  margin: 0 auto !important;
}

.section .sectionInner p {
  line-height: 1.75em;
  margin: 0.75em 0;
}

#pageLink {
	background: #FFF !important;
}

#pageLink ul {
	background: #F3F3F3;
	border: 3px double #BBB;
	margin: 0 auto;
	padding: 2vw 3vw;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1vw 1vw;
  list-style: none;
}
@media only screen and (max-width: 560px) {
  #pageLink ul {
    padding: 2vw 3vw;
    display: block;
  }
}

#pageLink li {
  margin: 0;
  padding: 0 0 0 1.75em;
  position: relative;
}

#pageLink li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-family: 'Material Icons';
  content: "vertical_align_bottom";
  font-size: 1.5em;
  vertical-align: middle;
  color: #3F5278;
  margin-right: 0.25em;
}

.fileDownload {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3vw 2vw;
}
@media only screen and (max-width: 560px) {
  .fileDownload {
    grid-template-columns: repeat(1, 1fr);
    gap: 3vw 2vw;
  }
}

.fileDownload dl {
  margin: 0;
  padding: 1em 2em;
  border: 2px solid #C0C0C0;
  background: #E8E8E8;
}

.fileDownload dt {
  margin: 0 0 0.5em 0;
  padding: 0;
  font-weight: bold;
}

.fileDownload dd {
  margin: 0;
  padding: 0;
}

.fileDownload dd a {
  margin: 0;
  background: #146238;
  color: #FFF;
  padding: 0.2em 0.75em;
  text-decoration: none;
  font-size: 0.9em;
  border-radius: 1em;
}

.fileDownload dd a:hover {
  opacity: 0.7;
}



.tel {
  font-size: 2.5em;
}
@media only screen and (max-width: 560px) {
  .tel {
    font-size: 7vw;
  }
}

.gMap {
  width: 100%;
  height: 700px;
  box-sizing: border-box;
  border: 12px solid #e5e5e5;
  margin: 1.5em 0 5px 0;
}
@media only screen and (max-width: 560px) {
  .gMap {
    height: 60vh;
  }
}

.note {
  background: #fceaec;
  padding: 0 1em;
  border-radius: 0.5em;
  border: 1px solid #EDC4C8;
  font-size: 0.9em;
  color: rgba(114,0,1,1.00);
  margin-top: 2em;
}



.left {
  width: 47%;
  float: left;
}
@media only screen and (max-width: 560px) {
  .left { 
    width: auto;
    float: none;
    margin: auto;
  }
}

.right {
  width: 47%;
  float: right;
}
@media only screen and (max-width: 560px) {
  .right { 
    width: auto;
    float: none;
    margin: auto;
  }
}



.moreInformation {
  text-align: center;
  margin-top: 1em;
}

.moreInformationLeft {
  text-align: left;
  margin-top: 1em;
}

.moreInformationRight {
  text-align: right;
  margin-top: 1em;
}

.moreInformation a, .moreInformationLeft a, .moreInformationRight a {
  background: #146238;
  color: #FFF;
  padding: 0.75em 2.5em;
  text-decoration: none;
  white-space: nowrap;
  display: inline-block;
  margin: auto;
  line-height: 1em;
  border-radius: 2em;
  font-size: 0.9em;
  position: relative;
}
@media only screen and (max-width: 560px) {
  .moreInformation a, .moreInformationLeft a, .moreInformationRight a {
    padding: 0.5em 2em;
  }
}

.moreInformation a::after, .moreInformationLeft a::after, .moreInformationRight a::after {
  content:'\e5e1';
  font-family: "Material Icons";
  color: #FFF;
  display: inline-block;
  vertical-align: middle;
  padding: 0 0 0 0.5em;
  position: absolute;
  right: 5%;
  top: calc(50% - (1em / 2));
}

.moreInformation a[target="_blank"]::after, .moreInformationLeft a[target="_blank"]::after, .moreInformationRight a[target="_blank"]::after {
  content:'\e89e';
}


.moreInformation a:hover, .moreInformationLeft a:hover, .moreInformationRight a:hover {
  opacity: 0.7 !important;
}

.move-list {
  margin: 30px auto 80px auto;
  padding: 0;
  overflow: hidden;
  text-align: center;
}

.move-list a {
  display: inline-block;
  color: #000;
  background-color: #FFF;
  border: 1px solid #DEDEDE;
  padding: 1em 0;
  text-decoration: none;
  line-height: 1em;
  font-size: 1.2em;
  border-radius: 50%;
  box-sizing: border-box;
  width: 3em;
  height: 3em;
  vertical-align: middle;
}
@media only screen and (max-width: 560px) {
  .move-list a {
    font-size: 1em;
    width: 2em;
    height: 2em;
    padding: 0.5em 0;
  }
}

.move-list a:link, .move-list a:visited {
  background-color:#FFF;
}

.move-list .prevnext {
  background-color: #9b9b9b !important;
  border: none !important;
  color: #FFF;
}

.move-list a:hover {
  color:#363636;
  background-color: #E7E7E7;
}

.move-list .now {
  color: #FFF !important;
  background-color: #000 !important;
}




/*================================================
  #footer
================================================*/



#footerWrapper {
  background: #4e505c;
  margin-top: 5px;
  padding: 0;
}
@media only screen and (max-width: 560px) {
  #footerWrapper {
  }
}

#footer {
  width: fit-content;
  margin: auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  padding:  140px 0 !important;
}
@media only screen and (max-width: 560px) {
  #footer {
    width: 90%;
    display: block;
    padding:  70px 0 !important;
  }
}

#footer > img {
  width: 290px;
  display: block;
}
@media only screen and (max-width: 560px) {
  #footer > img {
    width: 50vw;
    margin: auto auto 40px auto;
  }
}

ul#footerCompanyList {
  margin: 0 0 0 100px;
  padding: 0;
  list-style: none;
  width: 430px;
}
@media only screen and (max-width: 560px) {
  ul#footerCompanyList {
    margin: 0 5vw 0 5vw;
    width: auto;
  }
}

ul#footerCompanyList li {
  margin: 45px 0 0 0;
  padding: 0;
}
@media only screen and (max-width: 560px) {
  ul#footerCompanyList li {
    margin: 20px auto;
    padding: 0;
  }
}

ul#footerCompanyList li:first-of-type {
  margin-top:0;
}

ul#footerCompanyList li dl {
  margin: 0;
  padding: 0;
}

ul#footerCompanyList li dt {
  margin: 0 0 5px 0;
  padding: 0 0 5px 0;
  font-weight: bold;
  font-size: 1.3em;
  border-bottom: 1px solid #7e7f88;
  color: #FFF;
}

ul#footerCompanyList li dd {
  margin: 0;
  padding: 0;
  line-height: 1.75em;
  color: #B8B9BE;
}
@media only screen and (max-width: 560px) {
  ul#footerCompanyList li dd {
    margin: 10px 0 0 0;
    line-height: 1.25em;
  }
}

#copyright {
  color: #FFF;
  text-align: center;
  padding: 15px 0;
  font-size: 1em;
  background: #146238;
}
@media only screen and (max-width: 560px) {
  #copyright {
    font-size: 0.8em;
  }
}




#toTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}
@media only screen and (max-width: 560px) {
  #toTop {
    bottom: 10px;
    right: 10px;
  }
}

#toTop a {
  display: block;
}
@media only screen and (max-width: 560px) {
  #toTop a {
  }
}

#toTop a img {
  display: block;
  width: 100px;
}
@media only screen and (max-width: 560px) {
  #toTop a img {
    width: 60px;
  }
}

#toTop a:hover {
  top: -2px;
  position: relative;
}


/** DeviceControl **/

.pcBlock {
  display: block;
}
@media only screen and (max-width: 1200px) {
  .pcBlock {
      display: inline;
  }
}

.mobileBlock {}
@media only screen and (max-width: 560px) {
  .mobileBlock {
      display: block;
  }
}

.underTabBlock {}
@media only screen and (max-width: 1200px) {
  .underTabBlock {
      display: block;
  }
}

.mobileInline {}
@media only screen and (max-width: 560px) {
  .mobileInline {
      display: inline;
  }
}

.underTabInline {}
@media only screen and (max-width: 1200px) {
  .underTabInline {
      display: inline;
  }
}

.mobileNone {}
@media only screen and (max-width: 560px) {
  .mobileNone {
      display: none;
  }
}

.forUnderTab {
  display: none !important;
}
@media only screen and (max-width: 1200px) {
  .forUnderTab {
      display: block !important;
  }
}

.forPcOnly {}
@media only screen and (max-width: 1200px) {
  .forPcOnly {
      display: none !important;
  }
}

.forPcTab {}
@media only screen and (max-width: 560px) {
  .forPcTab {
      display: none !important;
  }
}

.forTabOnly {
  display: none;
}
@media only screen and (max-width: 1200px) {
  .forTabOnly {
      display: block;
  }
}
@media only screen and (max-width: 560px) {
  .forTabOnly {
      display: none;
  }
}

.forMobileOnly {
  display: none !important;
}
@media only screen and (max-width: 560px) {
  .forMobileOnly {
      display: block !important;
  }
}


/*================================================
loader
================================================*/
      
#loader-bg {
  position: fixed;
  width: 100%;
  height: 100vh !important;
  top: 0px;
  left: 0px;
  background: #F0F0F0;
  z-index: 1001 !important;
}

#loading {
  position: absolute;
  left: calc(50vw - 40px);
  top: calc(50vh - 40px);
  height: 80px;
  animation: 1s linear infinite loadblink;
}
@keyframes loadblink {
  0%{ opacity: 0}
  50%{ opacity: 1}
  100%{ opacity: 0}
}
@media only screen and (max-width: 560px) {
  #loading{
    top: calc(45vh - 60px);
  }
}

#loading img {
  width: 80px !important;
  height: 80px !important;
  z-index: 1002;
}