<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/*//////////////////// リセット・ベース ////////////////////*/
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}

abbr,
address,
article,
aside,
audio,
blockquote,
body,
canvas,
caption,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
p,
pre,
q,
samp,
section,
small,
span,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
ul,
var,
video {
  margin: 0;
  padding: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  position: relative;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

li {
  list-style-type: none;
}

/*開発用*/
pre {
  padding: 2em !important;
  background-color: antiquewhite !important;
}

/* コンテナクエリの対象となるコンテナを定義 */
.container {
  container-type: inline-size;
}

main {
  margin: 0;
  font-size: 0.8rem;
  color: #222;
  letter-spacing: 0.015em;
  position: relative;
  width: 100%;
  /*青字リンク*/
  /*フレックスボックス*/
  /*グリッドレイアウト*/
  /* コンテナ幅716px以上*/
  /* コンテナ幅601px以上715px以下*/
  /* コンテナ幅600px以下 */
  /*タグリスト*/
}
@media screen and (min-width: 768px) {
  main {
    font-size: 1rem;
  }
}
main p, main dd {
  line-height: 1.6 !important;
}
main figcaption {
  line-height: 1.5 !important;
}
main a {
  text-decoration: none;
  cursor: pointer;
  color: #222;
}
main a:hover img {
  transform: scale(1.02);
  transition: 0.15s;
}
main a:hover {
  text-decoration: underline;
  cursor: pointer;
}
main img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
}
main .link a {
  color: #2D79C4;
}
main .link + .angle::after:after {
  content: "钒;";
  transform: rotate(45deg);
  display: inline-block;
  font-size: 0.9em;
  font-weight: bold !important;
  margin-left: 0.2em;
  vertical-align: 0.1em;
}
main .link + .arrow::after {
  content: "⤍";
  width: 20px;
  height: 6px;
  margin-left: 0.5em;
}
main a.link-arrow:before,
main .link-arrow a:before {
  content: "钒;";
  transform: rotate(45deg);
  display: inline-block;
  font-size: 0.9em;
  font-weight: bold !important;
  margin-right: 0.1em;
}
main h1 {
  font-size: 1.6em;
  font-weight: bold;
}
main h2 {
  margin-bottom: 1em;
  font-size: 1.4em;
  font-weight: bold;
}
main .flex {
  display: flex;
  flex-wrap: wrap;
}
main .flex-center {
  justify-content: center;
}
main .flex-column {
  flex-direction: column;
}
main .flex-2 &gt; * {
  flex-basis: calc(100% / 2);
}
main .flex-3 &gt; * {
  flex-basis: calc(100% / 3);
}
main .flex-4 &gt; * {
  flex-basis: calc(100% / 4);
}
main .flex-5 &gt; * {
  flex-basis: calc(100% / 5);
}
main .flex-6 &gt; * {
  flex-basis: calc(100% / 6);
}
main .flex-7 &gt; * {
  flex-basis: calc(100% / 7);
}
main .flex-8 &gt; * {
  flex-basis: calc(100% / 8);
}
main .flex-9 &gt; * {
  flex-basis: calc(100% / 9);
}
main .flex-10 &gt; * {
  flex-basis: calc(100% / 10);
}
main .flex-11 &gt; * {
  flex-basis: calc(100% / 11);
}
main .flex-12 &gt; * {
  flex-basis: calc(100% / 12);
}
main .grid {
  display: grid;
  /*      gap: 2.5em 2em;*/
  justify-items: center;
  gap: 8px;
}
main .grid &gt; * {
  width: 100%;
}
main .gap-0 {
  gap: 0em !important;
}
main .gap-1 {
  gap: 1em !important;
}
main .gap-2 {
  gap: 2em !important;
}
main .gap-3 {
  gap: 3em !important;
}
main .gap-4 {
  gap: 4em !important;
}
main .grid-center {
  justify-items: center;
}
@container (min-width: 716px) {
  main .grid.grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  main .grid.grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  main .grid.grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  main .grid.grid-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  main .grid.grid-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  main .grid.grid-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  main .grid.grid-8 {
    grid-template-columns: repeat(8, 1fr);
  }
  main .grid.grid-9 {
    grid-template-columns: repeat(9, 1fr);
  }
  main .grid.grid-10 {
    grid-template-columns: repeat(10, 1fr);
  }
  main .grid.grid-11 {
    grid-template-columns: repeat(11, 1fr);
  }
  main .grid.grid-12 {
    grid-template-columns: repeat(12, 1fr);
  }
}
@container (min-width: 601px) and (max-width: 715px) {
  main .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  main .grid.grid-5 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@container (max-width: 600px) {
  main .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  main .grid.grid-sp-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  main .grid.grid-sp-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  main .grid.grid-sp-1 {
    grid-template-columns: 1fr;
  }
}
@container (max-width:600px) {
  main br.pc {
    display: none;
  }
}
@container (min-width:601px) {
  main br.sp {
    display: none;
  }
}
main .bg-gray {
  background-color: rgba(0, 0, 0, 0.025);
}
main .t-center {
  text-align: center;
}
main .t-right {
  text-align: right;
}
main .bold {
  font-weight: bold;
}
main span.tax {
  font-size: 0.7rem;
}
main .wrap75 {
  margin-left: auto;
  margin-right: auto;
  width: 75%;
}
main .pc-wrap75 {
  margin-left: auto;
  margin-right: auto;
  width: 75%;
}
@media (max-width: 540px) {
  main .pc-wrap75 {
    width: 100%;
  }
}
main .wrap80 {
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}
main .pc-wrap80 {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 981px) {
  main .pc-wrap80 {
    width: 80%;
  }
}
@media (max-width: 540px) {
  main .pc-wrap80 {
    width: 100%;
  }
}
@media (max-width: 540px) {
  main .sp-wrap80 {
    margin-left: auto;
    margin-right: auto;
    width: 80%;
  }
}
main .wrap90 {
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}
main .pc-wrap90 {
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}
@media (max-width: 767px) {
  main .pc-wrap90 {
    width: 100%;
  }
}
@media (max-width: 540px) {
  main .sp-wrap90 {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
  }
}
main .tag-list li {
  display: inline-block;
  background-color: #eee;
  padding: 0.5em 0.9em 0.4em;
  border-radius: 2em;
  margin: 0 1em 1em 0;
}
main .tag-list li a {
  color: #000;
}
main .tag-list li a:before {
  content: "#";
}
main .circle {
  box-sizing: border-box;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 1/1;
}
main .circle-top {
  -o-object-position: 0 0;
  object-position: 0 0;
}
main .circle-bottom {
  -o-object-position: 0 100%;
  object-position: 0 100%;
}
main .circle.border {
  border: 1px solid #ccc;
  padding: 2px;
}

.wrapper1000 {
  margin: 0 auto;
}

@media screen and (min-width: 1000px) {
  .wrapper1000 {
    width: 1000px;
  }
}
@media screen and (max-width: 999px) {
  .wrapper1000 {
    width: 100%;
  }
}
.wrapper980 {
  margin: 0 auto;
}

@media screen and (min-width: 980px) {
  .wrapper980 {
    width: 980px;
  }
}
@media screen and (max-width: 979px) {
  .wrapper980 {
    width: 100%;
  }
}
.wrapper760 {
  margin: 0 auto;
}

@media screen and (min-width: 760px) {
  .wrapper760 {
    width: 760px;
    padding: inherit;
  }
}
@media screen and (max-width: 759px) {
  .wrapper760 {
    width: 100%;
  }
}
.breadcrumb {
  font-size: 0.75rem;
  overflow-x: auto;
  overflow-y: clip;
  margin: 4em 0 0;
}
.breadcrumb ol {
  display: flex;
  white-space: nowrap;
  gap: 0.8em;
}
.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 0.8em;
}
.breadcrumb li::after {
  display: flex;
  content: "❭";
  /*
      content: "";
      width: 0.4em;
      height: 0.4em;
      border-top: 1px solid #999;
      border-right: 1px solid #999;
      transform: rotate(45deg);*/
}
.breadcrumb li:last-child {
  padding-right: 0.5em;
}
.breadcrumb li:last-child::after {
  display: none;
}
.breadcrumb a {
  text-decoration: underline;
  cursor: pointer;
  color: #222;
}

/*余白調整用*/
.p-0 {
  padding: 0;
}

.pl-0 {
  padding-left: 0em !important;
}

.pr-0 {
  padding-right: 0em !important;
}

.pt-0 {
  padding-top: 0em !important;
}

.pb-0 {
  padding-bottom: 0em !important;
}

.m-0 {
  margin: 0;
}

.ml-0 {
  margin-left: 0em !important;
}

.mr-0 {
  margin-right: 0em !important;
}

.mt-0 {
  margin-top: 0em !important;
}

.mb-0 {
  margin-bottom: 0em !important;
}

.p-1 {
  padding: 1em !important;
}

.pl-1 {
  padding-left: 1em !important;
}

.pr-1 {
  padding-right: 1em !important;
}

.pt-1 {
  padding-top: 1em !important;
}

.pb-1 {
  padding-bottom: 1em !important;
}

.m-1 {
  margin: 1em !important;
}

.ml-1 {
  margin-left: 1em !important;
}

.mr-1 {
  margin-right: 1em !important;
}

.mt-1 {
  margin-top: 1em !important;
}

.mb-1 {
  margin-bottom: 1em !important;
}

.p-2 {
  padding: 2em !important;
}

.pl-2 {
  padding-left: 2em !important;
}

.pr-2 {
  padding-right: 2em !important;
}

.pt-2 {
  padding-top: 2em !important;
}

.pb-2 {
  padding-bottom: 2em !important;
}

.m-2 {
  margin: 2em !important;
}

.ml-2 {
  margin-left: 2em !important;
}

.mr-2 {
  margin-right: 2em !important;
}

.mt-2 {
  margin-top: 2em !important;
}

.mb-2 {
  margin-bottom: 2em !important;
}

.p-3 {
  padding: 3em !important;
}

.pl-3 {
  padding-left: 3em !important;
}

.pr-3 {
  padding-right: 3em !important;
}

.pt-3 {
  padding-top: 3em !important;
}

.pb-3 {
  padding-bottom: 3em !important;
}

.m-2 {
  margin: 3em !important;
}

.ml-3 {
  margin-left: 3em !important;
}

.mr-3 {
  margin-right: 3em !important;
}

.mt-3 {
  margin-top: 3em !important;
}

.mb-3 {
  margin-bottom: 3em !important;
}

.pl-4 {
  padding-left: 4em !important;
}

.pr-4 {
  padding-right: 4em !important;
}

.pt-4 {
  padding-top: 4em !important;
}

.pb-4 {
  padding-bottom: 4em !important;
}

.ml-4 {
  margin-left: 4em !important;
}

.mr-4 {
  margin-right: 4em !important;
}

.mt-4 {
  margin-top: 4em !important;
}

.mb-4 {
  margin-bottom: 4em !important;
}

.pl-5 {
  padding-left: 5em !important;
}

.pr-5 {
  padding-right: 5em !important;
}

.pt-5 {
  padding-top: 5em !important;
}

.pb-5 {
  padding-bottom: 5em !important;
}

.ml-5 {
  margin-left: 5em !important;
}

.mr-5 {
  margin-right: 5em !important;
}

.mt-5 {
  margin-top: 5em !important;
}

.mb-5 {
  margin-bottom: 5em !important;
}

.item-list li {
  position: relative;
  margin-bottom: 1em !important;
}
.item-list a {
  line-height: 1.5;
  color: #333;
  font-size: 95%;
}
.item-list p {
  margin: 4px 1px 0 3px;
}
@media (max-width: 540px) {
  .item-list p {
    font-size: 12px !important;
  }
}
.item-list .brand {
  font-weight: bold;
}
@media (max-width: 540px) {
  .item-list .brand {
    font-size: 11px;
  }
}
.item-list .rank {
  position: absolute;
  left: -4px;
  top: 0;
  margin-top: 0;
  padding: 1px 3px 0;
  background-color: rgba(255, 255, 255, 0.7);
  color: #333;
}
.item-list .price {
  font-weight: 600 !important;
}
.item-list .price span {
  font-size: 0.8em !important;
  margin-left: 0.4em;
}
.item-list .price.special {
  color: #CB2222;
}

.clamp-1 {
  display: -webkit-box;
  word-break: break-all;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clamp-2 {
  display: -webkit-box;
  word-break: break-all;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clamp-3 {
  display: -webkit-box;
  word-break: break-all;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.p-lead {
  margin-top: 2em;
  font-size: 0.9rem;
}

@container (min-width:601px) {
  .p-lead {
    display: flex;
    justify-content: center;
    margin: 2em auto auto;
  }
}
.btn {
  border: 1px solid #222;
  padding: 0.7em 1.5em;
  text-align: center;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: transparent;
}
.btn a {
  display: flex;
}

.btn-round {
  border-radius: 3em;
}

@container (min-width: 601px) {
  .btn {
    width: -moz-fit-content; /* Firefox */
    width: fit-content; /* other browsers */
    min-width: 30%;
  }
}
@container (min-width: 481px) {
  .btn {
    max-width: 80%;
    font-size: 1.125em;
  }
}
@container (max-width: 480px) {
  .btn {
    max-width: 90%;
    font-size: 1.125em;
  }
}
.arrow {
  position: relative;
}

.btn.arrow::after {
  content: "⤍";
  width: 20px;
  height: 6px;
  position: absolute;
  right: 1em;
  top: 1em;
}

.sns-follow {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1em;
  margin-bottom: 3em;
}

.sns-icons {
  display: flex;
  -moz-column-gap: 1.5em;
       column-gap: 1.5em;
}

.sns-icons li {
  width: 24px;
}

.cell-list.grid {
  gap: 0;
  border-left: 1px solid #ccc;
  border-top: 1px solid #ccc;
}
.cell-list.grid li {
  display: flex;
  align-items: center;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.cell-list.grid a {
  width: 100%;
  padding: 1.2em 1em;
}
.cell-list.grid a:hover {
  text-decoration: underline;
}
.cell-list.grid.angle a::after {
  content: "钒;";
  transform: rotate(45deg) translateY(-50%);
  display: inline-block;
  font-size: 0.9em;
  font-weight: bold !important;
  position: absolute;
  right: 1em;
  top: 50%;
  color: #2D79C4;
}
.cell-list.grid.brand a {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.8em;
}

.h-underline {
  margin: 0 0 15px 0;
  background-image: url(img/top-main-h2-border-02.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  padding-bottom: 15px;
  color: #333;
  font-size: 116%;
  font-weight: bold;
  margin: 0 0 0 15px;
  width: auto;
}

.h-border-left {
  border-left: 4px solid #222;
  padding: 0;
}

.h-border-top {
  border-top: 1px solid #222;
}

.h-border-bottom {
  border-bottom: 1px solid #222;
}

.h-bold {
  font-weight: bold;
}

.h-vborder::after {
  display: block;
  width: 1px;
  height: 2.4em;
  content: "";
  background-color: #666;
  margin: 1.5em auto 0;
}

.h-border-v:after {
  display: block;
  width: 1px;
  height: 2em;
  content: "";
  background-color: #666;
  margin: 1em auto 0;
}

.h-bg {
  background-color: #efefef;
  padding: 0.5em 0.8em 0.4em !important;
}

.h-bdr-b {
  padding: 0.7em 0.8em 0.4em !important;
  border-bottom: 1px solid;
}

.h-bdr-tb {
  padding: 0.5em 0.8em 0.4em !important;
  border-top: 1px solid;
  border-bottom: 1px solid;
}

.h-bracket:before {
  content: "《";
  font-size: 1.5em;
  vertical-align: -0.05em;
  line-height: 1;
  margin-right: 1em;
}

.h-bracket:after {
  content: "》";
  font-size: 1.5em;
  vertical-align: -0.05em;
  line-height: 1;
  margin-left: 1em;
}

/*6選テーマ一覧*/
#otona_select6 h1 {
  font-weight: bold;
  font-size: 1.2em;
  line-height: 1.5;
}
#otona_select6 .post-list {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  line-height: 1.5;
}
#otona_select6 .post-list li {
  padding-bottom: 1em;
  border-bottom: 1px solid #ddd;
}
#otona_select6 .post-list h2 {
  width: inherit;
  line-height: inherit;
}
#otona_select6 .post-list a {
  color: #333;
}
#otona_select6 .post-list figure.flex {
  align-items: flex-start;
  gap: 1em;
}
#otona_select6 .post-list figure.flex img {
  width: 40%;
  height: auto;
}
@media (min-width: 541px) {
  #otona_select6 .post-list figure.flex img {
    width: 24%;
    min-width: 24%;
  }
}
#otona_select6 .post-list figure.flex figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.8em;
  flex: 1;
}
#otona_select6 .post-list figure.flex figcaption .title {
  padding: inherit;
  font-weight: bold;
  font-size: 1.2em;
}

.splide {
  padding-bottom: 2.8em;
}
.splide .splide__pagination__page {
  opacity: inherit;
}
.splide .splide__arrows--ltr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
.splide .splide__arrow {
  background: transparent;
  width: 1em;
  height: 1em;
}
.splide .splide__arrow--prev {
  left: -1em;
}
.splide .splide__arrow--next {
  right: -1em;
}
.splide .splide__pagination li {
  padding: 0.3em;
}
.splide .splide__pagination li button {
  background-color: #fff;
  border: 1px solid #222;
}
.splide .splide__pagination li button.is-active {
  background-color: #222;
  transform: scale(1.2);
}

#otona {
  /*今日の一品*/
  /*大人服6選*/
  /*お悩み別おすすめ商品*/
}
#otona section {
  font-size: 0.9rem;
}
#otona section + section {
  margin-top: 4em;
}
#otona h1 {
  display: flex;
  justify-content: center;
}
@container (min-width: 780px) {
  #otona h1 img {
    width: 760px;
  }
}
@container (max-width: 779px) {
  #otona .p-lead {
    font-size: 0.94em;
    letter-spacing: 0.05em;
  }
}
#otona h2 {
  line-height: 1.6;
}
#otona h2.vborder {
  text-align: center;
}
#otona h2.vborder:after {
  display: block;
  width: 1px;
  height: 2em;
  content: "";
  background-color: #666;
  margin: 1em auto 0;
}
#otona h3 {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: bold;
}
#otona .daily {
  padding: 2.4em;
  background-color: rgba(0, 0, 0, 0.024);
}
#otona .daily .osusume {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #888;
  margin-bottom: 10px;
  color: #fff;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1em auto;
  font-size: 1.1em;
  letter-spacing: 0.1em;
  font-family: serif;
  text-align: center;
}
#otona .daily .pic {
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
  gap: 1em;
}
#otona .daily .flex-column {
  align-items: flex-start;
}
#otona .daily .osusume-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#otona .daily h3 {
  margin-bottom: 0.8em;
}
@container (min-width: 760px) {
  #otona .daily img {
    width: 218px;
  }
}
#otona .daily .credit {
  margin-top: 1em;
}
@container (max-width: 759px) {
  #otona .daily h2 + .fl {
    flex-wrap: wrap;
  }
  #otona .daily h2 + .fl &gt; .fl:not(.caption) {
    /*flex-wrap:wrap;*/
  }
  #otona .osusume-wrapper {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
#otona .select6-list figcaption {
  padding: 0.6em;
}
#otona .link.arrow {
  font-size: 0.9em;
  margin-top: 0.6em;
}
#otona .link.arrow a {
  text-decoration: underline;
  color: #000;
  padding: 0 0.6em;
}
#otona .credit dt {
  font-family: serif;
  font-size: 0.6em;
  margin-bottom: 0.6em;
  letter-spacing: 0.1em;
  color: #707070;
}
#otona .carousel_theme figcaption {
  margin-top: 0.8em;
}
#otona .carousel_theme figcaption h2 {
  font-weight: normal;
  font-size: inherit;
}
#otona .carousel_theme figcaption .excerpt, #otona .carousel_theme figcaption time {
  display: none;
}
#otona .onayami h3 {
  margin-top: 2em;
  margin-bottom: 1em;
  align-items: center;
  display: flex;
  justify-content: center;
}
#otona .onayami h3 span {
  background-color: #888;
  color: #fff;
  border-radius: 50%;
  height: 4em;
  width: 4em;
  line-height: 1.4em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: serif;
  vertical-align: middle;
  margin-right: 1em;
  font-weight: bold;
  padding-top: 0.5em;
  text-align: center;
}
#otona .onayami figcaption {
  padding: 0.6em 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
#otona .onayami figcaption:after {
  margin-left: 1em;
  display: flex;
  content: "";
  width: 0.4em;
  height: 0.4em;
  border-top: 1px solid #2D79C4;
  border-right: 1px solid #2D79C4;
  transform: translateY(-0.05em) rotate(45deg);
}
#otona .original {
  background-color: #f8f8f8;
  padding: 2em;
}
#otona .original figcaption {
  margin-top: 0.6em;
}
#otona .original figcaption .brand-name {
  font-weight: bold;
}
#otona .tag-list {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  text-align: center;
  font-size: 1.2em;
}
#otona .tag-list a {
  color: #2D79C4;
}/*# sourceMappingURL=otona.css.map */

/* ------------------------- */
#otona #otona_onayami img{
  border: 1px solid rgba(0, 0, 0, 0.2);
}
main .grid.grid-2 {
  margin-bottom: 3em;
}
#otona_select6 h3.mt-2{
  line-height: 1.5;
}
</pre></body></html>