@charset "UTF-8";

/*
-----------------------------------------
    躯体
-----------------------------------------
*/
section {
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
  padding: 0 0 1em;
}

section.section-rice {
  background: linear-gradient(180deg, rgba(0, 114, 47, 1) 0%, rgba(0, 168, 46, 1)100%);
}

section.section-laundry {
  background: linear-gradient(180deg, rgba(24, 188, 226, 1) 0%, rgba(0, 49, 117, 1)100%);
}

section.section-carwash {
  background: linear-gradient(180deg, rgba(54, 190, 173, 1) 0%, rgba(2, 92, 116, 1)100%);
}

h3 {
  box-sizing: border-box;
  width: 100%;
  text-align: center;
  line-height: 1.35em;
  font-size: 22px;
  color: #f8f8f8ff;
  padding: .5em 0 1.2em;
  text-shadow: 1px .065em 2px #132e57ff;
}

h3>span {
  display: block;
  font-size: 16px;
}

/*
==========================
    ジャンルから選ぶ
==========================
*/
section.top-section {
  background: rgba(219, 253, 255, 0.24);
}

section.top-section>h2 {
  box-sizing: border-box;
  width: 100%;
  padding: 1.2em 1.5em .8em .6em;
  font-size: 19px;
  color: #537869ff;
  text-shadow:
    0px 1px 1px #fff,
    0px 2px 2px #eee,
    0px 2px 2px #ccc;
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width:700px) {
  section.top-section>h2 {
    padding: .6em 1.5em 0 .6em;
    font-size: 16px;
  }
}

/*------- icon コイン精米 --------*/
div.top-icon-seimai:after {
  background: url("https://mikkemap.com/photo/seimai.png") no-repeat center center;
}

@supports (background-image: url("https://mikkemap.com/photo/seimai.webp")) {
  div.top-icon-seimai:after {
    background: url("https://mikkemap.com/photo/seimai.webp") no-repeat center center;
  }
}

/*----------- icon コインランドリー --------*/
div.top-icon-laundry:after {
  background: url("https://mikkemap.com/photo/icon-ld.png") no-repeat center center;
}

@supports (background-image: url("https://mikkemap.com/photo/icon-ld.webp")) {
  div.top-icon-laundry:after {
    background: url("https://mikkemap.com/photo/icon-ld.webp") no-repeat center center;
  }
}

/*----------- icon コイン洗車 --------*/
div.top-icon-carwash:after {
  background: url("https://mikkemap.com/photo/carwash.png") no-repeat center center;
}

@supports (background-image: url("https://mikkemap.com/photo/carwash.webp")) {
  div.top-icon-carwash:after {
    background: url("https://mikkemap.com/photo/carwash.webp") no-repeat center center;
  }
}

/*----------- icon 本屋さん --------*/
div.top-icon-bookstore:after {
  background: url("https://mikkemap.com/photo/bookstore.png") no-repeat center center;
}

@supports (background-image: url("https://mikkemap.com/photo/bookstore.webp")) {
  div.top-icon-bookstore:after {
    background: url("https://mikkemap.com/photo/bookstore.webp") no-repeat center center;
  }
}

/*-----------  icon ホームセンター --------*/
div.top-icon-h-c:after {
  background: url("https://mikkemap.com/photo/h-c.png") no-repeat center center;
}

@supports (background-image: url("https://mikkemap.com/photo/h-c.webp")) {
  div.top-icon-h-c:after {
    background: url("https://mikkemap.com/photo/h-c.webp") no-repeat center center;
  }
}

/*----------- icon 避難場所 --------*/
div.top-icon-bosai:after {
  background: url("https://mikkemap.com/photo/bosai.png") no-repeat center center;
}

@supports (background-image: url("https://mikkemap.com/photo/bosai.webp")) {
  div.top-icon-bosai:after {
    background: url("https://mikkemap.com/photo/bosai.webp") no-repeat center center;
  }
}

/*-------- top-icon 全般 --------*/
ul.category_menu {
  box-sizing: border-box;
  width: 100%;
  padding: 1em 1.5em;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 1em 2em;
}

ul.category_menu>li {
  box-sizing: border-box;
}

@media screen and (max-width:700px) {
  ul.category_menu {
    justify-content: center;
    padding: .8em 0 0;
    gap: .5em;
  }

  ul.category_menu>li {
    font-size: 13px;
    width: 100px;
  }
}

ul.category_menu>li>a {
  display: flex;
  flex-direction: column;
  align-items: center;
}

ul.category_menu>li>a:link,
ul.category_menu>li>a:visited {
  color: #10998f;
}

ul.category_menu>li>a:hover {
  opacity: .6;
  text-decoration: underline;
}

ul.category_menu>li>a>div {
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  border: 5px solid #018c96ff;
  box-shadow: 1px 1px 8px 0px #aaa;
  background: #fff;
}

@media screen and (max-width:700px) {
  ul.category_menu>li>a>div {
    height: 60px;
    width: 60px;
  }
}

div.top-icons:after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  background-size: cover;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  -ms-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

div.top-icons:hover:after {
  -moz-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

ul.category_menu>li>a>p {
  box-sizing: border-box;
  width: 100%;
  font-weight: 600;
  display: flex;
  justify-content: center;
  padding: .6em 0;
  white-space: nowrap;
}




/*/////////////////ここからスマホのcss////////////////////////////////*/
/*
-----------------------------------------
    新着情報 - New Arrivals -
-----------------------------------------
*/
section.department-box>h2 {
  box-sizing: border-box;
  width: 100%;
  padding: .5em .8em;
  line-height: 1.2em;
  font-size: 32px;
  font-weight: 600;
  color: #f8f8f8ff;
  text-shadow: 1px 1px 3px #888;
}

div.new-arrivals-box {
  box-sizing: border-box;
  width: 100%;
}

@media screen and (max-width:700px) {
  section.department-box>h2 {
    font-size: 20px;
    background: #007a72;
  }

  section.department-box h3 {
    font-size: 16px;
    color: #f8f8f8ff;
    padding: .95em 0 .6em;
  }

  div.new-arrivals-box {
    border-bottom: 1px solid #aaa;
  }
}

ul.new-arrivals-ul {
  box-sizing: border-box;
  width: 100%;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6em;
}

ul.new-arrivals-ul>li {
  box-sizing: border-box;
  flex-direction: column;
  overflow: hidden;
  width: 210px;
  background: #fff;
  border: 1px solid #bbb;
  border-radius: 6px;
}

@media screen and (max-width:700px) {
  ul.new-arrivals-ul {
    box-sizing: border-box;
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  ul.new-arrivals-ul>li {
    box-sizing: border-box;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    background: #fff;
    border: 1px solid #bbb;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
  }
}

ul.new-arrivals-ul>li>div {
  box-sizing: border-box;
}

/*店舗写真(サムネ) */
div.shop-img-box {
  width: 100%;
  height: 200px;
  overflow: hidden;
  margin: 0 auto;
}

div.shop-img-box>a>img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0;
  object-fit: cover;
  border: 0;
  z-index: 1;
}

div.shop-img-box>a>img:hover {
  opacity: .6;
  transform: scale(1.1, 1.1);
  transition: .6s all ease-in-out;
}

/*店舗情報欄(写真以下) */
div.shop-info-wrap {
  width: 100%;
  padding: .4em .6em;
  overflow: hidden;
}

/*店舗情報欄 各box*/
div.shop-info-wrap>div {
  width: 100%;
}

/*店舗エリア */
div.shop-info-wrap>div.area-box {
  padding: .2em 0 .6em;
}

div.shop-info-wrap>div.area-box>a {
  font-size: 10px;
  color: #0090ad;
  border: 2px solid #0090ad;
  border-radius: 4px;
  padding: 2px 3px;
  margin-right: .6em;
}

div.shop-info-wrap>div.area-box>a:link,
div.shop-info-wrap>div.area-box>a:visited {
  color: #0090ad;
}

div.shop-info-wrap>div.area-box>a:hover {
  color: #00f;
  border: 2px solid #00f;
}

div.shop-info-wrap>div.area-box>span:hover,
div.shop-info-wrap>div.area-box>span:hover {
  color: #00f;
  border: 2px solid #00f;
}

/*店舗名 */
div.shop-info-wrap>div.name-box {
  font-size: clamp(13px, 1.8vw, 14px);
  line-height: 1.25em;
}

@media screen and (max-width:700px) {
  div.shop-info-wrap>div.name-box {
    font-size: clamp(14px, 1.8vw, 16px);
  }
}

div.shop-info-wrap>div.name-box>a:link,
div.shop-info-wrap>div.name-box>a:visited {
  color: #10998f;
  font-weight: 600;
}

div.shop-info-wrap>div.name-box>a:hover {
  color: #00f;
  text-decoration: underline;
}

/*店舗営業時間 */
div.shop-info-wrap>div.open-box {
  padding: .3em 0 .2em;
  font-size: 13px;
  color: #666;
}

/*-------時計---------*/
span.clock_icon {
  margin-right: .3em;
  display: inline-block;
  vertical-align: middle;
  color: #02969eff;
  line-height: 1;
  position: relative;
  bottom: 1px;
  width: .9em;
  height: .9em;
  border: 0.15em solid currentColor;
  border-radius: 50%;
  box-sizing: content-box;
}

span.clock_icon::before,
span.clock_icon::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 50%;
  background: currentColor;
  border-radius: 0.1em;
  transform: translate(-0.05em, 0.05em);
}

span.clock_icon::before {
  width: 0.1em;
  height: 0.4em;
}

span.clock_icon::after {
  width: 0.35em;
  height: 0.1em;
}

/*--------もっとみる-------------*/
p.see-more-link {
  box-sizing: border-box;
  width: 100%;
  padding: .8em 2em 2em;
  text-align: right;
}

@media screen and (max-width:700px) {
  p.see-more-link {
    padding: 1.2em 1em 1.4em;
    text-align: center;
  }
}

p.see-more-link>a {
  padding: .2em 1em .1em .6em;
  font-size: 12px;
  border-radius: 2px;
}

@media screen and (max-width:700px) {
  p.see-more-link>a {
    padding: .4em 1em .4em .6em;
    font-size: 12px;
    border-radius: 2px;
  }
}

p.see-more-link>a:link,
p.see-more-link>a:visited {
  background: #01a863ff;
  color: #fff;
  text-shadow: 1px 1px 1px #036f66db;
  font-weight: 600;
  border: 1px solid #0db208;
  box-shadow: 0px 0px 2px 0px #fff;
}

p.see-more-link>a:hover {
  color: #01a863ff;
  background: #fff;
  text-shadow: none;
}

/*
-----------------------------------------
    最近の投稿 - Contributed Info -
-----------------------------------------
*/

div.contributed-Info-box {
  box-sizing: border-box;
  width: 100%;
}

ul.contributed-Info {
  box-sizing: border-box;
  width: fit-content;
  margin: 0 auto;
  padding: .6em 1.2em .3em;
  background: #f8f8f8ff;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  box-shadow: 2px 8px 6px rgba(17, 0, 34, 0.4);
}

ul.contributed-Info>li {
  box-sizing: border-box;
  width: 100%;
  padding: .3em 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

ul.contributed-Info>li:not(:last-child) {
  border-bottom: 1px dashed #888;
}

ul.contributed-Info>li>div {
  box-sizing: border-box;
  line-height: 1.35em;
}

ul.contributed-Info>li>div.upi-date {
  width: 70px;
  text-align: center;
  font-size: 12px;
  color: #666;
}

ul.contributed-Info>li>div.upi-name {
  flex: 1;
  padding: 0 2em;
  font-size: clamp(13px, 1.35vw, 14px);
  font-weight: 600;
  display: flex;
  align-items: center;
}

ul.contributed-Info>li>div.upi-name>a:link {
  color: #10998f;
}

ul.contributed-Info>li>div.upi-name>a:visited {
  color: purple;
}

ul.contributed-Info>li>div.upi-name>a:hover {
  text-decoration: underline;
  color: #00f;
}

ul.contributed-Info>li>div.upi-city {
  width: 140px;
  padding: 0 .2em 0 .6em;
  text-align: center;
  font-size: clamp(12px, 1.35vw, 12px);
  color: #555;
  /*background: pink;*/
}

ul.contributed-Info>li>div.upi-city>span {
  font-size: 85%;
  display: block;
}


@media screen and (max-width:700px) {
  ul.contributed-Info {
    width: 100%;
    padding: .4em .6em .3em;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
  }

  ul.contributed-Info>li {
    box-sizing: border-box;
    width: 100%;
    padding: .3em 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  ul.contributed-Info>li {
    width: 100%;
    padding: 0;
    display: grid;
    grid-template-columns: 70px 1fr;
  }

  ul.contributed-Info>li>div.upi-date {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
  }

  ul.contributed-Info>li>div.upi-name {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
    width: 100%;
    padding: .4em 1.5em .1em;
    font-size: clamp(13px, 1.45vw, 16px);
    /*background: yellow;*/
  }

  ul.contributed-Info>li>div.upi-city {
    width: 100%;
    padding: 0 1.8em .3em;
    text-align: left;
    font-size: clamp(12px, 1.35vw, 12px);
    /*background: pink;*/
  }

  ul.contributed-Info>li>div.upi-city>span {
    font-size: 85%;
    display: inline;
  }
}

/*
-----------------------------------------
    リンク
-----------------------------------------
*/
div.link-box {
  box-sizing: border-box;
  width: 100%;
  background: #d5f4d3ab;
}

div.link-box>h3 {
  padding: .8em 0 .6em;
}

div.link-box>ul {
  box-sizing: border-box;
  width: 100%;
  padding: 0 .6em 2em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: .6em;
}

div.link-box>ul>li>a>picture>img {
  display: block;
  width: 200px;
  height: auto;
  box-shadow: 1px 3px 4px #555;
}

@media screen and (max-width:700px) {
  div.link-box>h3 {
    padding: .3em 0 .4em;
  }

  div.link-box>ul {
    box-sizing: border-box;
    width: 100%;
    padding: 0 .2em 1em;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: .6em .8em;
  }

  div.link-box>ul>li>a>picture>img {
    display: block;
    width: 160px;
    height: auto;
  }
}

div.link-box>ul>li>a>picture>img:hover {
  opacity: .6;
}

/*
=======================
      link-btn
=======================
*/

div.link-btn {
  box-sizing: border-box;
  text-align: center;
  font-weight: 700;
  width: 160px;
  margin: 40px auto;
  border: 2px solid #007c48ff;
  box-shadow: 0px 0px 2px #fff;
  background-color: #008e53;
  white-space: nowrap;
  overflow: hidden;
}

@media screen and (max-width:700px) {
  div.link-btn {
    margin: 24px auto 10px;
  }
}

div.link-btn>a {
  display: block;
  width: 100%;
  padding: .8em 1em .8em 0em;
  font-size: clamp(13px, 1.45vw, 15px);
  text-decoration: none;
}

div.link-btn>a:link,
div.link-btn>a:visited {
  color: #fff
}

div.link-btn>a:hover {
  background-color: #fff;
  color: #008e53;
  transition: all .5s ease-out;
}