<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/*-- libフォルダの中の_index.scss --*/
:root {
  --theme-color-1: #fff;
  --theme-color-2: #000;
  --theme-color-3: #009fa8;
  --theme-color-4: #14ae67;
  --theme-color-5: #f3f3f3;
  --breakpoint-standard: pc;
  --breakpoint-xl: 1300px;
  --breakpoint-lg: 1100px;
  --breakpoint-md: 768px;
  --breakpoint-sm: 544px;
  --breakpoint-xs: 320px;
}

/*
#overview
共通スタイル（_common.scss）

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

article, aside, details, figcaption, figure,
footer, header, main, menu, nav, section {
  display: block;
}

button,
[type=reset],
[type=button],
[type=submit] {
  appearance: button;
  cursor: pointer;
}

/* ==========================================================================
   FONT SET
   ========================================================================== */
/* ==========================================================================
   HTML / BODY
   ========================================================================== */
html {
  height: 100%;
  box-sizing: border-box;
  font-family: sans-serif;
  font-size: 6.25%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

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

body {
  height: 100%;
  font: 16rem/1.3 "Noto Sans JP", YuGothic, -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #fff;
}

/* ==========================================================================
   LIST
   ========================================================================== */
ul, ol {
  list-style: none;
}

.list-style-disc li {
  padding-left: 1em;
  text-indent: -1em;
}
.list-style-disc li::before {
  content: "・";
  font-family: "Noto Sans JP", MyYuGothicM, YuGothic, -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

/* ==========================================================================
   LINK
   ========================================================================== */
a {
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  vertical-align: baseline;
  background-color: transparent;
}
a:link, a:visited, a:hover, a:focus, a:active {
  color: #000;
}
a:hover, a:focus {
  text-decoration: underline;
}

/* ==========================================================================
   MEDIA
   ========================================================================== */
img, embed, object, audio, video, iframe {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
}

img[src$=".svg"] {
  width: 100%;
}

/* ==========================================================================
   TABLE
   ========================================================================== */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ==========================================================================
   HORIZONTAL RULE
   ========================================================================== */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/* ==========================================================================
   ゴシック体
   ========================================================================== */
/*
#styleguide
ゴシック体

テキストをゴシック体にする場合はこのclassを使う
```
&lt;p class="ff-gothic"&gt;窓も扉のかっこう棒手がゴーシュで叫ぶ音楽ました。&lt;/p&gt;
```
*/
.ff-mincho {
  font-family: true;
}

/* ==========================================================================
   明朝体
   ========================================================================== */
/*
#styleguide
明朝体

テキストを明朝体にする場合はこのclassを使う
```
&lt;p class="ff-mincho"&gt;窓も扉のかっこう棒手がゴーシュで叫ぶ音楽ました。&lt;/p&gt;
```
*/
.ff-mincho {
  font-family: false;
}

/* ==========================================================================
   ARIALフォント
   ========================================================================== */
/*
#styleguide
ARIAL

テキストをARIALフォントにする場合はこのclassを使う
```
&lt;p class="ff-arial"&gt;Lorem ipsum dolor sit amet, consectetuer adipiscing elit.&lt;/p&gt;
```
*/
.ff-arial {
  font-family: Arial, Helvetica, Helvetica Neue, sans-serif;
}

/* ==========================================================================
   ARIAL BLACKフォント
   ========================================================================== */
/*
#styleguide
ARIAL BLACK

テキストをARIALフォントにする場合はこのclassを使う
```
&lt;p class="ff-arialBlack"&gt;Lorem ipsum dolor sit amet, consectetuer adipiscing elit.&lt;/p&gt;
```
*/
.ff-arialBlack {
  font-family: Arial Black, sans-serif;
}

/*
#styleguide
マージン

marginに5pxずつ50pxまで
```
&lt;div class="mt0"&gt;テキスト&lt;/div&gt;
&lt;div class="mt5"&gt;テキスト&lt;/div&gt;
&lt;div class="mt10"&gt;テキスト&lt;/div&gt;
&lt;div class="mt50"&gt;テキスト&lt;/div&gt;
```
*/
/* ==========================================================================
   IMPORTANT MARGIN
   ========================================================================== */
.m0 {
  margin: 0px !important;
}

.mt0 {
  margin-top: 0px !important;
}

.mr0 {
  margin-right: 0px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.ml0 {
  margin-left: 0px !important;
}

.m-n0 {
  margin: 0px !important;
}

.mx0 {
  margin-right: 0px !important;
  margin-left: 0px !important;
}

.mx-n0 {
  margin-right: 0px !important;
  margin-left: 0px !important;
}

.my0 {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.my-n0 {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.m5 {
  margin: 5px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.m-n5 {
  margin: -5px !important;
}

.mx5 {
  margin-right: 5px !important;
  margin-left: 5px !important;
}

.mx-n5 {
  margin-right: -5px !important;
  margin-left: -5px !important;
}

.my5 {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}

.my-n5 {
  margin-top: -5px !important;
  margin-bottom: -5px !important;
}

.m10 {
  margin: 10px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.m-n10 {
  margin: -10px !important;
}

.mx10 {
  margin-right: 10px !important;
  margin-left: 10px !important;
}

.mx-n10 {
  margin-right: -10px !important;
  margin-left: -10px !important;
}

.my10 {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

.my-n10 {
  margin-top: -10px !important;
  margin-bottom: -10px !important;
}

.m15 {
  margin: 15px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.m-n15 {
  margin: -15px !important;
}

.mx15 {
  margin-right: 15px !important;
  margin-left: 15px !important;
}

.mx-n15 {
  margin-right: -15px !important;
  margin-left: -15px !important;
}

.my15 {
  margin-top: 15px !important;
  margin-bottom: 15px !important;
}

.my-n15 {
  margin-top: -15px !important;
  margin-bottom: -15px !important;
}

.m20 {
  margin: 20px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.m-n20 {
  margin: -20px !important;
}

.mx20 {
  margin-right: 20px !important;
  margin-left: 20px !important;
}

.mx-n20 {
  margin-right: -20px !important;
  margin-left: -20px !important;
}

.my20 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.my-n20 {
  margin-top: -20px !important;
  margin-bottom: -20px !important;
}

.m25 {
  margin: 25px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.m-n25 {
  margin: -25px !important;
}

.mx25 {
  margin-right: 25px !important;
  margin-left: 25px !important;
}

.mx-n25 {
  margin-right: -25px !important;
  margin-left: -25px !important;
}

.my25 {
  margin-top: 25px !important;
  margin-bottom: 25px !important;
}

.my-n25 {
  margin-top: -25px !important;
  margin-bottom: -25px !important;
}

.m30 {
  margin: 30px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.m-n30 {
  margin: -30px !important;
}

.mx30 {
  margin-right: 30px !important;
  margin-left: 30px !important;
}

.mx-n30 {
  margin-right: -30px !important;
  margin-left: -30px !important;
}

.my30 {
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}

.my-n30 {
  margin-top: -30px !important;
  margin-bottom: -30px !important;
}

.m35 {
  margin: 35px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.m-n35 {
  margin: -35px !important;
}

.mx35 {
  margin-right: 35px !important;
  margin-left: 35px !important;
}

.mx-n35 {
  margin-right: -35px !important;
  margin-left: -35px !important;
}

.my35 {
  margin-top: 35px !important;
  margin-bottom: 35px !important;
}

.my-n35 {
  margin-top: -35px !important;
  margin-bottom: -35px !important;
}

.m40 {
  margin: 40px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.m-n40 {
  margin: -40px !important;
}

.mx40 {
  margin-right: 40px !important;
  margin-left: 40px !important;
}

.mx-n40 {
  margin-right: -40px !important;
  margin-left: -40px !important;
}

.my40 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.my-n40 {
  margin-top: -40px !important;
  margin-bottom: -40px !important;
}

.m45 {
  margin: 45px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mr45 {
  margin-right: 45px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.m-n45 {
  margin: -45px !important;
}

.mx45 {
  margin-right: 45px !important;
  margin-left: 45px !important;
}

.mx-n45 {
  margin-right: -45px !important;
  margin-left: -45px !important;
}

.my45 {
  margin-top: 45px !important;
  margin-bottom: 45px !important;
}

.my-n45 {
  margin-top: -45px !important;
  margin-bottom: -45px !important;
}

.m50 {
  margin: 50px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.m-n50 {
  margin: -50px !important;
}

.mx50 {
  margin-right: 50px !important;
  margin-left: 50px !important;
}

.mx-n50 {
  margin-right: -50px !important;
  margin-left: -50px !important;
}

.my50 {
  margin-top: 50px !important;
  margin-bottom: 50px !important;
}

.my-n50 {
  margin-top: -50px !important;
  margin-bottom: -50px !important;
}

.mx-auto {
  margin: 0 auto !important;
}

/*
#styleguide
パディング

paddingに5pxずつ50pxまで
```
&lt;div class="pt0"&gt;テキスト&lt;/div&gt;
&lt;div class="pt5"&gt;テキスト&lt;/div&gt;
&lt;div class="pt10"&gt;テキスト&lt;/div&gt;
&lt;div class="pt50"&gt;テキスト&lt;/div&gt;
```
*/
/* ==========================================================================
   IMPORTANT PADDING
   ========================================================================== */
.p0 {
  padding: 0px !important;
}

.pt0 {
  padding-top: 0px !important;
}

.pr0 {
  padding-right: 0px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.pl0 {
  padding-left: 0px !important;
}

.px0 {
  padding-right: 0px !important;
  padding-left: 0px !important;
}

.py0 {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.p5 {
  padding: 5px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pl5 {
  padding-left: 5px !important;
}

.px5 {
  padding-right: 5px !important;
  padding-left: 5px !important;
}

.py5 {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

.p10 {
  padding: 10px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.px10 {
  padding-right: 10px !important;
  padding-left: 10px !important;
}

.py10 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.p15 {
  padding: 15px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.px15 {
  padding-right: 15px !important;
  padding-left: 15px !important;
}

.py15 {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

.p20 {
  padding: 20px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.px20 {
  padding-right: 20px !important;
  padding-left: 20px !important;
}

.py20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.p25 {
  padding: 25px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.px25 {
  padding-right: 25px !important;
  padding-left: 25px !important;
}

.py25 {
  padding-top: 25px !important;
  padding-bottom: 25px !important;
}

.p30 {
  padding: 30px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.px30 {
  padding-right: 30px !important;
  padding-left: 30px !important;
}

.py30 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

.p35 {
  padding: 35px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.px35 {
  padding-right: 35px !important;
  padding-left: 35px !important;
}

.py35 {
  padding-top: 35px !important;
  padding-bottom: 35px !important;
}

.p40 {
  padding: 40px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.px40 {
  padding-right: 40px !important;
  padding-left: 40px !important;
}

.py40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.p45 {
  padding: 45px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pr45 {
  padding-right: 45px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pl45 {
  padding-left: 45px !important;
}

.px45 {
  padding-right: 45px !important;
  padding-left: 45px !important;
}

.py45 {
  padding-top: 45px !important;
  padding-bottom: 45px !important;
}

.p50 {
  padding: 50px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.px50 {
  padding-right: 50px !important;
  padding-left: 50px !important;
}

.py50 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.border {
  border-style: solid;
  border-color: transparent;
}

.border--0 {
  border-width: 0px;
}

.border--top-0 {
  border-top-width: 0px;
}

.border--right-0 {
  border-right-width: 0px;
}

.border--bottom-0 {
  border-bottom-width: 0px;
}

.border--left-0 {
  border-left-width: 0px;
}

.border--1 {
  border-width: 1px;
}

.border--top-1 {
  border-top-width: 1px;
}

.border--right-1 {
  border-right-width: 1px;
}

.border--bottom-1 {
  border-bottom-width: 1px;
}

.border--left-1 {
  border-left-width: 1px;
}

.border--2 {
  border-width: 2px;
}

.border--top-2 {
  border-top-width: 2px;
}

.border--right-2 {
  border-right-width: 2px;
}

.border--bottom-2 {
  border-bottom-width: 2px;
}

.border--left-2 {
  border-left-width: 2px;
}

.border--3 {
  border-width: 3px;
}

.border--top-3 {
  border-top-width: 3px;
}

.border--right-3 {
  border-right-width: 3px;
}

.border--bottom-3 {
  border-bottom-width: 3px;
}

.border--left-3 {
  border-left-width: 3px;
}

.border--4 {
  border-width: 4px;
}

.border--top-4 {
  border-top-width: 4px;
}

.border--right-4 {
  border-right-width: 4px;
}

.border--bottom-4 {
  border-bottom-width: 4px;
}

.border--left-4 {
  border-left-width: 4px;
}

.border--5 {
  border-width: 5px;
}

.border--top-5 {
  border-top-width: 5px;
}

.border--right-5 {
  border-right-width: 5px;
}

.border--bottom-5 {
  border-bottom-width: 5px;
}

.border--left-5 {
  border-left-width: 5px;
}

.border--radius-0 {
  border-radius: 0px;
}

.border--radius-3 {
  border-radius: 3px;
}

.border--radius-6 {
  border-radius: 6px;
}

.border--radius-9 {
  border-radius: 9px;
}

.border--radius-pill {
  border-radius: 50rem !important;
}

.font-space {
  letter-spacing: 0.5em;
}

/*
#styleguide
フォントサイズ

font-sizeを2pxずつ50pxまで
```
&lt;div class="fz12"&gt;テキスト&lt;/div&gt;
&lt;div class="fz18"&gt;テキスト&lt;/div&gt;
&lt;div class="fz24"&gt;テキスト&lt;/div&gt;
&lt;div class="fz30"&gt;テキスト&lt;/div&gt;
&lt;div class="fz36"&gt;テキスト&lt;/div&gt;
&lt;div class="fz42"&gt;テキスト&lt;/div&gt;
```
*/
/* ==========================================================================
   IMPORTANT FONT SIZE
   ========================================================================== */
.fz12 {
  font-size: 12rem !important;
}

.fz14 {
  font-size: 14rem !important;
}

.fz16 {
  font-size: 16rem !important;
}

.fz18 {
  font-size: 18rem !important;
}

.fz20 {
  font-size: 20rem !important;
}

.fz22 {
  font-size: 22rem !important;
}

.fz24 {
  font-size: 24rem !important;
}

.fz26 {
  font-size: 26rem !important;
}

.fz28 {
  font-size: 28rem !important;
}

.fz30 {
  font-size: 30rem !important;
}

.fz32 {
  font-size: 32rem !important;
}

.fz34 {
  font-size: 34rem !important;
}

.fz36 {
  font-size: 36rem !important;
}

.fz38 {
  font-size: 38rem !important;
}

.fz40 {
  font-size: 40rem !important;
}

.fz42 {
  font-size: 42rem !important;
}

.fz44 {
  font-size: 44rem !important;
}

.fz46 {
  font-size: 46rem !important;
}

.fz48 {
  font-size: 48rem !important;
}

.fz50 {
  font-size: 50rem !important;
}

/* ==========================================================================
   viewportによって改行
   ========================================================================== */
/*
#styleguide

5つのブレイクブレイクポイント（xs, sm ,md, lg, xl）による表示/非表示
&lt;br&gt;タグに使うと表示幅によって改行したり、改行を取ったりできる

0px以上で非表示・・・d-none
0px以上で表示・・・d-block
xs以上で非表示・・・d-xs-none
xs以上で表示・・・d-xs-block
sm以上で非表示・・・d-sm-none
sm以上で表示・・・d-sm-block
md以上で非表示・・・d-md-none
md以上で表示・・・d-md-block
lg以上で非表示・・・d-lg-none
lg以上で表示・・・d-lg-block
xl以上で非表示・・・d-xl-none
xl以上で表示・・・d-xl-block


```
```
*/
.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-xs-none {
  display: block !important;
}
@media only screen and (min-width: 320px) {
  .d-xs-none {
    display: none !important;
  }
}

.d-xs-block {
  display: none !important;
}
@media only screen and (min-width: 320px) {
  .d-xs-block {
    display: block !important;
  }
}

.d-sm-none {
  display: block !important;
}
@media only screen and (min-width: 544px) {
  .d-sm-none {
    display: none !important;
  }
}

.d-sm-block {
  display: none !important;
}
@media only screen and (min-width: 544px) {
  .d-sm-block {
    display: block !important;
  }
}

.d-md-none {
  display: block !important;
}
@media only screen and (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
}

.d-md-block {
  display: none !important;
}
@media only screen and (min-width: 768px) {
  .d-md-block {
    display: block !important;
  }
}

.d-lg-none {
  display: block !important;
}
@media only screen and (min-width: 1100px) {
  .d-lg-none {
    display: none !important;
  }
}

.d-lg-block {
  display: none !important;
}
@media only screen and (min-width: 1100px) {
  .d-lg-block {
    display: block !important;
  }
}

.d-xl-none {
  display: block !important;
}
@media only screen and (min-width: 1300px) {
  .d-xl-none {
    display: none !important;
  }
}

.d-xl-block {
  display: none !important;
}
@media only screen and (min-width: 1300px) {
  .d-xl-block {
    display: block !important;
  }
}

/* ==========================================================================
   センターボックス
   ========================================================================== */
.cb {
  max-width: 1300px;
  min-width: 320px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  box-sizing: border-box;
}

.cb__inr {
  padding: 0 40px;
}

/* ==========================================================================
   モーダルウィンドウなど上に被せた場合、htmlタグにclassをつけることによって
   htmlのスクロールさせないようにする
   参考: https://qiita.com/ShintaroKoizumi/items/82107fe292f3847d634e
   ========================================================================== */
.scroll-prevent {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

.nowrap {
  white-space: nowrap;
}

/*
#overview
カスタムフォームパーツ
*/
/*
#styleguide
form全体を囲むclass名

class名は変数$customForm-nameで変更可能
WordpressのプラグインContact Form 7を使用する場合はプラグインが自動でフォームパーツをclass="wpcf7"で囲むので変数$customForm-nameをwpcf7にすること
Contact Form 7の拡張プラグインContact Form 7 add confirmを使用する場合は変数$customForm-use-wpcf7cをtrueにすること
```

&lt;!-- class名をcfとした場合 --&gt;
&lt;div class="cf"&gt;
	&lt;!-- フォームパーツ --&gt;
&lt;/div&gt;

&lt;!-- Contact Form 7の場合 --&gt;
&lt;div class="wpcf7"&gt;
	&lt;!-- フォームパーツ --&gt;
&lt;/div&gt;
```
*/
/*
#styleguide
テキストボックス

```
&lt;div class="cf"&gt;
	&lt;input type="text" placeholder="type='text'"&gt;
	&lt;input type="tel" placeholder="type='tel'"&gt;
	&lt;input type="number" placeholder="type='number'"&gt;
	&lt;input type="email" placeholder="type='email'"&gt;
	&lt;input type="search" placeholder="type='search'"&gt;
	&lt;input type="password" placeholder="type='password'"&gt;
	&lt;input type="url" placeholder="type='url'"&gt;
&lt;/div&gt;
```
*/
/*
#styleguide
テキストボックス（disabled時）

```
&lt;div class="cf"&gt;
	&lt;input type="text" value="disabled" disabled&gt;
&lt;/div&gt;
```
*/
/*
#styleguide
テキストボックス（readonly時）

```
&lt;div class="cf"&gt;
	&lt;input type="text" value="readonly" readonly&gt;
&lt;/div&gt;
```
*/
/*
#styleguide
チェックボックス

チェックマークにsvg画像を使用

```
&lt;div class="cf"&gt;
	&lt;input type="checkbox" id="checkbox1" checked&gt;
	&lt;label for="checkbox1" class="cf-label cf-label--check cf-label--left"&gt;チェックボックス1&lt;/label&gt;
	&lt;input type="checkbox" id="checkbox2"&gt;
	&lt;label for="checkbox2" class="cf-label cf-label--check cf-label--left"&gt;チェックボックス2&lt;/label&gt;
&lt;/div&gt;
```
*/
/*
#styleguide
ラジオボタン

真ん中の点にsvg画像を使用
```
&lt;div class="cf"&gt;
	&lt;input type="radio" name="radio" id="radio1" checked&gt;
	&lt;label for="radio1" class="cf-label cf-label--radio cf-label--right"&gt;ラジオボタン1&lt;/label&gt;
	&lt;input type="radio" name="radio" id="radio2"&gt;
	&lt;label for="radio2" class="cf-label cf-label--radio cf-label--right"&gt;ラジオボタン2&lt;/label&gt;
&lt;/div&gt;
```
*/
/*
#styleguide
セレクター

プルダウンの矢印にsvg画像を使用
```
&lt;div class="cf"&gt;
	&lt;select name="" id="" class="cf-select"&gt;
		&lt;option value=""&gt;AAAAA&lt;/option&gt;
		&lt;option value=""&gt;BBBBB&lt;/option&gt;
		&lt;option value=""&gt;CCCCC&lt;/option&gt;
	&lt;/select&gt;
&lt;/div&gt;
```
*/
/*
#styleguide
セレクター（複数選択）

テキストテキストテキストテキスト
```
&lt;div class="cf"&gt;
	&lt;select multiple class="cf-multiple"&gt;
		&lt;option value=""&gt;AAAAA&lt;/option&gt;
		&lt;option value=""&gt;BBBBB&lt;/option&gt;
		&lt;option value=""&gt;CCCCC&lt;/option&gt;
		&lt;option value=""&gt;AAAAA&lt;/option&gt;
		&lt;option value=""&gt;BBBBB&lt;/option&gt;
		&lt;option value=""&gt;CCCCC&lt;/option&gt;
	&lt;/select&gt;
&lt;/div&gt;
```
*/
/*
#styleguide
テキストエリア

テキストテキストテキストテキスト
```
&lt;div class="cf"&gt;
	&lt;textarea&gt;&lt;/textarea&gt;
&lt;/div&gt;
```
*/
/*
#styleguide
エラーメッセージ

テキストテキストテキストテキスト
```
&lt;div class="cf"&gt;
	&lt;div class="cf-response-output"&gt;
		&lt;div class="cf-validation-errors"&gt;エラーメッセージ&lt;/div&gt;
	&lt;/div&gt;
&lt;/div&gt;
```
*/
/* ==========================================================================
   FORM PARTS
   ========================================================================== */
.wp-members input:not([type=checkbox]):not([type=radio]):not([type=submit]),
.wp-members select,
.wp-members textarea {
  width: 100%;
  padding: 0.3em 0.5em;
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  font-family: "Noto Sans JP", YuGothic, -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: normal;
  font-size: 16rem;
  color: #000;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  appearance: none;
  outline: 0;
}
.wp-members input:not([type=checkbox]):not([type=radio]):not([type=submit]).wp-members-not-valid,
.wp-members select.wp-members-not-valid,
.wp-members textarea.wp-members-not-valid {
  background-color: #fbeaea;
  border-color: #fbeaea;
}
.wp-members input:not([type=checkbox]):not([type=radio]):not([type=submit])[disabled],
.wp-members select[disabled],
.wp-members textarea[disabled] {
  opacity: 0.7;
}
.wp-members input:not([type=checkbox]):not([type=radio]):not([type=submit]):focus,
.wp-members select:focus,
.wp-members textarea:focus {
  box-shadow: 0 0 5px 0 #0bd;
}
.wp-members input:not([type=checkbox]):not([type=radio]):not([type=submit])::-ms-clear {
  display: none;
}
.wp-members input:not([type=checkbox]):not([type=radio]):not([type=submit])[readonly] {
  color: #000;
  background-color: #eee;
  border: 1px solid #ccc;
  opacity: 1;
}
.wp-members input:not([type=checkbox]):not([type=radio]):not([type=submit])[readonly]:focus {
  outline: none;
}
.wp-members input:not([type=checkbox]):not([type=radio]):not([type=submit])::-webkit-input-placeholder,
.wp-members textarea::-webkit-input-placeholder {
  padding-top: 0.3em;
  color: gray;
}
.wp-members input:not([type=checkbox]):not([type=radio]):not([type=submit])::-moz-placeholder,
.wp-members textarea::-moz-placeholder {
  color: gray;
}
.wp-members input:not([type=checkbox]):not([type=radio]):not([type=submit]):-ms-input-placeholder,
.wp-members textarea:-ms-input-placeholder {
  color: gray;
}
.wp-members [type=number] {
  -moz-appearance: textfield !important;
}
.wp-members [type=number]::-webkit-outer-spin-button, .wp-members [type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.wp-members [type=search] {
  outline-offset: -2px;
}
.wp-members [type=search]::-webkit-search-decoration {
  display: none;
}
.wp-members [type=search]::-webkit-search-cancel-button {
  display: none;
}
.wp-members [type=password]::-ms-reveal {
  display: none;
}
.wp-members select::-ms-expand {
  display: none;
}
.wp-members input:not([type=checkbox]):not([type=radio]):not([type=submit]),
.wp-members select {
  height: 40px;
}
.wp-members textarea {
  height: 200px;
  resize: vertical;
}
.wp-members .wp-members-select {
  padding-right: 2em;
  background: #fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='21' viewBox='0 0 24 24' fill='none' stroke='rgba(60, 60, 60, 1)' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") right 10px center/21px 21px no-repeat;
  cursor: pointer;
  position: relative;
}
.mod_no-matchmedia .wp-members .wp-members-select {
  padding-right: 0;
  background-image: none;
}
.wp-members .wp-members-multiple {
  height: auto;
}
.wp-members .button_div label {
  display: inline-block;
  position: relative;
  line-height: 21px;
  font-size: 16rem;
  cursor: pointer;
  padding-left: 25px;
}
.wp-members .button_div label::selection {
  background-color: rgba(255, 255, 255, 0);
}
.wp-members .button_div label::before, .wp-members .button_div label::after {
  content: "";
  width: 21px;
  height: 21px;
  position: absolute;
  top: 0;
  display: inline-block;
  line-height: 21px;
  left: 0;
}
.wp-members .button_div label::before {
  border: 2px solid #ccc;
}
.wp-members .button_div label::after {
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  opacity: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -moz-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -ms-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -o-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.wp-members .button_div label.wp-members-label--left {
  padding-left: 25px;
}
.wp-members .button_div label.wp-members-label--left::before, .wp-members .button_div label.wp-members-label--left::after {
  left: 0;
}
.wp-members .button_div label.wp-members-label--right {
  padding-right: 25px;
}
.wp-members .button_div label.wp-members-label--right::before, .wp-members .button_div label.wp-members-label--right::after {
  right: 0;
}
.wp-members .button_div label.wp-members-label--radio::before {
  border-radius: 50%;
}
.wp-members .button_div label.wp-members-label--radio::after {
  width: 21px;
  height: 21px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='21' viewBox='0 0 21 21' fill='none' stroke='rgba(120, 60, 60, 1)' stroke-width='6' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='10.5' cy='10.5' r='1'%3E%3C/circle%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
}
.wp-members .button_div label.wp-members-label--check::before {
  border-radius: 3px;
}
.wp-members .button_div label.wp-members-label--check::after {
  width: 21px;
  height: 21px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='rgba(120, 60, 60, 1)' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
}
.wp-members .button_div label + input + .wp-members-label {
  margin-left: 21px;
}
.wp-members .button_div [type=radio],
.wp-members .button_div [type=checkbox] {
  opacity: 0;
  appearance: none;
  position: absolute;
}
.wp-members .button_div [type=radio]:checked + label::after,
.wp-members .button_div [type=checkbox]:checked + label::after {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
.wp-members .button_div [type=radio][disabled] + label,
.wp-members .button_div [type=checkbox][disabled] + label {
  opacity: 0.7;
}
.wp-members .button_div [type=radio]:focus + label,
.wp-members .button_div [type=checkbox]:focus + label {
  box-shadow: 0 0 5px 0 #0bd;
}
.wp-members .button_div [type=radio] + label::before {
  border-radius: 50%;
}
.wp-members .button_div [type=radio] + label::after {
  width: 21px;
  height: 21px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='21' viewBox='0 0 21 21' fill='none' stroke='rgba(120, 60, 60, 1)' stroke-width='6' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='10.5' cy='10.5' r='1'%3E%3C/circle%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
}
.wp-members .button_div [type=checkbox] + label::before {
  border-radius: 3px;
}
.wp-members .button_div [type=checkbox] + label::after {
  width: 21px;
  height: 21px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='rgba(120, 60, 60, 1)' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
}
.wp-members .wp-members-not-valid .wp-members-label::before {
  background-color: #fbeaea;
}
.wp-members .wp-members-response-output {
  margin: 40px 0;
  padding: 0;
}
.wp-members .wp-members-validation-errors {
  padding: 22px 0;
  display: block;
  font-weight: 700;
  font-size: 18rem;
  color: #fff;
  text-align: center;
  background-color: #e45f5f;
  border: 0;
  border-radius: 5px;
}
.wp-members .wp-members-validation-errors::before {
  content: "";
  width: 21px;
  height: 21px;
  margin-right: 5px;
  display: inline-block;
  vertical-align: middle;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='21' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z'%3E%3C/path%3E%3Cline x1='12' y1='9' x2='12' y2='13'%3E%3C/line%3E%3Cline x1='12' y1='17' x2='12' y2='17'%3E%3C/line%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
}
.wp-members .wp-members-mail-sent-ok {
  display: none;
}
.wp-members .wp-members-not-valid-tip {
  display: block;
  font-size: 1em;
  color: #f00;
}
.wp-members .ajax-loader {
  margin: 0 0 0 -8px !important;
  position: absolute;
  top: -20px;
  left: 50%;
}

.font-tc1 {
  color: #fff !important;
}

.bg-tc1 {
  background-color: #fff !important;
}

.border-tc1 {
  border-color: #fff !important;
}

.font-tc2 {
  color: #000 !important;
}

.bg-tc2 {
  background-color: #000 !important;
}

.border-tc2 {
  border-color: #000 !important;
}

.font-tc3 {
  color: #009fa8 !important;
}

.bg-tc3 {
  background-color: #009fa8 !important;
}

.border-tc3 {
  border-color: #009fa8 !important;
}

.font-tc4 {
  color: #14ae67 !important;
}

.bg-tc4 {
  background-color: #14ae67 !important;
}

.border-tc4 {
  border-color: #14ae67 !important;
}

.font-tc5 {
  color: #f3f3f3 !important;
}

.bg-tc5 {
  background-color: #f3f3f3 !important;
}

.border-tc5 {
  border-color: #f3f3f3 !important;
}

/*
#overview
テーマカラーについて

他にも使っているけど、だいたいこんな感じ
*/
/*
#colors
@theme-color1 #fff
@theme-color2 #000
@theme-color3 #2c9557
@theme-color4 #42ac6d
@theme-color5 #085729
@theme-color6 #286f4a
@theme-color7 #da3940
@theme-color8 #927a6e
@theme-color9 #b9aa9a
@theme-color10 #bbb
@theme-color11 #ead8d8
@theme-color12 #106434
@theme-color13 #f8f6ee
@theme-color14 #f1e8cb
@theme-color15 #888
@theme-color16 #f3f4e9
@theme-color17 #8a734b
@theme-color18 #ea757b
@theme-color19 #63c089
@theme-color20 #fd8f00
@theme-color21 #c7398e
@theme-color22 #f38790
@theme-color23 #c45da1
@theme-color24 #e196c8
@theme-color25 #f3e4e5
@theme-color26 #dc414a
@theme-color27 #e2efe2
@theme-color28 #126434
@theme-color29 #fe5690
@theme-color30 #b7a353
@theme-color31 #ff9000
@theme-color32 #b596c5
@theme-color33 #66b4a6
@theme-color34 #6f81c0
@theme-color35 #5b6cab
@theme-color36 #f5f2f6
@theme-color37 #6fb4c0
*/
/*
#styleguide
フォントカラーのclass

font-tc●のばんごうはテーマカラーの番号
テーマカラーはstyle.scssに記述
!important付きなので使いどころに注意

```
&lt;p class="font-tc3"&gt;テキストテキストテキストテキストテキストテキスト&lt;/p&gt;
&lt;p class="font-tc5"&gt;テキストテキストテキストテキストテキストテキスト&lt;/p&gt;
&lt;p class="font-tc7"&gt;テキストテキストテキストテキストテキストテキスト&lt;/p&gt;
```
*/
/*
#styleguide
背景色のclass

bg-tc●のばんごうはテーマカラーの番号
テーマカラーはstyle.scssに記述
!important付きなので使いどころに注意

```
&lt;p class="bg-tc3"&gt;テキストテキストテキストテキストテキストテキスト&lt;/p&gt;
&lt;p class="bg-tc5"&gt;テキストテキストテキストテキストテキストテキスト&lt;/p&gt;
&lt;p class="bg-tc7"&gt;テキストテキストテキストテキストテキストテキスト&lt;/p&gt;
```
*/
/*
#styleguide
ボーダーカラーのclass

フォントカラーと背景色、ボーダーの色がテーマカラーごとclassに設定される
テーマカラーはstyle.scssに記述
!important付きなので使いどころに注意

```
&lt;p class="border-tc3" style="border-width:3px;border-style:solid;"&gt;テキストテキストテキストテキストテキストテキスト&lt;/p&gt;
&lt;p class="border-tc5" style="border-width:3px;border-style:solid;"&gt;テキストテキストテキストテキストテキストテキスト&lt;/p&gt;
&lt;p class="border-tc7" style="border-width:3px;border-style:solid;"&gt;テキストテキストテキストテキストテキストテキスト&lt;/p&gt;
```
*/
/* ==========================================================================
 *  
 *  _btnPageTop.scss
 *
 *  Last Modified: 2019/04/18
 *  Last Editor: Toshiyuki Hara
 *
   ========================================================================== */
@font-face {
  font-family: "fontello";
  src: url("../font/fontello/fontello.woff") format("woff"), url("../font/fontello/fontello.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
.btn-page-top {
  position: fixed;
  right: -58px;
  bottom: 28px;
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  transition: all 0.5s ease-in-out;
  z-index: 10;
}

.btn-page-top a {
  width: 58px;
  height: 58px;
  position: relative;
  display: block;
  text-indent: 110%;
  white-space: nowrap;
  overflow: hidden;
  text-decoration: none;
  outline: 0;
  transition: opacity 0.2s ease-in-out;
}

.btn-page-top a:hover,
.btn-page-top a:focus {
  opacity: 0.5;
}

.btn-page-top a::before {
  content: "\e801";
  width: 58px;
  height: 58px;
  line-height: 53px;
  font-family: "fontello";
  font-size: 42rem;
  color: #fff;
  text-indent: 0;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 29px;
}

.btn-page-top.btn-page-top--active {
  right: 30px;
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

/*
#overview
ページトップボタン

*/
/*
#styleguide
```
&lt;div id="btn-page-top" class="btn-page-top btn-page-top--active" style="position: relative; right: auto; bottom: auto; "&gt;
	&lt;a href="#top" class="js-anchor"&gt;ページの先頭へ&lt;/a&gt;
&lt;/div&gt;
&lt;!-- .btnPageTop --&gt;
```
*/
/* ==========================================================================
 *  
 *  _lbl.scss
 *
 *  Last Modified: 2019/04/18
 *  Last Editor: Toshiyuki Hara
 *
   ========================================================================== */
.lbl {
  min-width: 5em;
  padding: calc(0.8em - (1em * 1.2 - 1em) / 2) 0.8em;
  margin: 10px;
  display: inline-block;
  line-height: 1.2;
  font-size: 16rem;
  color: #fff;
  text-align: center;
  background-color: #999;
  border: 1px solid transparent;
  border-radius: 0;
}
@media only screen and (max-width: 767px) {
  .lbl {
    margin: 5px;
  }
}
.lbl--primary {
  color: #000;
  background-color: #fff;
  border-color: #ccc;
}

/*
#overview
ラベル

フォームの必須項目用ラベル
*/
/*
#styleguide


```
&lt;span class="lbl lbl--primary"&gt;ラベル&lt;/span&gt;
&lt;span class="lbl lbl--primary-outline"&gt;ラベル&lt;/span&gt;
&lt;span class="lbl lbl--secondary"&gt;&lt;i class="fas fa-tag"&gt;&lt;/i&gt;ラベル&lt;/span&gt;
&lt;span class="lbl lbl--success"&gt;&lt;i class="fas fa-tag"&gt;&lt;/i&gt;ラベル&lt;/span&gt;
&lt;span class="lbl lbl--info"&gt;ラベル&lt;/span&gt;
&lt;span class="lbl lbl--warning"&gt;ラベル&lt;/span&gt;
&lt;span class="lbl lbl--danger"&gt;ラベル&lt;/span&gt;
```
*/
/* ==========================================================================
 *  
 *  _btn.scss
 *
 *  Last Modified: 2019/04/18
 *  Last Editor: Toshiyuki Hara
 *
   ========================================================================== */
.btn {
  min-width: 1em;
  margin: 0;
  padding: 0.26em 0.3em;
  position: relative;
  display: inline-block;
  font: 400 18rem/1.5 "Noto Sans JP", YuGothic, -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #fff;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  user-select: none;
  overflow: hidden;
  border-radius: 0.3em;
  border: 1px solid transparent;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.btn:link, .btn:visited, .btn:hover, .btn:focus, .btn:active {
  color: #fff;
}
.btn:hover, .btn:focus {
  color: white;
  text-decoration: none;
  background-color: #cccccc;
}
.btn--block {
  width: 100%;
  display: block;
}
.btn .fas {
  margin: 0.5em;
  color: #999;
}
.btn--ico .fa, .btn--ico .fas {
  position: absolute;
  top: calc(50% - 0.5em);
  left: 0.5em;
}
.btn--disabled, .btn[disabled] {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.3;
}
.btn--shadow {
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.1);
}
.btn--radius-100vh {
  border-radius: 100vh !important;
}
.btn--primary {
  color: #000;
  background-color: #fff;
  border-color: #aaa999;
  font-size: 16rem;
  border-radius: 0;
  padding-top: 10px;
  padding-bottom: 10px;
}
.btn--primary:link, .btn--primary:visited, .btn--primary:hover, .btn--primary:focus, .btn--primary:active {
  color: #000;
}
.btn--primary:hover, .btn--primary:focus {
  color: #333333;
  background-color: white;
  border-color: #d8d8d1;
}
.btn--bg-tc-1 {
  background-color: #fff;
}
.btn--bg-tc-1:hover, .btn--bg-tc-1:focus {
  background-color: white;
}
.btn--border-tc-1 {
  border-color: #fff;
}
.btn--border-tc-1:hover, .btn--border-tc-1:focus {
  border-color: white;
}
.btn--font-tc-1 {
  color: #fff;
}
.btn--font-tc-1:link, .btn--font-tc-1:visited {
  color: #fff;
}
.btn--font-tc-1:hover, .btn--font-tc-1:focus, .btn--font-tc-1:active {
  color: white;
}
.btn--bg-tc-2 {
  background-color: #000;
}
.btn--bg-tc-2:hover, .btn--bg-tc-2:focus {
  background-color: #333333;
}
.btn--border-tc-2 {
  border-color: #000;
}
.btn--border-tc-2:hover, .btn--border-tc-2:focus {
  border-color: #333333;
}
.btn--font-tc-2 {
  color: #000;
}
.btn--font-tc-2:link, .btn--font-tc-2:visited {
  color: #000;
}
.btn--font-tc-2:hover, .btn--font-tc-2:focus, .btn--font-tc-2:active {
  color: #333333;
}
.btn--bg-tc-3 {
  background-color: #009fa8;
}
.btn--bg-tc-3:hover, .btn--bg-tc-3:focus {
  background-color: #0ff2ff;
}
.btn--border-tc-3 {
  border-color: #009fa8;
}
.btn--border-tc-3:hover, .btn--border-tc-3:focus {
  border-color: #0ff2ff;
}
.btn--font-tc-3 {
  color: #009fa8;
}
.btn--font-tc-3:link, .btn--font-tc-3:visited {
  color: #009fa8;
}
.btn--font-tc-3:hover, .btn--font-tc-3:focus, .btn--font-tc-3:active {
  color: #0ff2ff;
}
.btn--bg-tc-4 {
  background-color: #14ae67;
}
.btn--bg-tc-4:hover, .btn--bg-tc-4:focus {
  background-color: #3fe99b;
}
.btn--border-tc-4 {
  border-color: #14ae67;
}
.btn--border-tc-4:hover, .btn--border-tc-4:focus {
  border-color: #3fe99b;
}
.btn--font-tc-4 {
  color: #14ae67;
}
.btn--font-tc-4:link, .btn--font-tc-4:visited {
  color: #14ae67;
}
.btn--font-tc-4:hover, .btn--font-tc-4:focus, .btn--font-tc-4:active {
  color: #3fe99b;
}
.btn--bg-tc-5 {
  background-color: #f3f3f3;
}
.btn--bg-tc-5:hover, .btn--bg-tc-5:focus {
  background-color: white;
}
.btn--border-tc-5 {
  border-color: #f3f3f3;
}
.btn--border-tc-5:hover, .btn--border-tc-5:focus {
  border-color: white;
}
.btn--font-tc-5 {
  color: #f3f3f3;
}
.btn--font-tc-5:link, .btn--font-tc-5:visited {
  color: #f3f3f3;
}
.btn--font-tc-5:hover, .btn--font-tc-5:focus, .btn--font-tc-5:active {
  color: white;
}

/*
#overview
ボタン

テキストテキスト
*/
/*
#styleguide

プロにおまかせボタン

ヘッダに設置
```
&lt;input type="button" value="プロにおまかせ" class="btn btn--pro"&gt;
```
*/
/*
#styleguide

フォームの高さに合わせたボタン
```
&lt;a href="" class="btn btn--form-parts btn--block"&gt;&lt;i class="fas fa-search"&gt;&lt;/i&gt;検索&lt;/a&gt;
```
*/
/*
#styleguide

お花の形から選ぶ で使われるボタン
```
&lt;a href="" class="btn btn--type btn--block"&gt;ボタン&lt;/a&gt;
```
*/
/*
#styleguide

ページトップボタン
```
&lt;input type="button" value="プロにおまかせ" class="btn btn--pro"&gt;
&lt;a href="" class="btn btn--card-detail"&gt;ボタン&lt;/a&gt;
&lt;a href="" class="btn btn--card-cart"&gt;ボタン&lt;/a&gt;
&lt;input type="button" value="ボタン" class="btn btn--success btn--shadow"&gt;
&lt;button class="btn btn--list btn--block"&gt;ボタン&lt;/button&gt;
```
*/
/*
#styleguide

ページトップボタン
```
&lt;input type="button" value="プロにおまかせ" class="btn btn--pro"&gt;
&lt;a href="" class="btn btn--card-detail"&gt;ボタン&lt;/a&gt;
&lt;a href="" class="btn btn--card-cart"&gt;ボタン&lt;/a&gt;
&lt;input type="button" value="ボタン" class="btn btn--success btn--shadow"&gt;
&lt;button class="btn btn--list btn--block"&gt;ボタン&lt;/button&gt;
```
*/
/* ==========================================================================
 *  
 *  _breadcrumb.scss
 *
 *  Last Modified: 2019/08/18
 *  Last Editor: Toshiyuki Hara
 *
   ========================================================================== */
.breadcrumb {
  display: block;
  font-size: 16rem;
  text-align: left;
  background-color: #f3f3f3;
}
.breadcrumb__inr {
  max-width: 1100px;
  padding: calc(0.8em - (1em * 1.2 - 1em) / 2) 0;
  margin: 0 auto;
}
.breadcrumb a {
  text-decoration: underline;
}
.breadcrumb a:link, .breadcrumb a:visited, .breadcrumb a:hover, .breadcrumb a:focus, .breadcrumb a:active {
  color: #888;
}
@media only screen and (max-width: 767px) {
  .breadcrumb {
    font-size: 14rem;
    padding: 0 5.3333333333%;
    background-color: #fff;
  }
}

/*
#overview
パンくずリスト

フォームの必須項目用ラベル
*/
/*
#styleguide

```
&lt;div class="breadcrumb"&gt;
	&lt;div class="breadcrumb__inr"&gt;
		&lt;span itemscope itemtype="http://data-vocabulary.org/Breadcrumb"&gt;
			&lt;a href="../" itemprop="url"&gt;
				&lt;i class="fas fa-home"&gt;&lt;/i&gt;
				&lt;span itemprop="title"&gt;ホーム&lt;/span&gt;
			&lt;/a&gt;&amp;nbsp;&amp;gt;&amp;nbsp;
		&lt;/span&gt;
		&lt;span itemscope itemtype="http://data-vocabulary.org/Breadcrumb"&gt;
			&lt;a href="../" itemprop="url"&gt;
				&lt;span itemprop="title"&gt;下層ページ&lt;/span&gt;
			&lt;/a&gt;
		&lt;/span&gt;
	&lt;/div&gt;
	&lt;!-- /.breadcrumb__inr --&gt;
&lt;/div&gt;
&lt;!-- /.breadcrumb --&gt;
```
*/
/* ==========================================================================
 *  
 *  _card.scss
 *
 *  Last Modified: 2019/04/15
 *  Last Editor: Toshiyuki Hara
 *
   ========================================================================== */
.card {
  max-width: 100%;
}
.card__img {
  width: 100%;
  aspect-ratio: 1.33;
}
.card__img img {
  object-fit: cover;
  aspect-ratio: 1.33;
}
.card__lead {
  margin-top: 1em;
  font-weight: bold;
  font-size: 16rem;
}
.card__date {
  margin-top: 1em;
  font-size: 12rem;
  color: #999;
}
.card__lbl {
  min-width: 130px;
  padding: 8px 10px;
  position: absolute;
  top: -20px;
  left: 30px;
  line-height: 1;
  font-size: 14rem;
  color: #fff;
  background-color: #000;
}
.card__lbl .fas {
  margin-right: 0.5em;
}
.card__lbl--advice {
  background-color: #92314e;
}
.card--small .card__lead {
  font-size: 14rem;
}
.card--large {
  width: 550px;
  background-color: #fff;
}
.card--large .card__lead {
  margin-top: 0;
  padding: 25px 30px;
  position: relative;
  font-size: 24rem;
}
@media only screen and (max-width: 767px) {
  .card__lbl {
    top: -15px;
    left: 20px;
  }
  .card--large {
    width: 100%;
  }
  .card--large .card__lead {
    margin-top: 0;
    padding: 25px 20px;
    position: relative;
    font-size: 20rem;
  }
}

/*
#overview
カード

*/
/*
#styleguide
通常の状態

横に複数並べる時はこちらを使う
```
&lt;section class="card"&gt;
	&lt;div class="card__img"&gt;
		&lt;a href="#"&gt;&lt;img src="http://satyr.io/252x252/" alt="ダミー画像"&gt;&lt;/a&gt;
	&lt;/div&gt;
	&lt;!-- /.card__img --&gt;

	&lt;div class="card__body"&gt;
		&lt;p class="fz14"&gt;&lt;b&gt;511520&lt;/b&gt;&lt;/p&gt;

		&lt;h1 class="mt5 fz16 font-tc6"&gt;胡蝶蘭　3本立（開花輪白24以上）赤系ラッピング&lt;/h1&gt;

		&lt;div class="mt5 py5 border border--top-1 border--bottom-1 border-tc10"&gt;
			&lt;p class="fz14"&gt;日持ちの良い胡蝶蘭は、どんなお祝いにも相応しい安心の贈り物です。&lt;/p&gt;
		&lt;/div&gt;
		&lt;!-- /.card__line --&gt;

		&lt;p class="mt5 fz16"&gt;&lt;b&gt;22,000円（税込）&lt;/b&gt;&lt;/p&gt;

		&lt;p class="mt5 fz12"&gt;鉢物&lt;br&gt;開花輪24輪以上&lt;/p&gt;
	&lt;/div&gt;
	&lt;!-- /.card__body --&gt;

	&lt;div class="card__foot"&gt;
		&lt;div class="gs m-n5"&gt;
			&lt;div class="gs__col gs__col--sm-3 p5"&gt;
				&lt;a href="" class="btn btn--card-detail btn--block btn--bg-tc-1 btn--border-tc-8 btn--font-tc-8"&gt;詳細&lt;/a&gt;
			&lt;/div&gt;
			&lt;!-- /.gs__col --&gt;

			&lt;div class="gs__col gs__col--sm-9 p5"&gt;
				&lt;a href="" class="btn btn--card-cart btn--block btn--bg-tc-7 btn--border-tc-7 btn--font-tc-1"&gt;&lt;i class="fas fa-shopping-cart fa-fw"&gt;&lt;/i&gt;カートに入れる&lt;/a&gt;
			&lt;/div&gt;
			&lt;!-- /.gs__col --&gt;
		&lt;/div&gt;
		&lt;!-- /.gs --&gt;
	&lt;/div&gt;
	&lt;!-- /.card__foot --&gt;
&lt;/section&gt;
&lt;!-- /.card --&gt;


```
*/
/*
#styleguide

```
&lt;section class="card card--large"&gt;
	&lt;div class="card__img"&gt;
		&lt;a href="#"&gt;&lt;img src="http://satyr.io/300x300/" alt="ダミー画像"&gt;&lt;/a&gt;
	&lt;/div&gt;
	&lt;!-- /.card__img --&gt;

	&lt;div class="card__detail"&gt;
		&lt;div class="card__body"&gt;
			&lt;p class="fz14"&gt;&lt;b&gt;511520&lt;/b&gt;&lt;/p&gt;

			&lt;h1 class="mt5 fz16 font-tc6"&gt;胡蝶蘭　3本立（開花輪白24以上）赤系ラッピング&lt;/h1&gt;

			&lt;div class="mt5 py5 border border--top-1 border--bottom-1 border-tc10"&gt;
				&lt;p class="fz14"&gt;日持ちの良い胡蝶蘭は、どんなお祝いにも相応しい安心の贈り物です。&lt;/p&gt;
			&lt;/div&gt;
			&lt;!-- /.card__line --&gt;

			&lt;p class="mt5 fz16"&gt;&lt;b&gt;22,000円（税込）&lt;/b&gt;&lt;/p&gt;

			&lt;p class="mt5 fz12"&gt;鉢物&lt;br&gt;開花輪24輪以上&lt;/p&gt;
		&lt;/div&gt;
		&lt;!-- /.card__body --&gt;

		&lt;div class="card__foot"&gt;
			&lt;div class="gs m-n5"&gt;
				&lt;div class="gs__col gs__col--sm-3 p5"&gt;
					&lt;a href="" class="btn btn--card-detail btn--block btn--bg-tc-1 btn--border-tc-8 btn--font-tc-8"&gt;詳細&lt;/a&gt;
				&lt;/div&gt;
				&lt;!-- /.gs__col --&gt;

				&lt;div class="gs__col gs__col--sm-9 p5"&gt;
					&lt;a href="" class="btn btn--card-cart btn--block btn--bg-tc-7 btn--border-tc-7 btn--font-tc-1"&gt;&lt;i class="fas fa-shopping-cart fa-fw"&gt;&lt;/i&gt;カートに入れる&lt;/a&gt;
				&lt;/div&gt;
				&lt;!-- /.gs__col --&gt;
			&lt;/div&gt;
			&lt;!-- /.gs --&gt;
		&lt;/div&gt;
		&lt;!-- /.card__foot --&gt;
	&lt;/div&gt;
	&lt;!-- /.card__detail --&gt;
&lt;/section&gt;
&lt;!-- /.card --&gt;


```
*/
/*
#styleguide

複数を並べた状態
```
&lt;div class="gs m-n8"&gt;
	&lt;div class="gs__col gs__col--lg-3 gs__col--md-3 gs__col--sm-6 gs__col--xs-12 p8"&gt;
		&lt;section class="card"&gt;
			&lt;div class="card__img"&gt;
				&lt;a href="#"&gt;&lt;img src="http://satyr.io/252x252/1" alt="ダミー画像"&gt;&lt;/a&gt;
			&lt;/div&gt;
			&lt;!-- /.card__img --&gt;

			&lt;div class="card__body"&gt;
				&lt;p class="fz14"&gt;&lt;b&gt;511520&lt;/b&gt;&lt;/p&gt;

				&lt;h1 class="mt5 fz16 font-tc6"&gt;胡蝶蘭　3本立（開花輪白24以上）赤系ラッピング&lt;/h1&gt;

				&lt;div class="mt5 py5 border border--top-1 border--bottom-1 border-tc10"&gt;
					&lt;p class="fz14"&gt;日持ちの良い胡蝶蘭は、どんなお祝いにも相応しい安心の贈り物です。&lt;/p&gt;
				&lt;/div&gt;
				&lt;!-- /.card__line --&gt;

				&lt;p class="mt5 fz16"&gt;&lt;b&gt;22,000円（税込）&lt;/b&gt;&lt;/p&gt;

				&lt;p class="mt5 fz12"&gt;鉢物&lt;br&gt;開花輪24輪以上&lt;/p&gt;
			&lt;/div&gt;
			&lt;!-- /.card__body --&gt;

			&lt;div class="card__foot"&gt;
				&lt;div class="gs m-n5"&gt;
					&lt;div class="gs__col gs__col--sm-3 p5"&gt;
						&lt;a href="" class="btn btn--card-detail btn--block btn--bg-tc-1 btn--border-tc-8 btn--font-tc-8"&gt;詳細&lt;/a&gt;
					&lt;/div&gt;
					&lt;!-- /.gs__col --&gt;

					&lt;div class="gs__col gs__col--sm-9 p5"&gt;
						&lt;a href="" class="btn btn--card-cart btn--block btn--bg-tc-7 btn--border-tc-7 btn--font-tc-1"&gt;&lt;i class="fas fa-shopping-cart fa-fw"&gt;&lt;/i&gt;カートに入れる&lt;/a&gt;
					&lt;/div&gt;
					&lt;!-- /.gs__col --&gt;
				&lt;/div&gt;
				&lt;!-- /.gs --&gt;
			&lt;/div&gt;
			&lt;!-- /.card__foot --&gt;
		&lt;/section&gt;
		&lt;!-- /.card --&gt;
	&lt;/div&gt;
	&lt;!-- /.gs__col --&gt;

	&lt;div class="gs__col gs__col--lg-3 gs__col--md-3 gs__col--sm-6 gs__col--xs-12 p8"&gt;
		&lt;section class="card"&gt;
			&lt;div class="card__img"&gt;
				&lt;a href="#"&gt;&lt;img src="http://satyr.io/252x252/2" alt="ダミー画像"&gt;&lt;/a&gt;
			&lt;/div&gt;
			&lt;!-- /.card__img --&gt;

			&lt;div class="card__body"&gt;
				&lt;p class="fz14"&gt;&lt;b&gt;511520&lt;/b&gt;&lt;/p&gt;

				&lt;h1 class="mt5 fz16 font-tc6"&gt;胡蝶蘭　3本立（開花輪白24以上）赤系ラッピング&lt;/h1&gt;

				&lt;div class="mt5 py5 border border--top-1 border--bottom-1 border-tc10"&gt;
					&lt;p class="fz14"&gt;日持ちの良い胡蝶蘭は、どんなお祝いにも相応しい安心の贈り物です。&lt;/p&gt;
				&lt;/div&gt;
				&lt;!-- /.card__line --&gt;

				&lt;p class="mt5 fz16"&gt;&lt;b&gt;22,000円（税込）&lt;/b&gt;&lt;/p&gt;

				&lt;p class="mt5 fz12"&gt;鉢物&lt;br&gt;開花輪24輪以上&lt;/p&gt;
			&lt;/div&gt;
			&lt;!-- /.card__body --&gt;

			&lt;div class="card__foot"&gt;
				&lt;div class="gs m-n5"&gt;
					&lt;div class="gs__col gs__col--sm-3 p5"&gt;
						&lt;a href="" class="btn btn--card-detail btn--block btn--bg-tc-1 btn--border-tc-8 btn--font-tc-8"&gt;詳細&lt;/a&gt;
					&lt;/div&gt;
					&lt;!-- /.gs__col --&gt;

					&lt;div class="gs__col gs__col--sm-9 p5"&gt;
						&lt;a href="" class="btn btn--card-cart btn--block btn--bg-tc-7 btn--border-tc-7 btn--font-tc-1"&gt;&lt;i class="fas fa-shopping-cart fa-fw"&gt;&lt;/i&gt;カートに入れる&lt;/a&gt;
					&lt;/div&gt;
					&lt;!-- /.gs__col --&gt;
				&lt;/div&gt;
				&lt;!-- /.gs --&gt;
			&lt;/div&gt;
			&lt;!-- /.card__foot --&gt;
		&lt;/section&gt;
		&lt;!-- /.card --&gt;
		&lt;!-- /.card --&gt;
	&lt;/div&gt;
	&lt;!-- /.gs__col --&gt;

	&lt;div class="gs__col gs__col--lg-3 gs__col--md-3 gs__col--sm-6 gs__col--xs-12 p8"&gt;
		&lt;section class="card"&gt;
			&lt;div class="card__img"&gt;
				&lt;a href="#"&gt;&lt;img src="http://satyr.io/252x252/3" alt="ダミー画像"&gt;&lt;/a&gt;
			&lt;/div&gt;
			&lt;!-- /.card__img --&gt;

			&lt;div class="card__body"&gt;
				&lt;p class="fz14"&gt;&lt;b&gt;511520&lt;/b&gt;&lt;/p&gt;

				&lt;h1 class="mt5 fz16 font-tc6"&gt;胡蝶蘭　3本立（開花輪白24以上）赤系ラッピング&lt;/h1&gt;

				&lt;div class="mt5 py5 border border--top-1 border--bottom-1 border-tc10"&gt;
					&lt;p class="fz14"&gt;日持ちの良い胡蝶蘭は、どんなお祝いにも相応しい安心の贈り物です。&lt;/p&gt;
				&lt;/div&gt;
				&lt;!-- /.card__line --&gt;

				&lt;p class="mt5 fz16"&gt;&lt;b&gt;22,000円（税込）&lt;/b&gt;&lt;/p&gt;

				&lt;p class="mt5 fz12"&gt;鉢物&lt;br&gt;開花輪24輪以上&lt;/p&gt;
			&lt;/div&gt;
			&lt;!-- /.card__body --&gt;

			&lt;div class="card__foot"&gt;
				&lt;div class="gs m-n5"&gt;
					&lt;div class="gs__col gs__col--sm-3 p5"&gt;
						&lt;a href="" class="btn btn--card-detail btn--block btn--bg-tc-1 btn--border-tc-8 btn--font-tc-8"&gt;詳細&lt;/a&gt;
					&lt;/div&gt;
					&lt;!-- /.gs__col --&gt;

					&lt;div class="gs__col gs__col--sm-9 p5"&gt;
						&lt;a href="" class="btn btn--card-cart btn--block btn--bg-tc-7 btn--border-tc-7 btn--font-tc-1"&gt;&lt;i class="fas fa-shopping-cart fa-fw"&gt;&lt;/i&gt;カートに入れる&lt;/a&gt;
					&lt;/div&gt;
					&lt;!-- /.gs__col --&gt;
				&lt;/div&gt;
				&lt;!-- /.gs --&gt;
			&lt;/div&gt;
			&lt;!-- /.card__foot --&gt;
		&lt;/section&gt;
		&lt;!-- /.card --&gt;
	&lt;/div&gt;
	&lt;!-- /.gs__col --&gt;

	&lt;div class="gs__col gs__col--lg-3 gs__col--md-3 gs__col--sm-6 gs__col--xs-12 p8"&gt;
		&lt;section class="card"&gt;
			&lt;div class="card__img"&gt;
				&lt;a href="#"&gt;&lt;img src="http://satyr.io/252x252/4" alt="ダミー画像"&gt;&lt;/a&gt;
			&lt;/div&gt;
			&lt;!-- /.card__img --&gt;

			&lt;div class="card__body"&gt;
				&lt;p class="fz14"&gt;&lt;b&gt;511520&lt;/b&gt;&lt;/p&gt;

				&lt;h1 class="mt5 fz16 font-tc6"&gt;胡蝶蘭　3本立（開花輪白24以上）赤系ラッピング&lt;/h1&gt;

				&lt;div class="mt5 py5 border border--top-1 border--bottom-1 border-tc10"&gt;
					&lt;p class="fz14"&gt;日持ちの良い胡蝶蘭は、どんなお祝いにも相応しい安心の贈り物です。&lt;/p&gt;
				&lt;/div&gt;
				&lt;!-- /.card__line --&gt;

				&lt;p class="mt5 fz16"&gt;&lt;b&gt;22,000円（税込）&lt;/b&gt;&lt;/p&gt;

				&lt;p class="mt5 fz12"&gt;鉢物&lt;br&gt;開花輪24輪以上&lt;/p&gt;
			&lt;/div&gt;
			&lt;!-- /.card__body --&gt;

			&lt;div class="card__foot"&gt;
				&lt;div class="gs m-n5"&gt;
					&lt;div class="gs__col gs__col--sm-3 p5"&gt;
						&lt;a href="" class="btn btn--card-detail btn--block btn--bg-tc-1 btn--border-tc-8 btn--font-tc-8"&gt;詳細&lt;/a&gt;
					&lt;/div&gt;
					&lt;!-- /.gs__col --&gt;

					&lt;div class="gs__col gs__col--sm-9 p5"&gt;
						&lt;a href="" class="btn btn--card-cart btn--block btn--bg-tc-7 btn--border-tc-7 btn--font-tc-1"&gt;&lt;i class="fas fa-shopping-cart fa-fw"&gt;&lt;/i&gt;カートに入れる&lt;/a&gt;
					&lt;/div&gt;
					&lt;!-- /.gs__col --&gt;
				&lt;/div&gt;
				&lt;!-- /.gs --&gt;
			&lt;/div&gt;
			&lt;!-- /.card__foot --&gt;
		&lt;/section&gt;
		&lt;!-- /.card --&gt;
	&lt;/div&gt;
	&lt;!-- /.gs__col --&gt;
&lt;/div&gt;
&lt;!-- /.gs --&gt;
```
*/
/*
#styleguide
上にボタンがつく場合
トップページで使用
```
&lt;section class="card"&gt;
	&lt;div class="card__head"&gt;
		&lt;p&gt;&lt;a href="" class="btn btn--type btn--block"&gt;&lt;b&gt;胡蝶蘭&lt;/b&gt;&lt;/a&gt;&lt;/p&gt;
		&lt;p class="py10"&gt;格調高い胡蝶蘭はお祝いの定番。花キューピットの胡蝶蘭なら品質はもちろん、お花屋さんが直接配達・設置するから安心のビジネスギフト。&lt;/p&gt;
	&lt;/div&gt;
	&lt;!-- /.card__head --&gt;

	&lt;div class="card__img"&gt;
		&lt;a href="#"&gt;&lt;img src="http://satyr.io/252x252/" alt="ダミー画像"&gt;&lt;/a&gt;
	&lt;/div&gt;
	&lt;!-- /.card__img --&gt;

	&lt;div class="card__body"&gt;
		&lt;p class="fz14"&gt;&lt;b&gt;511520&lt;/b&gt;&lt;/p&gt;

		&lt;h1 class="mt5 fz16 font-tc6"&gt;胡蝶蘭　3本立（開花輪白24以上）赤系ラッピング&lt;/h1&gt;

		&lt;p class="mt5 fz16"&gt;&lt;b&gt;22,000円（税込）&lt;/b&gt;&lt;/p&gt;
	&lt;/div&gt;
	&lt;!-- /.card__body --&gt;

	&lt;div class="card__foot"&gt;
		&lt;div class="gs m-n5"&gt;
			&lt;div class="gs__col gs__col--sm-12 p5"&gt;
				&lt;a href="" class="btn btn--card-cart btn--block btn--bg-tc-7 btn--border-tc-7 btn--font-tc-1"&gt;&lt;i class="fas fa-shopping-cart fa-fw"&gt;&lt;/i&gt;カートに入れる&lt;/a&gt;
			&lt;/div&gt;
			&lt;!-- /.gs__col --&gt;

			&lt;div class="gs__col gs__col--sm-12 p5"&gt;
				&lt;a href="" class="btn btn--item btn--block"&gt;胡蝶蘭 一覧へ&lt;/a&gt;
			&lt;/div&gt;
			&lt;!-- /.gs__col --&gt;
		&lt;/div&gt;
		&lt;!-- /.gs --&gt;
	&lt;/div&gt;
	&lt;!-- /.card__foot --&gt;
&lt;/section&gt;
&lt;!-- /.card --&gt;


```
*/
/*
#styleguide

トップページ &gt; 用途から選ぶ
```
&lt;div class="gs m-n8"&gt;
	&lt;div class="gs__col gs__col--lg-6 gs__col--md-4 gs__col--sm-6 gs__col--xs-12 p8"&gt;
		&lt;section class="card card--purpose"&gt;
			&lt;div class="card__head"&gt;
				&lt;a href="#"&gt;&lt;i class="fas fa-angle-right"&gt;&lt;/i&gt;開店祝い&lt;/a&gt;
			&lt;/div&gt;
			&lt;!-- /.card__head --&gt;

			&lt;div class="card__body"&gt;
			&lt;/div&gt;
			&lt;!-- /.card__body --&gt;
		&lt;/section&gt;
		&lt;!-- /.card --&gt;
	&lt;/div&gt;
	&lt;!-- /.gs__col --&gt;

	&lt;div class="gs__col gs__col--lg-6 gs__col--md-4 gs__col--sm-6 gs__col--xs-12 p8"&gt;
		&lt;section class="card card--purpose"&gt;
			&lt;div class="card__head"&gt;
				&lt;a href="#"&gt;&lt;i class="fas fa-angle-right"&gt;&lt;/i&gt;各種お祝い&lt;/a&gt;
			&lt;/div&gt;
			&lt;!-- /.card__head --&gt;

			&lt;div class="card__body"&gt;

			&lt;/div&gt;
			&lt;!-- /.card__body --&gt;
		&lt;/section&gt;
		&lt;!-- /.card --&gt;
	&lt;/div&gt;
	&lt;!-- /.gs__col --&gt;

	&lt;div class="gs__col gs__col--lg-6 gs__col--md-4 gs__col--sm-6 gs__col--xs-12 p8"&gt;
		&lt;section class="card card--purpose"&gt;
			&lt;div class="card__head"&gt;
				&lt;a href="#"&gt;&lt;i class="fas fa-angle-right"&gt;&lt;/i&gt;価格から選ぶ&lt;/a&gt;
			&lt;/div&gt;
			&lt;!-- /.card__head --&gt;

			&lt;div class="card__body"&gt;
			&lt;/div&gt;
			&lt;!-- /.card__body --&gt;
		&lt;/section&gt;
		&lt;!-- /.card --&gt;
	&lt;/div&gt;
	&lt;!-- /.gs__col --&gt;

	&lt;div class="gs__col gs__col--lg-6 gs__col--md-4 gs__col--sm-6 gs__col--xs-12 p8"&gt;
		&lt;section class="card card--purpose"&gt;
			&lt;div class="card__head"&gt;
				&lt;a href="#"&gt;&lt;i class="fas fa-angle-right"&gt;&lt;/i&gt;お供え・ご葬儀&lt;/a&gt;
			&lt;/div&gt;
			&lt;!-- /.card__head --&gt;

			&lt;div class="card__body"&gt;

			&lt;/div&gt;
			&lt;!-- /.card__body --&gt;
		&lt;/section&gt;
		&lt;!-- /.card --&gt;
	&lt;/div&gt;
	&lt;!-- /.gs__col --&gt;
&lt;/div&gt;
&lt;!-- /.gs --&gt;
```
*/
/* ==========================================================================
   ページ全体
   ========================================================================== */
.page {
  overflow: hidden;
}

/* ==========================================================================
   ヘッダー
   ========================================================================== */
.header__title {
  padding: 30px 0;
  display: flex;
  justify-content: center;
}
.header__lead {
  margin-left: 30px;
  padding-left: 30px;
  display: flex;
  align-items: center;
  line-height: 1.77;
  font-weight: bold;
  font-size: 24rem;
  border-left: 2px solid #000;
}
@media only screen and (max-width: 767px) {
  .header__title {
    padding: 5.3333333333%;
  }
  .header__title a {
    width: 30.9333333333%;
  }
  .header__lead {
    margin-left: 4.53%;
    padding-left: 4.53%;
    line-height: 1.56;
    font-size: 16rem;
  }
}

/* ==========================================================================
   ナビゲーション
   ========================================================================== */
.global-nav-wrap {
  text-align: center;
  background-color: #bbb;
}

.global-nav {
  display: inline-flex;
}
.global-nav__item:not(:first-child) span {
  border-left: 1px solid #ddd;
}
.global-nav__item a {
  padding: 10px 0;
  display: block;
  line-height: 1;
  font-weight: bold;
  color: #fff;
}
.global-nav__item a:hover, .global-nav__item a:focus {
  text-decoration: none;
  background-color: #999;
}
.global-nav__item span {
  width: 275px;
  height: 47px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.global-nav__item i {
  margin-right: 10px;
  font-size: 28rem;
}
@media only screen and (max-width: 767px) {
  .global-nav {
    padding: 0 5.33%;
    display: flex;
    flex-wrap: wrap;
  }
  .global-nav__item {
    width: 50%;
  }
  .global-nav__item:nth-child(3) {
    border-top: 1px solid #ddd;
  }
  .global-nav__item:nth-child(3) span {
    border-left: 0;
  }
  .global-nav__item:nth-child(4) {
    border-top: 1px solid #ddd;
  }
  .global-nav__item span {
    width: 100%;
  }
}

/* ==========================================================================
   コンテンツ
   ========================================================================== */
.contents__inr {
  padding: 0 100px;
}
@media only screen and (max-width: 1299px) {
  .contents__inr {
    padding: 0 7.6923076923%;
  }
}
.contents__body {
  padding: 5.3846153846% 0;
}
.contents .feature {
  font-feature-settings: "palt";
}
@media only screen and (max-width: 1299px) {
  .contents__inr {
    padding: 0 7.6923076923%;
  }
}
@media only screen and (max-width: 767px) {
  .contents__inr {
    padding: 0 5.3333333333%;
  }
  .contents__body {
    padding: 13.3333333333% 0;
  }
}

.hero {
  padding-top: 70px;
  background-color: #eee;
  position: relative;
}
.hero__inr {
  width: 550px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.hero__body {
  width: 1740px;
}
@media only screen and (max-width: 767px) {
  .hero {
    padding-top: 0;
  }
  .hero__inr {
    width: 100%;
    height: auto;
  }
  .hero__body {
    width: 100%;
    height: auto;
    margin-left: 0;
    position: relative;
    top: 0;
    left: 0;
  }
}

.no-slide {
  width: 1740px;
  padding-bottom: 114px;
  display: flex;
  justify-content: center;
}
.no-slide li {
  padding: 0 15px;
}

.slick-slide {
  padding: 0 15px;
}
@media only screen and (max-width: 767px) {
  .slick-slide {
    padding: 0;
  }
}

.headline {
  text-align: center;
}
.headline__title {
  display: inline-block;
  line-height: 1;
  font-size: 26rem;
  text-align: center;
}
.headline__title .fas {
  margin-right: 0.5em;
}
.headline__title-en {
  margin-top: 17px;
  padding-top: 20px;
  display: block;
  font-size: 12rem;
  letter-spacing: 0.15em;
  border-top: 1px solid #000;
}
.headline--popular .headline__title {
  font-size: 20rem;
}
.headline--popular .headline__title-en {
  font-size: 10rem;
}

.box-posts:not(:first-child) {
  margin-top: 70px;
}
.box-posts__body {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.box-posts__more {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.box-posts__more a {
  width: 340px;
}
.box-posts__foot {
  margin-top: 50px;
}
@media only screen and (max-width: 767px) {
  .box-posts__body {
    margin-top: 35px;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
  .box-posts__more {
    margin-top: 30px;
  }
  .box-posts__more a {
    width: 100%;
  }
}

.box-article {
  max-width: 800px;
  padding: 0 6.1538461538%;
  margin: 0 auto;
  background-color: #fff;
}
.box-article__inr {
  padding: 50px 0 70px;
}
.box-article__body {
  padding-top: 30px;
  /**
   * Unreset CSS
   *
   * Copyright (C) 2016 Kite (ixkaito@gmail.com)
   * License MIT
   * Version 1.0.0
   *
   * Unreset CSS restores browsers' default element styles which are reset by
   * Eric Meyer's Reset CSS, YUI 3 Reset CSS, HTML5 Reset Stylesheet of HTML5
   * Doctor, or Tim Murtaugh's HTML5 Reset.
   */
  /* ==========================================================================
     WordPress が出力するクラス
     ========================================================================== */
}
.box-article__body p {
  margin: 1em 0;
}
.box-article__body blockquote,
.box-article__body figure {
  margin: 1em 40px;
}
.box-article__body q {
  quotes: "“" "”" "‘" "’";
}
.box-article__body q:before {
  content: open-quote;
}
.box-article__body q:after {
  content: close-quote;
}
.box-article__body hr {
  border: 1px inset;
  box-sizing: border-box;
  margin: 0.5em autl;
}
.box-article__body h1 {
  font-size: 2em;
  font-weight: bold;
  margin: 0.67em 0;
}
.box-article__body h2 {
  font-size: 1.5em;
  font-weight: bold;
  margin: 0.83em 0;
}
.box-article__body h3 {
  font-size: 1.17em;
  font-weight: bold;
  margin: 1em 0;
}
.box-article__body h4 {
  font-size: 1em;
  font-weight: bold;
  margin: 1.33em 0;
}
.box-article__body h5 {
  font-size: 0.83em;
  font-weight: bold;
  margin: 1.67em 0;
}
.box-article__body h6 {
  font-size: 0.67em;
  font-weight: bold;
  margin: 2.33em 0;
}
.box-article__body table {
  border-collapse: separate;
  border-spacing: 2px;
  border-color: gray;
}
.box-article__body thead,
.box-article__body tbody,
.box-article__body tfoot,
.box-article__body tr {
  border-color: inherit;
  vertical-align: middle;
}
.box-article__body td, .box-article__body th {
  padding: 1px;
  vertical-align: inherit;
}
.box-article__body th {
  font-weight: bold;
}
.box-article__body caption {
  text-align: center;
}
.box-article__body ul, .box-article__body menu {
  list-style-type: disc;
  margin: 1em 0;
  padding: 0 0 0 40px;
}
.box-article__body ol {
  list-style-type: decimal;
  margin: 1em 0;
  padding: 0 0 0 40px;
}
.box-article__body ul ul, .box-article__body ol ul {
  list-style-type: circle;
}
.box-article__body ul ul ul, .box-article__body ul ol ul, .box-article__body ol ul ul, .box-article__body ol ol ul {
  list-style-type: square;
}
.box-article__body dd {
  margin: 0 0 0 40px;
}
.box-article__body dl {
  margin: 1em 0;
}
.box-article__body ul ul, .box-article__body ul ol, .box-article__body ul menu, .box-article__body ul dl, .box-article__body ol ul, .box-article__body ol ol, .box-article__body ol menu, .box-article__body ol dl, .box-article__body menu ul, .box-article__body menu ol, .box-article__body menu menu, .box-article__body menu dl, .box-article__body dl ul, .box-article__body dl ol, .box-article__body dl menu, .box-article__body dl dl {
  margin: 0;
}
.box-article__body legend {
  padding: 0 2px;
}
.box-article__body fieldset {
  border-style: groove;
  border-width: 2px;
  border: 2px groove ThreeDFace;
  margin: 0 2px;
  padding: 0 2px 3px;
  -webkit-padding-before: 0.35em;
  -webkit-padding-start: 0.75em;
  -webkit-padding-end: 0.75em;
  -webkit-padding-after: 0.625em;
}
.box-article__body ins {
  background-color: transparent;
  font-weight: inherit;
  text-decoration: underline;
}
.box-article__body b, .box-article__body strong {
  font-weight: bold;
}
.box-article__body i, .box-article__body cite, .box-article__body em, .box-article__body var, .box-article__body address, .box-article__body dfn {
  font-style: italic;
  font-weight: inherit;
}
.box-article__body abbr[title], .box-article__body dfn[title] {
  border-bottom: 0;
  cursor: default;
  font-weight: inherit;
}
.box-article__body tt, .box-article__body code, .box-article__body kbd, .box-article__body samp {
  font-family: monospace;
  font-weight: inherit;
}
.box-article__body pre {
  font-family: monospace;
  margin: 1em 0;
  white-space: pre;
}
.box-article__body mark {
  background-color: yellow;
  color: black;
  font-style: normal;
  font-weight: inherit;
}
.box-article__body big {
  font-size: larger;
  font-weight: inherit;
}
.box-article__body small {
  font-size: smaller;
  font-weight: inherit;
}
.box-article__body sub, .box-article__body sup {
  font-weight: inherit;
  line-height: inherit;
  position: static;
}
.box-article__body sub {
  font-size: smaller;
  bottom: 0;
  vertical-align: sub;
}
.box-article__body sup {
  font-size: smaller;
  top: 0;
  vertical-align: super;
}
.box-article__body ruby &gt; rt {
  font-size: 50%;
}
.box-article__body iframe {
  border: 2px inset;
}
.box-article__body .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.box-article__body .alignleft {
  float: left;
  margin-right: 1em;
}
.box-article__body .alignright {
  float: right;
  margin-left: 1em;
}
.box-article__thumbnail {
  margin-bottom: 30px;
}
.box-article__lbl {
  min-width: 130px;
  padding: 9px 5px;
  margin-right: 10px;
  display: inline-block;
  line-height: 1;
  font-size: 14rem;
  color: #fff;
  text-align: center;
  background-color: #000;
}
.box-article__lbl .fas {
  margin-right: 0.5em;
}
.box-article__lbl--advice {
  background-color: #92314e;
}
.box-article__date {
  font-size: 14rem;
  color: #999;
}
.box-article__title {
  margin-top: 25px;
  font-size: 24rem;
}
.box-article__sns {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}
.box-article__keywords {
  margin: 30px -10px 0;
}
@media only screen and (max-width: 767px) {
  .box-article {
    padding: 0 5.3333333333%;
  }
  .box-article__inr {
    padding: 20px 0 40px;
  }
  .box-article__sns {
    margin-top: 40px;
  }
  .box-article__keywords {
    margin-top: 25px;
  }
}

.box-popular:not(:first-child) {
  margin-top: 65px;
}
.box-popular__body {
  padding-top: 50px;
}
@media only screen and (max-width: 767px) {
  .box-popular {
    padding-top: 35px;
  }
  .box-popular:not(:first-child) {
    margin-top: 50px;
  }
}

.popular-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
@media only screen and (max-width: 767px) {
  .popular-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card-post__img {
  width: 100%;
  aspect-ratio: 1.33;
}
.card-post__img img {
  object-fit: cover;
}
.card-post__body {
  padding-top: 12px;
}
.card-post__title {
  font-weight: normal;
  font-size: 14px;
}
.card-post__date {
  display: none;
}

.popular-keywords {
  text-align: center;
}

.box-search {
  width: 400px;
  margin: 50px auto 0;
}
.box-search__input {
  width: calc(100% - 44px);
  padding: 0 0.5em;
  float: left;
  font-size: 14rem;
  vertical-align: top;
  outline: 0;
  border-radius: 0;
}
.box-search__btn {
  width: 44px;
  border-radius: 0;
  border-left: 0;
  background: #000 url(https://www.winfrontier.com/wp-content/themes/WINFrontier/img/creative-mv/search.svg) center center no-repeat;
  background-size: 60% 60%;
}
.box-search__input, .box-search__btn {
  height: 44px;
  border: 1px solid #000;
}
@media only screen and (max-width: 767px) {
  .box-search {
    width: 100%;
    margin-top: 35px;
  }
}

.btn-sns {
  height: 50px;
  display: grid;
  place-items: center;
}
.btn-sns img {
  width: 32px;
}
.btn-sns--facebook {
  background-color: #3a589b;
}
.btn-sns--twitter {
  background-color: #598dca;
}
.btn-sns--line {
  background-color: #31c139;
}

.wp-pagenavi {
  display: flex;
  justify-content: center;
}
.wp-pagenavi a, .wp-pagenavi span {
  width: 30px;
  height: 30px;
  margin: 0 5px;
  display: grid;
  place-items: center;
  font-weight: bold;
}
.wp-pagenavi a:hover, .wp-pagenavi a:focus {
  opacity: 0.7;
}
.wp-pagenavi .first,
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .last {
  font-weight: bold;
  color: #fff;
  background-color: #14ae67;
  border-radius: 50%;
  text-decoration: none;
}
.wp-pagenavi .current {
  color: #14ae67;
}

/* ==========================================================================
   バナー
   ========================================================================== */
.box-bnr {
  display: grid;
  grid-template-columns: repeat(2, 30.9090909091%);
  gap: 3.6363636364%;
  justify-content: center;
}
.box-bnr a {
  display: block;
}
@media only screen and (max-width: 767px) {
  .box-bnr {
    display: block;
  }
  .box-bnr a:not(:first-child) {
    margin-top: 6.6666666667%;
  }
}

/* ==========================================================================
   フッター
   ========================================================================== */
.footer {
  text-align: center;
  background-color: #333;
}
.footer__inr {
  padding: 50px 0 35px;
}
.footer__copyright {
  line-height: 1;
  font-size: 12rem;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .footer__inr {
    padding: 35px 0 30px;
  }
}

.sns-nav {
  display: flex;
  justify-content: center;
}
.sns-nav__item a {
  width: 70px;
  margin: 0 14px;
  display: block;
}
.sns-nav__item a:hover, .sns-nav__item a:focus {
  text-decoration: none;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  .sns-nav__item a {
    width: 50px;
  }
}

.foot-nav {
  margin: 50px 0 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.foot-nav__item {
  padding: 0 9px;
}
.foot-nav__item:not(:first-child) {
  border-left: 1px solid #fff;
}
.foot-nav__item a {
  display: block;
  line-height: 1;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .foot-nav {
    margin: 35px 0 55px;
    padding: 0 30px;
  }
  .foot-nav__item:nth-child(3) {
    margin-top: 20px;
    border: 0;
  }
  .foot-nav__item:nth-child(4) {
    margin-top: 20px;
  }
  .foot-nav__item a {
    white-space: nowrap;
  }
}

.slick-dots {
  width: 100%;
  height: 114px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slick-dots li {
  width: 14px;
  height: 14px;
  margin: 0 5px;
  box-sizing: border-box;
  display: inline-block;
}
.slick-dots li button {
  width: 14px;
  height: 14px;
  display: block;
  text-indent: 110%;
  white-space: nowrap;
  overflow: hidden;
  border-radius: 50%;
  background-color: #ccc;
  border: 0;
  font-size: 0;
}
.slick-dots li.slick-active button {
  background-color: #aaa;
}
@media only screen and (max-width: 767px) {
  .slick-dots {
    height: 64px;
  }
}

.wp-members fieldset {
  border: 0;
}
.wp-members fieldset legend {
  margin-bottom: 25px;
  font-weight: bold;
  font-size: 24rem;
}
.wp-members .div_text {
  margin-top: 5px;
  margin-bottom: 50px;
}
.wp-members .button_div {
  margin-bottom: 50px;
}
.wp-members .button_div [type=submit] {
  width: 260px;
  padding: 0.9em 1.5em;
  margin: 50px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  font-weight: bold;
  font-size: 18rem;
  text-decoration: none;
  border: 2px solid #fff;
  border-radius: 100vh;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  color: #fff;
  background: #000 url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAcCAQAAAC5HDVdAAAAxklEQVR4Aa3VJUIAARRF0YE14O7uTsG9YAXXDBGJSKazNdzd3S8F+f2/s4A7Pi/4xSyLgQ5LAMxqYiGs8GvKnwtllX9fTHiD4axjfdDvTSayj/VOlzeZxjHWK63eZD5nWI/UepOl3GDdUulNVvOAdU2hN9nAI9YZ2d5kB69YB6R5k718YO0Q500O84m1TpQ6GK285F3i9Q9F+NrkKF/sG4qUn94dldqfQ53299Wm/cF2iydAO1KT2hmdVg39MgDzgQ5zLCk632KbuEnjUzuuAAAAAElFTkSuQmCC) right center/20px 14px no-repeat;
}
.wp-members .button_div [type=submit]:hover, .wp-members .button_div [type=submit]:focus {
  opacity: 0.7;
}
.wp-members .button_div + .req-text {
  display: none;
}
.wp-members .link-text a {
  text-decoration: underline;
}
.wp-members .req {
  margin: 0 5px;
  display: inline-block;
  position: relative;
  font-size: 0;
  vertical-align: middle;
}
.wp-members .req::after {
  content: "必須（Required）";
  min-width: 3em;
  padding: 0.1em 0.3em;
  display: inline-block;
  line-height: 1.2;
  font-weight: bold;
  font-size: 12px;
  color: #fff;
  text-align: center;
  border: 1px solid transparent;
  border-radius: 0.313em;
  background-color: #cc3333;
  border-color: #cc3333;
}
.wp-members #wpmem_login .link-text-register {
  display: none;
}

.box-user {
  position: absolute;
  top: 30rem;
  right: 0;
  text-align: right;
}
.box-user__logout {
  margin-top: 75px;
  font-size: 14rem;
}
.box-user__logout a {
  color: #888;
}
@media only screen and (max-width: 999px) {
  .box-user {
    height: 40px;
    padding: 0 5.3333333333%;
    position: static;
    display: flex;
    justify-content: space-between;
  }
  .box-user br {
    display: none;
  }
  .box-user b {
    margin-left: 0.3em;
  }
  .box-user__logout {
    margin-top: 0;
  }
}

/*!
style.css Modified: @@buildTime Editor: Toshiyuki Hara */
/*# sourceMappingURL=style-creative-sv.css.map */</pre></body></html>