/*
Theme Name: Test_theme Child
Version: 1.0
Template: koco2025
*/

/*Header Setting*/
html {
  scroll-behavior: smooth;
}

@media screen and (min-width: 768px) {
	html {
		scroll-behavior: smooth;
		scroll-padding-top: 94px;
	}
}

.headerArea {
  width: 100%;
  height: 98px;
}

.headArea__headline {
  width: 100%;
  height: 30px;
  background-color: #2F3157;
}

.headArea__headline h1 {
  font-family: "Inter", sans-serif;
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  line-height: 30px;
  text-align: center;
  margin-block-start: 0em!important;
  margin-block-end: 0em!important;
}

@media screen and (min-width: 768px) {
}

@media screen and (min-width: 1500px) {
  .headerArea {
    height: 134px;
  }
  .headArea__headline {
    width: 100%;
    height: 40px;
  }
  .headArea__headline h1 {
    font-size: 14px;
    line-height: 40px;
    letter-spacing: 0.13em;
  }
}

.c-header {
  width: 100%;
  background-color: #fff;
}

.c-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 68px;
  padding: 14px 60px 14px 14px;
}

@media screen and (min-width: 768px) {
}

@media screen and (min-width: 1500px) {
  .c-header__inner {
    height: 94px;
    padding: 22px 30px;
		background-color: #fff;
		transition: all 0.4s ease-in-out;
  }
  .c-header__inner.nav_fixed {
		position: fixed;
		background-color: #fff;
		box-shadow: 10px 10px 10px rgba(0,0,0,0.1);
		top: 0;
		left: 0;
		right: 0;
		z-index: 100;
		transition: all 0.4s ease-in-out;
  }
}

.headerArea__logo {
  height: 32px;
}

.headerArea__logo {
  margin: 0;
  width: 124px;
  height: 32px;
}

.headerArea__logo h1 {
  margin: 0;
  width: 100%;
  height: 100%;
}

.headerArea__logo h1 a {
  margin: 0;
  width: 100%;
  height: 100%;
}

.headerArea__logo h1 img {
  height: 32px;
  vertical-align: top;
}

@media screen and (min-width: 768px) {
}

@media screen and (min-width: 1500px) {
  .headerArea__logo {
    margin: 0;
    width: 192px;
    height: 48px;
  }
  .headerArea__logo h1 img {
    height: 48px;
  }
}

.headerArea__logo-menu.sp-view {
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
}

@media screen and (min-width: 1500px) {
  .headerArea__logo-menu.sp-view {
    display: none;
  }
}

.headerNavigation__contact.pc-view {
  display: none;
}

.headerNavigation__contact.sp-view {
  display: block;
}

.headerNavigation__contact {
  padding: 0 10px;
  width: 124px;
  height: 40px;
  background-color: #3C7EB1;
  border-radius: 5px;
}

.headerNavigation__contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.headerNavigation__contact span {
  position: relative;
  padding-left: 25px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 200;
  line-height: 40px;
}

.headerNavigation__contact span:before {
  margin: auto;
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url(./images/icon_mail2.png);
  background-size: contain;
  top: 0;
  left: 0;
  bottom: 0;
}

@media screen and (min-width: 768px) {
}

@media screen and (min-width: 1500px) {
  .headerNavigation__contact {
    width: 175px;
    height: 50px;
    border-radius: 25px;
  }
  .headerNavigation__contact.pc-view {
    display: block;
  }
  .headerNavigation__contact.sp-view {
    display: none;
  }
  .headerNavigation__contact span {
    font-size: 14px;
  }
}

.headerNavigationBtn {
  display: block;
  position: fixed;
  top: 45px;
  right: 15px;
  width: 34px;
  height: 34px;
  border-radius: 5px;
  z-index: 1000;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}

.headerNavigationBtn span {
  position: absolute;
  margin: auto;
  width: 34px;
  height: 2px;
  background-color: #303157;
  transition: all 0.4s ease-in-out;
  z-index: 1001;
  left: 0;
  right: 0;
}

.headerNavigationBtn span:first-of-type {
  top: 8px;
}

.headerNavigationBtn span:last-of-type {
  top: 16px;
}

.headerNavigationBtn .headerNavigationBtn__text.close-view {
  position: absolute;
  width: 100%;
  color: #303157;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  text-align: center;
  top: 24px;
  opacity: 1;
}

.headerNavigationBtn .headerNavigationBtn__text.open-view {
  opacity: 0;
}

.headerNavigationBtn.active {
  top: 20px;
  transition: all 0.4s ease-in-out;
}

.headerNavigationBtn.active span {
  background-color: #fff;
  transition: all 0.4s ease-in-out;
}

.headerNavigationBtn.active span:first-of-type {
  top: 16px;
  transform: rotate(-45deg);
}

.headerNavigationBtn.active span:last-of-type {
  top: 16px;
  transform: rotate(45deg);
}

.headerNavigationBtn.active .headerNavigationBtn__text.close-view {
  opacity: 0;
}

.headerNavigationBtn.active .headerNavigationBtn__text.open-view {
  position: absolute;
  width: 100%;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  text-align: center;
  top: 30px;
  opacity: 1;
}

@media screen and (min-width: 768px) {
}

@media screen and (min-width: 1500px) {
  .headerNavigationBtn {
    display: none;
  }
}

.headerArea__menu {
  padding: 40px 15px 100px;
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: rgba(31,37,70,0.95);
  transform: translateX(100%);
  transition: all 0.4s ease-in-out;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  z-index: 100;
}

.headerArea__menu.active {
  padding: 40px 15px 100px;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(31,37,70,0.95);
  transform: translateX(0%);
  transition: all 0.4s ease-in-out;
  opacity: 1;
  z-index: 100;
}

.headerNavigation {
  padding: 0 30px;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}

.headerNavigation__inner {
}

.headerNavigation ul {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.headerNavigation ul li {
  display: flex;
  align-items: center;
}

.headerNavigation li a {
  padding: 10px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.headerNavigation li a span {
  color: #818091;
  font-size: 12px;
  font-weight: 300;
}

@media screen and (min-width: 768px) {
  .headerNavigation ul li.sp-view {
    display: none;
  }
}

@media screen and (min-width: 1500px) {
  .headerArea__menu {
    padding: initial;
    position: relative;
    width: calc(100% - 192px);
    height: 50px;
    display: flex;
    align-items: center;
    background-color: initial;
    transform: initial;
    transition: initial;
    top: initial;
    right: initial;
    bottom: initial;
    left: initial;
    opacity: 1;
    z-index: 100;
  }

  .headerArea__menu.active {
    transition: initial;
  }
  .headerNavigation {
    padding: 0 30px;
    width: calc(100% - 175px);
    box-sizing: border-box;
    height: initial;
    overflow-y: initial;
  }
  .headerNavigation ul {
    margin-bottom: initial;
    width: 100%;
    display: flex;
    flex-direction: initial;
    justify-content: space-between;
  }
  .headerNavigation li a {
    padding: 0 5px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #333333;
    font-size: 14px;
    font-weight: 500;
  }

  .headerNavigation li a span {
    color: #979797;
    font-size: 10px;
    font-weight: 300;
  }
}

@media screen and (min-width: 1650px) {
  .headerNavigation li a {
    font-size: 16px;
  }

  .headerNavigation li a span {
    font-size: 12px;
  }
}

/*Contents Setting*/
.c-contents {
  padding: 0 15px;
}
.c-contents.reverse {
  padding: 0 15px;
  background-color: #F9FAFC;
}
.c-contents__inner {
  padding: 50px 0;
}

@media screen and (min-width: 768px) {
  .c-contents {
    padding: 0 20px;
  }
  .c-contents__inner {
    padding: 50px 0;
  }
}

@media screen and (min-width: 1000px) {
  .c-contents {
    padding: 0 40px;
  }
  .c-contents__inner {
    padding: 100px 0;
  }
}

/*Heading Setting*/
h2.c-heading {
  margin-bottom: 20px;
  color: #3C7EB1;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
}

h2.c-heading span {
  display: block;
  font-size: 12px;
  font-family: "Inter", sans-serif;
}

h3.c-heading {
  margin-bottom: 10px;
  color: #3C7EB1;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}

h3.c-heading span {
  display: block;
  font-size: 12px;
}

h4.c-heading {
  margin-bottom: 10px;
  color: #3C7EB1;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}

h4.c-heading span {
  display: block;
  font-size: 16px;
}

@media screen and (min-width: 768px) {
  h2.c-heading {
    margin-bottom: 40px;
    color: #3C7EB1;
    font-size: 32px;
  }

  h2.c-heading span {
    display: block;
    font-size: 16px;
  }
}

/*morelink Setting*/
.morelink {
  margin: 20px auto 0;
  width: 100%;
  height: 58px;
}

.morelink a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  background-color: #3C7EB1;
  border: 1px solid #fff;
  transition: all 0.4s ease-in-out;
}

.morelink a:hover {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  color: #303157;
  background-color: #fff;
  border: 1px solid #303157;
  transition: all 0.4s ease-in-out;
}

.morelink a:before {
  margin: auto;
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #fff;
  top: 0;
  right: 16px;
  bottom: 0;
}

.morelink a:after {
  margin: auto;
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3.5px 0 3.5px 4px;
  border-color: transparent transparent transparent #3C7EB1;
  top: 0;
  right: 21px;
  bottom: 0;
}

.morelink a span {
  padding-right: 20px;
}

@media screen and (min-width: 768px) {
  .morelink {
    margin: 40px auto 0;
    width: 300px;
    height: 60px;
  }
  .morelink a {
    font-size: 16px;
  }
}

/*morelink2 Setting*/
.morelink2 {
  margin: 10px auto 0;
  width: 100%;
  height: 58px;
}

.morelink2 a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  background-color: #074575;
  border: 1px solid #fff;
  transition: all 0.4s ease-in-out;
  font-size: 16px;
  line-height: 50px;
  text-align: center;
  border-radius: 5px;
}

.morelink2 a span {
  padding-right: 20px;
}

.morelink2 a:hover {
  color: #303157;
  background-color: #fff;
  border: 1px solid #303157;
  transition: all 0.4s ease-in-out;
}

.morelink2 a:after {
  margin: auto;
  position: absolute;
  content: "";
  width: 22px;
  height: 22px;
  background-image: url(./images/icon_pdf.png);
  top: 0;
  right: 15px;
  bottom: 0;
}

@media screen and (min-width: 768px) {
  .morelink {
    margin: 40px auto 0;
    width: 300px;
    height: 60px;
  }
  .morelink a {
    font-size: 16px;
  }
}

/*WhatsAA Setting*/
.whatsAA {
  text-align: center;
}

.whatsAA p {
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  text-align: left;
}

.whatsAA p br:nth-child(4),
.whatsAA p br:nth-child(5),
.whatsAA p br:nth-child(6),
.whatsAA p br:nth-child(7),
.whatsAA p br:nth-child(8),
.whatsAA p br:nth-child(11),
.whatsAA p br:nth-child(12),
.whatsAA p br:nth-child(13) {
  display: none;
}

@media screen and (min-width: 768px) {
  .whatsAA p {
    font-size: 16px;
    text-align: center;
  }
}

/*newsInformation Setting*/
.newsInformation {
  padding: 10px 10px 10px 10px;
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
  background-color: #fff;
  border-radius: 10px;
}

.newsInformation__inner {
  padding: 10px 10px 10px 10px;
  margin: 0 auto;
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
}

.newsInformation__inner::-webkit-scrollbar {
  width: 5px;
}

.newsInformation__inner::-webkit-scrollbar-thumb {
  background-color: #DEDEDE;
  border-radius: 2px;
}

.newsInformation dl {
  display: flex;
  flex-flow: row wrap;
  padding: 10px;
}

.newsInformation dt {
  margin-bottom: 5px;
  width: 100px;
  color: #7A7A7A;
  font-size: 12px;
  font-weight: 500;
}

.newsInformation dd {
  width: 100%;
}

.newsInformation dd a {
  color: #333333;
  font-size: 14px;
}

.newsInformation dd a:visited {
  color: #333333;
}

.newsInformation dl:nth-child(n+2) {
  padding: 10px;
  border-top: 1px solid #A4A4A4;
}

@media screen and (min-width: 768px) {
  .newsInformation dt {
    margin-right: 10px;
    width: 200px;
  }
  .newsInformation dd {
    width: calc(100% - 210px);
    font-size: 14px;
  }
}

#topEvent .morelink.newyear {
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  #topEvent .morelink.newyear {
    margin-top: 20px;
  }
}

/*meetingGuidance Setting*/
.meetingGuidance {
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}

.meetingGuidance__map {
  margin-bottom: 20px;
  width: 100%;
}

.meetingGuidance__navigation {
  width: 100%;
}

.guidanceList {
  display: block;
}

.guidanceList.withMap {
  margin-top: 20px;
}

.guidanceList__inner {
  display: flex;
  flex-flow: row wrap;
}

.guidanceList__inner ul {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
}

.guidanceList__inner ul li {
  margin-right: 10px;
  width: calc((100% - 10px)/2);
}

.guidanceList__inner ul li.kyushu {
  width: 100%;
}

.guidanceList__inner ul li:nth-child(2n+1) {
  margin-right: 0px;
}

.guidanceList__inner ul li:nth-child(n+2) {
  margin-top: 10px;
}

.guidanceList__inner ul li a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  background-color: #074575;
  border: 1px solid #fff;
  transition: all 0.4s ease-in-out;
  font-size: 14px;
  font-weight: 500;
  line-height: 50px;
  text-align: center;
  border-radius: 5px;
}

.guidanceList__inner ul li a:hover {
  color: #303157;
  background-color: #fff;
  border: 1px solid #303157;
}

.guidanceList__inner ul li a:after {
  margin: auto;
  position: absolute;
  content: "";
  width: 22px;
  height: 22px;
  background-image: url(./images/icon_pdf.png);
  top: 0;
  right: 10px;
  bottom: 0;
}

.guidanceList.withMap ul {
  width: 100%;
}

.guidanceList.withMap ul li {
  margin: 0;
  width: 100%;
}

.guidanceList.withMap ul li:nth-child(n+2) {
  margin-top: 10px;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .meetingGuidance__map {
    margin-bottom: 20px;
    width: 500px;
  }
  .meetingGuidance__navigation {
    width: calc((100% - 20px)/2);
  }
}

@media screen and (min-width: 1000px) {
  .meetingGuidance__map {
    margin-right: 20px;
    margin-bottom: initial;
    width: 480px;
  }
}

/*publishPaper Setting*/
.publishPaper {
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-flow: row wrap;
  flex-direction: row-reverse;
  justify-content: center;
}

.publishPaper__photo {
  margin-bottom: 20px;
  width: 100%;
}

.publishPaper__text {
  width: 100%;
  text-align: center;
}

.publishPaper__text p {
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  text-align: left;
}

.publishPaper__text p br {
  display: none;
}

.publishPaper .morelink {
  margin-top: 20px;
}

.publishPaper .morelink:last-child {
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  .publishPaper__photo {
    margin: 0;
    width: 400px;
  }
  .publishPaper__text {
    margin-right: 35px;
    width: calc(100% - 435px);
    text-align: center;
  }
  .publishPaper__text p {
    font-size: 14px;
  }
  .publishPaper__text p br {
    display: block;
  }
  .publishPaper .morelink:last-child {
    margin-top: 10px;
  }
  .publishPaper .morelink2 {
    max-width: 300px;
  }
}

/*CatalogList Setting*/
.CatalogList {
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}

.CatalogList__photo {
  margin-bottom: 20px;
  width: 100%;
}

.CatalogList__text {
  width: 100%;
  text-align: center;
}

.CatalogList__text div {
  display: inline-block;
  font-size: 14px;
  text-align: left;
}

.CatalogList__text div > br:nth-child(2) {
  display: none;
}

.CatalogList__text div p {
  padding: 15px 10px;
  display: block;
  color: #333333;
  font-size: 14px;
  font-weight: 200;
  line-height: 2;
  text-align: left;
  background-color: #F9FAFC;
  border-radius: 10px;
}

.CatalogList__text div p span {
  display: inline-block;
  width: 60px;
  color: #7A7A7A;
  font-size: 14px;
  font-weight: 400;
}

.CatalogList__text div p span:last-of-type {
  display: inline-block;
  width: 50px;
  color: #7A7A7A;
  font-size: 14px;
  font-weight: 400;
}

.CatalogList .morelink {
  margin-top: 20px;
}

.CatalogList .morelink:last-child {
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  .CatalogList__photo {
    margin: 0 20px 0 0;
    width: 400px;
  }
  .CatalogList__text {
    width: calc(100% - 420px);
  }
  .CatalogList__text div {
    text-align: center;
  }
  .CatalogList__text div > br:nth-child(2) {
    display: block;
  }
  .CatalogList .morelink:last-child {
    margin-top: 20px;
  }
  .CatalogList .morelink2 {
    max-width: 290px;
  }
}

@media screen and (min-width: 1000px) {
}

/*Footer Setting*/
.registrationPaper {
}

.registrationList ul {
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}

.registrationList ul li {
  margin-bottom: 20px;
  width: 100%;
}

.registrationList__title {
  margin-bottom: 10px;
  color: #3C7EB1;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}

.registrationList__photo {
  margin-bottom: 10px;
}

.registrationList__text figcaption {
  font-size: 14px;
}

.registrationList ul li:last-child {
  margin-right: 0px;
}

@media screen and (min-width: 768px) {
  .registrationList__text figcaption {
    font-size: 12px;
  }
  .registrationList ul li {
    margin: 0 20px 0 0;
    width: calc((100% - 40px)/3);
  }
}

@media screen and (min-width: 1000px) {
  .registrationList__text figcaption {
    font-size: 14px;
  }
  .CatalogList__text p br:nth-child(2) {
    display: inline;
  }
}

/*mapArea Setting*/
.mapArea {
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}

.mapArea.koco {
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.mapArea__information {
  margin-bottom: 20px;
  width: 100%;
}

.mapArea__title {
  position: relative;
  padding-left: 10px;
  margin-bottom: 10px;
  color: #3C7EB1;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
}

.mapArea__title a {
  color: #3C7EB1;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
	text-decoration: underline;
}

.mapArea__title:before {
  content: "";
  position: absolute;
  margin: auto;
  width: 4px;
  height: 26px;
  background-color: #3C7EB1;
  top: 0;
  left: 0;
  bottom: 0;
}

.mapArea__information dl {
  display: flex;
  border: 1px solid #BBC5CC;
  border-top: none;
}

.mapArea__information dl:first-of-type {
  border-top: 1px solid #BBC5CC;
}

.mapArea__information dl dt {
  padding: 5px 10px;
  width: 76px;
  background-color: #EEF8FF;
  color: #3C7EB1;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
}

.mapArea__information dl dd {
  padding: 5px 5px;
  width: calc(100% - 76px);
  color: #333333;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
}

.mapArea__information dl dd a {
  color: #333333;
}

.mapArea__photo {
  margin-bottom: 10px;
}

.mapArea__map {
  width: 100%;
}

.mapArea .morelink {
  display: none;
}

@media screen and (min-width: 768px) {
  .mapArea__title {
    padding-left: 15px;
    margin-bottom: 15px;
    font-size: 22px;
  }
  .mapArea__title a {
    font-size: 22px;
  }
  .mapArea__information {
    margin: 0 20px 0 0;
    width: 350px;
  }
  .mapArea__information dl dt {
    width: 100px;
    padding: 10px;
    font-size: 16px;
    line-height: 20px;
  }
  .mapArea__information dl dd {
    padding: 10px;
    font-size: 14px;
    line-height: 20px;
  }
  .mapArea__map {
    width: calc(100% - 370px);
  }
  .mapArea .morelink {
    display: block;
    margin: 25px auto 0;
  }
}

@media screen and (min-width: 1000px) {
  .mapArea__information {
    margin-right: 40px;
    width: 450px;
  }
  .mapArea__map {
    width: calc(100% - 490px);
  }
}

/*office Information Setting*/
.officeInformation {
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
}

.officeInformation ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}

.officeInformation ul li {
  width: 100%;
}

.officeInformation ul li:nth-child(2n) {
  margin-right: 0px;
}

.officeInformation ul li:nth-child(n+2) {
  margin-top: 20px;
}

.officeInformation__title {
  position: relative;
  padding-left: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  height: 26px;
  line-height: 26px;
  text-align: left;
  color: #3C7EB1;
}

.officeInformation__title a {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  height: 26px;
  line-height: 26px;
  text-align: left;
  color: #3C7EB1;
	text-decoration: underline;
}

.officeInformation__title:before {
  content: "";
  position: absolute;
  margin: auto;
  width: 4px;
  height: 26px;
  background-color: #3C7EB1;
  top: 0;
  left: 0;
  bottom: 0;
}

.officeInformation ul li dl {
  display: flex;
  border: 1px solid #BBC5CC;
  border-top: none;
}

.officeInformation ul li dl:first-of-type {
  border-top: 1px solid #BBC5CC;
}

.officeInformation ul li dl dt {
  padding: 5px 10px;
  width: 76px;
  background-color: #EEF8FF;
  color: #3C7EB1;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
}

.officeInformation ul li dl dd {
  padding: 5px;
  width: calc(100% - 76px);
  color: #333;
  font-size: 12px;
  line-height: 20px;
  background-color: #fff;
}

.officeInformation ul li dl dd a {
  color: #333;
}

.officeInformation__text {
  padding: 5px;
  background-color: #fff;
  border: 1px solid #BBC5CC;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .officeInformation__title {
    padding-left: 15px;
    margin-bottom: 15px;
    font-size: 22px;
    height: 26px;
    line-height: 26px;
  }
  .officeInformation__title a {
    font-size: 22px;
    height: 26px;
    line-height: 26px;
  }
  .officeInformation ul li {
    margin-right: 20px;
    width: calc((100% - 20px)/2);
  }
  .officeInformation ul li:nth-child(2n) {
    margin-right: 0px;
  }
  .officeInformation ul li:nth-child(n+2) {
    margin-top: 0;
  }
  .officeInformation ul li:nth-child(n+3) {
    margin-top: 20px;
  }
  .officeInformation ul li dl dt {
    padding: 10px;
    width: 100px;
    font-size: 16px;
    line-height: 20px;
  }
  .officeInformation ul li dl dd {
    padding: 10px;
    font-size: 14px;
    line-height: 20px;
  }
  .officeInformation__text {
    padding: 10px;
    font-size: 14px;
  }
}

#contactForm {
  margin: 0 auto;
  max-width: 1000px;
}

#contactForm form > dl > dt {
  padding: 10px 0;
  width: 100%;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
}

#contactForm form > dl > dd {
  margin-bottom: 10px;
  border-bottom: 1px solid #D7D7D7;
  padding: 0 0 20px;
  width: 100%;
}

#contactForm form > dl > dd:last-of-type {
  border-bottom: none;
}

.require-badge {
  margin-right: 10px;
  padding: 0 10px;
  display: inline-block;
  color: #fff;
  font-size: 12px;
  line-height: 24px;
  background-color: #FFA32A;
  border-radius: 5px;
}

.any-badge {
  margin-right: 10px;
  padding: 0 10px;
  display: inline-block;
  color: #fff;
  font-size: 12px;
  line-height: 24px;
  background-color: #BBC5CC;
  border-radius: 5px;
}

#contactForm input[type="text"],
#contactForm input[type="email"],
#contactForm input[type="tel"]{
  display: block;
  padding: 15px;
  width: 100%;
  color: #171717;
  background-color: #EFF2F8;
  border: 1px solid #D7D7D7;
  border-radius: 5px;
}

#contactForm select {
  display: block;
  padding: 15px;
  width: 100%;
  color: ##171717;
  background-color: #F3F3F3;
  border: 1px solid #D7D7D7;
  border-radius: 5px;
}

#contactForm textarea {
  display: block;
  padding: 15px;
  width: 100%;
  height: 185px;
  color: ##171717;
  background-color: #EFF2F8;
  border: 1px solid #D7D7D7;
  border-radius: 5px;
  resize: vertical;
}

#contactForm .address_box_inner dt {
  padding-bottom: 5px;
  font-size: 14px;
  font-weight: 300;
}

.auto-complete-text {
  font-size: 12px;
  font-weight: 300;
  line-height: 24px;
}

#contactForm .address_box_inner dd {
  padding-bottom: 15px;
  font-size: 14px;
  font-weight: 300;
  line-height: 28px;
}

#contactForm .address_box_inner dd select {
  width: 30%;
}

#contactForm .contact_submit {
  width: 100%;
  height: 58px;
}

#contactForm .contact_submit input {
  display: block;
  width: 100%;
  height: 100%;
  color:#fff;
  font-size: 16px;
  font-weight: 300;
  line-height: 58px;
  background-color: #3C7EB1;
  border-radius: 5px;
  border: none;
}

#contactForm .contact_submit input:disabled {
  background-color: #666666;
}

.g-recaptcha > div {
	margin: 20px auto;
	width: 304px;
	height: 78px;
}

.construction {
	padding: 10px 20px;
	color: #fff;
	background-color: #3C7EB1;
	text-align: center;
}


@media screen and (min-width: 768px) {
  #contactForm form > dl {
    display: flex;
    border-bottom: 1px solid #D7D7D7;
  }
  #contactForm form > dl > dt {
    display: flex;
    align-items: center;
    padding: 25px 0;
    width: 260px;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
  }
  #contactForm form > dl > dt.text-top {
    display: flex;
    align-items: flex-start;
  }
  #contactForm form > dl > dd {
    margin-bottom: initial;
    border-bottom: initial;
    padding: 25px 0;
    width: calc(100% - 260px);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
  }
  .require-badge {
    font-size: 14px;
    line-height: 26px;
  }
  .any-badge {
    font-size: 14px;
    line-height: 26px;
  }
  #contactForm input[type="text"],
	#contactForm input[type="email"],
	#contactForm input[type="tel"]{
    font-size: 14px;
  }
  #contactForm select {
    width: 190px;
    font-size: 14px;
  }
  #contactForm textarea {
    font-size: 14px;
  }
  #contactForm .address_box_inner dd select {
    width: 190px;
  }
  #contactForm .contact_submit {
    margin: 25px auto 0;
    width: 300px;
    height: 50px;
  }
  #contactForm .contact_submit input {
    width: 100%;
    height: 100%;
    line-height: 50px;
  }
}

@media screen and (min-width: 1000px) {
}

/*pagetop button Setting*/
#pageTop {
  position: fixed;
	width: 60px;
	height: 60px;
	background-color: #3C7EB1;
	border-radius: 50%;
	right: 10px;
  bottom: 10px;
  z-index: 10;
}

#pageTop a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
}

#pageTop a:before {
	content: "";
	position: absolute;
	margin: auto;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 5px 8px 5px;
	border-color: transparent transparent #FFFFFF transparent;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

@media screen and (min-width: 768px) {
	#pageTop {
		width: 60px;
		height: 60px;
	}
	#pageTop a:before {
		border-width: 0 8px 12px 8px;
	}
}

/*newyearMeetingLink button Setting*/
#newyearMeetingLink {
  position: fixed;
	width: 80px;
	height: 80px;
	background-color: #3C7EB1;
	border-radius: 50%;
	left: 10px;
  bottom: 10px;
  z-index: 10;
}

#newyearMeetingLink a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
}

@media screen and (min-width: 768px) {
	#newyearMeetingLink {
		width: 200px;
		height: 200px;
		right: initial;
		left: 10px;
		bottom: 10px;
	}
}

/*Footer Setting*/
.c-footer {
  padding: 40px 10px 0;
  width: 100%;
  height: auto;
  background-color: #303157;
}

.c-footer__inner {
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footerArea__logo {
  margin-bottom: 60px;
  width: 208px;
  height: 50px;
}

@media screen and (min-width: 768px) {
  .footerArea__logo {
    margin-bottom: 25px;
  }
  .c-footer__inner {
    margin: 0 auto;
    padding: 0 10px 30px;
    max-width: 1200px;
    display: flex;
    flex-direction: initial;
    justify-content: initial;
    flex-direction: row-reverse;
  }
}

/*footerNavigation Setting*/
.footerNavigation {
  padding-bottom: 90px;
  border-bottom: 1px solid #898BB1;
  margin-bottom: 50px;
  display: block;
}

.footerNavigation ul {
  display: flex;
  flex-flow: row wrap;
}

.footerNavigation ul li {
  width: 50%;
}

.footerNavigation ul li a {
  padding: 14px 0;
  width: 100%;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
}

@media screen and (min-width: 768px) {
  .footerNavigation {
    width: 50%;
    padding-bottom: 0px;
    border-bottom: initial;
    margin-bottom: 0px;
  }
  .footerNavigation ul li a {
    padding: 10px 0;
  }
}
@media screen and (min-width: 1000px) {
  .footerNavigation ul {
    padding: 20px 50px;
    display: flex;
    flex-flow: row wrap;
    flex-direction: initial;
    align-items: initial;
  }
  .footerNavigation ul li {
    width: 33.33%;
    border-bottom: none;
  }
  .footerNavigation ul li a {
    margin-bottom: initial;
    padding: 15px 0;
    display: flex;
    flex-direction: column;
    color: #fff;
    font-size: 14px;
    font-weight: 300;
  }
  .footerNavigation ul li a span {
    font-weight: 300;
  }
}

.footerNavigation__other {
	margin-top: 30px;
}

.footerNavigation__other ul {
	display: flex;
	flex-flow: row wrap;
	flex-direction: column;
}

.footerNavigation__other ul li {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footerNavigation__other ul li a {
    padding: 10px 0;
  }
	.footerNavigation__other ul li br {
		display: none;
	}
}
@media screen and (min-width: 1000px) {
	.footerNavigation__other {
		margin-top: 0;
	}
  .footerNavigation__other ul {
    padding: 20px 50px;
    flex-direction: initial;
    align-items: initial;
  }
  .footerNavigation__other ul li {
    width: 100%;
    border-bottom: none;
  }
  .footerNavigation__other ul li a {
    margin-bottom: initial;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    color: #fff;
    font-size: 14px;
    font-weight: 300;
  }
}

/*footerInformation Setting*/
.footerInformation {
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
}

.footerInformation__address {
  margin-bottom: 10px;
}

.footerInformation__address address {
  color: #fff;
  font-size: 12px;
  font-weight: 300;
}

.footerInformation__working {
  margin-bottom: 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 300;
}

.footerInformation__working span {
  display: inline-block;
  width: 60px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
}

.footerInformation__holiday {
  color: #fff;
  font-size: 12px;
  font-weight: 300;
}

.footerInformation__holiday span {
  display: inline-block;
  width: 60px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
}

.footerInformation__tel {
  margin-bottom: 10px;
  color: #fff;
  font-size: 16px;
}

.footerInformation__tel a {
  display: inline-block;
}

.footerInformation__tel a span {
  position: relative;
  padding-left: 30px;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
}

.footerInformation__tel a span:before {
  content: "";
  position: absolute;
  margin: auto;
  width: 22px;
  height: 22px;
  background-image: url(./images/icon_tel2.png);
  background-size: contain;
  top: 0;
  bottom: 0;
  left: 0;
}

.footerInformation__mail {
  margin-bottom: 10px;
}

.footerInformation__mail a {
  display: inline-block;
}

.footerInformation__mail a span {
  position: relative;
  padding-left: 30px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.footerInformation__mail a span:before {
  content: "";
  position: absolute;
  margin: auto;
  width: 22px;
  height: 22px;
  background-image: url(./images/icon_mail2.png);
  background-size: contain;
  top: 0;
  bottom: 0;
  left: 0;
}

@media screen and (min-width: 768px) {
  .footerInformation {
    margin-bottom: initial;
    width: 50%;
    display: flex;
    flex-direction: column;
  }
}

/*copyright Setting*/
.copyright {
  height: 130px;
  text-align: center;
  background-color: #232448;
}

.copyright small {
  padding: 5px 0;
  width: 100%;
  color: #9799BB;
  font-size: 10px;
  line-height: 20px;
}

@media screen and (min-width: 768px) {
	.copyright {
		height: 30px;
	}	
}


/*QandAナビゲーション*/
.page-template-page-qanda .c-sideNavigation {
	padding: 15px 15px 0;
  background-color: #fff;
}

.page-template-page-qanda .c-sideNavigation__inner {
	border: 1px solid #B0CDE3;
	border-radius: 5px;
}

.page-template-page-qanda .c-sideNavigation h2 {
	padding: 0 8px;
	height: 25px;
	color: #3C7EB1;
	font-size: 14px;
	font-weight: 400;
	line-height: 25px;
	background-color: #EEF8FF;
	border-radius: 5px 5px 0 0;
}

.page-template-page-qanda .sideNavigationList {
	padding: 10px;
}

.page-template-page-qanda .sideNavigationList ul {
	padding-right: 10px;
	height: 190px;
	overflow-y: scroll;
}

.page-template-page-qanda .sideNavigationList ul::-webkit-scrollbar {
  width: 5px;
}

.page-template-page-qanda .sideNavigationList ul::-webkit-scrollbar-thumb {
  background-color: #DEDEDE;
  border-radius: 2px;
}

.page-template-page-qanda .sideNavigationList ul li {
	position: relative;
	width: 100%;
	border-bottom: 1px solid #B0CDE3;
}

.page-template-page-qanda .sideNavigationList ul li a {
	padding: 5px;
	color: #3C7EB1;
	font-size: 14px;
	font-weight: 400;
}

@media screen and (min-width: 1500px) {
	.page-template-page-qanda .c-sideNavigation {
		position: fixed;
		padding: 0;
		width: 258px;
		box-shadow: 10px 10px 10px rgba(0,0,0,0.1);
		top: 164px;
		left: 40px;
		background-color: #EEF8FF;
		border-radius: 10px;
	}
	.page-template-page-qanda .c-sideNavigation__inner {
		border: initial;
		border-radius: 10px;
	}
	.page-template-page-qanda .c-sideNavigation h2 {
		display: none;
	}
	.page-template-page-qanda .sideNavigationList {
		padding: 25px 10px;
	}
	.page-template-page-qanda .sideNavigationList ul {
		padding-right: initial;
		height: initial;
		overflow-y: initial;
	}
	.page-template-page-qanda .sideNavigationList ul li {
		border-bottom: initial;
	}

	.page-template-page-qanda .sideNavigationList ul li a {
		padding: 5px 10px;
	}
	.page-template-page-qanda .sideNavigationList ul li.active a {
		background-color: #fff;
		border-radius: 5px;
	}
}

.page-template-page-qanda .c-contents__inner {
	margin: 0 auto;
	width: 100%;
	max-width: 1180px;
}

.page-template-page-qanda .explanation {
	font-size: 14px;
	font-weight: 300;
	line-height: 25px;
	text-align: left;
}

.page-template-page-qanda .explanation br {
	display: none;
}

.page-template-page-qanda #whatsAA .explanation br:nth-of-type(2),
.page-template-page-qanda #whatsAA .explanation br:nth-of-type(3),
.page-template-page-qanda #whatsAA .explanation br:nth-of-type(9),
.page-template-page-qanda #whatsAA .explanation br:nth-of-type(10),
.page-template-page-qanda #whatsAA .explanation br:nth-of-type(14),
.page-template-page-qanda #whatsAA .explanation br:nth-of-type(15),
.page-template-page-qanda #budgetAA .explanation br:nth-of-type(4),
.page-template-page-qanda #budgetAA .explanation br:nth-of-type(5),
.page-template-page-qanda #budgetAA .explanation br:nth-of-type(9),
.page-template-page-qanda #budgetAA .explanation br:nth-of-type(10),
.page-template-page-qanda #religionAA .explanation br:nth-of-type(1),
.page-template-page-qanda #religionAA .explanation br:nth-of-type(2),
.page-template-page-qanda #religionAA .explanation br:nth-of-type(6),
.page-template-page-qanda #religionAA .explanation br:nth-of-type(7),
.page-template-page-qanda #religionAA .explanation br:nth-of-type(10),
.page-template-page-qanda #religionAA .explanation br:nth-of-type(11),
.page-template-page-qanda #religionAA .explanation br:nth-of-type(18),
.page-template-page-qanda #religionAA .explanation br:nth-of-type(19),
.page-template-page-qanda #step12 .explanation br:nth-of-type(2),
.page-template-page-qanda #step12 .explanation br:nth-of-type(3),
.page-template-page-qanda #step12 .explanation br:nth-of-type(6),
.page-template-page-qanda #step12 .explanation br:nth-of-type(7),
.page-template-page-qanda #step12 .explanation br:nth-of-type(9),
.page-template-page-qanda #step12 .explanation br:nth-of-type(10),
.page-template-page-qanda #step12 .explanation br:nth-of-type(11),
.page-template-page-qanda #step12 .explanation br:nth-of-type(12),
.page-template-page-qanda #step12 .explanation br:nth-of-type(15),
.page-template-page-qanda #step12 .explanation br:nth-of-type(16),
.page-template-page-qanda #step12 .explanation br:nth-of-type(18),
.page-template-page-qanda #step12 .explanation br:nth-of-type(19),
.page-template-page-qanda #anonymous .explanation br:nth-of-type(3),
.page-template-page-qanda #anonymous .explanation br:nth-of-type(4),
.page-template-page-qanda #traditions .explanation br:nth-of-type(3),
.page-template-page-qanda #traditions .explanation br:nth-of-type(4),
.page-template-page-qanda #traditions .explanation br:nth-of-type(10),
.page-template-page-qanda #traditions .explanation br:nth-of-type(11),
.page-template-page-qanda #atlast .explanation br:nth-of-type(2),
.page-template-page-qanda #atlast .explanation br:nth-of-type(3),
.page-template-page-qanda #atlast .explanation br:nth-of-type(4),
.page-template-page-qanda #atlast .explanation br:nth-of-type(5) {
	display: block;
}



@media screen and (min-width: 768px) {
	.page-template-page-qanda .explanation {
		font-size: 16px;
		line-height: 30px;
		text-align: center;
	}
	.page-template-page-qanda .explanation br {
		display: block;
	}
}

.page-template-page-qanda .reverse .step12List {
	margin: 30px auto 0;
	padding: 40px 10px;
	width: 100%;
	background-color: #fff;
	border-radius: 10px;
}

.page-template-page-qanda .step12List h3 {
  margin-bottom: 20px;
  color: #3C7EB1;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
}

.page-template-page-qanda .step12List h3 span {
  display: block;
  font-size: 12px;
  font-family: "Inter", sans-serif;
}

.page-template-page-qanda .step12List ul li {
	position: relative;
	padding-left: 30px;
}

.page-template-page-qanda .step12List ul li:nth-child(n+2) {
	margin-top: 15px;
}

.page-template-page-qanda .step12List ul li span.number {
	position: absolute;
	color: #3C7EB1;
	font-size: 20px;
  font-family: "Inter", sans-serif;
	font-weight: 500;
	line-height: 30px;
	top: 0;
	left: 0;
}

.page-template-page-qanda .step12List ul li .main-text p.jp {
	margin-bottom: 5px;
	color: #3C7EB1;
	font-size: 14px;
	font-weight: 500;
	line-height: 24px;
}

.page-template-page-qanda .step12List ul li .main-text p.eng {
	color: #5B5B5B;
	font-size: 12px;
	font-weight: 300;
	letter-spacing: 0.07em;
}

@media screen and (min-width: 768px) {
	.page-template-page-qanda .reverse .step12List {
		margin: 50px auto 0;
		padding: 80px 70px;
		width: 100%;
		max-width: 1000px;
	}
  .page-template-page-qanda .step12List h3 {
    margin-bottom: 40px;
    color: #3C7EB1;
    font-size: 24px;
  }
  .page-template-page-qanda .step12List h3 span {
    display: block;
    font-size: 12px;
  }
	.page-template-page-qanda .step12List ul li {
		padding-left: 50px;
	}
	.page-template-page-qanda .step12List ul li:nth-child(n+2) {
		margin-top: 35px;
	}
	.page-template-page-qanda .step12List ul li span.number {
		position: absolute;
		color: #3C7EB1;
		font-size: 30px;
		font-family: "Inter", sans-serif;
		font-weight: 500;
		line-height: 30px;
		top: 0;
		left: 0;
	}
	.page-template-page-qanda .step12List ul li .main-text p.jp {
		font-size: 18px;
		font-weight: 500;
	}
	.page-template-page-qanda .step12List ul li .main-text p.eng {
		font-size: 16px;
		font-weight: 300;
		letter-spacing: 0.07em;
	}
}

.page-template-page-qanda .anonymousList {
	margin: 30px auto 0;
	padding: 40px 0;
	width: 100%;
	max-width: 1000px;
	border-radius: 10px;
}

.page-template-page-qanda .anonymousList ul.pc-block {
	display: none;
}

.page-template-page-qanda .anonymousList ul li {
	position: relative;
}

.page-template-page-qanda .anonymousList ul li:nth-child(n+2) {
	margin-top: 30px;
}

.page-template-page-qanda .anonymousList ul li .anonymousList__head {
	padding-left: 50px;
	padding-bottom: 15px;
	border-bottom: 1px solid #3C7EB1;
	margin-bottom: 15px;
}

.page-template-page-qanda .anonymousList ul li div.number {
	position: absolute;
	color: #fff;
	background-color: #3C7EB1;
	width: 40px;
	height: 40px;
	font-size: 30px;
  font-family: "Inter", sans-serif;
	font-weight: 500;
	line-height: 40px;
	text-align: center;
	top: 5px;
	left: 0;
}

.page-template-page-qanda .anonymousList ul li .anonymousList__head .title {
	color: #3C7EB1;
	font-size: 14px;
	font-weight: 500;
	line-height: 24px;
}

.page-template-page-qanda .anonymousList ul li .anonymousList__body {
	color: #5B5B5B;
	font-size: 14px;
	font-weight: 300;
	line-height: 24px;
}

.page-template-page-qanda .anonymousList ul li dl dt {
	margin-bottom: 10px;
	color: #3C7EB1;
	font-size: 18px;
	font-weight: 500;
}

.page-template-page-qanda .anonymousList ul li dl dd {
	color: #5B5B5B;
	font-size: 16px;
	font-weight: 300;
	line-height: 34px;
	letter-spacing: 0.07em;
}

@media screen and (min-width: 768px) {
	.page-template-page-qanda .anonymousList {
		margin: 50px auto 0;
		padding: 0 40px;
		width: 100%;
		max-width: 1000px;
		border-radius: 10px;
	}
	.page-template-page-qanda .anonymousList ul.pc-block {
		display: block;
	}
	.page-template-page-qanda .anonymousList ul.sp-block {
		display: none;
	}
	.page-template-page-qanda .anonymousList ul li {
		padding-left: 50px;
	}
	.page-template-page-qanda .anonymousList ul li:nth-child(n+2) {
		margin-top: 50px;
	}
	.page-template-page-qanda .anonymousList ul li span.number {
		position: absolute;
		color: #3C7EB1;
		font-size: 30px;
		font-family: "Inter", sans-serif;
		font-weight: 500;
		line-height: 30px;
		top: 0;
		left: 0;
	}
}

.page-template-page-qanda .reverse .traditions12List {
	margin: 30px auto 0;
	padding: 40px 10px;
	width: 100%;
	max-width: 1000px;
	background-color: #fff;
	border-radius: 10px;
}

.page-template-page-qanda .traditions12List h3 {
  margin-bottom: 20px;
  color: #3C7EB1;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
}

.page-template-page-qanda .traditions12List h3 span {
  display: block;
  font-size: 12px;
  font-family: "Inter", sans-serif;
}

.page-template-page-qanda .traditions12List ul li {
	position: relative;
	padding-left: 30px;
}

.page-template-page-qanda .traditions12List ul li:nth-child(n+2) {
	margin-top: 15px;
}

.page-template-page-qanda .traditions12List ul li span.number {
	position: absolute;
	color: #3C7EB1;
	font-size: 20px;
  font-family: "Inter", sans-serif;
	font-weight: 500;
	line-height: 30px;
	top: 0;
	left: 0;
}

.page-template-page-qanda .traditions12List ul li .main-text p.jp {
	margin-bottom: 5px;
	color: #3C7EB1;
	font-size: 14px;
	font-weight: 500;
	line-height: 24px;
}

.page-template-page-qanda .traditions12List ul li .main-text p.jp br {
	display: none;
}

.page-template-page-qanda .traditions12List ul li .main-text p.eng {
	color: #5B5B5B;
	font-size: 12px;
	font-weight: 300;
	letter-spacing: 0.07em;
}

@media screen and (min-width: 768px) {
	.page-template-page-qanda .reverse .traditions12List {
		margin: 50px auto 0;
		padding: 80px 70px;
		max-width: 1000px;
	}
  .page-template-page-qanda .traditions12List h3 {
    margin-bottom: 40px;
    color: #3C7EB1;
    font-size: 24px;
  }
  .page-template-page-qanda .traditions12List h3 span {
    display: block;
    font-size: 12px;
  }
	.page-template-page-qanda .traditions12List ul li {
		padding-left: 50px;
	}
	.page-template-page-qanda .traditions12List ul li:nth-child(n+2) {
		margin-top: 30px;
	}
	.page-template-page-qanda .traditions12List ul li span.number {
		font-size: 30px;
		font-weight: 500;
		line-height: 30px;
		top: 0;
		left: 0;
	}
	.page-template-page-qanda .traditions12List ul li .main-text p.jp {
		margin-bottom: 5px;
		font-size: 18px;
	}
	.page-template-page-qanda .traditions12List ul li .main-text p.jp br {
		display: block;
	}
	.page-template-page-qanda .traditions12List ul li .main-text p.eng {
		font-size: 16px;
		letter-spacing: 0.07em;
	}
}

.page-template-page-qanda .policyList {
	display: inline-block;
}

.page-template-page-qanda .policyList {
	display: inline-block;
}

.page-template-page-qanda .policyList ul {
	text-align: center;
}

.page-template-page-qanda .policyList ul li {
	margin-bottom: 15px;
	display: block;
  color: #3C7EB1;
	font-size: 14px;
	font-weight: 500;
	text-align: left;
	padding-left: 1em;
	text-indent: -1.2em;

}

.page-template-page-qanda .policyList ul li span {
	display: block;
  color: #5B5B5B;
	font-size: 12px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
	text-indent: initial;
}

@media screen and (min-width: 768px) {
	.page-template-page-qanda .policyList ul li {
		margin-bottom: 30px;
		display: block;
		font-size: 18px;
		padding-left: initial;
		text-indent: initial;
	}
	.page-template-page-qanda .policyList ul li span {
		display: block;
		margin-top: 5px;
		padding-left: 1.5em;
		font-size: 14px;
		line-height: 20px;
	}
}

.page-template-page-qanda .faqList dl {
	padding: 20px;
	background-color:#fff;
	border-radius: 5px;
}

.page-template-page-qanda .faqList dl:nth-child(n+2) {
	margin-top: 20px;
}

.page-template-page-qanda .faqList dl dt {
	padding-right: 30px;
	position: relative;
  color: #3C7EB1;
	font-size: 14px;
	font-weight: 500;
	text-align: left;
}

.page-template-page-qanda .faqList dl dt .toggle-button {
	position: absolute;
	width: 24px;
	height: 24px;
	background-color: #074575;
	border-radius: 50%;
	transition: all 0.2s ease-in-out;
	top: 0;
	right: 0;
}

.page-template-page-qanda .faqList dl dt .toggle-button:before {
	margin: auto;
	content: "";
	position: absolute;
	width: 10px;
	height: 1px;
	background-color: #fff;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.page-template-page-qanda .faqList dl dt .toggle-button:after {
	margin: auto;
	content: "";
	position: absolute;
	width: 1px;
	height: 10px;
	background-color: #fff;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	transition: all 0.2s ease-in-out;
}

.page-template-page-qanda .faqList dl dt .toggle-button.close-button {
	background-color: #BBC5CC;
	transition: all 0.2s ease-in-out;
}

.page-template-page-qanda .faqList dl dt .toggle-button.close-button:after {
	transform: rotate(-90deg);
	transition: all 0.2s ease-in-out;
}

.page-template-page-qanda .faqList dl dd {
	padding-right: 35px;
	overflow: hidden;
	transition: all 0.2s linear;
}

.page-template-page-qanda .faqList dl dd .toggle {
  max-height: 0;
	font-size: 12px;
	font-weight: 300;
	line-height: 24px;
	opacity: 0;
	transition: all 0.2s linear;
}

.page-template-page-qanda .faqList dl dd .toggle.open {
	margin-top: 15px;
	max-height: 1000px;
	opacity: 1;
	transition: all 0.2s linear;
}

@media screen and (min-width: 768px) {
	.page-template-page-qanda .faqList dl {
		padding: 30px 25px 25px 60px;
	}
	.page-template-page-qanda .faqList dl dt {
		padding-right: 35px;
		font-size: 18px;
	}
	.page-template-page-qanda .faqList dl dt .toggle-button {
		width: 30px;
		height: 30px;
	}
	.page-template-page-qanda .faqList dl dt .toggle-button:before {
		width: 12px;
		height: 2px;
	}
	.page-template-page-qanda .faqList dl dt .toggle-button:after {
		width: 2px;
		height: 12px;
	}
	.page-template-page-qanda .faqList dl dd {
		padding-right: 35px;
	}
	.page-template-page-qanda .faqList dl dd .toggle {
		font-size: 16px;
		line-height: 30px;
	}
}

.toggle a {
	display: inline;
}

.page-template-page-qanda .explanation span {
	color: #f00;
}

#eventArea {
	background-color: #F9FAFC;
}

.eventList {
	margin: 20px auto 0;
	width: 100%;
}

.eventList h2 {
	padding-left: 20px;
	position: relative;
	margin-bottom: 20px;
	color: #3C7EB1;
	font-size: 20px;
	font-weight: 500;
}

.eventList h2:before {
	margin: auto;
	content: "";
	position: absolute;
	width: 5px;
	height: 24px;
	background-color: #3C7EB1;
	top: 0;
	left: 0;
	bottom: 0;
}

.eventList h2.nextMonth {
	margin-top: 50px;
}

.eventList .eventItem {
	padding: 20px 10px 20px;
	background-color: #fff;
	border-radius: 10px;
}

.eventList .eventItem h3 {
	margin-bottom: 20px;
	color: #3C7EB1;
	font-size: 14px;
	font-weight: 500;
	text-align: center;
}

.eventList .eventItem h3 span {
	padding: 5px 10px;
	margin-right: 5px;
	display: inline;
	color: #fff;
	font-size: 12px;
	line-height: 18px;
	background-color: #3C7EB1;
	border-radius: 5px;
}

.eventList .eventItem:nth-of-type(n+2) {
	margin-top: 30px;
}

.eventList .eventItem dl dt {
	padding: 5px 20px;
	width: 100%;
	background-color: #EEF8FF;
	font-size: 14px;
	font-weight: 500;
	text-align: center;
}

.eventList .eventItem dl dd {
	padding: 10px;
	width: 100%;
	font-size: 12px;
	text-align: center;
}

@media screen and (min-width: 768px) {
	.eventList {
		margin: 50px auto 0;
		width: 100%;
		max-width: 1000px;
	}
	.eventList h2 {
		font-size: 24px;
	}
	.eventList h2:before {
		height: 28px;
	}
	.eventList .eventItem {
		padding: 50px 70px 50px;
	}
	.eventList .eventItem h3 {
		margin-bottom: 20px;
		font-size: 20px;
	}
	.eventList .eventItem dl dt {
		padding: 5px 20px;
		font-size: 18px;
	}
	.eventList .eventItem dl dd {
		padding: 10px 20px 20px;
		width: 100%;
		font-size: 16px;
		text-align: center;
	}
}

#venueInformation {
	background-color: #F9FAFC;
}

.atfirst {
	text-align: center;
}

.infoNotice {
	display: inline-block;
	width: 100%;
	max-width: 1000px;
	font-size: 14px;
	text-align: left;
}

.infoNotice span {
	color: #f00;
	font-size: 14px;
}

.infoNotice span em {
	color: #f00;
	font-size: 14px;
	text-decoration: underline;
}

.infoNotice .lastUpdate {
	margin-top: 10px;
	color: #3C7EB1;
	font-weight: 500;
	text-align: right;
}

.informationList {
	margin: 20px auto 0;
	width: 100%;
}

.informationList h2 {
	padding-left: 20px;
	position: relative;
	margin-bottom: 20px;
	color: #3C7EB1;
	font-size: 20px;
	font-weight: 500;
}

.informationList h2:before {
	margin: auto;
	content: "";
	position: absolute;
	width: 5px;
	height: 24px;
	background-color: #3C7EB1;
	top: 0;
	left: 0;
	bottom: 0;
}

.informationList h2.nextMonth {
	margin-top: 50px;
}

.informationList .informationSection {
	padding: 20px 10px 20px;
	background-color: #fff;
	border-radius: 10px;
	overflow-x: scroll;
}

.informationList .informationSection h3 {
	margin-bottom: 20px;
	color: #3C7EB1;
	font-size: 14px;
	font-weight: 500;
	text-align: center;
}

.informationList .informationSection h3 span {
	padding: 5px 10px;
	margin-right: 5px;
	display: inline;
	color: #fff;
	font-size: 12px;
	line-height: 18px;
	background-color: #3C7EB1;
	border-radius: 5px;
}

.informationList .informationSection:nth-of-type(n+2) {
	margin-top: 30px;
}

.informationList .informationSection dl {
	display: flex;
}

.informationList .informationSection dl dt {
	padding: 5px 10px;
	width: 100%;
	background-color: #EEF8FF;
	font-size: 14px;
	font-weight: 500;
	text-align: center;
}

.informationList .informationSection dl dd {
	padding: 5px 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	text-align: center;
}

.informationList .informationSection dl .infoArea {
	width: 100px;
	text-align: center;
}

.informationList .informationSection dl .infoGroup {
	width: 130px;
	text-align: center;
}

.informationList .informationSection dl .infoDate {
	width: 100px;
	text-align: center;
}

.informationList .informationSection dl .infoPlace {
	width: 150px;
	text-align: center;
}

.informationList .informationSection dl .infoStatus {
	width: 150px;
	text-align: center;
}

.informationList .informationSection dl .infoNote {
	width: 230px;
}

.informationHeader {
	border-top: 1px solid #ddd;
	border-left: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	min-width: 860px;
}

.informationHeader dt {
	border-right: 1px solid #ddd;
}

.informationItem {
	border-left: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	min-width: 860px;
}

.informationItem dd {
	border-right: 1px solid #ddd;
}

@media screen and (min-width: 768px) {
	.informationList {
		margin: 50px auto 0;
		width: 100%;
		max-width: 1000px;
	}
	.informationList h2 {
		font-size: 24px;
	}
	.informationList h2:before {
		height: 28px;
	}
	.informationList .informationSection {
		padding: 50px 70px 50px;
		overflow-x: initial;
	}
	.informationList .informationSection h3 {
		margin-bottom: 20px;
		font-size: 20px;
	}
	.informationHeader {
		min-width: initial;
	}
	.informationList .informationSection dl dt {
		padding: 5px 10px;
		font-size: 16px;
	}
	.informationList .informationSection dl dd {
		padding: 10px;
		width: 100%;
		font-size: 14px;
		text-align: center;
	}
}

#publishArea {
	background-color: #F9FAFC;
}

.publishList {
	margin: 20px auto 0;
	width: 100%;
}

.publishList h2 {
	padding-left: 20px;
	position: relative;
	margin-bottom: 20px;
	color: #3C7EB1;
	font-size: 20px;
	font-weight: 500;
}

.publishList h2:before {
	margin: auto;
	content: "";
	position: absolute;
	width: 5px;
	height: 24px;
	background-color: #3C7EB1;
	top: 0;
	left: 0;
	bottom: 0;
}

.publishList h2:nth-of-type(n+2) {
	margin-top: 50px;
}

.publishList .publishYearBlock {
	padding: 20px 10px 20px;
	background-color: #fff;
	border-radius: 10px;
}

.publishList .publishItem:nth-child(n+2) {
	margin-top: 10px;
	text-align: center;
}

.publishList .publishItem .publishItem__title {
	text-align: center;
}

.publishList .publishItem .publishItem__title a {
	display: inline-block;
	color: #3C7EB1;
	font-size: 14px;
	font-weight: 500;
	text-align: center;
}

.publishList .publishItem .publishItem__title a:visited {
	color: #3C7EB1;
}

@media screen and (min-width: 768px) {
	.publishList {
		margin: 50px auto 0;
		width: 100%;
		max-width: 1000px;
	}
	.publishList h2 {
		font-size: 24px;
	}
	.publishList h2:before {
		height: 28px;
	}
	.publishList .publishYearBlock {
		padding: 50px 70px 50px;
	}
	.publishList .publishItem:nth-child(n+2) {
		margin-top: 20px;
	}
	.publishList .publishItem .publishItem__title {
		font-size: 20px;
	}
	.publishList .publishItem .publishItem__title a {
		font-size: 20px;
	}
}

#committeeArea {
	background-color: #F9FAFC;
}

.committeeList {
	margin: 20px auto 0;
	width: 100%;
}

.committeeList .committeeItem {
	padding: 20px 10px 20px;
	background-color: #fff;
	border-radius: 10px;
}

.committeeList .committeeItem h3 {
	margin-bottom: 20px;
	color: #3C7EB1;
	font-size: 14px;
	font-weight: 500;
	text-align: center;
}

.committeeList .committeeItem h3 span {
	padding: 5px 10px;
	margin-right: 5px;
	display: inline;
	color: #fff;
	font-size: 12px;
	line-height: 18px;
	background-color: #3C7EB1;
	border-radius: 5px;
}

.committeeList .committeeItem:nth-of-type(n+2) {
	margin-top: 30px;
}

.committeeList .committeeItem dl dt {
	padding: 5px 20px;
	width: 100%;
	background-color: #EEF8FF;
	font-size: 14px;
	font-weight: 500;
	text-align: center;
}

.committeeList .committeeItem dl dd {
	padding: 10px;
	width: 100%;
	font-size: 12px;
	text-align: center;
}

@media screen and (min-width: 768px) {
	.committeeList {
		margin: 50px auto 0;
		width: 100%;
		max-width: 1000px;
	}
	.committeeList .committeeItem {
		padding: 50px 70px 50px;
	}
	.committeeList .committeeItem h3 {
		margin-bottom: 20px;
		font-size: 20px;
	}
	.committeeList .committeeItem dl dt {
		padding: 5px 20px;
		font-size: 18px;
	}
	.committeeList .committeeItem dl dd {
		padding: 10px 20px 20px;
		width: 100%;
		font-size: 16px;
		text-align: center;
	}
}

#otherArea {
	background-color: #F9FAFC;
}

.otherList {
	margin: 20px auto 0;
	width: 100%;
}

.otherList .otherItem {
	padding: 20px 10px 20px;
	background-color: #fff;
	border-radius: 10px;
}

.otherList .otherItem h3 {
	margin-bottom: 20px;
	color: #3C7EB1;
	font-size: 14px;
	font-weight: 500;
	text-align: center;
}

.otherList .otherItem h3 span {
	padding: 5px 10px;
	margin-right: 5px;
	display: inline;
	color: #fff;
	font-size: 12px;
	line-height: 18px;
	background-color: #3C7EB1;
	border-radius: 5px;
}

.otherList .otherItem:nth-of-type(n+2) {
	margin-top: 30px;
}

.otherList .otherItem dl dt {
	padding: 5px 20px;
	width: 100%;
	background-color: #EEF8FF;
	font-size: 14px;
	font-weight: 500;
	text-align: center;
}

.otherList .otherItem dl dd {
	padding: 10px;
	width: 100%;
	font-size: 12px;
	text-align: center;
}

@media screen and (min-width: 768px) {
	.otherList {
		margin: 50px auto 0;
		width: 100%;
		max-width: 1000px;
	}
	.otherList .otherItem {
		padding: 50px 70px 50px;
	}
	.otherList .otherItem h3 {
		margin-bottom: 20px;
		font-size: 20px;
	}
	.otherList .otherItem dl dt {
		padding: 5px 20px;
		font-size: 18px;
	}
	.otherList .otherItem dl dd {
		padding: 10px 20px 20px;
		width: 100%;
		font-size: 16px;
		text-align: center;
	}
}

.newsInformation li {
	color: #333;
  padding: 10px;
}

.newsInformation li:nth-child(n+2) {
  border-top: 1px solid #A4A4A4;
}

.newsInformation .newsList__title {
	margin-bottom: 10px;
}

.newsInformation li .newsList__body p,
.newsInformation li .newsList__body pre {
  font-family: "Noto Sans JP", serif!important;
}