@charset "utf-8";
/* CSS Document */

@font-face {
  src: url("/css/font-MrsSaintDelafield-Regular.woff") format("woff");
  font-family: 'Mrs Saint Delafield';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root{
  --font-base: "Noto Serif JP", serif;
  --font-mrs: "Mrs Saint Delafield";
  --font-gothic: "Noto Sans JP", sans-serif;
  
  --site_color: #86653E;
  
  --txt_color: #7E84A3;
  
  --border_color_01: #E6E9F4;
  --border_color_02: #DADADA;
  
  --bgc_base: #F6F4F0;
  --bgc_base_02: #AA9377;
  --bgc_sub: #C8D8DE;
  --bgc_sub_02: #779DAC;
}
.font_gothic { font-family: var(--font-gothic); }


/*---------------------------------------------------------------------
	container
---------------------------------------------------------------------*/
/*#container {
  overflow: hidden;
}
#container.fixed {
    position: fixed;
    width: 100%;
}*/

@media print, screen and (max-width: 768px) {
  .sp_none { display: none !important; }
}
@media print, screen and (min-width: 769px) {
  .pc_none { display: none !important; }
}

@media print, screen and (max-width: 425px) {
  .sp_block { display: block; }
}

/*---------------------------------------------------------------------
	site_header
---------------------------------------------------------------------*/
.site_header {
  /*position: sticky;
  top: 0;*/
  width: 100%;
  z-index: 100;
}
.site_header_inner {
  background: rgb(255 255 255 / 90%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  z-index: 10;
  border-bottom: 1px solid var(--bgc_base);
}
.site_logo {
    line-height: 1;
}
.g_navi,
.header_login {
  display: none;
}

/* top */
/*--- top ---*/
.dir_top .site_header {
  position: fixed;
}
.dir_top .site_header_inner:not(.fixed) {
  background: none;
  padding: 20px 20px;
  border: none;
}
.dir_top .site_header:not(.fixed) .site_logo a,
.dir_top .site_header:not(.fixed) .g_navi,
.dir_top .site_header:not(.fixed) .header_login { display: none; }

.dir_top .site_header:not(.fixed) .btn_site_navi { color: #fff; }
.dir_top .site_header:not(.fixed) .btn_site_navi .line::before,
.dir_top .site_header:not(.fixed) .btn_site_navi .line::after { background: #fff; }

/* pc */
@media print, screen and (min-width: 1200px) {
  .site_header {}
  .dir_top .site_header_inner:not(.fixed) {
    background: none;
    padding: 30px 40px;
  }
  .site_logo {
    max-width: 216px;
    width: 12%;
  }
  .site_logo img {
    width: auto;
  }
  .site_header .inner {
    display: flex;
    gap:30px;
    align-items: center;
  }
  .site_header .g_navi {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  .site_header .g_navi a {
    display: block;
    text-decoration: none;
    color: #000;
    font-size: 1.6rem;
    background: no-repeat 0 center;
    padding: 3px 0 3px 32px;
  }
  .site_header .g_navi .navi_01 {
    background-image: url("../image/icon/g_navi_01.svg");
  }
  .site_header .g_navi .navi_02 {
    background-image: url("../image/icon/g_navi_02.svg");
  }
  .site_header .g_navi .navi_03 {
    background-image: url("../image/icon/g_navi_03.svg");
  }
  .site_header .g_navi .navi_04 {
    background-image: url("../image/icon/g_navi_04.svg");
  }
  .site_header .g_navi .navi_05 {
    background-image: url("../image/icon/g_navi_05.svg");
  }
  .site_header .g_navi .navi_06 {
    background-image: url("../image/icon/g_navi_06.svg");
  }
  .site_header .g_navi .navi_07 {
    background-image: url("../image/icon/g_navi_07.svg");
  }
  
  .site_header .header_login {
    color: #fff;
    font-size: 1.4rem;
    background: var(--site_color);
    text-decoration: none;
    display: block;
    padding: 6px 28px;
    border-radius: 20px;
    transition: .3s;
  }
  .site_header .header_login:hover {
    opacity: .8;
  }

}


/*----- btn_site_navi -----*/
.btn_site_navi {
    color: var(--site_color);
    font-size: 1.2rem;
    text-align: center;
    font-weight: bold;
    letter-spacing: 0.1rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-top: 6px;
    line-height: 1;
}

.btn_site_navi .line {
  position: relative;
  width: 48px;
}
.btn_site_navi .line::before,
.btn_site_navi .line::after {
    content: "";
    position: absolute;
    left: 0;
    background: var(--site_color);
    width: 100%;
    height: 2px;
    transition: .3s;
}
.btn_site_navi .line::before {
  top: -6px;
}
.btn_site_navi .line::after {
  top: 3px;
}
.btn_site_navi .text {}

.btn_site_navi.open .line {}
.btn_site_navi.open .line::before {transform: rotate(45deg);top: 0;}
.btn_site_navi.open .line::after { transform: rotate(-45deg); top:0;}

/* pc */
@media print, screen and (min-width: 1200px) {
  .btn_site_navi {
    font-size: 1.6rem;
    margin-right: 5px;
    gap:17px;
  }
  .btn_site_navi:hover,
  .btn_site_navi:visited {
    text-decoration: none;
    color: var(--site_color);
  }
  .btn_site_navi .line {
    width: 70px;
  }
  .btn_site_navi .line::before,
  .btn_site_navi .line::after {
      height: 3px;
  }
    .btn_site_navi .line::before {
    top: -6px;
  }
  .btn_site_navi .line::after {
    top: 6px;
  }
}

/*---------------------------------------------------------------------
	site_navi
---------------------------------------------------------------------*/
.site_navi {
  background: var(--site_color);
  position: fixed;
  right: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  z-index: 100;
  padding: 20px;
  transition: opacity .8s;
  opacity: 0;
}
.site_navi.open {
  right: 0;
  opacity: 1;
}
.site_navi .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.site_navi .logo {
    max-width: 216px;
    width: 30%;
}
.btn_site_navi_close {
    cursor: pointer;
    position: relative;
    color: #fff;
    line-height: 1;
  display: block;
}
.btn_site_navi_close .line {
    width: 41px;
    height: 25px;
    position: relative;
    display: block;
}
.btn_site_navi_close .line::before,
.btn_site_navi_close .line::after {
    content: "";
    position: absolute;
  top: 10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
  transition: all .3s ease 1s;
}
.btn_site_navi_close .line::before {
  transform: rotate(-25deg);
}
.btn_site_navi_close .line::after {
  transform: rotate(25deg);
}

.site_navi .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.site_navi .inner .others {
  margin-bottom: 30px;
}
.site_navi .utility {
  padding: 0 30px;
  margin-bottom: 20px;
}
.site_navi .lang {
  margin-bottom: 15px;
  position: relative;
}
.site_navi .lang .btn {
    color: #fff;
    font-size: 1.3rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
  gap: 6px;
    width: 100%;
    background: #000;
    border-radius: 5px;
    padding: 15px;
}
.site_navi .lang_select {
    background: #333;
    padding: 10px 20px;
    margin-top: -5px;
    text-align: center;
    border-radius: 0 0 5px 5px;
    display: none;
  position: absolute;
  width: 100%;
      z-index: 1;
}
.site_navi .lang_select a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 7px;
}
.site_navi .search_form {
  position: relative;
}
.site_navi .search_window {
  width: 100%;
  border: none;
  border-radius: 5px;
  font-size: 1.6rem;
  padding: 14px 50px 14px 14px;
}
.site_navi .search_window:focus {
  outline: none;
  background: var(--bgc_base);
}
.site_navi .search_button {
    position: absolute;
    right: 4px;
    top: 10px;
    border: none;
    background: none;
}

.site_navi .clip_sns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.site_navi .page_list {
  border-top: 1px dashed var(--border_color_02);
}
.site_navi .page_list a {
    color: #fff;
    text-decoration: none;
    display: block;
    border-bottom: 1px dashed var(--border_color_02);
    padding: 15px 10px;
  
}
.site_navi .page_list .item ul a {
    padding: 15px 25px;
}

/* tablet */
@media print, screen and (min-width: 768px) {
  .site_navi {
    overflow: inherit;
  }
  .site_navi .page_list {
    display: flex;
    flex-wrap: wrap;
    gap: 0 30px;
    border-top: none;
  }
  .site_navi .page_list .item {
    width: calc(50% - 15px);
    border-top: 1px dashed var(--border_color_02);
  }
  .site_navi .page_list .item:nth-child(n+3) {
    border-top: none;
  }
}

/* pc */
@media print, screen and (min-width: 1200px) {
  
  .site_navi .inner .others {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
  }
  .site_navi .utility {
    display: flex;
    padding: 0;
    margin: 0;
    gap: 30px;
  }
  .site_navi .lang { margin: 0; }
  .site_navi .lang .btn {
    width: 270px;
    padding: 16px 16px 15px;
  }
  .site_navi .search_form {
    max-width: 270px;
    flex: 1;
  }
  .site_navi .search_window {
    padding: 15px 50px 14px 20px;
  }
  .site_navi .clip_sns {
    gap:20px;
  }
  .site_navi .page_list {
    gap: 40px;
  }
  .site_navi .page_list .item {
    width: calc(25% - 30px);
  }
  .site_navi .page_list .item:nth-child(n+3) {
    border-top: 1px dashed var(--border_color_02);
  }
  .site_navi .page_list a {
    font-size: 1.6rem;
    transition: opacity .3s;
  }
  .site_navi .page_list a:hover {
    opacity:.6;
  }
}


/*---------------------------------------------------------------------
	pickup_topics
---------------------------------------------------------------------*/
.pickup_topics {
  background: #B92E0B;
}
.pickup_topics .head {
  max-width: 1200px;
  margin: 0 auto;
  color: #fff;
  /*display: flex;
  align-items: center;
  justify-content: space-between;*/
  padding: 10px;
  position: relative;
}

.pickup_topics .head .ttl {
    font-weight: 500;
    background: url(../image/icon/icon_whatsnew.svg) no-repeat left center / 19px;
    padding-left: 25px;
}
.pickup_topics .head .ttl a {
  color: #fff;
  text-decoration: none;
  display: block;
}
.pickup_topics .head .ttl a::before {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    border: 6px solid transparent;
    border-top: 8px solid #ffff05;
    margin-top: -3px;
}
.pickup_topics .head .ttl a.open::before {
    transform: rotate(180deg);
    margin-top: -10px;
}
.pickup_topics .head .link {
    text-decoration: none;
    color: #D90000;
    background: #fff;
    padding: 3px 15px;
    border-radius: 30px;
}

.pickup_topics .detail {
  background: #fff;
  padding: 10px;
  display: none;
  /*position: absolute;
  width: 100%;*/
  border-bottom: 1px solid #B92E0B;
}
.pickup_topics .list {
  max-width: 1200px;
  margin: 0 auto;
}
.pickup_topics .list li + li {
  border-top: 1px dashed #CCC;
}
.pickup_topics .list li a {
  display: flex;
  color: #000;
  text-decoration: none;
  padding: 5px;
  padding-right: 20px;
  gap: 10px;
  background: url("../image/icon/arrow_red_right.svg") no-repeat right center;
}
.pickup_topics .list .date {
  color: #707070;
}
.pickup_topics .list .title {
  font-weight: 500;
  flex: 1;
}


/* pc */
@media print, screen and (min-width: 1200px) {
  
  .pickup_topics .head .ttl {
    background-size: auto;
    font-size: 2.4rem;
    padding-left: 32px;
  }
  .pickup_topics .head .link {
    font-size: 1.5rem;
  }
  .pickup_topics .list li a {
    padding: 20px 30px 20px 10px;
    gap: 30px;
  }
  .pickup_topics .list .date {
    font-size: 1.5rem;
    padding-top: 3px;
  }
  .pickup_topics .list .title {
    font-size: 1.8rem;
  }
}


/*---------------------------------------------------------------------
	topic_path_top
---------------------------------------------------------------------*/
.topic_path_top {
  margin: 15px auto;
}
.topic_path_top > ol {
  color: #888;
  font-size: 1.1rem;
  max-width: 1200px;
  text-align: right;
  box-sizing: content-box;
    margin: 0 auto;
  padding: 0 20px;
  display: flex;
    overflow-x: scroll;
    white-space: nowrap;
}
.topic_path_top > ol > li {
  display: inline;
}
.topic_path_top > ol > li + li::before {
  content: ">";
  margin: 0 5px;
}
.topic_path_top > ol > li a {
  text-decoration: underline;
}
.topic_path_top > ol > li:last-child a {
    text-decoration: none;
    color: #333;
}

/* pc */
@media print, screen and (min-width: 1200px) {
  /*.topic_path_top {
    margin-bottom: 30px;
  }*/
  .topic_path_top > ol {
    font-size: 1.3rem;
    padding: 0 120px;
    overflow-x: inherit;
  }
}

/*---------------------------------------------------------------------
	pagebody
---------------------------------------------------------------------*/
.pagebody_inner {
    max-width: 1200px;
    padding: 0 20px;
    box-sizing: content-box;
    margin: 0 auto;
}
.pagebody_inner_02 {
    max-width: 1600px;
    padding: 0 20px;
    box-sizing: content-box;
    margin: 0 auto;
}
.pagebody_inner_03 {
    max-width: 1200px;
    padding: 0 20px;
    box-sizing: content-box;
    margin: 0 auto;
}
.page_ttl + .pagebody_inner {
    margin-top: 20px;
}

/* pc */
@media print, screen and (min-width: 1200px) {
  .pagebody_inner {
    display: flex;
    flex-direction: row-reverse;
    gap:60px;
    padding: 0 120px;
  }
  .pagebody_inner_02 {
    display: flex;
    flex-direction: row-reverse;
    gap:60px;
    padding: 0 120px;
  }
  .pagebody_inner_02 .pagebody_inner { padding: 0; }
  
  .pagebody_inner_03 { padding: 0 120px; }
  
  *  {
   min-height: 0;
   min-width : 0;
  }

}

/* pc */
@media print, screen and (min-width: 1920px) {
}

/*--------------------------------------------------
	alpha
--------------------------------------------------*/
.alpha {
}

/* pc */
@media print, screen and (min-width: 1200px) {
  .alpha {
    flex: 1;
  }
}


/*--------- text -----------*/
.page_ttl {
  color: var(--site_color);
  /*font-size: 2.6rem;*/
  font-size: 1.8rem;
  font-weight: normal;
  
  background: var(--bgc_base);
  padding: 25px 20px;
  line-height: 1.4;
}
.page_ttl span {
  max-width: 1200px;
  margin: 0 auto;
  display: block;
}

.page_ttl_02 {
    font-size: 2rem;
    font-weight: 500;
    background: #eee;
    padding: 20px;
    line-height: 1.4;
    margin-bottom: 30px;
}

.dir_ttl {
    border-top: 1px dashed #BBB;
    padding-top: 10px;
    margin-bottom: 20px;
}
.dir_ttl .jp {
    color: var(--site_color);
    font-size: 1.8rem;
    font-weight: 500;
}
.dir_ttl .en {
  color: #ABABAB;
  font-size: 1.3rem;
  font-family: var(--font-mrs);
}
/*.dir_post_detail .dir_ttl {
  padding-right: 62px;
  background: url("../image/top/img_book.svg") no-repeat right center/62px;
}*/

.beta .dir_ttl { display: none; }

/* tablet */
@media print, screen and (min-width: 768px) {
  .page_ttl {
    font-size: 3rem;
  }
}

/* pc */
@media print, screen and (min-width: 1200px) {
  .page_ttl {
    font-size: 3.4rem;
    padding: 35px 120px;
  }
  
  .alpha .dir_ttl { display: none; }
  .beta .dir_ttl { display: block; }
  
  .dir_ttl {}
  .dir_ttl .jp {
    font-size: 3rem;
  }
  .dir_ttl .en {
    font-size: 2rem;
  }
  .dir_post .list_sort_navi { padding-top: 20px; }
  .dir_post .top_post + .pagebody_inner_02 .list_sort_navi { padding-top: 0; }
  .dir_post_detail .dir_ttl {
    background-size: 75px;
    padding-right: 75px;
  }
}

.content1 {
  line-height: 1.8;
}
.content1 p {
  margin: 1em 0;
}
.content1 h2 + p,
.content1 h3 + p,
.content1 h4 + p,
.content1 h5 + p,
.content1 h6 + p {
  margin-top: 0;
}
.content1 div > p {
  margin-top: 0;
}

/* headline */
.content1 * + h2 {
  margin-top: 80px;
}
.content1 * + h3 {
  margin-top: 60px;
}
.content1 * + h4 {
  margin-top: 40px;
}
.content1 * + h5 {
  margin-top: 20px;
}
.content1 h2 + h3,
.content1 h3 + h4 {
  margin-top: 0;
}

/* utility */
.content1 * + dl,
.content1 * + ol,
.content1 * + ul,
.content1 * + table {
  margin-top: 20px;
}

.lead_01,
.content1 h2 {
  font-size: 2.2rem;
    font-weight: normal;
    
  background: url(../image/bg_clip_lead.png) no-repeat 0 0/230px;
    padding: 58px 0 0;
    margin-bottom: 30px;
      display: flex;
    align-items: center;
}
.icon_feature {
    color: #fff;
    background: var(--site_color);
    border-radius: 4px;
    font-size: 72%;
    padding: 3px 10px;
    margin-right: 10px;
    vertical-align: middle;
    min-width: 60px;
    text-align: center;
}
.lead_02,
.content1 h3 {
  color: var(--site_color);
  font-size: 2.2rem;
  
  font-weight: normal;
  margin-bottom: 20px;
}
.lead_03,
.content1 h4 {
  font-size: 2rem;
  font-weight: 500;
  
  padding-bottom: 6px;
  margin-bottom: 15px;
  border-bottom: 1px solid #AA9377;
}
.lead_04,
.content1 h5 {
  font-size: 1.8rem;
  
  font-weight: 500;
  margin-bottom: 10px;
}

.lead_05 {
    font-size: 1.8rem;
  
}
.lead_06 {
    font-size: 1.8rem;
    
    border-bottom: 2px solid var(--bgc_base);
    position: relative;
    margin-bottom: 10px;
    padding-bottom: 8px;
}
.lead_06::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 80px;
    height: 2px;
    background: var(--site_color);
}

.content1 a[target="_blank"]::after {
    content: url(../image/icon/icon_blank.svg);
    transform: scale(0.5);
    display: inline-block;
    vertical-align: middle;
}


/* pc */
@media print, screen and (min-width: 1200px) {
  .lead_01,
  .content1 h2 {
    font-size: 3.6rem;
    padding: 50px 0 0;
  }
  
  .lead_02,
  .content1 h3 {
    font-size: 3.4rem;
    padding-bottom: 15px;
  }
  
  .lead_03,
  .content1 h4 { font-size: 2.8rem; padding-bottom: 12px; }
  
  .lead_04,
  .content1 h5 { font-size: 2.6rem; }
  
  .lead_05 { font-size: 2.4rem; }
  
  .lead_06 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
  }
}


.fc_01 { color: #AB3A3B; }
.fc_02 { color: #CA0000; }
.fc_gray { color: #aaa; }

.icon_feature {
    color: #fff;
    background: var(--site_color);
    border-radius: 4px;
    font-size: 72%;
    padding: 3px 10px;
    margin-right: 10px;
    vertical-align: middle;
}

.modified_date {
    color: #333;
  
    margin: 30px 0;
    text-align: right;
}

iframe[src*="youtube"] {
    width: 100%;
    aspect-ratio: 16/9;
    height: auto;
  vertical-align: bottom;
}

/* pc */
@media screen and (min-width: 1200px) {
  .modified_date {
    margin-bottom: 50px;
}
}

/*--------- btn -----------*/
a.btn_01 {
    color: #000;
    text-decoration: none;
    font-size: 1.4rem;
    text-align: center;
    display: inline-block;
    background: #fff url(../image/icon/arrow_02_brown_right.svg) no-repeat right 20px center;
    border: 1px solid var(--border_color_02);
    border-radius: 50px;
    padding: 23px 30px;
    width: 80%;
    max-width: 280px;
}
a.btn_02 {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    padding: 1em 5em;
  border: 1px solid var(--site_color);
    background-color: var(--site_color);
    border-radius: 5px;
    
    text-align: center;
}
a.btn_02.size_s {
    font-size: 1rem;
    padding: 8px 10px;
}
a.btn_03 {
    display: inline-block;
    text-decoration: none;
    color: var(--site_color);
    padding: 1em 5em;
  border: 1px solid var(--bgc_base);
    background-color: var(--bgc_base);
    border-radius: 5px;
    
    text-align: center;
}

.slick-arrow {
  border: 1px solid var(--site_color);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  background: #fff;
  opacity: .8;
  position: absolute;
  top: 20%;
  z-index: 1;
}
.slick-arrow img { width: 7px; }
.slick-arrow.prev { left: 5px; }
.slick-arrow.next { right: 5px; }

/* pc */
@media screen and (min-width: 1200px) {
	a.btn_01 {
    max-width: none;
    font-size: 1.8rem;
    padding: 25px 55px;
    width: auto;
    background-position: right 30px center;
    transition: background .3S;
  }
	a.btn_01:hover {
    background-color: #fff;
  }
  
  a.btn_02 { transition: background .3S, color .3s; }
  a.btn_02:hover {
    color: var(--site_color);
    background-color: #fff;
  }
  a.btn_02.size_s {
    font-size: 1.3rem;
    padding: 10px;
  }
  
  a.btn_03 { transition: background .3S, color .3s, border .3s; }
  a.btn_03:hover {
    color: var(--site_color);
    background-color: #fff;
    border-color: var(--site_color);
  }
}


/*--------- bg -----------*/
.bg_box_01 {
  background: #F0F7F6;
  padding: 10px 15px;
}
.bg_box_02 {
  background: #F6F5EE;
  padding: 10px 15px;
}
.bg_box_03 {
  border: 1px solid #ccc;
  padding: 10px 15px;
}
.bg_box_04 {
  background: var(--bgc_base);
  padding: 10px 15px;
}

/*--------- template -----------*/
.fll_img { margin-bottom: 15px; }
.flr_img { margin-bottom: 15px; }

.sp_flr_img {
    float: right;
    margin: 0 0 0 20px;
}
.sp_fll_img {
    float: left;
    margin: 0 20px 0 0;
}

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

.fl_over {
  overflow: hidden;
}

@media print, screen and (min-width: 767px) {
  .fll_img {
    float: left;
    max-width: 45%;
    margin: 0 40px 0 0;
  }
  .flr_img {
    float: right;
    max-width: 45%;
    margin: 0 0 0 40px;
  }
}
.caption,
.list_1column .caption,
.list_2column .caption,
.list_3column .caption,
.list_4column .caption,
.list_5column .caption {
  font-size: 86.66%;
  line-height: 1.4;
  padding-top: 7px;
  text-align: center;
  margin: 0;
}
.list_1column img,
.list_2column img,
.list_3column img,
.list_4column img,
.list_5column img {
  width: 100%;
  height: auto;
}

.list_2column .width_auto,
.list_3column .width_auto {
	width: auto;
}

/* list_2column */
.list_2column {}
.list_2column .item + .item {
  margin-top: 15px;
}
@media print, screen and (min-width: 768px) {
  .list_2column {
    display: flex;
    flex-wrap: wrap;
  }
  .list_2column .item {
    width: 48.75%;
    margin: 0 2.5% 2.5% 0;
  }
  .list_2column .item + .item { margin-top: 0; }
  .list_2column .item:nth-child(2n) {
    margin-right: 0;
  }
}

/* list_3column */
.list_3column {}
.list_3column .item + .item {
  margin-top: 15px;
}

@media print, screen and (min-width: 768px) {
  .list_3column {
    display: flex;
    flex-wrap: wrap;
  }
  .list_3column .item {
    width: 31.08%;
    margin: 0 3.33% 3.33% 0;
  }
  .list_3column .item + .item { margin-top: 0; }
  .list_3column .item:nth-child(3n) {
    margin-right: 0;
  }
}

/* list_4column */
.list_4column {
  display: flex;
  flex-wrap: wrap;
}
.list_4column .item {
  width: 48.75%;
  margin: 0 2.5% 2.5% 0;
}
.list_4column .item:nth-child(2n) {
  margin-right: 0;
}
@media print, screen and (min-width: 768px) {
  .list_4column .item,
  .list_4column .item:nth-child(2n){
    width: 23.33%;
    margin: 0 2.08% 2.08% 0;
  }
  .list_4column .item:nth-child(4n) {
    margin-right: 0;
  }
}

/* list_5column */
.list_5column {
  display: flex;
  flex-wrap: wrap;
}
.list_5column .item {
  width: 48.75%;
  margin: 0 2.5% 2.5% 0;
}
.list_5column .item:nth-child(2n) {
  margin-right: 0;
}
@media print, screen and (min-width: 768px) {
  .list_5column .item,
  .list_5column .item:nth-child(2n){
    width: 18%;
  }
  
  .list_5column .item:nth-child(2n){
    margin-right: 2.5%;;
  }
  
  .list_5column .item:nth-child(5n) {
    margin-right: 0;
  }
}

.contact_box {
  background: #fafafa;
  padding: 15px 20px;
  border: 3px solid #133775;
}
* + .contact_box {
  margin-top: 60px;
}

/*--------- list_index -----------*/
* + .list_index {
  margin-top: 60px;
}
.list_index {}
.list_index .item {}
.list_index .item + .item  {
  margin-top: 15px;
}
.list_index .item > a {
    color: #000;
    text-decoration: none;
    position: relative;
    border: 1px solid #bfbfbf;
  display: table;
    width: 100%;
}
.list_index .item .thumb {
  display: table-cell;
  vertical-align: middle;
  width: 35%;
}
.list_index .item .thumb span {
  position: relative;
  padding-bottom: 66.66%;
  overflow: hidden;
  display: block;
}
.list_index .item .thumb img {
  position: absolute;
  top: -100%;
  left: -100%;
  right: -100%;
  bottom: -100%;
  margin: auto;
  max-width: none;
  max-height: 100%;
  transition: .5s;
  width: 100%;
}
.list_index .item > a:hover .thumb img {
  opacity: 1;
  transform: scale(1.08);
}
.list_index .item .thumb + .detail {
  border-left: 1px solid #ccc;
}
.list_index .item .detail {
  display: table-cell;
  vertical-align: middle;
  background: #018FCF no-repeat right 10px center/40px;
  padding: 15px 0;
}
.list_index .item .ttl {
  font-size: 1.8rem;
  color: #fff;
  font-weight: normal;
  position: relative;
  padding-left: 30px;
  padding-right: 10px;
}
.list_index .item .ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 9px;
  margin-top: -4px;
  width: 6px;
  height: 6px;
  border-right: 2px solid #009FE8;
  border-bottom: 2px solid #009FE8;
  transform: rotate(-45deg);
}
.list_index .item .lead {
    font-size: 1.5rem;
    margin-top: 5px;
  padding: 7px 10px;
  background: #FCE6D6;
}
.list_index .item > ul {
  margin: 5px 0 30px 10px;
}
.list_index .item > ul li + li {}
.list_index .item > ul a {
    display: block;
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #bfbfbf;
    font-size: 1.5rem;
    padding: 5px 10px 5px 20px;
    position: relative;
}
.list_index .item > ul a::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 12px;
  border: 4px solid transparent;
  border-left: 6px solid #009FE8;
}

/* pc */
@media print, screen and (min-width: 1200px) {
  .list_index {
    display: flex;
    flex-wrap: wrap;
  }
  .list_index .item {
    width: 31.08%;
    margin: 0 3.33% 3.33% 0;
  }
  .list_index .item + .item {
    margin-top: 0;
  }
  .list_index .item:nth-child(3n) {
    margin-right: 0;
  }
  
  .list_index .item a {
    display: block;
  }
  .list_index .item a:hover {
    border-color: #008ECF;
  }
  .list_index .item a:hover .ttl {
    color: #008ECF;
  }
  .list_index .item .thumb {
    display: block;
    width: auto;
  }
  .list_index .item .detail {
    display: block;
    padding: 15px 10px;
    background-size: auto;
  }
  .list_index .item a:hover .detail {
    background-color: #ffffe9;
    transition: .3s;
  }
  .list_index .item .thumb + .detail {
    border-left: none;
  }
  .list_index .item .ttl {
    padding: 7px 0 7px 30px;
  }
  .list_index .item .ttl::before {
    left: 7px;
  }
}



/* hierarchy_link */
.hierarchy_link {
  background: #eee;
  text-align: center;
  padding: 20px;
  margin: 70px 0;
}
.hierarchy_link .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.hierarchy_link .ttl {
  font-size: 2rem;
  font-weight: normal;
  margin-bottom: 20px;
}
.hierarchy_link .ttl a {
  color: #000;
  text-decoration: none;
  display: inline-block;
}
.hierarchy_link li {}
.hierarchy_link li + li {
  margin-top: 10px;
}
.hierarchy_link li a {
  display: block;
  color: #000;
  text-decoration: none;
  position: relative;
  border: 1px solid #BFBFBF;
  text-align: left;
  background: #fff;
  padding: 10px 10px 10px 30px;
}
.hierarchy_link li a::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 18px;
  width: 6px;
  height: 6px;
  border-right: 2px solid #EB6100;
  border-bottom: 2px solid #EB6100;
  transform: rotate(-45deg);
}
/* tablet */
@media print, screen and (min-width: 768px) {
  .hierarchy_link {
    margin: 100px 0;
  }
  .hierarchy_link .ttl {
    font-size: 2.4rem;
  }
  .hierarchy_link .inner {
    display: flex;
    flex-wrap: wrap;
  }
  .hierarchy_link li {
    width: 31.08%;
    margin: 0 3.33% 3.33% 0;
    
  }
  .hierarchy_link li + li { margin-top: 0; }
  .hierarchy_link li:nth-child(3n) { margin-right: 0; }
  .hierarchy_link li a {
    font-size: 1.8rem;
    transition: .3s;
    padding: 16px 16px 16px 35px;
  }
  .hierarchy_link li a::before {
    left: 13px;
    top: 26px;
  }
  .hierarchy_link li a:hover {
    color: #000;
    border-color: #EB6100;
    background-color: #FFF6D1;
  }
}


/*--------------------------------------------------
	list_magazine
--------------------------------------------------*/
.list_magazine {
  display: flex;
  flex-wrap: wrap;
}
.list_magazine .item {
  width: 48%;
  margin: 0 4% 4% 0;
}
.list_magazine .item:nth-child(2n) {
  margin-right: 0;
}
.list_magazine .item a {
  display: block;
  color: #000;
  text-decoration: none;
}
.list_magazine .item img {
  border: 1px solid #ccc;
  width: 100%;
}
.list_magazine .ttl {
  font-weight: 500;
  color: #007FB9;
  margin: 5px 0;
}
.list_magazine .icon_cat {
    font-size: 1.1rem;
    display: inline-block;
    vertical-align: top;
    background: #ebebeb;
    border-radius: 3px;
    padding: 2px 10px;
}

/* tablet */
@media print, screen and (min-width: 768px) {
  .list_magazine .item,
  .list_magazine .item:nth-child(2n) {
    width: 31%;
    margin: 0 3.5% 3.5% 0;
  }
  .list_magazine .item:nth-child(3n) { margin-right: 0; }
  .list_magazine .ttl {
    font-size: 2rem;
  }
  .list_magazine .icon_cat {
      font-size: 1.4rem;
  }
}

/*--------------------------------------------------
	list_topics
--------------------------------------------------*/
/* list_topics */
.list_topics {
  background: #fff;
  border-top: 1px solid #bbb;
}
.list_topics li {
  border-bottom: 1px solid #bbb;
}
.list_topics li a {
  color: #000;
  
  display: block;
  text-decoration: none;
  padding: 15px;
}
.list_topics li span {
  display: inline-block;
  vertical-align: top;
}
.list_topics li .date {
  margin-right: 10px;
  font-size: 1.3rem;
  color: var(--site_color);
}
.list_topics li .icon_cat {
    font-size: 1.1rem;
    text-align: center;
    font-weight: normal;
    background: #EBEBEB;
    padding: 1px 8px;
    border-radius: 3px;
}
.list_topics li .cat_01 { background: #DFFFBF; }
.list_topics li .cat_02 { background: #BFDFFF; }
.list_topics li .cat_03 { background: #E4F4FC; }
.list_topics li .cat_04 { background: #FFF9E5; }
.list_topics li .cat_05 { background: #ECE5FF; }

.list_topics li .title {
  display: block;
  margin-top: 5px;
}

/* tablet */
@media print, screen and (min-width: 768px) {
  .list_topics li a {
    font-size: 1.8rem;
    padding: 30px;
  }
  .list_topics li .date {
    font-size: 1.5rem;
  }
}
/* pc */
@media print, screen and (min-width: 1200px) {
  .list_topics li a { transition: .3s; }
  .list_topics li a:hover {
    color: var(--site_color);
  }
}



/* .pager */
.pager {
    margin: 60px 0;
    padding: 40px 0;
    text-align: center;
}
.pager ul {
  text-align: center;
}
.pager ul li {
    font-size: 1.1rem;
  display: inline-block;
}
.pager a {
    display: block;
    color: #000;
    text-decoration: none;
    padding: 15px;
    line-height: 1;
}
.pager input {
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 5px;
  text-align: center;
  font-size: 16px;
  width: 60px;
}
.pager input:focus {
  outline: 1px solid var(--site_color);
}
/*.pager ul .pager_no { display: none; }
.pager ul .pager_no.show,
.pager ul .pager_no.current { display: block; }
.pager ul .current:first-of-type + .pager_no + .pager_no { display: block; }*/


/*.pager a, .pager span {
    color: var(--site_color);
    text-decoration: none;
    border: 1px solid #C9C9C9;
    background-color: #fff;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}
.pager li.total span {
  border-color: #FFF;
}
.pager li.prev span,
.pager li.next span,
.pager li.first span,
.pager li.last span {
  border: 1px solid #C9C9C9;
  color: var(--site_color);
}
.pager li.current span {
  color: #fff;
  background: var(--site_color);
}
.pager a:hover {
  color: #fff;
  border: 1px solid #C9C9C9;
  background: var(--site_color);
}*/

/* link_prev_next */
.link_prev_next {
  text-align: center;
  max-width: 600px;
  margin: 100px auto 0;
  
}
.link_prev_next > li {
  display: inline-block;
  width: 80%;
  max-width: 300px;
}
.link_prev_next > li a {
    color: #fff;
    display: block;
    padding: 16px 40px;
    text-decoration: none;
    transition: .3s;
    border-radius: 3px;
    position: relative;
    background: var(--site_color);
  border: 1px solid var(--site_color);
}
.link_prev_next > li a:hover {
  color: var(--site_color);
  background-color: #fff;
}
/* pc */
@media print, screen and (min-width: 1200px) {
  .pager {
    padding: 30px;
    margin: 60px 0;
  }
  .link_prev_next { margin-top: 80px; }
}


/*サムネイル付きトピックス*/
.list_thumb_topics {
    font-size: 0;
	margin-bottom: 30px;
}
.list_thumb_topics li {
    font-size: 16px;
	width: 31.66%;
	display: inline-block;
	margin: 0 2.5% 0 0;
	vertical-align: top;
}
.list_thumb_topics li:nth-child(3n) {
	margin-right: 0;
}
.list_thumb_topics .thumb {
    position: relative;
    padding-bottom: 66.66%;
    overflow: hidden;
    background-color: #F8F6F0;
  border: 1px solid #ccc;
}
.list_thumb_topics .thumb img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
}
.list_thumb_topics a { text-decoration: none; }
.list_thumb_topics .detail {
    font-size: 15px;
    color: #333;
    padding: 5px 0;
    border-bottom: 1px dotted #bbb;
}
.list_thumb_topics a:hover .detail { background-color: #f8f6f0; }

/*広報紙*/
.list_kouhou {
    font-size: 0;
	margin-bottom: 30px;
}
.list_kouhou .item {
    font-size: 16px;
	width: 31.66%;
	display: inline-block;
	margin: 0 2.5% 0 0;
	vertical-align: top;
	text-align: center;
	border: 1px solid #bbb;	
}
.list_kouhou .item a { display: block; padding: 5px; }
.list_kouhou .item a:hover { background-color: #f5f4ef; }
.list_kouhou .item:nth-child(3n) {
	margin-right: 0;
}
.list_kouhou .ttl a {
    font-size: 16px;
    font-weight: normal;
    text-decoration: none;
    color: #333;
}




/*---------------------------------------------------
	beta
---------------------------------------------------*/
.beta {
  margin-top: 40px;
}
/* pc */
@media print, screen and (min-width: 1200px) {
  .beta {
    width: 25%;
    margin-top: 0;
  }
}


/* site_ranking */
.site_ranking {
    padding: 20px 20px 30px;
    margin: 40px -20px;
    background: #F6F6F6;
    border-radius: 0 10px 0 10px;
}
.site_ranking > .ttl {
    margin-bottom: 15px;
    font-size: 1.8rem;
  
    font-weight: bold;
    padding-left: 30px;
  background: url(../image/icon/icon_rank.svg) no-repeat 0 center;
}
.site_ranking.type_plans > .ttl {
  background-image: url("../image/icon/sp_navi_03.svg");
}
.site_ranking .item {
  border-bottom: 1px dashed #999;
}
.site_ranking .item a {
    display: flex;
    gap: 15px;
    text-decoration: none;
    color: #000;
  background: #fff;
    padding: 10px;
}
.site_ranking .thumb {
  display: block;
  width: 110px;
  height: 80px;
  position: relative;
  background: #fff;
  overflow: hidden;
  border-radius: 0 20px 0 20px;
}
.site_ranking .thumb img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.site_ranking .thumb .rank_no {
    position: absolute;
    left: 0px;
    top: 0;
    font-size: 1.1rem;
    font-weight: bold;
    background: #FF5722;
    color: #fff;
    padding: 2px 10px;
  z-index: 1;
}
.site_ranking .detail { flex: 1; }
.site_ranking .detail_head {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--site_color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.site_ranking .detail .cat {
  
}
.site_ranking .detail .date {}
.site_ranking .detail .ttl {
      font-size: 1.4rem;
    font-weight: normal;
  
}
.site_ranking .detail .lead { display: none; }
.site_ranking .tag { display: none; }
.site_ranking .tag span {}

.site_ranking.type_plans .item {
  border: none;
}
.site_ranking.type_plans .item a {
  flex-direction: column;
  padding: 15px;
}
.site_ranking.type_plans .thumb {
  width: auto;
  height: auto;
  padding-bottom: 66%;
}

/* site_tags */
.site_tags {
    margin: 30px 0;
}
.site_tags .ttl {
    margin-bottom: 15px;
    font-size: 1.8rem;
  
    font-weight: bold;
    padding-left: 28px;
    background: url(../image/icon/icon_hash.svg) no-repeat 0 4px/20px;
}
.site_tags ul {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    background: var(--bgc_base);
    border-radius: 0 10px 0 10px;
    padding: 15px;
}
.site_tags a {
  display: block;
  color: #000;
  text-decoration: none;
    /*font-size: 1rem;*/
  font-size: 1.2rem;
    border: 1px solid #ccc;
    padding: 4px 10px;
    border-radius: 5px;
  background: #fff;
}

/* pc */
@media print, screen and (min-width: 1024px) {
  .site_ranking .cat_eat {
    background-size: auto 17px;
    padding-left: 20px;
  }
  .site_ranking .cat_watch {
    padding-left: 24px;
    background-size: auto 17px;
    background-position: 0 0;
  }
  .site_ranking .cat_meet {
    background-size: auto 14px;
    padding-left: 28px;
    background-position: 0 1px;
  }
  .site_ranking .cat_buy {
    background-size: auto 20px;
    padding-left: 26px;
  }
  .site_ranking .cat_specials {
    background-size: auto 14px;
    padding-left: 22px;
    background-position: 0 2px;
  }
}


/* pc */
@media print, screen and (min-width: 1200px) {
  .site_ranking {
    margin: 40px 0;
    background: none;
    padding: 0;
  }
  .site_ranking > .ttl {
    font-size: 2.2rem;
  }
  .site_ranking .item a {
    padding: 15px 0;
  }
  
  .site_tags .ttl {
    font-size: 2.2rem;
    background-position: 0 3px;
  }
  .site_tags ul {
    padding: 20px;
  }
  .site_tags a { font-size: 1.4rem; }
  
  
  .site_ranking.type_plans > p {
    font-size: 1.3rem;
  }
  .site_ranking.type_plans .item a {
    background: #F6F6F6;
    border-radius: 0 25px 0 0;
  }
  .site_ranking.type_plans .item + .item {
    margin-top: 20px;
  }
}

/*---------------------------------------------------
	sidemenu
---------------------------------------------------*/
.side_menu {}
.side_menu a {
	color: #000;
  display: block;
  text-decoration: none;
}
.side_menu a:hover {
  text-decoration: underline;
}
.side_menu .level_1 {
  border-top: 1px solid #ccc;
}
.side_menu .level_1 > li > a {
  font-size: 1.5rem;
  font-weight: 500;
  padding: 10px 0 10px 20px;
  border-bottom: 1px solid #ccc;
  position: relative;
}
.side_menu .level_1 > li > a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  border: 5px solid transparent;
  border-left: 7px solid #aaa;
}
.side_menu .level_1 > li > a.selected,
.side_menu .level_1 > li > a:hover {
  color: #133557;
}
.side_menu .level_2 > li + li {}
.side_menu .level_2 > li > a {
	font-size: 1.4rem;
	border-bottom: 1px dotted #bbb;
	padding: 15px;
	position: relative;
}
.side_menu .level_2 > li > a::before {
	content: "";
	width: 2px;
	height: 20px;
	background: #BBBBBB;
	position: absolute;
	left: 0;
	top: 16px;
}
.side_menu .level_2 > li > a.selected,
.side_menu .level_2 > li > a:hover {
	color: #008ECF;
}
.side_menu .level_2 > li > a.selected::before,
.side_menu .level_2 > li > a:hover::before {
	background: #009FE8;
}

.side_menu .level_3 {
  margin:10px 0 10px 10px;
  background: #fafafa;
}
.side_menu .level_3 > li > a {
  padding: 10px;
  padding-left: 23px;
  font-size: 1.4rem;
  border-bottom: 1px dotted #ccc;
  position: relative 
}
.side_menu .level_3 > li > a::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 18px;
  width: 6px;
  height: 6px;
  background: #ccc;
  border-radius: 50%;
}
.side_menu .level_3 > li > a.selected,
.side_menu .level_3 > li > a:hover {
  color: #133557;
}
.side_menu .level_3 > li > a.selected::before,
.side_menu .level_3 > li > a:hover::before {
	background: #009FE8;
}

.side_menu .level_4 {
  margin-left: 22px;
}
.side_menu .level_4 > li+ li {
  border-top: 1px dotted #ccc;
}
.side_menu .level_4 > li > a {
  padding: 8px;
  font-size: 1.4rem;
  position: relative;
}
.side_menu .level_4 > li > a::before {
    content: "";
    position: absolute;
    left: -12px;
    top: 15px;
    width: 7px;
    height: 7px;
    border-left: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
.side_menu .level_4 > li > a.selected,
.side_menu .level_4 > li > a:hover {
  color: #133557;
}
.side_menu .level_4 > li > a.selected::before,
.side_menu .level_4 > li > a:hover::before {
	border-left-color: #009FE8;
	border-bottom-color: #009FE8;
}

/*--------- beta -----------*/
.list_side_menu {
  
}
.list_side_menu+ .list_side_menu {
  margin-top: 30px;
}
.list_side_menu .ttl {
    font-size: 100%;
    color: #fff;
    font-weight: normal;
    padding: 12px 15px;
    position: relative;
    background: var(--bgc_base_02);
    border-radius: 10px 10px 0 0;
}
.list_side_menu ul {
    padding: 10px;
    background: #EEEEEE;
    border-radius: 0 0 10px 10px;
}
.list_side_menu li {}
.list_side_menu li + li {
  margin-top: 10px;
}
.list_side_menu li a {
    display: block;
    color: #000;
    text-decoration: none;
    padding: 15px;
    background: #fff;
    border-radius: 5px;
  font-size: 1.4rem;
}
.list_side_menu li .date {
    display: block;
  color: var(--site_color);
}
/* pc */
@media print, screen and (min-width: 1200px) {
  .list_side_menu li a { transition: .3s; }
  .list_side_menu li a:hover { color: var(--site_color);}
}

/*------サイドバナー-------*/
/* bnr_side */
.bnr_side {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.bnr_side li {
    width: calc(50% - 5px);
}
.bnr_side li img { width: 100%; }


.bnr_bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.bnr_bottom li {
  width: calc(50% - 5px);
}
.bnr_bottom img { width: 100%; }

.beta .bnr_bottom {
  margin-top: 30px;
}
/* tablet */
@media print, screen and (min-width: 768px) {
  .bnr_bottom { gap: 15px; }
  .bnr_bottom li {
    width: calc(25% - 12px);
  }

}

/* pc */
@media print, screen and (min-width: 1200px) {
  .bnr_side { flex-direction: column; }
  .bnr_side li {
    width: 100%;
  }
  
  .beta .bnr_bottom {
    flex-direction: column;
  }
  .beta .bnr_bottom li {
    width: auto;
  }

}



/*---------------------------------------------------------------------
	faq
---------------------------------------------------------------------*/
.list_faq + .lead_01 {
	margin-top: 60px;
}
.list_faq .item {
  margin-bottom: 20px;
}
.list_faq .btn_q {
	font-size: 16px;
  font-weight: 500;
  position: relative;
  background-color: #ecf7fd;
}
.list_faq .btn_q::before,
.list_faq .btn_q::after {
    content: "";
    position: absolute;
    right: 24px;
    top: 50%;
    margin-top: -11px;
    width: 2px;
    height: 22px;
    background: #009fe8;
  transition: .3s;
}
.list_faq .btn_q::before {}
.list_faq .btn_q::after { transform: rotate(90deg); }

.list_faq .btn_q.on { background: #ffffe7; }
.list_faq .btn_q.on::before { transform: rotate(-90deg); background: #FD6D06; }
.list_faq .btn_q.on::after { transform: rotate(270deg); background: #FD6D06; }

.list_faq .btn_q >* {
  color: #000;
  cursor: pointer;
	display: block;
	font-size: 112.5%;
	line-height: 1.6;
	padding: 15px 40px 15px 43px;
	border: 1px solid #ccc;
	position: relative;
}
.list_faq .btn_q >*::before {
  content: "Q";
  display: inline-block;
	color: #009fe8;
	position: absolute;
	top: 14px;
	left: 16px;
}
.list_faq .box_a {
  display: none;
  position: relative;
	border: 1px solid #BFBFBF;
	padding: 15px 15px 15px 50px;
	border-top: none;
}
.list_faq .box_a::before {
  content: "A";
  display: inline-block;
	color: #FD6D06;
	font-size: 112.5%;
	font-weight: bold;
  position: absolute;
	top: 14px;
	left: 22px;
}
.faq_contents {}
.faq_contents .icon_q {}
.faq_contents .icon_a {}



@media screen and (min-width: 768px) {
  .list_faq .item {
    margin-bottom: 20px;
  }
  .list_faq .btn_q >* {
  }
  
  .list_faq + .lead_01 {
    margin-top: 100px;
  }
}

/*---------------------------------------------------------------------
	gallery　フォトアルバム
---------------------------------------------------------------------*/
.list_gallery {
    width: 100% !important;
}
.list_gallery .item {
	float: left;
    /*width: 260px;*/
  width: 100%;
    margin-bottom: 20px;
}
.list_gallery .item a {
	color: #fff;
	display: block;
	position: relative;
}
.list_gallery .item img { width: 100%; }
.list_gallery .detail {
	position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.3);
}
.list_gallery .detail dl {
	position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.list_gallery .detail .date {
	font-size: 15px;
	text-align: center;
}
.list_gallery .detail .ttl {
	font-size: 17px;
	text-align: center;
}

/* tablet */
@media print, screen and (min-width: 768px) {
  .list_gallery .item {
    width: 32%;
    margin: 0 1% 1% 0;
  }
}

/* pc */
@media print, screen and (min-width: 1200px) {
  .list_gallery .item {
    width: 24%;
    margin: 0 1% 1% 0;
  }
  .list_gallery .detail {
    background: rgba(0,0,0,.6);
    -webkit-transform: rotateY(-90deg) rotateX(-90deg);
    transform: rotateY(-90deg) rotateX(-90deg);
    -webkit-transition: .5s;
    transition: .5s;
    opacity: 0;
  }
  .list_gallery a:hover .detail {
    -webkit-transform: rotateY(0) rotateX(0);
    transform: rotateY(0) rotateX(0);
    opacity: 1;
  }
}

/* gallery_detail */
.gallery_detail_head { margin-bottom: 30px; }
.gallery_detail_head .date {
	font-size: 17px;
	text-align: center;
}
.gallery_detail_head .ttl {
	font-size: 20px;
	font-weight: normal;
	text-align: center;
}
.gallery_detail_head .content {
	text-align: center;
	margin-top: 20px;
}
/*---------------------------------------------------------------------
	contact
---------------------------------------------------------------------*/
.mail_form {
  margin: 0 auto;
  background: var(--bgc_base);
  padding: 90px;
}
.mail_form.bg_none {
    background: no-repeat;
    padding: 0 90px;
}

/* mail_info */
.mail_info {
  margin-bottom: 30px;
}
.mail_info .ttl {
  background: url(../image/icon/icon_mail.svg) no-repeat 0 5px;
  padding-left: 40px;
  margin-bottom: 10px;
}
.mail_info .lead {
    margin-bottom: 20px;
}
.mail_info .note {
  font-size: 1.3rem;
}


/* progressbar */
.progressbar {
    position: relative;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  margin-bottom: 30px;
  
}
.progressbar li {
  color: var(--site_color);
    font-size: 1.6rem;
  line-height: 1.2;
    position: relative;
    list-style-type: none;
    text-align: center;
    text-transform: uppercase;
  flex: 1;
  display: flex;
    flex-direction: column;
    align-items: center;
}
.progressbar li:after {
    position: absolute;
    z-index: 0;
    top: 11px;
    left: -50%;
    width: 100%;
    height: 4px;
    content: '';
    background-color: var(--bgc_base);
}
.progressbar li.active:after,
.progressbar li.complete:after {
    background-color: var(--site_color);
}
.progressbar li:first-child:after {
    content: none;
}
.progressbar li.active,
.progressbar li.complete{}

.progressbar li .icon {
    display: block;
    width: 26px;
    height: 26px;
  margin: 0 0 10px;
    border-radius: 50%;
    background-color: var(--bgc_base);
    z-index: 1;
    position: relative;
  border: 1px solid var(--bgc_base);
}

.progressbar li.active .icon{
  background: #fff;
  border-color: var(--site_color);
}

.progressbar li.active .icon::before {
    content: "";
    width: 18px;
    height: 18px;
    background: var(--site_color);
    position: absolute;
    left: 3px;
    top: 3px;
    border-radius: 50%;
}
.progressbar li.complete .icon {
  border-color: var(--site_color);
  background: var(--site_color) url("../image/icon/icon_check_white.svg") no-repeat center center;
}

.progressbar li .step {
  color: #97B3CB;
  font-size: 1.4rem;
}
.mail_form .ttl {
    border-bottom: 2px solid #fff;
    margin-bottom: 20px;
    padding-bottom: 15px;
    font-size: 1.8rem;
    font-weight: normal;
    position: relative;
}
.mail_form .ttl::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  background: var(--site_color);
  height: 2px;
  width: 20%;
  max-width: 80px;
}

.mail_form form {
  margin: 0 auto;
}
.mail_form form dl {
    display: flex;
    gap: 30px;
  margin-bottom: 30px;
}
.mail_form form dt {
    width: 32%;
    padding-top: 4px;
}
.mail_form form dd {
  flex: 1;
}
.mail_form form .bg_on {
  background-color: #ececec;
  padding: 12px;
}
.mail_form form .bg_on label {
  /*width: 20%;*/
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.mail_form form .border_on {
  border: 1px solid #CCCCCC;
  padding: 12px;
}
.mail_form.confirm_list dd {
  /*background-color: #fafafa;
  padding: 12px;*/
  word-break: break-all;
}
.mail_form .btn_list {
  text-align: center;
  margin: 20px auto;
}
.mail_form form dt::before {
    content: "任意";
    color: #000;
    background: #fff;
  border: 1px solid #033F81;
    font-size: 80%;
  border-radius: 0 5px 0 5px;
    padding: 2px 9px;
    margin-right: 10px;
}
.mail_form .not_icon::before {
  display: none;
}
.mail_form .icon_required::before {
    content: "必須";
    color: #fff;
    background: #AB193F;
  border-color: #AB193F;
}
.icon_required_p {
    color: #fff;
    background: #AB193F;
    font-size: 80%;
    border-radius: 0 5px 0 5px;
    padding: 2px 9px;
  margin: 0 3px;
}
.mail_form .error {
    color: #AB3A3B;
    font-size: 13px;
    display: block;
    margin: 3px 0 0;
}
.form_errors {
    color: #d80000;
    border: 5px solid #e69898;
    text-align: left;
    padding: 20px;
    background: #fafafa;
    margin-bottom: 20px;
}
.mail_form.type_02 form {
  max-width: none;
}
.mail_form.type_02 form dl {
  max-width: 870px;
}
.mail_form.type_02 form dl dt {
  width: 35%;
}
.mail_form input,
.mail_form button,
.mail_form textarea,
.mail_form select {
  margin: 0;
  font-size: 16px;
  padding: 12px;
}
.mail_form input:-ms-input-placeholder {
 color: #808080;
}
.mail_form select,
.mail_form textarea,
.mail_form input[type="tel"],
.mail_form input[type="text"],
.mail_form input[type="email"],
.mail_form input[type="password"]{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  outline: none;
  width: 100%;
  background-color: #fff;
}
.mail_form input[disabled] {
  background: #e1e2e4;
}
.mail_form input.input_calender {
  background: #fff url("../image/icon/icon_calender.svg") no-repeat right 10px center;
}
.mail_form input.small {
  width: 27%;
}
/*.mail_form input.medium,
.mail_form select.medium,
.mail_form .pass_form.medium {
  width: 44%;
}*/
.mail_form input.size_auto,
.mail_form select.size_auto {
  width: auto;
  max-width: 100%;
}
.mail_form input[type="file"] {
  font-size: 16px;
}
.mail_form input[type="radio"] {
  margin-right: 5px;
  padding: 5px;
}
.mail_form input[type="checkbox"] {
  margin-right: 5px;
  padding: 5px;
}
.mail_form select {
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  appearance: menulist;
  background-color: #fff;
  position: relative;
}
.mail_form .input_twin {
  display: flex;
  gap: 15px;
}
.mail_form .input_twin li {
  flex: 1;
}
.mail_form .input_date {
    display: flex;
    align-items: center;
    gap: 10px;
}
.mail_form .input_date li {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mail_form textarea {
  width: 100%;
  height: 150px;
  background-color: #fff;
}
.mail_form input[type="text"]:focus, .mail_form input[type="email"]:focus, .mail_form textarea:focus {
    box-shadow: 0 0 6px rgb(0 0 0 / 16%);
    outline: 1px solid var(--site_color);
}

.spinner-container {
  margin-bottom: 15px;
}
.spinner-container table {}
.spinner-container table tr {
  border: none;
}
.spinner-container table tr+ tr {
  border-top: 1px dotted #ccc;
}
.spinner-container table th,
.spinner-container table td {}
.spinner-container table td + td { border: none; }
.participants .name {
  text-align: left;
  padding-left: 0;
  background: none;
}
.participants .plan_price_items {
  width: 46%;
}
.participants .plan_price_items .price {
  margin-bottom: 10px;
}
.participants .price {
  text-align: right;
}
.participants .price strong { font-weight: normal; }
.plan_price_total #price_total {
  font-size: 2.6rem;
  margin-left: 5px;
  line-height: 1;
}

.mail_form .empty,
.btn_radio.empty + label,
.btn_checkbox.empty + label {
    border: 1px solid #AB3A3B !important;
  background: #FFF3F4 !important;
}
.mail_form .empty:focus {
  background: #fff !important;
}
#confirm.btn_checkbox.empty:checked + label {
  border: none !important;
  background: #CBE2F6 !important;
}


.btm_text {
    text-align: center;
    margin-top: 30px;
    margin-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-direction: column;
}
.mail_form input[type="submit"] {
    color: #fff;
    padding: 1em 5em;
    background-color: var(--site_color);
    border: none;
    font-size: 1.3rem;
    border-radius: 5px;
    width: 80%;
    max-width: 304px;
  border: 1px solid var(--site_color);
  transition: .3s;
  
}
.mail_form input[type="submit"]:hover {
  color: #86653E;
  background-color: #fff;
  border-color: var(--border_color_02);
}
.mail_form input[type="reset"],
.mail_form input.back {
  color: var(--site_color);
    background: none;
    border: none;
    text-decoration: underline;
    padding: 3px;
  
}
.mail_form input[type="reset"]:hover,
.mail_form input.back:hover {
  background: none;
}
a.btn_backhome {
    color: #fff;
    padding: 1em 2em;
    background-color: var(--site_color);
    text-decoration: none;
    border: none;
  border-radius: 5px;
    display: inline-block;
}
a.btn_backhome:hover {
  color: #fff;
  background-color: #b5b5b5;
}
.form_message {
    background-color: #FFF3F4;
    border: 2px solid #AB3A3B;
    color: #AB3A3B;
    font-weight: bold;
    margin: 30px auto;
    padding: 10px 15px;
}
.form_message ul {
    list-style: disc outside;
    margin-left: 15px;
}

button.btn_zip {
    margin-left: 10px;
    font-size: 1.3rem;
    padding: 6px 10px;
    border: none;
    background: #008ccb;
    color: #fff;
}


@media print, screen and (max-width: 768px) {
  .mail_form {
    padding: 20px 20px 40px;
  }
  .mail_form.bg_none {
    padding: 0 20px;
  }
  .mail_form form dl {
    padding: 0 10px;
    margin-bottom: 20px;
    gap: 15px;
    flex-direction: column;
  }
  .mail_form form dt {
    width: auto;
    padding: 0;
  }
  .mail_form form dd {
    display: block;
    width: auto;
  }
  .mail_form input,
  .mail_form button,
  .mail_form textarea,
  .mail_form select {
    padding: 10px;
  }
  .mail_form input.small {
    width: 50%;
  }
  .mail_form input[type="submit"] {
  }
  .btm_text {
    width: auto;
    margin-top: 40px;
    text-align: center;
    gap: 15px;
  }
  
}

/* btn_radio  btn_checkbox */
.btn_radio,
.btn_checkbox {
    display: inline-block;
    margin-right: 6px;
}
.btn_radio + label,
.btn_checkbox + label {
  background-color: #fff;
  /*border: 1px solid #358fdd;*/
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  padding: 10px 20px 10px 10px;
  position: relative;
  margin-bottom: 5px;
}
#confirm.btn_checkbox + label {
  background: #CBE2F6;
  /*border: 1px solid #aaa;*/
  width: auto;
}

.btn_radio.size_s + label,
.btn_checkbox.size_s + label {
	padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 10px;
}

.btn_radio.bg_none + label,
.btn_checkbox.bg_none + label {
  background: none;
}
.btn_radio.bg_none:checked + label,
.btn_checkbox.bg_none:checked + label {
  background: none;
}
 
@media (min-width: 1px) {
    .btn_radio,
    .btn_checkbox {
        display: none;
        margin: 0;
    }
    .btn_radio + label,
    .btn_checkbox + label {
        padding-left: 37px;
		color: #000;
	transition: all .2s;
	-webkit-transition: all .2s;
    }
	.btn_radio:checked + label,
    .btn_checkbox:checked + label {
		background-color: #cbe2f6;
        border-color: #358fdd;
	}
    .btn_radio + label::before,
    .btn_checkbox + label::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 10px;
         
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        display: block;
        width: 18px;
        height: 18px;
        margin-top: -9px;
         
        background: #FFF;
    }
    .btn_radio + label::before {
        border: 1px solid #aaa;
        border-radius: 30px;
    }
    .btn_checkbox + label::before {
        border: 1px solid #aaa;
    }
    .btn_radio:checked + label::after,
    .btn_checkbox:checked + label::after {
        content: "";
        position: absolute;
        top: 50%;
         
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        display: block;
    }
    .btn_radio:checked + label::after {
        left: 15px;
         
        width: 8px;
        height: 8px;
        margin-top: -4px;
         
        background: var(--site_color);
        border-radius: 8px;
    }
    .btn_checkbox:checked + label::after {
        left: 12px;
         
        width: 16px;
        height: 8px;
        margin-top: -8px;
         
        border-left: 3px solid var(--site_color);
        border-bottom: 3px solid var(--site_color);
         
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
}

.input_btn_list {
    letter-spacing: -.5em;
}

.input_btn_list li {
    letter-spacing: normal;
    display: inline-block;
    vertical-align: top;
    margin: 0 10px 10px 0;
}

.input_btn_list label {
    margin: 0 !important;
}

.mail_form input.input_other {
  display: none;
  width: auto;
  margin-left: 10px;
  padding: 10px;
}

/* tel */
.tel_info {
    margin-top: 60px;
}
.tel_info .ttl {
    margin-bottom: 15px;
    background: url(../image/icon/icon_tel.svg) no-repeat 0 4px;
    padding-left: 31px;
}
.tel_info .lead {
  margin-bottom: 20px;
}
.tel_info dl {
    background: #f0f0f1;
    padding: 15px 20px;
}
.tel_info dl dt {}
.tel_info dl dt span {
    font-size: 80%;
    margin-left: 10px;
    color: #8c8b8b;
}
.tel_info dl dd {}
.tel_info dl dd .tel {
    font-size: 160%;
    font-weight: bold;
    color: var(--site_color);
}
.tel_info dl dd .tel a {
  text-decoration: none;
  color: var(--site_color);
}

/* tablet */
@media print, screen and (min-width: 768px) {
  
  .mail_form input.medium,
.mail_form select.medium,
.mail_form .pass_form.medium {
  width: 44%;
}
  
.participants .plan_price_items {
    width: 180px;
  }
  .participants .plan_price_items .inner {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 15px;
  }
  .participants .plan_price_items .price {
    margin-bottom: 0;
  }
}

/* pc */
@media screen and (min-width: 1200px) {
  .progressbar {
    margin: 50px 0 100px;
  }
  
  .mail_info {
    margin-bottom: 50px;
  }
  .mail_info .lead {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .mail_info .lead + .lead { margin-top: 80px; }
  .mail_info .note { font-size:auto; }
  
  .mail_form .ttl {
    font-size: 3rem;
    padding-bottom: 20px;
    margin-bottom: 40px;
  }
  
  .mail_form .error {
    font-size: inherit;
}
  
}

/*---------------------------------------------------------------------
	404
---------------------------------------------------------------------*/
.thumb_404 {
  margin-right: 40px;
  float: left;
  width: 20%;
}
.border_box {
  padding: 20px;
  border: 10px solid #fbf4e8;
}
.border_box > ul {
  color: #FF7F00;
  padding-left: 20px !important;
}

/*---------------------------------------------------------------------
	search
---------------------------------------------------------------------*/
/* google カスタム検索の調整 */
.site_search {}
.site_search #___gcse_0 {
    background: #edf8fd;
    padding: 15px;
}
.site_search #___gcse_0 .gsc-control-searchbox-only {
  max-width: 500px;
  margin: 0 auto;
}
.site_search table,
.site_search table.gsc-search-box td,
.site_search table.gsc-search-box td.gsc-input {
  padding: 0;
  border: none;
}
.site_search .gsc-adBlock {
    display: none;
}

/* pc */
@media screen and (min-width: 1200px) {
  
  .site_search #___gcse_0 {
    padding: 30px;
  }
  .site_search input#gsc-i-id1 {
    padding: 10px !important;
  }
  .site_search button.gsc-search-button {
    padding: 15px 27px;
    margin-left: 10px;
  }
  .site_search .gsc-above-wrapper-area-container {
    border: none;
  }
  .site_search .gsc-above-wrapper-area-container td {
    border: none;
    padding: 0;
  }
  .site_search .gsc-selected-option-container {
    box-sizing: content-box;
  }
  .site_search .gsc-webResult.gsc-result {
    border: 1px solid #e9e9e9;
    margin: 20px 0;
    padding: 15px 20px;
  }
  .site_search .gsc-results { width: 100%; }
  .site_search .gsc-cursor-box.gs-bidi-start-align {
    text-align: center;
  }
  .site_search .gsc-cursor-page {
    font-size: 1.6rem;
    border: 1px solid #ccc;
    padding: 7px 15px;
    border-radius: 3px;
    display: inline-block !important;
  }
  .site_search {}
  
}



.list_search {}
.list_search .item {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 15px;
}
.list_search .item + .item {margin-top: 20px; }
.list_search .ttl {
  font-size: 1.8rem;
  font-weight: bold;
}
.list_search .url {
    color: #808080;
    font-size: 1.2rem;
    margin: 5px 0;
}

/*---------------------------------------------------------------------
	sitemap
---------------------------------------------------------------------*/
.list_sitemap {
  margin-top: 30px;
  
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.list_sitemap .item {}
.list_sitemap a:hover {
  opacity: .8;
}

.list_sitemap .level01 {
  font-size: 100%;
  font-weight: normal;
}
.list_sitemap .level01 > a {
    display: block;
    text-decoration: none;
    color: #000;
    font-size: 2.2rem;
    background: url(../image/icon/icon_sitemap.svg) no-repeat 0 8px / 15px;
    border-bottom: 1px dashed #97B3CB;
    padding: 0 0 8px 29px;
}
.list_sitemap .level02 {
  margin-left: 10px;
  margin-top: 20px
}
.list_sitemap .level02 >li {}
.list_sitemap .level02 >li > a {
    display: block;
    text-decoration: none;
    color: #000;
    position: relative;
  padding-left: 20px;
}
.list_sitemap .level02 >li > a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    border: 4px solid transparent;
    border-left: 6px solid var(--site_color);
}

.list_sitemap .level03,
.list_sitemap .level04,
.list_sitemap .level05 {
  color: #4787ed;
  margin-top: 10px;
  list-style-type: disc;
  list-style-position: outside;
  margin-left: 36px;
}
.list_sitemap .level04,
.list_sitemap .level05 {
  margin-left: 24px;
}
.list_sitemap .level03 li + li {
  margin-top: 5px;
}

/* pc */
@media print, screen and (min-width: 1200px) {
  .list_sitemap {
    flex-direction: row;
    flex-wrap: wrap;
    gap:40px 100px;
  }
  .list_sitemap .item {
    width: calc(50% - 50px)
  }
  .list_sitemap .level01 > a {
    padding-bottom: 20px;
  }
  .list_sitemap .level02 {
    margin-left: 25px;
  }
  .list_sitemap .level02 >li > a {
    font-size: 1.6rem;
  }
  .list_sitemap .level02 >li > a::before {
    border: 6px solid transparent;
    border-left: 9px solid var(--site_color);
  }
}

/*---------------------------------------------------------------------
	form submit loading
---------------------------------------------------------------------*/
#loading{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height:100%;
    background: rgba(0,0,0,0.6);
}
#loading .cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#loading .spinner {
    width: 40px;
    height: 40px;
    border: 4px #ddd solid;
    border-top: 4px #999 solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}
#loading p {
    line-height: 40px;
    margin: 0 0 0 8px;
    text-align: center;
    color: #ddd
}
@keyframes sp-anime {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(359deg); }
}
#loading.is-hide{
    display:none;
}


/*---------------------------------------------------------------------
	post　読み物・記事
---------------------------------------------------------------------*/
/* list */
.dir_mv {
  position: relative;
}
.dir_mv_slide {}
.dir_mv_slide .item {
  position: relative;
  overflow: hidden;
  height: 80vh;
  max-height: 550px;
}
.dir_mv_slide .item img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dir_mv .inner {
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}
.dir_mv .ttl {
  
    color: #fff;
    text-shadow: 0 0 5px #000;
    font-weight: normal;
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.mv_form {
    margin: 0 auto;
    width: 90%;
    max-width: 300px;
}
.mv_form input,
.mv_form select,
.mv_form .btn_more_search {
    color: #333333;
    background: rgb(255 255 255 / 80%) no-repeat right 10px center;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
    width: 100%;
    border: none;
  margin-bottom: 10px;
      display: block;
    text-decoration: none;
}
.mv_form input::placeholder{
  color: #333;
}
.mv_form select,
.mv_form .btn_more_search {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("../image/icon/arrow_02_brown_bottom.svg");
}
.mv_form input:focus,
.mv_form select:focus{
    color: #000;
    background-color: rgb(255 255 255 / 90%);
    outline: none;
}
.mv_form button {
    border: none;
    background: var(--site_color);
    padding: 10px 20px;
    color: #fff;
    font-size: 1.4rem;
    border-radius: 5px;
    width: 90%;
}

.dir_mv_lead {
    margin: 30px auto 40px;
    padding: 0 30px;
    text-align: center;
    max-width: 1200px;
}
.dir_mv_lead .en_lead {
  color: #ABABAB;
  font-size: 1.5rem;
  font-family: var(--font-mrs);
  margin-bottom: 20px;
}
.dir_post .dir_mv_lead .en_lead span {
  padding: 10px 60px 0 0;
  background: url("../image/top/img_book.svg") no-repeat right bottom/48px;
}
.dir_mv_lead .ttl {
  color: var(--site_color);
  
  font-weight: normal;
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.dir_mv_lead .lead {
  font-size: 1.2rem;
  
}
.dir_mv_lead .link {
  
  margin-top: 20px;
}
.dir_mv_lead .link a {
  font-size: 1.2rem;
  text-decoration: none;
  color: #000;
    background: url(../image/icon/arrow_04_blue_right.svg) no-repeat right center;
    padding-right: 26px;
}
.dir_mv_lead .link strong {
  font-weight: normal;
  font-size: 1.8rem;
  color: var(--site_color);
  text-decoration: underline;
}

.dir_post .top_post {
    margin-bottom: 30px;
  padding-bottom: 10px;
}


.more_search {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  z-index: 30;
  background: rgb(0 0 0 / 48%);
  padding: 20px;
  overflow: scroll;
}
.dir_top .more_search { z-index: 200; }

.more_search .inner {
    background: #fff;
  border-radius: 20px;
  padding: 50px 20px 30px;
  position: relative;
      max-width: 500px;
    margin: 0 auto;
}
.close_more_search {
    position: absolute;
    right: 15px;
    top: 1px;
    text-decoration: none;
    color: #000;
    font-size: 50px;
    font-weight: bold;
    line-height: 1;
}
a.close_more_search:hover {
  color: #000;
  text-decoration: none;
}
.more_search .ttl {
    text-align: center;
    margin-bottom: 20px;
}
.more_search input {
    width: 100%;
    border: 1px solid #bbb;
    border-radius: 5px;
    padding: 10px;
    font-size: 1.6rem;
}
.more_search dl {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  border: 1px solid #bbb;
    border-radius: 5px;
    padding: 10px;
  margin-top: 10px;
}
.more_search dl dt {}
.more_search dl dd {
    flex: 1;
}
.more_search dl select {
  border: none;
  width: 100%;
  text-align: right;
  cursor: pointer;
}
.more_search dl input {
    border: none;
    text-align: right;
    padding: 0;
}
.more_search .btn_spot_select {
  text-align: right;
  display: block;
}
.more_search .spot_select {
    margin-top: 10px;
    background: var(--bgc_base);
    padding: 10px;
  display: none;
}
.more_search .spot_select li {}
.more_search .spot_select > li + li {
    border-top: 1px dotted #ccc;
    padding-top: 10px;
    margin-top: 10px;
}
.more_search .spot_select li ul {
    margin-left: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px 15px;
  margin-top: 5px;
}
.more_search .spot_select li input { display: none; }
.more_search .spot_select li input + label {
  position: relative;
  padding-left: 30px;
}
.more_search .spot_select li input + label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    width: 15px;
    height: 15px;
    border: 1px solid #848484;
    background: #fff;
}
.more_search .spot_select li input + label::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 6px;
    height: 10px;
    border-right: 2px solid var(--site_color);
    border-bottom: 2px solid var(--site_color);
    transform: rotate(45deg);
    opacity: 0;
}
.more_search .spot_select li input:checked + label {}
.more_search .spot_select li input:checked + label::after { opacity: 1; }


.more_search .item_no {
    text-align: center;
    font-size: 1.4rem;
    margin: 30px 0 10px;
}
.more_search .submit {
  text-align: center;
}
.more_search .submit button {
      border: none;
    background: var(--site_color);
    padding: 10px 20px;
    color: #fff;
    font-size: 1.4rem;
    border-radius: 5px;
    width: 90%;
}
.more_search .reset {
  text-align: center;
  margin-top: 15px;
}
.more_search .reset button {
    color: #707070;
    background: none;
    border: none;
}


.list_cat_sort {
    background: var(--bgc_base);
    margin: 0 -20px 20px;
    padding: 10px 0;
  position: relative;
  
  display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow-x: auto;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.list_cat_sort ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  white-space: nowrap;
}
.list_cat_sort li {
      height: inherit;
    scrollbar-width: none;
}
.list_cat_sort li + li {
    border-left: 1px solid #c3d9fd;
}
.list_cat_sort a {
  color: var(--site_color);
  text-decoration: none;
  padding: 5px 20px;
}


.list_sort_navi {
    display: flex;
  gap: 10px;
    flex-direction: column-reverse;
    margin-bottom: 10px;
}
.list_sort_navi .left {
  
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.list_sort_navi .total {
    color: var(--site_color);
    font-size: 1.2rem;
}
.list_sort_navi .total strong {
    font-size: 2rem;
    margin-right: 2px;
}
.list_sort_navi .sort {
    appearance: none;
    color: var(--site_color);
    border: 1px solid var(--border_color_02);
    border-radius: 3px;
    background: #fff url(../image/icon/arrow_02_brown_bottom.svg) no-repeat right 15px center;
    font-size: 1.3rem;
    padding: 8px 40px 8px 20px;
}
.list_sort_navi .sort:focus {
  outline: 1px solid var(--site_color);
}
.list_sort_navi .left {}
.list_sort_navi .sort_form {
  background: var(--bgc_base);
  padding: 15px 20px;
  border-radius: 0 20px 0 20px;
}
.list_sort_navi .sort_form .ttl {
    font-size: 1.8rem;
    background: url(../image/icon/icon_search_02_blue.svg) no-repeat 0 4px;
    font-weight: normal;
    padding: 0 0 0 27px;
    margin-bottom: 5px;
}
.list_sort_navi .sort_form input, .list_sort_navi .sort_form select {
    border: 1px solid #D1D1D1;
    border-radius: 5px;
    background: #fff;
    width: 100%;
    margin-bottom: 10px;
    padding: 6px;
    font-size: 1.8rem;
}
.list_sort_navi .sort_form input {
  background: #fff url("../image/icon/icon_search_02_blue.svg") no-repeat right 10px center;
}
.list_sort_navi .sort_form select {
-webkit-appearance: none;
  appearance: none;
  background: #fff url("../image/icon/arrow_02_brown_bottom.svg") no-repeat right 10px center;
}
.list_sort_navi .sort_form input::placeholder,
.list_sort_navi .sort_form select option:first-child {
    color: #333;
}
.list_sort_navi .sort_form button[type='submit'] {
    color: #fff;
    background: var(--site_color);
    border: none;
    border-radius: 5px;
    font-size: 1.8rem;
    display: block;
    margin: 0 auto 10px;
    padding: 6px;
    width: 80%;
    max-width: 220px;
  
}
.list_sort_navi .sort_form .reset {
    color: #000;
    font-size: 1.4rem;
    text-align: center;
    display: none;
    margin: 0 auto;
    border: none;
    border-radius: 5px;
    text-decoration: underline;
    padding: 5px;
    
  transition: .3s;
}
.list_sort_navi .sort_form .reset.show {
  display: block;
}

.bg_post {
  background: var(--bgc_base);
}

.dir_post_slide {}
.dir_post_slide .top_slide_prev { left: 5px; }
.dir_post_slide .top_slide_next { right: 5px; }


.post_list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.post_list .item {
  width: calc(50% - 5px);
  padding: 10px;
  background: #fff;
}
.post_list.bg_none .item {
  padding: 0;
}
.post_list .item a {
  display: block;
  color: #000;
  text-decoration: none;
}
.post_list .thumb {
  position: relative;
  overflow: hidden;
  padding-bottom: 66%;
  margin-bottom: 10px;
}
.post_list .thumb img {
  position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.label_pr {
  
    position: absolute;
    right: 0;
    bottom: 0;
    color: #fff;
    font-weight: bold;
    background: lch(30.94 48.32 276.49 / 0.63);
    border-radius: 5px 0 0 0;
    font-size: 1rem;
    padding: 1px 8px;
}
.post_list .detail {
  flex: 1;
}
.post_list .detail_sub {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    border-bottom: 1px dashed var(--border_color_02);
    padding-bottom: 8px;
}
.post_list .cat {
  font-size: 1.1rem;
  font-weight: 600;
}
.post_list .cat::before {
    margin-right: 8px;
    vertical-align: middle;
  line-height: 1;
}
.post_list .cat_meet::before { content: url("../image/icon/cat_meet.svg"); }
.post_list .cat_watch::before { content: url("../image/icon/cat_watch.svg"); }
.post_list .cat_specials::before { content: url("../image/icon/cat_specials.svg"); }
.post_list .cat_eat::before { content: url("../image/icon/cat_eat.svg"); }
.post_list .cat_buy::before { content: url("../image/icon/cat_buy.svg"); }
.post_list .cat_stay::before { content: url("../image/icon/cat_stay.svg"); }
.post_list .date {
  font-size: 1rem;
}
.post_list .ttl {
  font-size: 1.3rem;
  font-weight: 500;
}
.post_list .ttl.fc_blue {
  color: var(--site_color);
}
.post_list .job_ttl {
    font-weight: bold;
    font-size: 90%;
    margin: 5px 0 10px;
}
.post_list .cat span {
  font-size: 1rem;
  background: #ccc;
  padding: 2px 10px;
}
.post_list .tag {
      margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.post_list .tag a {
  font-size: 1rem;
    border: 1px solid #ccc;
    padding: 4px 10px;
    border-radius: 5px;
}

/* sticky_search */
.sticky_search {
    background: rgb(255 255 255 / 80%);
    padding: 15px;
    margin: 0 -20px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}
.sticky_search.fixed {
    position: fixed;
    z-index: 20;
    width: 100%;
    left: 0;
    top: 0;
    margin: 0;
}
.sticky_search .items {
    border-radius: 35px;
    padding: 10px 15px 10px 45px;
    background: #f0f0f0 url(../image/icon/icon_search_01.png) no-repeat left 15px center / 16px;
    font-size: 1.4rem;
    color: #333;
    flex: 1;
  overflow: hidden;
  height: 50px;
  display: flex;
    align-items: center;
}
.sticky_search .items ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items:flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  white-space: nowrap;
    overflow-x: scroll;
    gap: 5px;
}
.sticky_search .items ul::-webkit-scrollbar {
  display: none;
}
.sticky_search .items ul::-webkit-scrollbar-track {}
.sticky_search .items ul::-webkit-scrollbar-thumb {}
.sticky_search .items li a {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 50px;
    padding: 0 0 0 15px;
    position: relative;
    display: flex;
    align-items: center;
  color: #000;
  text-decoration: none;
}
.sticky_search .items .delete {
    padding: 5px;
    color: #aaa;
    line-height: 1;
}

.sticky_search_fill {
    width: 34px;
    line-height: 1;
  color: #000;
  text-decoration: none;
  display: block;
  text-align: center;
}
.sticky_search_fill .text {
    font-size: 8px;
    display: block;
}
.sticky_search_pop {
  display: none;
    position: fixed;
    right: 0;
    top: 0;
    width: 80%;
    max-width: 300px;
    background: #fff;
    height: 100vh;
    z-index: 30;
}
.sticky_search_pop .ttl {
  padding: 10px 20px;
  border-bottom: 1px solid #ccc;
}
a.sticky_search_pop_close {
    color: #000;
    text-decoration: none;
    font-size: 20px;
    line-height: 1;
    position: absolute;
    right: 7px;
    top: -1px;
    padding: 10px;
    vertical-align: top;
}
.sticky_search_pop .inner {}
.sticky_search_pop .inner > ul > li {
    border-bottom: 1px dotted #ccc;
    padding: 10px 20px;
}
.sticky_search_pop .label {
    font-size: 80%;
    margin-bottom: 5px;
    color: var(--site_color);
}
.sticky_search_pop input[type="text"] {
  width: 100%;
    border: 1px solid #bbb;
    border-radius: 5px;
    padding: 10px;
    font-size: 1.6rem;
}
.sticky_search_pop .hasDatepicker {
  background: url("../image/icon/icon_calender.svg") no-repeat right 10px center;
}
.sticky_search_pop select {
  width: 100%;
    border: 1px solid #bbb;
    border-radius: 5px;
    padding: 10px;
    font-size: 1.6rem;
}
.sticky_search_pop select option:first-child {
    color: #757575;
}
.sticky_search_pop select:invalid {
    color: #757575;
}
.sticky_search_pop select option {
    color: inherit;
}

.sticky_search_pop input[type="text"]:focus,
.sticky_search_pop select:focus {
  outline: 1px solid var(--site_color);
}

.sticky_search_pop .spot_select {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.sticky_search_pop .spot_select li input { display: none; }
.sticky_search_pop .spot_select li input + label {
  position: relative;
  padding-left: 30px;
}
.sticky_search_pop .spot_select li input + label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    width: 15px;
    height: 15px;
    border: 1px solid #848484;
    background: #fff;
}
.sticky_search_pop .spot_select li input + label::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 6px;
    height: 10px;
    border-right: 2px solid var(--site_color);
    border-bottom: 2px solid var(--site_color);
    transform: rotate(45deg);
    opacity: 0;
}
.sticky_search_pop .spot_select li input:checked + label {}
.sticky_search_pop .spot_select li input:checked + label::after { opacity: 1; }

.sticky_search_pop .item_no {
  text-align: center;
    font-size: 1.4rem;
    margin: 30px 0 10px;
}
.sticky_search_pop .submit {
  text-align: center;
}
.sticky_search_pop .submit button {
  border: none;
    background: var(--site_color);
    padding: 10px 20px;
    color: #fff;
    font-size: 1.4rem;
    border-radius: 5px;
    width: 90%;
}
.sticky_search_pop .reset {
  text-align: center;
  margin-top: 15px;
}
.sticky_search_pop .reset button {
  color: #707070;
  background: none;
  border: none;
}

.sticky_search_pop_bg {
  display: none;
  z-index: 30;
  width: 100%;
  height: 100vh;
  position: fixed;
  right: 0;
  top: 0;
  background: rgb(0 0 0 / 30%);
}


/* .dir_search */
.dir_search {
    background: var(--bgc_base);
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 100;
  border-radius: 0 0 10px 10px;
}
.dir_post_detail .dir_search,
.dir_writer .dir_search {
    display: block;
    height: auto;
    width: auto;
    position: relative;
  z-index: 0;
}
.dir_search .ttl {
    color: #fff;
    background: var(--bgc_base_02);
    padding: 10px 15px;
    border-radius: 10px 10px 0 0;
}
.dir_search .inner {
  padding: 15px;
}
.dir_search .inputs {
  display: flex;
  flex-direction: column;
  gap:10px;
}
.dir_search input, .dir_search select {
    width: 100%;
    border: none;
    border-radius: 5px;
    padding: 10px;
    -webkit-appearance: none;
}
.dir_search select {
  background: #fff url("../image/icon/arrow_02_brown_bottom.svg") no-repeat right 15px center;
}
.dir_search input:focus,
.dir_search select:focus {
  outline: 1px solid var(--bgc_base_02);
}
.dir_search .submit_btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  margin-top: 10px;
}
.dir_search .submit {
  color: #fff;
  background: var(--site_color);
  width: 90%;
}

/* tablet */
@media print, screen and (min-width: 768px) {
  /* list */
  .post_list {
    gap: 40px 10px;
  }
  .post_list .item {
    padding: 15px;
    width: calc(33.33% - 7px);
  }
  .post_list .item a {}
  .post_list .thumb {
    margin-bottom: 15px;
  }
}

/* pc */
@media print, screen and (min-width: 1200px) {
  .post_search_word { display: none; }
  .dir_search {
    position: relative;
    top: auto;
    right: auto;
    height: auto;
    width: auto;
    display: block;
    z-index: 0;
  }
  
  .dir_search .ttl {
    font-size: 1.6rem;
    
  }
  
  .dir_mv {}
  .dir_post .dir_mv {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 120px;
    box-sizing: content-box;
  }
  
  .dir_mv_slide .item {
    height: 90vh;
    max-height: 800px;
  }
  .dir_mv .ttl {
    font-size: 3rem;
  }
  .mv_form {
    max-width: 360px;
  }
  .mv_form input,
  .mv_form select,
  .mv_form .btn_more_search {
    font-size: 1.8rem;
    padding: 12px;
  }
  .mv_form select {
    cursor: pointer;
    background-position: right 20px center;
  }
  .mv_form button {
    font-size: 1.8rem;
    padding: 12px;
    transition: opacity .3s;
  }
  .mv_form button:hover {
    opacity: .8;
  }
  
  .dir_mv_lead {
    margin: 30px auto 80px;
  }
  .dir_mv_lead .en_lead {
    font-size: 4.6rem;
    line-height: 1;
    margin-bottom: 10px;
  }
  .dir_post .dir_mv_lead .en_lead span {
    background-size: 84px;
    padding: 0 110px 0 0;
    background-position: right top 5px;
  }
  .dir_mv_lead .ttl { font-size: 3rem; }
  .dir_mv_lead .lead { font-size: 1.8rem }
  .dir_mv_lead .link { margin-top: 20px; }
  .dir_mv_lead .link a {
    font-size: 1.8rem;
  }
  .dir_mv_lead .link a strong {
    font-size: 2.2rem;
  }
  
  /* sticky_search */
  .sticky_search {
    background: none;
    margin: 0;
    padding: 0;
  }
  .dir_post .sticky_search .items,
  .dir_play .sticky_search .items {
    background-color: #fafafa;
        cursor: pointer;
  }
  .sticky_search.fixed {
    background: rgb(255 255 255 / 80%);
    padding: 20px 40px;
  }
  .dir_play .sticky_search.fixed .items {
    background-color: #f0f0f0;
  }
  
  .dir_post .top_post {
    margin-bottom: 80px;
    padding-bottom: 60px;
  }
  .dir_post .top_post .list {
    margin: 0 -60px;
  }
  .dir_post .top_post .list .top_slide_prev {
    left: 20px;
  }
  
  .list_sort_navi {
    margin-bottom: 20px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
        gap: 40px;
  }
  .list_sort_navi .left {
    gap: 30px;
  }
  .list_sort_navi .total { font-size: 1.6rem; }
  .list_sort_navi .total strong { font-size: 4rem; font-weight: normal; }
  .list_sort_navi .sort { font-size: 1.6rem; padding: 4px 46px 4px 26px; }
  .list_sort_navi .right {
    flex: 1;
  }
  .list_sort_navi .sort_form {
    display: flex;
    align-items: center;
    gap: 10px;
}
  .list_sort_navi .sort_form .ttl {
    margin: 0 30px 0 0;
    font-size: 1.6rem;
    background-position: 0 0;
  }
  .list_sort_navi .sort_form input,
  .list_sort_navi .sort_form select {
    max-width: none;
    width: auto;
    flex: 1;
    margin: 0;
    font-size: 1.6rem;
  }
  .list_sort_navi .sort_form .btns {
    width: 220px;
    text-align: center;
  }
  .list_sort_navi .sort_form button[type='submit'] {
    margin: 0;
    font-size: 1.6rem;
    max-width: inherit;
    width: 100%;
  }
  .list_sort_navi .sort_form .reset {
    font-size: 1.4rem;
  }
  
  /* list */
  .post_list {
    gap: 40px 10px;
  }
  .post_list .item {
    padding: 15px;
    width: calc(33.33% - 7px);
  }
  .post_list.pc_4column {}
  .post_list.pc_4column .item {
    width: calc(25% - 8px);
  }
  .post_list .item a {}
  .post_list .thumb {}
  .post_list .detail_sub { margin-bottom: 20px; }
  .post_list .cat { font-size: 1.6rem; }
  .post_list .date { font-size: 1.5rem; }
  .post_list .ttl { font-size: 1.8rem; }
  .post_list .tag {}
  .post_list .tag a { font-size: 1.4rem; }
}

/* pc */
@media print, screen and (min-width: 1920px) {
  
  .post_list.pc_4column {
    gap: 40px;
  }
  .post_list.pc_4column .item {
    width: calc(25% - 30px);
  }
  
  .list_sort_navi .sort_form .ttl {
    font-size: 1.8rem;
    background-position: 0 center;
  }
  .list_sort_navi .sort_form input,
  .list_sort_navi .sort_form select {
    font-size: 1.8rem;
  }
  .list_sort_navi .sort_form button[type='submit'] {
    font-size: 1.8rem;
  }
}

/*----- detail -----*/
/* detail_nav */
.detail_nav {
    display: flex;
    justify-content: space-between;
  border-top: 1px dashed #666666;
  border-bottom: 1px dashed #666666;
  padding: 26px 10px;
  margin-top: 60px;
  background: #FCFCFC;
}
.detail_nav li {
    width: 33%;
}
.detail_nav li a {
    color: #000;
    text-decoration: none;
    display: block;
    background: url(../image/icon/arrow_03_blue_left.svg) no-repeat left center/28px;
    font-size: 1.3rem;
    font-weight: bold;
    padding: 4px 0 4px 40px;
}
.detail_nav .in_right {}
.detail_nav .in_right a {
  text-align: right;
  padding: 4px 40px 4px 0;
  background-image: url("../image/icon/arrow_03_blue_right.svg");
  background-position: right center;
}
.detail_nav_pc { display: none; }

/* post_detail */
.post_detail {}
.post_detail_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.3rem;
  
  background: linear-gradient(#F6F4F0 0%, #fff 75.71%, #fff 100%);
  padding: 30px 20px 20px;
  margin: 0 -20px 0;
}
.post_detail_head .cat {
  color: var(--site_color);
  font-size: 2rem;
}

.post_detail_head .cat_eat {
    background-size: auto 23px;
    padding-left: 19px;
    background-position: 0 5px;
}
.post_detail_head .cat_watch {
    padding-left: 24px;
    background-size: auto 22px;
    background-position: 0 6px;
}
.post_detail_head .cat_meet {
    background-size: auto 20px;
    padding-left: 34px;
    background-position: 0 8px;
}
.post_detail_head .cat_buy {
    background-size: auto 26px;
    padding-left: 28px;
    background-position: 0 5px;
}
.post_detail_head .cat_specials {
    background-size: auto 20px;
    padding-left: 22px;
    background-position: 0 7px;
}

.post_detail_head .right {
    font-size: 1.2rem;
    text-align: right;
}
.post_detail_head .is_pr {
    color: #fff;
    font-weight: bold;
    background: lch(30.94 48.32 276.49 / 0.63);
    font-size: 1rem;
    padding: 1px 8px;
    text-align: center;
}

.post_detail .post_thumbnail {
  margin: 0 -20px;
}
.post_thumbnail_image {
  position: relative;
}
.post_thumbnail_image img {
    width: 100%;
}
.post_thumbnail .btn_clip_side {
    color: #86653E;
    background: #FBFAF8 url(../image/icon/g_navi_05.svg) no-repeat left 15px center / 15px;
    border-radius: 45px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    text-decoration: none;
    padding: 8px 20px 8px 35px;
    position: absolute;
    right: 10px;
    bottom: 15px;
    font-size: 1.3rem;
    font-weight: 500;
}
.post_thumbnail .btn_clip_side.cliped {
    background-image: url(/image/icon/icon_cliped.svg);
    background-size: 20px;
    padding-left: 40px;
}
.post_thumbnail .caption {
    text-align: right;
    padding: 0 20px;
    margin-top: 10px;
    color: #aaa;
    font-size: 1.2rem;
    display: block;
}
.post_detail .post_lead {
    font-size: 1.5rem;
  
    color: #333;
  margin-bottom: 30px;
}
.table_of_contents {
    background: #FBFAF8;
    padding: 50px 30px 30px;
    position: relative;
    margin-top: 50px;
}
.table_of_contents .ttl {
    position: absolute;
    left: 20px;
    top: -25px;
    margin: 0;
    padding: 10px 35px;
    background: var(--bgc_base_02);
    color: #fff;
    font-size: 1.4rem;
}
.table_of_contents ul {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
p.bnr_activity_s {
    margin: 40px 0;
}
p.bnr_activity_s img { width: 100%; }
.bnr_sticky_sp {
    position: sticky;
    top: 10px;
    z-index: 1;
    box-shadow: 0 0 10px rgb(0 0 0 / 12%);
}

.btn_clip a {
    position: fixed;
    right: 0;
    bottom: 80px;
    padding: 45px 10px 10px 15px;
    color: var(--site_color);
    font-weight: bold;
    text-decoration: none;
    background: var(--bgc_base) url(../image/icon/g_navi_05.svg) no-repeat center top 17px;
    font-weight: bold;
    font-size: 1.1rem;
    z-index: 1;
    border-radius: 30px 0 0 30px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
}

.article_wrap {
  line-height: 2;
}
* + .article_wrap {
    margin-top: 60px;
}
.article_wrap img {
  width: 100%;
}

.article_related {
  margin-top: 40px;
}
.article_related > .ttl {
  color: var(--site_color);
  font-size: 1.6rem;
  font-weight: bold;
  
  border-bottom: none;
  padding: 0;
  margin-bottom: 15px;
  background: url("../image/icon/icon_related.svg") no-repeat right center/30px;
}
.article_related ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.article_related ul li {}
.article_related ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #BBBBBB;
  border-radius: 0 20px 0 20px;
  padding: 10px;
  color: #000;
  text-decoration: none;
}
.article_related .thumb {
    display: block;
    width: 110px;
    height: 80px;
    position: relative;
    background: #fff;
    overflow: hidden;
    border-radius: 0 20px 0 20px;
}
.article_related .thumb img {
  position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.article_related .title {
  flex: 1;
  font-size: 1.2rem;
    font-weight: normal;
    font-family: inherit;
    padding: 0;
    margin: 0;
    border: none;
}

.article_related.type_plan .slick-track {
  margin: 0;
}
.article_related.type_plan .slick-list {
  /*padding-right: 50%;*/
}
.article_related.type_plan .slick-arrow {
  top: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.article_related.type_plan .slick-arrow img {
    width: 10px;
}
/*.article_related.type_plan ul {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
}
.article_related.type_plan .item {
  width: calc(50% - 8px);
}*/
.article_related.type_plan .item {
  margin-right: 15px;
}
.article_related.type_plan .item a {
  flex-direction: column;
  align-items: flex-start;
  border: none;
  background: #F6F6F6;
  height: 100%;
}
.article_related.type_plan .thumb {
  width: 100%;
  height: 0;
  padding-bottom: 66%;
  border-radius: 0 10px 0 10px;
}
.article_related.type_plan .detail {
  flex: 1;
  width: 100%;
}
.article_related.type_plan .activity_note {
  display: none;
}
.article_related.type_plan .price_wrap {
    margin: 0;
    flex-direction: column;
    gap: 0;
}
.article_related.type_plan .price_wrap .price {
    margin: 0;
}
.article_related.type_plan .price_wrap .discount {
  margin: 0;
  font-size: 80%;
}
.article_related.type_plan .activity_note {
    background: #fff;
    border: none;
    padding: 0 10px;
}


.spot_about {
    background: var(--bgc_base);
    padding: 20px;
    margin-top: 40px;
    border-radius: 0 10px 0 10px;
}
.spot_about .ttl {
  color: var(--site_color);
  font-size: 1.6rem;
  font-weight: bold;
  
  border-bottom: 1px dashed #666;
  background: none;
}
.spot_about .ttl::before {
  display: none;
}
.spot_about dl {
  display: flex;
  gap: 10px;
  font-size: 90%;
  margin: 0;
}
.spot_about dl + dl { margin-top: 10px }
.spot_about dl dt {}
.spot_about dl dd { flex: 1; }
.spot_about dl dd a {
    word-break: break-all;
}
.spot_about .map { margin-top: 20px; }
.spot_about .map iframe {
  width: 100%;
  height: 240px;
}
.tv_archive {
  margin-top: 60px;
}
.tv_archive .ttl {
  color: var(--site_color);
  font-size: 2rem;
  font-weight: normal;
  border-bottom: none;
  padding: 0;
  background: url("../image/top/img_tv.svg") no-repeat right center/32px;
}
.tv_archive .ttl::before { display: none; }
.tv_archive .on-air_date {
  text-align: right;
  font-size: 1.3rem;
}
.tv_archive .list {}
.tv_archive .list li { margin-bottom: 20px; }
.tv_archive .list .date {
    font-size: 1.3rem;
    text-align: right;
    margin: 10px 0 0;
}
.tv_archive .link { text-align: center }

.post_member {
    display: flex;
    justify-content: end;
    margin: 40px 0;
    font-size: 1.3rem;
}
.post_member p { margin: 0; }
.post_member a {
    color: var(--site_color);
    display: flex;
    gap: 10px;
    align-items: center;
    border-radius: 55px;
    padding: 10px 25px 10px 10px;
    text-decoration: none;
    background: #F0F0F0;
}
.article_footer_clip {
    text-align: right;
    font-size: 1.2rem;
}
.post_member .plof {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
.post_member .plof img {
  position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.post_member .name {
  flex: 1;
  line-height: 1.3;
}

.more_post {
  background: #F6F6F6;
  margin: 70px -20px;
  padding: 30px 20px 20px;
  border-radius: 0 10px 0 10px;
}
.more_post > .ttl {
  color: var(--site_color);
  
  font-weight: normal;
  font-size: 2rem;
  background: url("../image/icon/icon_more_post.svg") no-repeat right center/32px;
  margin: 0 0 30px;
  
}
@media print, screen and (max-width: 425px) {
  .more_post .post_list {
      flex-direction: column;
      gap: 20px;
  }
  .more_post .post_list .item {
    width: 100%;
    padding: 20px;
  }
  
}
.more_post .link {
  text-align: center;
  margin-top: 20px;
}
.more_post .link a {
  width: 100%;
  max-width: none;
  background-color: #fff;
}


/* tablet */
@media print, screen and (min-width: 768px) {
  
  .article_related.type_plan .item {
    width: calc(33.33% - 10px);
  }
  
  
  .tv_archive .list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
  }
  .tv_archive .list .item {
    width: calc(50% - 8px);
    margin: 0;
  }
  .tv_archive .list .date {
    font-size: inherit;
  }
  
}

/* pc */
@media print, screen and (min-width: 1024px) {
  .post_thumbnail .btn_clip_side {
        padding: 20px 40px 20px 65px;
        right: 10px;
        bottom: 15px;
        font-size: 1.8rem;
        background-size: 25px;
        background-position: left 30px center;
    }
  .post_thumbnail .btn_clip_side.cliped {
        background-size: 30px;
        padding-left: 70px;
    }
}

/* pc */
@media print, screen and (min-width: 1200px) {
  
  /* post_detail */
  
  .post_detail_head {
    margin: 0;
    padding: 30px 15px;
  }
  .post_detail_head .cat {
    font-size: 2.2rem;
  }
  .post_detail_head .is_pr {
    margin-top: 8px;
    font-size: inherit;
  }
  .post_detail_head .right {
    font-size: 1.6rem;
  }

  
  .post_detail .post_thumbnail {
    margin: 0 0 20px;
  }
  .post_thumbnail .caption {
    font-size: inherit;
  }
  .post_detail .post_lead {
    font-size: 2.4rem;
    margin-bottom: 40px;
  }
  
  
  .table_of_contents {
    margin-bottom: 40px;
    padding: 50px 30px 30px;
  }
  .table_of_contents .ttl {
    font-size: 1.6rem;
    padding: 12px 66px;
  }
  
  * + .article_wrap {
    margin-top: 120px;
  }
  
  
  .bnr_sticky_sp {
    position: inherit;
    top: auto;
    z-index: 1;
    box-shadow: none;
  }

  .bnr_sticky_pc {
    position: sticky;
    top: 10px;
    z-index: 1;
  }

  
  
  /* article_related */
  .article_related { margin-top: 80px; }
  .article_related .ttl {
    font-size: 3rem;
    font-weight: normal;
    background-size: 52px;
    margin-bottom: 30px;
  }
  
  .article_related ul li a {
    padding: 20px;
    gap: 20px;
  }
  .article_related .thumb {
    width: 200px;
    height: 148px;
  }
  .article_related .title {
    /*font-size: 1.8rem;*/
    font-size: 18px;
    font-weight: bold;
  }
  
  
  .article_related.type_plan .slick-list {
    padding-right: 10%;
  }
  .article_related.type_plan ul li a {
    padding: 15px;
  }
  .article_related.type_plan .price_wrap {
    flex-direction:row;
    gap: 15px;
  }
  .article_related.type_plan .activity_note {
    display: flex;
    gap: 0;
    flex-direction: row;
  }
  .article_related.type_plan .activity_note .time {
    display: none;
  }
  
  /* .spot_about */
  .spot_about {
    margin-top: 80px;
    padding: 30px;
  }
  .spot_about .ttl {
    font-size: 2rem;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .spot_about dl {
    font-size: 1.8rem;
  }
  .spot_about .map iframe {
    height: 360px;
  }
  
  
  .article_footer_clip {
    font-size: 1.8rem;
  }
  
  
  /* .tv_archive */
  .tv_archive {}
  .tv_archive_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .tv_archive .ttl {
    background: none;
    font-size: 3rem;
    margin: 0;
  }
  .tv_archive .on-air_date {
    font-size: 1.5rem;
    padding: 20px 60px 20px 0;
    margin: 0;
    background: url("../image/top/img_tv.svg") no-repeat right center/46px;
  }
  .tv_archive .list { gap: 20px; }
  .tv_archive .list .item {
    width: calc(33.33% - 14px);
  }
  
  /* detail_nav */
  .detail_nav {
    margin: 120px 0;
  }
  .detail_nav li {
    width: 45%;
  }
  .detail_nav li a {
    font-size: 1.5rem;
  }
  .detail_nav_pc {
    display: block;
    font-weight: normal;
  }
  
  /* more_post */
  .more_post {
    padding: 30px 20px 45px;
    margin: 0 auto;
  }
  .more_post > .ttl {
    font-size: 3rem;
    background-size: 45px;
  }
  
  .more_post .post_list {
    gap: 10px;
  }
  .more_post .post_list .item {
    width: calc(33.33% - 7px);
  }
  .more_post .link {
    margin-top: 40px;
  }
  .more_post .link a {
    width: auto;
  }
  .more_post .link a:hover {
    background-color: var(--bgc_base);
  }
}


/*---------------------------------------------------------------------
	writer　ライター
---------------------------------------------------------------------*/
.writer_list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap:84px;
  margin: 80px 0 20px;
}
.writer_list .item {
  background: url("../image/bg_01.jpg");
    text-align: center;
    padding: 0 15px 20px;
  border-radius: 0 20px 0 20px;
}
.writer_list a {
  display: block;
  color: #000;
  
  text-decoration: none;
}
.writer_list .thumb {
    position: relative;
    overflow: hidden;
    border: 3px solid #fff;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    margin: -64px 0 10px;
    display: inline-block;
  background: #fff;
}
.writer_list .item:nth-child(1) .thumb {
 border-color: #F0F0F0;
}
.writer_list .thumb img {
  position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.1);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.writer_list .ttl {
  color: var(--site_color);
    font-size: 2rem;
}
.writer_list .job_ttl {
  font-size: 1.8rem;
}
.writer_list .lead {
    background: #fff;
    padding: 20px;
    border-radius: 0 0 50px 20px;
    position: relative;
    margin-top: 30px;
  text-align: left;
  box-shadow: 0 2px 10px -6px rgb(0 0 0 / 35%);
  
}
.writer_list .lead::before {
    content: "";
    position: absolute;
    left: 0;
    top: -20px;
    height: 30px;
    width: 100%;
    background: url(../image/noto_head_s.png) no-repeat right top / cover;
}
.writer_list .lead::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    height: 34px;
    width: 50px;
    background: url(../image/noto_end.png) no-repeat right top;
    background-size: contain;
}


/* writer_detail */
.writer_detail {
  margin-bottom: 60px;
}
.writer_detail .ttl {
  margin-bottom: 30px;
}
.writer_detail .thumb {
    border-radius: 15px;
    overflow: hidden;
  margin: 0 20px -40px;
}
.writer_detail .thumb img { width: 100%; }
.writer_detail .detail {
  background: url("../image/bg_01.jpg") no-repeat 0 0;
    padding:60px 20px 40px;
}
.writer_detail .detail_inner {
  background: #fff;
    padding: 20px;
    border-radius: 0 0 50px 20px;
    position: relative;
    margin-top: 30px;
  text-align: left;
  box-shadow: 0 2px 10px -6px rgb(0 0 0 / 35%);
}
.writer_detail .detail_inner::before {
  content: "";
    position: absolute;
    left: 0;
    top: -20px;
    height: 30px;
    width: 100%;
    background: url(../image/noto_head_s.png) no-repeat right top / cover;
}
.writer_detail .detail_inner::after {
  content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    height: 34px;
    width: 50px;
    background: url(../image/noto_end.png) no-repeat right top;
    background-size: contain;
}
.writer_detail .prof_ttl {
    color: var(--site_color);
    
    font-weight: bold;
    font-size: 1.8rem;
    margin-bottom: 20px;
}


.writer_detail .prof_ttl .en {
  color: #97B3CB;
  font-size: 1.3rem;
}
.writer_detail .content1 {
  text-align: left;
}



/* tablet */
@media print, screen and (min-width: 768px) {
  
  .writer_list {
    flex-direction: row;
    gap: 104px 40px;
    margin-top: 95px;
  }
  .writer_list .item {
    width: calc(33.33% - 27px);
    padding: 0 20px 30px;
  }
  .writer_list .thumb {
    width: 150px;
    height: 150px;
  }
  .writer_list .lead {
    border-radius: 0 0 40px 20px;
  }
  .writer_list .lead::after {
    width: 41px;
    height: 33px;
    bottom: -8px;
    right: 5px;
  }
  
  /* writer_detail */
  .writer_detail {}
  .writer_detail .ttl_wrap {
    display: flex;
    padding-right: 50px;
  }
  .writer_detail .ttl {
    flex: 1;
  }
  .writer_detail .thumb {
    width: 393px;
    margin: 0 0 -30px;
    border-radius: 20px;
  }
  .writer_detail .detail {
    padding: 60px 50px 0;
  }
  .writer_detail .detail_inner {
    padding: 40px 30px;
  }
  .writer_detail .detail_inner::before {
    background-image: url("../image/noto_head.png");
  }
  .writer_detail .detail_inner::after {}
  
  .writer_detail .prof_ttl { font-size: 2.2rem; margin-bottom: 30px; }
  .writer_detail .prof_ttl .en { font-size: 1.5rem; }
}

/* pc */
@media print, screen and (min-width: 1200px) {}



/* writer_detail */
/*.writer_detail {
  margin-bottom: 60px;
}
.writer_detail .thumb {
    border-radius: 0 20px 0 20px;
    overflow: hidden;
  margin-bottom: 20px;
}
.writer_detail .thumb img { width: 100%; }
.writer_detail .detail {}*/


/* tablet */
/*@media print, screen and (min-width: 768px) {
  .writer_detail {
    display: flex;
    align-items: start;
    gap: 50px;
    margin-bottom: 100px;
  }
  .writer_detail .thumb {
    width: 40%;
    max-width: 333px;
  }
  .writer_detail .detail {
      flex: 1;
  }
}*/


/*---------------------------------------------------------------------
	feature　特集
---------------------------------------------------------------------*/
.bg_blue_gradation {
  padding-top: 1px;
  background: linear-gradient(var(--bgc_base) 0%, var(--bgc_base) 71.12%, #fff 100%);
}
.dir_feature .dir_mv_lead .en_lead span {
  padding: 4px 34px 4px 0;
  background: url("../image/top/img_flower.svg") no-repeat right center/30px;
}

.feature_detail { margin-bottom: 40px; }
.feature_detail .thumb {
    border: 2px solid #fff;
    border-radius: 0 20px 0 20px;
    overflow: hidden;
    position: relative;
    padding-bottom: 66.6%;
    box-shadow: 20px 20px 0 -10px #C8D8DE;
    margin-bottom: -20px;
}
.feature_detail .thumb img{
  position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.feature_detail .detail {
    background: url(../image/bg_01.jpg) 0 0 / contain;
    padding: 45px 20px 20px;
    border-radius: 0 20px 0 20px;
}
.feature_detail .en_ttl {
    font-family: var(--font-mrs);
    background: url(../image/top/img_flower.svg) no-repeat right center;
    background-size: contain;
    font-size: 2.6rem;
    color: #ABABAB;
    margin-bottom: 10px;
}

.feature_detail .lead {
  
}

.feature_content1 { margin-bottom: 60px; }


.feature_list {}
.feature_list .item {}
.feature_list .item a {
  color: #000;
  text-decoration: none;
  display: block;
}
.feature_list .thumb {
  position: relative;
  padding-bottom: 46%;
  overflow: hidden;
  margin-bottom: 10px;
}
.feature_list .thumb img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature_list .ttl {
  font-size: 1.3rem;
  font-weight: 400;
}


/* tablet */
@media print, screen and (min-width: 768px) {}

/* pc */
@media print, screen and (min-width: 1200px) {
  .feature_detail {
    margin-bottom: 60px;
    display: flex;
    align-items: flex-start;
  }
  .feature_detail .thumb {
    width: 550px;
    padding-bottom: 30%;
    margin: 0;
    box-shadow: 24px 24px 0 -10px #C8D8DE;
  }
  .feature_detail .thumb .label_pr {
    font-size: 1.4rem;
  }
  .feature_detail .detail {
    flex: 1;
    margin: 60px 0 0 -250px;
    padding: 30px 30px 30px 300px;
    min-height: 350px;
  }
  .feature_detail .en_ttl {
    font-size: 4.6rem;
    margin-bottom: 20px;
    background-size: 47px;
    background-position: right top;
  }
  .feature_detail .lead {
    font-size: 2.6rem;
  }
}


/*---------------------------------------------------------------------
	activity play　体験
---------------------------------------------------------------------*/
.dir_play .dir_mv_lead .en_lead span {
  padding: 10px 65px 0 0;
  background: url("../image/top/k0207_1.svg") no-repeat right -4px/65px;
}
.bg_gray {
    background: #F0F0F0;
    padding: 20px 20px 70px;
}

/* plan_list */
.plan_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.plan_list .item {
  border: 1px solid #E2E2E2;
  background: #fff;
}
.plan_list .item a {
  color: #000;
  text-decoration: none;
  display: block;
}
.plan_list .thumb {
  position: relative;
  overflow: hidden;
  padding-bottom: 66%;
  display: block;
}
.plan_list .thumb img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.plan_list .detail {
  padding: 15px;
}
.plan_list .cat {
  margin-bottom: 10px;
  display: none;
}
.plan_list .cat span {
  color: var(--site_color);
  font-size: 1.6rem;
  font-weight: bold;
  border: 1px solid #ECE3D7;
  background: #F3F0EC;
  padding: 3px 20px;
}
.plan_list .ttl {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.8;
}

.price_wrap {
  display: flex;
  gap: 20px;
}
.price_wrap .price {
  font-size: 1.3rem;
  color: var(--site_color);
}
.price_wrap .price strong {
  font-size: 1.5rem;
  font-weight: 500;
}
.price_wrap .discount {
  /* display: flex; */
  align-items: center;
  gap: 10px;
  /* display: none; */
}
.price_wrap .discount .base {
  color: #989898;
  font-size: 1.3rem;
  text-decoration: line-through;
}
.price_wrap .discount .discount_rate {
  color: #fff;
  background: #A1290B;
  font-size: 1.4rem;
  font-family: var(--font-gothic);
  padding: 1px 8px;
}

.activity_note {
  display: flex;
  gap: 12px;
  padding: 6px 12px;
  border: 1px solid var(--border_color_02);
  margin-top: 15px;
}
.activity_note li {
  /*font-size: 1.6rem;*/
  flex: 1;
  position: relative;
}
.activity_note .spot::before {
  content: url("../image/icon/icon_spot.svg");
  margin-right: 5px;
}
.activity_note .time::before{
  content: url("../image/icon/icon_time.svg");
  margin-right: 5px;
}

/* bnr_shimanchu */
.bnr_shimanchu {
  margin: 0 -5px;
}
.bnr_shimanchu .item {
  margin: 0 5px;
}
.bnr_shimanchu .item a {
  display: block;
  position: relative;
  text-decoration: none;
  color: #fff;
}
.bnr_shimanchu .item .ttl {
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 5px 10px;
    background: rgb(17 86 112 / 50%);
    margin: 0;
    text-align: left;
    display: block;
}
.bnr_shimanchu .prev {
    top: 45%;
    left: -10px;
}
.bnr_shimanchu .next {
  top: 45%;
  right: -10px;
}


/* tablet */
@media print, screen and (min-width: 768px) {
  
  .plan_list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
  .plan_list .item {
    width: calc(50% - 10px);
  }
  
}

/* pc */
@media print, screen and (min-width: 1200px) {
  .dir_play .dir_mv_lead { margin: 35px auto 50px; }
  .dir_play .dir_mv_lead .en_lead span {
    background-size: 110px;
    padding: 0 120px 0 0;
    background-position: right -11px;
  }
  .bg_gray {
    padding: 60px 120px;
  }
  .bg_gray .top_rank .list {
    margin: 0 -40px;
  }
  
  
  .plan_list {
    gap: 30px 10px;
  }
  .plan_list .item {
    width: calc(33.33% - 7px)
  }
  .plan_list .ttl { font-size: 1.8rem; }
  .price_wrap .price { font-size: 1.5rem; }
  .price_wrap .price strong { font-size: 1.6rem; }
  .activity_note li { font-size: 1.4rem; }
}

/* pc */
@media print, screen and (min-width: 1920px) {
  .bnr_shimanchu .item .ttl { font-size: 1.3rem; }
}


/* ----- activity_detail ----- */
/*.dir_activity .dir_ttl {
  background: url("../image/icon/icon_activity.svg") no-repeat right center;
}*/
.activity_detail .cat { display: none; }

.activity_mv {
    width: 100%;
    max-width: 840px;
  margin-bottom: 20px;
}
.activity_mv .mv_main {
  margin: 0 -20px;
}
.activity_mv .thumb {
    position: relative;
    overflow: hidden;
    padding-bottom: 66%;
}
.activity_mv .thumb img {
  position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.activity_mv .mv_thumb {
  margin: 10px -20px 0;
}
.activity_mv .mv_thumb .slick-list {
    padding: 0 !important;
}
.activity_mv .mv_thumb.stop .slick-track {
  transform: none !important;
}
.activity_mv .mv_thumb .item {
    margin: 0 3px;
  opacity: .4;
}
.activity_mv .mv_thumb .item.slick-current {
  opacity: 1;
}

.activity_detail .lead {
  
  margin: 20px 0;
}

.activity_tab {
  margin: 40px 0;
}
.activity_tab .tab_menu {
    display: flex;
    gap: 10px;
    align-items: baseline;
    border-bottom: 2px solid var(--site_color);
    margin: 0 -20px;
    padding: 0 20px;
}
.activity_tab .tab_menu li { flex: 1; }
.activity_tab .tab_menu a {
    display: block;
    color: #000;
    text-decoration: none;
    text-align: center;
    background: var(--bgc_base);
    padding: 10px 0;
  border-radius: 10px 10px 0 0;
    font-size: 1.2rem;
  transition: .3s;
}
.activity_tab .tab_menu .select {
  color: #fff;
  background: var(--site_color);
}

.activity_tab .tab_menu.bottom {
  border-top: 2px solid var(--site_color);
  border-bottom: none;
  margin-top: 30px;
}
.activity_tab .tab_menu.bottom a {
  border-radius: 0 0 10px 10px;
}

.activity_tab .tab_item {
  display: none;
}


.price_wrap_detail {
  
      border-spacing: 0 10px;
    border-collapse: separate;
}
.price_wrap_detail tr {
  border: none;
}
.price_wrap_detail th {
  padding: 10px;
  background: none;
  text-align: left;
  vertical-align: middle;
  border: 1px solid #CBCBCB;
}
.price_wrap_detail td {
    text-align: right;
    padding: 10px;
    border: 1px solid #CBCBCB;
    border-left: none;
}
.price_wrap_detail .td_price {
    width: 45%;
}
.price_wrap_detail .price {
    color: #135093;
    font-weight: bold;
}
.price_wrap_detail .price strong { font-size: 2rem; }
.price_wrap_detail .discount {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
    font-size: 90%;
}
.price_wrap_detail .discount .base {
  color: #919191;
  text-decoration: line-through;
  
  font-weight: bold;
}
.price_wrap_detail .discount_rate {
  color: #fff;
  background: #A1290B;
  border-radius: 5px;
  font-weight: normal;
  font-size: 80%;
  padding: 3px 10px;
  font-family: var(--font-base);
  text-align: center;
}


.activity_about {}
.activity_about .item {
  margin-top: 40px;
}
.activity_about .item > .ttl {
  font-size: 1.6rem;
  
  font-weight: bold;
  margin-bottom: 15px;
}
.activity_about .item dl {
  border-top: 1px solid var(--bgc_base_02);
  border-bottom: 1px solid var(--bgc_base_02);
}
.activity_about .item dl + dl {
  border-top: none;
}
.activity_about .item dl dt {
  color: var(--site_color);
  font-size: 1.3rem;
  
  background: var(--bgc_base);
  padding: 10px;
}
.activity_about .item dl dd {
  font-size: 1.3rem;
  padding: 10px;
}
.activity_about .discount {
    color: #909090;
    font-size: 90%;
    text-decoration: line-through;
    margin: 0 10px;
}
.activity_about .discount_rate {
  color: #fff;
  background: #A1290B;
  border-radius: 5px;
  font-size: 90%;
  padding: 3px 10px;
}
.activity_about .map {
  margin-top: 15px;
}
.activity_about iframe {
  width: 100%;
  height: 360px;
}

.activity_request {
  margin: 30px auto 80px;
}
.activity_request .ttl {
  color: var(--site_color);
  font-size: 2rem;
  font-weight: normal;
  
  margin-bottom: 15px;
}
.activity_request .calendar {
  margin-bottom: 10px;
}
.activity_request .calendar .jc_sb {
    display: flex;
    justify-content: space-between;
  color: var(--site_color);
  font-size: 2rem;
  font-weight: normal;
  
  margin-bottom: 10px;
}
.activity_request .calendar .jc_sb >* {
  width: 22%;
}
.activity_request .calendar .jc_sb .center {
  flex: 1;
  text-align: center;
}
.activity_request .calendar .jc_sb .next { text-align: right;}
.activity_request .calendar .table {}
.activity_request .calendar .table th {
    padding: 1px;
}
.activity_request .calendar .table td {
    vertical-align: text-bottom;
    padding-top: 2px;
}
.activity_request .calendar .table .day {
    font-size: 1rem;
}
.activity_request .calendar .table td a {
    line-height: 1;
    display: block;
  text-align: center;
    vertical-align: text-top;
}
.activity_request .calendar .table .sun {
    color: #fff;
    background: var(--site_color);
}
.activity_request .calendar .table .sat {
    color: #fff;
    background: #93B0D0;
}
.activity_request .calendar .hide {
    background: #F4F4F4;
}
.activity_request .calendar .hide_date {
    background: #D7D7D7;
}
.activity_request .time_wrap {
  margin-top: 30px;
}
.activity_request .time_ttl {
  color: var(--site_color);
  font-size: 2rem;
  font-weight: normal;
  
  margin-bottom: 15px;
}
.activity_request .time_wrap ul {
  display: flex;
  flex-wrap: wrap;
}
.activity_request .time_wrap ul li {
    width: 50%;
    padding: 10px 10px 10px 30px;
    position: relative;
    font-size: 1.5rem;
    border-top: 1px dotted #707070;
    border-bottom: 1px dotted #707070;
}
.activity_request .time_wrap ul li:nth-child(n+3) {
    border-top: none;
}
.activity_request .time_wrap ul li::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 17px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--site_color);
}
.activity_request .btn_request {
  text-align: center;
  padding: 0 30px;
  margin-top: 20px;
}
.activity_request .btn_request a,
.activity_request .btn_request span {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 1.8rem;
  
  background: var(--site_color) url("../image/icon/arrow_02_white_right.svg") no-repeat right 40px center;
  border: 1px solid var(--border_color_02);
  border-radius: 50px;
  padding: 25px;
}
.activity_request .btn_request span {
  background: #aaa;
}

.dir_activity .beta { display: none; }
.dir_activity .pagebody_inner_03 {
    margin-top: 100px;
  }

.activity_contents {
  margin: 40px 0;
}
.activity_contents .item + .item { margin-top: 40px; }

.dir_activity_detail .sp_bottom_menu {
  display: none;
}

.sp_activity_bottom {
    position: sticky;
    left: 0;
    bottom: 0;
    z-index: 10;
    width: 100%;
}
.sp_activity_bottom > .inner {
  display: flex;
    justify-content: space-between;
    align-content: center;
    gap: 10px;
          
  background: rgb(242 245 250/90%);
  padding: 15px 20px;
  z-index: 2;
  position: relative;
}
a.btn_clip_sp_activity {
    color: #646464;
    text-decoration: none;
    background: #fff;
    border: 1px solid var(--border_color_02);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /*padding: 12px;*/
}
a.btn_clip_sp_activity .icon {
      width: 28px;
    height: 28px;
  background: url(/image/icon/icon_clip_02_gray.svg) no-repeat center center/18px;
}
a.btn_clip_sp_activity .text { display: none; }
a.btn_clip_sp_activity.cliped {
  background: #F8F7EF;
  border-color: #EEEBD4;
}
a.btn_clip_sp_activity.cliped .icon {
  background: url("../image/icon/icon_cliped.svg") no-repeat center center/28px;
}
a.btn_pop_calendar {
    color: #646464;
    text-decoration: none;
    background: #fff;
    border: 1px solid var(--border_color_02);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}
a.btn_pop_calendar .text { display: none; }
a.btn_pop_calendar.open {
  background-color: #F8F7EF;
  border-color: #EEEBD4;
}
a.btn_request_sp,
span.btn_request_sp {
    color: #fff;
    text-decoration: none;
    background: var(--site_color) url("../image/icon/arrow_02_white_right.svg") no-repeat right 10px center;
    display: block;
    padding: 10px 30px;
  border: 1px solid var(--site_color);
    border-radius: 5px;
  flex: 1;
}
span.btn_request_sp {
  background: #aaa;
  border: none;
  text-align: center;
}

.pop_calendar {
    position: absolute;
    width: 100%;
    height: 100vh;
    left: 0;
    bottom: 0;
    padding: 20px 20px 100px;
    background: #3333334f;
    z-index: 1;
  display: none;
}
.pop_calendar_inner {
  display: flex;
      justify-content: center;
    align-items: flex-end;
  height: 100%;
}
.pop_calendar .activity_request {
    margin: 0;
    background: #fff;
    padding: 20px;
  position: relative;
}
.pop_calendar .activity_request::before {
    /*content: "";*/
    position: absolute;
    left: 74px;
    bottom: -23px;
    border: 10px solid transparent;
    border-top: 20px solid #fff;
}
.pop_calendar .activity_request .time_ttl {
  font-size: 1.6rem;
}
.pop_calendar .activity_request .time_wrap ul li {
  font-size: 1.2rem;
}
.pop_calendar .activity_request .time_ttl {}

/* tablet */
@media print, screen and (min-width: 768px) {
  a.btn_clip_sp_activity,
  a.btn_pop_calendar {
    border-radius: 5px;
    width: auto;
    padding: 12px 20px;
  }
  a.btn_clip_sp_activity .text,
  a.btn_pop_calendar .text {
    display: block;
    padding-left: 10px;
  }
  
  .price_wrap_detail .td_price {
    width: 200px;
  }
}

/* pc */
@media print, screen and (min-width: 1200px) {
  .dir_activity .pagebody_inner {
    flex-direction: row;
  }
  .dir_activity .pagebody_inner_03 {
    margin-top: 150px;
  }
  .dir_activity .beta {
    display: block;
  }
  
  .activity_mv .mv_main {
    margin: 0;
  }
  .activity_mv .mv_thumb {
    margin: 0 -5px;
  }
  .activity_mv .mv_thumb .item {
    margin: 10px 5px 0;
  }
  
  .activity_tab .tab_menu {
    margin: 0;
  }
  .activity_tab .tab_menu a {
    padding: 15px 0;
  }
  
  .activity_about .item > .ttl {
    font-size: 1.8rem;
  }
  .activity_about .item dl {
    display: flex;
  }
  .activity_about .item dl dt {
    width: 210px;
  }
  .activity_about .item dl dd {
    flex: 1;
    padding: 10px 20px;
  }
  
  
  .activity_request .ttl {
    font-size: 3.4rem;
  }
  .alpha .activity_request .ttl,
  .alpha .activity_request .calendar,
  .alpha .activity_request p.fc_01 { display: none; }
  .alpha .activity_request .calendar .jc_sb {
    margin-left: 50%;
    font-size: 2.2rem;
  }
  .activity_request .fc_01 {
    font-size: 16px;
  }
  .activity_request .time_wrap {
    display: flex;
    align-items: center
  }
  .activity_request .time_wrap .inner {
    flex: 1;
  }
  .activity_request .time_ttl {
    font-size: 3.4rem;
  }
  .activity_request .time_wrap ul li {
    font-size: 18px;
  }
  .activity_request .time_wrap ul li::before {
    top: 20px;
  }
  .activity_request .btn_request {
    width: 300px;
    padding: 0;
    margin-left: 60px;
  }
  
  
  .beta .activity_request {
    position: sticky;
    top: 30px;
    margin: 0;
  }
  .beta .activity_request .beta_ttl {
    color: #fff;
    background: var(--bgc_base_02);
    border-radius: 10px 10px 0 0;
    font-size: 1.6rem;
    font-weight: normal;
    
    padding: 10px 15px;
    margin-bottom: 10px;
  }
  .beta .activity_request .calendar .jc_sb {
    font-size: 20px;
  }
  
  .beta .activity_request .time_ttl {
    font-size: 1.8rem;
  }
  .beta .activity_request .time_wrap ul {
  }
  .beta .activity_request .time_wrap ul li {
    font-size: 1.3rem;
  }
  /*.beta .activity_request .time_wrap ul li+li {
    border-top: none;
  }*/
  .beta .activity_request .time_wrap ul li::before {
        top: 15px;
    }
  
  .activity_request .btn_request_side {
    display: block;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-size: 1.8rem;
    
    background: var(--site_color) url("../image/icon/arrow_02_white_right.svg") no-repeat right 40px center;
    border: 1px solid var(--border_color_02);
    border-radius: 50px;
    padding: 25px;
  }
  .activity_request .btn_request_side:hover {}
  .activity_request .btn_request_side.inactive {
    background: #aaa;
  }
  .activity_request .btn_clip_side {
    display: block;
    color: #646464;
    text-align: center;
    text-decoration: none;
    font-size: 1.8rem;
    
    background: url("../image/icon/icon_clip_02.svg") no-repeat left 35px center,
      #fff url("../image/icon/arrow_02_yellow_right.svg") no-repeat right 40px center;
    border: 1px solid #D5C9B3;
    border-radius: 50px;
    padding: 25px;
  }
  .activity_request .btn_clip_side:hover {
    background-color: #F8F7EF;
  }
  .activity_request .btn_clip_side.cliped {
    background: #F8F7EF url("../image/icon/icon_cliped.svg") no-repeat left 20px center;
  }
  
  
  .dir_activity .top_rank {
    margin-top: 60px;
  }
  .dir_activity .top_rank .list {
    margin: 0 0 0 130px;
  }
  .dir_activity .top_rank .list .top_slide_prev { left: -110px; }
  
  
  .sp_activity_bottom { display: none; }
}

/*---------------------------------------------------------------------
	review
---------------------------------------------------------------------*/

.review_item {
  display: flex;
  align-content: flex-start;
  gap: 15px;
  background: #fff;
  padding: 15px;
}
.review_item .thumb{
  position: relative;
  overflow: hidden;
  padding-bottom: 20%;
  display: block;
  width: 33%;
  max-width: 150px;
}
.review_item .thumb img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review_item .title {
  flex: 1;
  font-size: 80%;
}

.review_star_input_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 10px 15px;
}
.review_star_input {
  display: flex;
  gap: 10px;
}
.review_star_input input { display: none; }
.review_star_input input + label {
  /*color: #D3A819;*/
  color: #E0DBD6;
  font-size: 2.4rem;
  cursor: pointer;
  line-height: 1;
}
.review_star_input input:checked + label {
  color: #D3A819;
}
.review_star_input input + label.pikker {
  color: #D3A819;
}
.review_star_input_wrap .no {
    color: #86643E;
    font-size: 3rem;
    line-height: 1;
}

.review_guideline {
  background: #fff;
  margin-bottom: 15px;
}
.review_guideline .btn {
  font-size: 1.6rem;
    font-weight: 500;
    display: block;
    position: relative;
    color: #000;
    text-decoration: none;
    padding: 10px;
}
.review_guideline .btn::before {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    margin-top: -11px;
    border: 5px solid transparent;
    border-bottom: 9px solid #86643E;
    transition: .3s;
}
.review_guideline .btn.open::before {
      transform: rotate(60deg);
}
.review_guideline .list {
  padding: 15px;
}
.send_complete {
    background: url(../image/send_complete.jpg) no-repeat right bottom / 340px;
    padding-bottom: 80px;
}

.monitor_icon {
    color: #DFC9AF;
    font-weight: 500;
    background: #000000;
    border-radius: 5px;
    padding: 10px 20px;
    display: inline-block;
    line-height: 1;
}

.review_star {
  display: flex;
  gap: 10px;
  align-items: center;
}
.star5_rating {
    position: relative;
    z-index: 0;
    display: inline-block;
    white-space: nowrap;
    color: #E0DBD6;
  font-size: 2rem;
}
.star5_rating .cover {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    overflow: hidden;
    white-space: nowrap;
    color: #D3A819;
}
.review_star .rate {}
.review_star .rate strong {
  font-size: 2rem;
  font-weight: 500;
}

.review_list {
  padding: 20px 0;
}
.review_list .item + .item {
  margin-top: 20px;
  border-top: 1px solid #C9C9C9;
  padding-top: 20px;
}
.review_list .head {
    display: flex;
    justify-content: space-between;
    align-items: center;
  margin-bottom: 10px;
}
.review_list .head .user {
    display: flex;
    align-items: center;
    gap: 15px;
}
.review_list .head .user .thumb {
    width: 50px;
    height: 50px;
    background: #fafafa;
    border-radius: 50%;
    overflow: hidden;
}
.review_list .head .user .name {
  font-weight: 500;
}


.review_list .comment {
  background: #ECF9F7;
  padding: 20px 10px;
}
.review_list .comment.bg_shop {
  background: #F6F4F0;
}

.review_list .comment_date {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}
.review_list .comment_date .name {
  font-weight: 500;
}
.review_list .comment_date .date {
  font-size: 1.2rem;
}


/* tablet */
@media print, screen and (min-width: 768px) {
  .send_complete {
    background-size: 510px;
  }
}

/* pc */
@media print, screen and (min-width: 1200px) {
  
  .review_guideline .btn {
    font-size: 2.2rem;
    padding: 15px 20px;
  }
  .review_guideline .list {
    padding: 20px;
  }
  .send_complete {
    background-size: auto;
  }
}


/*---------------------------------------------------------------------
	organizer　shop 主催会社
---------------------------------------------------------------------*/
.lead_01.shop_name {
    display: flex;
    align-items: center;
    gap: 20px;
}
.lead_01.shop_name .logo {
    width: 40%;
    max-width: 260px;
}
.lead_01.shop_name .name {
  font-size: 1.3rem;
}

.shop_mv {
  padding: 30px;
  margin: 0 -20px 40px;
  background: #F5F5F5 url("../image/bg_02.jpg");
}
.shop_mv .lead {
  font-size: 1.6rem;
  
  margin-bottom: 20px;
}
.shop_mv .thumb {
      position: relative;
    overflow: hidden;
    padding-bottom: 66%;
}
.shop_mv .thumb img {
  position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.shop_mv .mv_thumb {
  margin: 10px -3px 0;
}
.shop_mv .mv_thumb .slick-list {
    padding: 0 !important;
}
.shop_mv .mv_thumb .item {
  margin: 0 3px;
  opacity: .4;
}
.shop_mv .mv_thumb .item.slick-current {
  opacity: 1;
}

.shop_about {
    margin-bottom: 80px;
}


/* tablet */
@media print, screen and (min-width: 768px) {
  .lead_01.shop_name .name {
    font-size: inherit;
  }
}

/* pc */
@media print, screen and (min-width: 1200px) {
  
  .shop_mv {
    margin: 40px 0 60px;
    padding: 50px 100px 90px;
  }
  .shop_mv .lead {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .shop_mv .mv_thumb {
    margin: 12px -6px 0;
  }
  .shop_mv .mv_thumb .item {
    margin: 0 6px;
  }
  .shop_mv + .shop_about {
    padding: 0 100px;
  }
  .shop_about {
    margin-bottom: 120px;
  }
  
}


/*---------------------------------------------------------------------
	reservation
---------------------------------------------------------------------*/
.preferred_no {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}
.preferred_no + .preferred_no {
  margin-top: 10px;
}
.preferred_no .label {
    display: flex;
  align-items:center;
    gap: 20px;
  flex: 1;
}

.preferred_no .price {
    color: #9E9E9E;
}
.preferred_no select {
  width: auto;
}
.preferred_no.total {
    background: #fff8ca;
    padding: 6px;
}
.preferred_no.total .chang {
  color: red;
}
.pr_mypage {
  text-align: center;
  margin-top: 60px;
  padding: 40px 0;
  background: url("../image/line_kasuri.svg") repeat-x left top,
    url("../image/line_kasuri.svg") repeat-x left bottom;
}
.pr_mypage .ttl {
  background: url("../image/img_shi-sa-clip.png") no-repeat center top/70px;
  
      padding-top: 45px;
    margin-bottom: 25px;
}
.pr_mypage .ttl strong {
  color: var(--site_color);
  font-weight: bold;
  
  font-size: 120%;
}
.pr_mypage .lead {
  margin-bottom: 20px;
}
.pr_mypage .lead .fc { color: var(--site_color); }

/* tablet */
@media print, screen and (min-width: 768px) {}

/* pc */
@media print, screen and (min-width: 1200px) {
  
  .pr_mypage {
    padding: 60px 0;
    margin-top: 100px;
  }
  .pr_mypage .ttl {
    background-size: auto;
    font-size: 3.2rem;
    padding-top: 85px;
    margin-bottom: 40px;
  }
  .pr_mypage .ttl strong {
    font-size: 3.6rem;
  }
  .pr_mypage .lead {
    margin-bottom: 30px;
  }
  
}


/*---------------------------------------------------------------------
	login
---------------------------------------------------------------------*/
.login_box {}
.login_box .ttl {
  font-family: var(--font-base_bold);
    font-weight: bold;
    text-align: center;
  font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login_box > .lead { margin-bottom: 30px; }
.login_box form {
    text-align: center;
    background: var(--bgc_base);
    padding: 30px 20px;
}
.login_box .error_about {
    color: #cb0000;
    font-size: 1.4rem;
    margin: 0 0 20px;
    display: block;
}
.login_box .input_list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.login_box .input_list .label {
    text-align: left;
    margin-bottom: 5px;
    display: block;
    font-size: 88%;
}
.login_box .input_list input {
  border: 1px solid #ccc;
  padding: 10px;
  width: 100%;
}
.pass_form {
  position: relative;
}
.pass_form .icon_pass {
    position: absolute;
    right: 10px;
    top: 6px;
    background: url(../image/icon/icon_pass_off.svg) no-repeat 0 0/cover;
    width: 30px;
    height: 30px;
}
.pass_form .icon_pass.show {
  background-image: url(../image/icon/icon_pass_on.svg)
}
.login_box .error {
    color: #cb0000;
    font-size: 1.3rem;
  margin: 10px 0 0;
  display: block;
}
.login_box .error::before {
    content: "!";
    background: #cb0000;
    color: #fff;
    width: 20px;
    display: inline-block;
    border-radius: 50%;
    height: 20px;
    font-weight: bold;
    margin-right: 5px;
}
.login_box .btn_submit {
    color: #fff;
    text-align: center;
    background: var(--site_color);
    border: none;
    
    display: block;
    width: 80%;
    max-width: 300px;
    margin: auto;
    border-radius: 5px;
    padding: 10px;
}
.login_reset {
  font-size: 1.2rem;
  margin-top: 10px;
}
.login_reset a {}
.other_login {
    margin-top: 40px;
    border: 4px solid var(--bgc_base);
    padding: 30px 20px;
}
.other_login ul {
  width: 80%;
  max-width: 370px;
    text-align: center;
    margin: 30px auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.other_login ul a {
  display: block;
  text-decoration: none;
  padding: 10px 20px;
  color: #fff;
  background: #000;
  border-radius: 5px;
}
.other_login .google { background: #EA4335; }
.other_login .line { background: #06C755; }

.login_box .change {
    text-align: center;
    margin-top: 40px;
    border-top: 1px dotted #ccc;
    padding-top: 40px;
}
.login_box .change .lead {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.login_box .change .link {}
.login_box .change .link a {
    width: 80%;
    max-width: 452px;
    padding: 10px;
}



/* tablet */
@media print, screen and (min-width: 768px) {
  .login_box form,
  .other_login {
    padding: 40px 170px;
  }
}

/* pc */
@media print, screen and (min-width: 1200px) {
  .login_box .inner {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin: 70px 0 50px;
  }
  .login_box .inner > * {
    flex: 1;
    margin: 0;
  }
  .login_box form,
  .other_login {
    padding: 70px 90px;
  }
  .login_box .ttl {
    margin-bottom: 50px;
  }
  .other_login ul {
    gap:20px;
    margin: 50px auto 0;
  }
  .login_box form .submit {
    margin-top: 50px ! IMPORTANT;
}
}



/*---------------------------------------------------------------------
	XXX
---------------------------------------------------------------------*/


/*---------------------------------------------------------------------
  js-inview
---------------------------------------------------------------------*/
/* 管理画面で見えなくなるので…#container */
#container .js_slide_up {
  opacity: 0;
  position: relative;
  top: 50px;
}
#container .js_slide_down {
  opacity: 0;
  position: relative;
  top: -50px;
}
#container .js_slide_left {
  opacity: 0;
  position: relative;
  left: -50px;
}
#container .js_slide_right {
  opacity: 0;
  position: relative;
  right: -50px;
}
#container .js_fade {
  opacity: 0;
}


/*---------------------------------------------------------------------
	sp_bottom_menu
---------------------------------------------------------------------*/
.sp_bottom_menu {
    padding: 0 10px;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 2;
    
}
.sp_bottom_menu .sp_navi {
  display: flex;
  justify-content: space-around;
  background: #fff;
  border-radius: 6px 6px 0 0;
  box-shadow: 0 0 10px rgb(0 0 0 / 10%);
}
.sp_bottom_menu .sp_navi li {}
.sp_bottom_menu .sp_navi li a {}
.sp_bottom_menu .sp_navi li a {
    color: #000;
    text-decoration: none;
    display: block;
    font-size: 1.2rem;
  font-weight: 400;
    padding: 31px 5px 10px;
    text-align: center;
  background: no-repeat center 10px;
}
.sp_bottom_menu .sp_navi .navi_01 { background-image: url("../image/icon/sp_navi_01.svg"); }
.sp_bottom_menu .sp_navi .navi_02 {
    background-image: url(../image/icon/sp_navi_02.svg);
    background-position: center 9px;
    background-size: 22px;
}
.sp_bottom_menu .sp_navi .navi_03 {
    background-image: url(../image/icon/sp_navi_03.svg);
    background-position: center 8px;
    background-size: 24px;
  position: relative;
}
.sp_bottom_menu .sp_navi .navi_03::before {
    content: "";
    position: absolute;
    top: -33px;
    left: -4px;
    width: 47px;
    height: 30px;
    background: url(/image/icon/fukidashi_new.svg) no-repeat 0 0 / cover;
  animation: bikkuri01 2.3s both infinite;
}
@keyframes bikkuri01 {
  100%,
    60%,
    35%,
    25%,
    0% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-10px);
    }
    40% {
        transform: translateY(-5px);
    }
}
.sp_bottom_menu .sp_navi .navi_04 {
    background-image: url(../image/icon/sp_navi_04.svg);
    background-size: 21px;
    background-position: center 8px;
}
.sp_bottom_menu .sp_navi .navi_05 { background-image: url("../image/icon/sp_navi_05.svg"); }
.sp_bottom_menu .sp_navi .navi_06 {
    background-image: url(../image/icon/sp_navi_06.svg);
    background-size: 22px;
    background-position: center 8px;
}
.sp_bottom_menu .sp_navi .navi_07 {
  background-size: 22px;
  background-image: url("../image/icon/sp_navi_07.svg"); }
.sp_bottom_menu .sp_navi .navi_08 {
  background-size: 22px;
  background-image: url("../image/icon/g_navi_06.svg"); }


/* 表示箇所が違うもの調整 */
.dir_top .sp_bottom_menu.footer {
    display: none;
}

/* pc */
@media print, screen and (min-width: 1200px) {
  .sp_bottom_menu { display: none; }
}


/*---------------------------------------------------------------------
	page_scroll
---------------------------------------------------------------------*/
#page_scroll_navi {
    position: absolute;
    z-index: 1;
    left: 50%;
    top: -50px;
    margin-left: -50px;
}
#page_scroll_navi a {
    display: block;
    background: var(--site_color);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}
#page_scroll_navi.fixed {
  position: fixed;
  top: auto;
  bottom: 70px;
}

/* pc */
@media screen and (min-width: 1200px) {
}

/*---------------------------------------------------------------------
	site_footer
---------------------------------------------------------------------*/
.site_footer {
  
    background: var(--bgc_base);
    text-align: center;
    border-top: 1px solid #BFBFBF;
    margin-top: 80px;
    position: relative;
}
.site_footer .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 30px 50px;
}


.footer_navi_01 {
    display: flex;
    flex-wrap: wrap;
    gap: 0 10px;
}

.footer_navi_01 li {
    width: calc(50% - 5px);
}

.footer_navi_01 a {
    display: block;
    text-align: left;
    color: #000;
    font-size: 1.6rem;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--site_color);
    background: url(../image/icon/icon_kasuri.svg) no-repeat 3px center;
    padding: 9px 9px 9px 24px;
}

.footer_navi_02 {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer_navi_02 a {
    display: block;
    text-decoration: none;
    font-weight: 500;
    color: #000;
    font-size: 1.4rem;
}

.footer_sns {
    display: flex;
    justify-content: center;
    gap: 0 10px;
}
.footer_sns a {
    background: var(--bgc_base_02);
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.copyright {
    color: #fff;
    font-size: 1.1rem;
    text-align: center;
    background-color: var(--site_color);
    padding: 20px 10px;
}

/* pc */
@media print, screen and (min-width: 1200px) {
  .site_footer {
    margin-top: 250px;
  }
  .site_footer .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 70px 30px 30px;
    box-sizing: content-box;
  }
.footer_menu_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    margin-top: 40px;
}
p.footer_logo img {
    width: auto;
}
.footer_navi_02 {
    flex-direction: row;
    gap: 30px;
    margin: 0;
}

.footer_sns {
    margin: 0;
    gap: 20px;
}

.footer_sns a {
    width: 50px;
    height: 50px;
}

.footer_navi_01 {
    max-width: 465px;
    gap: 0 20px;
}

.footer_menu {
    display: flex;
    flex-direction: column;
    align-items: end;
}

.footer_navi_01 li {
    width: calc(50% - 10px);
}

p.footer_logo img {
    width: 158px;
}

.copyright {
    font-size: 1.8rem;
    padding: 16px;
}
  
}

