@charset "euc-jp";

body {
  background-color: #fff;
  background-image: url();
  color: #464e54;
}
a {
  color: #464e54;
}
a:hover {
  color: #5e5e5e;
}
ol, ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
/*
 * layout
 */
#wrapper {
  max-width: 1000px;
}
.container {
  padding: 5px;
}
/* gnavi */
.gnavi img {
  width: 20px;
  height: 20px;
}
.gnavi .g_line {
  width: 64px;
  height: 20px;
}

/*.gnavi {
  margin:0 auto;
}
.gnavi_lists {
  display: flex;
}
.gnavi_list {
  width: 3%;
  height: 24px;
  background-color: #fff;
  position: relative;
  transition: all .3s;
}
.gnavi_list:hover {
  background-color: #165e83;
}
.gnavi_list:not(:first-child)::before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  transition: all .3s;
}
.gnavi_list:hover::before {
    background-color: #0071BB;
}
.gnavi_list a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #1b4059;
  font-size: 15px;
  letter-spacing: 0.05em;
  transition: all .3s;
}
.gnavi_list:hover a {
  color: #fff;
}
.dropdown_lists {
  display: none;/*デフォルトでは非表示の状態にしておく*/
  width: 100%;
  position: absolute;
  top: 60px;
  left: 0;
}
.gnavi_list:hover .dropdown_lists {
  display: block;/*Gナビメニューにホバーしたら表示*/
}
.dropdown_list {
  background-color: #004d80;
  height: 40px;
  transition: all .3s;
  position: relative;
}
.dropdown_list:not(:first-child)::before{
  content: "";
  width: 100%;
  height: 1px;
  background-color: #3492d1;
  position: absolute;
  top: 0;
  left: 0;
}
.dropdown_list:hover {
  background-color: #003558;
}
.dropdown_list a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  position: relative;
}
.dropdown_list a::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(135deg);
  position: absolute;
  right: 15px;
  top: calc(50% - 5px);
}*/
/* ここまでgnavi */

/*
 * contents
 */

#contents {
  float: right;
  padding-left: 30px;
}

#contents .topicpath-nav {
  margin-bottom: 5px;
}
  #contents .topicpath-nav li {
    padding: 0;
  }
  #contents .topicpath-nav a {
    margin-left: 5px;
  }
  #contents .cat_link p {
    text-align: right;
    text-decoration: underline;
  }
  #contents .cat_link img {
    vertical-align: bottom;
    width: 20%;
  }

/*
 * side
 */

#side .unstyled img {
  display: block;
  margin-bottom: 5px;
}
 

/*
 * temp
 */

/* font */
.txt_l { text-align: left; }
.txt_c { text-align: center; }
.txt_r { text-align: right; }
.txt_fwn { font-weight: normal; }
.txt_fwb { font-weight: bold; }
.txt_10 { font-size: 10px; }
.txt_12 { font-size: 12px; }
.txt_14 { font-size: 14px; }
.txt_16 { font-size: 16px; }
.txt_18 { font-size: 18px; }
.txt_20 { font-size: 20px; }
.txt_24 { font-size: 24px; }
.txt_28 { font-size: 28px; }
.txt_c_333 {color: #333;}

/* background */
.bgc_gray {
  background-color: #f1f1f1;
}

/* margin */
.mar_auto { margin: 0 auto; }
.mar_0 { margin: 0; }
.mar_t_0 { margin-top: 0; }
.mar_r_0 { margin-right: 0; }
.mar_b_0 { margin-bottom: 0; }
.mar_l_0 { margin-left: 0; }
.mar_5 { margin: 5px; }
.mar_t_5 { margin-top: 5px; }
.mar_r_5 { margin-right: 5px; }
.mar_b_5 { margin-bottom: 5px; }
.mar_l_5 { margin-left: 5px; }
.mar_t_10 { margin-top: 10px; }
.mar_r_10 { margin-right: 10px; }
.mar_b_10 { margin-bottom: 10px; }
.mar_l_10 { margin-left: 10px; }
.mar_t_20 { margin-top: 20px; }
.mar_r_20 { margin-right: 20px; }
.mar_b_20 { margin-bottom: 20px; }
.mar_l_20 { margin-left: 20px; }
.mar_t_30 { margin-top: 30px; }
.mar_r_30 { margin-right: 30px; }
.mar_b_30 { margin-bottom: 30px; }
.mar_l_30 { margin-left: 30px; }
.mar_t_50 { margin-top: 50px; }
.mar_r_50 { margin-right: 50px; }
.mar_b_50 { margin-bottom: 50px; }
.mar_l_50 { margin-left: 50px; }

/* padding */
.pad_v_10 { padding: 10px 0; }
.pad_v_20 { padding: 20px 0; }
.pad_v_30 { padding: 30px 0; }
.pad_0 { padding: 0; }
.pad_t_0 { padding-top: 0; }
.pad_r_0 { padding-right: 0; }
.pad_b_0 { padding-bottom: 0; }
.pad_l_0 { padding-left: 0; }
.pad_5 { padding: 5px; }
.pad_t_5 { padding-top: 5px; }
.pad_r_5 { padding-right: 5px; }
.pad_b_5 { padding-bottom: 5px; }
.pad_l_5 { padding-left: 5px; }
.pad_10 { padding: 10px; }
.pad_t_10 { padding-top: 10px; }
.pad_r_10 { padding-right: 10px; }
.pad_b_10 { padding-bottom: 10px; }
.pad_l_10 { padding-left: 10px; }
.pad_20 { padding: 20px; }
.pad_t_20 { padding-top: 20px; }
.pad_r_20 { padding-right: 20px; }
.pad_b_20 { padding-bottom: 20px; }
.pad_l_20 { padding-left: 20px; }
.pad_30 { padding: 30px}
.pad_t_30 { padding-top: 30px; }
.pad_r_30 { padding-right: 30px; }
.pad_b_30 { padding-bottom: 30px; }
.pad_l_30 { padding-left: 30px; }

/* border */
.bor_t_1 { border-top: 1px solid #eee; }
.bor_r_1 { border-right: 1px solid #eee; }
.bor_b_1 { border-bottom: 1px solid #eee; }
.bor_l_1 { border-left: 1px solid #eee; }

/* vertical align */
.va-10 { vertical-align: -10%; }
.va-20 { vertical-align: -20%; }
.va-30 { vertical-align: -30%; }
.va-35 { vertical-align: -35%; }
.va-40 { vertical-align: -40%; }

@media (max-width: 980px) {
  /* ~980px */
  #base_gmoWrapp,
  #gmo_CMSPbar {
    overflow: hidden;
    min-width: 100% !important;
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  /* ~768px */
  #contents {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 480px) {
  /* ~480px */
}

/*
 * icons
 */
.icon-user { background-position: -208px 0px; }
.icon-lg-b.icon-user { background-position: -312px 0px; }
.icon-adduser { background-position: -240px 0px; }
.icon-lg-b.icon-adduser { background-position: -360px 0px; }
.icon-login { background-position: -48px -80px; }
.icon-lg-b.icon-login { background-position: -72px -120px; }
.icon-logout { background-position: -32px -80px; }
.icon-lg-b.icon-logout { background-position: -48px -120px; }
.icon-home { background-position: -176px -16px; }
.icon-lg-b.icon-home { background-position: -264px -24px; }
.icon-mail { background-position: -64px 0px; }
.icon-lg-b.icon-mail { background-position: -96px 0px; }
.icon-pencil { background-position: -96px 0px; }
.icon-lg-b.icon-pencil { background-position: -144px 0px; }
.icon-help { background-position: -272px -80px; }
.icon-lg-b.icon-help { background-position: -408px -120px; }
.icon-cart { background-position: -176px -64px; }
.icon-lg-b.icon-cart { background-position: -264px -96px; }
.icon-search { background-position: -208px -16px; }
.icon-lg-b.icon-search { background-position: -312px -24px; }
.icon-chevron_up { background-position: -0px -144px; }
.icon-lg-b.icon-chevron_up { background-position: -0px -216px; }
.icon-chevron_down { background-position: -352px -128px; }
.icon-lg-b.icon-chevron_down { background-position: -528px -192px; }
.icon-twitter { background-position: -96px -176px; }
.icon-lg-b.icon-twitter { background-position: -144px -264px; }
.icon-instagram { background-position: -112px -192px; }
.icon-lg-b.icon-instagram { background-position: -168px -288px; }
.icon-facebook { background-position: -128px -176px; }
.icon-lg-b.icon-facebook {background-position: -192px -264px; }
.icon-youtube { background-position: -128px -160px; }
.icon-lg-b.icon-youtube { background-position: -191px -240px; }

.icon-b,
.icon-w {
  width: 16px;
  height: 16px;
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
.icon-lg-b,
.icon-lg-w {
  width: 24px;
  height: 24px;
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

.icon-b { background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon16_b.png); }
.icon-w { background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon16_w.png); }
.icon-lg-b { background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon24_b.png); }
.icon-lg-w { background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon24_w.png); }

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .icon-b,
  .icon-w {
    -webkit-background-size: 368px 320px;
    background-size: 368px 320px;
  }

  .icon-lg-b,
  .icon-lg-w {
    -webkit-background-size: 552px 480px;
    background-size: 552px 480px;
  }

  .icon-b { background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon16_2x_b.png); }
  .icon-w { background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon16_2x_w.png); }
  .icon-lg-b { background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon24_2x_b.png); }
  .icon-lg-w { background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon24_2x_w.png); }
}
@media (max-width: 768px) {
  .icon-b { background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon24_b.png); }
  .icon-w { background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon24_w.png); }
}
@media only screen and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-width: 768px) and (min--moz-device-pixel-ratio: 2), only screen and (max-width: 768px) and (-o-min-device-pixel-ratio: 2 / 1), only screen and (max-width: 768px) and (min-device-pixel-ratio: 2), only screen and (max-width: 768px) and (min-resolution: 192dpi), only screen and (max-width: 768px) and (min-resolution: 2dppx) {
  .icon-b { background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon24_2x_b.png); }
  .icon-w { background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon24_2x_w.png); }
}

/* 2022/09/21〜編集 */
/***追従するトップへ戻るボタン***/
#page-top {
  z-index: 4;
  position: fixed;
  right: 10px;
  bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.2rem;
  background: #fff;
  color: #0f2350;
  opacity: 0.6;
  padding: 10px;
  border: solid 1px;
  border-radius: 50%;
  box-shadow: 0 2px 10px -6px rgba(0,0,0,.5), 0 3px 10px -4px rgba(0,0,0,.2);
  text-decoration: none;
}
.dli-chevron-up {
  display: inline-block;
  vertical-align: middle;
  color: #0f2350;
  line-height: 1;
  width: 1em;
  height: 1em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(25%) rotate(-45deg);
}
/***トップへ戻るボタンここまで***/
/* slider_dot */
.slide-dots {
  margin: 0;
  padding: 0;
  text-align: center;
}
.slide-dots li {
  display: inline-block;
  margin: 0 10px;
}
.slide-dots li button {
  position: relative;
  text-indent: -9999px;
}
.slide-dots li button::before {
  background-image: url(https://img13.shop-pro.jp/PA01281/601/etc/dots_off.png);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  cursor: pointer;
  height: 13.5px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 24px;
  width: 13.5px;
}
.slide-dots li.slick-active button::before {
  background-image: url(https://img13.shop-pro.jp/PA01281/601/etc/dots.png);
}
button {
  background: none;
  border: none;
  outline: none;
  padding: 0 5px;
}
/* ここまでslider_dot */
/* image */
#image {
  text-align: center;
}
#image img {
  width: 97%;
  margin: 0;
  padding: 0 0 3px 0;
  border-radius: 25px;
}
/* category,banners */
#banners .slide01 {
  float: left;
  width: 49.5%;
  margin: 0;
}
#banners .slide02 {
  width: 49.5%;
  margin-left: auto;
}
#banners img {
  padding: 0;
  border-radius: 25px;
}
#banners_vertical img {
  margin: 0 0 10px 0;
}
#category li, #info li {
  text-align: center;
  margin: 0 0 4px 0;
  padding: 4px 0 0 0;
}
#category table {
  margin: 0 0 20px 0;
  border-collapse: separate;
  border-spacing: 4px;
}
#category td {
  position: relative;
  padding: 0;
}
#category .td_1, .td_2, .td_3{
  width: 30%;
}
#category .square {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  z-index: 1;
}
#category .triangle {
  border-bottom: 50px solid #083674; /* 高さ */
  border-right: 50px transparent; /* 左辺の長さ */
  border-left:  50px solid transparent; /* 右辺の長さ */
  position: absolute;
  z-index: 2;
  right: 0px;
  bottom: 0px;
}
#category p{
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 3;
  font-size: 1em;
  font-weight: bold;
  color: #FDCB12;
  padding: 0;
  margin: 0;
}

/* category,column,serch_color,serch_location */
#category h2, #column h2, #serch_color h2, #serch_location h2 {
  text-align: center;
  color: #0f2350;
}
#column, #serch_color, #serch_location {
  text-align: center;
}
#column li, #serch_color li, #serch_location li {
  display: inline;
}
#column img {
  width: 47%;
  margin: 0;
  padding: 1%;
  border-radius: 25px;
}
#serch_location img {
  width: 25%;
  margin: 0;
  padding: 1%;
  border-radius: 25px;
}
.info {
  margin: 20px 0;
}
/* topics */
#topics {
  margin: 20px 0 0 0;
}
#topics h2 {
  margin: 0 0 15px 0;
  padding: 0 0 0 15px;
  font-size: 2em;
  font-weight: lighter;
  color: #0f2350;
  border-bottom: dashed 1px #555; 
}
#topics dt {
  margin: 20px 0 10px 0;
  padding: 0 0 0 15px;
  font-size: 1.3em;
}
#topics p {
  margin: 8px 0;
  padding: 0 0 0 15px;
  font-size: 1.2em;
}
#topics .box {
  border: #0f2350 1px solid;
  padding:10px;
}
.box p {
  margin: 0;
  padding: 0;
}
#f10_contents a {
  text-decoration: underline;
}
#topics img, #f10_contents img {
  width: 20px;
  height: 20px;
}
#topics .line, #f10_contents .line {
  width: 64px;
  height: 20px;
}
#topics .t_img , #f10_contents .t_img{
  width: 100%;
  height: 100%;
}
/* comitted to quality */
#ctq {
  border: 1px solid;
  border-color: #0f2350;
}
#ctq h3 {
  text-align: center;
  color: #0f2350;
}
#ctq .ctq_ul {
  list-style: disc;
  padding: 0 15px 0 25px; 
}

/* group */
.cg_freespace_01 .td_l {
  width: 35%;
}
.cg_freespace_01 .td_r {
  width: 65%;
}

/* freepage common */
#f1_contents, #f2_contents, #f3_contents, #f4_contents, #f5_contents, #f6_contents, #f7_contents, #f10_contents {
  padding: 0 0 20px 0;
}
#f1_contents h2, h3, #f2_contents h2, h3, #f3_contents h2, h3, #f4_contents h2, h3, #f5_contents h2, h3, #f6_contents h2, h3, #f7_contents h2, h3, #f8_contents h2, h3, #f10_contents h2 {
  text-align: center;
  color: #0f2350;
}
#f1_contents h3, #f2_contents h3, #f3_contents h3, #f4_contents h3, #f5_contents h3, #f6_contents h3, #f7_contents h3, #f8_contents h3 {
  margin: 40px 0 16.38px 0;
}
#f10_contents h3 {
  text-align: left;
  margin: 0;
  font-size: 1em;
  color: #cc0000;
}
#f10_contents h4, #f10_contents p {
  margin: 0;
}

/* freepage f1 */
.post-fig01 {
  margin: 0 0 10px 0;
  width: 100%;
}
.post-fig02 {
  text-align: center;  
}
.clearfix::after {
  content: "";
  clear: both;
  display: block;
}
.post-fig03, .post-fig04, .post-fig05, .post-fig06, .post-fig07 {
  float: left;
}
.post-fig03, .post-fig04, .post-fig05, .post-fig06, .post-fig07 {
  width: 229px;
  margin: 0 10px;
  padding: 0 10px 0 0;
}
#f1_contents ol {
  list-style: decimal;
  list-style-position: inside;
  margin: 0 0 0 10px;
}
.p1_p {
  text-align: center;
}
/* freepage f2 */
#f2_contents .p_img {
  text-align: center;
}
#f2_contents th {
  padding: 10px 0 5px 0;
  color: #165e83;
  width: 50%;
}
#f2_contents td {
  margin: 0;
  padding: 1px;
  vertical-align: top;
}
#f2_contents figure {
  margin: 0;
  padding: 0;
}
#f2_contents a {
  color: #165e83;
  text-decoration: underline;
}
/* freepage f3 */
#f3_contents .ta td{
  width: 50%;
}
#f3_contents .ta th{
  padding: 0;
  color: #000;
  font-weight: normal;
}
#f3_contents .ta1 caption{
  text-align: center;
  padding: 15px 0 0 0;
  font-size: 1.1em;
  font-weight: bold;
  color: #000;
}
#f3_contents .ta1 th{
  text-align: center;
  padding: 10px 0 5px 0;
  font-size: 1em;
  color: #000;
}
#f3_contents table {
  table-layout: fixed;
  margin: auto;
}
#f3_contents th {
  text-align: center;
  padding: 15px 0 5px 0;
  font-size: 1.1em;
  color: #165e83;
}
#f3_contents td {
  text-align: center;
  padding: 5px 1px;
}
#f3_contents .history {
  border-collapse:collapse;
  margin: 20px 0 20px 0;
}
#f3_contents .history th[colspan] {
  border-bottom:1px solid #165e83;
}
#f3_contents .history td.left {
  width: 20%;
  border-top:1px solid #165e83;
}
#f3_contents .history td.right {
  width: 80%;
  border-top:1px solid #165e83;
}
#f3_contents img {
  width: 100%;
}
#f3_contents .f3_p1 {
  display: block;
  margin: auto;
  width: 40%;
}
#f3_contents .f3_p2 {
  display: block;
  margin: auto;
  width: 80%
}
#f3_contents .access p {
  text-align: left;
}
#f3_contents a {
  color: #165e83;
}
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%; /* 比率を4:3に固定 */
}

/* Google Mapのiframe */
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%; /* 比率を4:3に固定 */
}
.google_map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%; /* 比率を4:3に固定 */
}
.google_map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#f4_contents img {
  width: 48%;
  margin: 0;
  padding: 1%;
}
#f5_contents p {
  margin: 8px 0;
}
#f5_contents img {
  width: 90%;
  margin: auto;
  display: block;
}
#f5_contents .line_hours {
  display: inline;
  margin: 0 0 10px 15px;
  padding: 0 6px 0 10px; 
  border: 1px solid;
  border-color: #0f2350;
  font-weight: bold;
}
/* freepage f6 */
.acd-check{ /* ラジオボタン非表示 */
    display: none;
}
.acd-label{ /* タブ */
    position: relative;
    margin-bottom: 1px;
    padding: 10px;
    display: block;
    color: #fff;
    background: #165e83;
}
.acd-label:after{
    position: absolute;
    top: 0px;
    right: 0px;
    box-sizing: border-box;
    height: auto;
    padding: 10px 20px;
    background: #0f2350;
    content: '\02228';
}
.acd-content{ /* 本文 */
    height: 0;
    padding: 0 10px;
  	overflow: hidden;
    opacity: 0;
    transition: .5s;
}
.acd-check:checked + .acd-label:after{
    content: '\0d7';
}
.acd-check:checked + .acd-label + .acd-content{
    height: auto;
    padding: 10px;
    overflow: auto;
    border: 1px solid #0f2350;
    opacity: 1;
}
#f7_contents ol{
  margin: 1em 0;
  padding-left: 40px;
  list-style-type: decimal;
}
#f7_contents hr{
  padding: 10px 0;
  border: none;
  border-top: 1px solid #0f2350;
}
#f8_contents ol{
  margin: 1em 0;
  padding-left: 40px;
  list-style-type: decimal;
}
#f8_contents .subtitle {
  font-size: 0.9em;
  font-weight: normal;
}
#f10_contents .news {
  margin: 20px;
}