@charset "UTF-8";
:root {
  --base-color: #F8EDC9;
  --accent-color: #F6B26A;
  --main-color: #5ABFD8;
  --text-color: #2A91B7;
  --white: #fff;
  --red: #f66a6a;
  --font-mpuls1: "M PLUS 1p", sans-serif;
  --font-noto-sans: "Noto Sans JP", sans-serif;
  --max-width: 1140px;
  --inner-width: 900px;
}

:root {
  --content-both-padding: 2.5rem;
}
@media screen and (max-width:520px) {
  :root {
    --content-both-padding: 2rem;
  }
}

:root {
  --header-height: 6rem;
}
@media screen and (max-width:520px) {
  :root {
    --header-height: 4.5rem;
  }
}

.header {
  width: 100%;
  height: var(--header-height);
  background-color: var(--white);
  z-index: 1000;
  position: fixed;
  left: 0;
  top: 0;
}
.header__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: var(--max-width);
  height: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 1rem;
  margin: 0 auto;
}
@media screen and (max-width: 1140px) {
  .header__wrap {
    width: 100%;
  }
}
@media screen and (max-width:520px) {
  .header__wrap {
    width: 100%;
  }
}
.header__logo img {
  padding-top: 0.2rem;
}
@media screen and (max-width:520px) {
  .header__logo {
    width: 13rem;
    padding-top: 0.2rem;
  }
  .header__logo img {
    width: 100%;
  }
}
.header__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
@media screen and (max-width: 950px) {
  .header__navigation {
    display: none;
  }
}
.header__navigation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  gap: 0 0.5rem;
  list-style: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 2rem;
}
.header__navigation ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.header__navigation ul li img {
  display: inline-block;
  width: 2.6rem;
  height: 2.6rem;
}
.header__navigation ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 2rem;
  height: 100%;
  gap: 0.5rem;
  color: var(--text-color);
  font-weight: 700;
  text-decoration: none;
  position: relative;
}
.header__navigation ul li a svg {
  fill: var(--text-color);
  width: 2.6rem;
  height: 2.6rem;
}
.header__navigation ul li a::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 0.3rem;
  background-color: var(--text-color);
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: -webkit-transform 0.15s ease-in-out;
  transition: -webkit-transform 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
}
.header__navigation ul li a:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.header__tel.call-btn {
  height: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 1.5rem;
  border: none;
  border-left: 0.1rem solid var(--accent-color);
  border-right: 0.1rem solid var(--accent-color);
  text-align: center;
}
.header__tel.call-btn p {
  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;
  gap: 0.3rem;
}
.header__tel.call-btn p svg {
  width: 1.8rem;
  height: 1.8rem;
}
@media screen and (max-width:520px) {
  .header__tel.call-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 1.5rem;
  }
}

img {
  aspect-ratio: attr(width)/attr(height);
}

html {
  font-size: 10px;
  font-family: var(--font-noto-sans);
  color: var(--text-color);
  line-height: 1.8;
}
@media screen and (max-width:520px) {
  html {
    font-size: 2.66667vw;
  }
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  background-image: url(../images/bg3.jpg);
  background-size: 400px 400px;
  background-repeat: repeat;
  background-attachment: fixed;
  font-size: 1.6rem;
  min-width: var(--inner-width);
}
@media screen and (max-width:520px) {
  body {
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
    min-width: unset;
  }
}

main {
  padding-top: var(--header-height);
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.shadow-01 {
  -webkit-box-shadow: 1rem 1rem 0 rgba(246, 178, 106, 0.2);
          box-shadow: 1rem 1rem 0 rgba(246, 178, 106, 0.2);
}
@media screen and (max-width:520px) {
  .shadow-01 {
    -webkit-box-shadow: 0.5rem 0.5rem 0 rgba(246, 178, 106, 0.2);
            box-shadow: 0.5rem 0.5rem 0 rgba(246, 178, 106, 0.2);
  }
}

.shadow-02 {
  -webkit-box-shadow: 0 0.5rem 0.5rem rgba(68, 68, 68, 0.2);
          box-shadow: 0 0.5rem 0.5rem rgba(68, 68, 68, 0.2);
}

.row {
  width: var(--inner-width);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width:520px) {
  .row {
    width: 100%;
  }
}

.title-frame {
  width: 100%;
  border-bottom: 0.3rem solid var(--text-color);
  margin-bottom: 5rem;
}
.title-frame__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 2.5rem 0 1rem 2.5rem;
}
.title-frame__jp {
  font-size: 4.2rem;
  font-weight: 900;
  font-family: var(--font-mpuls1);
  line-height: 1;
  letter-spacing: 0.05rem;
}
.title-frame__en {
  font-size: 2.4rem;
  line-height: 1;
  margin-left: 1rem;
  letter-spacing: 0.05rem;
}

.googlemap {
  width: 100%;
  height: auto;
  aspect-ratio: 800/450;
}

.orange {
  color: #F6B26A;
}

.animate-line {
  --border-color: #05c662;
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--border-color)), to(var(--border-color)));
  background-image: linear-gradient(var(--border-color), var(--border-color)); /* 単色 */
  background-size: 0 3px; /* 幅(0=見えない状態) | 高さ(=線の太さ) */
  background-position: bottom right; /* 右下に配置 */
  background-repeat: no-repeat;
  padding-bottom: 5px;
  -webkit-transition: background-size 0.7s ease-out;
  transition: background-size 0.7s ease-out;
}
.animate-line.active {
  background-size: 100% 3px; /* 幅(100%=文字の長さ) | 高さ(=線の太さ) */
  background-position: bottom left; /* 左下に配置 */
}
.animate-line.orange {
  --border-color: var(--accent-color);
}

.animate-boldline {
  --border-color: #2A91B7;
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--border-color)), to(var(--border-color)));
  background-image: linear-gradient(var(--border-color), var(--border-color)); /* 単色 */
  background-size: 0 0.7em; /* 幅(0=見えない状態) | 高さ(=線の太さ) */
  background-position: bottom right; /* 右下に配置 */
  background-repeat: no-repeat;
  padding-bottom: 5px;
  -webkit-transition: background-size 0.7s ease-out;
  transition: background-size 0.7s ease-out;
}
.animate-boldline.active {
  background-size: 100% 0.7em; /* 幅(100%=文字の長さ) | 高さ(=線の太さ) */
  background-position: bottom left; /* 左下に配置 */
}
.animate-boldline.color-orange {
  --border-color: var(--accent-color);
}

@media screen and (max-width:520px) {
  .title-frame {
    margin-bottom: 2.5rem;
  }
  .title-frame__wrap {
    padding: 0 2rem 1rem 2rem;
  }
  .title-frame__jp {
    font-size: 2.8rem;
  }
  .title-frame__en {
    font-size: 1.6rem;
  }
  .googlemap {
    aspect-ratio: 1;
  }
}
.fixed-navigation {
  display: none;
}
@media screen and (max-width:520px) {
  .fixed-navigation {
    display: grid;
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
    height: 6rem;
    background-color: var(--white);
    grid-template-columns: repeat(4, 1fr);
    z-index: 500;
    -webkit-box-shadow: 0 -0.5rem 0.5rem rgba(246, 178, 106, 0.2);
            box-shadow: 0 -0.5rem 0.5rem rgba(246, 178, 106, 0.2);
    -webkit-transition: bottom 0.3s ease-in-out;
    transition: bottom 0.3s ease-in-out;
  }
  .fixed-navigation a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-left: 0.1rem dashed var(--text-color);
    color: var(--text-color);
    font-family: var(--font-mpuls1);
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    line-height: 1;
  }
  .fixed-navigation a svg {
    width: 1.6rem;
    height: 1.6rem;
    margin-bottom: 0.3rem;
    fill: var(--text-color);
  }
  .fixed-navigation.hidden {
    bottom: -6rem;
  }
}

.hero {
  width: var(--max-width);
  margin: 0 auto;
  aspect-ratio: 1280/600;
  position: relative;
  overflow: hidden;
}
.hero__background {
  width: 100%;
}
.hero__background img, .hero__background video {
  width: 100%;
}
.hero__background video {
  position: relative;
  left: 0;
  top: -10%;
}
.hero__concept {
  position: absolute;
  right: 0;
  top: 75%;
  background-color: rgba(246, 178, 106, 0.8);
  color: var(--white);
  line-height: 1;
  font-weight: 700;
  font-size: 2.2rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2.5rem 2.6rem 2.5rem 3.5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.hero__concept::before {
  content: "";
  display: inline-block;
  width: 5rem;
  height: 0.2rem;
  background-color: var(--white);
  margin-right: 1rem;
}
@media screen and (max-width:520px) {
  .hero__concept {
    font-size: 1.2rem;
    padding: 1.3rem 1rem;
  }
}
.hero__concept.pos-2 {
  right: unset;
  top: 25%;
  left: 0;
}
@media screen and (max-width:520px) {
  .hero {
    width: 100%;
    aspect-ratio: 365/220;
  }
}
@media screen and (max-width: 1140px) {
  .hero {
    width: 100%;
  }
}

.swiper-button-next::after,
.swiper-button-prev::after {
  /* 矢印そのものは :after にあるので、中身を透明にすると OK */
  color: var(--text-color); /* iOS のタップ領域の色残り対策 */
}

.main-content-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 5rem;
  padding: 0 var(--content-both-padding);
}
@media screen and (max-width:520px) {
  .main-content-wrap {
    row-gap: 2.5rem;
  }
}

.main-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  --main-wrap-padding: 10rem;
  row-gap: var(--main-wrap-padding);
  padding-top: var(--main-wrap-padding);
  padding-bottom: var(--main-wrap-padding);
}
@media screen and (max-width:520px) {
  .main-wrap {
    --main-wrap-padding: 5rem;
  }
}

.price__content {
  display: grid;
  grid-template-columns: 42.5rem 1fr;
  -webkit-column-gap: 3rem;
     -moz-column-gap: 3rem;
          column-gap: 3rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.price__content-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.price__content-info h3 {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 0.05rem;
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: var(--font-mpuls1);
}
.price__content-info .service-price {
  font-size: 4.2rem;
  line-height: 1.2;
  letter-spacing: 0.1rem;
}
.price__content-info .service-price span {
  font-weight: 700;
  color: var(--accent-color);
}
.price__content-info p strong {
  color: var(--accent-color);
}
.price__content-support img, .price__content-support picture {
  width: 100%;
}
.price__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}

@media screen and (max-width:520px) {
  .price__content {
    grid-template-columns: 1fr;
    row-gap: 2rem;
  }
  .price__content-info h3 {
    font-size: 2.2rem;
    line-height: 1;
    margin-bottom: 0;
  }
  .price__content-info .service-price {
    font-size: 2.4rem;
    line-height: 1;
  }
  .price__content-info p {
    letter-spacing: 0.15rem;
  }
  .price__content-support img, .price__content-support picture {
    width: 100%;
  }
  .price__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}/*# sourceMappingURL=first.css.map */