@charset "UTF-8";
/* Scss Document */
/* 変数 */
/* color */
/* 色、ボタン、文字、段落、汎用パーツ */
.green {
  color: #8CF043;
}

.red {
  color: #B70000;
}

.underline {
  text-decoration: underline;
}

.wrapper {
  font-size: 1.6rem;
  line-height: normal;
  color: #333;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  box-sizing: border-box;
}
.wrapper * {
  box-sizing: border-box;
}
.border-box {
  padding: 15px;
  border: solid 2px #CCC;
}

body.small main {
  font-size: 1.4rem;
}
body.large main {
  font-size: 1.8rem;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: inherit;
}
a:hover {
  transition: 0.2s ease;
  opacity: 0.7;
}

h1, h2, h3, h4, h5 {
  margin: 0 auto;
  line-height: normal;
  font-weight: bold;
}

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

ul, ol, li, dl, dt, dd, figure {
  margin: 0;
  padding: 0;
}

section:after,
ul:after,
ol:after,
dl:after {
  content: "";
  clear: both;
  display: block;
}

img {
  max-width: 100%;
  width: auto;
  height: auto;
}

h2, .h2 {
  font-size: 3rem;
  font-weight: bold;
  position: relative;
  margin: 0 auto 30px;
}
h2 .sub, .h2 .sub {
  font-size: 1.6rem;
  display: block;
}

h3, .h3 {
  font-size: 2.4rem;
  text-align: left;
  margin: 0 0 20px;
  border-bottom: double #333;
  padding-bottom: 5px;
}

h4 {
  font-size: 1.8rem;
  margin: 0 0 10px;
  padding-left: 10px;
  border-left: solid 5px #8CF043;
}

h5 {
  font-size: 1.6rem;
  margin: 0 0 10px;
}

p {
  margin: 0 0 15px;
  word-break: break-word;
}
p:last-child {
  margin: 0;
}

.fs20 {
  font-size: 2rem;
}

.fs18 {
  font-size: 1.8rem;
}

.fs16 {
  font-size: 1.6rem;
}

.fs14 {
  font-size: 1.4rem;
}

.fs12 {
  font-size: 1.2rem;
}

.fs115 {
  font-size: 115%;
  margin: 0 1px;
}

.fs85 {
  font-size: 85%;
}

.fwn {
  font-weight: normal;
}

.fwb {
  font-weight: bold;
}

.btn {
  text-align: center;
  width: 100%;
  max-width: 360px;
  display: table;
  transition: 0.2s ease;
  font-size: 1.8rem;
  font-weight: bold;
  cursor: pointer;
  padding: 10px 20px;
  margin: 30px auto 0;
  border-radius: 50px;
  background: #8CF043;
  border: solid 2px #8CF043;
  transition: 0.1s ease;
}
.btn:hover {
  opacity: 1;
  background: #fff;
  color: #8CF043;
}
.btn.mini {
  min-width: 200px;
  font-size: 1.4rem;
  margin: 25px auto 0;
  padding: 5px 10px;
}
.btn.back {
  border: solid 1px #8CF043;
  background: #fff;
  color: #8CF043;
}
.btn.stop {
  pointer-events: none;
  background: #ccc;
  border-color: #ccc;
}
.tac_link .btn[target=_blank]:after {
  content: url(../img/blank.png);
  left: 15px;
  top: -1px;
  position: relative;
}
.tac_link > .btn {
  margin: 0;
}
.tac_left > .btn {
  margin: 0;
}
.tac {
  width: 100%;
}

.tac_flex {
  display: flex;
  
}

.page_ttl {
  height: 200px;
  background: #999;
  display: flex;
  align-items: center;
  position: relative;
  text-align: center;
  font-weight: bold;
  overflow: hidden;
}
.page_ttl .inner {
  z-index: 2;
}
.page_ttl h1, .page_ttl .title {
  font-size: 3.6rem;
}
.page_ttl h1 br, .page_ttl .title br {
  display: none;
}
.page_ttl .caption {
  font-weight: 1.6rem;
  margin-top: 10px;
}
.page_ttl .bg {
  background: url("../img/title_default.jpg") no-repeat center/cover;
  z-index: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.page_ttl .white {
  display: table;
  text-align: left;
  background: rgba(255, 255, 255, 0.9);
  position: relative;
  padding: 20px 20px 20px 0;
}
.page_ttl .white:after {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 1000px;
  left: -1000px;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
}
.page_ttl .over {
  opacity: 0.5;
  z-index: 1;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  filter: brightness(0.6);
}

.intro {
  text-align: center;
}

input[type=text],
input[type=email],
input[type=number],
input[type=tel],
select,
textarea {
  border: solid 1px #CCC;
  border-radius: 5px;
  height: 50px;
  padding: 10px;
  background-color: #fff;
  cursor: pointer;
}
input[type=text].error:not(:disabled),
input[type=email].error:not(:disabled),
input[type=number].error:not(:disabled),
input[type=tel].error:not(:disabled),
select.error:not(:disabled),
textarea.error:not(:disabled) {
  background-color: #fff3f2;
  border-color: #f75c4d;
}

input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=number]::placeholder,
textarea::placeholder {
  color: #ccc;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 30px;
  background: #fff url("../img/select_icon.png") no-repeat center right 10px;
  background-size: 10px 6px;
}

select::-ms-expand {
  display: none;
}

select:-moz-focusring {
  color: transparent;
}

.event_list {
  display: flex;
  flex-wrap: wrap;
}
.event_list.large li {
  width: calc(50% - 15px);
}
.event_list.large li:nth-child(even) {
  margin-right: 0;
}
.event_list .link {
  display: block;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  position: relative;
}

a.link {
  color: #079D5A;
  text-decoration: underline;
}

.event_list li {
  width: calc(25% - 15px);
  margin-right: 20px;
  position: relative;
}
.event_list li a {
  height: 100%;
  display: block;
}
.event_list li:nth-child(4n) {
  margin-right: 0;
}
.event_list li:nth-child(n+5) {
  margin-top: 20px;
}
.event_list li .tag {
  display: inline-block;
  text-align: center;
  color: #fff;
  background: #8CF043;
  width: 80px;
  padding: 2px 5px;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  font-size: 1.2rem;
}
.event_list li .picture {
  padding: 30% 50%;
  overflow: hidden;
  position: relative;
}
.event_list li .picture .img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../img/noimage.jpg") center/cover;
}
.event_list li .text {
  padding: 10px 10px 15px;
}
.event_list li .text .title {
  line-height: 1.1;
  margin-bottom: 5px;
  line-height: 1.2;
  margin: 0;
}
.event_list li .detail {
  font-size: 1.3rem;
  margin-bottom: 5px;
}
.event_list li .detail .tag {
  display: inline-block;
  text-align: center;
  margin-right: 5px;
  color: #fff;
  background: #8CF043;
  border-radius: 3px;
  padding: 2px 8px;
  font-weight: bold;
  margin-bottom: 5px;
}
.event_list li .detail time {
  font-weight: bold;
}

.news_list li:not(:last-child) {
  margin-bottom: 20px;
}
.news_list li a {
  display: flex;
  justify-content: start;
}
.news_list li a time {
  margin: 5px 20px 0 0;
  width: 80px;
  font-size: 1.4rem;
}
.news_list li a .tag {
  display: inline-block;
  text-align: center;
  margin-right: 20px;
  color: #fff;
  background: #8CF043;
  width: 90px;
  border-radius: 5px;
  padding: 2px 8px;
  font-weight: bold;
  font-size: 1.4rem;
}
.news_list li a p {
  margin-top: 2px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: calc(100% - 220px);
}

.dot_list li {
  position: relative;
  padding-left: 15px;
}
.dot_list li:not(:last-child) {
  margin-bottom: 5px;
}
.dot_list li:before {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  left: 0;
  top: 9px;
  border-radius: 50%;
  margin: auto;
  background: #8CF043;
  z-index: 1;
}
.dot_list li a {
  display: inline-block;
  text-decoration: underline;
  color: #8CF043;
}
.dot_list li a[target="_blank"]:after {
  content: url(../img/blank.png);
  left: 5px;
  top: -1px;
  position: relative;
}
.dot_list.kome li {
  padding-left: 20px;
}
.dot_list.kome li:before {
  content: "※";
  top: 0;
  background: none;
}

.archives_list li:not(:last-child) {
  margin-bottom: 15px;
  border-bottom: solid 1px #eee;
  padding-bottom: 15px;
}
.archives_list li a {
  display: block;
}
.archives_list li a .tag {
  display: inline-block;
  text-align: center;
  color: black;
  background: #8CF043;
  border-radius: 5px;
  padding: 2px 8px;
  font-weight: bold;
  font-size: 1.4rem;
}
.archives_list li a time {
  margin: 7px 10px 0 0;
  width: 75px;
  display: inline-block;
  font-size: 1.4rem;
}
.archives_list li a p {
  margin-top: 5px;
  /* 
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  */
}

.doc_list {
  margin: 20px 0;
  display: flex;
  justify-content: center;
}
.doc_list li {
  width: calc(33.33% - 20px);
  margin-right: 30px;
  float: left;
}
.doc_list li:nth-child(3n) {
  margin-right: 0;
}
.doc_list li:nth-child(n+4) {
  margin-top: 20px;
}
.doc_list li a {
  text-align: center;
  width: 100%;
  border: solid 2px #8CF043;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-size: 1.6rem;
  padding: 10px;
  color: #8CF043;
  background: #fff;
}

.num_list {
  counter-reset: number;
}
.num_list > li {
  position: relative;
  padding-left: 3rem;
}
.num_list > li:not(:last-child) {
  margin-bottom: 5px;
}
.num_list > li:before {
  counter-increment: number;
  content: counter(number) ".";
  display: inline-block;
  position: absolute;
  left: 3px;
  top: 0;
  text-align: right;
}

.table_dl {
  margin-top: 20px;
}
.table_dl dt {
  max-width: 16rem;
  padding-right: 20px;
  float: left;
  clear: both;
  font-weight: bold;
  margin-bottom: 10px;
  /* 
  padding-left: 15px;
  position: relative;
  &:before {
    content: "";
    width: 6px;
    height: 6px;
    position: absolute;
    left: 0;
    top: 9px;
    background: $green;
    border-radius: 50%;
    display: inline-block;
  }
  */
}
.table_dl dd {
  display: table;
  float: left;
  width: calc(100% - 16rem);
  margin-bottom: 10px;
}

.pager ul {
  display: flex;
  justify-content: center;
}
.pager ul li {
  margin: 0 5px;
}
.pager ul li a, .pager ul li span {
  height: 40px;
  min-width: 40px;
  padding: 7px;
  border: solid 1px #666;
  display: block;
  text-align: center;
  border-radius: 5px;
}
.pager ul li .current {
  background: #666;
  color: #fff;
}

.flow_list {
  display: flex;
  justify-content: space-between;
}
.flow_list li {
  width: calc(33.33% - 40px);
  position: relative;
  padding: 10px;
  border: solid 2px #CCC;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}
.flow_list li span {
  font-weight: normal;
}
.flow_list li div {
  width: 100%;
  text-align: center;
}
.flow_list li:not(:last-child):after {
  content: "";
  display: inline-block;
  position: absolute;
  right: -30px;
  width: 18px;
  top: 40px;
  height: 18px;
  border-right: 3px solid #8CF043;
  border-bottom: 3px solid #8CF043;
  transform: rotate(-45deg);
}
.flow_list.two li {
  width: calc(50% - 40px);
}
.experience li:not(:last-child):after {
  content: "";
  display: inline-block;
  position: absolute;
  right: -30px;
  width: 18px;
  top: 30px;
  height: 18px;
  border-right: 3px solid #8CF043;
  border-bottom: 3px solid #8CF043;
  transform: rotate(-45deg);
}
.flow_list.four li {
  width: calc(25% - 40px);
}

.page_controls {
  display: flex;
  justify-content: center;
}
.page_controls li {
  margin: 0 5px;
}
.page_controls li a, .page_controls li span {
  height: 40px;
  min-width: 40px;
  padding: 7px;
  border: solid 1px #666;
  display: block;
  text-align: center;
  border-radius: 5px;
}
.page_controls li .current {
  background: #666;
  color: #fff;
}

.single .info {
  margin-bottom: 30px;
}
.single .info .tag {
  display: inline-block;
  text-align: center;
  color: black;
  background: #8CF043;
  border-radius: 5px;
  padding: 2px 8px;
  font-weight: bold;
  font-size: 1.4rem;
  margin-right: 10px;
}
.single .info h1 {
  margin-top: 15px;
  padding-bottom: 5px;
  border-bottom: solid 1px #ccc;
}

.flexible_content p {
  margin-bottom: 20px;
}
.flexible_content a {
  text-decoration: underline;
}
.flexible_content .gray {
  font-size: 1.2rem;
  color: #999;
}
.flexible_content .red {
  color: red;
}
.flexible_content h2:not(:first-child),
.flexible_content h3:not(:first-child) {
  margin-top: 40px;
}
.flexible_content .img_text {
  margin-bottom: 40px;
}
.flexible_content .img_text .img {
  width: calc(45% - 30px);
  margin-right: 30px;
  float: left;
  text-align: center;
}
.flexible_content .img_text p {
  width: 55%;
  float: right;
}
.flexible_content .img_text:nth-of-type(even) p {
  float: left;
}
.flexible_content .img_text:nth-of-type(even) .img {
  float: right;
  margin: 0 0 0 30px;
}
.flexible_content .img_text:last-child {
  margin-bottom: 0;
}
.flexible_content .img_tex
.gray_box {
  background: #eee;
  padding: 15px;
}
.flexible_content .border_box {
  border: solid 1px #ccc;
  padding: 15px;
}
.flexible_content .picture {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.flexible_content .picture:not(:last-child) {
  margin-bottom: 40px;
}
.flexible_content .picture img {
  max-width: 100%;
  width: auto;
  height: auto;
}

.plane_table {
  width: 100%;
  margin: 20px auto;
}
.plane_table th, .plane_table td {
  padding: 10px;
  border: solid 1px #ccc;
  background: #fff;
}
.plane_table th {
  background: #eee;
}

.mailat {
  display: inline-block;
}
.mailat:after {
  content: "＠";
}

hr.line {
  border: none;
  height: 25px;
  width: 100%;
  margin: 60px 0 0;
  background: url("../img/line.png") repeat-x center/contain;
}

.sp {
  display: none;
}

@media (max-width: 839px) {
  body.large main {
    font-size: 1.4rem;
  }

  .wrapper {
    font-size: 1.4rem;
  }

  .sp {
    display: inherit;
  }

  .pc {
    display: none;
  }

  h2, .h2 {
    font-size: 2.1rem;
  }
  h2 .sub, .h2 .sub {
    font-size: 1.4rem;
  }
  h2:before, h2:after, .h2:before, .h2:after {
    top: 17px;
    width: 30px;
  }
  h2.line2:before, h2.line2:after, .h2.line2:before, .h2.line2:after {
    top: 30px;
  }
  h2:before, .h2:before {
    left: -45px;
  }
  h2:after, .h2:after {
    right: -45px;
  }
  h2 + p, .h2 + p {
    text-align: left;
  }

  h3, .h3 {
    font-size: 1.8rem;
    margin: 0 0 15px;
  }
  h3 + .sub, .h3 + .sub {
    font-size: 2rem;
  }

  .btn {
    min-width: 140px;
    margin: 20px auto 0;
    padding: 8px 10px;
    border-width: 2px;
  }
  .btn.mini {
    min-width: 120px;
    font-size: 1.2rem;
  }

  .page_ttl {
    height: 160px;
  }
  .page_ttl h1, .page_ttl .title {
    font-size: 2.6rem;
  }
  .page_ttl h1 br, .page_ttl .title br {
    display: inline;
  }
  .page_ttl .caption {
    font-size: 1.2rem;
    margin-top: 5px;
  }

  .intro {
    text-align: left;
  }
  .intro br {
    display: none;
  }

  .table_dl dt {
    max-width: 12rem;
    padding-right: 15px;
  }
  .table_dl dd {
    max-width: calc(100% - 12rem);
  }

  hr.line {
    margin: 30px 0 0;
  }

  .pager ul li {
    margin: 0 3px;
  }
  .pager ul li a, .pager ul li span {
    height: 32px;
    min-width: 32px;
    padding: 5px;
  }

  .event_list.large li {
    width: 100%;
    max-width: 500px;
    margin: auto;
  }
  .event_list.large li:nth-child(n+2) {
    margin: 20px auto 0;
  }
  .event_list li {
    width: calc(50% - 7.5px);
    margin-right: 15px;
  }
  .event_list li:nth-child(2n) {
    margin-right: 0;
  }
  .event_list li:nth-child(n+3) {
    margin-top: 15px;
  }
  .event_list li .link .text .detail {
    font-size: 1.2rem;
  }

  .gallery .caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    line-height: 3rem;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    text-align: center;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
    font-size: 1.2rem;
  }

  .dot_list li {
    width: 100%;
    float: none;
  }
  .dot_list li:nth-child(n+2) {
    margin-top: 5px;
  }
  .dot_list li:before {
    top: 5px;
  }

  .news_list li:not(:last-child) {
    margin-bottom: 15px;
    border-bottom: solid 1px #ccc;
    padding-bottom: 15px;
  }
  .news_list li a {
    display: block;
  }
  .news_list li a time {
    margin: 0 5px 0 0;
    font-weight: bold;
  }
  .news_list li a .tag {
    min-width: 100px;
    margin-right: 0;
    padding: 2px 4px;
    font-size: 1.2rem;
  }
  .news_list li a p {
    width: 100%;
  }

  .archives_list li a time {
    font-size: 1.2rem;
  }
  .archives_list li a .tag {
    padding: 2px 4px;
    font-size: 1.2rem;
  }

  .flexible_content .img_text {
    margin-bottom: 30px;
  }
  .flexible_content .img_text .img {
    width: calc(45% - 15px);
    margin-right: 15px;
  }
  .flexible_content .img_text:nth-of-type(even) .img {
    margin: 0 0 0 15px;
  }
  .flexible_content .picture:not(:last-child) {
    margin-bottom: 30px;
  }
  .flexible_content .picture img {
    width: auto;
    height: auto;
  }

  .plane_table th, .plane_table td {
    padding: 10px 5px;
    font-size: 1.2rem;
    min-width: 60px;
  }
}
.tabs {
  background-color: #fff;
  margin: 0 auto;
}
.tabs .tab_btn {
  border-left: solid 1px #ddd;
}
.tabs .tab_item {
  width: calc(100%/3);
  height: 50px;
  background-color: #fff;
  line-height: 50px;
  text-align: center;
  color: #999;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
  border: solid 1px #ddd;
  cursor: pointer;
  border-left: 0;
}
.tabs .tab_item:hover {
  opacity: 0.75;
}
.tabs .tab_item:first-of-type, .tabs .tab_item:nth-of-type(4n) {
  border-left: solid 1px #ddd;
}
.tabs .tab_item:nth-of-type(n+4) {
  border-top: none;
}
.tabs input[name="tab_item"] {
  display: none;
}
.tabs .tab_content {
  display: none;
  clear: both;
  padding-top: 30px;
}
.tabs #tab1:checked ~ #content1,
.tabs #tab2:checked ~ #content2,
.tabs #tab3:checked ~ #content3,
.tabs #tab4:checked ~ #content4,
.tabs #tab5:checked ~ #content5,
.tabs #tab6:checked ~ #content6 {
  display: block;
}
.tabs input:checked + .tab_item {
  background-color: #8CF043;
  color: black;
  border-left: none;
  border-right: none;
}

@media (max-width: 839px) {
  .tabs .tab_item {
    width: 100%;
    height: 50px;
  }
  .tabs .tab_item:nth-of-type(n+2) {
    border-top: none;
    border-left: solid 1px #ddd;
  }
}
.modal {
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

.modal__bg {
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
}

.modal__content {
  background: #fff;
  left: 50%;
  padding: 40px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  font-size: 1.6rem;
}

.table {
  width: 100%;
  margin: 20px auto;
}
.table th, .table td {
  padding: 20px;
  border-top: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
  background: #fff;
  min-width: 150px;
}
.table th {
  font-weight: bold;
  vertical-align: top;
  text-align: left;
}
.table thead th {
  text-align: center;
}

@media screen and (max-width: 839px) {
  .table th, .table td {
    padding: 10px;
    min-width: auto;
  }
  .table td:first-child {
    width: 25%;
  }
  .table th {
    width: 25%;
  }
}
/*--------------------------------------
テキスト系
---------------------------------------*/
.input-text input, .input-text textarea {
  padding: 10px;
  height: 40px;
  background: #F4F4F4;
  border: #ccc solid 1px;
  cursor: pointer;
  border-radius: 5px;
}
.input-text input.error, .input-text textarea.error {
  border-color: #e50000;
  background: #FFF2F2;
}
.input-text input:focus, .input-text textarea:focus {
  border: #8CF043 solid 3px;
}
.input-text textarea {
  width: 100%;
  height: 200px;
}
.input-text .input-text-short {
  width: 100px;
}
.input-text.auto input, .input-text.auto textarea {
  width: auto;
}
.input-text.lock input, .input-text.lock textarea {
  pointer-events: none;
  background: none;
  padding: 0;
  border: none;
  height: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

.error-cell .input-text input, .error-cell .input-text textarea {
  border-color: #e50000;
  background: #FFF2F2;
}

/*--------------------------------------
ラジオボタン
---------------------------------------*/
.input-radio {
  line-height: 1;
}
.input-radio input[type=radio] {
  display: none;
  margin: 0;
}
.input-radio input[type=radio] + span {
  cursor: pointer;
  display: inline-block;
  padding-left: 30px;
  position: relative;
}
.input-radio input[type=radio] + span:not(:last-child) {
  margin-right: 20px;
}
.input-radio input[type=radio] + span:before {
  border: 1px solid #8CF043;
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  top: -4px;
  left: 0;
  height: 20px;
  width: 20px;
  background: #fff;
}
.input-radio input[type=radio]:checked + span::after {
  content: "";
  background: #8CF043;
  border-radius: 50%;
  display: block;
  position: absolute;
  left: 3px;
  top: -1px;
  height: 14px;
  width: 14px;
}

/*--------------------------------------
チェックボックス
---------------------------------------*/
.input-check {
  line-height: 1;
}
.input-check input[type=checkbox] {
  display: none;
  margin: 0;
}
.input-check input[type=checkbox] + span {
  cursor: pointer;
  display: inline-block;
  padding-left: 25px;
  position: relative;
}
.input-check input[type=checkbox] + span:before {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  left: 0;
  height: 16px;
  width: 16px;
  border: solid 1px #ccc;
  background: #fff;
}
.input-check input[type=checkbox] + span:not(:last-child) {
  margin-right: 20px;
}
.input-check input[type=checkbox]:checked + span::after {
  content: "";
  display: block;
  position: absolute;
  border-bottom: 2px solid #8CF043;
  border-left: 2px solid #8CF043;
  left: 3px;
  top: -2px;
  transform: rotate(-45deg);
  height: 8px;
  width: 16px;
}

/*--------------------------------------
プルダウン
---------------------------------------*/
.input-select {
  position: relative;
  display: inline-block;
}
.input-select select {
  appearance: none;
  cursor: pointer;
  text-indent: .01px;
  padding: 8px 30px 8px 10px;
  height: 40px;
  background: #F4F4F4;
}
.input-select:after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  position: absolute;
  right: 15px;
  top: 14px;
  border-right: solid 1px #333;
  border-bottom: solid 1px #333;
  transform: rotate(45deg);
}

@media screen and (max-width: 839px) {
  .input-text input, .input-text textarea {
    width: 100%;
  }
}
.contact .blockquote p {
  margin-bottom: 20px;
}
.contact .blockquote table th {
  padding-right: 15px;
  min-width: 80px;
}
.contact .form_btn {
  display: flex;
  justify-content: center;
}
.contact .form_btn .btn {
  margin: 30px 0 0;
}
.contact .form_btn .btn:nth-child(n+2) {
  margin-left: 30px;
}
.contact .table {
  margin: 10px auto 0;
}
.contact .table .hide {
  display: none;
}
.contact .table th span {
  color: #fff;
  display: inline-block;
  margin-left: 10px;
  font-size: 1.2rem;
  background: #e50000;
  padding: 1px 5px;
}
.contact .table th {
  width: 300px;
}
.contact .table td {
  width: calc(100% - 300px);
}
.contact .table td span.error {
  display: block;
  margin-top: 5px;
  font-size: 1.2rem;
}

.mw_wp_form .error {
  font-size: 1.2rem;
  display: block;
  color: #e50000;
  margin-top: 10px;
  padding-left: 20px;
  position: relative;
}
.mw_wp_form .error:before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url("../../img/exclamation.svg") no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 2px;
}

.mw_wp_form_confirm .table th span {
  display: none;
}
.mw_wp_form_confirm .require {
  display: none;
}

@media screen and (max-width: 839px) {
  .contact .form_btn {
    flex-wrap: wrap;
  }
  .contact .table {
    margin: 10px auto 0;
    border-top: solid 1px #ddd;
  }
  .contact .table td, .contact .table th {
    display: block;
    width: 100%;
  }
  .contact .table th {
    padding: 20px 0 10px;
    border: none;
  }
  .contact .table td {
    border-top: none;
    padding: 0 0 20px;
  }
}
/* header,footer,section等 */
body.lock {
  position: fixed;
  width: 100%;
}

html,
body {
  height: 100%;
  background: #fff;
}

.wrapper {
  padding-top: 80px;
  min-height: 100%;
  position: relative;
}

.anker {
  margin-top: -130px;
  padding-top: 130px;
}

main {
  position: relative;
}
main > section {
  padding: 80px 0 0;
}
main > section:last-of-type {
  padding-bottom: 80px;
}
main > section section {
  padding: 40px 0 0;
}
main > section section:first-of-type {
  padding-top: 0;
}
main .breadcrumb {
  margin-top: 15px;
}
main .breadcrumb br {
  display: none;
}

.inner {
  max-width: 1230px;
  width: 100%;
  padding-left: 15px !important;
  padding-right: 15px !important;
  margin: auto;
  position: relative;
}

.inner_s {
  max-width: 990px;
  width: 100%;
  padding-left: 15px !important;
  padding-right: 15px !important;
  margin: auto;
  position: relative;
}

@keyframes fadeinmenu {
  0% {
    height: 0;
  }
  100% {
    height: 40px;
  }
}
#header {
  height: 80px;
  padding: 17px 0 14px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
#header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #8CF043;
}
#header .logo {
  float: left;
  display: inline-block;
  margin-top: 5px;
}
#header .logo img {
  height: 40px;
  width: auto;
}
#header nav {
  float: right;
  display: flex;
  padding-top: 15px;
}
#header nav > ul:not(:last-of-type) {
  margin-right: 15px;
  padding-right: 15px;
  position: relative;
}
#header nav > ul:not(:last-of-type):after {
  content: "";
  position: absolute;
  right: 0;
  width: 1px;
  height: 20px;
  background: #333;
}
#header nav #menu {
  display: flex;
}
#header nav #menu > li:not(:last-child) {
  margin-right: 20px;
}
#header #font {
  display: flex;
}
#header #font li {
  position: relative;
}
#header #font li:not(:last-child) {
  margin-right: 10px;
}
#header #font li a {
  font-size: 1.4rem;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  line-height: 24px;
  border: solid 1px #ccc;
}
#header #font li.active a {
  background: #8CF043;
  border-color: #8CF043;
}
#header .sns {
  display: flex;
  position: relative;
  top: -5px;
}
#header .sns li:not(:last-child) {
  margin-right: 10px;
}
#header .sns li img {
  width: 32px;
  height: auto;
}

#menu_btn {
  display: none;
  cursor: pointer;
  position: absolute;
  width: 55px;
  height: 55px;
  right: 0px;
  top: -10px;
  padding: 10px 17.5px;
  z-index: 101;
}
#menu_btn:before, #menu_btn:after, #menu_btn .border {
  content: "";
  display: block;
  background: #000;
  position: relative;
  width: 20px;
  transition: 0.3s ease;
  height: 2px;
}
#menu_btn:before {
  top: 11px;
}
#menu_btn .border {
  top: 15px;
}
#menu_btn:after {
  top: 19px;
}
#menu_btn .close {
  display: none;
}
#menu_btn.open:before {
  transform: translateY(7px) rotate(145deg);
}
#menu_btn.open:after {
  transform: translateY(-5px) rotate(-145deg);
}
#menu_btn.open .border {
  background: none;
}
#menu_btn.open .close {
  display: block;
}

.footer_menu {
  padding: 15px 0;
  border-top: solid 1px #ccc;
}
.footer_menu ul {
  display: flex;
}
.footer_menu ul li:not(:last-child) {
  margin-right: 30px;
}

#footer {
  background: #444;
  color: #fff;
  font-size: 1.4rem;
}
#footer .inner {
  display: flex;
  justify-content: space-between;
}
#footer .address .logo img {
  height: 50px;
  width: auto;
}
#footer .address table {
  margin-top: 30px;
}
#footer .address table th {
  text-align: left;
}
#footer .address table td {
  padding-left: 10px;
}
#footer nav #footer_menu1 {
  display: flex;
}
#footer nav #footer_menu1 > li {
  position: relative;
}
#footer nav #footer_menu1 > li:not(:last-child) {
  margin-right: 15px;
  padding-right: 15px;
}
#footer nav #footer_menu1 > li:not(:last-child):after {
  content: "/";
  position: absolute;
  right: 0;
}
#footer nav #footer_menu2 {
  margin-top: 30px;
  display: flex;
  justify-content: flex-end;
}
#footer nav #footer_menu2 > li {
  padding-left: 15px;
  position: relative;
}
#footer nav #footer_menu2 > li:before {
  content: ">";
  position: absolute;
  left: 0;
}
#footer nav #footer_menu2 > li:not(:last-child) {
  margin-right: 15px;
}
#footer nav .licence {
  position: absolute;
  bottom: 0;
  right: 15px;
}

@media (max-width: 1080px) {
  #header nav #menu {
    display: flex;
  }
  #header nav #menu > li {
    font-size: 1.4rem;
  }
  #header nav #menu > li:not(:last-child) {
    margin-right: 15px;
  }
  #header nav #menu > li span {
    display: none;
  }
}
@media (max-width: 839px) {
  main > section {
    padding: 40px 0 0;
  }
  main > section:last-of-type {
    padding-bottom: 40px;
  }
  main > section > section {
    padding: 30px 0 0;
  }

  .wrapper {
    padding-top: 55px;
  }

  .anker {
    margin-top: -95px;
    padding-top: 95px;
  }

  #header {
    height: 55px;
    padding: 10px 0;
  }
  #header .logo img {
    height: 30px;
  }
  #header nav {
    padding: 8px 45px 0 0;
  }
  #header nav > ul:not(:last-of-type) {
    margin-right: 0;
    padding-right: 0;
    position: relative;
  }
  #header nav > ul:not(:last-of-type):after {
    content: none;
  }
  #header nav #menu {
    height: 0;
    overflow: hidden;
    display: block;
    position: fixed;
    top: 55px;
    width: 100%;
    left: 0;
    transition: 0.4s ease;
    background: #fff;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
  }
  #header nav #menu.open {
    height: 200px;
  }
  #header nav #menu > li {
    text-align: center;
    margin: 10px 0 0;
  }
  #header nav #menu > li:not(:last-child) {
    margin: 10px 0 0;
  }
  #header nav #menu > li span {
    display: inline;
  }
  #header nav #font {
    display: none;
  }
  #header #menu_btn {
    display: block;
  }

  #footer {
    padding: 30px 0;
    font-size: 1.2rem;
  }
  #footer .inner {
    display: block;
  }
  #footer nav #footer_menu1,
  #footer nav #footer_menu2 {
    display: block;
    margin-top: 0;
    justify-content: flex-start;
  }
  #footer nav #footer_menu1 li,
  #footer nav #footer_menu2 li {
    width: 50%;
    float: left;
  }
  #footer nav #footer_menu1 li:not(:last-child),
  #footer nav #footer_menu2 li:not(:last-child) {
    margin-right: 0;
  }
  #footer nav #footer_menu1 {
    margin-top: 20px;
  }
  #footer nav #footer_menu1 > li {
    padding-left: 15px;
    position: relative;
  }
  #footer nav #footer_menu1 > li:before {
    content: ">";
    position: absolute;
    left: 0;
  }
  #footer nav #footer_menu1 > li:not(:last-child):after {
    content: none;
  }
  #footer nav .licence {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 30px;
  }
  #footer .address .logo img {
    height: 40px;
    width: auto;
  }

  .footer_menu ul {
    flex-wrap: wrap;
  }
  .footer_menu ul li {
    width: 100%;
    text-align: center;
  }
  .footer_menu ul li a {
    text-decoration: underline;
  }
  .footer_menu ul li:not(:last-child) {
    margin: 0 auto 10px;
  }
}
/* 固有 */
#top section {
  padding: 80px 0;
}
#top > .mainvisual {
  padding: 0;
}
#top > .mainvisual .slider .image {
  padding-top: 460px;
  background: no-repeat center center / cover;
  align-items: center;
  display: flex;
}
#top > .mainvisual .slider .image a {
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
#top > .mainvisual .slick-prev,
#top > .mainvisual .slick-next {
  top: auto;
  bottom: -40px;
  left: auto;
  right: 72px;
  width: 42px;
  height: 12px;
}
#top > .mainvisual .slick-prev:before,
#top > .mainvisual .slick-next:before {
  content: "";
  background-repeat: no-repeat;
  background-size: 42px 12px;
  display: block;
  width: 42px;
  height: 12px;
}
#top > .mainvisual .slick-prev {
  right: 72px;
}
#top > .mainvisual .slick-prev:before {
  background-image: url("../img/top/control_l.png");
}
#top > .mainvisual .slick-next {
  right: 20px;
}
#top > .mainvisual .slick-next:before {
  background-image: url("../img/top/control_r.png");
}
#top > .mainvisual #slider_box .slick-dots {
  bottom: -35px;
  right: 145px;
  width: auto;
}
#top > .news .inner {
  display: flex;
}
#top > .news .inner > div {
  width: calc(100% - 130px);
}
#top > .news h2 {
  width: 120px;
  margin-right: 50px;
}
#top > .pickup {
  overflow: hidden;
  background: url("../img/line_w.png") repeat-x center top 200px/1px 1200px, url("../img/top/bg1.jpg") no-repeat bottom center/100% auto;
}
#top > .pickup .bg {
  background: rgba(255, 255, 255, 0.9);
  position: relative;
  padding: 20px 20px 20px 0;
  display: inline-block;
}
#top > .pickup .bg:after {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 1000px;
  left: -1000px;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
}
#top > .pickup ul {
  display: flex;
  justify-content: center;
}
#top > .pickup ul li {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  padding: 5px;
  position: relative;
  width: 33.33%;
}
#top > .pickup ul li:not(:last-child) {
  margin-right: 20px;
}
#top > .pickup ul li:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border: solid 1px #333;
}
#top > .pickup ul li a {
  width: 100%;
  height: 100%;
  display: block;
  text-align: center;
  padding: 20px 20px 30px;
  position: relative;
  z-index: 2;
}
#top > .pickup ul li a img {
  width: 45px;
}
#top > .pickup ul li a h3 {
  font-size: 2rem;
  margin: 5px 0 20px;
  padding-bottom: 10px;
  text-align: center;
}
#top > .pickup ul li a .pickupTitle {
  border: none;
  margin: 0;
  padding: 0;
}
#top > .pickup .pickupList {
  margin-top: 30px;
}
#top > .event {
  overflow: hidden;
  background: url("../img/line_w.png") repeat-x center top 200px/1px 1200px, url("../img/top/bg2.jpg") no-repeat top center/100% auto;
}
#top > .event .bg {
  background: rgba(255, 255, 255, 0.9);
  position: relative;
  padding: 20px 20px 20px 0;
  display: inline-block;
}
#top > .event .bg:after {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 1000px;
  left: -1000px;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
}
#top > .about {
  display: flex;
}
#top > .about img {
  width: calc(100% - 680px);
  height: auto;
}
#top > .about .text {
  width: 620px;
  margin-left: 60px;
}
#top > .about .text .table_dl dt {
  width: 12rem;
}
#top > .about .text .table_dl dd {
  width: calc(100% - 12rem);
}

.faq_list {
  border-top: 1px solid #333;
}
.faq_list dt, .faq_list dd {
  position: relative;
}
.faq_list dt:before, .faq_list dd:before {
  font-size: 1.8rem;
  content: "Q";
  position: absolute;
  left: 0;
  top: 28px;
  font-weight: bold;
}
.faq_list dt {
  padding: 30px 0 5px 30px;
}
.faq_list dd {
  padding: 5px 0 30px 30px;
  position: relative;
  border-bottom: 1px solid #333;
}
.faq_list dd:before {
  content: "A";
  color: #8CF043;
  top: 5px;
}
.faq_list dd a {
  color: #8CF043;
  position: relative;
  padding-left: 20px;
  display: inline-block;
}
.faq_list dd a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-right: solid 2px #8CF043;
  border-bottom: solid 2px #8CF043;
  transform: rotate(-45deg);
}

#permanent .sidescroll {
  overflow-x: scroll;
  overflow-y: hidden;
  height: 670px;
}
#permanent .sidescroll img {
  width: auto;
  max-width: none;
}

#apply h3 span {
  font-size: 1.4rem;
}

#guide h3 span {
  font-size: 1.4rem;
}
#guide .map_flex {
  display: flex;
  justify-content: space-between;
}
#guide .map_flex figure {
  width: calc(50% - 30px);
}
#guide .map_flex figure figcaption h3 {
  margin-top: 30px;
}
#guide .wpsbc-container[data-columns] .wpsbc-calendars .wpsbc-calendar {
  max-width: 640px !important;
  max-height: 100%;
  float: none !important;
  margin: auto;
}

#exhibition h2 {
  border-bottom: double #333;
  padding-bottom: 5px;
}

#learn .time_table {
  width: 100%;
}
#learn .time_table th, #learn .time_table td {
  padding: 10px;
  border: solid 1px #ccc;
}
#learn .time_table thead {
  background: #ededed;
}
#learn .table_dl dt {
  width: 10rem;
}
#learn .sayahaku_archive article {
  padding: 30px;
  border-top: double #ccc;
  border-bottom: double #ccc;
  width: 100%;
  background: #efefef;
}
#learn .sayahaku_archive article:last-child {
  border-bottom: double #ccc;
}
#learn .sayahaku_archive article:nth-child(n+2) {
  margin-top: 30px;
}
#learn .sayahaku_archive .title {
  font-size: 2.4rem;
  margin: 5px 0 10px;
  padding-bottom: 5px;
  border-bottom: dotted 3px #ccc;
}
#learn .sayahaku_archive .intro {
  text-align: left;
}
#learn .event_list li {
  position: relative;
}
#learn .event_list li a {
  height: auto;
}
#learn .event_list li .box {
  border: solid 4px;
  padding: 15px;
  margin-bottom: 10px;
}
#learn .event_list li .box h5 {
  font-size: 1.8rem;
  text-align: center;
}
#learn .event_list li .box.yellow {
  border-color: #e6e646;
}
#learn .event_list li .box.orange {
  border-color: orange;
}
#learn .event_list li .box.blue {
  border-color: blue;
}
#learn .event_list li .box.red {
  border-color: #B70000;
  color: #000;
}

@media (max-width: 839px) {
  #top section {
    padding: 40px 0;
  }
  #top > .mainvisual .slider .image {
    padding-top: 200px;
  }
  #top > .news .inner {
    display: block;
  }
  #top > .news .inner > div {
    width: 100%;
  }
  #top > .news h2 {
    margin: 0 0 15px;
  }
  #top > .pickup {
    background: url("../img/line_w.png") repeat-x center top 160px/1px 1200px, url("../img/top/bg1.jpg") no-repeat top center/auto 190px;
  }
  #top > .pickup ul {
    display: block;
  }
  #top > .pickup ul li {
    width: 100%;
  }
  #top > .pickup ul li:not(:last-child) {
    margin: 0 0 15px;
  }
  #top > .pickup ul li a {
    padding: 10px 10px 20px;
  }
  #top > .pickup ul li a img {
    width: 40px;
  }
  #top > .pickup ul li a h3 {
    margin: 5px 0 10px;
    padding-bottom: 5px;
  }
  #top > .event {
    background: url("../img/line_w.png") repeat-x center top 160px/1px 1200px, url("../img/top/bg2.jpg") no-repeat top center/auto 190px;
  }
  #top > .about {
    display: grid;
  }
  #top > .about img {
    order: 2;
    width: 80%;
    max-width: 500px;
    margin: auto;
  }
  #top > .about .text {
    order: 1;
    width: 100%;
    margin: 0 0 20px;
  }
}
#sitemap .root .main {
  display: none;
}
#sitemap ul.under {
  display: flex;
  position: relative;
  margin-top: 30px;
  padding-top: 30px;
}
#sitemap ul.under li:first-child {
  position: absolute;
  font-weight: bold;
  top: 0;
}
#sitemap ul.under li:not(:last-child) {
  margin-right: 20px;
}
#sitemap ul.under li:nth-child(n+2) a:before {
  content: none;
}

@media (max-width: 839px) {
  #sitemap .root {
    margin-top: 5px;
  }
  #sitemap ul.under {
    display: block;
    position: relative;
    margin-top: 20px;
    padding-top: 20px;
  }
  #sitemap ul.under li {
    width: 100%;
  }
  #sitemap ul.under li:not(:last-child) {
    margin-right: 0;
  }
  #sitemap ul.under li:nth-child(n+4) {
    margin-top: 5px;
  }
}
#apply h3 span {
  display: block;
}

#privacy iframe {
  width: 100%;
  height: 1600px;
  border: solid 1px #000;
  padding: 30px 1%;
}

.image_list {
  display: flex;
}
.image_list li {
  width: 50%;
  padding-right: 10px;
}

.gallery .caption, .youtube .caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  line-height: 3rem;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  text-align: center;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
  font-size: 1.2rem;
}

.plane_table td.gallery {
  text-decoration: underline;
}
.plane_table td.gallery:hover {
  background: #eee;
  transition: 0.2s ease;
  cursor: pointer;
}

.plane_table.price tbody tr td:nth-child(1) {
  width: 120px;
}
.plane_table.price tbody tr td:nth-last-child(3) {
  width: 100px;
}
.plane_table.price tbody tr td:nth-last-child(-n+2) {
  width: 160px;
}

@media (max-width: 839px) {
  .plane_table.price tbody tr td:nth-child(1), .plane_table.price tbody tr td:nth-last-child(3), .plane_table.price tbody tr td:nth-last-child(-n+2) {
    width: auto;
  }

  #guide .map_flexA {
    flex-wrap: wrap;
    position: relative;
    padding-top: 380px;
  }
  #guide .map_flex figure {
    width: 100%;
  }
  #guide .map_flex figure:nth-child(2) iframe {
    position: absolute;
    top: 0;
  }
  #guide .map_flex figure figcaption h3 {
    margin-top: 20px;
  }

  /* list調整 */
  .flow_list {
    display: block;
  }
  .flow_list li {
    width: 100%;
    height: 95px;
  }
  .experience li {
    height:70px;
  }
  .flow_list li:not(:last-child) {
    margin: 0 0 35px;
  }
  .flow_list li:not(:last-child):after {
    border-left: 3px solid #8CF043;
    border-right: none;
    right: 47%;
    top: 97px;
  }
  .experience li:not(:last-child):after {
    top: 73px;
  }

  .flow_list.four li {
    width: 100%;
  }
}
