@charset "UTF-8";
/* --------------------------------------------------------------------------------
 * web fonts
-------------------------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap&subset=japanese");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
/* ----------------------------------------------------------------------
 reset (exculding 'sup')
---------------------------------------------------------------------- */
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, 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, main {
  display: block;
}

input, textarea {
  margin: 0;
  padding: 0;
}

ol, ul {
  list-style: none;
}

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

caption, th {
  text-align: left;
}

img {
  vertical-align: middle;
}

/* ----------------------------------------------------------------------
 basic setting
---------------------------------------------------------------------- */
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #323232;
  line-height: 1.5;
  letter-spacing: 0.06em;
  /*
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  */
}

body * {
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
}

input, button, textarea, select {
  color: #323232;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
}

textarea {
  vertical-align: top;
}

*:focus {
  outline: none;
}

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

a:hover {
  backface-visibility: hidden;
}

/* ----------------------------------------------------------------------
 common class
---------------------------------------------------------------------- */
@media only screen and (min-width: 751px) {
  .pc-non {
    display: none !important;
  }
}
@media only screen and (max-width: 750px) {
  .sp-non {
    display: none !important;
  }
}
.mb0 {
  margin-bottom: 0;
}

.tCenter {
  text-align: center;
}

.color-red {
  color: #ec1a00;
}

.color-blue {
  color: #0046b1;
}

.telLink {
  color: inherit;
  text-decoration: none;
}
@media only screen and (min-width: 751px) {
  .telLink {
    pointer-events: none;
  }
}

.wrapper {
  width: 1200px;
  margin: 0 auto;
  position: relative;
}
@media only screen and (max-width: 750px) {
  .wrapper {
    width: auto;
  }
}

@media (hover: hover) {
  .hover-opacity:hover img,
  .hover-opacity:hover video {
    cursor: pointer;
    opacity: 0.7;
  }
}

.hoverTxt {
  text-decoration: none;
  color: inherit;
}
.hoverTxt:hover {
  text-decoration: underline;
}

.hover-change {
  display: inline-block;
  line-height: 0;
}
.hover-change img:nth-child(2) {
  display: none;
}

@media (hover: hover) {
  a:hover .hover-change img:nth-child(1),
  .change-parent:hover .hover-change img:nth-child(1) {
    display: none;
  }
  a:hover .hover-change img:nth-child(2),
  .change-parent:hover .hover-change img:nth-child(2) {
    display: inline-block;
  }
}
.h2-primary {
  text-align: center;
  color: #ec1a00;
}
.h2-primary.-white {
  color: #fff;
}
.h2-primary .en {
  display: block;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 60px;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 750px) {
  .h2-primary .en {
    font-size: 48px;
  }
}
.h2-primary .ja {
  display: block;
  font-size: 16px;
  font-weight: bold;
}
@media only screen and (max-width: 750px) {
  .h2-primary .ja {
    font-size: 15px;
  }
}

.btn-primary {
  width: 310px;
  height: 70px;
  border: 2px solid #ec1a00;
  background-color: #ec1a00;
  color: #fff;
  border-radius: 50vh;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-primary.-blank {
  padding-right: 1em;
  position: relative;
}
.btn-primary.-blank:after {
  content: "";
  background: url(../img/icon_blank_white.png) no-repeat center/contain;
  width: 13px;
  height: 13px;
  position: absolute;
  right: 28px;
  top: calc(50% - 6.5px);
}
@media (hover: hover) {
  .btn-primary:hover {
    background-color: #fff;
    color: #ec1a00;
  }
  .btn-primary.-blank:hover:after {
    background: url(../img/icon_blank_red.png) no-repeat center/contain;
  }
}

.anker {
  position: relative;
  top: -60px;
}
@media only screen and (max-width: 750px) {
  .anker {
    top: -90px;
  }
}

.header {
  height: 65px;
  position: relative;
}
@media only screen and (max-width: 750px) {
  .header {
    height: 60px;
  }
}
.header__inner {
  height: 65px;
  background-color: #fff;
  position: fixed;
  z-index: 100;
  top: 0px;
  left: 0px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px 0 30px;
}
@media only screen and (max-width: 750px) {
  .header__inner {
    height: 60px;
    padding: 0 0 0 20px;
  }
}
@media only screen and (max-width: 750px) {
  .header .logo img {
    width: 125px;
  }
}
.header__right {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 750px) {
  .header__right {
    display: none;
  }
}
.header .navi {
  display: flex;
}
.header .navi li {
  margin-left: 50px;
}
.header .navi li a {
  font-size: 16px;
  font-weight: bold;
  color: inherit;
  text-decoration: none;
}
.header .navi li a:hover {
  color: #ec1a00;
}
.header__contact {
  margin-left: 40px;
}
.header__contact a {
  display: flex;
  width: 180px;
  height: 45px;
  align-items: center;
  justify-content: center;
  background-color: #ec1a00;
  color: #fff;
  border: 1px solid #ec1a00;
  border-radius: 50vh;
  text-decoration: none;
}
.header__contact a:hover {
  background-color: #fff;
  color: #ec1a00;
}
.header__contact img {
  width: 14px;
  margin-right: 10px;
  position: relative;
  top: 1px;
}
.header .menu {
  width: 60px;
}
@media only screen and (min-width: 751px) {
  .header .menu {
    display: none !important;
  }
}

.mega {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(236, 26, 0, 0.95), rgba(236, 56, 0, 0.95));
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
}
.megaHeader {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 0 0 20px;
}
@media only screen and (max-width: 750px) {
  .mega .logo img {
    width: 125px;
  }
}
.mega .close {
  width: 60px;
}
.megaNavi {
  margin-top: 55px;
  text-align: center;
}
.megaNavi li {
  margin-top: 40px;
}
.megaNavi li a {
  color: #fff;
  text-decoration: none;
  font-size: 23px;
  font-weight: bold;
}
.megaContact {
  text-align: center;
  margin-top: 72px;
}
.megaContact a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 310px;
  height: 70px;
  margin: 0 auto;
  color: #ec1a00;
  text-decoration: none;
  border-radius: 50vh;
  font-size: 18px;
  font-weight: bold;
  background-color: #fff;
}
.megaContact img {
  width: 20px;
  margin-right: 20px;
}

.mv {
  height: 600px;
  position: relative;
  z-index: 3;
}
@media only screen and (max-width: 750px) {
  .mv {
    height: auto;
  }
}
.mv__bg {
  height: 600px;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
}
@media only screen and (max-width: 750px) {
  .mv__bg {
    position: static;
    height: auto;
  }
}
.mv__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 750px) {
  .mv__bg img {
    height: auto;
  }
}
.mv__square {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 685px;
  background: url(../img/square_mv.png) no-repeat center/auto 685px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
  .mv__square {
    background: url(../img/square_mv@2.png) no-repeat center/auto 685px;
  }
}
@media only screen and (max-width: 750px) {
  .mv__square {
    display: none;
  }
}
.mv__text-01 {
  text-align: center;
  padding-top: 25px;
  position: relative;
}
@media only screen and (max-width: 750px) {
  .mv__text-01 {
    position: absolute;
    top: 8vw;
    left: 0px;
    width: 100%;
    text-align: center;
    padding: 0;
  }
  .mv__text-01 img {
    width: 84vw;
  }
}
.mv__text-02 {
  text-align: center;
  padding-top: 16px;
  position: relative;
}
@media only screen and (max-width: 750px) {
  .mv__text-02 {
    position: absolute;
    top: 40vw;
    left: 0px;
    width: 100%;
    text-align: center;
    padding: 0;
  }
  .mv__text-02 img {
    width: 73vw;
  }
}
.mv__img {
  text-align: center;
  padding-top: 28px;
  position: relative;
}
@media only screen and (max-width: 750px) {
  .mv__img {
    display: none;
  }
}
.mv__contact {
  position: absolute;
  width: 198px;
  bottom: -58px;
  right: 20px;
}
@media only screen and (max-width: 750px) {
  .mv__contact {
    display: none;
  }
}

.problem {
  background-color: #f8f8f8;
  padding-top: 160px;
  padding-bottom: 80px;
  text-align: center;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 750px) {
  .problem {
    padding: 110px 20px 0px;
  }
}
.problem:before {
  content: "";
  background: url(../img/square_01.png) no-repeat center/contain;
  width: 271px;
  height: 173px;
  position: absolute;
  top: 92px;
  left: calc(50% - 542px);
}
@media only screen and (max-width: 750px) {
  .problem:before {
    width: 162px;
    height: 104px;
    left: -16px;
    top: 20px;
  }
}
.problem__title {
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 2px solid #323232;
  font-size: 30px;
  font-weight: bold;
}
@media only screen and (max-width: 750px) {
  .problem__title {
    font-size: 24px;
  }
}
.problem__title .large {
  font-size: 40px;
}
@media only screen and (max-width: 750px) {
  .problem__title .large {
    font-size: 32px;
  }
}
.problem__inner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.problemList {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 70px;
}
@media only screen and (max-width: 750px) {
  .problemList {
    margin-top: 60px;
    display: block;
  }
}
.problemList__item {
  width: 33.33%;
}
@media only screen and (max-width: 750px) {
  .problemList__item {
    width: 100%;
    margin: 30px 0 0;
    display: flex;
    align-items: center;
  }
  .problemList__item:first-child {
    margin-top: 0;
  }
}
@media only screen and (max-width: 750px) {
  .problemList__icon {
    width: 47.6%;
  }
}
.problemList__text {
  font-size: 16px;
  font-weight: bold;
  margin-top: 20px;
}
@media only screen and (max-width: 750px) {
  .problemList__text {
    padding-left: 20px;
    flex: 1;
    margin: 0;
    font-size: 16px;
    text-align: left;
  }
}

.point {
  padding-top: 28px;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: linear-gradient(135deg, rgba(236, 26, 0, 0.07) 0%, rgba(0, 70, 115, 0.07) 100%);
}
@media only screen and (max-width: 750px) {
  .point {
    padding-top: 60px;
    padding-bottom: 105px;
  }
}
.point:before {
  content: "";
  width: 100%;
  min-width: 2000px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: #f8f8f8;
  position: absolute;
  width: 100%;
  height: 268px;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
}
.point__read {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 750px) {
  .point__read {
    font-size: 24px;
  }
}
.point__inner {
  max-width: 1000px;
  margin: 280px auto 0;
  position: relative;
}
@media only screen and (max-width: 750px) {
  .point__inner {
    margin: 188px auto 0;
  }
}
.point__inner:before {
  content: "";
  background: url(../img/square_02.png) no-repeat center/contain;
  width: 242px;
  height: 164px;
  position: absolute;
  top: -97px;
  left: calc(50% - 535px);
}
@media only screen and (max-width: 750px) {
  .point__inner:before {
    width: 121px;
    height: 82px;
    left: 0px;
    top: -75px;
  }
}
.point__inner:after {
  content: "";
  background: url(../img/square_03.png) no-repeat center/contain;
  width: 338px;
  height: 265px;
  position: absolute;
  top: -154px;
  right: calc(50% - 582px);
}
@media only screen and (max-width: 750px) {
  .point__inner:after {
    top: -10px;
    right: -46px;
    width: 169px;
    height: 133px;
  }
}
.pointContent {
  margin-top: 100px;
}
@media only screen and (max-width: 750px) {
  .pointContent {
    padding: 0 20px;
  }
}
.pointBlock {
  margin-top: 200px;
}
@media only screen and (max-width: 750px) {
  .pointBlock {
    margin-top: 120px;
  }
}
.pointBlock:first-child {
  margin-top: 0;
}
@media only screen and (max-width: 750px) {
  .pointBlock:first-child {
    margin-top: 0px;
  }
}
.pointBlock__row {
  display: flex;
  justify-content: space-between;
}
@media only screen and (min-width: 751px) {
  .pointBlock__row.-reverse {
    flex-direction: row-reverse;
  }
  .pointBlock__row.-reverse .pointBlock__right {
    padding: 0;
  }
  .pointBlock__row.-reverse .pointBlock__movie:after {
    right: auto;
    left: 40px;
  }
}
@media only screen and (max-width: 750px) {
  .pointBlock__row {
    flex-direction: column-reverse;
  }
}
.pointBlock__left {
  width: 52%;
}
@media only screen and (max-width: 750px) {
  .pointBlock__left {
    width: 100%;
    margin-top: 36px;
  }
}
.pointBlockSlider__text {
  font-size: 16px;
  margin-top: 30px;
  font-weight: bold;
}
@media only screen and (max-width: 750px) {
  .pointBlockSlider__text {
    margin-top: 20px;
  }
}
.pointBlockSlider .slick-prev {
  position: absolute;
  width: 40px;
  top: 128px;
  left: -20px;
  z-index: 2;
  cursor: pointer;
}
@media only screen and (max-width: 750px) {
  .pointBlockSlider .slick-prev {
    top: 20.8vw;
    width: 8.5333333333vw;
    left: -4.2666666667vw;
  }
}
.pointBlockSlider .slick-next {
  position: absolute;
  width: 40px;
  top: 128px;
  right: -20px;
  z-index: 2;
  cursor: pointer;
}
@media only screen and (max-width: 750px) {
  .pointBlockSlider .slick-next {
    top: 20.8vw;
    width: 8.5333333333vw;
    right: -4.2666666667vw;
  }
}
.pointBlock__right {
  flex: 1;
  padding-left: 80px;
  position: relative;
}
@media only screen and (max-width: 750px) {
  .pointBlock__right {
    padding-left: 0;
  }
}
.pointBlock__tag {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background-color: #ec1a00;
  width: 102px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  letter-spacing: 0.1em;
  transform: skewX(-10deg);
}
.pointBlock__title {
  font-size: 32px;
  font-weight: bold;
  margin-top: 12px;
}
@media only screen and (max-width: 750px) {
  .pointBlock__title {
    font-size: 24px;
  }
}
.pointBlock__read {
  font-size: 22px;
  font-weight: bold;
  margin-top: 20px;
}
@media only screen and (max-width: 750px) {
  .pointBlock__read {
    font-size: 18px;
    margin-top: 12px;
  }
}
.pointBlock__text {
  font-size: 16px;
  font-weight: bold;
  margin-top: 12px;
}
.pointBlock__text.-small {
  font-size: 15px;
}
.pointBlock__icon {
  position: absolute;
  z-index: -1;
}
.pointBlock__icon.-icon01 {
  width: 148px;
  right: 0px;
  top: 58px;
}
@media only screen and (max-width: 750px) {
  .pointBlock__icon.-icon01 {
    width: 120px;
    top: 0px;
  }
}
.pointBlock__icon.-icon02 {
  width: 104px;
  left: 305px;
  top: 113px;
}
@media only screen and (max-width: 750px) {
  .pointBlock__icon.-icon02 {
    width: 85px;
    top: 0px;
    left: auto;
    right: 0px;
  }
}
.pointBlock__icon.-icon03 {
  width: 147px;
  right: 0px;
  top: 147px;
}
@media only screen and (max-width: 750px) {
  .pointBlock__icon.-icon03 {
    width: 117px;
    top: 0px;
  }
}
.pointBlock__icon.-icon04 {
  width: 150px;
  left: 269px;
  top: 0px;
}
@media only screen and (max-width: 750px) {
  .pointBlock__icon.-icon04 {
    width: 120px;
    top: 0px;
    left: auto;
    right: 0px;
  }
}
.pointBlock__movie {
  position: relative;
}
.pointBlock__movie video {
  width: 100%;
}
.pointBlock__movie:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 40px;
  right: 40px;
  z-index: -1;
  background: linear-gradient(135deg, #004673 0%, #ec1a00 100%);
  opacity: 0.07;
}
@media only screen and (max-width: 750px) {
  .pointBlock__movie:after {
    top: 20px;
    right: -20px;
  }
}
.pointBlockThumbs {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 750px) {
  .pointBlockThumbs {
    flex-direction: column;
    margin-top: 50px;
  }
}
.pointBlockThumbs__item {
  width: calc(50% - 10px);
  text-align: center;
}
@media only screen and (max-width: 750px) {
  .pointBlockThumbs__item {
    width: 100%;
    margin-top: 60px;
  }
  .pointBlockThumbs__item:first-child {
    margin-top: 0;
  }
}
.pointBlockThumbs__text {
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
}
@media only screen and (max-width: 750px) {
  .pointBlockThumbs__text {
    font-size: 18px;
  }
}
.pointSpec {
  margin-top: 108px;
}
@media only screen and (max-width: 750px) {
  .pointSpec {
    margin: 50px 20px 0;
    border-radius: 10px;
    overflow: hidden;
  }
}
.pointSpecHeader {
  padding: 12px 24px;
  position: relative;
  background-color: #e4e4e4;
}
@media only screen and (max-width: 750px) {
  .pointSpecHeader {
    padding: 12px 20px;
  }
}
.pointSpecHeader__text {
  font-size: 19px;
  font-weight: bold;
}
@media only screen and (max-width: 750px) {
  .pointSpecHeader__text {
    font-size: 15px;
  }
}
@media (hover: hover) {
  .pointSpecHeader:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}
.pointSpecHeader:after {
  content: "";
  width: 30px;
  height: 30px;
  background: url(../img/icon_plus.png) no-repeat center/contain;
  position: absolute;
  right: 20px;
  top: calc(50% - 15px);
}
@media only screen and (max-width: 750px) {
  .pointSpecHeader:after {
    width: 26px;
    height: 26px;
    right: 10px;
    top: calc(50% - 13px);
  }
}
.pointSpecHeader.is-active:after {
  background: url(../img/icon_minus.png) no-repeat center/contain;
}
.pointSpecContent {
  padding: 12px 0 28px;
  background-color: #fff;
  text-align: center;
  display: none;
}
.point__btn {
  margin-top: 144px;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 750px) {
  .point__btn {
    margin-top: 100px;
  }
}

.works {
  padding-top: 240px;
  padding-bottom: 166px;
  position: relative;
  overflow: hidden;
  background-color: #ec1a00;
}
@media only screen and (max-width: 750px) {
  .works {
    padding-top: 160px;
    padding-bottom: 150px;
  }
}
.works__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.works:before {
  content: "";
  position: absolute;
  width: 100%;
  min-width: 2000px;
  height: 200px;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #eef1f4;
  clip-path: polygon(0 0, 100% 0, 0% 100%);
}
.works__thumbs {
  position: absolute;
  top: 317px;
  left: calc(50% - 625px);
  width: 1207px;
  z-index: 1;
}
@media only screen and (max-width: 750px) {
  .works__thumbs {
    position: static;
    width: 100%;
    margin-top: 60px;
  }
}
.worksList {
  margin-top: 100px;
  margin-left: 608px;
  padding: 40px 0 40px 40px;
  background-color: #fff;
  border-radius: 10px;
}
@media only screen and (max-width: 750px) {
  .worksList {
    margin: 30px 20px 0;
    padding: 24px 0 24px 24px;
  }
}
.worksList li {
  font-size: 16px;
  line-height: 2;
  font-weight: bold;
  margin-left: 1em;
  text-indent: -1em;
}
.worksList li:before {
  content: "・";
}
@media only screen and (max-width: 750px) {
  .worksList li:first-child {
    line-height: 1.2;
  }
}
.worksList li .small {
  font-size: 12px;
}

.chillerBackground {
  height: 546px;
  position: relative;
  overflow: hidden;
  background: url(../img/bg_chart.jpg) no-repeat center/cover;
}
@media only screen and (max-width: 750px) {
  .chillerBackground {
    background: url(../img/bg_chart_sp.jpg) no-repeat center/cover;
    height: 250px;
  }
}
.chillerBackground:before {
  content: "";
  position: absolute;
  width: 100%;
  min-width: 2000px;
  height: 200px;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ec1a00;
  clip-path: polygon(0 0, 100% 0, 0% 100%);
}
@media only screen and (max-width: 750px) {
  .chillerBackground:before {
    display: none;
  }
}
.chillerBackground:after {
  content: "";
  position: absolute;
  width: 100%;
  min-width: 2000px;
  height: 200px;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #0046b1;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
@media only screen and (max-width: 750px) {
  .chillerBackground:after {
    display: none;
  }
}

.chiller {
  padding-top: 60px;
  padding-bottom: 200px;
  background-color: #0046b1;
}
@media only screen and (max-width: 750px) {
  .chiller {
    padding: 90px 20px 150px;
  }
}
.chillerContent {
  max-width: 1000px;
  margin: 64px auto 0;
}
@media only screen and (max-width: 750px) {
  .chillerContent {
    margin-top: 45px;
  }
}
.chillerBlock {
  background-color: #fff;
  padding: 60px;
  display: flex;
  margin-top: 25px;
}
@media only screen and (max-width: 750px) {
  .chillerBlock {
    padding: 20px 20px 45px;
    margin-top: 40px;
    flex-direction: column;
    border-radius: 10px;
  }
}
.chillerBlock:first-child {
  margin-top: 0;
}
@media only screen and (max-width: 750px) {
  .chillerBlock:first-child {
    margin-top: 0;
  }
}
.chillerBlock__left {
  width: 400px;
  margin-right: 40px;
}
@media only screen and (max-width: 750px) {
  .chillerBlock__left {
    width: 100%;
    margin: 0;
  }
}
@media only screen and (max-width: 750px) {
  .chillerBlock__right {
    margin-top: 32px;
  }
}
.chillerBlock__title {
  font-size: 22px;
  font-weight: bold;
}
@media only screen and (max-width: 750px) {
  .chillerBlock__title {
    font-size: 24px;
  }
}
.chillerBlock__text {
  font-size: 16px;
  font-weight: bold;
  margin-top: 10px;
}
.chillerBlock__tag {
  width: 100px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  margin-top: 24px;
  background-color: #0046b1;
}
.chillerBlock__list {
  margin-top: 12px;
}
.chillerBlock__list li {
  font-size: 15px;
  font-weight: bold;
  position: relative;
  padding-left: 20px;
  line-height: 1.7;
}
.chillerBlock__list li:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #0046b1;
  position: absolute;
  top: 9px;
  left: 0px;
}

.flow {
  background: linear-gradient(135deg, rgba(236, 26, 0, 0.07) 0%, rgba(0, 70, 115, 0.07) 100%);
  padding: 130px 0 200px;
}
@media only screen and (max-width: 750px) {
  .flow {
    padding: 90px 0 120px;
  }
}
.flow__read {
  margin-top: 60px;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
}
@media only screen and (max-width: 750px) {
  .flow__read {
    font-size: 18px;
    text-align: left;
    margin: 40px 20px 0;
  }
}
.flowList {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  .flowList {
    display: block;
    justify-content: flex-start;
    padding-right: 20px;
  }
}
.flowList__scroll {
  margin-top: 75px;
}
@media only screen and (max-width: 750px) {
  .flowList__scroll {
    margin-top: 45px;
    padding: 0 0 20px 20px;
  }
}
.flowList__item {
  width: 160px;
  margin: 0 24px;
  position: relative;
}
.flowList__item:after {
  content: "";
  width: 19px;
  height: 18px;
  position: absolute;
  background: url(../img/arrow_flow.png) no-repeat center/contain;
  top: 76px;
  right: -35px;
}
@media only screen and (max-width: 750px) {
  .flowList__item:after {
    width: 15px;
    height: 13px;
    right: -27px;
    top: 60px;
  }
}
@media only screen and (max-width: 750px) {
  .flowList__item {
    margin: 0 36px 0 0;
    width: 128px;
  }
}
.flowList__item:last-child:after {
  display: none;
}
@media only screen and (max-width: 750px) {
  .flowList__item:last-child {
    margin: 0;
  }
}
.flowList__text {
  margin: 0 -1em;
  font-size: 20px;
  font-weight: bold;
  margin-top: 18px;
}
@media only screen and (max-width: 750px) {
  .flowList__text {
    font-size: 16px;
    text-align: center;
    margin-top: 12px;
  }
}

.contact {
  padding: 20px 0;
  background-color: rgba(255, 255, 255, 0.9);
  position: fixed;
  bottom: 0px;
  left: 0px;
  width: 100%;
  z-index: 500;
}
@media only screen and (max-width: 750px) {
  .contact {
    padding: 10px 20px;
  }
}
.contact__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.contact__read {
  width: 36.8%;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #323232;
}
@media only screen and (max-width: 750px) {
  .contact__read {
    display: none;
  }
}
.contactBtn {
  flex: 1;
  display: flex;
  justify-content: space-between;
}
.contactBtn__item {
  width: calc(50% - 6px);
}
@media only screen and (max-width: 750px) {
  .contactBtn__item {
    width: calc(50% - 3px);
  }
}
.contactBtn__item a {
  display: flex;
  width: 100%;
  height: 56px;
  text-align: center;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  border: 2px solid #323232;
  background-color: #323232;
  font-size: 18px;
  font-weight: bold;
  border-radius: 5px;
  position: relative;
  padding-right: 1em;
}
.contactBtn__item a:after {
  content: "";
  background: url(../img/icon_blank_white.png) no-repeat center/contain;
  width: 13px;
  height: 13px;
  position: absolute;
  right: 18px;
  top: calc(50% - 6.5px);
}
@media (hover: hover) {
  .contactBtn__item a:hover {
    background-color: #fff;
    color: #323232;
  }
  .contactBtn__item a:hover:after {
    background: url(../img/icon_blank.png) no-repeat center/contain;
  }
}
@media only screen and (max-width: 750px) {
  .contactBtn__item a {
    height: 40px;
    font-size: 16px;
  }
  .contactBtn__item a:after {
    width: 12px;
    height: 12px;
    right: 12px;
    top: calc(50% - 6px);
  }
}
.contactBtn__item a.-red {
  background-color: #ec1a00;
  border-color: #ec1a00;
}
@media (hover: hover) {
  .contactBtn__item a.-red:hover {
    background-color: #fff;
    color: #ec1a00;
  }
  .contactBtn__item a.-red:hover:after {
    background: url(../img/icon_blank_red.png) no-repeat center/contain;
  }
}

.gotop {
  position: absolute;
  bottom: 15px;
  right: 15px;
  z-index: 600;
}
@media only screen and (max-width: 750px) {
  .gotop {
    bottom: 15px;
  }
}
.gotop a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #323232;
  border: 1px solid #fff;
}
.gotop a img {
  width: 16px;
}
@media (hover: hover) {
  .gotop a:hover {
    background-color: #fff;
  }
}

.footer {
  background-color: #000;
  padding: 66px 0 30px;
  position: relative;
  margin-top: 96px;
  color: #fff;
}
@media only screen and (max-width: 750px) {
  .footer {
    padding: 48px 20px 36px;
    margin-top: 60px;
  }
}
.footer__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.footer__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media only screen and (max-width: 750px) {
  .footer__row {
    display: block;
  }
}
.footer__logo{
  display: flex;
  gap: 30px;
  align-items: flex-end;
}
@media only screen and (max-width: 750px) {
  .footer__logo {
    text-align: center;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
}
.footer__logo img {
  width: 65px;
}
.footer__logo .name {
  display: block;
  font-size: 13px;
  font-weight: bold;
  margin-top: 12px;
}
@media only screen and (max-width: 750px) {
  .footerTel {
    margin-top: 45px;
  }
}
.footerTel__tel {
  font-family: "Lato", sans-serif;
  font-size: 25px;
  font-weight: bold;
}
.footerTel__time {
  font-size: 13px;
  font-weight: bold;
}
.footerBtn {
  display: flex;
  width: 376px;
  justify-content: space-between;
}
@media only screen and (max-width: 750px) {
  .footerBtn {
    width: auto;
    display: block;
    margin-top: 40px;
  }
}
.footerBtn__item {
  width: calc(50% - 5px);
}
@media only screen and (max-width: 750px) {
  .footerBtn__item {
    width: 183px;
    margin: 17px auto 0;
  }
  .footerBtn__item:first-child {
    margin-top: 0;
  }
}
.footerBtn__item a {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  height: 50px;
  border-radius: 50vh;
  background-color: #fff;
  border: 2px solid #fff;
  color: #323232;
  font-family: "Lato", sans-serif;
  font-size: 15px;
  font-weight: bold;
  padding-left: 30px;
  text-decoration: none;
  letter-spacing: 0;
}
@media (hover: hover) {
  .footerBtn__item a:hover {
    background-color: #323232;
    color: #fff;
  }
}
.footerBtn__item figure {
  position: absolute;
  right: 20px;
  top: 50%;
  width: 11px;
  transform: translateY(-50%);
}
.footer .copyright {
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  margin-top: 80px;
}
@media only screen and (max-width: 750px) {
  .footer .copyright {
    margin-top: 60px;
  }
}

/*20241030 Cookie notice�ǉ� Start------------------------------*/
 .cookie-consent {
    position: fixed;
    bottom: 0;
    width: 100%;
    visibility: hidden;
    z-index: 9999;
    animation: fadeIn 0.7s linear 0s;
    animation-fill-mode: forwards;
  }
  .cookie-consent.is-show {
    visibility: visible;
  }
  /* �p�b�Ə����� */
  .cc-hide1 {
    display: none;
  }
  /* ������������ */
  .cc-hide2 {
    animation: hide 0.2s linear 0s;
    animation-fill-mode: forwards;
  }

  @keyframes hide {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
      visibility: hidden;
    }
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
      visibility: hidden;
    }
    to {
      opacity: 1;
    }
  }

  /* ���f�B�A�N�G�� */
  @media screen and (max-width: 600px) {
    .cookie-consent {
      flex-direction: column;
    }
    .cookie-text {
      margin-bottom: 1em;
    }
  }

    #cookie-notice .cookie-notice-container {
        background-color: #333;
    }
    
@media print, screen and (min-width: 768px) {
    #cookie-notice .cookie-notice-container {
        text-align:left;
        width: 100%;
        padding: 2.0rem 1.2rem 2.0rem;
        font-family: "Noto Sans JP", "�q���M�m�p�S ProN W3", "Hiragino Kaku Gothic ProN", "���C���I", Meiryo, sans-serif;
        background-color: #333;
        display:flex;
        justify-content: space-between;
        align-items: center;

    }
}

@media print, screen and (min-width: 900px) {
    #cookie-notice .cookie-notice-container {
        padding: 2.5rem 4rem 2.5rem;
    }
}

#cookie-notice .cookie-notice-container .inner{
    width: 100%;
    padding: 3.2rem 0 0;
}

@media print, screen and (min-width: 768px) {
    #cookie-notice .cookie-notice-container .inner{
        margin: 0 auto;
        padding: 0;
    }
}

@media print, screen and (min-width: 900px) {
    #cookie-notice .cookie-notice-container .inner {
        padding: 0 30px;
    }
}

#cookie-notice .cookie-notice-container .inner .thefirst{
    font-size:1.05rem;
    margin-bottom:1rem;
    text-align: center;
    font-family: Hiragino Kaku Gothic Pro, Hiragino Sans, Meiryo, Osaka, Arial, MS PGothic, sans-serif;
    line-height: 1.6;
    font-weight: bold;
    }

@media print, screen and (min-width: 768px) {
    #cookie-notice .cookie-notice-container .inner .thefirst{
        font-size:0.85rem;
        margin-bottom:0.8rem;
        text-align: left;
        font-family: Yu Gothic, Hiragino Kaku Gothic Pro, Hiragino Sans, Meiryo, Osaka, Arial, MS PGothic, sans-serif;
        margin-bottom:0.5rem;
    }
}

@media print, screen and (min-width: 900px) {
    #cookie-notice .cookie-notice-container .inner .thefirst{
        font-size:1.05rem;
    }
}

#cookie-notice .cookie-notice-container .inner .thesecond{
    text-align: left;
    font-family: Hiragino Kaku Gothic Pro, Hiragino Sans, Meiryo, Osaka, Arial, MS PGothic, sans-serif;
    line-height: 1.6;
    font-weight:normal;
    font-size:0.85rem;
    margin-bottom:0.8rem;
}

@media print, screen and (min-width: 768px) {
    #cookie-notice .cookie-notice-container .inner .thesecond{
        text-align: left;
        font-size:0.85rem;
        font-family: Yu Gothic, Hiragino Kaku Gothic Pro, Hiragino Sans, Meiryo, Osaka, Arial, MS PGothic, sans-serif;
        margin-bottom:0.5rem;
    }
}

@media print, screen and (min-width: 900px) {
    #cookie-notice .cookie-notice-container .inner .thesecond{
        font-size:1.05rem;
    }
}

#cookie-notice .cookie-notice-container .inner .thethird{
    text-align: center;
    font-family: Hiragino Kaku Gothic Pro, Hiragino Sans, Meiryo, Osaka, Arial, MS PGothic, sans-serif;
    line-height: 1.6;
    font-weight:normal;
    font-size:0.85rem;
    position:relative;
    margin-bottom: 1rem;
    display:inline-block;
}

@media print, screen and (min-width: 768px) {
    #cookie-notice .cookie-notice-container .inner .thethird{
        text-align: left;
        font-size:0.85rem;
        font-family: Yu Gothic, Hiragino Kaku Gothic Pro, Hiragino Sans, Meiryo, Osaka, Arial, MS PGothic, sans-serif;
        padding-left:15px;
    }
}

@media print, screen and (min-width: 900px) {
    #cookie-notice .cookie-notice-container .inner .thesecond{
        font-size:1.05rem;
    }
}
#cookie-notice .cookie-notice-container .inner .thethird a{
    color: #FFF;
    text-decoration: none;    
}

#cookie-notice .cookie-notice-container .inner .thethird a:hover{
    text-decoration: underline;
}

#cookie-notice .cookie-notice-container .inner .thethird:before {
    position: absolute;
    content:'';
    top: 50%;
    width: 8px;
    height: 8px;
    left: -20px;
    margin-top: -5px;
    transform: rotate(45deg);
    display: inline-block;  
    border-top: 2px solid #d6001d;
    border-right: 2px solid #d6001d;
    vertical-align: middle;
}   

@media print, screen and (min-width: 768px) {
    #cookie-notice .cookie-notice-container .inner .thethird:before{
        left: -3px;
        margin-top: -6px;
    }
}

#cookie-notice .cookie-notice-container .inner .thethird:after {
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    right: -20px;
    margin-top: -6px;
    content: "";
    display: block;
    background-image: url(../img/ico_newtab-w.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 14px;
    aspect-ratio: 1;
}   

@media print, screen and (min-width: 768px) {
    #cookie-notice .cookie-notice-container .inner .thethird:after{
        right: -20px;
        margin-top: -5px;
    }
}

#cookie-notice, #cookie-notice * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.cookie-notice-container {
    padding: 15px 30px;
    text-align: center;
    width: 100%;
    z-index: 2;
}

#cookie-notice, #cookie-notice * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.cn-close-icon {
    position: absolute;
    right: 0;
    top: 0;
    width:48px;
    height:48px;
    outline: none;
    cursor: pointer;
    opacity:1;
    margin-top:0;
}

.cn-close-icon:hover{
    transition: background-color .25s cubic-bezier(.4,0,.2,1) 0s;
    background-color: #d6001d;
}

.cn-close-icon:before {
    position: absolute;
    content: ' ';
    height: 30px;
    width: 2px;
    top: 8px;
    right: 23px;
    transform: rotate(45deg);
    transform-origin:100% 50%;
    background-color: #FFFFFF;
}

.cn-close-icon:after {
    position: absolute;
    content: ' ';
    height: 30px;
    width: 2px;
    top: 8px;
    right: 23px;
    transform: rotate(-45deg);
    transform-origin:100% 50%;
    background-color: #FFFFFF;
}

#cookie-notice .cn-button:not(.cn-button-custom) {
    width: 170px;
    padding: 1.2rem;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, .2);
    font-weight: 700;
    transition: background-color .25s cubic-bezier(.4,0,.2,1) 0s, color .25s cubic-bezier(.4,0,.2,1) 0s;
    font-family: "Noto Sans JP", "�q���M�m�p�S ProN W3", "Hiragino Kaku Gothic ProN", "���C���I", Meiryo, sans-serif;
    font-size: 1rem;
    background-color: #FFFFFF !important;
    color:#333;
    display:block;
    border-radius: 3px;
    text-align:center;
    text-decoration: none;
}

.cookie-notice-container #cn-notice-buttons{
    display:inline-block;
}

#cookie-notice .cn-button:hover {
    transition: background-color .25s cubic-bezier(.4,0,.2,1) 0s;
    background-color: #d6001d!important;
    color: #fff;
    cursor: pointer;
}

/*20241030 Cookie notice�ǉ� End------------------------------*/