@charset "UTF-8";
:root {
  --color-primary-green: #32c702;
  --color-primary-yellow: #ffbc00;
  --bg-color-green: #ebf9e6;
  --bg-color-yellow: #fdfbf1;
  --color-white: #ffffff;
  --color-black: #1a1a1a;
  --color-light-black: #2e2e2e;
  --color-gray: #4d4d4d;
  --color-light-gray: #808080;
  --font-size: 16;
}

html {
  font-size: 16px;
  --font-size: 16;
}

@media screen and (max-width: 1023px) {
  html {
    position: relative;
    font-size: 4.2666666667vw;
    --font-size: 16;
    overflow-x: hidden;
    height: 100vh;
  }
  html.is-modal-open {
    overflow: hidden;
  }
}
body {
  position: relative;
  font-size: 1rem;
  color: var(--color-light-black);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.is-modal-open body {
  overflow: hidden;
}

@media screen and (min-width: 1024px) {
  .u-hide-pc {
    display: none;
  }
  .u-hide-sp {
    display: block;
  }
}
@media screen and (max-width: 1023px) {
  .u-hide-pc {
    display: block;
  }
  .u-hide-sp {
    display: none;
  }
}
@media screen and (min-width: 1340px) {
  .u-hide-pc1340 {
    display: none;
  }
  .u-hide-sp1340 {
    display: block;
  }
}
@media screen and (max-width: 1339px) {
  .u-hide-pc1340 {
    display: block;
  }
  .u-hide-sp1340 {
    display: none;
  }
  .l-header__in {
    /* ===============================================
    ハンバーガーボタンのスタイリング
    =============================================== */
    /* ===============================================
    メニューのスタイリング
    =============================================== */
  }
  .l-header__in input[type=checkbox] {
    opacity: 0;
    visibility: hidden;
    position: absolute;
  }
  .l-header__in .hamburger {
    display: block;
    width: calc(36 / var(--font-size) * 1rem);
    height: calc(36 / var(--font-size) * 1rem);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background: #ff3700;
    border-radius: calc(50 / var(--font-size) * 1rem);
    z-index: 99;
  }
  .l-header__in .hamburger span {
    position: absolute;
    display: block;
    content: "";
    width: 40%;
    height: calc(2 / var(--font-size) * 1rem);
    background-color: rgba(255, 255, 255, 0);
    transition: all 0.5s;
  }
  .l-header__in .hamburger span::before,
  .l-header__in .hamburger span::after {
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: calc(2 / var(--font-size) * 1rem);
    background-color: #fff;
    transition: all 0.5s;
  }
  .l-header__in .hamburger span::before {
    top: calc(-3 / var(--font-size) * 1rem);
  }
  .l-header__in .hamburger span::after {
    bottom: calc(-3 / var(--font-size) * 1rem);
  }
  .l-header__in input[type=checkbox]:checked + .hamburger span {
    background-color: transparent;
  }
  .l-header__in input[type=checkbox]:checked + .hamburger span::before {
    top: 0;
    transform: rotate(45deg);
  }
  .l-header__in input[type=checkbox]:checked + .hamburger span::after {
    transform: rotate(-45deg);
    bottom: 0;
  }
  .l-header__in .nav {
    position: fixed;
    width: 40%;
    height: 100vh;
    top: 0px;
    right: -120%;
    background-color: #0f5474;
    background-color: #fff;
    color: #fff;
    transition: all 0.5s;
    display: flex;
    align-items: center;
    overscroll-behavior: contain;
  }
  .l-header__in .nav__item .nav_btn {
    padding: calc(27 / var(--font-size) * 1rem) calc(0 / var(--font-size) * 1rem) calc(13 / var(--font-size) * 1rem) calc(40 / var(--font-size) * 1rem);
  }
  .l-header__in .nav__item .btn_area {
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: calc(13 / var(--font-size) * 1rem) calc(18 / var(--font-size) * 1rem) calc(13 / var(--font-size) * 1rem) calc(33 / var(--font-size) * 1rem);
    background-color: #ff3700;
    width: 100%;
    border-radius: calc(50 / var(--font-size) * 1rem);
    gap: calc(15 / var(--font-size) * 1rem);
  }
  .l-header__in .nav__item .btn_area p {
    height: auto;
    color: #fff;
    text-align: center;
    font-size: calc(16 / var(--font-size) * 1rem);
  }
  .l-header__in .nav__item .btn_area p .font16 {
    font-size: calc(16 / var(--font-size) * 1rem);
  }
  .l-header__in .nav__item .btn_area p .font15 {
    font-size: calc(15 / var(--font-size) * 1rem);
  }
  .l-header__in .nav__item .btn_area::after {
    content: "";
    background: url(../img/btn_arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    height: calc(15 / var(--font-size) * 1rem);
    width: calc(15 / var(--font-size) * 1rem);
    display: block;
  }
  .l-header__in .nav__item .btn_area:hover {
    background-color: #fff;
    border: #ff3700 3px solid;
    box-sizing: border-box;
    padding: calc(10 / var(--font-size) * 1rem) calc(15 / var(--font-size) * 1rem) calc(10 / var(--font-size) * 1rem) calc(27 / var(--font-size) * 1rem);
  }
  .l-header__in .nav__item .btn_area:hover p {
    color: #ff3700;
  }
  .l-header__in .nav__item .btn_area:hover::after {
    content: "";
    background: url(../img/btn_wh_arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    height: calc(15 / var(--font-size) * 1rem);
    width: calc(15 / var(--font-size) * 1rem);
    display: block;
  }
  .l-header__in .nav__item a {
    display: block;
    font-size: calc(18 / var(--font-size) * 1rem);
    padding: calc(13 / var(--font-size) * 1rem) calc(0 / var(--font-size) * 1rem) calc(13 / var(--font-size) * 1rem) calc(40 / var(--font-size) * 1rem);
    text-transform: uppercase;
    text-decoration: none;
    color: #ff3700;
    transition: all 0.3s;
  }
  .l-header__in .nav__item a:hover {
    color: #fff;
    background-color: #ff3700;
  }
  .l-header__in input[type=checkbox]:checked ~ .nav {
    right: 0;
  }
}
img {
  vertical-align: middle;
  width: 100%;
  height: 100%;
}

/*************************
Layout
*************************/
@media screen and (min-width: 1024px) {
  .l-header {
    background-color: var(--color-white);
    filter: drop-shadow(0 calc(4 / var(--font-size) * 1rem) calc(4 / var(--font-size) * 1rem) rgba(0, 0, 0, 0.15));
  }
  .l-header.is-fix {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
  }
  .l-header__in {
    padding: calc(8 / var(--font-size) * 1rem) calc(55 / var(--font-size) * 1rem);
    padding-right: calc(20 / var(--font-size) * 1rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .l-header-logo-list {
    display: flex;
    align-items: center;
  }
  .l-header-logo-item + .l-header-logo-item {
    margin-left: calc(16 / var(--font-size) * 1rem);
  }
  .l-header-logo-item.--shikaku-pass {
    width: calc(305 / var(--font-size) * 1rem);
  }
  .l-header-logo-item.--group {
    width: calc(204 / var(--font-size) * 1rem);
  }
  .l-header-logo__img {
    position: relative;
    width: 100%;
  }
  .l-header-logo__img img {
    display: block;
    width: 100%;
    height: auto;
  }
  .l-header__body {
    display: flex;
    align-items: center;
  }
  .l-header-nav-list {
    display: flex;
  }
  .l-header-nav-list__item + .l-header-nav-list__item {
    margin-left: calc(34 / var(--font-size) * 1rem);
  }
  .l-header-nav-list__item > a {
    transition: opacity 0.3s;
  }
  .l-header-nav-list__item > a:hover {
    opacity: 0.7;
  }
  .l-header-nav-link {
    --txt-color: var(--color-light-black);
    color: var(--txt-color);
  }
  .l-header-cta {
    margin-left: calc(30 / var(--font-size) * 1rem);
  }
  .l-header-cta-list {
    display: flex;
    align-items: center;
  }
  .l-header-cta-list__item + .l-header-cta-list__item {
    margin-left: calc(23 / var(--font-size) * 1rem);
  }
  .l-header-cta-btn {
    --txt-color: var(--color-white);
    --radius: calc(4 / var(--font-size) * 1rem);
    --btn-py: calc(12 / var(--font-size) * 1rem);
    --btn-px: calc(12 / var(--font-size) * 1rem);
    font-size: calc(14 / var(--font-size) * 1rem);
    font-weight: bold;
    background-color: var(--bg-color);
    color: var(--txt-color);
    border-radius: var(--radius);
  }
  .l-header-cta-btn > a {
    transition: opacity 0.3s;
  }
  .l-header-cta-btn > a:hover {
    background: #fff;
    color: #ff3700;
    outline: 3px solid #ff3700;
  }
  .l-header-cta-btn.green {
    --bg-color: var(--color-primary-green);
  }
  .l-header-cta-btn.yellow {
    --bg-color: var(--color-primary-yellow);
  }
  .l-header-cta-btn__in {
    display: block;
    padding: 5px 14px;
    border-radius: 100px;
    background: #ff3700;
    text-align: center;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .l-header-nav-list {
    display: flex;
  }
  .l-header-nav-list__item + .l-header-nav-list__item {
    margin-left: calc(17 / var(--font-size) * 1rem);
  }
  .l-header-logo-item + .l-header-logo-item {
    margin-left: calc(16 / var(--font-size) * 1rem);
  }
  .l-header-logo-item.--shikaku-pass {
    width: calc(202 / var(--font-size) * 1rem);
  }
  .l-header-logo-item.--group {
    width: calc(134 / var(--font-size) * 1rem);
  }
}
@media screen and (max-width: 1023px) {
  .l-header {
    position: relative;
    background-color: var(--color-white);
    filter: drop-shadow(0 calc(4 / var(--font-size) * 1rem) calc(4 / var(--font-size) * 1rem) rgba(0, 0, 0, 0.15));
    z-index: 100;
  }
  .l-header.is-fix {
    position: fixed;
    top: 0;
    width: 100%;
  }
  .l-header__in {
    height: calc(55 / var(--font-size) * 1rem);
    padding-left: calc(12 / var(--font-size) * 1rem);
    padding-right: calc(12 / var(--font-size) * 1rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .l-header-logo-list {
    display: flex;
    align-items: center;
  }
  .l-header-logo-item + .l-header-logo-item {
    margin-left: calc(8 / var(--font-size) * 1rem);
  }
  .l-header-logo-item.--shikaku-pass {
    width: calc(160 / var(--font-size) * 1rem);
  }
  .l-header-logo-item.--group {
    width: calc(108 / var(--font-size) * 1rem);
  }
  .l-header-logo__img {
    position: relative;
    width: 100%;
  }
  .l-header-logo__img img {
    display: block;
    width: 100%;
    height: auto;
  }
  .l-header-trigger {
    display: block;
    position: relative;
    width: calc(50 / var(--font-size) * 1rem);
    height: calc(50 / var(--font-size) * 1rem);
  }
  .l-header-trigger__inner {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
  }
  .l-header-trigger__inner > span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: calc(14 / var(--font-size) * 1rem);
    height: 3px;
    border-radius: 2px;
    background: var(--color-black);
    width: 50%;
  }
  .l-header-trigger__inner > span:nth-of-type(1) {
    top: calc(15 / var(--font-size) * 1rem);
  }
  .is-show .l-header-trigger__inner > span:nth-of-type(1) {
    top: calc(18 / var(--font-size) * 1rem);
    left: calc(18 / var(--font-size) * 1rem);
    transform: translateY(calc(6 / var(--font-size) * 1rem)) rotate(-45deg);
  }
  .l-header-trigger__inner > span:nth-of-type(2) {
    top: calc(23 / var(--font-size) * 1rem);
  }
  .is-show .l-header-trigger__inner > span:nth-of-type(2) {
    opacity: 0;
  }
  .l-header-trigger__inner > span:nth-of-type(3) {
    top: calc(31 / var(--font-size) * 1rem);
  }
  .is-show .l-header-trigger__inner > span:nth-of-type(3) {
    top: calc(30 / var(--font-size) * 1rem);
    left: calc(18 / var(--font-size) * 1rem);
    transform: translateY(calc(-6 / var(--font-size) * 1rem)) rotate(45deg);
  }
  .l-header__body {
    position: fixed;
    top: 0;
    right: 0;
    margin-top: calc(50 / var(--font-size) * 1rem);
    padding: calc(28 / var(--font-size) * 1rem) calc(24 / var(--font-size) * 1rem);
    z-index: 10;
    background: #fff;
    opacity: 0.98;
    transform: translateX(100%);
    transition: transform 0.3s;
    height: 100vh;
  }
  .is-show .l-header__body {
    transform: translateX(0);
  }
  .l-header-nav-list__item + .l-header-nav-list__item {
    margin-top: calc(14 / var(--font-size) * 1rem);
  }
  .l-header-nav-link {
    --txt-color: var(--color-light-black);
    color: var(--txt-color);
  }
  .l-header-cta {
    margin-top: calc(21 / var(--font-size) * 1rem);
  }
  .l-header-cta-list {
    display: block;
  }
  .l-header-cta-list__item {
    font-size: calc(14 / var(--font-size) * 1rem);
  }
  .l-header-cta-list__item + .l-header-cta-list__item {
    margin-top: calc(11 / var(--font-size) * 1rem);
  }
  .l-header-cta-btn {
    --txt-color: var(--color-white);
    --bg-color: var(--color-primary-yellow);
    --radius: calc(4 / var(--font-size) * 1rem);
    --btn-py: calc(4 / var(--font-size) * 1rem);
    --btn-px: calc(4 / var(--font-size) * 1rem);
    font-size: calc(11 / var(--font-size) * 1rem);
    font-weight: bold;
    background-color: var(--bg-color);
    color: var(--txt-color);
    border-radius: var(--radius);
    width: calc(80 / var(--font-size) * 1rem);
  }
  .l-header-cta-btn.green {
    --bg-color: var(--color-primary-green);
  }
  .l-header-cta-btn.yellow {
    --bg-color: var(--color-primary-yellow);
  }
  .l-header-cta-btn__in {
    display: block;
    padding: var(--btn-py) var(--btn-px);
    text-align: center;
  }
  .l-header__in {
    /* ===============================================
      ハンバーガーボタンのスタイリング
      =============================================== */
    /* ===============================================
      メニューのスタイリング
      =============================================== */
  }
  .l-header__in input[type=checkbox] {
    opacity: 0;
    visibility: hidden;
    position: absolute;
  }
  .l-header__in .hamburger {
    display: block;
    width: calc(36 / var(--font-size) * 1rem);
    height: calc(36 / var(--font-size) * 1rem);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background: #ff3700;
    border-radius: calc(50 / var(--font-size) * 1rem);
    z-index: 99;
  }
  .l-header__in .hamburger span {
    position: absolute;
    display: block;
    content: "";
    width: 40%;
    height: calc(2 / var(--font-size) * 1rem);
    background-color: rgba(255, 255, 255, 0);
    transition: all 0.5s;
  }
  .l-header__in .hamburger span::before,
  .l-header__in .hamburger span::after {
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: calc(2 / var(--font-size) * 1rem);
    background-color: #fff;
    transition: all 0.5s;
  }
  .l-header__in .hamburger span::before {
    top: calc(-3 / var(--font-size) * 1rem);
  }
  .l-header__in .hamburger span::after {
    bottom: calc(-3 / var(--font-size) * 1rem);
  }
  .l-header__in input[type=checkbox]:checked + .hamburger span {
    background-color: transparent;
  }
  .l-header__in input[type=checkbox]:checked + .hamburger span::before {
    top: 0;
    transform: rotate(45deg);
  }
  .l-header__in input[type=checkbox]:checked + .hamburger span::after {
    transform: rotate(-45deg);
    bottom: 0;
  }
  .l-header__in .nav {
    position: fixed;
    width: 85%;
    height: 100vh;
    top: 0px;
    right: -120%;
    background-color: #0f5474;
    background-color: #fff;
    color: #fff;
    transition: all 0.5s;
    display: flex;
    align-items: center;
    overscroll-behavior: contain;
  }
  .l-header__in .nav__item .nav_btn {
    padding: calc(27 / var(--font-size) * 1rem) calc(0 / var(--font-size) * 1rem) calc(13 / var(--font-size) * 1rem) calc(40 / var(--font-size) * 1rem);
  }
  .l-header__in .nav__item .btn_area {
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: calc(13 / var(--font-size) * 1rem) calc(18 / var(--font-size) * 1rem) calc(13 / var(--font-size) * 1rem) calc(33 / var(--font-size) * 1rem);
    background-color: #ff3700;
    width: 100%;
    border-radius: calc(50 / var(--font-size) * 1rem);
    gap: calc(15 / var(--font-size) * 1rem);
  }
  .l-header__in .nav__item .btn_area p {
    height: auto;
    color: #fff;
    text-align: center;
    font-size: calc(16 / var(--font-size) * 1rem);
  }
  .l-header__in .nav__item .btn_area p .font16 {
    font-size: calc(16 / var(--font-size) * 1rem);
  }
  .l-header__in .nav__item .btn_area p .font15 {
    font-size: calc(15 / var(--font-size) * 1rem);
  }
  .l-header__in .nav__item .btn_area::after {
    content: "";
    background: url(../img/btn_arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    height: calc(15 / var(--font-size) * 1rem);
    width: calc(15 / var(--font-size) * 1rem);
    display: block;
  }
  .l-header__in .nav__item .btn_area:hover {
    background-color: #fff;
    border: #ff3700 3px solid;
    box-sizing: border-box;
    padding: calc(10 / var(--font-size) * 1rem) calc(15 / var(--font-size) * 1rem) calc(10 / var(--font-size) * 1rem) calc(27 / var(--font-size) * 1rem);
  }
  .l-header__in .nav__item .btn_area:hover p {
    color: #ff3700;
  }
  .l-header__in .nav__item .btn_area:hover::after {
    content: "";
    background: url(../img/btn_wh_arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    height: calc(15 / var(--font-size) * 1rem);
    width: calc(15 / var(--font-size) * 1rem);
    display: block;
  }
  .l-header__in .nav__item a {
    display: block;
    font-size: calc(18 / var(--font-size) * 1rem);
    padding: calc(13 / var(--font-size) * 1rem) calc(0 / var(--font-size) * 1rem) calc(13 / var(--font-size) * 1rem) calc(40 / var(--font-size) * 1rem);
    text-transform: uppercase;
    text-decoration: none;
    color: #ff3700;
    transition: all 0.3s;
  }
  .l-header__in .nav__item a:hover {
    color: #fff;
    background-color: #ff3700;
  }
  .l-header__in input[type=checkbox]:checked ~ .nav {
    right: 0;
  }
}
.l-main {
  overflow-x: hidden;
}
@media screen and (min-width: 1024px) {
  .l-footer {
    position: relative;
    z-index: 0;
  }
  .l-footer__in {
    position: relative;
  }
  .l-footer-copyright {
    background-color: var(--color-primary-green);
    padding: calc(15 / var(--font-size) * 1rem) 0;
  }
  .l-footer-copyright__txt {
    font-size: calc(17 / var(--font-size) * 1rem);
    text-align: center;
    color: var(--color-white);
    font-weight: 600;
  }
  .l-footer-top {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: calc(20 / var(--font-size) * 1rem);
  }
  .l-footer-top-btn {
    width: calc(170 / var(--font-size) * 1rem);
    transition: all 0.3s ease;
  }
  .l-footer-top-btn:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 1023px) {
  .l-footer {
    position: relative;
    z-index: 0;
  }
  .l-footer__in {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-primary-green);
  }
  .l-footer-copyright {
    padding: calc(15 / var(--font-size) * 1rem) 0;
  }
  .l-footer-copyright__txt {
    font-size: calc(17 / var(--font-size) * 1rem);
    text-align: center;
    color: var(--color-white);
    font-weight: 600;
  }
  .l-footer-top {
    position: relative;
    z-index: 0;
    margin-left: calc(20 / var(--font-size) * 1rem);
  }
  .l-footer-top-btn {
    width: calc(154 / var(--font-size) * 1rem);
  }
}
.l-section {
  --pt: 80;
  --pb: 60;
  padding-top: calc(var(--pt) / var(--font-size) * 1rem);
  padding-bottom: calc(var(--pb) / var(--font-size) * 1rem);
}
.l-section__wrap {
  margin-top: calc(-60 / var(--font-size) * 1rem);
  padding-top: calc(60 / var(--font-size) * 1rem);
}
.l-section__in {
  padding: calc(20 / var(--font-size) * 1rem) calc(20 / var(--font-size) * 1rem) 0;
  max-width: calc(1120 / var(--font-size) * 1rem);
  margin: auto;
  position: relative;
}
.l-section-deco__item {
  display: block;
}
.l-section-deco__item::before {
  content: "";
  display: block;
  position: absolute;
}

@media screen and (max-width: 1023px) {
  .l-section {
    --pt: 40;
    --pb: 40;
    padding-top: calc(var(--pt) / var(--font-size) * 1rem);
    padding-bottom: calc(var(--pb) / var(--font-size) * 1rem);
  }
  .l-section__wrap {
    margin-top: calc(-40 / var(--font-size) * 1rem);
    padding-top: calc(40 / var(--font-size) * 1rem);
  }
  .l-section__in {
    padding: calc(22 / var(--font-size) * 1rem) calc(22 / var(--font-size) * 1rem) 0;
    width: 100%;
    margin: auto;
    position: relative;
  }
  .l-section-deco__item {
    display: block;
  }
  .l-section-deco__item::before {
    content: "";
    display: block;
    position: absolute;
  }
}
/*************************
Common
*************************/
@media screen and (min-width: 1024px) {
  .c-heading-lv1 {
    --sub-deco-width: 0;
  }
  .c-heading-lv1-sub {
    line-height: 1;
    margin-bottom: calc(12 / var(--font-size) * 1rem);
  }
  .c-heading-lv1-sub__label {
    display: inline-block;
    width: calc(var(--sub-deco-width) / var(--font-size) * 1rem);
  }
  .c-heading-lv1-main {
    display: flex;
    align-items: center;
  }
  .c-heading-lv1-main__logo {
    display: inline-block;
    width: calc(397 / var(--font-size) * 1rem);
    margin-right: calc(10 / var(--font-size) * 1rem);
  }
  .c-heading-lv1-main__logo img {
    width: 100%;
  }
  .c-heading-lv1-main__label {
    font-size: calc(30 / var(--font-size) * 1rem);
    font-weight: bold;
    line-height: 1.4;
  }
  .c-heading-lead {
    margin-top: calc(8 / var(--font-size) * 1rem);
  }
}
@media screen and (max-width: 1023px) {
  .c-heading-lv1 {
    --sub-deco-width: 203;
  }
  .c-heading-lv1-sub {
    line-height: 1;
    margin-bottom: calc(8 / var(--font-size) * 1rem);
  }
  .c-heading-lv1-sub__label {
    display: inline-block;
    width: calc(var(--sub-deco-width) / var(--font-size) * 1rem);
  }
  .c-heading-lv1-main {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
  }
  .c-heading-lv1-main__logo {
    display: inline-block;
    width: 100%;
  }
  .c-heading-lv1-main__logo img {
    width: 100%;
  }
  .c-heading-lv1-main__logo + .c-heading-lv1-main__label {
    text-align: right;
    width: 100%;
  }
  .c-heading-lv1-main__label {
    font-size: calc(22 / var(--font-size) * 1rem);
    font-weight: bold;
    line-height: 1.4;
    text-align: left;
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .c-heading-lv2 {
    --icon-size-w: 35;
    --icon-size-h: 30;
    --icon-border-size: 2;
    --color-border: var(--color-primary-yellow);
    --heading-font-size: 28;
    --heading-font-color: var(--color-black);
  }
  .c-heading-lv2__body {
    display: flex;
    align-items: center;
  }
  .c-heading-lv2-icon {
    margin-right: calc(16 / var(--font-size) * 1rem);
    padding-right: calc(16 / var(--font-size) * 1rem);
    border-right: var(--color-border) calc(var(--icon-border-size) / var(--font-size) * 1rem) solid;
  }
  .c-heading-lv2-icon__label {
    display: block;
    width: calc(var(--icon-size-w) / var(--font-size) * 1rem);
    height: calc(var(--icon-size-h) / var(--font-size) * 1rem);
  }
  .c-heading-lv2-txt__label {
    font-size: calc(var(--heading-font-size) / var(--font-size) * 1rem);
    font-weight: bold;
    color: var(--heading-font-color);
    letter-spacing: 0;
  }
}
@media screen and (max-width: 1023px) {
  .c-heading-lv2 {
    --icon-size-w: 35;
    --icon-size-h: 36;
    --icon-border-size: 2;
    --color-border: var(--color-primary-yellow);
    --heading-font-size: 20;
    --heading-font-color: var(--color-black);
  }
  .c-heading-lv2__body {
    display: flex;
    align-items: center;
  }
  .c-heading-lv2-icon {
    margin-right: calc(18 / var(--font-size) * 1rem);
    padding-right: calc(20 / var(--font-size) * 1rem);
    border-right: var(--color-border) calc(var(--icon-border-size) / var(--font-size) * 1rem) solid;
  }
  .c-heading-lv2-icon__label {
    display: block;
    width: calc(var(--icon-size-w) / var(--font-size) * 1rem);
    height: calc(var(--icon-size-h) / var(--font-size) * 1rem);
  }
  .c-heading-lv2-txt__label {
    font-size: calc(var(--heading-font-size) / var(--font-size) * 1rem);
    font-weight: bold;
    color: var(--heading-font-color);
    letter-spacing: 0;
  }
}
.c-heading-underline {
  --heading-font-size: 30;
  --heading-deco-color: var(--color-primary-green);
  --text-align: center;
}
.c-heading-underline__body {
  text-align: var(--text-align);
}
.c-heading-underline-txt {
  padding-bottom: calc(6 / var(--font-size) * 1rem);
  border-bottom: var(--heading-deco-color) calc(3 / var(--font-size) * 1rem) solid;
  display: inline-block;
}
.c-heading-underline-txt__label {
  font-size: calc(var(--heading-font-size) / var(--font-size) * 1rem);
  font-weight: bold;
  line-height: 1.5;
}
.c-heading-underline-txt__img {
  width: calc(194 / var(--font-size) * 1rem);
  display: inline-block;
  margin-right: calc(10 / var(--font-size) * 1rem);
}

@media screen and (max-width: 1023px) {
  .c-heading-underline {
    --heading-font-size: 20;
    --heading-deco-color: var(--color-primary-green);
    --text-align: center;
  }
  .c-heading-underline__body {
    text-align: var(--text-align);
  }
  .c-heading-underline-txt {
    padding-bottom: calc(6 / var(--font-size) * 1rem);
    border-bottom: var(--heading-deco-color) calc(3 / var(--font-size) * 1rem) solid;
    display: inline-block;
    text-align: left;
  }
  .c-heading-underline-txt__label {
    font-size: calc(var(--heading-font-size) / var(--font-size) * 1rem);
    font-weight: bold;
    line-height: 1.5;
  }
  .c-heading-underline-txt__img {
    width: calc(101 / var(--font-size) * 1rem);
    display: inline-block;
    margin-right: calc(3 / var(--font-size) * 1rem);
  }
}
.c-list__item {
  display: flex;
}
.c-list__item.c-list__item--dot::before {
  content: "・";
}
.c-list__item + .c-list__item {
  margin-top: calc(10 / var(--font-size) * 1rem);
}
@media screen and (max-width: 1023px) {
  .c-list__item {
    display: flex;
  }
  .c-list__item.c-list__item--dot::before {
    content: "・";
  }
  .c-list__item + .c-list__item {
    margin-top: calc(10 / var(--font-size) * 1rem);
  }
}
.c-btn {
  --radius: 4;
  --bg-color: var(--color-primary-yellow);
  --txt-color: var(--color-white);
  --txt-font-size: 16;
  --btn-pt: 10;
  --btn-pb: 8;
  --btn-px: 10;
  --min-height: 50;
}
.c-btn.yellow {
  --bg-color: var(--color-primary-yellow);
}
.c-btn.green {
  --bg-color: var(--color-primary-green);
}
.c-btn__in {
  min-height: calc(var(--min-height) / var(--font-size) * 1rem);
  padding: calc(var(--btn-pt) / var(--font-size) * 1rem) calc(var(--btn-px) / var(--font-size) * 1rem) calc(var(--btn-pb) / var(--font-size) * 1rem);
  background-color: var(--bg-color);
  border-radius: calc(var(--radius) / var(--font-size) * 1rem);
}
.c-btn__body {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-btn-txt {
  text-align: center;
  font-weight: bold;
}
.c-btn-txt__label {
  font-size: calc(var(--txt-font-size) / var(--font-size) / 1rem);
  color: var(--txt-color);
  line-height: 1.4;
}

@media screen and (max-width: 1023px) {
  .c-btn {
    --radius: 4;
    --bg-color: var(--color-primary-yellow);
    --txt-color: var(--color-white);
    --txt-font-size: 15;
    --btn-pt: 10;
    --btn-pb: 8;
    --btn-px: 10;
    --min-height: 38;
  }
  .c-btn.yellow {
    --bg-color: var(--color-primary-yellow);
  }
  .c-btn.green {
    --bg-color: var(--color-primary-green);
  }
  .c-btn__in {
    min-height: calc(var(--min-height) / var(--font-size) * 1rem);
    padding: calc(var(--btn-pt) / var(--font-size) * 1rem) calc(var(--btn-px) / var(--font-size) * 1rem) calc(var(--btn-pb) / var(--font-size) * 1rem);
    background-color: var(--bg-color);
    border-radius: calc(var(--radius) / var(--font-size) * 1rem);
  }
  .c-btn__body {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .c-btn-txt {
    text-align: center;
    font-weight: bold;
  }
  .c-btn-txt__label {
    font-size: calc(var(--txt-font-size) / var(--font-size) / 1rem);
    color: var(--txt-color);
    line-height: 1.4;
  }
}
@media screen and (min-width: 1024px) {
  .c-text-link {
    display: inline-block;
  }
  .c-text-link a {
    display: block;
  }
  .c-text-link__in {
    position: relative;
    padding-right: calc(16 / var(--font-size) * 1rem);
  }
  .c-text-link__in:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(45deg);
    display: inline-block;
    width: calc(8 / var(--font-size) * 1rem);
    height: calc(8 / var(--font-size) * 1rem);
    margin: 0 calc(4 / var(--font-size) * 1rem);
    border-top: 2px solid #000;
    border-right: 2px solid #000;
  }
  .c-text-link__label {
    display: block;
    position: relative;
    font-size: calc(14 / var(--font-size) * 1rem);
    font-weight: bold;
    line-height: 1.7;
    padding-bottom: calc(1 / var(--font-size) * 1rem);
  }
  .c-text-link__label:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--color-black);
  }
  .c-text-link a:hover .c-text-link__label:after {
    display: none;
  }
  .c-text-link--mail .c-text-link__label {
    padding-left: calc(28 / var(--font-size) * 1rem);
  }
  .c-text-link--mail .c-text-link__label:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: calc(22 / var(--font-size) * 1rem);
    height: calc(22 / var(--font-size) * 1rem);
    background: url("../img/ico_mail.svg") center/cover no-repeat;
  }
}
@media screen and (max-width: 1023px) {
  .c-text-link {
    display: inline-block;
  }
  .c-text-link a {
    display: block;
  }
  .c-text-link__in {
    position: relative;
    padding-right: calc(8 / var(--font-size) * 1rem);
  }
  .c-text-link__in:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(45deg);
    display: inline-block;
    width: calc(5 / var(--font-size) * 1rem);
    height: calc(5 / var(--font-size) * 1rem);
    margin: 0 calc(2 / var(--font-size) * 1rem);
    border-top: 1px solid #000;
    border-right: 1px solid #000;
  }
  .c-text-link__label {
    display: block;
    position: relative;
    font-size: calc(10 / var(--font-size) * 1rem);
    font-weight: bold;
    line-height: 1.7;
    padding-bottom: calc(1 / var(--font-size) * 1rem);
  }
  .c-text-link--mail .c-text-link__label {
    padding-left: calc(16 / var(--font-size) * 1rem);
  }
  .c-text-link--mail .c-text-link__label:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: calc(13 / var(--font-size) * 1rem);
    height: calc(13 / var(--font-size) * 1rem);
    background: url("../img/ico_mail.svg") center/cover no-repeat;
  }
}
@media screen and (min-width: 1024px) {
  .fixed-menu {
    position: fixed;
    bottom: 0;
    right: 0;
    margin-bottom: calc(80 / var(--font-size) * 1rem);
    z-index: 1;
  }
  .fixed-menu-list-item {
    border-top-left-radius: calc(28 / var(--font-size) * 1rem);
    border-bottom-left-radius: calc(28 / var(--font-size) * 1rem);
    transform: translateX(calc(11 / var(--font-size) * 1rem));
    border: var(--color-white) calc(2 / var(--font-size) * 1rem) solid;
    transition: transform 0.3s;
  }
  .fixed-menu-list-item--free {
    background: var(--color-primary-yellow);
  }
  .fixed-menu-list-item--contact {
    background: var(--color-primary-green);
  }
  .fixed-menu-list-item:hover {
    transform: translateX(0);
  }
  .fixed-menu-list-item + .fixed-menu-list-item {
    margin-top: calc(5 / var(--font-size) * 1rem);
  }
  .fixed-menu-list-item > a {
    display: block;
    width: calc(156 / var(--font-size) * 1rem);
    height: calc(44 / var(--font-size) * 1rem);
    padding-top: calc(3.5 / var(--font-size) * 1rem);
    padding-left: calc(14 / var(--font-size) * 1rem);
    padding-bottom: calc(4.5 / var(--font-size) * 1rem);
  }
  .fixed-menu-list-item__inner {
    display: flex;
    align-items: center;
    height: 100%;
  }
  .fixed-menu-list-item__ico {
    width: calc(22 / var(--font-size) * 1rem);
  }
  .fixed-menu-list-item__label {
    margin-left: calc(8 / var(--font-size) * 1rem);
    display: block;
    font-size: calc(15 / var(--font-size) * 1rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--color-white);
  }
}
@media screen and (max-width: 1023px) {
  .fixed-menu {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 1;
    margin-bottom: calc(40 / var(--font-size) * 1rem);
  }
  .fixed-menu-list-item {
    background: var(--color-primary-yellow);
    border-top-left-radius: calc(28 / var(--font-size) * 1rem);
    border-bottom-left-radius: calc(28 / var(--font-size) * 1rem);
    border: var(--color-white) calc(2 / var(--font-size) * 1rem) solid;
    border-right: none;
  }
  .fixed-menu-list-item--free {
    background: var(--color-primary-yellow);
  }
  .fixed-menu-list-item--contact {
    background: var(--color-primary-green);
  }
  .fixed-menu-list-item + .fixed-menu-list-item {
    margin-top: calc(5 / var(--font-size) * 1rem);
  }
  .fixed-menu-list-item > a {
    display: block;
    width: 100%;
    padding-top: calc(3 / var(--font-size) * 1rem);
    padding-left: calc(9 / var(--font-size) * 1rem);
    padding-bottom: calc(4 / var(--font-size) * 1rem);
    width: calc(100 / var(--font-size) * 1rem);
    height: calc(25 / var(--font-size) * 1rem);
  }
  .fixed-menu-list-item__inner {
    border-radius: 50%;
    display: flex;
    align-items: center;
    height: 100%;
  }
  .fixed-menu-list-item__ico {
    width: calc(15 / var(--font-size) * 1rem);
    flex-shrink: 0;
  }
  .fixed-menu-list-item__label {
    margin-left: calc(5 / var(--font-size) * 1rem);
    display: block;
    font-size: calc(13 / var(--font-size) * 1rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--color-white);
    transform: scale(0.8);
    transform-origin: left;
    white-space: nowrap;
  }
}
/*************************
Utility
*************************/