@charset "utf-8";

/*---contents parts---*/
:root {
  --black: #3b3635;
  --brown: #7D6853;
  --red: #E8464C;
  --blue: #46abe8;
  --primary: #E6CBAC;
  --primary_sub: #96CFB0;
  --primary_bg01: #f8f4f0;
  --primary_bg02: #f1f1f1;
  --notes: #8d8d8d;
  --line: #cdcdcd;
}
body {
  font-size: 16px;
  line-height: 1.75;
  font-family: "YuGothic", "Yu Gothic", "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: var(--black);
}
.scroll_prevent {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
}
main {
  position: relative;
  z-index: 1;
}
.jost {
  font-family: 'Jost', sans-serif;
}
.contents {
  margin-top: 50px;
  margin-bottom: 50px;
}
.con {
  position: relative;
  display: block;
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 50px 0;
}
.con.w1000 {
  max-width: 1000px;
}
.wrap {
  width: 98%;
  margin-left: auto;
  margin-right: auto;
}
.flex_all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.flex_all.start {
  justify-content: flex-start;
}
.link_con.flex_all {
  gap: 1em;
}
.link_con a {
  width: 48%;
}
.col_50 > * {
  flex: 0 0 48%;
}
.col_30 > * {
  flex: 0 0 31%;
}
.col_30 figure img {
  border-radius: 10px;
}
.flex_rev {
  flex-direction: row-reverse;
}
.dec_text {
  position: relative;
  font-weight: bold;
  font-weight: 500;
  font-size: 14px;
  color: var(--brown);
  font-family: 'Jost', sans-serif;
}
.title01 {
  position: relative;
  font-size: 30px;
  color: var(--brown);
  font-weight: 500;
}
.title01::before {
  content: '';
  display: inline-block;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 28px;
  left: 0;
  background-color: var(--brown);
}
.title01 .dec_text {
  padding-left: 3px;
  padding-right: 10px;
  background-color: #fff;
  z-index: 1;
}
.title02 {
  position: relative;
  border-bottom: solid 3px var(--primary_bg01);
  font-size: 24px;
  padding-bottom: 15px;
  margin-bottom: 30px;
  line-height: 1.3;
}
.title02::after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px var(--primary);
  bottom: -3px;
  width: 20%;
}
.title03 {
  color: var(--brown);
  font-weight: 800;
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px dotted var(--brown);
  line-height: 1.3;
  /* font-size: 18px; */
}
.title04 {
  position: relative;
  clear: both;
  margin-bottom: 20px;
  padding-left: 1.7em;
  font-size: 20px;
  line-height: 1.3;
}
.title04::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0.2em;
  width: 1em;
  height: 1em;
  margin: auto;
  border: 0.25em solid var(--primary);
  border-radius: 50%;
  box-sizing: border-box;
}
.h2_title_con {
  position: relative;
  height: 300px;
}
.h2_title_con::after {
  content: '';
  display: block;
  width: 85%;
  max-width: 1350px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--primary_bg01);
  border-radius: 0px 0px 0px 30px;
  z-index: -1;
}
.h2_title_con h2 {
  max-width: 1600px;
  width: 95%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-weight: 500;
}
.arrow,.arrow_sub,.blank {
  position: relative;
}
.arrow:before,
.arrow::after {
  position: absolute;
  top: 50%;
  right: 22px;
  height: 1px;
  background: #fff;
  content: '';
}
.arrow::before {
  width: 16px;
  transform: translateY(-50%);
}
.arrow::after {
  width: 8px;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: right center;
}
.arrow::before,
.arrow::after,
.arrow:hover::before,
.arrow:hover::after{
  transition: all 0.5s;
}
.arrow:hover::before,
.arrow:hover::after {
  background-color: var(--brown);
}
.arrow_sub::after {
  content: '';
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 6px;
  border-top: 1px solid;
  border-right: 1px solid;
  background-color: var(--brown);
  transform: translateY(-50%)rotate(45deg);
}
.link {
  padding: 0 2px;
  text-decoration: underline;
  color: var(--brown);
}
.link:hover {
  color: var(--primary);
}
.link_box {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 1px 1px 20px 0px rgba(130, 114, 106, 0.3);
  outline: 1px solid rgb(230 203 172 / 0%);
  transition: all 0.5s;
}
.link_box:hover {
  box-shadow: 1px 1px 5px 0px rgba(130, 114, 106, 0.6);
  outline: 1px solid var(--primary);
  transition: all 0.5s;
}
.link01 {
  display: inline-block;
  padding: 6px 25px;
  border: 1.5px solid var(--primary);
  border-radius: 50px;
  background-color: var(--primary);
  color: #fff;
  font-weight: 500;
  font-size: 16px;
}
.link01.color_sub {
  border: 1.5px solid var(--primary_sub);
  background-color: var(--primary_sub);
}
.link01.arrow,.link01.blank {
  padding: 6px 50px 6px 25px;
  min-width: 200px;
}
.link01:hover {
  border: 1.5px solid  var(--brown);
  background-color: #fff;
  color: var(--brown);
}
.link01.blank::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
  background:url(../img/common/ic_blank_w.svg) no-repeat;
  background-size: contain;
  transition: all 0.5s;
}
.link01.blank:hover::after {
  background:url(../img/common/ic_blank_b.svg) no-repeat;
  background-size: contain;
  transition: all 0.5s;
}
.link01.all {
  font-size: 14px;
  padding: 3px 20px 2px;
}
ul.ul01 {
  padding-left: 1.5em;
}
ul.ul01 > li {
  position: relative;
  margin-bottom: 0.5em;
}
ul.ul01 li:last-of-type {
  margin-bottom: 0;
}
.ul01 > li::before {
	content: "";
    position: absolute;
    width: .5em;
    height: .5em;
    left: -1em;
    top: 0.6em;
    /* transform: translateY(-120%); */
    background-color: var(--primary);
}
.ul01.start > li {
  margin-right: 3em;
}
.ul_notice,
.text_notice {
  position: relative;
  margin-left: 1.5em;
  color: var(--notes);
  font-size: 14px;
}
.ul_notice > li {
  position: relative;
}
.ul_notice > li:not(:last-of-type) {
  margin-bottom: .25em;
}
.ul_notice > li::before,
.text_notice::before {
  content: "※";
  position: absolute;
  width: 1.5em;
  height: 1.5em;
  left: -1.5em;
  text-align: center;
}
.ol01 {
  counter-reset: number;
  padding: 0;
}
.ol01 li {
  position: relative;
  margin-bottom: 5px;
  padding-left: 28px;
}
.ol01 li::before {
  display: flex;
  counter-increment: number;
  content: counter(number);
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  font-size: 14px;
  font-family: 'Jost', sans-serif;
  color: var(--brown);
  border: 1px solid;
  border-radius: 50px;
  position: absolute;
  top: 4px;
  left: 0;
}
span.ol01_number {
  display: inline-block;
  width: 18px;
  height: 18px;
  line-height: 1;
  text-align: center;
  margin: 2px;
  padding: 1px 2px 2px 1px;
  font-size: 14px;
  font-family: 'Jost', sans-serif;
  border: 1px solid;
  border-radius: 50px;
}
.text_notice {
  display: inline-block;
}
.text_st01 {
  color: var(--brown);
  font-weight: 800;
  font-size: 20px;
}
.text_st02 {
  background: linear-gradient(transparent 60%, #FAF3D9 0%);
  font-weight: 600;
  display: inline;
  padding: 0 1px 0;
}
.text_st03 {
  position: relative;
  display: inline-block;
  padding: 12px 10px 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--primary_bg02);
}
.text_st03::before,
.text_st03::after {
  position: absolute;
  bottom: -10px;
  left: 1.5em;
  width: 0;
  height: 0;
  content: '';
}
.text_st03::before {
  bottom: -11px;
  border-width: 11px 9px 0 9px;
  border-style: solid;
  border-color: var(--line) transparent transparent transparent;
}
.text_st03::after {
  bottom: -10px;
  border-width: 12px 9px 0 9px;
  border-style: solid;
  border-color: var(--primary_bg02) transparent transparent transparent;
}
.text_st04 {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: rgb(255 255 255 / 80%);
  padding: 3px 10px;
  border-radius: 0 10px;
  color: var(--brown);
  font-weight: 800;
  font-size: 18px;
  line-height: normal;
}
.text_st05 {
  position: relative;
  background-color: var(--primary_bg02);
  padding: 7px 5px 5px 30px;
  margin-left: 15px;
  font-weight: 800;
  border-radius: 10px;
}
.text_st05::before {
  content: "!";
  display: inline-block;
  line-height: 40px;
  position: absolute;
  padding: 0em;
  color: #fff;
  background: var(--primary_sub);
  width: 40px;
  text-align: center;
  height: 40px;
  line-height: 40px;
  left: -1.35em;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: solid 3px white; 
  border-radius: 50%;
}
.table01 {
  width: 100%;
  table-layout: fixed;
}
.table01 tr {
  border-bottom: 1px solid #fff;
}
.table01 thead {
  font-weight: 800;
  color: #fff;
  background-color: var(--primary);
}
.table01 tbody {
  background-color: var(--primary_bg01);
}
.table01 th {
  color: var(--brown);
  font-weight: 800;
  text-align: center;
  border-right: 1px solid #fff;
}
.table01 th,.table01 td {
  padding: 1em;
}
.table01 td {
  border-right: 1px solid #fff;
}
.table02 {
  width: 100%;
}
.table02 th,.table02 td {
  padding: 10px;
  border: 1px solid var(--line);
}
.table02 th {
  width: 20%;
}
.table02 thead th {
  font-weight: 800;
  text-align: center;
  background: var(--primary_bg02);
}
.table_schedule {
  width: 100%;
}
.table_schedule tr {
  border-bottom: 1px solid var(--line);
}
.table_schedule thead th {
  background-color: var(--primary);
}
.table_schedule thead th:first-of-type {
  min-width: 6.5em;
}
.table_schedule tbody th {
  width:20%;
  border-right: 1px solid var(--line);
}
.table_schedule tbody td {
  width: calc(80% / 6);
}
.table_schedule th,.table_schedule td {
  padding: 12px;
  text-align: center;
  vertical-align: middle;
  line-height: 1;
}
.table_schedule tbody {
  background-color: #fff;
}
.table_time {
  width: 100%;
  font-size: 14px;
}
.table_time thead tr {
  border-bottom: 1px solid #fff;
}
.table_time tbody tr {
  border-bottom: 1px solid var(--line);
}
.table_time thead {
  font-weight: 800;
  color: #fff;
  background-color: var(--primary);
  border: 1px solid var(--line);
}
.table_time thead th.line_r {
  border-right: 1px solid #fff;
}
.table_time tbody th,
.table_time tbody td {
  border: 1px solid var(--line);
}
.table_time th {
  color: var(--brown);
  font-weight: 800;
  text-align: center;
}
.table_time th,.table_time td {
  padding: 5px;
  vertical-align: middle;
  text-align: center;
}
.dl01 > dt {
  background-color: var(--primary);
  color: #fff;
  text-align: center;
  padding: 1em;
}
.dl01 > dd {
  padding: 1em;
  border: 1px solid var(--primary);
}
.dl01 > dd:not(:last-of-type) {
  margin-bottom: 1em;
}
.dl02 {
  width: 100%;
}
.dl02 > dt {
  position: relative;
  float: left;
  clear: left;
  min-width: 4.5em;
  padding: 3px;
  text-align: center;
  border: 1px solid var(--line);
}
.dl02 > dd {
  margin-left: 4.5em;
  padding: 3px 3px 3px 10px;
}
.dl03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.dl03 > dt {
  position:relative;
  width: 100px;
  /* padding-right: .5em; */
  margin-right: .5em;
  font-weight:bold;
  color:var(--brown);
}
.dl03 > dt:after{
  content:"：";
  position:absolute;
  right:-.25em;
}
.dl03 > dd {
  width: calc( 100% - ( 100px + 1em ) );
}
.dl03 > dd:not(:last-of-type) {
  margin-bottom: .5em;
}
.dl04 > dt {
  width: 8em;
  float: left;
  clear: both;
  font-weight: 800;
  padding-left: 5px;
}
.dl04 > dd {
  padding: 0 0 5px 8em;
  margin: 0 0 15px 0;
  border-bottom: 1px dotted var(--line);
}
.dl_accordion .accordion_title {
  position: relative;
  cursor: pointer;
  transition: .3s;
  border-bottom: 1px solid var(--line);
  line-height: normal;
  width: 100%;
  transition: all 0.5s;
}
.dl_accordion .accordion_title.active {
  font-weight: 800;
  color: var(--primary);
  border-bottom: 1px solid var(--primary);
  transition: all 0.5s;
}
.dl_accordion .accordion_box {
  padding: 1em;
  background-color: var(--primary_bg01);
}
.dl_qa > dt {
  counter-increment: num 1;
  padding: 15px 1em 10px 60px;
}
.dl_qa > dt:before {
  content: "Q"counter(num);
  width: 60px;
  display: inline-block;
  position: absolute;
  left: 0px;
  top: 15px;
  text-align: center;
}
.dl_qa.active > dt:before {
  font-weight: 800;
  color: var(--primary);
}
.topics01 {
  padding: 30px;
  border-radius: 10px;
  border: 1px solid var(--primary);
}
.topics01 .headline {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 30px;
}
/*
.topics01 .text {
max-width: 700px;
margin-left: auto;
margin-right: auto;
}
*/
.topics02 {
  padding: 1em;
  background-color: var(--primary_bg01);
  border-radius: 10px;
}
.sub_item_box {
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.sub_item_box .sub_item_list {
	margin: auto;
    width: 100%;
    max-width: 850px;
    justify-content: flex-start;
}
.sub_item_box .sub_item_list li a,
.sub_item_box .sub_item_list li button {
  width: 100%;
  padding: 5px 20px;
  font-size: 15px;
  border: 1px solid var(--primary);
  border-radius: 30px;
  background-color: var(--primary);
  color: #fff;
}
.sub_item_box .sub_item_list li {
  margin: 5px;
}
.sub_item_box .sub_item_list li a:hover,
.sub_item_box .sub_item_list li button:hover {
  color: var(--primary);
  background-color: #fff;
}
.flow_design {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
}
.flow_design ul {
  padding: 0;
}
.flow_design li {
  list-style-type: none;
}
.flow_design dd {
  margin-left: 0;
}
.flow_design .flow {
  position: relative;
}
.flow_design .flow::before {
  content: "";
  width: 15px;
  height: 100%;
  background: var(--primary_bg02);
  margin-left: -129px;
  display: block;
  position: absolute;
  top: 0;
  left: 120px;
  border-radius: 20px;
}
.flow_design .flow > li {
  position: relative;
}
.flow_design .flow > li:not(:last-child) {
  margin-bottom: 60px;
}
.flow_design .flow > li .icon03 {
  font-size: 0.8em;
  width: 2em;
  height: 2em;
  line-height: 2em;
  text-align: center;
  font-weight: bold;
  border-radius: 100vh;
  color: #fff;
  background: var(--primary);
  display: inline-block;
  margin-right: 0.3em;
}
.flow_design .flow > li dl {
  padding-left: 1.5em;
  position: relative;
}
.flow_design .flow > li dl::before,
.flow_design .flow > li dl::after {
  content: "";
  display: block;
  position: absolute;
  top: 18px;
}
.flow_design .flow > li dl::before {
  width: 7px;
  height: 7px;
  margin-top: -3px;
  background: var(--primary);
  border-radius: 50%;
  left: -4px;
}
.flow_design .flow > li dl::after {
  width: 1em;
  border-bottom: 1px dashed var(--notes);
  position: absolute;
  left: 5px;
}
.flow_design .flow > li dl dt {
  font-size: 1.3em;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}
/*モーダルテキスト*/
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s;
}
.modal-box {
  background-color: #fff;
  padding: 10px 10px 15px;
  max-width: 720px;
  width: 90%;
  border-radius: 10px;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: modalOpen 0.3s forwards;
}
.modalClose {
  display: block;
  text-align: center;
  margin: 15px auto 0;
  padding: 10px;
  width: 10em;
  background-color: var(--primary_bg02);
  color: var(--black);
  cursor: pointer;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalOpen {
  from { opacity: 0;}
  to { opacity: 1;}
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}
/*個別投稿ページのCSSはnews.cssに記載*/
.news_list {
  border-bottom: 1px solid var(--line);
}
.news_list > a {
  display: block;
  padding: 20px 10px;
  transition: all 0.5s;
}
.news_list > a:hover {
  cursor: pointer;
  background-color: var(--primary_bg02);
  transition: all 0.5s;
}
.news_list:first-of-type {
  border-top: 1px solid var(--line);
}
.news_date {
  position: relative;
  padding-left: 15px;
  margin-right: 25px;
  font-weight: 500;
  color: var(--brown);
}
.news_date::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background-color: var(--primary);
  border-radius: 50%;
}
.news_title {
    line-height: 1.4;
    margin-top: .1em;
}
.sec_access .right .map {
  width: 100%;
  height: 100%;
  min-height: 250px;
}
a.instagram {
  position: relative;
  display: inline-block;
  background-color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50px;
  line-height: 1;
}
a.instagram img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
/*Instagram埋め込み*/
.ul_instagram {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  padding: 10px !important;
  background-color: #fff;
}
.ul_instagram > li {
  position: relative;
  flex: 0 0 calc( ( 100% / 4 ) - 2px );
aspect-ratio: 4 / 5;
}
.ul_instagram li:not([class]) img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.ul_instagram li:not([class]) a {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
}
.ul_instagram li .video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  vertical-align: middle;
  color: rgb(255 255 255 / 80%);
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 1em 1.5em;
  border-left-color: currentColor;
  border-right: 0;
}
/*color*/
.white {
  color: #fff;
}
.black {
  color: var(--black);
}
.brown {
  color: var(--brown);
}
.red {
  color: var(--red);
}
.blue {
  color: var(--blue);
}
.primary {
  color: var(--primary);
}
.primary_sub {
  color: var(--primary_sub);
}
.notes {
  color: var(--notes);
}
.bgcw {
  background-color: #fff;
}
.bgcb {
  background-color: var(--black);
}
.bgcp {
  background-color: var(--primary);
}
.bgcp_sub {
  background-color: var(--primary_sub);
}
.bgcp_bg01 {
  background-color: var(--primary_bg01);
}
.bgcp_bg02 {
  background-color: var(--primary_bg02);
}

@media (min-width: 1367px) {
}

@media (max-width:1024px) {

}
@media (min-width: 769px) {
  .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .table_schedule tbody th span {
    word-break: keep-all;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
  .con {
    padding: 30px 0;
  }
  .wrap {
    /* margin-top: 45px; */
  }
  .title01 {
    font-size: 24px;
  }
  .title01::before {
    top: 20px;
  }
  .title02 {
    font-size: 20px;
  }
  .h2_title_con {
    height: 230px;
  }
  .h2_title_con h2 {
    width: 95%;
    top: 55%;
  }
  .h2_title_con::after {
    width: 60%;
  }
  .sub_item_box.min .sub_item_list li a {
    padding: 3px 15px;
    font-size: 14px;
  }
  .link01:not(.all) {
    width: 100%;
  }
  .link01.arrow, .link01.blank {
    padding: 8px 55px 8px 30px;
  }
  .link01.blank::after,
  .arrow:before, .arrow::after {
    right: 35px;
  }
  
/* 横スクロール*/
  .mob_scroll {
    width: 90%;
    margin: auto;
    overflow-x: scroll;
    position: relative;
    z-index: 10;
  }

}
@media screen and (max-width: 480px) {
  .h2_title_con h2 {
    top: 65%;
  }
  .table01 th,.table01 td {
    padding: .5em;
    font-size: 14px;
  }
  .table02 {
    font-size: 14px;
    border-bottom: 1px solid var(--line);
  }
  .table02 th {
    white-space: nowrap;
    width: 100%;
    background-color: var(--primary_bg02);
    box-sizing: border-box;
  }
  .table02 td {
    border-top: none;
    border-bottom: none;
  }
  .table02 th ,
  .table02 td {
    display: block;
  }
  .table_schedule th, .table_schedule td {
    padding: 12px 5px;
  }
  .dl04 > dt {
    width: 6em;
  }
  .dl04 > dd {
    padding: 0 0 5px 6em;
  }
  .modal-box {
    top: calc( 50% + 35px );
  }
  .ul_instagram > li {
    flex: 0 0 calc( ( 100% / 3 ) - 2px );
  }
}
/*---contents parts end---*/

/*---menu---*/
.header span,
.header a {
  display: inline-block;
}
.header .left a {
  display: block;
}
header .header_logo {
  width: 300px;
}
.header_con {
  max-width: 1400px;
  margin: auto;
  padding: 20px 15px 0;
}
.header .header_con > * {
  width: 100%;
  align-items: center;
}
.header .right ul.pick_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}
.header .right ul.header_menu > li:not(:last-of-type){
  margin-right: 1.5em;
}
/*.header .right .pick_menu {
  margin-left: 40px;
}*/
.header .pick_menu li {
  text-align: center;
  line-height: 1.4;
  font-size: 14px;
}
.header .pick_menu li * {
  transition: all 0.5s;
}
.header .pick_menu li .ic {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px;
  /* margin-right: 10px; */
  text-align: center;
}
.header .pick_menu li .ic::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  transition: all 0.5s;
}
.header .pick_menu li .reservation::before {
  background:
    url(../img/common/ic_reservation_w.svg) no-repeat center;
  background-size: contain;
}
.header .pick_menu li a:hover .reservation::before {
  background:
    url(../img/common/ic_reservation_p.svg) no-repeat center;
  background-size: contain;
  transition: all 0.5s ease-in-out;
}
.header .pick_menu li .access::before {
  background:
    url(../img/common/ic_access_w.svg) no-repeat center;
  background-size: contain;
}
.header .pick_menu li a:hover .access::before {
  background:
    url(../img/common/ic_access_p.svg) no-repeat center;
  background-size: contain;
  transition: all 0.5s ease-in-out;
}
.header .pick_menu li .tel::before {
  background:
    url(../img/common/ic_tel_w.svg) no-repeat center;
  background-size: contain;
}
.header .pick_menu li a:hover .tel::before {
  background:
    url(../img/common/ic_tel_p.svg) no-repeat center;
  background-size: contain;
  transition: all 0.5s ease-in-out;
}
.header .pick_menu li .bus::before {
  background:
    url(../img/common/ic_bus_w.svg) no-repeat center;
  background-size: contain;
}
.header .pick_menu li a:hover .bus::before {
  background:
    url(../img/common/ic_bus_p.svg) no-repeat center;
  transition: all 0.5s ease-in-out;
  background-size: contain;
}
.header .pick_menu li a:hover {
  color: var(--primary);
}
.header .header_menu li.has_child {
  position: relative;
}
.header .header_menu li.has_child::before {
  content:'';
  position: absolute;
  right: 5px;
  top: .5em;
  width:6px;
  height:6px;
  border-top: 2px solid var(--notes);
  border-right:2px solid var(--notes);
  transform: rotate(135deg);
  z-index: 100;
  transition: all .3s;
}
.header .header_menu li.has_child.active::before{
  border-top: 2px solid var(--primary);
  border-right:2px solid var(--primary);
  transition: all .3s;
}
.header .header_menu li.has_child ul{
  position: absolute;
  z-index: 4;
  visibility: hidden;
  opacity: 0;
  transition: all .3s;
}
.header .header_menu li.has_child:hover > ul,
.header .header_menu li.has_child ul li:hover > ul,
.header .header_menu li.has_child:active > ul,
.header .header_menu li.has_child ul li:active > ul{
  visibility: visible;
  opacity: 1;
}
.header .header_menu li.has_child ul li a{
  display: block;
  padding: .75em;
}
.header .header_menu li.has_child ul li:last-child > a {
  border-bottom:none;
}
.header .header_menu > li > .dropdown:hover {
  cursor: pointer;
}
.footer {
  position: relative;
  padding-top: 60px;
}
.footer .footer_logo {
  max-width: 280px;
}
.footer .title01 {
  margin-bottom: 20px;
  line-height: normal;
}
.footer .title01::before {
  top: 20px;
}
.bt_top {
  position: absolute;
  top: -15px;
  right: 5%;
  z-index: 10;
}
.bt_top .arrow {
  border: 1px solid var(--primary);
  transform: scale(1.8)rotate(270deg);
  -webkit-transform: scale(1.8)rotate(270deg);
  -moz-transform: scale(1.8)rotate(270deg);
  -ms-transform: scale(1.8)rotate(270deg);
  -o-transform: scale(1.8)rotate(270deg);
}
.bt_top .arrow:hover {
  background-color: #fff;
}
.bt_top .arrow:hover::after {
  color: var(--primary);
}

@media (min-width:1281px) {
  .header {
    border-bottom: 1px solid var(--line);
  }
  .header .header_con > * {
    padding-bottom: 20px;
  }
  header .header_logo {
    width: 230px;
  }
  .header .pick_menu li a {
    padding: 5px 20px;
    border: 1.5px solid var(--primary);
    border-radius: 50px;
    background-color: var(--primary);
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    display: flex;
    align-items: center;
  }
  .header .pick_menu li:not(:last-of-type) {
    margin-right: 15px;
  }
  header .pick_menu li a:hover {
    background-color: #fff;
  }
  .header .pick_menu li .ic {
    margin-right: 10px;
  }
  .header .header_menu > li,
  .header .header_menu > li a{
    transition: all 0.3s;
  } 
  .header .header_menu > li {
    font-size: 14px;
    font-weight: 700;
  }
  .header .header_menu > li:hover,
  .header .header_menu li a:hover {
    color: var(--primary);
    transition: all 0.3s;
  }
  .header .right ul.header_menu {
    align-items: center;
    padding-left: 15px;
    padding-right: 15px;
  }
  .header .right ul.header_menu > li:not(:last-of-type) {
    margin-right: 1em;
  }
  .header .header_menu li.has_child ul{
    left:0;
    top: 2em;
    background: #fff;
    width: 200px;
    box-shadow: 1px 1px 10px 0px rgba(130, 114, 106, 0.3);
  }
  .header .header_menu li.has_child ul li a{
    font-weight: 500;
    color: var(--black);
    border-bottom: solid 1px #fff;
    line-height: 1.2;
  }
  .header .header_menu li.has_child {
    padding-right: 20px;
  }
  .header .header_menu li.has_child ul li a:hover,
  .header .header_menu li.has_child ul li a:active {
    background-color: var(--primary_bg01);
  }
}
@media (max-width:1280px) {
  .header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000
  }
  .header .header_logo {
    width: 100%;
    max-width: 250px;
    height: auto;
    padding: 10px;    
  }
  .header_con {
    padding: 0;
    width: 100%;
    box-shadow: 1px 1px 10px 0px rgba(130, 114, 106, 0.2);
    outline: 1px solid rgb(230 203 172 / 0%);
  }
  .header .right {
    display: flex;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .header .pick_menu li {
    font-size: 12px;
  }
  .header .pick_menu li a, .header .menu_link {
    width: 60px;
    height: 60px;
    border-left: 1px solid var(--line);
  }
  .header .pick_menu li a {
    display: block;
    line-height: 20px;
  }
  .header .pick_menu li .ic {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary);
    border: 1px solid var(--primary);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    line-height: 50px;
  }
  header .pick_menu li a:hover .ic {
    background-color: #fff;
  }
  .header .menu_link {
    display: block;
    position: relative;
  }
  .header .menu_link span {
    display: inline-block;
    width: 35px;
    height: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
    background: var(--primary);
    transition: all .4s;
  }
  .header .menu_link span:nth-of-type(1) {
    top: 7px;
  }
  .header .menu_link span:nth-of-type(2) {
    top: 17px;
  }
  .header .menu_link span:nth-of-type(3) {
    top: 27px;
  }
  .header .menu_link::after {
    content:"メニュー";
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    transition: all .3s;
  }
  .header.active .menu_link span:nth-of-type(1) {
    top: 17px;
    transform: translateX(-50%)rotate(-45deg);
    width: 50%;
  }
  .header.active .menu_link span:nth-of-type(2) {
    opacity: 0;
  }
  .header.active .menu_link span:nth-of-type(3) {
    top: 17px;
    transform: translateX(-50%)rotate(45deg);
    width: 50%;
  }
  .header.active .menu_link::after {
    content: "閉じる";
  }
  .header ul.header_menu {
    display: block;
    padding-top: 90px;
    position: fixed;
    top: 0;
    right: 0;
    margin-top: 0;
    width: 100%;
    height: 0;
    background-color: #fff;
    z-index: -1;
    opacity: 0;
    transition: all 0.5s;
    visibility: hidden;
    overflow: scroll;
  }
  .header:not(.active) ul.header_menu li {
    display: none;
  }
  .header.active ul.header_menu {
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
    height: 100vh;
  }
  .header .header_menu li.has_child ul {
    position: relative;
    left:0;
    top:0;
    width:100%;
    visibility:visible;
    opacity:1;
    display: none;
    transition:none;
    background-color: #f8f4f0;
    font-size: 14px;
  }
  .header .header_menu li.has_child ul li a {
    display: block;
    padding: .5em 2em;
  }
  .header .header_menu li.has_child ul li:not(:last-of-type) {
    border-bottom: 1px solid #fff;
  }
  .header .header_menu li.has_child::before {
    top: 18px;
    right: 20px;
  }
  .header .header_menu li.has_child::before.active::before {
    transform: rotate(-45deg);
  }
  .header .header_menu > li {
	  position: relative;
      border-bottom: 1px solid var(--line);
      /* margin-right: 0; */
      width: 90%;
      max-width: 800px;
      margin: auto;
  }
  .header .header_menu > li > a,
  .header .header_menu > li > .dropdown {
    display: block;
    padding: 10px 20px;
  }
  .header .header_menu li a:hover {
    background-color: rgb(150 207 176 / 90%);
  }
  .side_menu {
    position: fixed;
    display: flex;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 15;
  }
  .side_menu > li {
    flex: 0 0 50%;
  }
  .side_menu > li:not(:last-of-type){
    border-right: 1px solid #fff;
  }
  .side_menu a {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: .5em;
    font-weight: bold;
    width: 100%;
    color: #fff;
    background: var(--primary_sub);
    border-top: 1px solid var(--primary_sub);
  }
  .side_menu a:hover {
    color: var(--primary_sub);
    background: #fff;
  }
}
@media (min-width: 769px) {
  .footer .copy_box {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {  
  .footer .con {
    padding: 50px 0;
  }
  .footer .right {
    margin-top: 45px;
  }
  .footer .copy_box {
    text-align: center;
    margin-top: 45px;
    margin-bottom: 1em;
  }
}
@media screen and (max-width: 480px) {
  .header .header_logo {
    width: 180px;
    padding: 5px;
  }
  .header_con {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .header .right {
    min-width: auto;
  }
  .header.active .menu_link span:nth-of-type(1) {
    transform: translateX(-50%)rotate(-45deg);
    width: 50%;
  }
}
@media screen and (max-width: 300px) {
  .header .header_logo {
    width: 120px;
    padding: 0;
  }
  .header .pick_menu li,
  .header .menu_link {
    width: 50px;
  }
}
/*---.header .header_menu menu end---*/