@charset "UTF-8";
/*-- libフォルダの中の_index.scss --*/
:root {
  --theme-color-1: #fff;
  --theme-color-2: #000;
  --theme-color-3: #ef872c;
  --theme-color-4: #e83428;
  --theme-color-5: #f3f4f5;
  --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を使う
```
<p class="ff-gothic">窓も扉のかっこう棒手がゴーシュで叫ぶ音楽ました。</p>
```
*/
.ff-mincho {
  font-family: true;
}

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

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

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

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

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

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

/*
#styleguide
マージン

marginに5pxずつ50pxまで
```
<div class="mt0">テキスト</div>
<div class="mt5">テキスト</div>
<div class="mt10">テキスト</div>
<div class="mt50">テキスト</div>
```
*/
/* ==========================================================================
   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まで
```
<div class="pt0">テキスト</div>
<div class="pt5">テキスト</div>
<div class="pt10">テキスト</div>
<div class="pt50">テキスト</div>
```
*/
/* ==========================================================================
   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まで
```
<div class="fz12">テキスト</div>
<div class="fz18">テキスト</div>
<div class="fz24">テキスト</div>
<div class="fz30">テキスト</div>
<div class="fz36">テキスト</div>
<div class="fz42">テキスト</div>
```
*/
/* ==========================================================================
   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）による表示/非表示
<br>タグに使うと表示幅によって改行したり、改行を取ったりできる

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にすること
```

<!-- class名をcfとした場合 -->
<div class="cf">
	<!-- フォームパーツ -->
</div>

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

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

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

```
<div class="cf">
	<input type="text" value="readonly" readonly>
</div>
```
*/
/*
#styleguide
チェックボックス

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

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

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

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

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

テキストテキストテキストテキスト
```
<div class="cf">
	<textarea></textarea>
</div>
```
*/
/*
#styleguide
エラーメッセージ

テキストテキストテキストテキスト
```
<div class="cf">
	<div class="cf-response-output">
		<div class="cf-validation-errors">エラーメッセージ</div>
	</div>
</div>
```
*/
/* ==========================================================================
   FORM PARTS
   ========================================================================== */
.cf input:not([type=checkbox]):not([type=radio]),
.cf select,
.cf 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;
}
.cf input:not([type=checkbox]):not([type=radio]).cf-not-valid,
.cf select.cf-not-valid,
.cf textarea.cf-not-valid {
  background-color: #fbeaea;
  border-color: #fbeaea;
}
.cf input:not([type=checkbox]):not([type=radio])[disabled],
.cf select[disabled],
.cf textarea[disabled] {
  opacity: 0.7;
}
.cf input:not([type=checkbox]):not([type=radio]):focus,
.cf select:focus,
.cf textarea:focus {
  box-shadow: 0 0 5px 0 #0bd;
}
.cf input:not([type=checkbox]):not([type=radio])::-ms-clear {
  display: none;
}
.cf input:not([type=checkbox]):not([type=radio])[readonly] {
  color: #000;
  background-color: #eee;
  border: 1px solid #ccc;
  opacity: 1;
}
.cf input:not([type=checkbox]):not([type=radio])[readonly]:focus {
  outline: none;
}
.cf input:not([type=checkbox]):not([type=radio])::-webkit-input-placeholder,
.cf textarea::-webkit-input-placeholder {
  padding-top: 0.3em;
  color: gray;
}
.cf input:not([type=checkbox]):not([type=radio])::-moz-placeholder,
.cf textarea::-moz-placeholder {
  color: gray;
}
.cf input:not([type=checkbox]):not([type=radio]):-ms-input-placeholder,
.cf textarea:-ms-input-placeholder {
  color: gray;
}
.cf [type=number] {
  -moz-appearance: textfield !important;
}
.cf [type=number]::-webkit-outer-spin-button, .cf [type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.cf [type=search] {
  outline-offset: -2px;
}
.cf [type=search]::-webkit-search-decoration {
  display: none;
}
.cf [type=search]::-webkit-search-cancel-button {
  display: none;
}
.cf [type=password]::-ms-reveal {
  display: none;
}
.cf select::-ms-expand {
  display: none;
}
.cf input:not([type=checkbox]):not([type=radio]),
.cf select {
  height: 34px;
}
.cf textarea {
  height: 200px;
  resize: vertical;
}
.cf .cf-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 .cf .cf-select {
  padding-right: 0;
  background-image: none;
}
.cf .cf-multiple {
  height: auto;
}
.cf .cf-label {
  display: inline-block;
  position: relative;
  line-height: 21px;
  font-size: 16rem;
  cursor: pointer;
}
.cf .cf-label::selection {
  background-color: rgba(255, 255, 255, 0);
}
.cf .cf-label::before, .cf .cf-label::after {
  content: "";
  width: 21px;
  height: 21px;
  position: absolute;
  top: 0;
  display: inline-block;
  line-height: 21px;
}
.cf .cf-label::before {
  border: 2px solid #ccc;
}
.cf .cf-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);
}
.cf .cf-label.cf-label--left {
  padding-left: 25px;
}
.cf .cf-label.cf-label--left::before, .cf .cf-label.cf-label--left::after {
  left: 0;
}
.cf .cf-label.cf-label--right {
  padding-right: 25px;
}
.cf .cf-label.cf-label--right::before, .cf .cf-label.cf-label--right::after {
  right: 0;
}
.cf .cf-label.cf-label--radio::before {
  border-radius: 50%;
}
.cf .cf-label.cf-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;
}
.cf .cf-label.cf-label--check::before {
  border-radius: 3px;
}
.cf .cf-label.cf-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;
}
.cf .cf-label + input + .cf-label {
  margin-left: 21px;
}
.cf [type=radio],
.cf [type=checkbox] {
  opacity: 0;
  appearance: none;
  position: absolute;
}
.cf [type=radio]:checked + .cf-label::after,
.cf [type=checkbox]:checked + .cf-label::after {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
.cf [type=radio][disabled] + .cf-label,
.cf [type=checkbox][disabled] + .cf-label {
  opacity: 0.7;
}
.cf [type=radio]:focus + .cf-label,
.cf [type=checkbox]:focus + .cf-label {
  box-shadow: 0 0 5px 0 #0bd;
}
.cf .cf-not-valid .cf-label::before {
  background-color: #fbeaea;
}
.cf .cf-response-output {
  margin: 40px 0;
  padding: 0;
}
.cf .cf-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;
}
.cf .cf-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;
}
.cf .cf-mail-sent-ok {
  display: none;
}
.cf .cf-not-valid-tip {
  display: block;
  font-size: 1em;
  color: #f00;
}
.cf .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: #ef872c !important;
}

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

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

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

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

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

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

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

.border-tc5 {
  border-color: #f3f4f5 !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付きなので使いどころに注意

```
<p class="font-tc3">テキストテキストテキストテキストテキストテキスト</p>
<p class="font-tc5">テキストテキストテキストテキストテキストテキスト</p>
<p class="font-tc7">テキストテキストテキストテキストテキストテキスト</p>
```
*/
/*
#styleguide
背景色のclass

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

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

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

```
<p class="border-tc3" style="border-width:3px;border-style:solid;">テキストテキストテキストテキストテキストテキスト</p>
<p class="border-tc5" style="border-width:3px;border-style:solid;">テキストテキストテキストテキストテキストテキスト</p>
<p class="border-tc7" style="border-width:3px;border-style:solid;">テキストテキストテキストテキストテキストテキスト</p>
```
*/
/* ==========================================================================
 *  
 *  _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
```
<div id="btn-page-top" class="btn-page-top btn-page-top--active" style="position: relative; right: auto; bottom: auto; ">
	<a href="#top" class="js-anchor">ページの先頭へ</a>
</div>
<!-- .btnPageTop -->
```
*/
/* ==========================================================================
 *  
 *  _lbl.scss
 *
 *  Last Modified: 2019/04/18
 *  Last Editor: Toshiyuki Hara
 *
   ========================================================================== */
.lbl {
  min-width: 3em;
  padding: calc(0.1em - (1em * 1.2 - 1em) / 2) 0.3em;
  margin: 0 0.5em;
  display: inline-block;
  line-height: 1.2;
  font-weight: bold;
  font-size: 12rem;
  color: #fff;
  text-align: center;
  background-color: #999;
  border: 1px solid transparent;
  border-radius: 0.3em;
}
@media only screen and (max-width: 767px) {
  .lbl {
    margin: 5px;
  }
}
.lbl--required {
  color: #fff;
  background-color: #cc3333;
  border-color: #cc3333;
}

/*
#overview
ラベル

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


```
<span class="lbl lbl--primary">ラベル</span>
<span class="lbl lbl--primary-outline">ラベル</span>
<span class="lbl lbl--secondary"><i class="fas fa-tag"></i>ラベル</span>
<span class="lbl lbl--success"><i class="fas fa-tag"></i>ラベル</span>
<span class="lbl lbl--info">ラベル</span>
<span class="lbl lbl--warning">ラベル</span>
<span class="lbl lbl--danger">ラベル</span>
```
*/
/* ==========================================================================
 *  
 *  _grid.scss
 *
 *  Last Modified: 2019/07/18
 *  Last Editor: Toshiyuki Hara
 *
   ========================================================================== */
.gs {
  display: flex;
  flex-wrap: wrap;
}
.gs--center {
  justify-content: center;
}
.gs--right {
  justify-content: flex-end;
}
.gs--around {
  justify-content: space-around;
}
.gs--between {
  justify-content: space-between;
}
.gs--middle {
  align-items: center;
}
.gs--stretch {
  align-items: stretch;
}
.gs--top {
  align-items: flex-start;
}
.gs--bottom {
  align-items: flex-end;
}
.gs--reverse {
  flex-direction: row-reverse;
}
.gs__col {
  max-width: 100%;
  min-height: 1px;
  position: relative;
  flex: 0 0 100%;
}
@media only screen and (min-width: 320px) {
  .gs__col--xs-1 {
    max-width: 8.3333333333%;
    flex: 0 0 8.3333333333%;
  }
  .gs__col--xs-2 {
    max-width: 16.6666666667%;
    flex: 0 0 16.6666666667%;
  }
  .gs__col--xs-3 {
    max-width: 25%;
    flex: 0 0 25%;
  }
  .gs__col--xs-4 {
    max-width: 33.3333333333%;
    flex: 0 0 33.3333333333%;
  }
  .gs__col--xs-5 {
    max-width: 41.6666666667%;
    flex: 0 0 41.6666666667%;
  }
  .gs__col--xs-6 {
    max-width: 50%;
    flex: 0 0 50%;
  }
  .gs__col--xs-7 {
    max-width: 58.3333333333%;
    flex: 0 0 58.3333333333%;
  }
  .gs__col--xs-8 {
    max-width: 66.6666666667%;
    flex: 0 0 66.6666666667%;
  }
  .gs__col--xs-9 {
    max-width: 75%;
    flex: 0 0 75%;
  }
  .gs__col--xs-10 {
    max-width: 83.3333333333%;
    flex: 0 0 83.3333333333%;
  }
  .gs__col--xs-11 {
    max-width: 91.6666666667%;
    flex: 0 0 91.6666666667%;
  }
  .gs__col--xs-12 {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .gs__col--push-xs-1 {
    left: 8.3333333333%;
  }
  .gs__col--push-xs-2 {
    left: 16.6666666667%;
  }
  .gs__col--push-xs-3 {
    left: 25%;
  }
  .gs__col--push-xs-4 {
    left: 33.3333333333%;
  }
  .gs__col--push-xs-5 {
    left: 41.6666666667%;
  }
  .gs__col--push-xs-6 {
    left: 50%;
  }
  .gs__col--push-xs-7 {
    left: 58.3333333333%;
  }
  .gs__col--push-xs-8 {
    left: 66.6666666667%;
  }
  .gs__col--push-xs-9 {
    left: 75%;
  }
  .gs__col--push-xs-10 {
    left: 83.3333333333%;
  }
  .gs__col--push-xs-11 {
    left: 91.6666666667%;
  }
  .gs__col--push-xs-12 {
    left: 100%;
  }
  .gs__col--pull-xs-1 {
    right: 8.3333333333%;
  }
  .gs__col--pull-xs-2 {
    right: 16.6666666667%;
  }
  .gs__col--pull-xs-3 {
    right: 25%;
  }
  .gs__col--pull-xs-4 {
    right: 33.3333333333%;
  }
  .gs__col--pull-xs-5 {
    right: 41.6666666667%;
  }
  .gs__col--pull-xs-6 {
    right: 50%;
  }
  .gs__col--pull-xs-7 {
    right: 58.3333333333%;
  }
  .gs__col--pull-xs-8 {
    right: 66.6666666667%;
  }
  .gs__col--pull-xs-9 {
    right: 75%;
  }
  .gs__col--pull-xs-10 {
    right: 83.3333333333%;
  }
  .gs__col--pull-xs-11 {
    right: 91.6666666667%;
  }
  .gs__col--pull-xs-12 {
    right: 100%;
  }
  .gs__col--offset-xs-1 {
    margin-left: 8.3333333333%;
  }
  .gs__col--offset-xs-2 {
    margin-left: 16.6666666667%;
  }
  .gs__col--offset-xs-3 {
    margin-left: 25%;
  }
  .gs__col--offset-xs-4 {
    margin-left: 33.3333333333%;
  }
  .gs__col--offset-xs-5 {
    margin-left: 41.6666666667%;
  }
  .gs__col--offset-xs-6 {
    margin-left: 50%;
  }
  .gs__col--offset-xs-7 {
    margin-left: 58.3333333333%;
  }
  .gs__col--offset-xs-8 {
    margin-left: 66.6666666667%;
  }
  .gs__col--offset-xs-9 {
    margin-left: 75%;
  }
  .gs__col--offset-xs-10 {
    margin-left: 83.3333333333%;
  }
  .gs__col--offset-xs-11 {
    margin-left: 91.6666666667%;
  }
  .gs__col--offset-xs-12 {
    margin-left: 100%;
  }
}
@media only screen and (min-width: 544px) {
  .gs__col--sm-1 {
    max-width: 8.3333333333%;
    flex: 0 0 8.3333333333%;
  }
  .gs__col--sm-2 {
    max-width: 16.6666666667%;
    flex: 0 0 16.6666666667%;
  }
  .gs__col--sm-3 {
    max-width: 25%;
    flex: 0 0 25%;
  }
  .gs__col--sm-4 {
    max-width: 33.3333333333%;
    flex: 0 0 33.3333333333%;
  }
  .gs__col--sm-5 {
    max-width: 41.6666666667%;
    flex: 0 0 41.6666666667%;
  }
  .gs__col--sm-6 {
    max-width: 50%;
    flex: 0 0 50%;
  }
  .gs__col--sm-7 {
    max-width: 58.3333333333%;
    flex: 0 0 58.3333333333%;
  }
  .gs__col--sm-8 {
    max-width: 66.6666666667%;
    flex: 0 0 66.6666666667%;
  }
  .gs__col--sm-9 {
    max-width: 75%;
    flex: 0 0 75%;
  }
  .gs__col--sm-10 {
    max-width: 83.3333333333%;
    flex: 0 0 83.3333333333%;
  }
  .gs__col--sm-11 {
    max-width: 91.6666666667%;
    flex: 0 0 91.6666666667%;
  }
  .gs__col--sm-12 {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .gs__col--push-sm-1 {
    left: 8.3333333333%;
  }
  .gs__col--push-sm-2 {
    left: 16.6666666667%;
  }
  .gs__col--push-sm-3 {
    left: 25%;
  }
  .gs__col--push-sm-4 {
    left: 33.3333333333%;
  }
  .gs__col--push-sm-5 {
    left: 41.6666666667%;
  }
  .gs__col--push-sm-6 {
    left: 50%;
  }
  .gs__col--push-sm-7 {
    left: 58.3333333333%;
  }
  .gs__col--push-sm-8 {
    left: 66.6666666667%;
  }
  .gs__col--push-sm-9 {
    left: 75%;
  }
  .gs__col--push-sm-10 {
    left: 83.3333333333%;
  }
  .gs__col--push-sm-11 {
    left: 91.6666666667%;
  }
  .gs__col--push-sm-12 {
    left: 100%;
  }
  .gs__col--pull-sm-1 {
    right: 8.3333333333%;
  }
  .gs__col--pull-sm-2 {
    right: 16.6666666667%;
  }
  .gs__col--pull-sm-3 {
    right: 25%;
  }
  .gs__col--pull-sm-4 {
    right: 33.3333333333%;
  }
  .gs__col--pull-sm-5 {
    right: 41.6666666667%;
  }
  .gs__col--pull-sm-6 {
    right: 50%;
  }
  .gs__col--pull-sm-7 {
    right: 58.3333333333%;
  }
  .gs__col--pull-sm-8 {
    right: 66.6666666667%;
  }
  .gs__col--pull-sm-9 {
    right: 75%;
  }
  .gs__col--pull-sm-10 {
    right: 83.3333333333%;
  }
  .gs__col--pull-sm-11 {
    right: 91.6666666667%;
  }
  .gs__col--pull-sm-12 {
    right: 100%;
  }
  .gs__col--offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  .gs__col--offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .gs__col--offset-sm-3 {
    margin-left: 25%;
  }
  .gs__col--offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .gs__col--offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .gs__col--offset-sm-6 {
    margin-left: 50%;
  }
  .gs__col--offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .gs__col--offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .gs__col--offset-sm-9 {
    margin-left: 75%;
  }
  .gs__col--offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .gs__col--offset-sm-11 {
    margin-left: 91.6666666667%;
  }
  .gs__col--offset-sm-12 {
    margin-left: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .gs__col--md-1 {
    max-width: 8.3333333333%;
    flex: 0 0 8.3333333333%;
  }
  .gs__col--md-2 {
    max-width: 16.6666666667%;
    flex: 0 0 16.6666666667%;
  }
  .gs__col--md-3 {
    max-width: 25%;
    flex: 0 0 25%;
  }
  .gs__col--md-4 {
    max-width: 33.3333333333%;
    flex: 0 0 33.3333333333%;
  }
  .gs__col--md-5 {
    max-width: 41.6666666667%;
    flex: 0 0 41.6666666667%;
  }
  .gs__col--md-6 {
    max-width: 50%;
    flex: 0 0 50%;
  }
  .gs__col--md-7 {
    max-width: 58.3333333333%;
    flex: 0 0 58.3333333333%;
  }
  .gs__col--md-8 {
    max-width: 66.6666666667%;
    flex: 0 0 66.6666666667%;
  }
  .gs__col--md-9 {
    max-width: 75%;
    flex: 0 0 75%;
  }
  .gs__col--md-10 {
    max-width: 83.3333333333%;
    flex: 0 0 83.3333333333%;
  }
  .gs__col--md-11 {
    max-width: 91.6666666667%;
    flex: 0 0 91.6666666667%;
  }
  .gs__col--md-12 {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .gs__col--push-md-1 {
    left: 8.3333333333%;
  }
  .gs__col--push-md-2 {
    left: 16.6666666667%;
  }
  .gs__col--push-md-3 {
    left: 25%;
  }
  .gs__col--push-md-4 {
    left: 33.3333333333%;
  }
  .gs__col--push-md-5 {
    left: 41.6666666667%;
  }
  .gs__col--push-md-6 {
    left: 50%;
  }
  .gs__col--push-md-7 {
    left: 58.3333333333%;
  }
  .gs__col--push-md-8 {
    left: 66.6666666667%;
  }
  .gs__col--push-md-9 {
    left: 75%;
  }
  .gs__col--push-md-10 {
    left: 83.3333333333%;
  }
  .gs__col--push-md-11 {
    left: 91.6666666667%;
  }
  .gs__col--push-md-12 {
    left: 100%;
  }
  .gs__col--pull-md-1 {
    right: 8.3333333333%;
  }
  .gs__col--pull-md-2 {
    right: 16.6666666667%;
  }
  .gs__col--pull-md-3 {
    right: 25%;
  }
  .gs__col--pull-md-4 {
    right: 33.3333333333%;
  }
  .gs__col--pull-md-5 {
    right: 41.6666666667%;
  }
  .gs__col--pull-md-6 {
    right: 50%;
  }
  .gs__col--pull-md-7 {
    right: 58.3333333333%;
  }
  .gs__col--pull-md-8 {
    right: 66.6666666667%;
  }
  .gs__col--pull-md-9 {
    right: 75%;
  }
  .gs__col--pull-md-10 {
    right: 83.3333333333%;
  }
  .gs__col--pull-md-11 {
    right: 91.6666666667%;
  }
  .gs__col--pull-md-12 {
    right: 100%;
  }
  .gs__col--offset-md-1 {
    margin-left: 8.3333333333%;
  }
  .gs__col--offset-md-2 {
    margin-left: 16.6666666667%;
  }
  .gs__col--offset-md-3 {
    margin-left: 25%;
  }
  .gs__col--offset-md-4 {
    margin-left: 33.3333333333%;
  }
  .gs__col--offset-md-5 {
    margin-left: 41.6666666667%;
  }
  .gs__col--offset-md-6 {
    margin-left: 50%;
  }
  .gs__col--offset-md-7 {
    margin-left: 58.3333333333%;
  }
  .gs__col--offset-md-8 {
    margin-left: 66.6666666667%;
  }
  .gs__col--offset-md-9 {
    margin-left: 75%;
  }
  .gs__col--offset-md-10 {
    margin-left: 83.3333333333%;
  }
  .gs__col--offset-md-11 {
    margin-left: 91.6666666667%;
  }
  .gs__col--offset-md-12 {
    margin-left: 100%;
  }
}
@media only screen and (min-width: 1100px) {
  .gs__col--lg-1 {
    max-width: 8.3333333333%;
    flex: 0 0 8.3333333333%;
  }
  .gs__col--lg-2 {
    max-width: 16.6666666667%;
    flex: 0 0 16.6666666667%;
  }
  .gs__col--lg-3 {
    max-width: 25%;
    flex: 0 0 25%;
  }
  .gs__col--lg-4 {
    max-width: 33.3333333333%;
    flex: 0 0 33.3333333333%;
  }
  .gs__col--lg-5 {
    max-width: 41.6666666667%;
    flex: 0 0 41.6666666667%;
  }
  .gs__col--lg-6 {
    max-width: 50%;
    flex: 0 0 50%;
  }
  .gs__col--lg-7 {
    max-width: 58.3333333333%;
    flex: 0 0 58.3333333333%;
  }
  .gs__col--lg-8 {
    max-width: 66.6666666667%;
    flex: 0 0 66.6666666667%;
  }
  .gs__col--lg-9 {
    max-width: 75%;
    flex: 0 0 75%;
  }
  .gs__col--lg-10 {
    max-width: 83.3333333333%;
    flex: 0 0 83.3333333333%;
  }
  .gs__col--lg-11 {
    max-width: 91.6666666667%;
    flex: 0 0 91.6666666667%;
  }
  .gs__col--lg-12 {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .gs__col--push-lg-1 {
    left: 8.3333333333%;
  }
  .gs__col--push-lg-2 {
    left: 16.6666666667%;
  }
  .gs__col--push-lg-3 {
    left: 25%;
  }
  .gs__col--push-lg-4 {
    left: 33.3333333333%;
  }
  .gs__col--push-lg-5 {
    left: 41.6666666667%;
  }
  .gs__col--push-lg-6 {
    left: 50%;
  }
  .gs__col--push-lg-7 {
    left: 58.3333333333%;
  }
  .gs__col--push-lg-8 {
    left: 66.6666666667%;
  }
  .gs__col--push-lg-9 {
    left: 75%;
  }
  .gs__col--push-lg-10 {
    left: 83.3333333333%;
  }
  .gs__col--push-lg-11 {
    left: 91.6666666667%;
  }
  .gs__col--push-lg-12 {
    left: 100%;
  }
  .gs__col--pull-lg-1 {
    right: 8.3333333333%;
  }
  .gs__col--pull-lg-2 {
    right: 16.6666666667%;
  }
  .gs__col--pull-lg-3 {
    right: 25%;
  }
  .gs__col--pull-lg-4 {
    right: 33.3333333333%;
  }
  .gs__col--pull-lg-5 {
    right: 41.6666666667%;
  }
  .gs__col--pull-lg-6 {
    right: 50%;
  }
  .gs__col--pull-lg-7 {
    right: 58.3333333333%;
  }
  .gs__col--pull-lg-8 {
    right: 66.6666666667%;
  }
  .gs__col--pull-lg-9 {
    right: 75%;
  }
  .gs__col--pull-lg-10 {
    right: 83.3333333333%;
  }
  .gs__col--pull-lg-11 {
    right: 91.6666666667%;
  }
  .gs__col--pull-lg-12 {
    right: 100%;
  }
  .gs__col--offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  .gs__col--offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .gs__col--offset-lg-3 {
    margin-left: 25%;
  }
  .gs__col--offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .gs__col--offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .gs__col--offset-lg-6 {
    margin-left: 50%;
  }
  .gs__col--offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .gs__col--offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .gs__col--offset-lg-9 {
    margin-left: 75%;
  }
  .gs__col--offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .gs__col--offset-lg-11 {
    margin-left: 91.6666666667%;
  }
  .gs__col--offset-lg-12 {
    margin-left: 100%;
  }
}
@media only screen and (min-width: 1300px) {
  .gs__col--xl-1 {
    max-width: 8.3333333333%;
    flex: 0 0 8.3333333333%;
  }
  .gs__col--xl-2 {
    max-width: 16.6666666667%;
    flex: 0 0 16.6666666667%;
  }
  .gs__col--xl-3 {
    max-width: 25%;
    flex: 0 0 25%;
  }
  .gs__col--xl-4 {
    max-width: 33.3333333333%;
    flex: 0 0 33.3333333333%;
  }
  .gs__col--xl-5 {
    max-width: 41.6666666667%;
    flex: 0 0 41.6666666667%;
  }
  .gs__col--xl-6 {
    max-width: 50%;
    flex: 0 0 50%;
  }
  .gs__col--xl-7 {
    max-width: 58.3333333333%;
    flex: 0 0 58.3333333333%;
  }
  .gs__col--xl-8 {
    max-width: 66.6666666667%;
    flex: 0 0 66.6666666667%;
  }
  .gs__col--xl-9 {
    max-width: 75%;
    flex: 0 0 75%;
  }
  .gs__col--xl-10 {
    max-width: 83.3333333333%;
    flex: 0 0 83.3333333333%;
  }
  .gs__col--xl-11 {
    max-width: 91.6666666667%;
    flex: 0 0 91.6666666667%;
  }
  .gs__col--xl-12 {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .gs__col--push-xl-1 {
    left: 8.3333333333%;
  }
  .gs__col--push-xl-2 {
    left: 16.6666666667%;
  }
  .gs__col--push-xl-3 {
    left: 25%;
  }
  .gs__col--push-xl-4 {
    left: 33.3333333333%;
  }
  .gs__col--push-xl-5 {
    left: 41.6666666667%;
  }
  .gs__col--push-xl-6 {
    left: 50%;
  }
  .gs__col--push-xl-7 {
    left: 58.3333333333%;
  }
  .gs__col--push-xl-8 {
    left: 66.6666666667%;
  }
  .gs__col--push-xl-9 {
    left: 75%;
  }
  .gs__col--push-xl-10 {
    left: 83.3333333333%;
  }
  .gs__col--push-xl-11 {
    left: 91.6666666667%;
  }
  .gs__col--push-xl-12 {
    left: 100%;
  }
  .gs__col--pull-xl-1 {
    right: 8.3333333333%;
  }
  .gs__col--pull-xl-2 {
    right: 16.6666666667%;
  }
  .gs__col--pull-xl-3 {
    right: 25%;
  }
  .gs__col--pull-xl-4 {
    right: 33.3333333333%;
  }
  .gs__col--pull-xl-5 {
    right: 41.6666666667%;
  }
  .gs__col--pull-xl-6 {
    right: 50%;
  }
  .gs__col--pull-xl-7 {
    right: 58.3333333333%;
  }
  .gs__col--pull-xl-8 {
    right: 66.6666666667%;
  }
  .gs__col--pull-xl-9 {
    right: 75%;
  }
  .gs__col--pull-xl-10 {
    right: 83.3333333333%;
  }
  .gs__col--pull-xl-11 {
    right: 91.6666666667%;
  }
  .gs__col--pull-xl-12 {
    right: 100%;
  }
  .gs__col--offset-xl-1 {
    margin-left: 8.3333333333%;
  }
  .gs__col--offset-xl-2 {
    margin-left: 16.6666666667%;
  }
  .gs__col--offset-xl-3 {
    margin-left: 25%;
  }
  .gs__col--offset-xl-4 {
    margin-left: 33.3333333333%;
  }
  .gs__col--offset-xl-5 {
    margin-left: 41.6666666667%;
  }
  .gs__col--offset-xl-6 {
    margin-left: 50%;
  }
  .gs__col--offset-xl-7 {
    margin-left: 58.3333333333%;
  }
  .gs__col--offset-xl-8 {
    margin-left: 66.6666666667%;
  }
  .gs__col--offset-xl-9 {
    margin-left: 75%;
  }
  .gs__col--offset-xl-10 {
    margin-left: 83.3333333333%;
  }
  .gs__col--offset-xl-11 {
    margin-left: 91.6666666667%;
  }
  .gs__col--offset-xl-12 {
    margin-left: 100%;
  }
}

@media only screen and (min-width: 320px) {
  .gs__col--xs-20p {
    max-width: 20%;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
  }
}
@media only screen and (min-width: 560px) {
  .gs__col--sm-20p {
    max-width: 20%;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
  }
}
@media only screen and (min-width: 768px) {
  .gs__col--md-20p {
    max-width: 20%;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
  }
}
@media only screen and (min-width: 1000px) {
  .gs__col--lg-20p {
    max-width: 20%;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
  }
}
@media only screen and (min-width: 1200px) {
  .gs__col--xl-20p {
    max-width: 20%;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
  }
}
/*
#overview
グリッドシステム

BootstrapのGrid systemとほぼ同じ

*/
/*
#styleguide


```
<div class="gs" style="border:2px solid #000;">
	<div class="gs__col gs__col--xl-1 gs__col--lg-1 gs__col--md-4 gs__col--sm-6 gs__col--xs-12" style="border:2px solid #999; height: 50px;">1</div>
	<div class="gs__col gs__col--xl-1 gs__col--lg-1 gs__col--md-4 gs__col--sm-6 gs__col--xs-12" style="border:2px solid #999;">2</div>
	<div class="gs__col gs__col--xl-1 gs__col--lg-1 gs__col--md-4 gs__col--sm-6 gs__col--xs-12" style="border:2px solid #999;">3</div>
	<div class="gs__col gs__col--xl-1 gs__col--lg-1 gs__col--md-3 gs__col--sm-6 gs__col--xs-12" style="border:2px solid #999;">4</div>
	<div class="gs__col gs__col--xl-1 gs__col--lg-1 gs__col--md-3 gs__col--sm-4 gs__col--xs-12" style="border:2px solid #999;">5</div>
	<div class="gs__col gs__col--xl-1 gs__col--lg-1 gs__col--md-3 gs__col--sm-4 gs__col--xs-12" style="border:2px solid #999;">6</div>
	<div class="gs__col gs__col--xl-1 gs__col--lg-1 gs__col--md-3 gs__col--sm-4 gs__col--xs-12" style="border:2px solid #999;">7</div>
	<div class="gs__col gs__col--xl-1 gs__col--lg-1 gs__col--md-2 gs__col--sm-2 gs__col--xs-12" style="border:2px solid #999;">8</div>
	<div class="gs__col gs__col--xl-1 gs__col--lg-1 gs__col--md-3 gs__col--sm-3 gs__col--xs-12" style="border:2px solid #999;">9</div>
	<div class="gs__col gs__col--xl-1 gs__col--lg-1 gs__col--md-5 gs__col--sm-1 gs__col--xs-12" style="border:2px solid #999;">10</div>
	<div class="gs__col gs__col--xl-1 gs__col--lg-1 gs__col--md-1 gs__col--sm-5 gs__col--xs-12" style="border:2px solid #999;">11</div>
	<div class="gs__col gs__col--xl-1 gs__col--lg-1 gs__col--md-1 gs__col--sm-1 gs__col--xs-12" style="border:2px solid #999;">12</div>
</div>
```
*/
/*
#styleguide
パディングとネガティブマージンを使ったレイアウト

要素間に隙間を作るため、gs__colをパディングで隙間を作りたいが
両端には隙間はいらない時はgsにネガティブマージンで相殺する

```
テスト
<div class="" style="border:2px solid #ff0000;">
	<div class="gs m-n10" style="background-color: rgba(153,153,153, .5);">
		<div class="gs__col gs__col--md-4 p10" style="background-color: rgba(153,	153,153, .5);"><div style="background-color: #ccc;height:50px">1</div></div>
		<div class="gs__col gs__col--md-4 p10" style="background-color: rgba(153,	153,153, .5);"><div style="background-color: #ccc;height:50px">2</div></div>
		<div class="gs__col gs__col--md-4 p10" style="background-color: rgba(153,	153,153, .5);"><div style="background-color: #ccc;height:50px">3</div></div>
		<div class="gs__col gs__col--md-4 p10" style="background-color: rgba(153,	153,153, .5);"><div style="background-color: #ccc;height:50px">4</div></div>
	</div>
</div>
```
*/
/*
#styleguide
.gs--center

flexboxのjustify-content: center;

```
<div class="gs gs--center mt30" style="border:2px solid #000;">
	<div class="gs__col gs__col--lg3 gs__col--md-2 gs__col--sm-1" style="border:2px solid #999; height: 50px;">1</div>
	<div class="gs__col gs__col--lg3 gs__col--md-2 gs__col--sm-1" style="border:2px solid #999;">2</div>
	<div class="gs__col gs__col--lg3 gs__col--md-2 gs__col--sm-1" style="border:2px solid #999;">3</div>
</div>
```
*/
/*
#styleguide
.gs--around

flexboxのjustify-content: space-around;

```
<div class="gs gs--around mt30" style="border:2px solid #000;height: 50px;">
	<div class="gs__col gs__col--xl-1 gs__col--lg-1 gs__col--md-4 gs__col--sm-6" style="border:2px solid #999;">1</div>
	<div class="gs__col gs__col--xl-1 gs__col--lg-1 gs__col--md-4 gs__col--sm-6" style="border:2px solid #999;">2</div>
	<div class="gs__col gs__col--xl-1 gs__col--lg-1 gs__col--md-4 gs__col--sm-6" style="border:2px solid #999;">3</div>
</div>
```
*/
/*
#styleguide
.gs--between

flexboxのjustify-content: space-between;

```
<div class="gs gs--between mt30" style="border:2px solid #000;height: 50px;">
	<div class="gs__col gs__col--xl-1 gs__col--lg-1 gs__col--md-4 gs__col--sm-6" style="border:2px solid #999;">1</div>
	<div class="gs__col gs__col--xl-1 gs__col--lg-1 gs__col--md-4 gs__col--sm-6" style="border:2px solid #999;">2</div>
	<div class="gs__col gs__col--xl-1 gs__col--lg-1 gs__col--md-4 gs__col--sm-6" style="border:2px solid #999;">3</div>
</div>
```
*/
/*
#styleguide
.gs--middle

flexboxのalign-items: center;

```
<div class="gs gs--middle" style="border:2px solid #000;height: 50px;">
	<div class="gs__col gs__col--xl-1 gs__col--lg-1 gs__col--md-4 gs__col--sm-6" style="border:2px solid #999; height: 30px;">1</div>
	<div class="gs__col gs__col--xl-1 gs__col--lg-1 gs__col--md-4 gs__col--sm-6" style="border:2px solid #999;">2</div>
	<div class="gs__col gs__col--xl-1 gs__col--lg-1 gs__col--md-4 gs__col--sm-6" style="border:2px solid #999;">3</div>
</div>
```
*/
/*
#styleguide
.gs--stretch

flexboxのalign-items: stretch;
itemの高さを指定しない場合、高さを揃えて表示します。
```
<div class="gs gs--stretch" style="border:2px solid #000;height: 100px;">
	<div class="gs__col gs__col--xl-1 gs__col--lg-1 gs__col--md-4 gs__col--sm-6" style="border:2px solid #999;">1</div>
	<div class="gs__col gs__col--xl-1 gs__col--lg-1 gs__col--md-4 gs__col--sm-6" style="border:2px solid #999;">2</div>
	<div class="gs__col gs__col--xl-1 gs__col--lg-1 gs__col--md-4 gs__col--sm-6" style="border:2px solid #999;">3</div>
</div>
```
*/
/*
#styleguide
.gs--reverse

flexboxのflex-direction: row-reverse;

```
<div class="gs gs--reverse" style="border:2px solid #000;height: 50px;">
	<div class="gs__col gs__col--xl-1 gs__col--lg-1 gs__col--md-4 gs__col--sm-6" style="border:2px solid #999;">1</div>
	<div class="gs__col gs__col--xl-1 gs__col--lg-1 gs__col--md-4 gs__col--sm-6" style="border:2px solid #999;">2</div>
	<div class="gs__col gs__col--xl-1 gs__col--lg-1 gs__col--md-4 gs__col--sm-6" style="border:2px solid #999;">3</div>
</div>
```
*/
/*
#styleguide
offset

```
<div class="gs mt30" style="border:2px solid #000;height: 50px;">
	<div class="gs__col gs__col--md-1 gs__col--offset-md-3" style="border:2px solid #999;">1</div>
</div>
```
*/
/* ==========================================================================
 *  
 *  _hamburgerMenu.scss
 *
 *  Last Modified: 2019/07/18
 *  Last Editor: Toshiyuki Hara
 *
   ========================================================================== */
/* ==========================================================================
   共通 > メニュー ボタン
    <div id="hamburgerMenu" class="hamburgerMenu">
        <div class="hamburgerMenu__line"></div>
    </div>
    <!-- /.hamburgerMenu -->
   ========================================================================== */
.hamburgerMenu {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 15px;
  right: 20px;
  z-index: 10;
  display: none;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
  border: 0;
  background: 0;
  user-select: none;
}
.hamburgerMenu::before, .hamburgerMenu::after {
  content: "";
  display: block;
}
.hamburgerMenu::before, .hamburgerMenu::after, .hamburgerMenu__line {
  width: 27px;
  height: 5px;
  position: absolute;
  left: 1.5px;
  background-color: #aaa;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
  border-radius: 3px;
}
.hamburgerMenu::before {
  top: 2.5px;
}
.hamburgerMenu__line {
  top: 12.5px;
}
.hamburgerMenu::after {
  top: 22.5px;
}
.hamburgerMenu.hamburgerMenu--active::before {
  -webkit-transform: translate3d(0, 10px, 0) rotateZ(405deg);
  -moz-transform: translate3d(0, 10px, 0) rotateZ(405deg);
  -ms-transform: translate3d(0, 10px, 0) rotateZ(405deg);
  -o-transform: translate3d(0, 10px, 0) rotateZ(405deg);
  transform: translate3d(0, 10px, 0) rotateZ(405deg);
}
.hamburgerMenu.hamburgerMenu--active .hamburgerMenu__line {
  opacity: 0;
}
.hamburgerMenu.hamburgerMenu--active::after {
  -webkit-transform: translate3d(0, -10px, 0) rotateZ(-405deg);
  -moz-transform: translate3d(0, -10px, 0) rotateZ(-405deg);
  -ms-transform: translate3d(0, -10px, 0) rotateZ(-405deg);
  -o-transform: translate3d(0, -10px, 0) rotateZ(-405deg);
  transform: translate3d(0, -10px, 0) rotateZ(-405deg);
}
@media only screen and (max-width: 767px) {
  .hamburgerMenu {
    display: block;
  }
}

/*
#overview
ハンバーガーメニュー


*/
/*
#styleguide
offset

```
<div id="hamburgerMenu" class="hamburgerMenu">
	<div class="hamburgerMenu__line"></div>
</div>
<!-- /.hamburgerMenu -->
```
*/
/* ==========================================================================
 *  
 *  _btn.scss
 *
 *  Last Modified: 2019/04/18
 *  Last Editor: Toshiyuki Hara
 *
   ========================================================================== */
.btn {
  min-width: 1em;
  margin: 0;
  padding: 0.4em 0.3em;
  position: relative;
  display: inline-block;
  font: 700 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--ico-left .fa, .btn--ico-left .fas {
  position: absolute;
  top: calc(50% - 0.5em);
  left: 0.5em;
}
.btn--ico-right .fa, .btn--ico-right .fas {
  position: absolute;
  top: calc(50% - 0.5em);
  right: 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--contact:hover, .btn--contact:focus {
  opacity: 0.7;
}
.btn--contact .fas {
  margin: 0.5em;
  color: #274f65;
}
.btn--contact {
  color: #274f65;
  background-color: #fff;
  border-color: #fff;
  font-size: 20rem;
  border-radius: 100vh;
  padding-top: 14px;
  padding-bottom: 14px;
}
.btn--contact:link, .btn--contact:visited, .btn--contact:hover, .btn--contact:focus, .btn--contact:active {
  color: #274f65;
}
.btn--contact:hover, .btn--contact:focus {
  color: #4389af;
  background-color: white;
  border-color: white;
}
.btn--more {
  color: #000;
  background-color: #fff;
  border-color: #aaa999;
  font-size: 16rem;
  border-radius: 0;
  padding-top: 10px;
  padding-bottom: 10px;
}
.btn--more:link, .btn--more:visited, .btn--more:hover, .btn--more:focus, .btn--more:active {
  color: #000;
}
.btn--more:hover, .btn--more:focus {
  color: #333333;
  background-color: white;
  border-color: #d8d8d1;
}
.btn--send {
  color: #fff;
  background-color: #000;
  border-color: #000;
  font-size: 16rem;
  border-radius: 100vh;
  padding-top: 10px;
  padding-bottom: 10px;
}
.btn--send:link, .btn--send:visited, .btn--send:hover, .btn--send:focus, .btn--send:active {
  color: #fff;
}
.btn--send:hover, .btn--send:focus {
  color: white;
  background-color: #333333;
  border-color: #333333;
}
.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: #ef872c;
}
.btn--bg-tc-3:hover, .btn--bg-tc-3:focus {
  background-color: #f6bd8b;
}
.btn--border-tc-3 {
  border-color: #ef872c;
}
.btn--border-tc-3:hover, .btn--border-tc-3:focus {
  border-color: #f6bd8b;
}
.btn--font-tc-3 {
  color: #ef872c;
}
.btn--font-tc-3:link, .btn--font-tc-3:visited {
  color: #ef872c;
}
.btn--font-tc-3:hover, .btn--font-tc-3:focus, .btn--font-tc-3:active {
  color: #f6bd8b;
}
.btn--bg-tc-4 {
  background-color: #e83428;
}
.btn--bg-tc-4:hover, .btn--bg-tc-4:focus {
  background-color: #f28b84;
}
.btn--border-tc-4 {
  border-color: #e83428;
}
.btn--border-tc-4:hover, .btn--border-tc-4:focus {
  border-color: #f28b84;
}
.btn--font-tc-4 {
  color: #e83428;
}
.btn--font-tc-4:link, .btn--font-tc-4:visited {
  color: #e83428;
}
.btn--font-tc-4:hover, .btn--font-tc-4:focus, .btn--font-tc-4:active {
  color: #f28b84;
}
.btn--bg-tc-5 {
  background-color: #f3f4f5;
}
.btn--bg-tc-5:hover, .btn--bg-tc-5:focus {
  background-color: white;
}
.btn--border-tc-5 {
  border-color: #f3f4f5;
}
.btn--border-tc-5:hover, .btn--border-tc-5:focus {
  border-color: white;
}
.btn--font-tc-5 {
  color: #f3f4f5;
}
.btn--font-tc-5:link, .btn--font-tc-5:visited {
  color: #f3f4f5;
}
.btn--font-tc-5:hover, .btn--font-tc-5:focus, .btn--font-tc-5:active {
  color: white;
}

/*
#overview
ボタン

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

プロにおまかせボタン

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

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

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

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

ページトップボタン
```
<input type="button" value="プロにおまかせ" class="btn btn--pro">
<a href="" class="btn btn--card-detail">ボタン</a>
<a href="" class="btn btn--card-cart">ボタン</a>
<input type="button" value="ボタン" class="btn btn--success btn--shadow">
<button class="btn btn--list btn--block">ボタン</button>
```
*/
/* ==========================================================================
 *  
 *  _breadcrumb.scss
 *
 *  Last Modified: 2019/08/18
 *  Last Editor: Toshiyuki Hara
 *
   ========================================================================== */
.breadcrumb {
  display: block;
  font-size: 16rem;
  text-align: left;
  background-color: #f3f4f5;
}
.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

```
<div class="breadcrumb">
	<div class="breadcrumb__inr">
		<span itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
			<a href="../" itemprop="url">
				<i class="fas fa-home"></i>
				<span itemprop="title">ホーム</span>
			</a>&nbsp;&gt;&nbsp;
		</span>
		<span itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
			<a href="../" itemprop="url">
				<span itemprop="title">下層ページ</span>
			</a>
		</span>
	</div>
	<!-- /.breadcrumb__inr -->
</div>
<!-- /.breadcrumb -->
```
*/
/* ==========================================================================
 *  
 *  _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;
}
.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
通常の状態

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

	<div class="card__body">
		<p class="fz14"><b>511520</b></p>

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

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

		<p class="mt5 fz16"><b>22,000円（税込）</b></p>

		<p class="mt5 fz12">鉢物<br>開花輪24輪以上</p>
	</div>
	<!-- /.card__body -->

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

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


```
*/
/*
#styleguide

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

	<div class="card__detail">
		<div class="card__body">
			<p class="fz14"><b>511520</b></p>

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

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

			<p class="mt5 fz16"><b>22,000円（税込）</b></p>

			<p class="mt5 fz12">鉢物<br>開花輪24輪以上</p>
		</div>
		<!-- /.card__body -->

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

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


```
*/
/*
#styleguide

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

			<div class="card__body">
				<p class="fz14"><b>511520</b></p>

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

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

				<p class="mt5 fz16"><b>22,000円（税込）</b></p>

				<p class="mt5 fz12">鉢物<br>開花輪24輪以上</p>
			</div>
			<!-- /.card__body -->

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

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

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

			<div class="card__body">
				<p class="fz14"><b>511520</b></p>

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

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

				<p class="mt5 fz16"><b>22,000円（税込）</b></p>

				<p class="mt5 fz12">鉢物<br>開花輪24輪以上</p>
			</div>
			<!-- /.card__body -->

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

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

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

			<div class="card__body">
				<p class="fz14"><b>511520</b></p>

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

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

				<p class="mt5 fz16"><b>22,000円（税込）</b></p>

				<p class="mt5 fz12">鉢物<br>開花輪24輪以上</p>
			</div>
			<!-- /.card__body -->

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

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

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

			<div class="card__body">
				<p class="fz14"><b>511520</b></p>

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

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

				<p class="mt5 fz16"><b>22,000円（税込）</b></p>

				<p class="mt5 fz12">鉢物<br>開花輪24輪以上</p>
			</div>
			<!-- /.card__body -->

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

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

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

	<div class="card__body">
		<p class="fz14"><b>511520</b></p>

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

		<p class="mt5 fz16"><b>22,000円（税込）</b></p>
	</div>
	<!-- /.card__body -->

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

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


```
*/
/*
#styleguide

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

			<div class="card__body">
			</div>
			<!-- /.card__body -->
		</section>
		<!-- /.card -->
	</div>
	<!-- /.gs__col -->

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

			<div class="card__body">

			</div>
			<!-- /.card__body -->
		</section>
		<!-- /.card -->
	</div>
	<!-- /.gs__col -->

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

			<div class="card__body">
			</div>
			<!-- /.card__body -->
		</section>
		<!-- /.card -->
	</div>
	<!-- /.gs__col -->

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

			<div class="card__body">

			</div>
			<!-- /.card__body -->
		</section>
		<!-- /.card -->
	</div>
	<!-- /.gs__col -->
</div>
<!-- /.gs -->
```
*/
/* ==========================================================================
   ヘッダー
   ========================================================================== */
.header {
  width: 100%;
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 1;
}
.header__inr {
  max-width: 1100px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__title {
  padding-left: 50px;
  line-height: 1.3;
  font-weight: 500;
  font-size: 20rem;
}
.header__title span {
  font-weight: normal;
  font-size: 13px;
}
.header a:hover, .header a:focus {
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  .header {
    height: 60px;
  }
  .header__title {
    padding-left: 20px;
    font-size: 15px;
  }
  .header__title span {
    font-size: 10px;
  }
}

/* ==========================================================================
   ナビゲーション
   ========================================================================== */
@media only screen and (max-width: 767px) {
  .nav {
    width: 100%;
    height: 0;
    overflow: hidden;
    position: fixed;
    top: 60px;
    left: 0;
    border: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    -webkit-transition: height 0.2s ease-in-out;
    -moz-transition: height 0.2s ease-in-out;
    -ms-transition: height 0.2s ease-in-out;
    -o-transition: height 0.2s ease-in-out;
    transition: height 0.2s ease-in-out;
  }
  .nav--active {
    height: 100vh;
    height: 100dvh;
  }
  .nav__inr {
    background-color: #eee;
  }
}

.global-nav {
  padding-right: 25px;
  display: flex;
}
.global-nav__item {
  padding: 0 25px;
}
.global-nav__item a {
  position: relative;
  display: block;
}
.global-nav__item a::after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  left: 50%;
  bottom: -10px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #000;
  opacity: 0;
}
.global-nav__item a:hover::after, .global-nav__item a:focus::after {
  width: 100%;
  left: 0;
  bottom: -10px;
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .global-nav {
    padding: 25px 0;
    align-items: center;
    flex-direction: column;
  }
  .global-nav__item {
    width: 100%;
    padding: 0;
  }
  .global-nav__item a {
    padding: 25px 0;
    line-height: 1;
    display: block;
    text-align: center;
  }
  .global-nav__item a:hover::after, .global-nav__item a:focus::after {
    display: none;
  }
}

.footer {
  text-align: center;
  background-color: #000;
}
.footer__btn {
  padding: 60px 0;
  font-weight: bold;
  background-color: #6c8898;
}
.footer__btn a {
  max-width: 400px;
  margin: 0 auto;
}
.footer__inr {
  padding: 40px 0 35px;
}
.footer__copyright {
  line-height: 1;
  font-size: 12rem;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .footer__btn {
    padding: 50px 20px;
  }
  .footer__inr {
    padding: 50px 0;
  }
}

.foot-logo {
  font-weight: bold;
  font-size: 28rem;
  color: #fff;
}
.foot-logo span {
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .foot-logo {
    font-size: 18rem;
  }
  .foot-logo span {
    font-size: 10rem;
  }
}

.foot-nav {
  margin: 40px 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;
  font-size: 14px;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .foot-nav {
    margin: 50px 0 50px;
  }
  .foot-nav__item:nth-child(4) {
    margin-top: 20px;
  }
  .foot-nav__item a {
    white-space: nowrap;
  }
}

/* ==========================================================================
   ページ全体
   ========================================================================== */
.page {
  padding-top: 100px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .page {
    padding-top: 60px;
  }
}

/* ==========================================================================
   コンテンツ
   ========================================================================== */
.contents__inr {
  padding: 0 150px;
}
.contents__body {
  padding: 50px 0;
}
@media only screen and (min-width: 1300px) {
  .contents--news .contents__inr {
    padding: 0 100px;
  }
}
@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: 10% 0;
  }
}

.headline {
  text-align: center;
}
.headline__title {
  display: inline-block;
  line-height: 1;
  font-size: 30rem;
  text-align: center;
  letter-spacing: 0.08em;
}
.headline--popular .headline__title {
  font-size: 20rem;
}
.headline--popular .headline__title-en {
  font-size: 10rem;
}

.box-posts:not(:first-child) {
  margin-top: 50px;
}
.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: 308px;
}
.box-posts__more a i {
  margin: 0 0.5em;
  color: #999;
}
.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 > 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__date {
  margin-top: 30px;
  display: block;
  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__more {
  margin-top: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.box-article__more a {
  width: 308px;
}
.box-article__more a i {
  color: #999;
  margin: 0 0.5em;
}
@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-article__more a {
    width: 100%;
  }
}

.box-contact {
  width: 688px;
  margin: 50px auto 0;
}
.box-contact__item {
  margin-top: 50px;
}
.box-contact__item--error input,
.box-contact__item--error textarea {
  background-color: #fbeaea !important;
  border-color: #fbeaea !important;
}
.box-contact__foot {
  margin-top: 70px;
  text-align: center;
}
.box-contact__foot .btn--send {
  width: 260px;
}
.box-contact__foot i {
  color: #fff;
}
.box-contact__foot i::before {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .box-contact {
    width: auto;
    margin-top: 35px;
  }
}

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

.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 3px;
  display: grid;
  place-items: center;
  font-weight: bold;
}
.wp-pagenavi a:hover, .wp-pagenavi a:focus {
  opacity: 0.7;
}
.wp-pagenavi .page {
  padding-top: 0;
}
.wp-pagenavi .first,
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .last,
.wp-pagenavi .current {
  font-weight: bold;
  color: #fff;
  background-color: #000;
  border-radius: 50%;
  text-decoration: none;
}

/* ==========================================================================
   ヒーロー
   ========================================================================== */
.hero {
  text-align: center;
  background-color: #051623;
}
.hero__inr {
  max-width: 1267px;
  margin: 0 auto;
}

/* ==========================================================================
   イントロ
   ========================================================================== */
.intro {
  padding: 60px 0;
  text-align: center;
  background-color: #ebedef;
}
.intro__lead {
  line-height: 1.94;
  font-weight: 500;
  font-size: 18rem;
}
@media only screen and (max-width: 767px) {
  .intro {
    padding: 35px 19px;
  }
  .intro__lead {
    line-height: 2.18;
    font-size: 16rem;
  }
}

/* ==========================================================================
   バナー
   ========================================================================== */
.box-bnr {
  padding: 50px 0;
}
.box-bnr__body {
  margin-top: 40px;
  display: flex;
  gap: 40px;
  justify-content: space-between;
}
.box-bnr__body a {
  display: block;
}
@media only screen and (max-width: 767px) {
  .box-bnr {
    display: block;
  }
  .box-bnr__body {
    margin-top: 25px;
    display: block;
  }
  .box-bnr__body a:not(:first-child) {
    margin-top: 25px;
  }
}

/* ==========================================================================
   ABOUT US
   ========================================================================== */
.box-about {
  padding: 50px 0;
}
.box-about__body {
  padding: 70px 0 30px;
}
.box-about__title {
  font-size: 24rem;
  text-align: center;
  letter-spacing: 0.08em;
}
.box-about__structure {
  margin-top: 65px;
}
@media only screen and (max-width: 767px) {
  .box-about__body {
    padding-top: 50px;
  }
  .box-about__structure {
    margin-top: 50px;
  }
}

.member {
  margin-top: 65px;
}
.member:not(:first-child) {
  margin-top: 50px;
}
.member__title {
  line-height: 1;
  font-size: 20rem;
  text-align: center;
}
.member__body {
  padding-top: 20px;
}
@media only screen and (max-width: 767px) {
  .member {
    margin-top: 40px;
  }
  .member:not(:first-child) {
    margin-top: 40px;
  }
  .member__title {
    font-size: 16rem;
  }
}

.person {
  padding: 30px;
  display: flex;
  gap: 30px;
  background-color: #fff;
}
.person + .person {
  margin-top: 20rem;
}
.person__img {
  flex: 0 0 29.2553191489%;
}
.person__name {
  line-height: 1.2;
  font-size: 22px;
}
.person__name span {
  font-weight: normal;
  font-size: 14rem;
  color: #999;
}
.person__detail p {
  margin-top: 1.2em;
  line-height: 1.7;
  font-size: 14px;
}
.person--adviser .person__img {
  flex: 0 0 19.6808510638%;
}
.person--adviser .person__name {
  font-size: 18px;
}
.person--adviser .person__name span {
  font-size: 12px;
}
.person--adviser .person__detail p {
  margin-top: 1em;
  font-size: 14rem;
}
@media only screen and (max-width: 767px) {
  .person {
    display: block;
  }
  .person__img {
    width: 215px;
    margin: 0 auto;
  }
  .person__name {
    margin-top: 30px;
    font-size: 18px;
    text-align: center;
  }
  .person--adviser .person__img {
    width: 165px;
  }
  .person--adviser .person__name {
    font-size: 17rem;
  }
}

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

/*!
style.css Modified: @@buildTime Editor: Toshiyuki Hara */
/*# sourceMappingURL=style.css.map */