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

.blue,
.pink {
  color: #E8AF8F;
}

.wrapper {
  font-size: 1.6rem;
  line-height: normal;
  color: #333;
  font-family: "Noto Sans JP","Noto Sans","Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3",メイリオ,Meiryo,sans-serif;
  box-sizing: border-box;
}
.wrapper * {
  box-sizing: border-box;
}

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 #E8AF8F;
}

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

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

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

.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: auto;
  min-width: 300px;
  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;
  color: #fff;
  background: #E8AF8F;
  border: solid 2px #E8AF8F;
  transition: 0.1s ease;
}
.btn:hover {
  opacity: 1;
  background: #fff;
  color: #E8AF8F;
}
.btn.mini {
  min-width: 200px;
  font-size: 1.4rem;
  margin: 10px auto 0;
  padding: 5px 10px;
}

.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/page_ttl.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 li {
  width: calc(25% - 15px);
  margin-right: 20px;
  background: #fff;
  position: relative;
}
.event_list li:nth-child(4n) {
  margin-right: 0;
}
.event_list li:nth-child(n+5) {
  margin-top: 20px;
}
.event_list li .link {
  background: #fff;
  display: block;
  height: 100%;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  position: relative;
}
.event_list li .link > .tag {
  display: inline-block;
  text-align: center;
  color: #fff;
  background: #E8AF8F;
  padding: 2px 5px;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  font-size: 1.2rem;
}
.event_list li .link > .tag span + span:before {
  content: "/";
  display: inline-block;
  margin: 0 2px;
}
.event_list li .link .picture {
  padding: 28.12% 50%;
  overflow: hidden;
  position: relative;
}
.event_list li .link .picture .img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: no-repeat center/cover;
}
.event_list li .link .text {
  padding: 10px 10px 35px;
}
.event_list li .link .text .title {
  line-height: 1.1;
  margin-bottom: 5px;
  line-height: 1.2;
  margin: 0;
}
.event_list li .link .detail {
  font-size: 1.3rem;
  margin-bottom: 5px;
}
.event_list li .link .detail .tag {
  display: inline-block;
  text-align: center;
  margin-right: 5px;
  color: #fff;
  background: #E8AF8F;
  border-radius: 3px;
  padding: 2px 8px;
  font-weight: bold;
  margin-bottom: 5px;
}
.event_list li .link .detail time {
  font-weight: bold;
  font-size: 1.3rem;
}

.small .event_list li .link .detail time {
  font-size: 1.2rem;
}

.large .event_list li .link .detail time {
  font-size: 1.4rem;
}

.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: #E8AF8F;
  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: 10px;
  border-radius: 50%;
  margin: auto;
  background: #E8AF8F;
  z-index: 1;
}
.dot_list li a {
  display: inline-block;
  text-decoration: underline;
  color: #E8AF8F;
}
.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 .btn {
  display: inline-block;
  margin: 0;
}
.archives_list li a {
  display: block;
}
.archives_list li a .tag {
  display: inline-block;
  text-align: center;
  color: #fff;
  background: #E8AF8F;
  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 #E8AF8F;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-size: 1.6rem;
  padding: 10px;
  color: #E8AF8F;
  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;
  display: flex;
  flex-wrap: wrap;
}
.table_dl dt {
  width: 16rem;
  font-weight: bold;
  margin-bottom: 15px;
  padding-left: 15px;
  position: relative;
}
.table_dl dt:before {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  left: 0;
  top: 10px;
  margin: auto;
  background: #E8AF8F;
  border-radius: 50%;
  display: inline-block;
}
.table_dl dd {
  width: calc(100% - 16rem);
  margin-bottom: 15px;
}

.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;
}

.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: #fff;
  background: #E8AF8F;
  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;
}
.single .thumbnail img {
  max-width: 1000px;
  max-height: 500px;
}

.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;
}
.plane_table th span {
  display: block;
  font-size: 85%;
}
@media (min-width: 840px) {
  .plane_table.workshop td:nth-child(1) {
    width: 130px;
  }
  .plane_table.workshop td:nth-child(4) {
    width: 220px;
  }
  .plane_table.workshop td:nth-child(5) {
    width: 130px;
  }
  .plane_table.permanent_course td:nth-child(1) {
    width: 270px;
  }
  .plane_table.permanent_course td:nth-child(4) {
    text-align: right;
  }
  .plane_table.permanent_course td:nth-child(5) {
    width: 130px;
  }
}
@media (max-width: 839px) {
  .plane_table.workshop td:nth-child(1) {
    width: 80px;
  }
  .plane_table.workshop td:nth-child(4) {
    width: 180px;
  }
  .plane_table.workshop td:nth-child(5) {
    width: 100px;
  }
  .plane_table.permanent_course td:nth-child(5) {
    width: 100px;
  }
}

@media (max-width: 839px) {
  .table_scroll {
    width: 100%;
    overflow-x: scroll;
  }
  .table_scroll table {
    width: 839px;
  }
}
.anker_list ul {
  display: flex;
  justify-content: space-between;
}
.anker_list ul li {
  width: calc(20% - 15px);
}
.anker_list ul li a {
  color: #fff;
  background: #E8AF8F;
  font-size: 1.6rem;
  text-shadow: 0 0 3px rgba(53, 33, 20, 0.3);
  display: flex;
  min-height: 54px;
  height: 100%;
  align-items: center;
  text-align: center;
  justify-content: center;
  border: 1px solid #E8AF8F;
  padding: 10px;
  border-radius: 6px;
  line-height: 1.3;
  position: relative;
}
.anker_list ul li a:after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: -2px -15px 0 15px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.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;
  }

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

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

  .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 {
    width: 12rem;
  }
  .table_dl dd {
    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 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;
  }

  .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;
  }

  .anker_list ul {
    flex-wrap: wrap;
    max-width: 600px;
    margin: auto;
  }
  .anker_list ul li {
    width: calc(50% - 5px);
  }
  .anker_list ul li a {
    min-height: inherit;
    padding: 5px;
    font-size: 1.4rem;
  }
  .anker_list ul li a:after {
    width: 8px;
    height: 8px;
    margin: -2px -8px 0 10px;
  }
  .anker_list ul li:nth-child(n+3) {
    margin-top: 10px;
  }
  .anker_list ul li:nth-child(odd) {
    margin-right: 10px;
  }
}
.year-list {
  border-bottom: solid 1px #ccc;
}
.year-list li {
  border-top: solid 1px #ccc;
}
.year-list li a {
  display: block;
  padding: 15px;
  text-align: center;
}

.column2 {
  display: flex;
  justify-content: space-between;
}
.column2 .column2-main {
  width: calc(100% - 260px);
}
.column2 .column2-sidebar {
  width: 200px;
  max-width: 500px;
}
.column2 .column2-sidebar h3 {
  padding: 15px;
  background: #eee;
  text-align: center;
  border-top: solid 1px #ccc;
  border-bottom: none;
  margin: 0;
  font-size: 1.8rem;
}

@media (max-width: 839px) {
  .column2 {
    flex-wrap: wrap;
  }
  .column2 .column2-main {
    width: 100%;
  }
  .column2 .column2-sidebar {
    width: 100%;
    margin: 0 auto;
  }
}
/* header,footer,section等 */
body.lock {
  position: fixed;
  width: 100%;
}

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

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

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;
  display: flex;
  align-items: center;
  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 > .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #E8AF8F;
}
#header .logo {
  float: left;
  display: inline-block;
}
#header .logo img {
  height: 40px;
  width: auto;
  margin-top: 6px;
}
#header nav {
  display: flex;
  align-items: center;
  padding-top: 30px;
}
#header nav > ul {
  position: relative;
}
#header nav #menu {
  display: flex;
}
#header nav #menu > li {
  display: flex;
  font-size: 1.4rem;
}
#header nav #menu > li:not(:last-child) {
  margin-right: 20px;
}
#header #font {
  display: flex;
  margin-left: 15px;
  padding-left: 15px;
}
#header #font:after {
  content: "";
  position: absolute;
  left: 0;
  width: 1px;
  height: 20px;
  background: #333;
}
#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: #E8AF8F;
  border-color: #E8AF8F;
  color: #fff;
}
#header .sns {
  display: flex;
  position: absolute;
  top: -3px;
  right: 15px;
}
#header .sns li:not(:last-child) {
  margin-right: 10px;
}
#header .sns li img {
  width: 20px;
  height: auto;
}

#menu_btn {
  display: none;
  cursor: pointer;
  position: fixed;
  top: 0px;
  width: 55px;
  height: 55px;
  right: 0px;
  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 {
  padding: 60px 0;
  background: #444;
  color: #fff;
  font-size: 1.4rem;
}
#footer .inner {
  display: flex;
  justify-content: space-between;
}
#footer .address .logo img {
  height: 36px;
  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;
}

.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;
}

@media (max-width: 1230px) {
  #header nav #menu > li {
    font-size: 1.3rem;
  }
  #header nav #menu > li:not(:last-child) {
    margin-right: 15px;
  }
}
@media (max-width: 1100px) {
  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;
  }

  #header {
    height: 55px;
    padding: 10px 0;
  }
  #header nav {
    padding: 0;
    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.open {
    height: 260px;
  }
  #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 {
    display: block;
  }
  #header nav #menu > li {
    justify-content: 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 nav .sns {
    top: 220px;
    justify-content: center;
    right: 0;
    left: 0;
  }
  #header #menu_btn {
    display: block;
  }
  #header .logo img {
    max-height: 36px;
    max-width: calc(100% - 20px);
    margin-top: 4px;
  }

  .footer_menu ul {
    flex-wrap: wrap;
  }
  .footer_menu ul li {
    width: 100%;
    text-align: center;
  }
  .footer_menu ul li:not(:last-child) {
    margin: 0 auto 10px;
  }
  .footer_menu ul li a {
    text-decoration: underline;
  }

  #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;
  }
}
/* 固有 */
#top .introduction {
  text-align: center;
  font-size: 115%;
  padding-bottom: 0;
}
#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 .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 {
  margin-right: 30px;
}
#top > .pickup {
  background: url("../img/line_w.png") repeat-x center top 200px/1px 1200px, url("../img/top/bg1.jpg") no-repeat top center/cover;
}
#top > .pickup h2 {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
#top > .pickup ul {
  display: flex;
}
#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: calc(33.33% - 30px);
}
#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 h3 {
  font-size: 1.8rem;
  margin: 10px 0 20px;
  padding-bottom: 10px;
  text-align: center;
  height: 54px;
  align-items: center;
  display: flex;
  justify-content: center;
}
#top > .event {
  background: url("../img/line_w.png") repeat-x center top 200px/1px 1200px, url("../img/top/bg2.jpg") no-repeat top center/cover;
}
#top > .event h2 {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
#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: #E8AF8F;
  top: 5px;
}
.faq_list dd a {
  color: #E8AF8F;
  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 #E8AF8F;
  border-bottom: solid 2px #E8AF8F;
  transform: rotate(-45deg);
}

@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-right: 0;
  }
  #top > .pickup {
    background: url("../img/line_w.png") repeat-x center top 160px/1px 1200px, url("../img/top/bg1.jpg") no-repeat top center/cover;
  }
  #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/cover;
  }
  #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;
  }
}
#access .maps {
  display: flex;
  justify-content: space-between;
}
#access .maps li {
  width: calc(50% - 20px);
}
#access .table_dl {
  border-bottom: solid 1px #ccc;
  max-width: 640px;
}
#access .table_dl dt, #access .table_dl dd {
  border-top: solid 1px #ccc;
  padding: 15px;
  margin: 0;
}
#access .table_dl dt {
  padding: 15px 15px 15px 30px;
}
#access .table_dl dt:before {
  left: 10px;
  top: 23px;
}
#access .plane_table th {
  padding: 15px;
}
@media (min-width: 840px) {
  #access .plane_table th {
    width: 33.33%;
  }
}
#access .plane_table th img {
  width: 28px;
  height: 28px;
  margin: -2px -5px 0 8px;
}
#access .plane_table td {
  padding: 20px 30px;
  vertical-align: top;
  line-height: 1.5;
}

@media (max-width: 839px) {
  #access .maps {
    flex-wrap: wrap;
  }
  #access .maps li {
    width: 100%;
  }
  #access .maps li:nth-child(n+2) {
    margin-top: 30px;
  }
  #access .table_dl dt, #access .table_dl dd {
    padding: 10px;
  }
  #access .table_dl dt {
    padding: 10px 10px 10px 20px;
  }
  #access .table_dl dt:before {
    left: 8px;
    top: 18px;
  }
  #access .plane_table {
    display: block;
  }
  #access .plane_table th {
    display: none;
  }
  #access .plane_table td {
    padding: 55px 15px 15px;
    vertical-align: top;
    display: block;
    position: relative;
  }
  #access .plane_table td:before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    text-align: center;
    font-weight: bold;
    background: #eee;
    height: 40px;
    padding: 12px;
    width: 100%;
  }
  #access .plane_table td:nth-child(1) {
    border-bottom: none;
  }
  #access .plane_table td:nth-child(1):before {
    content: "電車";
  }
  #access .plane_table td:nth-child(2) {
    border-bottom: none;
  }
  #access .plane_table td:nth-child(2):before {
    content: "バス";
  }
  #access .plane_table td:nth-child(3):before {
    content: "自動車";
  }
}
#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;
  }
}
#privacy iframe {
  width: 100%;
  height: 1600px;
  border: solid 1px #000;
  padding: 30px 1%;
}

#circle .plane_table td:nth-child(1) {
  width: 35%;
}
#circle .plane_table td:nth-child(2) {
  width: 25%;
}
#circle .plane_table td:nth-child(3) {
  width: 15%;
}
#circle .plane_table td:nth-child(4) {
  width: 15%;
  text-align: center;
}
#circle .plane_table td:nth-child(5) {
  width: 10%;
  text-align: center;
}

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

.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;
}

.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;
  }
}
.steplist {
  max-width: 800px;
  margin: auto;
}
.steplist li {
  padding: 10px 15px;
  background: #eee;
  position: relative;
}
.steplist li em {
  font-weight: bold;
}
.steplist li:nth-child(n+2) {
  margin-top: 20px;
}
.steplist li:not(:last-child):after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 7px 0 7px;
  border-color: #E8AF8F transparent transparent transparent;
  margin: auto;
  left: 0;
  right: 0;
  bottom: -15px;
  position: absolute;
}
