@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: "ヒラギノ角ゴ W3 JIS2004",'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','ヒラギノ角ゴシック','Hiragino Sans',"メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",Arial, Helvetica,sans-serif;
  --font-base_bold: "ヒラギノ角ゴ W6 JIS2004",'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','ヒラギノ角ゴシック','Hiragino Sans',"メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",Arial, Helvetica,sans-serif;
  --font-mrs: "Mrs Saint Delafield";
  --font-mincho: "ヒラギノ明朝 W3 JIS2004","ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro";
  --font-mincho_bold: "ヒラギノ明朝 W6 JIS2004","ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro";
}
.font_mincho { font-family: var(--font-mincho); }

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

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

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

/*---------------------------------------------------------------------
	alert_box
---------------------------------------------------------------------*/
.alert_box {
  padding: 10px;
  background: #B20000;
}
.alert_box .inner {
  background: #fff;
  padding: 12px;
  border: 4px solid #FF8A92;
  max-width: 1200px;
  margin: 0 auto;
}
.alert_box .head {
  background: #B20000;
  padding: 10px;
  position: relative;
}
.alert_box .ttl {
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
}
.alert_box .link {
  position: absolute;
  right: 8px;
  top: 8px;
}
.alert_box .link a {
  color: #000;
  display: block;
  font-size: 1.5rem;
  text-decoration: none;
  text-align: center;
  background: #fff;
  border: 1px solid #BFBFBF;
  padding: 2px 20px 2px 10px;
}
.alert_box .link a::before {
  content: "";
  position: absolute;
  right: 0px;
  top: 11px;
  border: 5px solid transparent;
  border-left: 7px solid #E60011;
}

.alert_box .list {}
.alert_box .list li {}
.alert_box .list a {
  display: block;
  text-decoration: none;
  border-bottom: 1px dotted #BFBFBF;
  padding: 5px;
  padding-left: 20px;
  position: relative;
}
.alert_box .list a::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 11px;
  border: 5px solid transparent;
  border-left: 7px solid #B20000;
}
.alert_box .list .date {
  color: #707070;
  font-size: 1.4rem;
}
.alert_box .list .title {
  text-decoration: underline;
}

/* pc */
@media print, screen and (min-width: 1200px) {
  .alert_box {
    padding: 30px;
  }
  .alert_box .ttl {
    font-size: 2.4rem;
  }
  .alert_box .link a {
    width: 200px;
    padding: 6px;
    transition: .3s;
  }
  .alert_box .link a::before {
    right: 8px;
    top: 14px;
  }
  .alert_box .link a:hover {
    background: #fff4bd;
  }
  .alert_box .list a {
    display: table;
    width: 100%;
    padding: 10px 10px 10px 20px;
    transition: .3s;
  }
  .alert_box .list a:hover {
    border-bottom-color: #B20000;
    background: #fff4bd;
  }
  .alert_box .list .date {
    display: table-cell;
    vertical-align: top;
    font-size: 1.6rem;
    width: 140px;
    padding-top: 4px;
  }
  .alert_box .list .title {
    display: table-cell;
    vertical-align: top;
    font-size: 2rem;
  }
  .alert_box .list a::before {
    top: 22px;
  }
}

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

/* top */
/*--- top ---*/
.dir_top .site_header {
  position: fixed;
}
.dir_top .site_header:not(.fixed) {
  background: none;
  padding: 20px 20px;
}
.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:not(.fixed) {
    background: none;
    padding: 30px 40px;
  }
  .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 .header_login {
    color: #fff;
    font-size: 1.4rem;
    background: #134F93;
    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: #134F93;
    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: #134F93;
    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 .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 {
  /*display: none;*/
  background: #ccc;
  position: fixed;
  right: -100%;
  top: 0;
  width: 80%;
  height: 100%;
  z-index: 100;
  padding: 60px 20px 20px;
  transition: .8s;
  opacity: 0;
  max-width: 600px;
}
.site_navi .inner {
  height: 100%;
  overflow-y: scroll;
}
.site_navi .search_form {}
.close_site_navi {
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 10px;
  color: #fff;
  font-size: 4rem;
  line-height: 1;
  text-shadow: 0 0 3px rgb(0 0 0 / 50%);
}
.close_site_navi a {
  display: block;
  width: 70px;
  height: 70px;
}
.close_site_navi .line {
    position: absolute;
    left: 130%;
    top: 50%;
    width: 26px;
    margin-left: -13px;
  transition: all .5s ease .5s;
}
.close_site_navi .line::before,
.close_site_navi .line::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #008ECF;
  transition: all .3s ease 1s;
}
.close_site_navi .line::before { top: -9px; }
.close_site_navi .line::after { top: 3px; }

.site_navi.open {
  right: 0;
  opacity: 1;
}
.open .close_site_navi .line {
  left: 50%;
}
.open .close_site_navi .line::before {
    top: -3px;
    transform: rotate(-45deg);
}
.open .close_site_navi .line::after {
    transform: rotate(45deg);
    top: -3px;
}

.site_navi_links .menu_01 {
  margin-bottom: 20px;
}
.site_navi_links .menu_01 li {
  margin-bottom: 3px;
}
.site_navi_links .menu_01 li a {
  display: block;
  color: #fff;
  text-decoration: none;
  background: #00468C;
  padding: 10px;
  position: relative;
}
.site_navi_links .menu_01 li a::before {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-right: 2px solid #92DDFF;
    border-bottom: 2px solid #92DDFF;
    transform: rotate(-45deg);
    margin-top: -4px;
}

.site_navi_links .menu_02 {}
.site_navi_links .menu_02 .item {}
.site_navi_links .menu_02 .item > ul > li {
  margin-bottom: 5px;
}
.site_navi_links .menu_02 .item > ul > li > a {
  display: block;
  color: #000;
  text-decoration: none;
  border: 1px solid #92DDFF;
  padding: 10px;
  position: relative;
}
.site_navi_links .menu_02 .item > ul > li > a::before {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 2px solid #92DDFF;
  border-bottom: 2px solid #92DDFF;
  transform: rotate(-45deg);
  margin-top: -4px;
}
.site_navi_links .menu_02 .item .pull_btn::before {
  transform: rotate(45deg);
  margin-top: -6px;
  transition: .5s;
}
.site_navi_links .menu_02 .item .pull_btn.open::before {
  transform: rotate(225deg);
  margin-top: -4px;
}
.site_navi_links .menu_02 .pull_link {
  display: none;
  padding: 10px;
  background: #c7eeff;
}
.site_navi_links .menu_02 .pull_link li {}
.site_navi_links .menu_02 .pull_link li + li {
    border-top: 1px dotted #009fe8;
}
.site_navi_links .menu_02 .pull_link a {
  display: block;
  text-decoration: none;
  color: #000;
  font-size: 1.4rem;
  padding: 5px;
}

/* tablet */
@media print, screen and (min-width: 768px) {
  .site_navi { padding-top: 80px; }
  .close_site_navi a { height: 77px; }
}

/* pc */
@media print, screen and (min-width: 1200px) {
  .site_navi {
    padding: 100px 40px 40px;
  }
  .site_navi .inner {
    max-width: 1200px;
    margin: 0 auto;
    overflow: inherit;
  }
  
  .site_navi_links .menu_01 {
    display: table;
    width: 100%;
    table-layout: fixed;
  }
  .site_navi_links .menu_01 li {
    display: table-cell;
    vertical-align: top;
  }
  .site_navi_links .menu_01 li + li {
    padding-left: 5px;
  }
  .site_navi_links .menu_01 li a {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
    padding: 11px 10px 20px;
  }
  .site_navi_links .menu_01 li a:hover {
    transition: .3s;
    background-color: #FC841A;
  }
  .site_navi_links .menu_01 li a::before {
    transform: rotate(45deg);
    right: auto;
    left: 50%;
    top: auto;
    bottom: 10px;
    margin-left: -2px;
  }
  .site_navi_links .menu_01 li a:hover::before {
    border-right-color: #fff;
    border-bottom-color: #fff;
  }
  
  .site_navi_links .menu_02 {
    display: table;
    width: 100%;
    table-layout: fixed;
  }
  .site_navi_links .menu_02 .item {
    display: table-cell;
    vertical-align: top;
    padding: 0 15px;
    text-align: left;
    border-right: 1px dashed #BFBFBF;
  }
  .site_navi_links .menu_02 .item:first-child {
    padding-left: 10px;
  }
  .site_navi_links .menu_02 .item ul + ul {
    margin-top: 30px;
  }
  .site_navi_links .menu_02 .item > ul > li > a {
    border: none;
    padding: 5px;
    font-weight: 500;
  }
  .site_navi_links .menu_02 .item > ul > li > a:hover {
    transition: .3s;
    background: #f7f7da;
  }
  .site_navi_links .menu_02 .item > ul > li > a::before {
    display: none;
  }
  .site_navi_links .menu_02 .pull_link {
    display: block;
    background: none;
    padding: 0 0 0 20px;
  }
  .site_navi_links .menu_02 .pull_link li + li {
    border-top: none;
  }
  .site_navi_links .menu_02 .pull_link a {
    font-size: 1.5rem;
    padding: 2px;
  }
  .site_navi_links .menu_02 .pull_link a:hover {
    transition: .3s;
    background: #f7f7da;
  }
  
}

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

/*---------------------------------------------------------------------
	topic_path_top
---------------------------------------------------------------------*/
.topic_path_top {
  margin: 15px auto;
}
.topic_path_top > ol {
  font-size: 1.2rem;
  max-width: 1200px;
  box-sizing: content-box;
    margin: 0 auto;
  padding: 0 20px;
}
.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;
  }
}


/*---------------------------------------------------------------------
	toppage
---------------------------------------------------------------------*/
/*----- top_mv -----*/
.top_mv {
    color: #fff;
    text-align: center;
    height: 100vh;
    position: relative;
    overflow: hidden;
}
.top_slide {
  width: 100%;
}
.main_slide {
  display: none;
}
.main_slide.slick-initialized {
  display: block;
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15); /* 拡大率 */
  }
}
.add-animation {
  animation: zoomUp 15s linear 0s normal both;
}
/*.main_slide .slick-active img {
  animation: zoomUp 15s linear 0s normal both;
}*/

.top_mv .inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.top_mv .logo {
  margin-bottom: 30px;
}
.top_mv .lead {
    font-weight: 500;
  font-family: var(--font-mincho_bold);
    font-size: 1.8rem;
    text-shadow: 1px 1px 0 rgb(0 0 0 / 87%);
  letter-spacing: 3px;
  /*margin-bottom: 35%;*/
}

/* tablet */
@media print, screen and (min-width: 768px) {
  .top_mv { height: auto; }
  .top_mv .lead {
    font-size: 2.2rem;
    letter-spacing: 10px;
    font-weight: normal;
  }
}

/* pc */
@media print, screen and (min-width: 1200px) {
  .top_mv {
    height: auto;
    max-height: 100vh;
    background-image: url(../image/top/mv_pc.jpg);
  }
  .top_mv .logo { margin-bottom: 40px; }
  .top_mv .logo img {
    width: 110px;
  }
  .top_mv .lead {
    font-size: 3.2rem;
    letter-spacing: 15px;
  }
}
/* pc */
@media print, screen and (min-width: 1920px) {
  .top_mv .logo { margin-bottom: 60px; }
  .top_mv .logo img {
    width: 164px;
  }
  .top_mv .lead {
    font-size: 4.6rem;
  }
}

/*----- top_共通 -----*/
.top_ttl {
  font-weight: normal;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 20px;
}
.top_ttl.type_02 {
  flex-direction: row-reverse;
}
.top_ttl .jp {
  color: #044995;
  font-family: var(--font-mincho);
  /*font-size: 3.4rem;*/
  font-size: clamp(26px, 8vw, 90px);
  line-height: 1;
  font-weight: normal;
}
.top_ttl .en {
  color: #ABABAB;
  font-size: clamp(13px, 3.5vw, 46px);
  font-family: var(--font-mrs);
  display: flex;
  align-items: center;
  gap: 10px;
}
.top_ttl .en img { display: none; }

/* tablet */
@media print, screen and (min-width: 768px) {
  .top_ttl .jp {
    /*font-size: 9rem;*/
    font-size: clamp(34px, 5vw, 90px);
  }
  .top_ttl .en {
    gap: 20px;
  }
}

/* pc */
@media print, screen and (min-width: 1200px) {
  
  .top_ttl {
    margin-bottom: 80px;
  }
  
  
}


/*----- top_post -----*/
.top_post {
  margin: 20px auto 70px;
  padding: 0 20px;
}
.top_post .top_ttl .en {
  padding: 8px 62px 8px 0;
  background: url(/image/top/img_book.svg) no-repeat right center/50px;
}
.top_post .list {
  margin: 0 -20px 30px -10px;
}
.top_post .slick-list {
  padding: 0 20% 0 0!important;
}
.top_post .list .item {
    margin: 0 10px;
}
.top_post .list .item a {
  color: #000;
  text-decoration: none;
  display: block;
}
.top_post .list .item .thumb {
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
  border-radius: 0 20px 0 20px;
  padding-bottom: 73%;
}
.top_post .list .item .thumb img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top_post .list .item .icon_pr {
  font-family: var(--font-mincho);
    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;
}
.top_post .list .item .detail {}
.top_post .list .item .detail_sub {
  color: #044995;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.top_post .list .item .cat {
  font-size: 1.2rem;
  font-family: var(--font-mincho_bold);
  font-weight: bold;
}
.cat_eat {
    background: url(../image/icon/cat_eat.svg) no-repeat 0 2px / auto 16px;
    padding-left: 17px;
}
.cat_watch {
  background: url("../image/icon/cat_watch.svg") no-repeat 0 2px / auto 14px;
  padding-left: 17px;
}
.cat_meet {
    background: url(../image/icon/cat_meet.svg) no-repeat 0 4px / auto 11px;
    padding-left: 22px;
}
.cat_buy {
    background: url(../image/icon/cat_buy.svg) no-repeat 0 0px / auto 18px;
    padding-left: 20px;
}
.cat_specials {
    background: url(../image/icon/cat_specials.svg) no-repeat 0 2px / auto 13px;
    padding-left: 16px;
}
.top_post .list .item .date {
  font-size: 1rem;
}
.top_post .list .item .ttl {
  font-size: 1.4rem;
  font-family: var(--font-mincho_bold);
}
.top_post .list .item .tag {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.top_post .list .item .tag a {
    font-size: 1rem;
    border: 1px solid #ccc;
    padding: 4px 10px;
    border-radius: 5px;
  font-family: var(--font-note);
}
.slick-arrow {
    background: #fff;
    border: 1px solid #044995;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  position: absolute;
    top: 20%;
  z-index: 1;
  opacity: 0.8;
}
.slick-arrow:hover { opacity: 1; }
.slick-arrow.top_slide_next { right: 0; }
.slick-arrow.top_slide_prev { left: 0; }

/* tablet */
@media print, screen and (min-width: 768px) {
  .slick-arrow {
    width: 60px;
    height: 60px;
  }
  .top_post .top_ttl .en {
    padding: 10px 100px 10px 0;
    background-size: 80px;
  }
}

/* tablet */
@media print, screen and (min-width: 1024px) {
  .cat_eat {
    background-size: auto 25px;
    padding-left: 23px;
  }
  .cat_watch {
    padding-left: 32px;
    background-size: auto 25px;
    background-position: 0 0;
  }
  .cat_meet {
    background-size: auto 22px;
    padding-left: 41px;
    background-position: 0 0;
  }
  .cat_buy {
    background-size: auto 25px;
    padding-left: 30px;
  }
  .cat_specials {
    background-size: auto 22px;
    padding-left: 26px;
    background-position: 0 0;
}
}

/* pc */
@media print, screen and (min-width: 1200px) {
  .top_post {
    margin: 80px 0 160px;
    padding: 0 60px;
  }
  .top_post .top_ttl .en {
    padding: 16px 150px 16px 0;
    background-size: 130px;
  }
  .top_post .list {
    margin: 0 -60px 60px;
  }
  .slick-arrow {
    width: 80px;
    height: 80px;
  }
  .slick-arrow.top_slide_prev {
    left: 20px;
  }
  .slick-arrow.top_slide_next {
    right: 20px;
  }
  .top_post .list .item .thumb { margin-bottom: 15px; }
  .top_post .list .item .detail_sub {
    margin-bottom: 15px;
  }
  .top_post .list .item .cat {
    font-size: 1.6rem;
  }

  .top_post .list .item .date {
      font-size: 1.5rem;
  }

  .top_post .list .item .ttl {
      font-size: 1.8rem;
  }

  .top_post .list .item .tag a {
      font-size: 1.4rem;
  }

  .top_post .list .item .tag {
      gap: 10px;
  }
}
/* pc */
@media print, screen and (min-width: 1920px) {
  .top_post .top_ttl .en {
    padding: 26px 180px 26px 0;
    background-size: 160px;
  }
}

/*----- top_recommend -----*/
.top_recommend {
  padding: 20px;
  margin-bottom: 30px;
  background: linear-gradient(#eff8f7 0%, #eff8f7 75.52%, #fff 100%);
}
.top_recommend .top_ttl .en {
  padding: 9px 0 9px 41px;
  background: url(/image/top/img_flower.svg) no-repeat left center/35px;
}
.top_recommend .list { margin-bottom: 20px; }
.top_recommend .list .item {
  margin: 0 5px;
  background: #fff;
  border-radius: 0 20px 20px 0;
  overflow: hidden;
}
.top_recommend .list .item a {
  color: #000;
  text-decoration: none;
  display: block;
}
.top_recommend .list .item > a {
    padding: 10px;
}
.top_recommend .list .item .thumb {
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
  border-radius: 0 20px 0 20px;
  padding-bottom: 73%;
}
.top_recommend .list .item .thumb img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top_recommend .list .item .detail {}
.top_recommend .list .item .ttl {
  font-size: 1.4rem;
  font-family: var(--font-mincho_bold);
}
.top_recommend .list .item .tag {
  display: flex;
  flex-wrap: wrap;
  gap:5px;
  padding: 10px;
}
.top_recommend .list .item .tag a {
      font-size: 1rem;
    border: 1px solid #ccc;
    padding: 4px 10px;
    border-radius: 5px;
  font-family: var(--font-note);
}

.top_recommend .list .slick-arrow { top: 38%; }
.top_recommend .list .slick-arrow.top_slide_prev { left: -15px; }
.top_recommend .list .slick-arrow.top_slide_next { right: -15px; }

/* tablet */
@media print, screen and (min-width: 768px) {
  .top_recommend .top_ttl .en {
    padding: 20px 0 6px 70px;
    background-size: 60px;
  }
}

/* pc */
@media print, screen and (min-width: 1200px) {
  .top_recommend {
    padding: 50px 60px 80px;
  }
  .top_recommend .top_ttl {
    margin-bottom: 20px;
  }
  .top_recommend .top_ttl .en {
    padding: 24px 0 24px 110px;
    background-size: 100px;
  }
  .top_recommend .list {
    margin: 0 -60px 70px;
  }
  .top_recommend .list .item { margin: 0 20px; }
  .top_recommend .list .item > a {
    padding: 20px;
  }
  .top_recommend .list .item .thumb img {
    margin-bottom: 20px;
  }
  .top_recommend .list .item .ttl {
    font-size: 1.8rem;
  }
  .top_recommend .list .item .tag {
    gap: 10px;
    padding: 20px;
    margin-top: 10px;
  }
  .top_recommend .list .item .tag a {
    font-size: 1.4rem;
  }
  
  /*.top_recommend .btn_01 {
    background-color: #fff;
  }*/
}
/* pc */
@media print, screen and (min-width: 1920px) {
  .top_recommend .top_ttl .en {
    padding: 38px 0 38px 140px;
    background-size: 132px;
  }
}

/*----- top_bnr -----*/
.top_bnr {
  padding: 0 15px;
  margin-bottom: 50px;
}
.top_bnr li {
  margin: 0 10px;
}

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

/* pc */
@media print, screen and (min-width: 1200px) {
  .top_bnr {
    margin: 80px 0 160px;
    padding: 0;
  }
  .top_bnr .slick-list {
    padding: 0 19% !important;
  }
  .top_bnr li {
    margin: 0 20px;
  }

}

/*----- top_explore -----*/
.top_explore {
  padding: 30px 20px 60px;
  margin-bottom: 60px;
  background: linear-gradient(#f0f0f0 0%, #f0f0f0 22.88%, #fff 35.39%, #fdfdfd 67.68%, #f0f0f0 78.2%, #f0f0f0 100%);
}
.top_explore .top_ttl {
  margin-bottom: 40px;
}
.top_explore .top_ttl .en {
  padding: 10px 58px 10px 0;
  background: url(/image/top/k0207_1.svg) no-repeat right top/56px;
}

.top_explore_block .cat_ttl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 10px;
  font-family: var(--font-mincho);
}
.top_explore_block .cat_ttl.type_02 {
  flex-direction: row-reverse;
}
.top_explore_block .cat_ttl.type_02 .en {
  text-align: left;
}
.top_explore_block .cat_ttl .jp {
  font-size: clamp(26px, 5vw, 70px);
  font-weight: normal;
  color: #044995;
}
.top_explore_block .cat_ttl.type_02 .jp {
    justify-content: end;
}
.top_explore_block .cat_ttl .en {
  color: #97B3CB;
  font-size: clamp(10px, 2vw, 26px);
  flex: 1;
  text-align: right;
  background: url("../image/icon/line_kasuri.svg") repeat-x 0 bottom;
  background-size: auto 6px;
  padding-bottom: 9px;
}

.top_explore_block {
  margin-bottom: 70px;
}
.top_explore_block .list {
  margin: 0 -20px 30px -10px;
}
.top_explore_block .slick-list {
  padding: 0 20% 0 0!important;
}
.top_explore_block .list .item {
  margin: 0 10px;
}
.top_explore_block .list .item a {
  color: #000;
  text-decoration: none;
  display: block;
}
.top_explore_block .list .thumb {
      margin-bottom: 10px;
    position: relative;
    overflow: hidden;
    border-radius: 0 20px 0 20px;
    padding-bottom: 73%;
}
.top_explore_block .list .thumb img {
  position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.top_explore_block .list .detail {}
.top_explore_block .list .ttl {
  font-size: 1.4rem;
  font-family: var(--font-mincho);
  font-weight: 500;
  margin-bottom: 12px;
}
.top_explore_block .list .detail ul {
    border: 1px solid #DADADA;
    border-radius: 5px;
    padding: 5px;
    display: flex;
    flex-wrap: wrap;
  gap:0 10px;
    background: #fff;
  font-size: 1.3rem;
  font-family: var(--font-note);
}
.top_explore_block .list .detail ul li {
  width: calc(50% - 10px);
  padding: 3px 0 3px 20px;
  background: no-repeat 2px 8px;
  border-right: 1px solid #DADADA;
}
.top_explore_block .list .detail ul li:nth-child(2n) {
  border-right: none;
}
.top_explore_block .list .detail ul .price {
  color: #135093;
  font-weight: bold;
  background-image: url("../image/icon/icon_price.svg");
  background-position: 3px 8px;
}
.top_explore_block .list .detail ul .time {
  background-image: url("../image/icon/icon_time.svg");
  background-position: 1px 8px;
}
.top_explore_block .list .detail ul .spot {
  background-image: url("../image/icon/icon_spot.svg");
  background-position: 3px 8px;
}
.top_explore_block .list .detail ul .age { background-image: url("../image/icon/icon_age.svg"); }
.top_explore_block .list .detail ul .no {
  background-image: url("../image/icon/icon_no.svg");
  background-position: 4px 8px;
}
.top_explore_block .list .tag {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 10px;
}
.top_explore_block .list .tag a {
  font-size: 1.2rem;
  color: #fff;
  background: #7698BF;
    padding: 4px 10px;
    border-radius: 5px;
  font-family: var(--font-note);
}

.top_rank.top_explore_block {
    margin-bottom: 0;
}
.top_rank .slick-list {
    padding: 0 20% 0 0!important;
}
.top_explore_block .cat_ttl .jp img {
  margin-right: 10px;
  display: none;
}

.top_explore_block.type_01 .cat_ttl .jp {
  padding-right: 70px;
  background: url(/image/top/img_wave.svg) no-repeat right center/59px;
}
.top_explore_block.type_02 .cat_ttl .jp {
  padding-left: 70px;
  background: url(/image/top/img_mountain.svg) no-repeat left center/64px;
}
.top_explore_block.type_03 .cat_ttl .jp {
  padding-right: 50px;
  background: url(/image/top/img_see.svg) no-repeat right center/46px;
}
.top_explore_block.top_rank .cat_ttl .jp {
    padding-left: 30px;
    background: url(/image/top/img_lank.svg) no-repeat left center / 25px;
}

.top_rank .list .item {
  position: relative;
  padding-top: 8px;
}
.top_rank .icon_rank {
    width: 46px;
    height: 46px;
    position: absolute;
    left: -8px;
    top: 0;
    color: #044995;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    background: url(../image/top/bg_icon_rank.svg) no-repeat 0 0/cover;
    z-index: 1;
    line-height: 1;
    font-size: 1.1rem;
    font-weight: bold;
  font-family: var(--font-mincho);
}
.top_rank .icon_rank strong {
    font-size: 2rem;
}

/* tablet */
@media print, screen and (min-width: 768px) {
  
  .top_explore .top_ttl .en {
    padding: 10px 120px 10px 0;
    background-size: 123px;
    background-position: right top -13px;
  }
  
  .top_explore .top_ttl br { display: none; }
  
  .top_explore_block .cat_ttl .jp {
    font-size: clamp(26px, 4vw, 70px);
    /*flex: 1;*/
  }
  .top_explore_block.type_01 .cat_ttl .jp {
    padding-right: 80px;
    background-size: 70px;
  }
  .top_explore_block.type_02 .cat_ttl .jp {
    padding-left: 80px;
    background-size: 74px;
  }
  .top_explore_block.type_03 .cat_ttl .jp {
    padding-right: 62px;
    background-size: 60px;
  }
  .top_explore_block.top_rank .cat_ttl .jp {
    padding-left: 42px;
    background-size: 33px;
  }
  
  .top_explore_block .cat_ttl .en {
    background-size: auto 9px;
  }
  
  
  
}

/* pc */
@media print, screen and (min-width: 1200px) {
  .top_explore {
    padding: 80px 60px;
  }
  .top_explore .top_ttl {
    margin-bottom: 110px;
  }
  .top_explore .top_ttl .en {
    padding: 27px 160px 1px 0;
    background-size: 170px;
  }
  .top_explore_block .cat_ttl {
    margin-bottom: 100px;
    gap: 20px;
  }
  
  .top_explore_block.type_01 .cat_ttl .jp {
    padding-right: 140px;
    background-size: 120px;
  }
  .top_explore_block.type_02 .cat_ttl .jp {
    padding-left: 140px;
    background-size: 124px;
  }
  .top_explore_block.type_03 .cat_ttl .jp {
    padding-right: 112px;
    background-size: 106px;
  }
  .top_explore_block.top_rank .cat_ttl .jp {
    padding-left: 65px;
    background-size: 53px;
  }


  .top_explore_block {
    margin-bottom: 130px;
  }
  
  /* type_01 */
  .top_explore_block.type_01 {}
  
  .top_explore_block.type_01 .list {
    margin: 0 0 70px;
    display: flex;
    flex-wrap: wrap;
    gap: 80px 40px;
  }
  .top_explore_block.type_01 .list .item {
    width: calc(25% - 30px);
    margin: 0;
  }
  .top_explore_block.type_01 .list .item:nth-child(1),
  .top_explore_block.type_01 .list .item:nth-child(2) {
    width: calc(50% - 20px);
  }
  .top_explore_block .list .ttl {
    font-size: 1.8rem;
    margin: 20px 0;
  }
  .top_explore_block.type_01 .list .item:nth-child(1) .ttl,
  .top_explore_block.type_01 .list .item:nth-child(2) .ttl {
    font-size: 2.6rem;
    margin: 20px 0 28px;
  }
  
  .top_explore_block .list .detail ul {
    padding: 8px;
    gap:0;
    font-size: 1.6rem;
  }
  .top_explore_block .list .detail ul li {
    width: 33.33%;
    border: none;
  }
  .top_explore_block .list .item .detail ul li { border-bottom: 1px solid #dadada; }
  .top_explore_block .list .item .detail ul li:nth-child(n+4) { border-bottom: none; }
  .top_explore_block .list .item .detail ul li:nth-child(5) { width: auto; }
  .top_explore_block .list .detail ul .price { font-size: 1.8rem; }
  
  .top_explore_block.type_01 .list .item:nth-child(1) .detail ul li,
  .top_explore_block.type_01 .list .item:nth-child(2) .detail ul li,
  .top_explore_block.type_02 .list .item:nth-child(1) .detail ul li,
  .top_explore_block.type_03 .list .item:nth-child(1) .detail ul li {
    width: auto;
    padding-right: 20px;
    border-bottom: none;
  }
  
  .top_explore_block .list .tag a {
    font-size: 1.5rem;
  }
  
  /* type_02 */
  .top_explore_block.type_02 {
    position: relative;
    margin-bottom: 160px;
  }
  .top_explore_block.type_02 .list {
    display: flex;
    margin: 0;
  }
  .top_explore_block.type_02 .list {
    display: flex;
    flex-direction: row-reverse;
    gap: 40px;
  }
  .top_explore_block.type_02 .list .item {
    margin: 0;
  }
  .top_explore_block.type_02 .list .item:nth-child(1) {
    width: 48.88%;
  }
  .top_explore_block.type_02 .list .item:nth-child(1) .ttl {
    font-size: 2.6rem;
  }
  
  .top_explore_block.type_02 .link {
    margin-top: 20px;
  }
  
  /* type_03 */
  .top_explore_block.type_03 {
    position: relative;
  }
  .top_explore_block.type_03 .list {
    display: flex;
    margin: 0;
  }
  .top_explore_block.type_03 .list {
    display: flex;
    gap: 40px;
  }
  .top_explore_block.type_03 .list .item {
    margin: 0;
  }
  .top_explore_block.type_03 .list .item:nth-child(1) {
    width: 48.88%;
  }
  .top_explore_block.type_03 .list .item:nth-child(1) .ttl {
    font-size: 2.6rem;
  }
  .top_explore_block.type_03 .link {
    margin-top: 20px;
  }
  
  
  /* top_rank */
  .top_rank .list {
    margin: 0 -70px;
  }
  .top_rank .list .item { padding-top: 18px; }
  .top_rank .icon_rank {
    width: 76px;
    height: 76px;
    font-size: 1.4rem;
    left: -15px;
}
  .top_rank .icon_rank strong {
    font-size: 4.6rem;
  }

  
}

/* pc */
@media print, screen and (min-width: 1920px) {
  
  .top_explore .top_ttl .en {
    padding: 20px 210px 20px 0;
    background-size: 220px;
    background-position: right top -22px;
  }
  .top_explore_block.type_01 .cat_ttl .jp {
    padding-right: 220px;
    background-size: 204px;
  }
  .top_explore_block.type_02 .cat_ttl .jp {
    padding-left: 230px;
    background-size: 218px;
  }
  .top_explore_block.type_03 .cat_ttl .jp {
    padding: 4px 165px 4px 0;
    background-size: 170px;
  }
  .top_explore_block.top_rank .cat_ttl .jp {
    padding: 10px 0 10px 118px;
    background-size: 96px;
  }
}


/*----- top_concept -----*/
.top_concept {
  padding: 0 20px 30%;
  margin-bottom: 60px;
  background: url("../image/top/bg_about.png") no-repeat center bottom/100%;
}
.top_concept .top_ttl .en {
  padding: 8px 0 8px 40px;
  background: url(/image/logo_map.svg) no-repeat left center/30px;
}
.top_concept .detail {
  font-family: var(--font-mincho);
    font-size: 1.4rem;
    color: #044995;
    line-height: 2;
    background: url(../image/top/img_sun.png) no-repeat right bottom/62px;
    padding-bottom: 65px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.top_concept .detail p br {
    display: none;
}
.top_concept .link { line-height: initial; }
.top_concept .link a {
  background-color: #fff;
}

/* tablet */
@media print, screen and (min-width: 768px) {
  .top_concept .top_ttl .en {
    padding: 15px 0 15px 73px;
    background-size: 60px;
  }
}

/* pc */
@media print, screen and (min-width: 1200px) {
  .top_concept {
    margin-bottom: 240px;
    padding: 0 60px 30%
  }
  .top_concept .inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .top_concept .top_ttl {
    align-items: center;
  }
  .top_concept .top_ttl .en {
    padding: 15px 0 15px 94px;
    background-size: 80px;
  }
  .top_concept .detail {
    background-size: 162px;
    font-size: 2rem;
    line-height: 3;
    padding-bottom: 30px;
  }
  .top_concept .detail p br {
    display: block;
  }
  .top_concept .link { margin-top: 40px; }
  .top_concept .link a {
    transition: opacity .3s;
  }
  .top_concept .link a:hover {
    opacity: .8;
  }
}
/* pc */
@media print, screen and (min-width: 1920px) {
  .top_concept .top_ttl .en {
    padding: 30px 0 30px 130px;
    background-size: 117px;
  }
}

/*----- top_tv -----*/
.top_tv {
  padding: 0 20px;
  margin-bottom: 70px;
}
.top_tv .top_ttl .en {
  padding: 13px 42px 13px 0;
  background: url(/image/top/img_tv.svg) no-repeat right top/36px;
}

.top_tv .list .item {
  margin: 0 5px;
}
.top_tv .list .item a {
  color: #000;
    text-decoration: none;
    display: block;
}
.top_tv .list .item .thumb {
  margin-bottom: 10px;
    position: relative;
    overflow: hidden;
    border-radius: 0 20px 0 20px;
    padding-bottom: 73%;
}
.top_tv .list .item .thumb img {
  position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.top_tv .list .item .detail {}
.top_tv .list .item .detail_sub {
  color: #044995;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.top_tv .list .item .cat {
  font-size: 1.2rem;
  font-family: var(--font-mincho_bold);
  font-weight: bold;
}
.top_tv .list .item .date {
      font-size: 1rem;
}
.top_tv .list .item .ttl {
  font-size: 1.4rem;
  font-family: var(--font-mincho_bold);
    font-weight: 500;
}
.top_tv .list .item .tag {
  margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.top_tv .list .item .tag a {
  font-size: 1rem;
    border: 1px solid #ccc;
    padding: 4px 10px;
    border-radius: 5px;
}
.top_tv .link { margin-top: 35px; }

/* tablet */
@media print, screen and (min-width: 768px) {
  .top_tv .top_ttl .en {
    padding: 13px 62px 13px 0;
    background-size: 50px;
  }
}

/* pc */
@media print, screen and (min-width: 1200px) {
  .top_tv {
    margin-bottom: 150px;
    padding: 0 60px;
  }
  .top_tv .top_ttl {
    margin-bottom: 70px;
  }
  .top_tv .top_ttl .en {
    padding: 30px 110px 20px 0;
    background-size: 90px;
  }
  
  .top_tv .list {
    margin: 0 -60px;
  }
  .top_tv .list .item { margin: 0 20px; }
  .top_tv .list .item .thumb {
    margin-bottom: 20px;
  }
  .top_tv .list .item .detail_sub {}
  .top_tv .list .item .cat {
    font-size: 1.6rem;
  }
  .top_tv .list .item .date {
    font-size: 1.4rem;
  }
  .top_tv .list .item .tag {
    gap: 10px;
    margin-top: 20px;
  }
  .top_tv .list .item .tag a {
    font-size: 1.4rem;
}
  .top_tv .list .item .ttl {
    font-size: 2rem;
  }
  .top_tv .link { margin-top: 50px; }
}

/* pc */
@media print, screen and (min-width: 1920px) {
  .top_tv .top_ttl .en {
    padding: 50px 150px 40px 0;
    background-size: 124px;
  }
}

/*----- top_link -----*/
.top_link {
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.top_link .top_ttl .en {
    padding: 10px 0 10px 60px;
    background: url(/image/top/img_cloud.svg) no-repeat left center / 54px;
}

/* tablet */
@media print, screen and (min-width: 768px) {
  .top_link .top_ttl .en {
    padding: 10px 0 10px 90px;
    background-size: 80px;
  }
}

/* pc */
@media print, screen and (min-width: 1200px) {
  .top_link .top_ttl { margin-bottom: 70px; }
  .top_link .top_ttl .en {
    padding: 10px 0 10px 130px;
    background-size: 110px;
  }
}
/* pc */
@media print, screen and (min-width: 1920px) {
  .top_link .top_ttl .en {
    padding: 29px 0 29px 190px;
    background-size: 172px;
  }
}


/*---------------------------------------------------------------------
	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;
}

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

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

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


/*--------- text -----------*/
.page_ttl {
  color: #044995;
  font-size: 2.6rem;
  font-weight: normal;
  font-family: var(--font-mincho);
  background: #F2F5FA;
  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: 30px;
    margin-bottom: 20px;
}
.dir_ttl .jp {
  color: #044995;
  font-size: 2.4rem;
  font-family: var(--font-mincho);
}
.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;
  }
  
  .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_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;
    font-family: var(--font-mincho);
  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: #044995;
    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: #044995;
  font-size: 2.2rem;
  font-family: var(--font-mincho);
  font-weight: normal;
  margin-bottom: 20px;
}
.lead_03,
.content1 h4 {
  font-size: 2rem;
  font-weight: 500;
  font-family: var(--font-mincho);
  padding-bottom: 6px;
  margin-bottom: 15px;
  border-bottom: 1px dotted #707070;
}
.lead_04,
.content1 h5 {
  font-size: 1.8rem;
  font-family: var(--font-mincho);
  font-weight: 500;
  margin-bottom: 10px;
}

.lead_05 {
    font-size: 1.8rem;
  font-family: var(--font-mincho);
}

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


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

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

.modified_date {
    color: #333;
  font-family: var(--font-mincho);
    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: #145195;
  text-decoration: none;
  font-size: 1.5rem;
  font-family: var(--font-mincho);
  text-align: center;
  display: inline-block;
  background: #F2F9FF url("../image/icon/arrow_02_blue_right.svg") no-repeat right 20px center;
  border: 1px solid #DADADA;
  border-radius: 50px;
  padding: 10px 30px;
  width: 80%;
  max-width: 260px;
}
a.btn_02 {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    padding: 1em 5em;
  border: 1px solid #044995;
    background-color: #044995;
    border-radius: 5px;
    font-family: var(--font-mincho);
    text-align: center;
}

/* 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: #044995;
    background-color: #fff;
  }
}


/*--------- 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: #F2F5FA;
  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;
  font-family: var(--font-mincho);
  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: #044995;
}
.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: #044995;
  }
}



/* .pager */
.pager {
    margin: 60px -20px;
    padding: 40px 0;
    text-align: center;
    background: #F0F0F0;
}
.pager ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.pager ul li {
  font-size: 1.1rem;
}
.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: #044995;
    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: #044995;
}
.pager li.current span {
  color: #fff;
  background: #044995;
}
.pager a:hover {
  color: #fff;
  border: 1px solid #C9C9C9;
  background: #044995;
}

/* link_prev_next */
.link_prev_next {
  text-align: center;
  max-width: 600px;
  margin: 100px auto 0;
  font-family: var(--font-mincho);
}
.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: #044995;
  border: 1px solid #044995;
}
.link_prev_next > li a:hover {
  color: #044995;
  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-family: var(--font-mincho_bold);
    font-weight: bold;
    padding-left: 30px;
  background: url(../image/top/img_lank.svg) no-repeat 0 0/23px;
}
.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: #044995;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.site_ranking .detail .cat {
  font-family: var(--font-mincho_bold);
}
.site_ranking .detail .date {}
.site_ranking .detail .ttl {
      font-size: 1.4rem;
    font-weight: normal;
  font-family: var(--font-mincho);
}
.site_ranking .detail .lead { display: none; }
.site_ranking .tag { display: none; }
.site_ranking .tag span {}



/* site_tags */
.site_tags {
    margin: 30px 0;
}
.site_tags .ttl {
    margin-bottom: 15px;
    font-size: 1.8rem;
  font-family: var(--font-mincho_bold);
    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: #F2F5FA;
    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_ranking .thumb {}
  
  
  .site_tags .ttl {
    font-size: 2.2rem;
    background-position: 0 3px;
  }
  .site_tags ul {
    padding: 20px;
  }
  .site_tags a { font-size: 1.4rem; }
}

/*---------------------------------------------------
	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 {
  font-family: var(--font-mincho);
}
.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: #6891BF;
    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: #044995;
}
/* pc */
@media print, screen and (min-width: 1200px) {
  .list_side_menu li a { transition: .3s; }
  .list_side_menu li a:hover { color: #044995;}
}

/*------サイドバナー-------*/
/* 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;
}

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

  .bnr_bottom li {
      width: calc(33.33% - 14px);
  }
  
  .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: #F2F5FA;
  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;
  font-family: var(--font-mincho_bold);
}
.progressbar li {
  color: #044995;
    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: #F2F5FA;
}
.progressbar li.active:after,
.progressbar li.complete:after {
    background-color: #044995;
}
.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: #F2F5FA;
    z-index: 1;
    position: relative;
  border: 1px solid #F2F5FA;
}

.progressbar li.active .icon{
  background: #fff;
  border-color: #044995;
}

.progressbar li.active .icon::before {
    content: "";
    width: 18px;
    height: 18px;
    background: #044995;
    position: absolute;
    left: 3px;
    top: 3px;
    border-radius: 50%;
}
.progressbar li.complete .icon {
  border-color: #044995;
  background: #044995 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: #044995;
  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 #044995;
    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: #044995;
}
.icon_required_p {
    color: #fff;
    background: #044995;
    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 #044995;
}

.spinner-container {
  margin-bottom: 15px;
}
.participants .label {
    display: flex;
    gap: 15px;
    align-items: center;
}
.participants .price {
  color: #848484;
}
.participants .price strong { font-weight: normal; }
.plan_price_total {
    display: flex;
    gap: 40px;
    align-items: center;
}
.plan_price_total #price_total {
  font-size: 2.6rem;
  margin-right: 5px;
  line-height: 1;
}
.mail_form .tax {
    font-size: 80%;
    margin-left: 5px;
    color: #848484;
}

.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: #044995;
    border: none;
    font-size: 1.3rem;
    border-radius: 5px;
    width: 80%;
    max-width: 304px;
  font-family: var(--font-mincho);
}
.mail_form input[type="submit"]:hover {
  background-color: #055FAD;
}
.mail_form input[type="reset"],
.mail_form input.back {
  color: #044995;
    background: none;
    border: none;
    text-decoration: underline;
    padding: 3px;
  font-family: var(--font-mincho);
}
.mail_form input[type="reset"]:hover,
.mail_form input.back:hover {
  background: none;
}
a.btn_backhome {
    color: #fff;
    padding: 1em 2em;
    background-color: #044995;
    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;
}

 
@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: #044995;
        border-radius: 8px;
    }
    .btn_checkbox:checked + label::after {
        left: 12px;
         
        width: 16px;
        height: 8px;
        margin-top: -8px;
         
        border-left: 3px solid #044995;
        border-bottom: 3px solid #044995;
         
        -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: #044995;
}
.tel_info dl dd .tel a {
  text-decoration: none;
  color: #044995;
}


/* 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;
  font-family: var(--font-mincho);
  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 #044995;
}

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

/*---------------------------------------------------------------------
	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 {
  font-family: var(--font-mincho);
    color: #fff;
    text-shadow: 0 0 5px #000;
    font-weight: normal;
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.dir_mv form {
    margin: 0 auto;
    width: 90%;
    max-width: 300px;
}
.dir_mv input,
.dir_mv select,
.dir_mv .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;
  font-family: var(--font-note);
  margin-bottom: 10px;
      display: block;
    text-decoration: none;
}
.dir_mv input::placeholder{
  color: #333;
}
.dir_mv select,
.dir_mv .btn_more_search {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("../image/icon/arrow_02_blue_bottom.svg");
}
.dir_mv input:focus,
.dir_mv select:focus{
    color: #000;
    background-color: rgb(255 255 255 / 90%);
    outline: none;
}
.dir_mv button {
    border: none;
    background: #044995;
    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: #044995;
  font-family: var(--font-mincho);
  font-weight: normal;
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.dir_mv_lead .lead {
  font-size: 1.2rem;
  font-family: var(--font-mincho);
}
.dir_mv_lead .link {
  font-family: var(--font-mincho);
  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: #044995;
  text-decoration: underline;
}

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


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

.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;
}
.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: #F2F5FA;
    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 #044995;
    border-bottom: 2px solid #044995;
    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: #044995;
    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: #F2F5FA;
    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: #044995;
  text-decoration: none;
  padding: 5px 20px;
}


.list_sort_navi {
    display: flex;
  gap: 10px;
    flex-direction: column-reverse;
    margin-bottom: 10px;
}
.list_sort_navi .left {
  font-family: var(--font-mincho);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.list_sort_navi .total {
    color: #044995;
    font-size: 1.2rem;
}
.list_sort_navi .total strong {
    font-size: 2rem;
    margin-right: 2px;
}
.list_sort_navi .sort {
    appearance: none;
    color: #145195;
    border: 1px solid #DADADA;
    border-radius: 3px;
    background: #F2F9FF url(../image/icon/arrow_02_blue_bottom.svg) no-repeat right 15px center;
    font-size: 1.3rem;
    padding: 8px 40px 8px 20px;
}
.list_sort_navi .sort:focus {
  outline: 1px solid #145195;
}
.list_sort_navi .left {}
.list_sort_navi .sort_form {
  background: #F2F9FF;
  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 button[type='submit'] {
    color: #fff;
    background: #044995;
    border: none;
    border-radius: 5px;
    font-size: 1.8rem;
    display: block;
    margin: 0 auto 10px;
    padding: 6px;
    width: 80%;
    max-width: 220px;
  font-family: var(--font-mincho);
}
.list_sort_navi .sort_form .reset {
    color: #000;
    background: #fff;
    font-size: 1.4rem;
  text-align: center;
    display: block;
    margin: 0 auto;
    border: none;
  border-radius: 5px;
    text-decoration: underline;
    width: 80%;
    max-width: 220px;
    padding: 9px;
  font-family: var(--font-mincho);
}

.post_list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.post_list .item {
  width: calc(50% - 5px);
  border: 1px solid #bbb;
  border-radius: 0 20px 0 20px;
  padding: 10px;
  background: #fff;
}
.post_list .item a {
  display: block;
  color: #000;
  text-decoration: none;
}
.post_list .thumb {
  position: relative;
  overflow: hidden;
  padding-bottom: 73%;
  border-radius: 0 20px 0 20px;
  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 {
  font-family: var(--font-mincho);
    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 {
  color: #044995;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.post_list .cat {
  font-size: 1.2rem;
  font-family: var(--font-mincho_bold);
  font-weight: bold;
}
.post_list .date {
  /*font-size: 1.2rem;*/
  font-size: 1rem;
}
.post_list .ttl {
  font-family: var(--font-mincho_bold);
  font-size: 1.4rem
}
.post_list .ttl.fc_blue {
  color: #044995;
}
.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;
    font-family: var(--font-note);
}

/* post_search_word */
.post_search_word {
    position: sticky;
    top: 0;
    left: 0;
    background: #f2f5fa;
    padding: 15px;
    z-index: 20;
    margin: 0 0 15px;
}
.post_search_word .word {
    border: 1px solid #ccc;
    border-radius: 35px;
    padding: 10px 25px 10px 45px;
    background: #fff url("../image/icon/icon_search_01.png") no-repeat left 15px center/ 16px;
    font-size: 1.4rem;
    color: #333;
}

/* .dir_search */
.dir_search {
    background: #eee;
    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: #6891BF;
    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_blue_bottom.svg") no-repeat right 15px center;
}
.dir_search input:focus,
.dir_search select:focus {
  outline: 1px solid #6891BF;
}
.dir_search .submit_btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  margin-top: 10px;
}
.dir_search .submit {
  color: #fff;
  background: #044995;
  width: 90%;
}

/* tablet */
@media print, screen and (min-width: 768px) {
  /* list */
  .post_list {
    gap: 20px;
  }
  .post_list .item {
    padding: 15px;
    width: calc(33.33% - 14px);
  }
  .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;
    font-family: var(--font-mincho);
  }
  
  .dir_mv {}
  .dir_post .dir_mv {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .dir_mv_slide .item {
    height: 90vh;
    max-height: 800px;
  }
  .dir_mv .ttl {
    font-size: 3rem;
  }
  .dir_mv form {
    max-width: 360px;
  }
  .dir_mv input,
  .dir_mv select,
  .dir_mv .btn_more_search {
    font-size: 1.8rem;
    padding: 12px;
  }
  .dir_mv select {
    cursor: pointer;
    background-position: right 20px center;
  }
  .dir_mv button {
    font-size: 1.8rem;
    font-family: var(--font-mincho);
    padding: 12px;
    transition: opacity .3s;
  }
  .dir_mv 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;
  }
  
  
  .dir_post .top_post {
    margin-bottom: 80px;
  }
  
  .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: 5px;
}
  .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,
  .list_sort_navi .sort_form button[type='submit'],
  .list_sort_navi .sort_form .reset {
    max-width: none;
    width: auto;
    flex: 1;
    margin: 0;
    /*height: 40px;*/
        font-size: 1.6rem;
  }
  .list_sort_navi .sort_form .reset {
    font-size: 1.4rem;
  }
  
  /* list */
  .post_list {
    gap: 40px;
  }
  .post_list .item {
    padding: 20px;
    width: calc(33.33% - 27px);
  }
  .post_list.pc_4column .item {
    width: calc(25% - 30px);
  }
  .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) {
  .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;
  font-family: var(--font-mincho);
  background: linear-gradient(#f2f5fa 0%, #fff 75.71%, #fff 100%);
  padding: 30px 20px 20px;
  margin: 0 -20px 0;
}
.post_detail_head .cat {
  color: #044995;
  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 img {
    width: 100%;
}
.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;
  font-family: var(--font-mincho);
    color: #333;
  margin-bottom: 30px;
}
.table_of_contents {
    background: #F0F0F0;
    padding: 50px 30px 30px;
    position: relative;
    margin-top: 50px;
  font-family: var(--font-note);
}
.table_of_contents .ttl {
    position: absolute;
    left: 20px;
    top: -25px;
    margin: 0;
    padding: 10px 35px;
    background: #6891BF;
    color: #fff;
    font-size: 1.4rem;
}
.table_of_contents ul {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.btn_clip a {
    position: fixed;
    right: 0;
    bottom: 80px;
    padding: 45px 10px 10px 15px;
    color: #044995;
    font-weight: bold;
    text-decoration: none;
    background: #F4FBFF 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;
  font-family: var(--font-note);
}
* + .article_wrap {
    margin-top: 60px;
}
.article_wrap img {
  width: 100%;
}

.article_related {
  margin-top: 40px;
}
.article_related .ttl {
  color: #044995;
  font-size: 1.6rem;
  font-weight: bold;
  font-family: var(--font-mincho);
  border-bottom: none;
  padding: 0;
  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;
}


.spot_about {
    background: #F4FBFF;
    padding: 20px;
    margin-top: 40px;
    border-radius: 0 10px 0 10px;
}
.spot_about .ttl {
  color: #044995;
  font-size: 1.6rem;
  font-weight: bold;
  font-family: var(--font-mincho);
  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: #044995;
  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: #044995;
    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: #044995;
  font-family: var(--font-mincho);
  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) {
  
  
  .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_detail_head .cat_eat {
    background-size: auto 35px;
    padding-left: 36px;
    background-position: 0 center;
}
  .post_detail_head .cat_watch {
    padding-left: 44px;
    background-size: auto 32px;
    background-position: 0 center;
}
  .post_detail_head .cat_meet {
    background-size: auto 32px;
    padding-left: 66px;
    background-position: 0 center;
}
  .post_detail_head .cat_buy {
    background-size: auto 41px;
    padding-left: 47px;
    background-position: 0 center;
}
  .post_detail_head .cat_specials {
    background-size: auto 30px;
    padding-left: 44px;
    background-position: 0 center;
}
}

/* 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;
  }
  
  
  /* 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-weight: bold;
  }
  
  /* .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: #F2F9FF;
  }
}


/*---------------------------------------------------------------------
	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;
  font-family: var(--font-mincho_bold);
  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: #044995;
    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%);
  font-family: var(--font-mincho);
}
.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: #044995;
    font-family: var(--font-mincho_bold);
    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(#eff8f7 0%, #eff8f7 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 #A9C8E3;
    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 / cover;
    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 {
  font-family: var(--font-mincho);
}

.feature_content1 { margin-bottom: 60px; }

/* 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 #A9C8E3;
  }
  .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;
  }
}


/*---------------------------------------------------------------------
	explore　体験
---------------------------------------------------------------------*/
.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: 30px 20px 70px;
}

.plan_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.plan_list .item {
    border: 1px solid #bbb;
    padding: 10px 10px 30px;
  background: #fff;
  border-radius: 0 20px 20px 0;
}
.plan_list .item a {
  color: #000;
  text-decoration: none;
  display: block;
}
.plan_list .thumb {
  position: relative;
  margin-bottom: 10px;
}
.plan_list .thumb_wrap {
    position: relative;
    overflow: hidden;
    border-radius: 0 20px 0 20px;
    padding-bottom: 73%;
  display: block;
}
.plan_list .thumb_wrap img {
  position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.plan_list .detail {}
.plan_list .ttl {
    font-size: 1.4rem;
  font-family: var(--font-mincho);
    font-weight: bold;
    margin-bottom: 15px;
}
.plan_list .cat {
    position: absolute;
    left: 10px;
    top: 10px;
    color: #044995;
  font-family: var(--font-mincho);
    font-size: 1.2rem;
    font-weight: bold;
    border: 1px solid #97B3CB;
    border-radius: 30px;
    background: #F3F6FA;
    padding: 7px 20px;
}
.plan_list .cat_001 {
  padding-right: 80px;
  background: #F3F6FA url("../image/top/img_wave.svg") no-repeat right 10px center/58px;
}
.plan_list .cat_002 {
  padding-right: 80px;
  background: #F3F6FA url("../image/top/img_mountain.svg") no-repeat right 10px center/58px;
}
.plan_list .cat_003 {
    padding-right: 52px;
    background: #F3F6FA url(../image/top/img_see.svg) no-repeat right 10px center / 36px;
}
.plan_list ul {
    border: 1px solid #DADADA;
    border-radius: 5px;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
  gap:0 10px;
}
.plan_list ul li {
  font-size: 1.3rem;
  width: calc(50% - 5px);
  background: no-repeat left 0;
  padding: 0 0 0 24px;
  border-right: 1px solid #DADADA;
}
.plan_list ul li:nth-child(2n) {
  border-right: none;
    background-position: 10px 6px;
    padding-left: 30px;
}
.plan_list ul .price {
  color: #135093;
  font-weight: bold;
  background-image: url("../image/icon/icon_price.svg");
  background-position: 3px 6px;
}
.plan_list ul .time {
  background-image: url("../image/icon/icon_time.svg");
  background-position: 1px 8px;
}
.plan_list ul .spot {
  background-image: url("../image/icon/icon_spot.svg");
  background-position: 3px 8px;
}
.plan_list ul .age { background-image: url("../image/icon/icon_age.svg"); }
.plan_list ul .no {
  background-image: url("../image/icon/icon_no.svg");
  background-position: 4px 8px;
}
.plan_list .tag {
      display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 10px;
}
.plan_list .tag a {
  font-size: 1.2rem;
    color: #fff;
    background: #7698BF;
    padding: 4px 10px;
    border-radius: 5px;
    font-family: var(--font-note);
}

.dir_play .top_rank {
  margin-top: 100px;
}


/* 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 40px;
  }
  .bg_gray .top_rank .list {
    margin: 0 -40px;
  }
  
  
  .plan_list {
    gap: 30px;
  }
  .plan_list .item {
    padding: 20px;
    width: calc(33.33% - 20px)
  }
  .plan_list .thumb {
    margin-bottom: 20px;
  }
  .plan_list .cat {
    position: relative;
    left: auto;
    top: auto;
    margin-top: 15px;
    font-size: 1.6rem;
    display: inline-block;
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .plan_list .ttl {
    font-size: 1.8rem;
  }
  .plan_list ul { gap: 0;}
  .plan_list ul li {
    font-size: 1.6rem;
  }
  .plan_list ul .price {
    font-size: 1.8rem;
  }
}

/* pc */
@media print, screen and (min-width: 1920px) {
  
  .plan_list ul {}
  .plan_list ul li {
    border-right: none;
    width: calc(33.33% - 7px);
    padding-bottom: 5px;
    background-size: auto 18px;
    border-bottom: 1px solid #DADADA;
    margin-bottom: 10px;
  }
  .plan_list ul li:nth-child(4),
  .plan_list ul li:nth-child(5) {
    width: calc(50% - 5px);
    border-bottom:none;
    margin-bottom: 0;
  }
  .plan_list ul .time { background-position: 3px 6px !important; }
  .plan_list ul .spot { padding-left: 32px; }
  .plan_list ul .age { background-position: 3px 6px !important; }
  .plan_list ul .no { background-position: 3px 6px !important; }
  
}


/* ----- explore_detail ----- */
.explore_detail {}
.explore_detail video {
  width: 100%;
}
.explore_detail .mv img {
  width: 100%;
}

.explore_detail_head {}
.explore_detail_head .cat {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 10px;
}
.explore_detail_head .cat span {
  background: #eee;
  padding: 2px 10px;
  
}
.explore_detail_head {}


.explore_contents {
    margin: 100px 0;
}
.explore_contents .item {}
.explore_contents * + .item {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px dotted #ccc;
}

.explore_about {
    background: #eee;
    padding: 30px;
}
.explore_about dl {
    display: flex;
    background: #fafafa;
    margin-bottom: 10px;
}
.explore_about dl dt {
    background: #ccc;
    width: 160px;
    text-align: center;
}
.explore_about dl dd { flex: 1; }

.explore_about .map iframe { width: 100%; }

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

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



/*---------------------------------------------------------------------
	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;
}

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

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


/*---------------------------------------------------------------------
	login
---------------------------------------------------------------------*/
.login_box {
    max-width: 800px;
    margin: 0 auto;
}
.login_box .ttl {
    font-weight: bold;
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 15px;
}
.login_box > .lead { margin-bottom: 30px; }
.login_box form {
  text-align: center;
    background: #eee;
    padding: 20px;
    border-radius: 10px;
}
.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 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_reset {
  text-align: right;
  font-size: 1.2rem;
  margin-top: 10px;
}
.login_reset a {}
.other_login {
    margin-top: 40px;
}
.other_login ul {
  width: 70%;
  max-width: 300px;
    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;
}
.other_login .google { background: #4285F4; }
.other_login .line { background: #00B900; }

.login_box .change {
    text-align: center;
    margin-top: 40px;
    border-top: 1px dotted #ccc;
    padding-top: 40px;
}
.login_box .change .lead {
  margin-bottom: 15px;
}
.login_box .change .link {}
.login_box .change .link a {
    display: inline-block;
    border: 1px solid #ccc;
    text-decoration: none;
    color: #000;
    padding: 10px;
    width: 80%;
    border-radius: 5px;
}



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

/* pc */
@media print, screen and (min-width: 1200px) {
  .login_box .inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
  }
  .login_box .inner > * {
    width: 50%;
  }
}

/*---------------------------------------------------------------------
	mypage
---------------------------------------------------------------------*/
.mypage_user {
    display: flex;
    gap: 20px;
  margin-bottom: 40px;
}
.mypage_user .thumb {
    border: 1px solid #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
  overflow: hidden;
  position: relative;
}
.mypage_user .thumb img {
  position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*width: 100%;*/
    height: 100%;
    object-fit: cover;
}

.mypage_navi {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 60px;
  margin-bottom: 40px;
}
.mypage_navi a {
  color: #000;
  text-decoration: none;
  display: block;
  padding: 10px;
  background: #eee;
  position: relative;
}
.mypage_navi a.icon_badge::after {
    content: "";
    background: red;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    position: absolute;
    right: -5px;
    top: -5px;
}

.mypage_clip {}
.mypage_clip .tab_menu {
  display: flex;
  margin: 20px -20px 20px;
}
.mypage_clip .tab_menu li { width: 50%; }
.mypage_clip .tab_menu a {
  color: #fff;
  background: #ccc;
  display: block;
  text-decoration: none;
  text-align: center;
  padding: 10px;
}
.mypage_clip .tab_menu a.on {
  color: #fff;
    background: #8C6E49;
    font-weight: bold;
}
.mypage_clip .ttl {
    text-align: center;
    margin-bottom: 30px;
}
.mypage_clip .tab_item { display: none; }
.mypage_clip .list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 20px;
}
.mypage_clip .list .item {
    width: calc(50% - 10px);
}
.mypage_clip .list .item a {
    display: block;
    text-decoration: none;
    color: #000;
}
.mypage_clip .list .thumb {
      position: relative;
    overflow: hidden;
    padding-bottom: 66.66%;
  margin-bottom: 15px;
}
.mypage_clip .list .thumb > img {
  position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mypage_clip .list .thumb button {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 40px;
    height: 40px;
    background: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mypage_clip .list .thumb button img {
  width: 20px;
}
.mypage_clip .list .detail {}
.mypage_clip .list .item_ttl {
    font-weight: normal;
    font-size: 1.6rem;
    margin-bottom: 10px;
}
.mypage_clip .list .explore {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}
.mypage_clip .list .price {}
.mypage_clip .list .spot {}
.mypage_clip .list .cat {
    gap: 5px;
    display: flex;
    flex-wrap: wrap;
}
.mypage_clip .list .cat span {
    border: 1px solid #ccc;
    font-size: 1.1rem;
    padding: 2px 10px;
}

/* clip_dialog */
.clip_dialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    background: rgb(0 0 0 / 30%);
    z-index: 100;
  display: none;
}
.clip_dialog .inner {
    background: #fff;
    position: relative;
    padding: 20px;
    border-radius: 5px;
}
.clip_dialog .close {
    position: absolute;
    right: 0;
    top: -40px;
    width: 30px;
}

/* mypage_history */
.mypage_history {}
.mypage_history .list {}
.mypage_history .list .item {
  border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
}
.mypage_history .list .status {
    background: #eee;
    text-align: center;
    padding: 10px;
    font-size: 1.2rem;
}
.mypage_history .list .status.coming {
  background: #f0f6ae;
}
.mypage_history .list .item_inner {
  display: flex;
  gap: 20px;
  padding: 20px;
}
.mypage_history .list .thumb {
  width: 120px;
}
.mypage_history .list .thumb img {}
.mypage_history .list .detail {
  flex: 1;
}
.mypage_history .list .item_ttl {
    font-size: 1.4rem;
    margin-bottom: 10px;
}
.mypage_history .list .about {
  font-size: 1.2rem;
}
.mypage_history .list .btns {
    padding: 15px 20px;
    background: #fafafa;
    display: flex;
    gap: 15px;
}
.mypage_history .list .btns li {
  flex: 1;
}
.mypage_history .list .btns a {
    display: block;
    text-decoration: none;
    background: #ccc;
    color: #000;
    text-align: center;
    padding: 10px;
    font-size: 1.3rem;
  position: relative;
}
.mypage_history .list a.icon_badge::after  {
      content: "";
    background: red;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    position: absolute;
    right: -5px;
    top: -5px
}

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

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

/*---------------------------------------------------------------------
	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;
    font-family: var(--font-mincho);
}
.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-family: var(--font-note);
  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 6px;
}
.sp_bottom_menu .sp_navi .navi_03 {
  background-image: url("../image/icon/sp_navi_03.svg");
  background-position: center 6px;
}
.sp_bottom_menu .sp_navi .navi_04 { background-image: url("../image/icon/sp_navi_04.svg"); }
.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: #044995;
    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 {
  font-family: var(--font-mincho);
    background: #F4FBFF;
    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: #044995;
    font-size: 1.6rem;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #044995;
    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: #044995;
    font-size: 1.6rem;
}

.footer_sns {
    display: flex;
    justify-content: center;
    gap: 0 40px;
    margin-bottom: 60px;
}
.footer_sns a {
    background: #567FB7;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
}

.copyright {
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
    background-color: #044995;
    padding: 20px 10px 70px;
}

/* pc */
@media print, screen and (min-width: 1200px) {
  .site_footer {
    margin-top: 250px;
  }
  .site_footer .inner {
    display: flex;
    flex-direction: row-reverse;
    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;
}

.footer_navi_02 {
    flex-direction: row;
    gap: 30px;
    margin: 0;
}

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

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

