@charset "UTF-8";
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: none;
  font-style: normal;
  text-align: left;
  zoom: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

table {
  border-collapse: collapse;
  font-family: inherit;
}

h1, h2, h3, h4, h5 {
  font-size: 100%;
  font-weight: normal;
  line-height: 1;
}

input, textarea, select {
  font-family: inherit;
  font-size: 16px;
}

input[type=button], input[type=text], input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
}

textarea {
  resize: none;
  -webkit-appearance: none;
  border-radius: 0;
}

th, td {
  border-collapse: collapse;
}

table th, table td {
  white-space: nowrap;
}

ul, ol {
  list-style-type: none;
}

img {
  vertical-align: text-bottom;
  vertical-align: -webkit-baseline-middle;
  max-width: 100%;
  height: auto;
  width: auto;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
}

.white_btn {
  background: #FFFFFF;
  color: #83B5DA;
  padding: 14px 16px 14px 20px;
  margin: 0 0 16px 0;
  border-radius: 25px;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 0;
  width: 140px;
}
.white_btn img {
  height: 12px;
  margin: 0 0 0 16px;
}

.header {
  /* ここから下がハンバーガーメニューに関するCSS */
  /* チェックボックスを非表示にする */
  /* ハンバーガーアイコンの設置スペース */
  /* ハンバーガーメニューのアイコン */
  /* 三本線の一番上の棒の位置調整 */
  /* 三本線の一番下の棒の位置調整 */
  /* アイコンがクリックされたら真ん中の線を透明にする */
  /* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
  /* メニューのデザイン*/
}
.header .nav {
  position: fixed;
  z-index: 1000;
  right: 0;
}
.header .logo {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 1000;
}
.header .logo img {
  width: 140px;
}
.header .drawer_hidden {
  display: none;
}
.header .drawer_open {
  display: flex;
  height: 25px;
  width: 25px;
  margin: 20px 20px 0 0;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100; /* 重なり順を一番上にする */
  cursor: pointer;
}
.header .drawer_open span,
.header .drawer_open span:before,
.header .drawer_open span:after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #5A86A6;
  transition: 0.5s;
  position: absolute;
}
.header .drawer_open span:before {
  bottom: 8px;
}
.header .drawer_open span:after {
  top: 8px;
}
.header #drawer_input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0);
}
.header #drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
}
.header #drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
}
.header .nav_list {
  list-style: none;
}
.header #drawer_input:checked ~ .nav_content {
  left: 0;
}
.header .nav_content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%; /* メニューを画面の外に飛ばす */
  z-index: 99;
  background: #83B5DA;
  transition: 0.5s;
  justify-content: center;
  align-items: center;
}
.header .nav_content .header_nav {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 100%;
}
@media (min-width: 840px) {
  .header .nav_content .header_nav .nav_list {
    width: 800px;
    margin: 0 auto 0;
    flex-wrap: wrap;
    display: flex;
  }
}
@media (max-width: 840px) {
  .header .nav_content .header_nav .nav_list {
    margin: 80px 0 0 0;
  }
}
@media (min-width: 840px) {
  .header .nav_content .header_nav .nav_list li {
    width: 400px;
    margin: 20px 0 0 0;
  }
}
@media (max-width: 840px) {
  .header .nav_content .header_nav .nav_list li {
    text-align: center;
    margin: 40px 0 0 0;
  }
}
.header .nav_content .header_nav .nav_list li a {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: bold;
}
@media (min-width: 840px) {
  .header .nav_content .header_nav .nav_list li a {
    font-size: 28px;
  }
}
@media (max-width: 840px) {
  .header .nav_content .header_nav .nav_list li a {
    font-size: 24px;
    text-align: center;
  }
}
.header .nav_content .header_nav .header_sns {
  margin: 40px auto 0;
  display: flex;
}
@media (min-width: 840px) {
  .header .nav_content .header_nav .header_sns {
    width: 800px;
  }
}
@media (max-width: 840px) {
  .header .nav_content .header_nav .header_sns {
    justify-content: center;
  }
}
@media (min-width: 840px) {
  .header .nav_content .header_nav .header_sns img {
    height: 35px;
    margin: 0 20px 0 0;
  }
}
@media (max-width: 840px) {
  .header .nav_content .header_nav .header_sns img {
    margin: 0 10px 0 10px;
    height: 25px;
  }
}

@media (min-width: 840px) {
  .main {
    padding: 0 0 160px 0;
  }
}
@media (max-width: 840px) {
  .main {
    padding: 0 0 120px 0;
  }
}
.main .main_header {
  position: relative;
  background-color: #000000;
}
.main .main_header img {
  width: 100%;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.7;
}
.main .main_header h2 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
  color: #FFFFFF;
  z-index: 100;
  white-space: nowrap;
}
@media (min-width: 840px) {
  .main .main_header h2 {
    font-size: 30px;
  }
}
@media (max-width: 840px) {
  .main .main_header h2 {
    font-size: 24px;
  }
}
@media (min-width: 840px) {
  .main section {
    margin: 120px auto;
    width: 800px;
  }
}
@media (max-width: 840px) {
  .main section {
    margin: 80px 16px 0 16px;
  }
}
.main section h3 {
  margin: 0 0 40px 0;
  font-weight: bold;
}
@media (min-width: 840px) {
  .main section h3 {
    font-size: 28px;
  }
}
@media (max-width: 840px) {
  .main section h3 {
    font-size: 22px;
  }
}
.main section p {
  line-height: 1.5;
}
@media (min-width: 840px) {
  .main section p {
    font-size: 16px;
  }
}
@media (max-width: 840px) {
  .main section p {
    font-size: 14px;
  }
}

.footer {
  background: #83B5DA;
}
.footer .footer_area {
  padding: 40px 0 0 0;
}
@media (min-width: 840px) {
  .footer .footer_area {
    width: 800px;
    margin: 0 auto;
  }
}
@media (max-width: 840px) {
  .footer .footer_area {
    margin: 0 16px 0 16px;
  }
}
.footer .footer_area .footer_logo {
  width: 140px;
}
@media (min-width: 840px) {
  .footer .footer_area .footer_nav {
    display: flex;
    justify-content: space-between;
  }
}
.footer .footer_area .footer_nav nav {
  font-size: 14px;
}
.footer .footer_area .footer_nav nav ul {
  margin: 20px 0 0 0;
  display: flex;
  flex-wrap: wrap;
}
.footer .footer_area .footer_nav nav ul a {
  color: #FFFFFF;
  text-decoration: none;
  margin: 0 12px 0 0;
}
.footer .footer_area .footer_nav nav .footer_sns img {
  height: 24px;
}
@media (max-width: 840px) {
  .footer .footer_area .footer_nav .footer_button {
    margin: 0 0 20px 0;
    display: flex;
    flex-wrap: wrap;
  }
}
.footer .footer_area .footer_nav .footer_button a {
  background: #FFFFFF;
}
@media (max-width: 840px) {
  .footer .footer_area .footer_nav .footer_button a {
    margin: 20px 40px 0 0;
  }
}
.footer .copy {
  text-align: center;
  color: #FFFFFF;
  font-size: 14px;
  padding: 4px 0 4px 0;
  background: #5A86A6;
}

.top .top_header {
  position: relative;
}
.top .top_header img {
  width: 100%;
  height: 480px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 60%;
     object-position: 60%;
}
.top .top_header .header_text {
  position: absolute;
  transform: translate(0, -50%);
  color: #FFFFFF;
}
@media (min-width: 840px) {
  .top .top_header .header_text {
    left: 10%;
    top: 50%;
  }
}
@media (max-width: 840px) {
  .top .top_header .header_text {
    left: 16px;
    top: 80%;
  }
}
.top .top_header .header_text h2 {
  margin: 0 0 20px 0;
}
@media (min-width: 840px) {
  .top .top_header .header_text h2 {
    font-size: 28px;
  }
}
@media (max-width: 840px) {
  .top .top_header .header_text h2 {
    font-size: 24px;
  }
}
@media (min-width: 840px) {
  .top .top_header .header_text p {
    font-size: 16px;
  }
}
@media (max-width: 840px) {
  .top .top_header .header_text p {
    font-size: 14px;
  }
}
.top section h3 {
  text-align: center;
}
@media (min-width: 840px) {
  .top .attempt {
    width: 680px;
  }
}
@media (max-width: 840px) {
  .top .attempt .attempt_flex .attempt_group img {
    width: 280px;
    margin: 80px 0 0 0;
  }
}
.top .attempt .attempt_group {
  text-align: center;
}
@media (min-width: 840px) {
  .top .attempt .attempt_group img {
    width: 200px;
  }
}
@media (max-width: 840px) {
  .top .attempt .attempt_group img {
    width: 280px;
  }
}
.top .attempt .attempt_group p {
  font-weight: bold;
  text-align: center;
  margin: 20px 0 0 0;
}
@media (min-width: 840px) {
  .top .attempt .attempt_flex {
    margin: 40px 0 0 0;
    display: flex;
    justify-content: space-around;
  }
}
.top .top_content {
  background: #D5E4F1;
  padding: 40px 0 40px 0;
}
@media (max-width: 840px) {
  .top .top_content {
    margin: 80px 0 0 0;
  }
}
.top .top_content li {
  background: #FFFFFF;
  border-radius: 25px;
}
@media (min-width: 840px) {
  .top .top_content li {
    width: 800px;
    margin: 80px auto;
    display: flex;
    align-items: center;
  }
}
@media (max-width: 840px) {
  .top .top_content li {
    margin: 40px 16px 40px 16px;
  }
}
.top .top_content li img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 260px;
  width: 440px;
}
@media (max-width: 840px) {
  .top .top_content li img {
    display: none;
  }
}
.top .top_content li .left_radius {
  border-radius: 25px 0 0 25px;
}
.top .top_content li .right_radius {
  border-radius: 0 25px 25px 0;
}
@media (min-width: 840px) {
  .top .top_content li .top_content_text {
    width: 280px;
    margin: 0 40px 0 40px;
  }
}
@media (max-width: 840px) {
  .top .top_content li .top_content_text {
    padding: 40px 0 40px 0;
  }
}
.top .top_content li .top_content_text h3 {
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 840px) {
  .top .top_content li .top_content_text h3 {
    text-align: center;
  }
}
.top .top_content li .top_content_text p {
  font-size: 16px;
  margin: 20px 0 40px 0;
}
@media (max-width: 840px) {
  .top .top_content li .top_content_text p {
    text-align: center;
  }
}
.top .top_content li .top_content_text a {
  width: 200px;
  height: 45px;
  color: #FFFFFF;
  background: #83B5DA;
  font-size: 16px;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: left;
  text-decoration: none;
}
@media (max-width: 840px) {
  .top .top_content li .top_content_text a {
    margin: 0 auto;
  }
}

@media (min-width: 840px) {
  .top .top_content li.pdf{
    width: 600px;
    margin: 0 auto;
  }
}

@media (min-width: 840px) {
  .top .top_content li .top_content_pdf {
    margin: 0 auto 0;
    padding: 40px 0 40px;
  }
}
@media (max-width: 840px) {
  .top .top_content li .top_content_pdf {
    padding: 40px 0 40px 0;
  }
}
.top .top_content li .top_content_pdf h3 {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 840px) {
  .top .top_content li .top_content_pdf h3 {
    text-align: center;
  }
}
.top .top_content li .top_content_pdf p {
  font-size: 16px;
  margin: 20px 0 40px 0;
}
@media (max-width: 840px) {
  .top .top_content li .top_content_pdf p {
    text-align: center;
  }
}
.top .top_content li .top_content_pdf a {
  width: 200px;
  height: 45px;
  color: #FFFFFF;
  background: #83B5DA;
  font-size: 16px;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto 0;
  text-decoration: none;
}
@media (max-width: 840px) {
  .top .top_content li .top_content_pdf a {
    margin: 40px auto 0;
  }
}

.top .top_contact {
  background: #83B5DA;
  padding: 80px 0 80px 0;
  border-radius: 25px;
}
@media (max-width: 840px) {
  .top .top_contact {
    padding: 40px 0 40px 0;
  }
}
.top .top_contact h3 {
  color: #FFFFFF;
}
@media (min-width: 840px) {
  .top .top_contact h3 {
    text-align: left;
    margin: 0 0 0 80px;
  }
}
@media (max-width: 840px) {
  .top .top_contact h3 {
    text-align: center;
  }
}
@media (max-width: 840px) {
  .top .top_contact .contact_text {
    margin: 0 20px 0 20px;
    text-align: center;
  }
}
@media (min-width: 840px) {
  .top .top_contact .contact_text {
    margin: 0 80px 0 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media (max-width: 840px) {
  .top .top_contact .contact_text .white_btn {
    margin: 0 auto;
  }
}
@media (max-width: 840px) {
  .top .top_contact .contact_text ul {
    margin: 32px 0 40px 0;
  }
}
@media (min-width: 840px) {
  .top .top_contact .contact_text ul {
    margin: 32px 0 0 0;
  }
}
.top .top_contact .contact_text ul li {
  margin: 8px 0 0 0;
  color: #FFFFFF;
}
@media (max-width: 840px) {
  .top .top_contact .contact_text ul li {
    text-align: center;
  }
}
.top .news .twitter-timeline {
  height: 400px;
}
@media (min-width: 840px) {
  .top .news .twitter-timeline {
    width: 600px;
    margin: 0 auto;
  }
}
@media (max-width: 840px) {
  .top .news .twitter-timeline {
    margin: 0 16px 0 16px;
  }
}

.member .chairman {
  border-bottom: #83B5DA solid 1px;
}
.member .chairman .job {
  color: #83B5DA;
  font-weight: bold;
  font-size: 18px;
}
.member .chairman h3 {
  color: #83B5DA;
}
@media (min-width: 840px) {
  .member .chairman {
    padding: 0 0 120px 0;
  }
}
@media (max-width: 840px) {
  .member .chairman {
    padding: 0 0 80px 0;
  }
}
.member .member_list table tr {
  border-bottom: #83B5DA solid 1px;
  display: block;
}
@media (min-width: 840px) {
  .member .member_list table tr {
    width: 800px;
  }
}
@media (max-width: 840px) {
  .member .member_list table tr {
    width: 100%;
  }
}
.member .member_list table tr td {
  line-height: 1;
}
@media (min-width: 840px) {
  .member .member_list table tr td {
    padding: 12px 20px 12px 20px;
    width: 100vw;
    font-size: 16px;
  }
}
@media (max-width: 840px) {
  .member .member_list table tr td {
    padding: 12px 8px 12px 8px;
    width: 100vw;
    font-size: 12px;
  }
}
@media (max-width: 340px) {
  .member .member_list table tr td {
    text-align: center;
  }
}
.member .member_list table tr .school {
  text-align: center;
}
@media (max-width: 340px) {
  .member .member_list table tr .school {
    display: none;
  }
}
.member .member_list table tr .name {
  text-align: right;
}
@media (max-width: 340px) {
  .member .member_list table tr .name {
    text-align: center;
  }
}
.member .member_list table tr:first-child {
  border-top: #83B5DA solid 1px;
}

.search .search_area .pc_area_nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 840px) {
  .search .search_area .pc_area_nav {
    display: none;
  }
}
.search .search_area .pc_area_nav a {
  background: #FFFFFF;
  color: #83B5DA;
  border: #83B5DA solid 1px;
  text-decoration: none;
  display: block;
  text-align: center;
  height: 50px;
  line-height: 50px;
  width: 140px;
}
.search .search_area .mobile_area_nav .mobile_br1 {
  display: flex;
  justify-content: space-between;
}
.search .search_area .mobile_area_nav .mobile_br1 a {
  background: #FFFFFF;
  color: #83B5DA;
  border: #83B5DA solid 1px;
  text-decoration: none;
  display: block;
  text-align: center;
  height: 50px;
  line-height: 50px;
  width: 28vw;
}
.search .search_area .mobile_area_nav .mobile_br2 {
  display: flex;
  justify-content: space-around;
  margin: 3vw 0 0 0;
}
.search .search_area .mobile_area_nav .mobile_br2 a {
  background: #FFFFFF;
  color: #83B5DA;
  border: #83B5DA solid 1px;
  text-decoration: none;
  display: block;
  text-align: center;
  height: 50px;
  line-height: 50px;
  width: 28vw;
}
@media (min-width: 840px) {
  .search .search_area .mobile_area_nav {
    display: none;
  }
}
.search .serch_check {
  border: 1px solid #83B5DA;
  display: block;
}
.search .serch_check .search-box {
  margin: 20px 8px 20px 8px;
}
.search .serch_check .search-box h4 {
  font-size: 20px;
  margin-bottom: 8px;
}
.search .serch_check .search-box label {
  margin-right: 8px;
}
.search .serch_check .button {
  width: 200px;
  height: 45px;
  color: #FFFFFF;
  background: #83B5DA;
  font-size: 16px;
  border-radius: 25px;
  margin: 40px auto 40px;
  display: block;
  text-decoration: none;
  border: none;
}

@media (min-width: 840px) {
  .contact section {
    width: 600px;
  }
}
.contact .number p {
  font-size: 26px;
  font-weight: bold;
  color: #83B5DA;
}
.contact .form form input {
  border: none;
  border-bottom: #83B5DA 1px solid;
  font-size: 16px;
  margin: 0 0 20px 0;
  vertical-align: top;
  padding-bottom: 8px;
}
@media (max-width: 840px) {
  .contact .form form input {
    width: 100%;
  }
}
@media (min-width: 840px) {
  .contact .form form input {
    width: 600px;
  }
}
.contact .form form .form_text {
  padding-bottom: 160px;
  margin: 0;
}
.contact .form form p {
  margin: 0 0 80px 0;
}
.contact .form form button {
  width: 200px;
  border: none;
  height: 45px;
  color: #FFFFFF;
  background: #83B5DA;
  font-size: 16px;
  border-radius: 25px;
  display: block;
  margin: 0 auto;
}

.terms .title {
  margin: 28px 0 0 0;
  font-weight: bold;
}
.member .title {
  margin: 28px 0 0 0;
  font-weight: bold;
}

.schedule .calendar iframe {
  width: 800px;
  height: 600px;
}
@media (max-width: 840px) {
  .schedule .calendar iframe {
    width: 100%;
    height: 400px;
  }
}

.area .area_result .result_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.area .area_result .result_list .result_block {
  padding: 0 0 8px 0;
  border-bottom: solid #83B5DA 1px;
  display: block;
  margin: 0 0 80px 0;
  color: #83B5DA;
  text-decoration: none;
}
@media (min-width: 840px) {
  .area .area_result .result_list .result_block {
    width: 240px;
  }
  .area .area_result .result_list .result_block .result_image {
    width: 100%;
    height: 160px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 840px) {
  .area .area_result .result_list .result_block {
    width: 100%;
  }
  .area .area_result .result_list .result_block .result_image {
    width: 100%;
    height: 40vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.area .area_result .result_list .result_block .result_data {
  position: relative;
  display: block;
}
.area .area_result .result_list .result_block .result_data h4 {
  height: 40px;
  font-size: 18px;
  padding: 12px 0 0 0;
  margin: 0 12px 0 0;
  font-weight: bold;
}
.area .area_result .result_list .result_block .result_data .result_icon {
  height: 24px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
.area .area_result .result_list .result_block .result_data .result_icon p {
  padding: 4px 0 0 0;
  font-size: 12px;
  width: 180px;
  font-weight: bold;
}
.area .area_result .result_list .result_block .result_data .result_icon .icon .blank_icon {
  width: 20px;
  margin-right: 12px;
  margin-bottom: 4px;
}
@media (min-width: 840px) {
  .area .area_result .result_list:after {
    content: "";
    display: block;
    width: 240px; /* .boxに指定したwidthと同じ幅を指定する */
    height: 50px;
  }
}
.area .area_btn {
  width: 200px;
  border: none;
  height: 45px;
  color: #FFFFFF;
  background: #83B5DA;
  font-size: 16px;
  border-radius: 25px;
  display: block;
  margin: 0 auto;
  text-decoration: none;
  text-align: center;
  line-height: 45px;
}/*# sourceMappingURL=style.css.map */

.member .company_list ul li {
    border-bottom: #83B5DA solid 1px;
    display: block;
}
  @media (min-width: 840px) {
    .member .company_list ul li {
      width: 800px;
    }
  }
  @media (max-width: 840px) {
    .member .company_list ul li {
      width: 100%;
    }
  }
  .member .company_list ul li a{
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    color: #000;
}
@media (max-width: 840px) {
    .member .company_list ul li a{
        flex-wrap: wrap;
    }
}
  .member .company_list ul li span{
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    color: #000;
}
@media (max-width: 840px) {
    .member .company_list ul li span{
        flex-wrap: wrap;
    }
}
  .member .company_list ul li p {
    line-height: 2;
    display: inline-block;
  }
  @media (min-width: 840px) {
    .member .company_list ul li p {
      padding: 12px 20px 12px 20px;
      width: 100vw;
      font-size: 16px;
    }
  }
  @media (max-width: 840px) {
    .member .company_list ul li p {
      padding: 12px 8px 12px 8px;
      width: 100vw;
      font-size: 12px;
    }
  }
  @media (max-width: 340px) {
    .member .company_list ul li p {
      text-align: center;
    }
  }
  .member .company_list ul li:first-child {
    border-top: #83B5DA solid 1px;
  }
  