@charset "UTF-8";
@media print {
  body {
    -webkit-print-color-adjust: exact;
  }
}
*, *:before, *:after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-feature-settings: "palt";
  -moz-font-feature-settings: "palt";
}

.both-image-ly__description,
.background-section__description,
.four-pic-ly__list-item {
  text-align: justify;
  text-justify: inter-ideograph;
}

/* CSSアニメーション */
/*1.フェードインアニメーションの指定*/
.scrollanime {
  opacity: 0;
}

/*一瞬表示されるのを防ぐ*/
.fadeInDown {
  animation-name: fadeInDown;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate(0px, 15px);
  }
  100% {
    opacity: 1;
    transform: translate(0px, 0px);
  }
}
.fadeInDownFv {
  animation-name: fadeInDownFv;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  animation-delay: 0.2s;
}

@keyframes fadeInDownFv {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
.visible {
  opacity: 1;
  transition: 1000;
  transition-property: opacity;
}

/*! destyle.css v2.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-tap-highlight-color: transparent;
  /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
  overflow-x: hidden;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type="checkbox"] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type="radio"] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

button[disabled],
[type="button"][disabled],
[type="reset"][disabled],
[type="submit"][disabled] {
  cursor: default;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove arrow in IE10 & IE11
 */
select::-ms-expand {
  display: none;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type="search"] {
  outline-offset: -2px;
  /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable] {
  outline: none;
}

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

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* Misc */
/* ============================================ */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

@media print, screen and (max-width: 767px) {
  body {
    overflow-x: hidden;
  }

  img {
    vertical-align: bottom;
    width: 100%;
  }

  .none, .pc {
    display: none;
  }

  #header {
    position: fixed;
    width: 100%;
    height: 60px;
    line-height: 1;
    z-index: 9;
    background: #fff;
  }
  #header .logo {
    height: 60px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-align: center;
        align-items: center;
    font-size: 10px;
    line-height: 1.4;
  }
  #header .logo img {
    width: auto;
    height: 34px;
    margin: 0 10px;
  }
  #header #menuBtn {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: url("../img/sp_menubtn.png") no-repeat 0 0;
    background-size: 60px auto;
    transition: 0.5s;
  }
  #header #menuBtn.on {
    background: url("../img/sp_menubtn2.png") no-repeat 0 0;
    background-size: 60px auto;
  }

  #menu {
    width: 100%;
    position: fixed;
    top: 60px;
    left: 0px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    display: none;
  }
  #menu ul {
    text-align: center;
    border-top: 1px solid #aaaaaa;
    border-bottom: 1px solid #aaaaaa;
    padding: 0 10px;
  }
  #menu ul li a {
    display: block;
    padding: 25px;
    font-size: 14px;
    letter-spacing: 2px;
  }
  #menu ul li a.current {
    color: #cc5517;
  }
  #menu ul li:first-child {
    border-bottom: 1px solid #aaaaaa;
  }

  footer {
    padding: 50px 10px 0;
  }
  footer .footer__parent-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
  footer .footer__parent-list .footer__parent-list-item {
    width: calc(50% - 10px);
    padding-bottom: 30px;
  }
  footer .footer__parent-list .footer__parent-list-item .footer__parent-el {
    font-weight: bold;
    font-size: 14px;
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
  }
  footer .footer__parent-list .footer__parent-list-item .footer__child-list-item {
    padding-top: 12px;
    font-size: 12px;
  }
  footer .footer__width-line {
    display: none;
  }
  footer .footer__bottom {
    text-align: center;
  }
  footer .footer__bottom .footer__produced-by span {
    display: block;
    font-size: 14px;
    padding: 15px;
    letter-spacing: 1px;
  }
  footer .footer__bottom .footer__produced-by img {
    width: 140px;
  }
  footer .footer__bottom .footer__copy-right {
    font-size: 10px;
    display: block;
    padding: 20px 0 10px;
    letter-spacing: 1px;
    line-height: 1.5;
  }

  .fixed-btn {
    text-align: center;
    position: fixed;
    z-index: 2000;
    bottom: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #eee;
  }

  .fixed-btn i {
    padding-top: 5px;
    box-sizing: border-box;
    display: inline-block;
    width: 100%;
    font-size: 22px;
    line-height: 1;
  }

  .fixed-btn span {
    box-sizing: border-box;
    display: block;
    width: 100%;
    letter-spacing: 1px;
    font-size: 10px;
    padding-top: 2px;
  }

  main {
    padding-top: 60px;
    position: relative;
    text-align: justify;
    text-justify: inter-ideograph;
    letter-spacing: 0.1em;
    font-size: 14px;
  }

  /*====================================================================
  TopSlide
  ====================================================================*/
  .sliderArea {
    position: relative;
    width: 100%;
  }
  .sliderArea .slider > div {
    position: relative;
  }
  .sliderArea .slick-slide img {
    width: 100%;
    height: auto;
  }

  .slick-dots {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    position: absolute;
    width: 120px;
    height: 5px;
    bottom: -15px;
    left: calc(50% - 60px);
  }

  .slick-dots li {
    text-align: center;
    font-size: 1px;
    background-color: #e8b296;
    width: 30%;
    display: block;
    content: "" !important;
  }

  .slick-dots li.slick-active {
    background-color: #cc5517;
  }

  .top-fv__txt-cover {
    position: absolute;
    top: 80px;
    left: 25px;
    color: #fff;
    text-align: center;
  }
  .top-fv__txt-cover .top-fv__year {
    letter-spacing: 2px;
    font-size: 60px;
    font-weight: bold;
    padding-bottom: 5px;
    border-bottom: 1px solid #fff;
  }
  .top-fv__txt-cover .top-fv__year span {
    font-size: 16px;
    display: block;
    line-height: 1.2;
  }
  .top-fv__txt-cover .top-fv__detail {
    padding: 10px 0;
    font-weight: bold;
  }
  .top-fv__txt-cover .top-fv__detail span {
    display: block;
    font-size: 12px;
    padding-top: 3px;
  }
  .top-fv__txt-cover .top-fv__btn {
    display: block;
    background: #CC5517;
    padding: 10px;
    font-size: 11px;
  }
  .top-fv__txt-cover .top-fv__btn i {
    margin-left: 5px;
  }

  /*====================================================================
  good-design
  ====================================================================*/
  .top-fv__good-design {
    padding: 60px 15px;
  }
  .top-fv__good-design .top-fv__good-design__inner__side--left {
    text-align: center;
    padding-bottom: 25px;
  }
  .top-fv__good-design .top-fv__good-design__inner__side--left img {
    width: 250px;
  }
  .top-fv__good-design .top-fv__good-design__inner__side--right {
    line-height: 1.8;
  }

  /*====================================================================
  award-records
  ====================================================================*/
  .award-records {
    padding: 60px 10px;
    background-color: #E9F1F1;
  }
  .award-records .top-section-title {
    text-align: center;
  }
  .award-records .top-section-title .top-section-title__heading {
    font-size: 20px;
    letter-spacing: 2px;
    color: #CC5517;
    font-weight: bold;
    padding-bottom: 10px;
  }
  .award-records .top-section-title .top-section-title__sub {
    width: 210px;
    margin: auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: center;
        align-items: center;
  }
  .award-records .top-section-title .top-section-title__sub .top-section-title__sub-txt {
    letter-spacing: 2px;
  }
  .award-records .top-section-title .top-section-title__sub .top-section-title__line {
    width: 50px;
    height: 1px;
    background-color: #666;
  }
  .award-records .award-records__grid {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: justify;
        justify-content: space-between;
    text-align: center;
  }
  .award-records .award-records__grid .award-records__grid-parts {
    margin-top: 30px;
    width: calc(50% - 5px);
  }
  .award-records .award-records__grid .award-records__grid-parts a {
    display: block;
  }
  .award-records .award-records__grid .award-records__grid-parts a .award-records__image {
    position: relative;
  }
  .award-records .award-records__grid .award-records__grid-parts a .award-records__image img {
    width: 100%;
    max-height: 100%;
    height: 130px;
    object-fit: cover;
    overflow: hidden;
    font-family: 'object-fit: cover;';
  }
  .award-records .award-records__grid .award-records__grid-parts a .award-records__image-filter {
    position: absolute;
    width: 100%;
    height: 100%;
    border-top: solid 5px rgba(255, 255, 255, 0.3);
    border-right: solid 5px rgba(255, 255, 255, 0.3);
    border-left: solid 5px rgba(255, 255, 255, 0.3);
  }
  .award-records .award-records__grid .award-records__grid-parts a .award-records__works-title-gr {
    padding: 6px 0;
    background-color: #fff;
  }
  .award-records .award-records__grid .award-records__grid-parts a .award-records__works-title {
    font-size: 10px;
    letter-spacing: 0.05em;
  }
  .award-records .award-records__grid .award-records__grid-parts a .award-records__works-title span {
    font-size: 16px;
    color: #CC5517;
	font-weight: bold;
  }
  .award-records .award-records__grid .award-records__grid-parts a .award-records__name-gr {
    margin-top: 10px;
  }
  .award-records .award-records__grid .award-records__grid-parts a .award-records__name {
    font-weight: bold;
    font-size: 12px;
    line-height: 1.4;
  }
  .award-records .award-records__grid .award-records__grid-parts a .award-records__name span {
    font-size: 10px;
    font-weight: normal;
  }

  /*====================================================================
  個別ページ
  ====================================================================*/
  .page-title {
    padding: 15px 0;
    text-align: center;
    background-color: #E9F1F1;
  }
  .page-title .page-title__heading {
    font-size: 16px;
    font-weight: bold;
  }
  .page-title .page-title__heading span {
    color: #CC5517;
    font-size: 24px;
  }

  .back-to {
    border-top: solid #CC5517 1px;
    text-align: center;
    margin-top: 50px;
  }
  .back-to a {
    display: inline-block;
    color: #fff;
    background-color: #CC5517;
    padding: 10px 20px;
  }
  .back-to a i {
    margin-left: 5px;
    font-size: 16px;
  }

  .image-long__pic img {
    height: auto;
  }

  .both-image-ly__cutomer-name {
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    padding: 15px;
  }
  .both-image-ly__cutomer-name span {
    font-weight: normal;
    font-size: 12px;
  }

  .box-title {
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    background-color: #CC5517;
    padding: 15px;
  }

  .both-image-ly__description,
  .image-long__description,
  .background-section__description,
  .four-pic-ly__list-item {
    line-height: 1.8;
  }

  .image-long__outline,
  .both-image-ly__detail {
    padding: 20px 15px 50px;
  }
  .image-long__outline .outline,
  .both-image-ly__detail .outline {
    display: block;
    color: #CC5517;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    border-bottom: solid 1px #CC5517;
    letter-spacing: 0.2em;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }

  .background-section__description {
    padding: 10px 15px 50px;
  }

  .four-pic-ly__top {
    padding: 30px 15px 0;
    border-top: 1px solid #CC5517;
    position: relative;
  }
  .four-pic-ly__top .box-title {
    position: absolute;
    top: 30px;
    left: 15px;
    padding: 10px 7px;
  }
  .four-pic-ly__top .four-pic-ly__heading {
    font-size: 15px;
    font-weight: bold;
    color: #CC5517;
    line-height: 1.5;
    padding: 5px 0 20px 100px;
  }
  .four-pic-ly__top .four-pic-ly__list-item {
    padding-bottom: 1em;
  }

  .modal {
    display: none;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    z-index: 10000;
  }

  .modal__bg {
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100vh;
    position: absolute;
  }

  .modal__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-height: 100vh;
    text-align: center;
  }

  .modal__content p {
    overflow-y: auto;
    -ms-overflow-style: none;
    max-height: 100vh;
  }

  .modal__content img {
    max-width: 96%;
  }

  .modalwindow__cross-gr {
    padding-top: 0px;
    box-sizing: border-box;
    position: absolute;
    top: 20px;
    right: 3px;
    width: 30px;
    height: 30px;
  }

  .modalwindow__cross-gr:hover {
    cursor: pointer;
  }

  .modalwindow__cross {
    position: absolute;
    width: 90%;
    height: 2px;
    background-color: #fff;
  }

  .modalwindow__cross--first {
    transform: rotate(45deg);
  }

  .modalwindow__cross--second {
    transform: rotate(-45deg);
  }

  #main-2020kyoto .mainslide {
    position: relative;
  }
  #main-2020kyoto .slide-arrow {
    position: absolute;
    top: 50%;
    margin-top: -25px;
    z-index: 1;
  }
  #main-2020kyoto .prev-arrow {
    left: 0;
    width: 30px;
  }
  #main-2020kyoto .next-arrow {
    right: 0;
    width: 30px;
  }
  #main-2020kyoto .four-pic-ly__heading {
    padding: 17px 0 25px 100px;
  }

  .title_ex {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: center;
        align-items: center;
    margin-top: 10px;
  }
  .title_ex h3 {
    width: calc(100% - 150px);
  }
  .title_ex div {
    width: 150px;
  }
}



@media screen and (min-width: 768px) {
  .sp, .none {
    display: none;
  }

  a {
    transition: 0.3s;
  }

  a:hover {
    opacity: 0.8;
  }

  .btn:hover {
    opacity: 1;
    background-color: #d1713e;
  }

  /* モジュール:header-pc */
  .header-pc {
    width: 100%;
    max-width: 100%;
    background-color: #fff;
    height: 100px;
  }

  .header-pc__inner {
    margin-left: auto;
    margin-right: auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    width: 87%;
    box-sizing: border-box;
    padding-top: 20px;
    height: 100%;
  }

  .header-pc__left {
    display: -ms-flexbox;
    display: flex;
  }

  .header-logo {
    width: 152px;
    height: 46px;
  }

  .header-logo img {
    width: 100%;
  }

  .header-pc__copy-txt {
    margin-left: 20px;
    padding-top: 12px;
    box-sizing: border-box;
    font-size: 14px;
  }

  .header-pc__right {
    width: 244px;
  }

  .header-pc__gr-menu {
    padding-top: 12px;
    height: 100%;
  }

  .header-pc__list {
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    font-size: 14px;
  }

  .header-pc__list-item {
    text-align: center;
    display: inline-block;
    width: 40%;
  }

  .header-pc__list-item:hover {
    color: #CC5517;
  }

  /* modifier */
  .header-pc__list-item--selected {
    border-bottom: solid 6px #CC5517;
  }

  .header-pc__vertial-line {
    width: 1px;
    height: 30%;
    background-color: #000;
  }

  /* モジュール:footer */
  .footer {
    padding-top: 50px;
    padding-bottom: 30px;
    width: 100%;
    background-color: #fff;
  }

  .footer__inner {
    max-width: 1000px;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
	margin-top: 3%;
    text-align: center;
  }

  /* wrapper */
  .wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
  }

  /* footerトップ */
  .footer__parent-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
  }

  .footer__parent-list-item {
    font-size: 14pt;
    font-weight: bold;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    height: 235px;
  }

  .footer__parent-el {
    display: table;
    height: 235px;
  }

  .footer__parent-el > li {
    display: table-cell;
    height: 170px;
    vertical-align: middle;
  }

  .footer__child-list-range {
    box-sizing: content-box;
    border-left: solid 1px #000;
    text-align: left;
    font-weight: normal;
    margin-left: 20px;
    padding-left: 40px;
    font-size: 12pt;
    line-height: 1.82;
  }

  .footer__child-list {
    height: 235px;
    vertical-align: middle;
    display: table-cell;
  }

  .footer__width-line {
    margin-top: 50px;
    max-width: initial;
    width: 100vw;
  }

  /* footerボトム */
  .footer__bottom {
    margin-top: 30px;
  }

  .footer__produced-by {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 12px;
    width: 290px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    font-size: 16pt;
  }
  .footer__produced-by img {
    width: 152px;
  }

  .footer__produced-by span {
    padding-top: 14pt;
  }

  .footer__copy-right {
    font-size: 12px;
    letter-spacing: 2px;
  }

  /* ！！！トップページ！！！！ */
  /* top-pageFV */
  .top-fv {
    overflow: hidden;
    position: relative;
  }

  .top-fv__visual {
    position: relative;
    width: 100%;
    margin-bottom: 50px;
  }

  .top-fv__visual__three-btn {
    position: absolute;
    bottom: 7%;
    left: 45%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    width: 170px;
  }

  .top-fv__visual__squ {
    width: 50px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.1);
  }

  .top-fv__visual__squ:hover {
    cursor: pointer;
  }

  /* jquery用　modifier */
  .top-fv__visual__squ--selected {
    background-color: rgba(255, 255, 255, 0.4);
  }

  /* modifier */
  .top-fv__image--first {
    position: relative;
    object-fit: cover;
    background-size: 80%;
    background-position: right;
    z-index: 1000;
  }

  .top-fv__image--second {
    object-fit: cover;
    background-size: cover;
    background-position: right;
    z-index: 1000;
  }

  .top-fv__image--third {
    position: relative;
    object-fit: cover;
    background-size: 50%;
    background-position: left;
    z-index: 1000;
  }

  .top-fv__filter {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }

  .top-fv__txt-cover {
    position: absolute;
    z-index: 2000;
    top: 20%;
    left: 20%;
  }

  .top-fv__year-part {
    padding-left: 32px;
    padding-bottom: 10px;
    width: 243px;
    color: #fff;
  }

  .top-fv__year {
    letter-spacing: 2px;
    line-height: 1;
    text-align: center;
    font-size: 102.592px;
    display: table-cell;
    vertical-align: middle;
  }

  .top-fv__year > span {
    letter-spacing: 2px;
    display: block;
    font-size: 28px;
  }

  .top-fv__center-line {
    margin-left: 10px;
    width: 278px;
    height: 1px;
    background-color: #fff;
  }

  .top-fv__detail-part {
    padding-top: 20px;
    text-align: center;
    width: 300px;
  }

  .top-fv__detail {
    color: #fff;
    font-size: 24px;
    letter-spacing: 4px;
  }

  .top-fv__detail span {
    font-size: 16px;
    display: block;
    padding-top: 5px;
  }

  .top-fv__btn {
    position: relative;
    margin-top: 15px;
    height: 40px;
    margin-left: 20px;
    background-color: #CC5517;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    width: 258px;
    color: #fff;
  }

  .top-fv__btn i {
    position: absolute;
    top: 30%;
    right: 10%;
    font-size: 18px;
  }

  /* fv-bottom */
  .top-fv__good-design {
    padding-bottom: 55px;
	margin: 0 3% 0;
  }

  .top-fv__good-design__inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }

  .top-fv__good-design__inner__side--left {
    width: 27%;
  }

  .top-fv__good-design__inner__side--left img {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: auto;
  }

  .top-fv__good-design__inner__side--right {
    width: 61%;
    font-size: 14px;
    letter-spacing: 2px;
    line-height: 1.5;
    text-align: justify;
    text-justify: inter-character;
  }

  /* モジュール: award-records*/
  .award-records {
    padding-top: 55px;
    padding-bottom: 64px;
    background-color: #E9F1F1;
  }

  .top-section-title {
    margin-left: auto;
    margin-right: auto;
    width: 326px;
    text-align: center;
  }

  .top-section-title__heading {
    font-size: 30px;
    letter-spacing: 2px;
    color: #CC5517;
    font-weight: bold;
  }

  .top-section-title__sub {
    margin-top: 10px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }

  .top-section-title__sub-txt {
    font-size: 18px;
    letter-spacing: 2px;
    color: #000;
  }

  .top-section-title__line {
    margin-top: 10px;
    width: 80px;
    height: 1px;
    background-color: #000;
  }

  .award-records__grid {
    width: 100%;
    display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
    text-align: center;
  }

  .award-records__grid-parts {
    margin-top: 60px;
    width: calc(33.29% - 20px);
	margin-right: 2.552%;
  }
  .award-records__grid-parts:nth-child(3n) {
    margin-right: 0;
	}
  .award-records__grid-parts a {
    display: block;
  }

  .award-records__grid-parts a:hover {
    opacity: 0.7;
    cursor: pointer;
  }

  .award-records__image {
    position: relative;
  }

  .award-records__image-filter {
    position: absolute;
    width: 100%;
    height: 100%;
    border-top: solid 12.5px rgba(255, 255, 255, 0.3);
    border-right: solid 12.5px rgba(255, 255, 255, 0.3);
    border-left: solid 12.5px rgba(255, 255, 255, 0.3);
  }

  .award-records__image img {
    width: 100%;
    max-height: 100%;
    height: 230px;
    object-fit: cover;
    overflow: hidden;
    font-family: 'object-fit: cover;';
  }

  .award-records__works-title-gr {
    padding: 12px 0;
    background-color: #fff;
    width: 100%;
  }

  .award-records__works-title {
    font-size: 14px;
    letter-spacing: 1.2px;
  }

  .award-records__works-title span {
    font-size: 24px;
    color: #CC5517;
	font-weight: bold;
	margin-right: 2px;
  }

  .award-records__name-gr {
    margin-top: 10px;
  }

  .award-records__name {
    font-size: 18px;
    color: #000;
    font-weight: bold;
	letter-spacing: 0.07em;
  }

  .award-records__name span {
    margin-top: 5px;
    font-size: 14px;
    font-weight: normal;
  }

  /* 子階層ページ */
  /* page-title */
  .page-title {
    padding: 50px 0;
    width: 100%;
    text-align: center;
    background-color: #E9F1F1;
  }

  .page-title__heading {
    font-size: 34px;
    font-weight: bold;
	letter-spacing: 0.15em;
  }

  .page-title__heading span {
    color: #CC5517;
    font-size: 44px;
  }

  /* both-image-ly  */
  .both-image-ly__top {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }

  .both-image-ly__top img {
    width: 100%;
    height: 470px;
    object-fit: cover;
    font-family: 'object-fit: cover;';
  }

  /* modifier */
  .both-image-ly__top--heigher img {
    height: 715px;
  }

  .both-image-ly__left-img {
    width: 57.3%;
    height: 470px;
  }

  .both-image-ly__left-img-bigger {
    width: 71.25%;
  }

  .both-image-ly__left-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .both-image-ly__right-img {
    width: 41.7%;
    height: 470px;
  }

  .both-image-ly__right-img-smaller {
    width: 28%;
  }

  .both-image-ly__right-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .both-image-ly__bottom {
    padding-top: 25px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }

  .both-image-ly__cutomer-name-gr {
    display: inline-block;
  }

  .both-image-ly__cutomer-name {
    font-size: 28pt;
    font-weight: bold;
	letter-spacing: 0.05em;
  }

  /* modifier */
  .both-image-ly__cutomer-name--smaller {
    font-size: 23pt;
  }

  .both-image-ly__cutomer-name span {
    font-size: 19pt;
    font-weight: normal;
  }

  /* modifier */
  .both-image-ly__cutomer-name--smaller span {
    font-size: 18pt;
  }

  .both-image-ly__detail {
    width: 59.14%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    text-align: justify;
    text-justify: inter-character;
    text-justify: inter-ideograph;
  }

  .outline {
    color: #CC5517;
    font-weight: bold;
    text-align: center;
    display: block;
    width: 100px;
    height: 62px;
    padding: 15px 0 20px;
    font-size: 16pt;
    letter-spacing: 4px;
    border-top: solid 2px #CC5517;
    border-bottom: solid 2px #CC5517;
  }

  .both-image-ly__description {
	width: 86%;
    padding-left: 4%;
    font-size: 11.5pt;
    line-height: 1.5;
    letter-spacing: 1.4px;
    text-align: justify;
  }

  /* modifier */
  /* background-section */
  .background-section {
    margin-top: 70px;
   height: 435px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }

  /* modifier */
  .background-section--second {
    margin-top: 60px;
    padding-bottom: 70px;
    border-bottom: solid 1px #CC5517;
  }

  .background-section--second-rune {
    padding-bottom: 450px;
  }

  .background-section--single {
    height: 395px;
  }

  .background-section--single-rune {
    height: 350px;
  }

  .background-section--bit-heigher {
    height: 420px;
  }

  .background-section__title-gr {
    width: 100px;
  }

  .background-section__description-gr {
    height: auto;
    width: 36.8%;
    text-align: justify;
  }

  /* modifier */
  .background-section__description-gr--single {
    width: 32.5%;
  }

  .background-section__description {
    width: 100%;
    font-size: 11.5pt;
    line-height: 1.5;
    letter-spacing: 1.4px;
  }

  .background-section__description--sanjo {
    width: 78%;
    text-align: justify;
  }

  .background-section__image-gr {
    width: 50%;
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }

  /* modifier */
  .background-section__image-gr--single {
    width: 55%;
  }

  .background-section__image-gr--client {
    height: 400px;
  }

  .background-section__image-gr--minus-margin {
    margin-top: -40px;
  }

  .background-section__image-gr--single img {
    width: 100%;
    object-fit: cover;
    font-family: 'object-fit: cover;';
  }

  /* modifier */
  .background-section__image-gr--client img {
    object-fit: contain;
    font-family: 'object-fit: contain;';
  }

  .background-section__image-gr--client .half {
    background-color: fuchsia;
    width: 50%;
    max-width: 50%;
  }

  .background-section__image-gr--single-left {
    width: 50%;
  }

  .background-section__image-gr--single-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: 'object-fit: cover;';
  }

  .background-section__first-pic {
    width: 43.1%;
    height: 100%;
  }

  .background-section__second-pic {
    width: 55.17%;
    height: 100%;
  }

  .background-section__first-pic img,
  .background-section__second-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: 'object-fit: cover;';
  }

  /* box-title */
  .box-title {
    letter-spacing: 4px;
    font-size: 16px;
    font-weight: bold;
    width: 100px;
    height: 62px;
    text-align: center;
    color: #fff;
    background-color: #CC5517;
    padding-top: 21px;
    box-sizing: border-box;
  }

  /* modifier */
  /* 評判 */
  .box-title--reputation {
    padding-top: 9px;
    line-height: 1.4;
    letter-spacing: 2px;
  }

  /* コンセプト */
  .box-title--concept {
    padding-top: 12px;
    letter-spacing: 2px;
  }

  /* トップへ */
  .box-title--backto-top {
    position: relative;
    display: block;
    font-size: 14pt;
    width: 258px;
    height: 40px;
    padding-top: 0px;
    margin-left: auto;
    margin-right: auto;
  }

  .box-title--backto-top:hover {
    opacity: 0.8;
  }

  /* four-pic-ly */
  .four-pic-ly {
    padding-top: 50px;
  }

  .four-pic-ly__top {
    width: 82.5%;
    max-width: 900px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }

  /* modifier */
  .four-pic-ly__top--wider {
    width: 100%;
    max-width: 100%;
  }

  .four-pic-ly--sanjo {
    margin-top: 60px;
    border-top: solid #CC5517 1px;
  }

  .four-pic-ly__txt-gr {
    width: calc(100% - 130px);
  }

  .four-pic-ly__heading {
    font-size: 26pt;
    color: #CC5517;
    font-weight: bold;
  }

  /* modifier */
  .four-pic-ly__heading--smaller {
    font-size: 22pt;
    width: 90%;
  }

  .four-pic-ly__heading--smaller-longer {
    font-size: 22pt;
    width: 100%;
  }

  .four-pic-ly__heading--much-smaller {
    font-size: 18.0pt;
    width: 100%;
    letter-spacing: 0.07em;
    text-align: left;
  }

  .four-pic-ly__list {
    margin-top: 12px;
    font-size: 11.5pt;
    line-height: 1.6;
    text-align: justify;
  }

  .four-pic-ly__images {
    margin-top: 25px;
    width: 100%;
  }

  .four-pic-ly__images img {
    width: 100%;
    object-fit: cover;
  }

  .back-to {
    margin-top: 50px;
    border-top: solid #CC5517 1px;
    padding-top: 0;
    text-align: center;
  }

  .back-to a {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
  }

  .box-title--backto-top i {
    margin-left: 5px;
    font-size: 18px;
  }

  /* 共通2 */
  /* image-long */
  .image-long__top {
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }

  .image-long__pic {
    width: 42.7%;
  }

  .image-long__pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: 'object-fit: cover;';
  }

  .image-long__txt {
    margin-top: 55px;
    width: 52%;
  }

  .image-long__block {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }

  .image-long__bg {
    margin-top: 60px;
    text-align: justify;
  }

  .image-long__outline {
    margin-top: 25px;
    text-align: justify;
  }

  .image-long__description {
    width: 80%;
  }

  /* background-section--sanjo */
  .background-sanjo {
    margin-top: 60px;
    margin-bottom: 20px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }

  .background-sanjo__left {
    width: 45.7%;
  }

  .background-sanjo__flex {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }

  .background-sanjo__flex--second {
    margin-top: 30px;
  }

  .background-sanjo__image {
    width: 52.7%;
  }

  .background-sanjo__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* JS用 */
  .invisible {
    opacity: 0;
  }

  .slides {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    width: 100%;
    height: 660px;
  }

  .slideLeft, .slideRight {
    width: 13.8%;
    position: relative;
  }

  .slideCenter {
    width: 70%;
    position: relative;
  }

  .slideCenter img {
    position: absolute;
    object-fit: cover;
  }

  /* fixed-btn */
  .fixed-btn {
    text-align: center;
    position: fixed;
    z-index: 2000;
    bottom: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #eee;
  }

  .fixed-btn:hover {
    cursor: pointer;
    background-color: #f8f8f8;
  }

  /* jquery用 modifier */
  .hide {
    display: none;
  }

  .appear {
    display: block;
  }

  .fixed-btn i {
    padding-top: 20px;
    box-sizing: border-box;
    display: inline-block;
    width: 100%;
    font-size: 15pt;
  }

  .fixed-btn span {
    padding-top: 10px;
    box-sizing: border-box;
    display: inline-block;
    width: 100%;
    letter-spacing: 3px;
    font-size: 12pt;
  }

  /* modalwindow */
  .modal {
    display: none;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    z-index: 10000;
  }

  .modal__bg {
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100vh;
    position: absolute;
  }

  .modal__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-height: 100vh;
    text-align: center;
  }

  .modal__content p {
    overflow-y: auto;
    -ms-overflow-style: none;
    max-height: 100vh;
  }

  .modal__content img {
    max-width: 90%;
  }

  .modalwindow__cross-gr {
    padding-top: 0px;
    box-sizing: border-box;
    position: absolute;
    top: 30px;
    right: 5px;
    width: 50px;
    height: 50px;
  }

  .modalwindow__cross-gr:hover {
    cursor: pointer;
  }

  .modalwindow__cross {
    position: absolute;
    width: 90%;
    height: 2px;
    background-color: #fff;
  }

  .modalwindow__cross--first {
    transform: rotate(45deg);
  }

  .modalwindow__cross--second {
    transform: rotate(-45deg);
  }

  /*====================================================================
  slick
  ====================================================================*/
  .sliderArea {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 0px;
  }
  .sliderArea .cover {
    z-index: 5000;
    top: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.3));
    position: absolute;
    width: 100%;
    height: 660px;
  }

  .sliderArea.w300 {
    max-width: 500px;
  }

  .slick-slide {
    margin: 0 5px;
  }

  .slick-slide img {
    width: 100%;
  }

  .slick-prev, .slick-next {
    z-index: 1;
  }

  .slick-prev:before, .slick-next:before {
    color: #000;
  }

  .slick-slide {
    transition: all ease-in-out .3s;
    background-color: sienna;
  }

  .slick-active {
    opacity: 1;
  }

  .slick-current {
    opacity: 1;
  }

  .slider div {
    position: relative;
  }

  .thumb {
    margin: 20px 0 0;
  }

  .thumb .slick-slide {
    cursor: pointer;
  }

  .slick-slide {
    opacity: 1;
  }

  #main-2020kyoto .image-long__pic img {
    height: 700px;
  }

  #main-2017yokohama .both-image-ly__left-img {
    width: 55%;
    height: 470px;
  }
  #main-2017yokohama .both-image-ly__right-img {
    width: 44%;
    height: 470px;
  }
}