@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
}
a:hover {
  opacity: 0.9;
}

img {
  max-width: 100%;
}

:root {
  --max-width: 1920px;
  --inner-content-width: 1440px;
  --middle-content:800px;
  --large-content:1200px;
  --color1: #AA0000;
  --color2: #05407D;
}

.noto {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

@media (max-width: 576px) {
  .hide_under_small {
    display: none;
  }
}

@media (min-width: 577px) {
  .hide_upper_small {
    display: none;
  }
}

@media (max-width: 768px) {
  .hide_under_medium {
    display: none;
  }
}

@media (min-width: 769px) {
  .hide_upper_medium {
    display: none;
  }
}

@media (max-width: 992px) {
  .hide_under_large {
    display: none;
  }
}

@media (min-width: 993px) {
  .hide_upper_large {
    display: none;
  }
}

@media (max-width: 1350px) {
  .hide_under_xlarge {
    display: none;
  }
}

@media (min-width: 1351px) {
  .hide_upper_xlarge {
    display: none;
  }
}

@media (max-width: 1440px) {
  .hide_under_xxlarge {
    display: none;
  }
}

@media (min-width: 1441px) {
  .hide_upper_xxlarge {
    display: none;
  }
}

body {
  font-family: "Noto Sans JP", Arial, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  margin: 0;
  padding: 0;
}

.container {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--max-width);
  padding: 0 20px;
}
.container .inner {
  max-width: 1440px;
  margin: 0 auto;
  container-type: inline-size;
  container-name: inner;
  padding-left: 20px;
  padding-right: 20px;
}

/* ハンバーガーメニューボタンのスタイル */
.hamburger-menu {
  display: none;
  cursor: pointer;
  font-size: 24px;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 20;
}
.hamburger-menu .fa-times {
  display: none;
}
@media (max-width: 992px) {
  .hamburger-menu {
    display: block;
  }
  .hamburger-menu.active .fa-bars {
    display: none;
  }
  .hamburger-menu.active .fa-times {
    display: block;
  }
}

header {
  width: 100%;
  background-color: #000;
  color: #fff;
  min-height: 210px;
  z-index: 1000;
}
header .header_innner {
  display: flex;
  flex-direction: column;
}
header .header_innner hr {
  color: #808080;
}
header .navi_btn {
  display: flex;
  gap: 5px;
}
@media (max-width: 992px) {
  header .navi_btn {
    display: none;
  }
}
header .header_top {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--inner-content-width);
  height: 130px;
  display: grid;
  grid-template-columns: 1fr var(--middle-content);
  grid-template-areas: "logo search" "logo navi";
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  position: relative;
}
header .header_top .logo {
  font-size: 1.5em;
  grid-area: logo;
}
header .header_top a {
  color: #fff;
  text-decoration: none;
}
header .header_top .search-area {
  text-align: right;
  margin-left: 20px;
  grid-area: search;
}
header .header_top .search-area a {
  display: flex;
  align-items: center;
  gap: 5px;
}
header .header_top .search-area input[type=text] {
  margin-left: 20px;
}
header .header_top .search-area ul {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  header .header_top .search-area ul {
    flex-direction: column;
    justify-content: center;
  }
}
header .header_top .search-area form {
  display: flex;
  align-items: center;
}
header .header_top .search-area form input[type=text] {
  width: 160px;
  padding: 5px;
  margin-right: 10px;
}
header .header_top .search-area form .search-button {
  background-color: #808080;
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
header .header_top .search-area form .search-button i {
  color: #fff;
  font-size: 17px;
}
header .header_top .navi_btn {
  gap: 5px;
}
header .header_top .navi_btn span {
  display: none;
}
header .header_top .navi_btn .is_hamburger {
  display: none;
}
@media (max-width: 992px) {
  header .header_top .navi_btn {
    display: none;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    background-color: #000;
    z-index: 10;
    height: 100dvh;
  }
  header .header_top .navi_btn .is_hamburger {
    display: none;
  }
  header .header_top .navi_btn img {
    display: none;
  }
  header .header_top .navi_btn span {
    display: inline-block;
  }
  header .header_top .navi_btn.active {
    justify-content: flex-start;
    position: fixed;
    padding-top: 60px;
    gap: 0;
    display: flex;
  }
  header .header_top .navi_btn.active a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    border-bottom: 1px solid #fff;
  }
}
@media (max-width: 1350px) {
  header .header_top {
    height: auto;
    grid-template-areas: "logo" "navi" "search";
    grid-template-columns: 1fr;
  }
  header .header_top .logo {
    text-align: center;
  }
  header .header_top .navi_btn {
    justify-content: center;
  }
  header .header_top .search-area ul {
    justify-content: center;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  header .header_top .logo {
    margin: 10px auto;
    max-width: 75%;
  }
}
header .header_bottom {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--inner-content-width);
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
header .header_bottom nav a {
  color: #fff;
  text-decoration: none;
  width: 150px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .header_bottom .reservebtn {
  background-color: #BA9419;
  color: #fff;
}
header .header_bottom .logoutbtn {
  border: 1px solid #fff;
}
@media (max-width: 768px) {
  header .header_top {
    flex-direction: column;
    align-items: flex-start;
  }
  header .header_top .header-right {
    margin-top: 10px;
  }
  header .header_bottom {
    flex-direction: column;
    padding-top: 20px;
    padding-bottom: 40px;
    height: auto;
  }
  header .header_bottom .headder_message {
    margin-bottom: 10px;
  }
}

.main_visual {
  height: 600px;
  background-color: #333333;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  overflow: hidden;
}
.main_visual .slide {
  display: flex;
  justify-content: center;
}
.main_visual .slide img {
  width: 840px;
  height: 500px;
  margin: 0 -10px;
}
@media (max-width: 992px) {
  .main_visual .slide img {
    width: auto;
  }
}

main {
  margin-left: auto;
  margin-right: auto;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--max-width);
}
main .inner {
  margin-left: auto;
  margin-right: auto;
  max-width: calc(1440px + 40px);
  container-type: inline-size;
  container-name: inner;
  padding-left: 20px;
  padding-right: 20px;
}
main .inner.middle {
  max-width: calc(800px + 40px);
}
main .newstopic_title {
  text-align: center;
  margin-top: 80px;
}

.layout {
  display: flex;
  flex-wrap: wrap;
  margin-left: auto;
  margin-right: auto;
}
.layout.between {
  justify-content: space-between;
}
.layout.two_column {
  gap: 20px;
}
.layout.two_column > * {
  width: calc(50% - 10px);
}
.layout.three_column {
  gap: 30px;
}
.layout.three_column > * {
  width: calc(33% - 24px);
}

.newstopic_section {
  margin-bottom: 100px;
}

.topic_wrap {
  flex-wrap: wrap;
}
@media (max-width: 1280px) {
  .topic_wrap .topic_area {
    max-width: 680px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
  }
}

.topic_area {
  max-width: 680px;
  container-type: inline-size;
  container-name: topic_area;
}
.topic_area h3 {
  font-size: 22px;
  margin-bottom: 36px;
}
.topic_area .topic_list a {
  color: #000;
}
.topic_area .topic_list .topic_item {
  display: flex;
  align-items: center;
  min-height: 80px;
  gap: 10px;
  border-bottom: 1px solid #808080;
}
.topic_area .topic_list .topic_item .cat span {
  border: 1px solid var(--color1);
  color: var(--color1);
}
.topic_area .topic_list .topic_item .cat .mark {
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  width: 110px;
}
.topic_area .topic_list .topic_item .cat .cat_update {
  border: none;
  background-color: var(--color1);
  color: #fff;
}
.topic_area .topic_list .topic_item .cat .cat_seminar {
  border: 1px solid var(--color1);
  color: var(--color1);
}
.topic_area .topic_list .topic_item .cat .cat_news {
  border: none;
  color: #fff;
  background-color: var(--color2);
}
@media (max-width: 1200px) {
  .topic_area .topic_list .topic_item {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .topic_area .topic_list .topic_item .text {
    width: 100%;
  }
}
.topic_area .topic_morelink {
  margin-top: 30px;
  display: flex;
  align-items: center;
  color: #000;
  gap: 20px;
}
.topic_area .topic_morelink span {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.topic_area .topic_morelink .red {
  background-color: var(--color1);
}
.topic_area .topic_morelink .blue {
  background-color: var(--color2);
}

.membernews_area {
  width: 100%;
  max-width: 100%;
}

.topcontent {
  padding-bottom: 100px;
}
.topcontent .top_content_list {
  background-color: #F5F1DA;
  padding: 50px 30px;
  border-radius: 10px;
}
.topcontent .top_content_list h3 {
  font-size: 30px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 32px;
}
.topcontent .top_content_list h3 a {
  color: var(--color1);
}
.topcontent .top_content_list ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.topcontent .top_content_list .top_content_item {
  border-radius: 10px;
  background-color: #fff;
  color: var(--color1);
  display: grid;
  grid-template-columns: 1fr 180px;
  align-items: center;
  justify-items: center;
  padding: 10px;
}
.topcontent .top_content_list .top_content_item span {
  width: 100%;
  text-align: center;
  display: block;
}
@media (max-width: 768px) {
  .topcontent .top_content_list .top_content_item {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1440px) {
  .topcontent .layout {
    justify-content: center;
  }
}
@media (max-width: 1350px) {
  .topcontent .top_content_list {
    width: 460px;
    max-width: 100%;
  }
}

footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 10px 0;
}
footer .footer_inner {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  min-height: 210px;
  gap: 20px;
  max-width: var(--inner-content-width);
  padding-left: 20px;
  padding-right: 20px;
}
footer .footer_inner .copy {
  max-width: 300px;
}
footer .footer_inner a {
  margin-left: auto;
  color: #fff;
  max-width: 200px;
}
footer .footer_inner figure {
  margin-right: 0;
}
@media (max-width: 1350px) {
  footer .footer_inner {
    flex-direction: column;
    min-height: 40px;
    padding: 20px;
  }
  footer .footer_inner .copy {
    order: 3;
  }
  footer .footer_inner .figure {
    order: 1;
  }
  footer .footer_inner > a {
    order: 2;
    margin-right: auto;
  }
}

#pageTop {
  width: 70px;
  height: 70px;
  background-color: #87847A;
  position: fixed;
  right: 0px;
  bottom: 210px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#pageTop img {
  width: 50px;
  height: 50px;
}

.breadlist {
  margin-top: 20px;
  margin-bottom: 40px;
}
.breadlist .bread {
  display: flex;
  gap: 40px;
}
.breadlist .bread a {
  color: #000;
}

.main_content_title {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--inner-content-width);
  margin-bottom: 60px;
}
.main_content_title .main_title {
  font-size: 32px;
  color: var(--color1);
  text-align: center;
}
.main_content_title .sub_title {
  font-size: 22px;
  text-align: center;
}

.content_wrap {
  margin-bottom: 30px;
}
.content_wrap h3 {
  font-size: 26px;
  color: var(--color1);
  margin-bottom: 16px;
}
.content_wrap .content_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
  justify-content: space-between;
}
.content_wrap .content_list:after, .content_wrap .content_list:before {
  content: "";
  display: block;
  width: 340px;
  height: 0;
  order: 99;
}
.content_wrap .content_list article {
  border: 1px solid #ccc;
  position: relative;
  padding: 20px 30px;
  order: 1;
  text-align: center;
  width: 340px;
  height: 300px;
}
.content_wrap .content_list article label {
  color: #fff;
  background-color: var(--color1);
  border-radius: 0 0 10px 0;
  width: 64px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 2px;
  top: 2px;
}
.content_wrap .content_list article h4 {
  font-size: 17px;
  height: 3em;
  overflow: hidden;
  margin-bottom: 15px;
}
.content_wrap .content_list article figure {
  margin-bottom: 5px;
}
.content_wrap .content_list article figure img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 130px;
}
.content_wrap .content_list article .download_infomation {
  display: flex;
  gap: 6px;
  font-size: 14px;
  margin-bottom: 5px;
}
.content_wrap .content_list article .download_infomation span {
  background-color: #ccc;
  padding: 3px;
  flex-grow: 1;
}
.content_wrap .content_list article .downloadbtn {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #05407D;
  border-radius: 15px;
}
@media (max-width: 1480px) {
  .content_wrap .content_list {
    justify-content: center;
    padding-left: 22%;
    padding-right: 22%;
  }
}
@media (max-width: 1340px) {
  .content_wrap .content_list {
    padding-left: 10%;
    padding-right: 10%;
  }
}
@media (max-width: 600px) {
  .content_wrap .content_list {
    padding-left: 0;
    padding-right: 0;
  }
  .content_wrap .content_list article {
    height: auto;
    min-height: 300px;
  }
}
.content_wrap .category_more {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  width: -webkit-max-content;
  width: max-content;
}
.content_wrap .category_more span {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color2);
}

.sideline {
  border-left: 5px solid;
  border-image-source: linear-gradient(to bottom, black 50%, var(--color1) 50%);
  border-image-slice: 1;
  padding-left: 10px;
  /* ラインの内側のスペースを調整 */
}

.linkto {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  word-break: break-all;
}
.linkto .icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color2);
}
.linkto .url {
  width: 50%;
  flex-grow: 1;
}

.top_content {
  max-width: var(--inner-content-width);
  padding-left: 100px;
  padding-right: 100px;
}
@media (max-width: 1440px) {
  .top_content {
    padding-left: 0;
    padding-right: 0;
  }
}
.top_content .top_content_title {
  font-size: 26px;
  color: #000;
  font-weight: 400;
  margin-bottom: 10px;
}
.top_content .content {
  line-height: 1.8;
}

.etc_content .etc_content_title {
  font-size: 26px;
  color: var(--color1);
  margin-bottom: 20px;
}
.etc_content .sub_content_list {
  display: flex;
  justify-content: space-between;
}
.etc_content .sub_content_list > div {
  width: 700px;
  max-width: 45%;
}
.etc_content .sub_content_list .sub_content {
  border: 1px solid #ccc;
  width: 100%;
  padding: 40px;
  text-align: left;
  margin-bottom: 20px;
}
.etc_content .sub_content_list .sub_content .sub_content_title {
  font-size: 18px;
  color: #000;
  font-weight: 400;
  margin-bottom: 10px;
}
.etc_content .sub_content_list .previous_post {
  margin-right: auto;
  text-align: left;
}
.etc_content .sub_content_list .prev_link {
  margin-bottom: 80px;
  margin-right: auto;
}
.etc_content .sub_content_list .next_link {
  margin-bottom: 80px;
  margin-left: auto;
}
.etc_content .sub_content_list .next_post {
  margin-left: auto;
  text-align: right;
}
@media (max-width: 1280px) {
  .etc_content .sub_content_list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-left: auto;
    margin-right: auto;
  }
  .etc_content .sub_content_list > div {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.cal_wrap {
  text-align: center;
  margin-bottom: 80px;
}
.cal_wrap h3 {
  margin-bottom: 10px;
  font-weight: 400;
}

/*=============================
      Login
  ==============================*/
#shoplogin {
  background-color: #f0f5fa;
  text-align: center;
  padding: 30px 15px;
  margin-bottom: 20px;
}

.lwa-submit input {
  padding: 5px 10px 5px;
}

.content_wrap-login {
  padding-bottom: 50px;
}

.tit02-login {
  text-align: center;
  margin: 40px auto;
}

.lwa-form input[type=text],
.lwa-form input[type=email],
.lwa-form input[type=serach],
.lwa-form input[type=password],
.lwa-form textarea {
  padding: 8px 8px 7px;
  border: solid 1px #bfbfbf;
  border-radius: 0;
  background: #fff;
  box-shadow: inset 1px 2px 1px rgba(191, 191, 191, 0.6);
  -webkit-appearance: none;
}

/*=============================
      Contact
  ==============================*/
.tit02-common {
  color: #040000;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 1em;
}
@media (max-width: 1350px) {
  .tit02-common {
    font-size: calc(1rem + 1vw);
  }
}

.formBox {
  margin: 0px auto 0;
  background: #fff;
  padding: 0 0 40px;
}
.formBox .form .formBox__title {
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  padding: 18px 0;
  background: #1b86e6;
  text-align: center;
  line-height: 1;
  margin-bottom: 15px;
}
.formBox .form table {
  width: 100%;
}
.formBox .form table tr {
  border-bottom: 1px dotted #ccc;
}
.formBox .form table tr th {
  text-align: left;
  /* height: 108px; */
  font-weight: bold;
  width: 27.845%;
  padding: 10px 0 10px 21px;
  position: relative;
}
.formBox .form table tr th span {
  font-size: 0.94rem;
  vertical-align: middle;
}
.formBox .form table tr th span.required {
  color: #E5004F;
}
.formBox .form table tr td .subtext {
  color: #808080;
  display: inline-block;
  margin: 0px;
  padding-left: 5px;
  vertical-align: middle;
  font-size: 0.8rem;
}
.formBox .form table tr td #time {
  border: 1px solid #808080;
  border-radius: 0;
  height: 40px;
  margin-left: 8px;
  background: #fff;
}
.formBox .form table tr td input[type=text],
.formBox .form table tr td input[type=email],
.formBox .form table tr td input[type=tel] {
  width: 285px;
  height: 40px;
  border: 1px solid #808080;
  background: #fafafa;
  border-radius: 5px;
  color: #000;
  padding: 10px;
  box-shadow: none;
}
.formBox .form table tr td select {
  width: 285px;
  height: 40px;
  border: 1px solid #808080;
  background: #fafafa;
  border-radius: 5px;
  color: #000;
  padding: 10px;
  box-shadow: none;
  font-size: 80%;
}
.formBox .form table tr td #address,
.formBox .form table tr td #email2 {
  width: 90%;
}
.formBox .form table tr td .subtext02 {
  color: #808080;
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding-left: 5px;
  font-size: 0.8rem;
}
.formBox .form table tr td textarea {
  max-width: 548px;
  width: 80%;
  height: 192px;
  border: 1px solid #808080;
  background: #fafafa;
  border-radius: 5px;
  color: #000;
  padding: 10px;
  box-shadow: none;
}
.formBox .form table tr:last-of-type {
  height: 265px;
}
.formBox .form .privacy {
  width: 84.5%;
  margin: 25px auto;
  line-height: 1.5714em;
  font-size: 0.8rem;
  color: #f00;
}
.formBox .form .agreeBox {
  display: block;
  text-align: center;
}
.formBox .form .agreeBox input {
  width: 19px;
  height: 19px;
  vertical-align: middle;
}
.formBox .form .agreeBox label {
  text-align: center;
  margin: 0 auto;
  vertical-align: middle;
  color: #1a1a1a;
  font-size: 1rem;
}
.formBox .entryform table tr:last-of-type,
.formBox .form table tr.job,
.formBox .form table tr.email {
  height: auto;
}
.formBox .entryform table {
  margin-bottom: 30px;
}
.formBox .attention {
  max-width: 400px;
  margin: 0 auto;
  font-size: 0.84rem;
  line-height: 1.5714285em;
}
.formBox .button-contact {
  /* width: 100%; */
  /* max-width: 430px; */
  width: 227px;
  margin: 1em auto 1em;
  font-size: 1.13em;
  /* line-height: 70px; */
  line-height: 60px;
  padding-top: 3px;
  border: none;
  border-radius: 10px;
}
.formBox .button-common {
  position: relative;
  text-align: center;
  color: #fff;
  display: block;
  box-shadow: 0px 3px 0px #166bb8;
  border-radius: 3px;
  background-color: #1b86e6;
}
.formBox .button-contact::after {
  width: 12px;
  height: 12px;
  right: 17px;
  border-top: 2px solid #c0def8;
  border-right: 2px solid #c0def8;
}
.formBox .book_timelist li:first-child {
  margin-bottom: 10px;
}
.formBox .formBox-find_book {
  display: none;
}
@media (min-width: 769px) {
  .formBox .book_flexlist {
    display: flex;
    flex-direction: row;
  }
  .formBox .book_flexlist li:first-child {
    margin-right: 20px;
  }
  .formBox .book_flexlist .book_flexlist input,
  .formBox .book_flexlist select {
    width: 285px;
    height: 40px;
    border: 1px solid #808080;
    background: #fafafa;
    border-radius: 5px;
    color: #000;
    padding: 10px;
    box-shadow: none;
  }
}
@media (max-width: 768px) {
  .formBox .find-single_contact {
    padding: 30px 0 50px;
  }
  .formBox .find-single_access__divider {
    display: block;
  }
  .formBox .find-single_access__divider .text {
    width: 100%;
  }
  .formBox .find-single_access__divider .img {
    width: 100%;
    text-align: center;
  }
  .formBox .find-single_access__divider__table {
    margin-bottom: 4%;
  }
  .formBox .button-find_book {
    margin: 6% auto 4%;
    max-width: 300px;
    width: 100%;
    line-height: 56px;
  }
  .formBox .button-contact {
    /* font-size: 1.25rem; */
    padding-top: 2px;
    /* max-width: 300px; */
    /* width: 100%; */
    /* line-height: 56px; */
  }
  .formBox .contents__01 {
    margin: 0 0 0;
  }
  .formBox .contents__01 h2 {
    line-height: 1.2;
  }
  .formBox .contents__01 h2 small {
    font-size: 3.5vw;
  }
  .formBox .contents__01 h2 em {
    font-size: 8vw;
  }
}

@media screen and (max-width: 768px) {
  .formBox_inner {
    padding: 0 20px 0;
  }
  .contents__02 {
    padding: 78px 35px 0 35px;
    /*ラジオボタンを縦並び指定*/
  }
  .contents__02 .img {
    display: table;
    margin: 0 auto 0;
  }
  .contents__02 h2 {
    top: -35px;
  }
  .contents__02 .pointList {
    flex-direction: column;
  }
  .contents__02 .pointList li {
    width: 100%;
    margin-bottom: 42px;
  }
  .contents__02 .formBox {
    width: 100%;
    margin: 50px auto 0;
  }
  .contents__02 .formBox .form .formBox__title {
    font-size: 1.3rem;
    padding: 10px 0;
  }
  .contents__02 .formBox .form table tr {
    border: none;
  }
  .contents__02 .formBox .form table tr td {
    display: block;
    height: auto;
    width: 100%;
    padding: 0px;
    font-weight: normal;
  }
  .contents__02 .formBox .form table tr td input {
    width: 100%;
  }
  .contents__02 .formBox .form table tr td textarea {
    width: 100%;
    max-width: 100%;
  }
  .contents__02 .formBox .form table tr td #time {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }
  .contents__02 .formBox .form .privacy {
    width: 100%;
  }
  .contents__02 .formBox .form .agreeBox label {
    font-size: 1.1rem;
  }
  .contents__02 .content_wrap-document_request .wpcf7-list-item {
    display: block;
  }
  .contents__02 .content_wrap-document_request .wpcf7-list-item label {
    display: flex;
    flex-direction: row;
  }
  .contents__02 .content_wrap-document_request [type=checkbox],
  .contents__02 .content_wrap-document_request [type=radio] {
    max-width: 30px;
  }
}
@media (max-width: 576px) {
  .contents__02 .pointList li h3 {
    font-size: 1rem;
    margin: 5px 0 0;
  }
}
/****************
検索ページ
****************/
.search_container {
  min-height: 800px;
}
.search_container .searchquery {
  margin: 40px auto;
  text-align: center;
}
.search_container .searchresult {
  width: var(--large-content);
}
.search_container .searchresult .searchcontent {
  padding: 20px;
  margin: 20px auto;
  width: 100%;
  border-bottom: 1px solid #ccc;
}

.searchnavi {
  margin: 30px auto;
}

/************
ページ
************/
.main_container {
  min-height: 800px;
}/*# sourceMappingURL=style.css.map */

.infomation_wrap{
  max-width: 960px;
  margin:40px auto;
  border-radius: 10px;
  border: 1px solid #ffcc00;
    background-color: #fff8e1;
    padding: 20px;
    color: #333;
    

}
.infomation_wrap p {
  font-weight: bold;
  margin-bottom: 10px;
}
.infomation_wrap ul {
  list-style-type: disc;
  margin-left: 20px;
}
.infomation_wrap ul li {
  margin-bottom: 5px;
}
