@charset "UTF-8";
/*グリッドシステムは下記を採用
/*http://sassflexboxgrid.com/
/*-----------------------------------*/
/* http://meyerweb.com/eric/tools/css/reset/ 
v2.0 | 20110126
License: none (public domain)
*/
@import 'https://fonts.googleapis.com/css?family=Asap';
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@100;300;400;500;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=GFS+Didot&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Alex+Brush&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.row {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.row.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.row.natural-height {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.row.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.col {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  max-width: 100%;
  padding: 1rem;
}

.col.reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.first {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.last {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.align-start {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.align-end {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.align-center {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.align-baseline {
  -ms-flex-item-align: baseline;
      align-self: baseline;
}

.align-stretch {
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
}

.col-xs {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  max-width: 100%;
  padding: 1rem;
}

.col-xs-1 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-preferred-size: 8.3333333333%;
      flex-basis: 8.3333333333%;
  max-width: 8.3333333333%;
  padding: 1rem;
}

.col-xs-offset-1 {
  margin-left: 8.3333333333%;
}

.col-xs-2 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-preferred-size: 16.6666666667%;
      flex-basis: 16.6666666667%;
  max-width: 16.6666666667%;
  padding: 1rem;
}

.col-xs-offset-2 {
  margin-left: 16.6666666667%;
}

.col-xs-3 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  max-width: 25%;
  padding: 1rem;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-4 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-preferred-size: 33.3333333333%;
      flex-basis: 33.3333333333%;
  max-width: 33.3333333333%;
  padding: 1rem;
}

.col-xs-offset-4 {
  margin-left: 33.3333333333%;
}

.col-xs-5 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-preferred-size: 41.6666666667%;
      flex-basis: 41.6666666667%;
  max-width: 41.6666666667%;
  padding: 1rem;
}

.col-xs-offset-5 {
  margin-left: 41.6666666667%;
}

.col-xs-6 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  max-width: 50%;
  padding: 1rem;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-7 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-preferred-size: 58.3333333333%;
      flex-basis: 58.3333333333%;
  max-width: 58.3333333333%;
  padding: 1rem;
}

.col-xs-offset-7 {
  margin-left: 58.3333333333%;
}

.col-xs-8 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-preferred-size: 66.6666666667%;
      flex-basis: 66.6666666667%;
  max-width: 66.6666666667%;
  padding: 1rem;
}

.col-xs-offset-8 {
  margin-left: 66.6666666667%;
}

.col-xs-9 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-preferred-size: 75%;
      flex-basis: 75%;
  max-width: 75%;
  padding: 1rem;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-10 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-preferred-size: 83.3333333333%;
      flex-basis: 83.3333333333%;
  max-width: 83.3333333333%;
  padding: 1rem;
}

.col-xs-offset-10 {
  margin-left: 83.3333333333%;
}

.col-xs-11 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-preferred-size: 91.6666666667%;
      flex-basis: 91.6666666667%;
  max-width: 91.6666666667%;
  padding: 1rem;
}

.col-xs-offset-11 {
  margin-left: 91.6666666667%;
}

.col-xs-12 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
  padding: 1rem;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

.row.start-xs {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.row.center-xs {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.row.end-xs {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.row.top-xs {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.row.middle-xs {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.row.bottom-xs {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.row.around-xs {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.row.between-xs {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.first-xs {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.last-xs {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media only screen and (min-width: 769px) {
  .col-sm {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    max-width: 100%;
    padding: 1rem;
  }
  .col-sm-1 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex-preferred-size: 8.3333333333%;
        flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding: 1rem;
  }
  .col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-sm-2 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex-preferred-size: 16.6666666667%;
        flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding: 1rem;
  }
  .col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-sm-3 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%;
    padding: 1rem;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-4 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex-preferred-size: 33.3333333333%;
        flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 1rem;
  }
  .col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-sm-5 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex-preferred-size: 41.6666666667%;
        flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding: 1rem;
  }
  .col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-sm-6 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
    padding: 1rem;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-7 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex-preferred-size: 58.3333333333%;
        flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding: 1rem;
  }
  .col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-sm-8 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex-preferred-size: 66.6666666667%;
        flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding: 1rem;
  }
  .col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-sm-9 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
    max-width: 75%;
    padding: 1rem;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-10 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex-preferred-size: 83.3333333333%;
        flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding: 1rem;
  }
  .col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-sm-11 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex-preferred-size: 91.6666666667%;
        flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding: 1rem;
  }
  .col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-sm-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
    padding: 1rem;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .row.start-sm {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .row.center-sm {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .row.end-sm {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .row.top-sm {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .row.middle-sm {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .row.bottom-sm {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .row.around-sm {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .row.between-sm {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .first-sm {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .last-sm {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media only screen and (min-width: 769px) {
  .col-md {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    max-width: 100%;
    padding: 1rem;
  }
  .col-md-1 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex-preferred-size: 8.3333333333%;
        flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding: 1rem;
  }
  .col-md-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-md-2 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex-preferred-size: 16.6666666667%;
        flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding: 1rem;
  }
  .col-md-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-md-3 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%;
    padding: 1rem;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-4 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex-preferred-size: 33.3333333333%;
        flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 1rem;
  }
  .col-md-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-md-5 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex-preferred-size: 41.6666666667%;
        flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding: 1rem;
  }
  .col-md-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-md-6 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
    padding: 1rem;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-7 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex-preferred-size: 58.3333333333%;
        flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding: 1rem;
  }
  .col-md-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-md-8 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex-preferred-size: 66.6666666667%;
        flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding: 1rem;
  }
  .col-md-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-md-9 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
    max-width: 75%;
    padding: 1rem;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-10 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex-preferred-size: 83.3333333333%;
        flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding: 1rem;
  }
  .col-md-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-md-11 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex-preferred-size: 91.6666666667%;
        flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding: 1rem;
  }
  .col-md-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-md-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
    padding: 1rem;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .row.start-md {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .row.center-md {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .row.end-md {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .row.top-md {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .row.middle-md {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .row.bottom-md {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .row.around-md {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .row.between-md {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .first-md {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .last-md {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media only screen and (min-width: 1041px) {
  .col-lg {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    max-width: 100%;
    padding: 1rem;
  }
  .col-lg-1 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex-preferred-size: 8.3333333333%;
        flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding: 1rem;
  }
  .col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-lg-2 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex-preferred-size: 16.6666666667%;
        flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding: 1rem;
  }
  .col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-lg-3 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%;
    padding: 1rem;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-4 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex-preferred-size: 33.3333333333%;
        flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 1rem;
  }
  .col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-lg-5 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex-preferred-size: 41.6666666667%;
        flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding: 1rem;
  }
  .col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-lg-6 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
    padding: 1rem;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-7 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex-preferred-size: 58.3333333333%;
        flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding: 1rem;
  }
  .col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-lg-8 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex-preferred-size: 66.6666666667%;
        flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding: 1rem;
  }
  .col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-lg-9 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
    max-width: 75%;
    padding: 1rem;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-10 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex-preferred-size: 83.3333333333%;
        flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding: 1rem;
  }
  .col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-lg-11 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex-preferred-size: 91.6666666667%;
        flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding: 1rem;
  }
  .col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-lg-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
    padding: 1rem;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .row.start-lg {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .row.center-lg {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .row.end-lg {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .row.top-lg {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .row.middle-lg {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .row.bottom-lg {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .row.around-lg {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .row.between-lg {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .first-lg {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .last-lg {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media only screen and (min-width: 1041px) {
  .col-xl {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    max-width: 100%;
    padding: 1rem;
  }
  .col-xl-1 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex-preferred-size: 8.3333333333%;
        flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding: 1rem;
  }
  .col-xl-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-xl-2 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex-preferred-size: 16.6666666667%;
        flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding: 1rem;
  }
  .col-xl-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-xl-3 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%;
    padding: 1rem;
  }
  .col-xl-offset-3 {
    margin-left: 25%;
  }
  .col-xl-4 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex-preferred-size: 33.3333333333%;
        flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 1rem;
  }
  .col-xl-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-xl-5 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex-preferred-size: 41.6666666667%;
        flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding: 1rem;
  }
  .col-xl-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-xl-6 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
    padding: 1rem;
  }
  .col-xl-offset-6 {
    margin-left: 50%;
  }
  .col-xl-7 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex-preferred-size: 58.3333333333%;
        flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding: 1rem;
  }
  .col-xl-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-xl-8 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex-preferred-size: 66.6666666667%;
        flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding: 1rem;
  }
  .col-xl-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-xl-9 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
    max-width: 75%;
    padding: 1rem;
  }
  .col-xl-offset-9 {
    margin-left: 75%;
  }
  .col-xl-10 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex-preferred-size: 83.3333333333%;
        flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding: 1rem;
  }
  .col-xl-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-xl-11 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex-preferred-size: 91.6666666667%;
        flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding: 1rem;
  }
  .col-xl-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-xl-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
    padding: 1rem;
  }
  .col-xl-offset-12 {
    margin-left: 100%;
  }
  .row.start-xl {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .row.center-xl {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .row.end-xl {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .row.top-xl {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .row.middle-xl {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .row.bottom-xl {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .row.around-xl {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .row.between-xl {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .first-xl {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .last-xl {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.col-gutter-lr {
  padding: 0 1rem;
}

.col-no-gutter {
  padding: 0;
}

.show {
  display: block !important;
}

.row.show {
  display: -ms-flexbox !important;
  display: -webkit-box !important;
  display: flex !important;
}

.hide {
  display: none !important;
}

.show-xs {
  display: block !important;
}

.row.show-xs {
  display: -ms-flexbox !important;
  display: -webkit-box !important;
  display: flex !important;
}

.hide-xs {
  display: none !important;
}

@media only screen and (max-width: 420px) {
  .show-xs-only {
    display: block !important;
  }
  .row.show-xs-only {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
  }
  .hide-xs-only {
    display: none !important;
  }
}
@media only screen and (min-width: 769px) {
  .show-sm {
    display: block !important;
  }
  .row.show-sm {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
  }
  .hide-sm {
    display: none !important;
  }
}
@media only screen and (min-width: 421px) and (max-width: 768px) {
  .show-sm-only {
    display: block !important;
  }
  .row.show-sm-only {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
  }
  .hide-sm-only {
    display: none !important;
  }
}
@media only screen and (min-width: 769px) {
  .show-md {
    display: block !important;
  }
  .row.show-md {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
  }
  .hide-md {
    display: none !important;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1040px) {
  .show-md-only {
    display: block !important;
  }
  .row.show-md-only {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
  }
  .hide-md-only {
    display: none !important;
  }
}
@media only screen and (min-width: 1041px) {
  .show-lg {
    display: block !important;
  }
  .row.show-lg {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
  }
  .hide-lg {
    display: none !important;
  }
}
@media only screen and (min-width: 1041px) and (max-width: 1040px) {
  .show-lg-only {
    display: block !important;
  }
  .row.show-lg-only {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
  }
  .hide-lg-only {
    display: none !important;
  }
}
@media only screen and (min-width: 1041px) {
  .show-xl {
    display: block !important;
  }
  .row.show-xl {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
  }
  .hide-xl {
    display: none !important;
  }
}
/* background
=========================================== */
.bg-gray {
  background: #fafafa;
}

.bg-white {
  background: #fff;
}

.bg-accent, .commonContact {
  background: rgba(146, 118, 68, 0.2) url(../images/common/bg_accent.jpg);
}

.bg-primary {
  background: rgba(90, 120, 146, 0.2) url(../images/common/bg_primary.jpg);
}

.bg-secondary {
  background: rgba(205, 231, 231, 0.2) url(../images/common/bg_secondary.jpg);
}

.top__title, .commonContact__title, .common__title {
  color: #5a7892;
  font-weight: bolder;
  text-align: center;
  line-height: 1.4;
  font-weight: normal;
  margin-bottom: 2em;
}
.top__title .jp, .commonContact__title .jp, .common__title .jp {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-size: 1.4rem;
  margin-top: -0.5em;
  letter-spacing: 2px;
}
@media only screen and (max-width: 768px) {
  .top__title .jp, .commonContact__title .jp, .common__title .jp {
    font-size: 28px;
    font-size: 4vw;
  }
}
.top__title .en, .commonContact__title .en, .common__title .en {
  font-family: "GFS Didot", serif;
  display: block;
  font-size: 48px;
  font-size: 4.8rem;
  text-transform: capitalize;
}
@media only screen and (max-width: 768px) {
  .top__title .en, .commonContact__title .en, .common__title .en {
    font-size: 72px;
    font-size: 10.2857142857vw;
    margin-bottom: 1.1428571429vw;
  }
}

.common__title {
  color: #3e242a;
  letter-spacing: 1px;
  font-size: 28px;
  font-size: 2.8rem;
  position: relative;
  font-family: "Noto Serif JP", serif;
}
.common__title:after {
  content: "";
  height: 0px;
  width: 40px;
  border-bottom: rgba(90, 120, 146, 0.4) dotted 8px;
  position: absolute;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media only screen and (max-width: 768px) {
  .common__title:after {
    width: 11.4285714286vw;
    bottom: -5.7142857143vw;
    border-bottom: rgba(90, 120, 146, 0.4) dotted 2.2857142857vw;
  }
}
@media only screen and (max-width: 768px) {
  .common__title {
    font-size: 48px;
    font-size: 6.8571428571vw;
  }
}
.common__title span {
  display: inline-block;
}

.h4title {
  font-size: 22px;
  font-size: 2.2rem;
  font-family: "Noto Serif JP", serif;
  position: relative;
  border-bottom: rgba(146, 118, 68, 0.4) solid 1px;
  line-height: 56px;
  margin-bottom: 2em;
}
.h4title:before {
  content: "";
  background: #5a7892;
  width: 13%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -1px;
}
@media only screen and (max-width: 768px) {
  .h4title {
    font-size: 36px;
    font-size: 5.1428571429vw;
    line-height: 9.1428571429vw;
    margin-bottom: 1em;
  }
}
.h5title, .infoSingle__content h4 {
  font-size: 18px;
  font-size: 1.8rem;
  font-family: "Noto Serif JP", serif;
  position: relative;
  padding-left: 32px;
  margin-bottom: 2em;
}
.h5title:before, .infoSingle__content h4:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 1px;
  width: 24px;
  background-color: #5a7892;
}
@media only screen and (max-width: 768px) {
  .h5title, .infoSingle__content h4 {
    font-size: 30px;
    font-size: 4.2857142857vw;
  }
}
/* btn
=========================================== */
.button, .contactBlock .box.consent .submit {
  height: 56px;
  text-decoration: none;
  border-radius: 0px;
  margin-bottom: 2em;
  margin: auto;
  width: 90%;
}
@media only screen and (min-width: 769px) {
  .button, .contactBlock .box.consent .submit {
    max-width: 280px;
  }
}
@media only screen and (max-width: 768px) {
  .button, .contactBlock .box.consent .submit {
    height: 16vw;
    max-width: 80vw;
  }
}
.button a, .contactBlock .box.consent .submit a {
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px;
  height: 100%;
  position: relative;
  text-align: center;
  color: #fff;
  background: #5a7892;
}
.button a:after, .contactBlock .box.consent .submit a:after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 0.5em;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 16px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.button a:hover, .contactBlock .box.consent .submit a:hover {
  font-size: 17px;
  font-size: 1.7rem;
  color: #fff;
  background: rgba(90, 120, 146, 0.7);
}
@media only screen and (max-width: 768px) {
  .button a:hover, .contactBlock .box.consent .submit a:hover {
    font-size: 34px;
    font-size: 4.8571428571vw;
  }
}
.button a:hover:after, .contactBlock .box.consent .submit a:hover:after {
  right: 8px;
}
@media only screen and (max-width: 768px) {
  .button a:hover:after, .contactBlock .box.consent .submit a:hover:after {
    right: 2.2857142857vw;
  }
}
.button--contact {
  position: relative;
  z-index: 2;
}
.button--contact a {
  background: #927644;
  color: #fff;
  border: none;
  font-family: "GFS Didot", serif;
  font-size: 22px;
  font-size: 2.2rem;
}
.button--contact a i {
  font-family: "Font Awesome 5 Free";
}
.button--contact a:after {
  content: none;
}
.button--contact a:hover {
  color: #fff;
  font-size: 24px;
  font-size: 2.4rem;
  background: #927644;
}
@media only screen and (min-width: 769px) {
  .button--contact {
    width: 176px;
  }
  .button--contact a i {
    margin-right: 0.5em;
  }
}
@media only screen and (max-width: 768px) {
  .button--contact {
    max-width: 50.2857142857vw;
    width: auto;
  }
  .button--contact a {
    padding: 2.2857142857vw 1.7142857143vw;
    font-size: 44px;
    font-size: 6.2857142857vw;
  }
  .button--contact a i {
    font-size: 56px;
    font-size: 8vw;
    padding: 0 2.2857142857vw;
  }
  .button--contact a span {
    display: none;
  }
}

/* font
=========================================== */
.text-large {
  font-size: 20px;
  font-size: 2rem;
}
.text-larger {
  font-size: 24px;
  font-size: 2.4rem;
}
.text-xlarge {
  font-size: 28px;
  font-size: 2.8rem;
}
.text-small {
  font-size: 14.4px;
  font-size: 1.44rem;
}
.text-smaller {
  font-size: 12.8px;
  font-size: 1.28rem;
}
.text-xsmall {
  font-size: 11.2px;
  font-size: 1.12rem;
}

.text-primary {
  color: #5a7892;
}
.text-secondary {
  color: #cde7e7;
}
.text-white {
  color: white;
}
.text-black {
  color: #000;
}
.text-gray {
  color: #ccc;
}

.text-bold {
  font-weight: bold;
}
.text-normal {
  font-weight: normal;
}
.text-100 {
  font-weight: 100;
}

.text-underline {
  text-decoration: underline;
}
.text-italic {
  font-style: italic;
}
.text-marker {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(0%, #927644));
  background: linear-gradient(transparent 0%, #927644 0%);
}
.text-marker-thin {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #927644));
  background: linear-gradient(transparent 60%, #927644 60%);
}

.mincho {
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

.gothic {
  font-family: "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}

.en {
  font-family: "GFS Didot", serif;
}

.lead {
  text-align: center;
  font-size: 18px;
  font-size: 1.8rem;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 2px;
  line-height: 28px;
  margin-bottom: 2em;
}
@media only screen and (max-width: 768px) {
  .lead {
    font-size: 30px;
    font-size: 4.2857142857vw;
    margin-left: 1em;
    margin-right: 1em;
    letter-spacing: 0.2857142857vw;
    line-height: 6.2857142857vw;
  }
}
.block {
  display: block;
}

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

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

/* リスト
=========================================== */
.list {
  margin-bottom: 1em;
}
.list > li {
  margin-bottom: 0.5em;
  padding-left: 2em;
  position: relative;
}
.list > li:before {
  font-family: "Font Awesome 5 Free";
  margin-right: 0.2em;
  margin-left: 0.2em;
  position: absolute;
  top: 0;
  left: 0;
}

.list-circle > li:before {
  content: "";
  width: 0.2em;
  height: 0.2em;
  -webkit-transform: translate(50%, 50%);
          transform: translate(50%, 50%);
  border-radius: 50%;
  background: #5a7892;
  border: 0.3em solid #5a7892;
  top: 0.2em;
}
.list-arrow > li:before {
  content: "\f152";
  font-weight: 900;
  color: #5a7892;
}
.list-check > li:before {
  content: "\f14a";
  font-weight: 500;
}
.list-number {
  counter-reset: li;
  list-style: none;
  padding-left: 0;
}
.list-number > li:before {
  font-family: "Noto Serif JP", serif;
  content: counter(li) "";
  counter-increment: li;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  margin-left: 0;
}
.list-number.primary > li:before {
  background: #5a7892;
}
.list-number.secondary > li:before {
  background: #88c6c6;
}
.list-number.sentence > li {
  border-bottom: 1px dotted #ccc;
  padding-left: 0;
  margin-left: 56px;
  padding: 1em 1em 1em 0;
  font-size: 14.4px;
  font-size: 1.44rem;
}
@media only screen and (max-width: 768px) {
  .list-number.sentence > li {
    margin-left: 11.4285714286vw;
    font-size: 28px;
    font-size: 4vw;
  }
}
.list-number.sentence > li:before {
  font-size: 40px;
  font-size: 4rem;
  color: #3e242a;
  top: 0;
  left: -56px;
}
@media only screen and (max-width: 768px) {
  .list-number.sentence > li:before {
    font-size: 80px;
    font-size: 11.4285714286vw;
    left: -16vw;
  }
}

.table {
  margin-bottom: 2em;
  width: 100%;
}
.table tr th {
  padding: 1em;
  text-align: center;
  color: #5a7892;
  vertical-align: middle;
  font-weight: 500;
}
.table tr td {
  padding: 1em;
  text-align: left;
  vertical-align: middle;
  color: #3e242a;
}
@media only screen and (max-width: 768px) {
  .table-block {
    border-top: none;
    border-right: none;
    border-bottom: none;
  }
  .table-block thead {
    display: none;
  }
  .table-block tr {
    display: block;
  }
  .table-block tr th {
    display: block;
  }
  .table-block tr td {
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  .table-scroll {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    table-layout: fixed;
  }
}

.table-primary {
  border: 1px solid #5a7892;
}
.table-primary tr:first-child {
  border-top: 1px solid #5a7892;
}
.table-primary tr th {
  background-color: #d4dde4;
  padding: 1em;
  text-align: center;
  color: #475e72;
  vertical-align: middle;
  font-weight: bold;
  border-right: 1px solid #5a7892;
  border-bottom: 1px solid #5a7892;
}
.table-primary tr td {
  padding: 1em;
  text-align: left;
  border-right: 1px solid #5a7892;
  border-bottom: 1px solid #5a7892;
  vertical-align: middle;
  color: #3e242a;
}
.table-secondary {
  border: 1px solid #88c6c6;
}
.table-secondary tr:first-child {
  border-top: 1px solid #88c6c6;
}
.table-secondary tr th {
  background-color: #eff8f8;
  padding: 1em;
  text-align: center;
  color: #88c6c6;
  vertical-align: middle;
  font-weight: bold;
  border-right: 1px solid #88c6c6;
  border-bottom: 1px solid #88c6c6;
}
.table-secondary tr td {
  padding: 1em;
  text-align: left;
  border-right: 1px solid #88c6c6;
  border-bottom: 1px solid #88c6c6;
  vertical-align: middle;
  color: #3e242a;
}
.table-accent {
  border: 1px solid #927644;
}
.table-accent tr:first-child {
  border-top: 1px solid #927644;
}
.table-accent tr th {
  background-color: #f2ede3;
  padding: 1em;
  text-align: center;
  color: #927644;
  vertical-align: middle;
  font-weight: bold;
  border-right: 1px solid #927644;
  border-bottom: 1px solid #927644;
}
.table-accent tr td {
  padding: 1em;
  text-align: left;
  border-right: 1px solid #927644;
  border-bottom: 1px solid #927644;
  vertical-align: middle;
  color: #3e242a;
}

/* box
=========================================== */
.box {
  padding: 1.5em;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0px;
  font-size: 14.4px;
  font-size: 1.44rem;
}
@media only screen and (max-width: 768px) {
  .box {
    font-size: 28px;
    font-size: 4vw;
  }
}
.box__title {
  padding: 4px;
  margin-bottom: 0.5em;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-size: 1.8rem;
}
@media only screen and (max-width: 768px) {
  .box__title {
    font-size: 32px;
    font-size: 4.5714285714vw;
    margin-bottom: 1em;
  }
}

.box-primary {
  background-color: #d4dde4;
  border-color: #d4dde4;
}
.box-secondary {
  background-color: #eff8f8;
  border-color: #eff8f8;
}
.box-accent {
  background-color: #f2ede3;
  border-color: #f2ede3;
}
.box-white {
  background-color: #fff;
  border-color: #fff;
}
.box-gray {
  background-color: #fafafa;
  border-color: #fafafa;
}

.box__title {
  display: table;
  border-top: solid 1px;
  border-bottom: solid 1px;
  margin-bottom: 1em;
}

/* pattan01
=========================================== */
dl.faqItem {
  display: block;
  overflow: hidden;
  padding: 1em;
  margin: 1em 0 1em;
  width: 100%;
  background: #fff;
  border: 1px solid #ccc;
}
dl.faqItem dt {
  margin-bottom: 15px;
  padding: 16px 2.5em 16px 64px;
  color: #fff;
  font-size: 18px;
  font-size: 1.8rem;
  background: #5a7892;
  font-family: "Noto Serif JP", serif;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
dl.faqItem dt:before {
  content: "Q";
  width: 32px;
  position: absolute;
  top: 16px;
  left: 16px;
  color: #5a7892;
  background: #a4b7c7;
  text-align: center;
  font-family: "GFS Didot", serif;
  font-size: 18px;
  font-size: 1.8rem;
}
dl.faqItem dt:after {
  content: "+";
  font-size: 32px;
  font-size: 3.2rem;
  position: absolute;
  font-weight: normal;
  top: 50%;
  right: 0.5em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #ccc;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
dl.faqItem dt:hover {
  cursor: pointer;
  cursor: hand;
}
dl.faqItem dt.is-active:after {
  content: "−";
}
@media only screen and (max-width: 420px) {
  dl.faqItem dt {
    font-size: 15px;
    font-size: 1.5rem;
    padding: 16px;
    letter-spacing: 1px;
  }
  dl.faqItem dt:before {
    display: block;
    position: static;
    margin-bottom: 1em;
  }
  dl.faqItem dt:after {
    top: 24px;
    right: 16px;
  }
}
dl.faqItem dd {
  padding: 16px 16px 16px 64px;
  position: relative;
}
dl.faqItem dd:before {
  content: "A";
  width: 32px;
  position: absolute;
  top: 16px;
  left: 16px;
  color: #fff;
  background: #cde7e7;
  text-align: center;
  font-family: "GFS Didot", serif;
  font-size: 18px;
  font-size: 1.8rem;
}
@media only screen and (max-width: 420px) {
  dl.faqItem dd {
    padding: 16px;
  }
  dl.faqItem dd:before {
    display: block;
    position: static;
    margin-bottom: 1em;
  }
}

/* pattan01
=========================================== */
.flowList {
  padding-bottom: 2em;
  margin-bottom: 1em;
  display: block;
  border-radius: 0px;
  overflow: hidden;
}
.flowList .flowItem {
  background-color: #eff8f8;
  margin: 0 0 6em;
  padding: 1.5em;
  position: relative;
}
.flowList .flowItem:after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  bottom: -2em;
  left: 50%;
  -webkit-transform: translate(-50%, 50%) rotate(-45deg);
          transform: translate(-50%, 50%) rotate(-45deg);
  border-color: transparent transparent #3e242a #3e242a;
  border-style: solid;
  border-width: 2px;
  background: transparent;
  z-index: 1;
}
.flowList .flowItem:last-child {
  margin-bottom: 0;
}
.flowList .flowItem:last-child:after {
  content: none;
}
.flowList .flowItem__title {
  padding: 4px;
  margin-bottom: 0.5em;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-size: 1.8rem;
  display: table;
  border-top: solid 1px;
  border-bottom: solid 1px;
}
@media only screen and (max-width: 420px) {
  .flowList .flowItem__title {
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 1em;
  }
}

.flowList.number {
  counter-reset: item;
  padding-top: 40px;
}
.flowList.number .flowItem {
  position: relative;
}
.flowList.number .flowItem__title {
  position: relative;
  z-index: 2;
  margin-top: 2em;
}
.flowList.number .flowItem__text {
  position: relative;
  z-index: 2;
}
.flowList.number .flowItem:before {
  font-family: "Noto Serif JP", serif;
  counter-increment: item;
  content: counter(item);
  font-size: 112px;
  font-size: 11.2rem;
  color: #cde7e7;
  position: absolute;
  top: -88px;
  left: 16px;
  z-index: 1;
}
@media only screen and (max-width: 420px) {
  .flowList.number .flowItem:before {
    font-size: 96px;
    font-size: 9.6rem;
  }
}

/* background
=========================================== */
.bread {
  display: block;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 769px) {
  .bread {
    padding: 0.5em;
  }
}
.bread p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.2em 1em;
  margin-bottom: 0;
}
.bread p span {
  font-size: 14px;
  font-size: 1.4rem;
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .bread p span {
    font-size: 28px;
    font-size: 4vw;
  }
}
.bread p span:after {
  margin-left: 5px;
}
@media only screen and (max-width: 768px) {
  .bread p span:after {
    margin-left: 1.4285714286vw;
  }
}
.bread p span:last-child:after {
  content: "";
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: #fff;
  position: relative;
  color: #3e242a;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 1;
}
@media only screen and (max-width: 768px) {
  body {
    font-size: 28px;
    font-size: 4vw;
  }
}
body.active {
  height: 100%;
  overflow: hidden;
}

section {
  padding: 3em 0;
}

/* IE10・11用指定 */
@media all and (-ms-high-contrast: none) {
  body {
    font-family: "メイリオ", Meiryo, "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
}
p {
  margin-bottom: 1em;
}

a {
  color: #88c6c6;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
a img {
  border: none;
  vertical-align: top;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
a:hover {
  color: #66b5b5;
}
a:hover img {
  -webkit-transition: opacity 0.12s linear;
  transition: opacity 0.12s linear;
  -moz-opacity: 0.9;
  filter: alpha(opacity=90);
}
a:hover img:hover {
  opacity: 0.9;
}

.wp-person a:focus .gravatar, a:focus, a:focus .media-icon img {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.img-responsive {
  display: inline-block;
}

.center-block {
  display: block;
}

ul, li, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
}

@media only screen and (max-width: 768px) {
  .row figure {
    text-align: center;
  }
}

.container {
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (max-width: 768px) {
  .container {
    margin-right: 1em;
    margin-left: 1em;
  }
}
.container + .container {
  margin-top: 2em;
}

@media only screen and (min-width: 769px) {
  .sp-only {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

@media only screen and (min-width: 769px) {
  .pc-only {
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

.fade, .fadeleft, .faderight {
  opacity: 0;
  -webkit-transition: 1.5s ease-in-out;
  transition: 1.5s ease-in-out;
}
.fade.scrollin, .fadeleft.scrollin, .faderight.scrollin {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.fadeup, .fadeuptime {
  opacity: 0;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}
.fadeup.scrollin, .fadeuptime.scrollin {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.fadeup, .fadeuptime {
  -webkit-transform: translate(0, 100px);
          transform: translate(0, 100px);
}

.fadeleft {
  -webkit-transform: translate(200px, 0);
          transform: translate(200px, 0);
}

.faderight {
  -webkit-transform: translate(-200px, 0);
          transform: translate(-200px, 0);
}

/* Header
=========================================== */
.header {
  padding: 16px 2em;
  margin: 0;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 10;
  top: 0;
  height: 144px;
}
@media only screen and (max-width: 768px) {
  .header {
    padding: 0;
    height: 18.8571428571vw;
  }
  .header > .container {
    margin-right: 18.2857142857vw;
    margin-left: 0;
  }
}
.header__wrap {
  position: relative;
}
.header__upper__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.header__upper__item {
  padding-left: 1em;
  font-size: 12px;
  font-size: 1.2rem;
}
.header__logo {
  height: 70px;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 769px) {
  .header__logo img {
    max-width: 352px;
    height: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .header__logo {
    margin-right: 1.4285714286vw;
    height: 16vw;
  }
  .header__logo img {
    width: 100.5714285714vw;
    height: auto;
  }
}
.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1em;
}
@media only screen and (min-width: 769px) {
  .header__content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media only screen and (max-width: 768px) {
  .header__content {
    height: 18.8571428571vw;
    padding: 2.8571428571vw 0 2.8571428571vw 1.4285714286vw;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.header__content > .button, .contactBlock .box.consent .header__content > .submit {
  margin: 0;
}

h1 {
  font-size: 12px;
  font-size: 1.2rem;
}

canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

/****************************************************
グローバルナビ
*****************************************************/
@media only screen and (min-width: 769px) {
  .navToggle, .gnav--sp {
    display: none;
  }
  .gnav {
    width: 100%;
  }
  .gnav__wrap {
    background: rgba(90, 120, 146, 0.6);
    width: 100%;
    position: absolute;
    z-index: 3;
    height: 56px;
    top: 144px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition: background 0.3s ease-in-out;
    transition: background 0.3s ease-in-out;
  }
  .gnav__wrap.fix {
    top: 0;
    position: fixed;
    background: #95aabd;
  }
  .gnav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .gnav__item {
    font-family: "GFS Didot", serif;
    font-size: 22px;
    font-size: 2.2rem;
    width: 25%;
    text-align: center;
  }
  .gnav__item a {
    width: 100%;
    display: block;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    color: #3e242a;
    position: relative;
  }
  .gnav__item a:after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    bottom: 1px;
    background: rgba(255, 255, 255, 0.2);
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    z-index: -1;
  }
  .gnav__item a:hover:after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
}
/****************************************************
グローバルナビ
*****************************************************/
@media only screen and (max-width: 768px) {
  .navToggle {
    display: block;
    position: fixed;
    right: 1.7142857143vw;
    top: 2.8571428571vw;
    width: 16vw;
    height: 16vw;
    cursor: pointer;
    z-index: 99;
    background: #5a7892;
    text-align: center;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .navToggle span {
    display: block;
    position: absolute;
    /* .navToggleに対して */
    width: 8.5714285714vw;
    border-bottom: solid 0.5714285714vw #fff;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    left: 3.7142857143vw;
  }
  .navToggle span:nth-child(1) {
    top: 4vw;
  }
  .navToggle span:nth-child(2) {
    top: 7.4285714286vw;
  }
  .navToggle span:nth-child(3) {
    top: 10.8571428571vw;
  }
  .navToggle.active {
    background: transparent;
  }
  .navToggle.active span {
    border-bottom: solid 0.5714285714vw #5a7892;
  }
  .navToggle.active span:nth-child(1) {
    top: 7.4285714286vw;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .navToggle.active span:nth-child(2), .navToggle.active span:nth-child(3) {
    top: 7.4285714286vw;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .gnav {
    overflow-y: auto;
    margin-top: 22.8571428571vw;
    margin-bottom: 11.4285714286vw;
  }
  .gnav__wrap {
    opacity: 0;
    visibility: hidden;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: opacity 0.8s ease-in-out;
    -webkit-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
    z-index: 3;
  }
  .gnav__wrap.active {
    opacity: 1;
    visibility: visible;
    overflow-y: auto;
  }
  .gnav__item {
    border-bottom: #3e242a solid 1px;
    font-size: 44px;
    font-size: 6.2857142857vw;
    font-family: "GFS Didot", serif;
    text-align: center;
  }
  .gnav__item a {
    display: block;
    padding: 0.5em;
    color: #3e242a;
  }
  .gnav__item a span {
    display: block;
    font-size: 26px;
    font-size: 3.7142857143vw;
  }
}
/* Contact
=========================================== */
.commonContact__box {
  background: #fff;
  padding: 2em;
}
.commonContact__title {
  color: #927644 !important;
}
.commonContact__link a {
  background: #927644;
  border: none;
  color: #fff;
  white-space: nowrap;
}
@media only screen and (max-width: 768px) {
  .commonContact__link a {
    font-size: 28px;
    font-size: 4vw;
  }
}
.commonContact__link a:before {
  content: "";
  height: 148px;
  width: 123px;
  background: url(../images/common/contact_before.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: -64px;
  left: -128px;
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media only screen and (max-width: 768px) {
  .commonContact__link a:before {
    height: 21.1428571429vw;
    width: 17.4285714286vw;
    top: -25.1428571429vw;
    left: -6.8571428571vw;
  }
}
.commonContact__link a:hover {
  color: #fff;
  background: #927644;
}
.commonContact__link a:hover:before {
  top: -80px;
  left: -144px;
  opacity: 1;
  -webkit-transform: rotate(5deg);
          transform: rotate(5deg);
}
@media only screen and (max-width: 768px) {
  .commonContact__link a:hover:before {
    top: -27.4285714286vw;
    left: -9.1428571429vw;
  }
}
.commonContact__link a:after {
  content: none;
}

/* Footer
=========================================== */
.footer__content {
  padding: 48px 0;
}
.footer__logo {
  color: #3e242a;
  font-size: 26px;
  font-size: 2.6rem;
  font-family: "GFS Didot", serif;
  letter-spacing: 1px;
}
.footer__logo a {
  color: #3e242a;
}
@media only screen and (max-width: 768px) {
  .footer__logo {
    font-size: 52px;
    font-size: 7.4285714286vw;
    text-align: center;
  }
}
.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media only screen and (max-width: 768px) {
  .footer__nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.footer__nav li {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: normal;
}
@media only screen and (min-width: 769px) {
  .footer__nav li {
    margin-right: 1.5em;
  }
}
@media only screen and (max-width: 768px) {
  .footer__nav li {
    font-size: 28px;
    font-size: 4vw;
  }
}
.footer__nav li a {
  display: block;
  padding: 1em 0;
  text-decoration: none;
  color: #3e242a;
  position: relative;
}
.footer__nav li a:before {
  content: ">";
  margin-right: 0.5em;
}
@media only screen and (min-width: 769px) {
  .footer__nav li a:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0.8em;
    width: 100%;
    height: 1px;
    background: #3e242a;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .footer__nav li a:hover:after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
}
@media only screen and (max-width: 768px) {
  .footer__nav {
    margin-top: 1em;
    margin-bottom: 1em;
    border-top: 1px solid #ddd;
  }
  .footer__nav li {
    border-bottom: 1px solid #ddd;
    width: 50%;
  }
  .footer__nav li:nth-child(odd) {
    border-right: 1px solid #ddd;
  }
  .footer__nav li a {
    padding: 4.5714285714vw 2.8571428571vw;
  }
}

/* Copyright
=========================================== */
.copyright {
  background: #202a33;
  font-size: 14px;
  font-size: 1.4rem;
  padding: 0.5em 0;
  text-align: center;
  color: #fff;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .copyright {
    font-size: 28px;
    font-size: 4vw;
  }
}
.copyright a {
  color: #fff;
}

/* ページtop
=========================================== */
.pagetop {
  position: fixed;
  bottom: 4%;
  right: 4%;
  display: none;
}
@media only screen and (max-width: 768px) {
  .pagetop {
    bottom: 13.7142857143vw;
    right: 4.5714285714vw;
  }
}
.pagetop a {
  background-color: rgba(32, 42, 51, 0.5);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
}
@media only screen and (max-width: 768px) {
  .pagetop a {
    width: 14.2857142857vw;
    height: 14.2857142857vw;
    padding: 2.8571428571vw;
  }
}

.page_home .header__wrap {
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .page_home .header__wrap {
    background-size: contain;
  }
}

@media only screen and (min-width: 769px) {
  .hero {
    height: 536px;
  }
}
@media only screen and (max-width: 768px) {
  .hero {
    height: 68.5714285714vw;
  }
}
.hero > .container {
  height: 100%;
}
.hero__textarea {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.hero__text {
  font-family: "Noto Serif JP", serif;
  text-align: center;
}
@media only screen and (min-width: 769px) {
  .hero__text {
    font-size: 42px;
    font-size: 4.2rem;
  }
}
@media only screen and (max-width: 768px) {
  .hero__text {
    font-size: 48px;
    font-size: 6.8571428571vw;
  }
}

.hero--sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 176px;
  background-attachment: fixed;
  background-size: cover;
  margin-top: 56px;
}
@media only screen and (max-width: 768px) {
  .hero--sub {
    background: none;
    height: auto;
    margin-top: auto;
    margin: 1.5em;
  }
}
@media (min-width: 1920px) {
  .hero--sub {
    background-size: cover;
  }
}
.hero--sub .hero--sub__titlearea {
  text-align: center;
  color: #3e242a;
  font-weight: normal;
  line-height: 1.4;
}
.hero--sub .hero--sub__titlearea .jp {
  color: #5a7892;
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-size: 1.4rem;
  margin-top: -0.5em;
  letter-spacing: 2px;
}
@media only screen and (max-width: 768px) {
  .hero--sub .hero--sub__titlearea .jp {
    font-size: 28px;
    font-size: 4vw;
  }
}
.hero--sub .hero--sub__titlearea .en {
  font-family: "GFS Didot", serif;
  display: block;
  font-size: 48px;
  font-size: 4.8rem;
  text-transform: capitalize;
}
@media only screen and (max-width: 768px) {
  .hero--sub .hero--sub__titlearea .en {
    font-size: 72px;
    font-size: 10.2857142857vw;
    margin-bottom: 1.1428571429vw;
  }
}

/****************************************************
Hero
*****************************************************/
.hero__slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.hero__slider li > span {
  display: inline-block;
}

.top__text {
  margin-bottom: 2em;
}
@media only screen and (min-width: 769px) {
  .top__text {
    text-align: center;
  }
}
@media only screen and (max-width: 768px) {
  .top__text {
    margin-bottom: 1em;
  }
}

.topService__box {
  background: #fff;
  padding: 32px;
  margin: 0 16px;
}
@media screen and (min-width: 769px) and (max-width: 1120px) {
  .topService__box {
    /*　画面サイズが$sm-max+1から$contentWidth_pcまではここを読み込む　*/
    margin: 0;
  }
}
@media only screen and (max-width: 768px) {
  .topService__box {
    max-width: 137.1428571429vw;
    margin: 0 auto;
    padding: 4.5714285714vw;
  }
}
.topService__box i {
  text-align: center;
  font-size: 104px;
  font-size: 10.4rem;
  font-family: "Font Awesome 5 Free";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 170px;
  justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 768px) {
  .topService__box i {
    font-size: 160px;
    font-size: 22.8571428571vw;
    height: 32vw;
  }
}
.topService__title .en {
  font-size: 42px;
  font-size: 4.2rem;
  font-family: "Alex Brush", cursive;
  margin: 0 auto -0.5em;
  display: table;
  position: relative;
}
.topService__title .en:after {
  content: "";
  height: 16px;
  width: 120%;
  background: rgba(90, 120, 146, 0.4);
  position: absolute;
  bottom: 0.4em;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media only screen and (max-width: 768px) {
  .topService__title .en {
    font-size: 72px;
    font-size: 10.2857142857vw;
    margin: 0 auto;
  }
}
.topService__title .jp {
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
  color: #5a7892;
  margin-top: 0.5em;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .topService__title .jp {
    margin-top: -1em;
  }
}
.topService__text {
  font-size: 14px;
  font-size: 1.4rem;
}
@media only screen and (min-width: 769px) {
  .topService__text {
    height: 140px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1120px) {
  .topService__text {
    height: auto;
  }
}
@media only screen and (max-width: 768px) {
  .topService__text {
    font-size: 28px;
    font-size: 4vw;
  }
}
.topWorks {
  background: url(../images/home/bg_topWorks.jpg) repeat-x;
  background-position: bottom;
}
.topWorks__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding-bottom: 48px;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .topWorks__list {
    padding-bottom: 13.7142857143vw;
  }
}
.topWorks__link {
  display: block;
  position: relative;
  top: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.topWorks__link figure {
  overflow: hidden;
}
.topWorks__link figure img {
  display: block;
  width: 100%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.topWorks__link figcaption {
  padding: 2em;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  color: #3e242a;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1;
  opacity: 0;
  height: 100%;
}
@media screen and (max-width: 1120px) {
  .topWorks__link figcaption {
    opacity: 1;
    background: rgba(255, 255, 255, 0.7);
    padding: 1em;
    height: auto;
  }
}
.topWorks__link:hover {
  top: -20px;
}
@media only screen and (min-width: 769px) {
  .topWorks__link:hover figure img {
    display: block;
    -webkit-filter: blur(3px);
            filter: blur(3px);
    opacity: 0.6;
  }
  .topWorks__link:hover figure figcaption {
    opacity: 1;
  }
}
@media only screen and (max-width: 768px) {
  .topWorks__link:hover {
    top: 0;
  }
}
.topWorks__item {
  margin-left: 1em;
  margin-right: 1em;
  position: relative;
}
@media only screen and (min-width: 769px) {
  .topWorks__item {
    background: #fff;
  }
}
.topWorks__textbox {
  position: relative;
  width: 100%;
  height: 100%;
}
.topWorks__text {
  width: 100%;
}
.topWorks .slick-list {
  padding-top: 24px !important;
}
@media only screen and (max-width: 768px) {
  .topWorks .slick-list {
    padding-top: 6.8571428571vw !important;
  }
}

.topPosts {
  overflow: hidden;
}
.topPosts .top__title .en, .topPosts .common__title .en, .topPosts .commonContact__title .en {
  font-size: 40px;
  font-size: 4rem;
}
@media only screen and (max-width: 768px) {
  .topPosts .top__title .en, .topPosts .common__title .en, .topPosts .commonContact__title .en {
    font-size: 72px;
    font-size: 10.2857142857vw;
    margin-bottom: 1.1428571429vw;
  }
}
.topPosts__box {
  background: #fff;
  padding: 32px;
  margin: 0 16px;
}
@media screen and (min-width: 769px) and (max-width: 1120px) {
  .topPosts__box {
    margin: 0;
  }
}
@media only screen and (max-width: 768px) {
  .topPosts__box {
    padding: 4.5714285714vw;
    margin: 0;
  }
}
.topPosts__list {
  margin-bottom: 2em;
}
.topPosts__item {
  border-top: #3e242a solid 1px;
  font-size: 16px;
  font-size: 1.6rem;
}
@media only screen and (max-width: 768px) {
  .topPosts__item {
    font-size: 28px;
    font-size: 4vw;
  }
}
.topPosts__item a {
  padding: 1em;
  position: relative;
  display: block;
}
@media only screen and (max-width: 768px) {
  .topPosts__item a {
    padding: 1em 1.5em 1em 1em;
  }
}
.topPosts__item a:after {
  color: #3e242a;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 0.5em;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 8px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media only screen and (max-width: 768px) {
  .topPosts__item a:after {
    right: 1.1428571429vw;
  }
}
.topPosts__item a:hover {
  background: rgba(90, 120, 146, 0.2);
}
.topPosts__item a:hover:after {
  right: 2px;
}
@media only screen and (max-width: 768px) {
  .topPosts__item a:hover:after {
    right: 0.5714285714vw;
  }
}
.topPosts__item:last-child {
  border-bottom: #3e242a solid 1px;
}
.topPosts__day {
  display: block;
  color: #5a7892;
  font-weight: bold;
}
.topPosts__title {
  display: block;
  color: #3e242a;
}

.topAbout {
  overflow: hidden;
}
.topAbout__wrap {
  position: relative;
}
@media screen and (max-width: 1120px) {
  .topAbout__wrap {
    margin: auto;
  }
}
.topAbout__wrap:before {
  content: url(../images/home/topAbout_before.png);
  position: absolute;
  top: -120px;
  right: 0;
}
@media only screen and (max-width: 768px) {
  .topAbout__wrap:before {
    top: -34.2857142857vw;
  }
}
.topAbout__wrap:after {
  content: url(../images/home/topAbout_after.png);
  position: absolute;
  bottom: -96px;
  left: -24px;
}
@media only screen and (max-width: 768px) {
  .topAbout__wrap:after {
    bottom: -27.4285714286vw;
    left: -6.8571428571vw;
  }
}
@media only screen and (max-width: 768px) {
  .topAbout .lead {
    text-align: left;
  }
}
.topAbout__list {
  margin-bottom: 2em;
}
.topAbout .list > li {
  display: table;
  margin-left: auto;
  margin-right: auto;
}

/*共通で使うパーツ*/
.c-padding, .secPage {
  padding: 3em 0;
}
@media only screen and (max-width: 768px) {
  .c-padding, .secPage {
    padding: 2.5em 0;
  }
}

.img-parallax {
  background-attachment: fixed;
  background-size: cover;
  height: 450px;
}
@media only screen and (max-width: 768px) {
  .img-parallax {
    height: 71.4285714286vw;
  }
}

input[type=text], input[type=email], input[type=tel] {
  max-width: 100%;
  padding: 0.5em;
  border: #ccc solid 1px;
  line-height: 20px;
}
@media only screen and (max-width: 768px) {
  input[type=text], input[type=email], input[type=tel] {
    line-height: 5.7142857143vw;
  }
}

textarea {
  width: 100%;
  padding: 0.5em;
  border: #ccc solid 1px;
}

input[type=submit] {
  padding: 0.5em;
  border: #ccc solid 1px;
}

.pageMenu > .container {
  padding: 1em;
}
.pageMenu__title {
  font-family: "GFS Didot", serif;
  color: #5a7892;
  font-size: 22px;
  font-size: 2.2rem;
  display: table;
  border-top: solid #5a7892 1px;
  border-bottom: solid #5a7892 1px;
  margin: 0.5em auto;
  text-transform: capitalize;
}
.pageMenu__item a {
  display: block;
  background: #deefef;
  padding: 8px 32px 8px 8px;
  position: relative;
  top: 0;
  color: #3e242a;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.pageMenu__item a:before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  border-width: 0 24px 24px 0;
  border-style: solid;
  border-color: #fff #fff #cde7e7;
  -webkit-box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15);
          box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15);
}
.pageMenu__item a:hover {
  top: -4px;
}
.pageMenu__item a:hover:before {
  content: none;
}

.searchResults #search {
  -webkit-columns: 2;
     -moz-columns: 2;
          columns: 2;
}
@media only screen and (max-width: 420px) {
  .searchResults #search {
    -webkit-columns: 1;
       -moz-columns: 1;
            columns: 1;
  }
}
.searchResults #search li {
  width: 100%;
  border-bottom: solid 1px #ccc;
}
.searchResults #search li a {
  color: #3e242a;
  padding: 1em;
  position: relative;
  display: block;
}
@media only screen and (max-width: 768px) {
  .searchResults #search li a {
    padding: 1em 1.5em 1em 1em;
  }
}
.searchResults #search li a:after {
  color: #3e242a;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 0.5em;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 8px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media only screen and (max-width: 768px) {
  .searchResults #search li a:after {
    right: 1.1428571429vw;
  }
}
.searchResults #search li a:hover {
  background: rgba(90, 120, 146, 0.2);
}
.searchResults #search li a:hover:after {
  right: 2px;
}

#sidebar .sidecontents {
  margin-bottom: 3em;
}
#sidebar .sidecontents h4 {
  background: rgba(90, 120, 146, 0.6);
  padding: 0.5em;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 1.5em;
}
#sidebar .sidecontents .wp-block-calendar .wp-calendar-table {
  width: 100%;
  margin-bottom: 1.5em;
}
#sidebar .sidecontents .wp-block-calendar .wp-calendar-table caption {
  color: #5a7892;
  margin-bottom: 1em;
  font-size: 18px;
  font-size: 1.8rem;
}
@media only screen and (max-width: 768px) {
  #sidebar .sidecontents .wp-block-calendar .wp-calendar-table caption {
    font-size: 36px;
    font-size: 5.1428571429vw;
  }
}
#sidebar .sidecontents .wp-block-calendar .wp-calendar-table tr {
  border-bottom: 1px solid #ccc;
}
#sidebar .sidecontents .wp-block-calendar .wp-calendar-table tr:first-child {
  border-top: 1px solid #ccc;
}
#sidebar .sidecontents .wp-block-calendar .wp-calendar-table tr th, #sidebar .sidecontents .wp-block-calendar .wp-calendar-table tr td {
  border-right: 1px solid #ccc;
  padding: 0.5em;
}
#sidebar .sidecontents .wp-block-calendar .wp-calendar-table tr th:first-child, #sidebar .sidecontents .wp-block-calendar .wp-calendar-table tr td:first-child {
  border-left: 1px solid #ccc;
}
#sidebar .sidecontents .wp-block-calendar .wp-calendar-table tr th {
  background: #d4dde4;
}
#sidebar .sidecontents .wp-block-calendar .wp-calendar-table tr td {
  text-align: center;
  background: #fff;
}
#sidebar .sidecontents .wp-block-calendar .wp-calendar-table tr td a {
  display: block;
}
#sidebar .sidecontents .wp-block-calendar .wp-calendar-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#sidebar .sidecontents .wp-block-calendar .wp-calendar-nav a {
  padding: 0.5em 1em;
  display: block;
  border: 1px solid #ccc;
  color: #3e242a;
}
#sidebar .sidecontents .wp-block-calendar .wp-calendar-nav a:hover {
  background: rgba(90, 120, 146, 0.2);
}
#sidebar .sidecontents .wp-block-latest-posts__list li {
  border-bottom: #ccc solid 1px;
  font-size: 14px;
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  #sidebar .sidecontents .wp-block-latest-posts__list li {
    font-size: 26px;
    font-size: 3.7142857143vw;
  }
}
#sidebar .sidecontents .wp-block-latest-posts__post-title {
  color: #3e242a;
  padding: 1em;
  position: relative;
  display: block;
}
@media only screen and (max-width: 768px) {
  #sidebar .sidecontents .wp-block-latest-posts__post-title {
    padding: 1em 1.5em 1em 1em;
  }
}
#sidebar .sidecontents .wp-block-latest-posts__post-title:after {
  color: #3e242a;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 0.5em;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 8px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media only screen and (max-width: 768px) {
  #sidebar .sidecontents .wp-block-latest-posts__post-title:after {
    right: 1.1428571429vw;
  }
}
#sidebar .sidecontents .wp-block-latest-posts__post-title:hover {
  background: rgba(90, 120, 146, 0.2);
}
#sidebar .sidecontents .wp-block-latest-posts__post-title:hover:after {
  right: 2px;
}
#sidebar .sidecontents .wp-block-categories-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
#sidebar .sidecontents .wp-block-categories .cat-item {
  display: inline-block;
}
#sidebar .sidecontents .wp-block-categories .cat-item a {
  display: block;
  padding: 0.5em 1em;
  margin: 0 0.5em 0 0;
  border: 1px solid #ccc;
  color: #3e242a;
}
#sidebar .sidecontents .wp-block-categories .cat-item a:hover {
  background: rgba(90, 120, 146, 0.2);
}

.contactBlock .table-contact tr {
  border-bottom: 1px solid #ccc;
}
.contactBlock .table-contact tr th {
  padding-right: 72px;
}
@media only screen and (max-width: 768px) {
  .contactBlock .table-contact tr th {
    text-align: left;
  }
}
.contactBlock .table-contact tr .require, .contactBlock .table-contact tr .option {
  position: relative;
}
.contactBlock .table-contact tr .require:after, .contactBlock .table-contact tr .option:after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 1em;
  font-size: 12px;
  font-size: 1.2rem;
  padding: 0.5em 1em;
}
@media only screen and (max-width: 768px) {
  .contactBlock .table-contact tr .require:after, .contactBlock .table-contact tr .option:after {
    font-size: 24px;
    font-size: 3.4285714286vw;
  }
}
.contactBlock .table-contact tr .require:after {
  content: "必須";
  background: #5a7892;
  color: #fff;
}
.contactBlock .table-contact tr .option:after {
  content: "任意";
  border: #5a7892 solid 1px;
  color: #5a7892;
}
.contactBlock .table-contact .wpcf7-radio .wpcf7-list-item {
  font-size: 14px;
  font-size: 1.4rem;
  margin-right: 1em;
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .contactBlock .table-contact .wpcf7-radio .wpcf7-list-item {
    font-size: 28px;
    font-size: 4vw;
    display: block;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
  }
}
.contactBlock input[type=text], .contactBlock input[type=email], .contactBlock input[type=tel] {
  width: 100%;
}
.contactBlock .box.consent {
  text-align: center;
}
.contactBlock .box.consent .box__title {
  margin-left: auto;
  margin-right: auto;
}
.contactBlock .box.consent .consent__link {
  padding: 0.5em;
  display: inline-block;
}
.contactBlock .box.consent .submit input {
  background: #927644;
  color: #fff;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px;
  height: 100%;
  text-align: center;
  width: 100%;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 2px;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  cursor: pointer;
  cursor: hand;
  white-space: nowrap;
}
.contactBlock .box.consent .submit input:hover {
  font-size: 18px;
  font-size: 1.8rem;
}
@media only screen and (max-width: 768px) {
  .contactBlock .box.consent .submit input {
    font-size: 32px;
    font-size: 4.5714285714vw;
    letter-spacing: 0.5714285714vw;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .contactBlock .box.consent .submit input:hover {
    font-size: 36px;
    font-size: 5.1428571429vw;
  }
}
.contactBlock .wpcf7-response-output {
  text-align: center;
}

.infoArchive__item {
  background: #fff;
  margin-bottom: 3em;
}
.infoArchive__item > a {
  display: block;
  padding: 2rem 2rem 1rem;
  position: relative;
}
.infoArchive__item > a:after {
  color: #3e242a;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 0.5em;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 8px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media only screen and (max-width: 768px) {
  .infoArchive__item > a:after {
    right: 1.1428571429vw;
  }
}
.infoArchive__item > a:hover {
  background: rgba(90, 120, 146, 0.2);
}
.infoArchive__item > a:hover:after {
  right: 2px;
}
.infoArchive__content--date {
  color: #5a7892;
  font-weight: bold;
}
.infoArchive__content--title {
  color: #3e242a;
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .infoArchive__content--title {
    font-size: 30px;
    font-size: 4.2857142857vw;
  }
}
.infoArchive__footer {
  padding: 1rem;
  margin: 0 1rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  font-size: 1.4rem;
  border-top: 1px dotted #ccc;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 768px) {
  .infoArchive__footer {
    font-size: 28px;
    font-size: 4vw;
  }
}
.infoArchive__footer--cate {
  display: flexbox;
  font-size: 14px;
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  .infoArchive__footer--cate {
    font-size: 28px;
    font-size: 4vw;
  }
}
.infoArchive__footer--cate a {
  display: block;
  color: #fff;
  background: #88c6c6;
  padding: 0.2em 0.5em;
}
.infoArchive__footer--cate a:hover {
  background: #abd6d6;
}
.infoArchive__footer--comment {
  margin-left: 0.5em;
}

.infoSingle div.post {
  background: #fff;
  padding: 1rem;
}
.infoSingle div.post .data {
  text-align: right;
  font-size: 14px;
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  .infoSingle div.post .data {
    font-size: 28px;
    font-size: 4vw;
  }
}
.infoSingle div.post .category {
  font-size: 12px;
  font-size: 1.2rem;
  padding: 1em 0 0;
  margin-top: 1.5em;
  border-top: 1px dotted #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.5em;
}
@media only screen and (max-width: 768px) {
  .infoSingle div.post .category {
    font-size: 24px;
    font-size: 3.4285714286vw;
  }
}
.infoSingle div.post .category a {
  padding: 0.5em 1em;
  display: block;
  border: 1px solid #ccc;
  color: #3e242a;
  margin-right: 0.5em;
}
.infoSingle div.post .category a:last-child {
  margin-right: 0;
}
.infoSingle div.post .category a:hover {
  background: rgba(90, 120, 146, 0.2);
}
.infoSingle__content {
  padding: 0.5em 1em;
}
.infoSingle__content h4 {
  font-family: "Noto Sans JP", sans-serif;
}
.infoSingle__content h5 {
  color: #5a7892;
  font-weight: bold;
  margin-bottom: 1.5em;
}
.infoSingle__title a {
  display: block;
  background: rgba(90, 120, 146, 0.6);
  font-size: 24px;
  font-size: 2.4rem;
  text-align: center;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  padding: 0.5em 1em;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 768px) {
  .infoSingle__title a {
    font-size: 36px;
    font-size: 5.1428571429vw;
    text-align: left;
  }
}
.infoSingle .navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .infoSingle .navigation {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.infoSingle .navigation .alignleft, .infoSingle .navigation .alignright {
  font-size: 14px;
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  .infoSingle .navigation .alignleft, .infoSingle .navigation .alignright {
    font-size: 28px;
    font-size: 4vw;
  }
}
.infoSingle .navigation .alignleft a, .infoSingle .navigation .alignright a {
  border: 1px solid #ccc;
  display: inline-block;
  padding: 0.5em 1em;
  color: #3e242a;
  position: relative;
}
.infoSingle .navigation .alignleft a:after, .infoSingle .navigation .alignright a:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.infoSingle .navigation .alignleft a:hover, .infoSingle .navigation .alignright a:hover {
  background: rgba(90, 120, 146, 0.2);
}
.infoSingle .navigation .alignleft a {
  padding-left: 1.5em;
}
.infoSingle .navigation .alignleft a:after {
  content: "\f104";
  left: 8px;
}
@media only screen and (max-width: 768px) {
  .infoSingle .navigation .alignleft a:after {
    left: 2.2857142857vw;
  }
}
.infoSingle .navigation .alignleft a:hover:after {
  left: 2px;
}
@media only screen and (max-width: 768px) {
  .infoSingle .navigation .alignleft a:hover:after {
    left: 0.5714285714vw;
  }
}
.infoSingle .navigation .alignright a {
  padding-right: 1.5em;
}
.infoSingle .navigation .alignright a:after {
  content: "\f105";
  right: 8px;
}
@media only screen and (max-width: 768px) {
  .infoSingle .navigation .alignright a:after {
    right: 2.2857142857vw;
  }
}
.infoSingle .navigation .alignright a:hover:after {
  right: 2px;
}
@media only screen and (max-width: 768px) {
  .infoSingle .navigation .alignright a:hover:after {
    right: 0.5714285714vw;
  }
}
.infoSingle-comments p {
  font-size: 14px;
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  .infoSingle-comments p {
    font-size: 28px;
    font-size: 4vw;
  }
}
.infoSingle-comments h4 {
  display: block;
  background: rgba(90, 120, 146, 0.6);
  padding: 0.5em;
  font-family: "Noto Serif JP", serif;
  margin-top: 3em;
  margin-bottom: 1.5em;
  color: #fff;
}
.infoSingle-comments h4 a {
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .infoSingle-comments .commentform__text span {
    display: block;
    margin-bottom: 0.5em;
  }
}
.infoSingle-comments .commentform__text a {
  display: inline-block;
  padding: 0.5em 1em;
  color: #3e242a;
  border: solid 1px #ccc;
}
.infoSingle-comments .commentform__text a:hover {
  background: rgba(90, 120, 146, 0.2);
}
.infoSingle-comments #commentlist li {
  background: rgba(255, 255, 255, 0.8);
  padding: 1em;
  margin-bottom: 1em;
}
.infoSingle-comments #commentlist li p + p {
  border-top: dotted 1px #ccc;
  font-size: 12px;
  font-size: 1.2rem;
  padding-top: 0.5em;
}
@media only screen and (max-width: 768px) {
  .infoSingle-comments #commentlist li p + p {
    font-size: 24px;
    font-size: 3.4285714286vw;
  }
}
.infoSingle-comments #commentlist li cite {
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .infoSingle-comments #commentlist li cite span {
    display: block;
  }
}
.infoSingle-comments label {
  display: block;
}

@media only screen and (min-width: 769px) {
  .sub .container {
    max-width: 980px;
  }
}