@charset "UTF-8";
body {
  font-family: "Noto Sans JP", serif;
  color: #000;
}

.textedging {
  text-shadow:1px 1px 0 #fff,-1px 1px 0 #fff,1px -1px 0 #fff,-1px -1px 0 #fff;
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.btn {
  width: 100%;
  height: 50px;
}
@media screen and (max-width: 768px) {
  .btn {
    height: 12.7226463104vw;
  }
}
.btn a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-transform: uppercase;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.6;
  letter-spacing: normal;
  font-weight: bold;
  background-color: #3E6E82;
  color: #fff;
  border-radius: 100px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid #3E6E82;
  position: relative;
}
@media screen and (max-width: 768px) {
  .btn a {
    font-size: 4.0712468193vw;
  }
}
.btn a:hover {
  background-color: #ff9e1e;
}
.btn.btn--white {
  height: 40px;
}
@media screen and (max-width: 768px) {
  .btn.btn--white {
    height: 10.1781170483vw;
  }
}
.btn.btn--white a {
  background-color: #fff;
  color: #000;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.2;
  font-weight: normal;
  border: 1px solid #CCCCCC;
}
@media screen and (max-width: 768px) {
  .btn.btn--white a {
    font-size: 3.5623409669vw;
  }
}
.btn.btn--white a:hover {
  background-color: #ff9e1e;
  color: #fff;
}
.btn.arrow a::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 17px;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid #ffffff;
  border-right: 0;
}
@media screen and (max-width: 768px) {
  .btn.arrow a::before {
    border-top: 2vw solid transparent;
    border-bottom: 2vw solid transparent;
    border-left: 3vw solid #ffffff;
  }
}
.btn.arrow-green {
  height: 50px;
}
@media screen and (max-width: 768px) {
  .btn.arrow-green {
    height: 12.7226463104vw;
  }
}
.btn.arrow-green a {
  color: #DF5611;
}
.btn.arrow-green a:hover {
  background-color: #FF9E1E;
  color: #fff;
}
.btn.arrow-green a:hover:before {
  border-left: 13px solid #fff;
}
@media screen and (max-width: 768px) {
  .btn.arrow-green a:hover:before {
    border-left: 3vw solid #ffffff;
  }
}
.btn.arrow-green a::before {
  border-left: 13px solid #3E6E82;
}
@media screen and (max-width: 768px) {
  .btn.arrow-green a::before {
    border-left: 3vw solid #3E6E82;
  }
}

/****  pc,spだし分け  *****/
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

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

/*****  タイトル系  *******/
h1,
h2 {
  font-weight: normal;
}

/********* section*********/
section.gray {
  background-color: #F5F5F5;
}

/***** innerなど余白 *****/
.inner {
  width: 100%;
  max-width: 1290px;
  margin-inline: auto;
  padding-inline: 25px;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-inline: 5.0890585242vw;
  }
}

.mb0 {
  margin-bottom: 0;
}

/******* flex ******/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/****** font ****/
p {
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  p {
    font-size: 4.0712468193vw;
  }
}

.dm {
  font-family: "DM Sans", sans-serif;
}

/*****スクロール時にふわっと**********/
.fadein {
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  opacity: 0;
}

.fadein.scrollin {
  -webkit-transform: unset;
          transform: unset;
  opacity: 1;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.fadein.scrollin.delay200 {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.footer {
  background-color: #f5f5f5;
}

.footer__inner {
  max-width: 1265px;
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 50px 25px 30px;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr;
    padding: 12.7226463104vw 5.0890585242vw 10.1781170483vw;
  }
}

@media screen and (max-width: 768px) {
  .footer__info {
    margin: 0 auto;
  }
}

.footer__logo {
  width: 243px;
  margin-bottom: 14px;
  margin-bottom: 0.875rem;
}
.footer__logo a {
  display: block;
}

.footer__address {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}

.footer__official {
  max-width: 278px;
}
@media screen and (max-width: 768px) {
  .footer__official {
    max-width: 73.7913486005vw;
  }
}
.footer__official a {
  padding: 0 30px;
  padding: 0 1.875rem;
}
@media screen and (max-width: 768px) {
  .footer__official a {
    padding: 0 7.6335877863vw;
  }
}

/*
  -----------------------------------
メニュー
  -----------------------------------
  */
@media screen and (max-width: 768px) {
  .footer__nav {
    display: none;
  }
}
.footer__nav .footer__nav-items {
  width: 100%;
  margin-left: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px 0;
}
.footer__nav .footer__nav-main {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: normal;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  color: #3E6E82;
  text-transform: uppercase;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
.footer__nav .footer__nav-main.--business {
  margin-top: 30px;
  margin-top: 1.875rem;
}
.footer__nav .footer__nav-link {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2.2857142857;
}
.footer__nav .footer__nav-link:hover {
  color: #FF5900;
}

.footer__bottom {
  height: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-inline: 20px;
}
.footer__bottom .copy-right {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2.3333333333;
}
@media screen and (max-width: 768px) {
  .footer__bottom .copy-right {
    font-size: 0.625rem;
    margin-bottom: 1.4375rem;
  }
}

.header {
  width: 100%;
  height: 90px;
  position: fixed;
  background-color: #fff;
  top: 0;
  left: 0;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .header {
    height: 60px;
  }
}

.header__inner {
  max-width: 100%;
  height: 100%;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
}
@media screen and (max-width: 768px) {
  .header__logo a {
    gap: 13px;
  }
}

.header__logo--qd {
  width: 78px;
}
@media screen and (max-width: 768px) {
  .header__logo--qd {
    width: 58px;
  }
}

.header__logo--company img {
  width: 340px;
}
@media screen and (max-width: 768px) {
  .header__logo--company img {
    width: 143px;
    height: 32px;
    margin-top: 10px;
  }
}

.header__entry {
  position: fixed;
  top: 20px;
  right: 120px;
  width: 170px;
  height: 50px;
}
@media screen and (max-width: 768px) {
  .header__entry {
    position: static;
    width: 100%;
    max-width: 353px;
    margin: 0 auto 2.5rem;
  }
}
.header__entry a {
  font-size: 20px;
  font-size: 1.25rem;
}

@media screen and (max-width: 768px) {
  .header__entry.pc {
    display: none;
  }
}

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

.header__btn {
  width: 76px;
  height: 24px;
  position: fixed;
  top: 33px;
  right: 21px;
}
@media screen and (max-width: 768px) {
  .header__btn {
    width: 94px;
    height: 30px;
    top: 14px;
    right: 10px;
  }
}
.header__btn .menu {
  display: block;
  width: 35px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .header__btn .menu {
    width: 43px;
  }
}

.header__btn span {
  display: block;
  width: 30px;
  height: 4px;
  background-color: #df5611;
  position: absolute;
  right: 0;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .header__btn span {
    width: 37px;
    height: 5px;
  }
}

.header__btn span:nth-of-type(1) {
  top: 0;
}

.header__btn span:nth-of-type(2) {
  top: 10px;
}
@media screen and (max-width: 768px) {
  .header__btn span:nth-of-type(2) {
    top: 12px;
  }
}

.header__btn span:nth-of-type(3) {
  top: 20px;
}
@media screen and (max-width: 768px) {
  .header__btn span:nth-of-type(3) {
    top: 24px;
  }
}

.header.is-active .header__btn span:nth-of-type(1) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 12px;
}

.header.is-active .header__btn span:nth-of-type(2) {
  display: none;
}

.header.is-active .header__btn span:nth-of-type(3) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 12px;
}

/*
  -----------------------------------
メニュー
  -----------------------------------
  */
.header__nav {
  position: fixed;
  top: 90px;
  right: 0;
  left: 0;
  width: 100%;
  overflow-y: scroll;
  background: -webkit-gradient(linear, left top, left bottom, from(#fe943d), to(#ff7c3a));
  background: linear-gradient(to bottom, #fe943d 0%, #ff7c3a 100%);
  padding: 60px 40px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 768px) {
  .header__nav {
    top: 60px;
    background: -webkit-gradient(linear, right top, left top, from(#fe943d), to(#ff7c3a));
    background: linear-gradient(to left, #fe943d 0%, #ff7c3a 100%);
    padding: 40px 20px 77px;
    height: calc(100% - 60px);
  }
}
.header__nav .header__nav-items {
  width: 100%;
  max-width: 1150px;
  margin-left: auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
@media screen and (max-width: 768px) {
  .header__nav .header__nav-items {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
.header__nav .header__nav-item {
  max-width: 290px;
}
.header__nav .header__other {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px 0;
  gap: 1.25rem 0;
}
@media screen and (max-width: 768px) {
  .header__nav .header__other .header__nav-item:nth-of-type(1) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .header__nav .header__other .header__nav-item:nth-of-type(2) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .header__nav .header__other .header__nav-item:nth-of-type(3) {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .header__nav .header__other .header__nav-item:nth-of-type(4) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .header__nav .header__other .header__nav-item:nth-of-type(5) {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}
.header__nav .header__nav-main {
  font-size: 32px;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: normal;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  margin-bottom: 13px;
  margin-bottom: 0.8125rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .header__nav .header__nav-main {
    font-size: 1.75rem;
    margin-bottom: 0.625rem;
  }
}
.header__nav .header__nav-links {
  padding-left: 30px;
}
.header__nav .header__nav-link {
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
  font-weight: 500;
}
.header__nav .header__nav-link:hover {
  color: #000;
}

.header.is-active .header__nav {
  opacity: 1;
  visibility: visible;
}

body.header-open {
  overflow: hidden;
}

/*
  -----------------------------------
下層MV
  -----------------------------------
  */
.ul-main {
  width: 100%;
  height: 55.6vw;
  position: relative;
  padding-top: 90px;
  padding-top: 5.625rem;
}
@media screen and (max-width: 768px) {
  .ul-main {
    padding-top: 56.7430025445vw;
    height: auto;
    margin-bottom: 10.1781170483vw;
  }
}

.ul-main__img {
  width: 100%;
  height: inherit;
}
@media screen and (max-width: 768px) {
  .ul-main__img {
    height: 178.1170483461vw;
  }
}
.ul-main__img img {
  display: block;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.ul-main__titleArea {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .ul-main__titleArea {
    width: 100%;
    top: 24.427480916vw;
    -webkit-transform: none;
            transform: none;
  }
}
.ul-main__titleArea .sub {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.3333333333;
  color: #3e6e82;
  font-weight: bold;
  padding-left: 100px;
  font-family: "Roboto", sans-serif;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-animation: titleLineAnimation 0.4s ease;
          animation: titleLineAnimation 0.4s ease;
}
@media screen and (max-width: 768px) {
  .ul-main__titleArea .sub {
    font-size: 4.5801526718vw;
    line-height: 1.3333333333;
    padding-left: 2.5445292621vw;
  }
}
.ul-main__titleArea .titleLine {
  background: -webkit-gradient(linear, left top, right top, from(rgb(255, 89, 0)), to(rgb(255, 124, 58)));
  background: linear-gradient(90deg, rgb(255, 89, 0) 0%, rgb(255, 124, 58) 100%);
  min-width: 640px;
  min-height: 100px;
  padding: 7px 30px 8px 100px;
  border-radius: 0 200px 200px 0;
  color: #fff;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-animation: titleLineAnimation 0.4s ease;
          animation: titleLineAnimation 0.4s ease;
}
@media screen and (max-width: 768px) {
  .ul-main__titleArea .titleLine {
    min-width: auto;
    min-height: 25.4452926209vw;
    width: 89.8218829517%;
    padding: 2.0356234097vw 2.5445292621vw 2.0356234097vw 2.5445292621vw;
  }
}
.ul-main__titleArea .number {
  width: 100px;
  border-bottom: 1px solid #fff;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.3333333333;
  font-weight: 300;
  padding-bottom: 3px;
}
@media screen and (max-width: 768px) {
  .ul-main__titleArea .number {
    width: 25.4452926209vw;
    font-size: 6.106870229vw;
  }
}
.ul-main__titleArea .title {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .ul-main__titleArea .title {
    font-size: 6.9vw;
  }
}

@-webkit-keyframes titleLineAnimation {
  0% {
    opacity: 0;
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0); /* クリッピングで非表示 */
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0); /* 全体を表示 */
  }
}

@keyframes titleLineAnimation {
  0% {
    opacity: 0;
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0); /* クリッピングで非表示 */
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0); /* 全体を表示 */
  }
}
/*# sourceMappingURL=common.css.map */
