@charset "UTF-8";


/* A Modern CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role="list"],
ol[role="list"] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* base */
a {
  text-decoration: none;
  color: #212529;
}

ul,
ul li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

main {
  /*margin-top: 70px;*/
}


.sp {
  display: none;
}

.tab {
  display: none;
}

@media screen and (max-width: 1024px) {
  .tab {
    display: block;
  }

  .pc {
    display: none;
  }
}

@media screen and (max-width: 599px) {
  .sp {
    display: block;
  }

  .tab {
    display: none;
  }
}

p {
  line-height: 1.5;
}

p a {
  color: #FAA826;
  text-decoration: underline;
}

p a:hover {
  color: #FAA826;
}

.row {
  display: flex;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--gray800);
}


/* header 
------------------------------------------------*/
#contact header.header {
  background-color: black;
  position: relative;
  height: 36px;
}

#contact header.header figure a {
  width: 150px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 30px;
}

@media screen and (max-width: 599px) {
  #contact header.header figure a {
    width: 200px;
    padding: 0;
    justify-content: flex-start;
  }
}

.header {
  height: 72px;
  color: #fff;
  font-size: 1.4rem;
  display: flex;
  padding-right: 20px;
  background-color: #F9F8F6;
  transition: ease all 0.5s;
  box-shadow: none;
}

@media screen and (max-width: 1024px) {
  .header {
    height: auto;
    padding: 10px 10px 10px 15px;
  }

  .header figure a {
    padding-left: 0px;
  }

  .header nav.tab {
    display: flex;
    padding: 0;
    justify-content: flex-end;
    margin-top: 0;
  }

  .header nav.tab a {
    display: flex;
    background: #ff550a;
    color: #fff;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    margin: 0 5px;
    font-size: 18px;
  }
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

header a {
  color: #333;
  text-decoration: none;
}

header figure a {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px 0 30px;
}


.header__logo {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
}

@media screen and (max-width: 599px) {
  header figure a {
    width: auto;
    padding: 0 5px 0 0;
    justify-content: flex-start;
  }

  .header__logo {
    font-size: 1.2rem;
  }

}

header nav {
  display: flex;
  flex-grow: 1;
  margin-top: 18px;
}

@media screen and (max-width: 599px) {
  header nav {
    margin: 0;
  }
}

header nav p>* {
  height: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
}

header nav p i {
  margin-right: 10px;
  font-size: 24px;
}

header nav p em {
  line-height: 1;
  font-style: normal;
  font-weight: 500;
}

header nav p.tel {
  margin-left: auto;
  margin-bottom: 15px;
}

header nav p.tel em {
  font-weight: bold;
  font-size: 2rem;
  display: block;
}

header nav p.tel small {
  display: block;
  margin-top: 4px;
  line-height: 1;
  font-weight: 400;
  color: #333;
}

header nav a.mail {
  display: flex;
  background: #FF9D00;
  border-radius: 3px;
  color: #fff;
  padding: 10px 40px;
  height: 40px;
  transition: ease all .3s;
}

/* header nav a.mail:hover {
  background: rgb(255, 85, 10);
  background: linear-gradient(167deg, rgba(255, 85, 10, 1) 50%, rgba(255, 67, 10, 1) 50%);

  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
} */

header nav a.mail>em {
  padding: 0;
  font-weight: 700;
  font-style: normal;
}

header nav a.mail>span {
  margin-right: 10px;
}


@media screen and (max-width: 599px) {
  .tel-box {
    background: #666666 !important;
  }

  .mail-box {
    background: #FF9D00 !important;
  }
}

/* variables
------------------------------------------------*/
:root {
  --white: #FFFFFF;
  --black: #000000;

  --gray50: #F2F2F2;
  --gray100: #E6E6E6;
  --gray200: #CCCCCC;
  --gray300: #B3B3B3;
  --gray400: #999999;
  --gray420: #949494;
  --gray500: #7F7F7F;
  --gray600: #767676;
  --gray700: #666666;
  --gray800: #333333;
  --gray900: #1A1A1A;

  --orange-subtle: #FFEEE2;
  --orange: #FF6600;
  --orange-strong: #FF4521;
  --orange-accent: #FF9D00;

  --yellow: #FFF134;

}




/* txt
------------------------------------------------*/
@media screen and (max-width: 599px) {
  .txt {
    text-align: left;
  }
}


/* inner
------------------------------------------------*/
.inner {
  width: 80vw;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
  box-sizing: border-box;
}

@media screen and (max-width: 1024px) {
  .inner {
    width: 100%;
    padding: 0 25px;
    box-sizing: border-box;
  }
}




/* main
------------------------------------------------*/
.l-main {
  margin-top: 115px;
}

.beige {
  background: #F9F8F6;
}

@media screen and (max-width: 599px) {
  .l-main {
    margin-top: 125px;
  }
}

/* kv — 再利用可能なキービジュアル
   ▼ インスタンスごとに変える値は :root ではなく .kv 自身に既定値を持たせ、
     HTML の style か modifier class で上書きする
------------------------------------------------*/
.kv {
  --kv-bg: none;
  /* HTML側で必ず指定 */
  --kv-min-height: clamp(320px, 39vw, 560px);
  /* 39vw を上限下限付きに */
  --kv-desc-width: min(80%, 960px);
  --kv-img-width: clamp(280px, 42%, 600px);
  --kv-img-right: 0%;
  --kv-accent: var(--orange-strong);
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: var(--kv-min-height);
  background: var(--kv-bg) no-repeat center / cover;
  display: flex;
  align-items: center;
  background-color: #F9F8F6;
  padding-bottom: 40px;
}

.kv__inner {
  position: relative;
  max-width: var(--kv-max-width, 1280px);
  min-height: var(--kv-min-height);
  margin-inline: auto;
  display: flex;
  align-items: center;
}

.kv__img {
  position: absolute;
  right: var(--kv-img-right);
  top: 52%;
  translate: 0 -50%;
  /* transform より副作用が少ない */
  width: 650px;
  max-width: 100%;
  z-index: 1;
}

.kv__img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px 0 0 10px;
}

.kv-text {
  font-size: 24px;
}

.kv__desc {
  position: relative;
  z-index: 2;
  width: 55%;
  padding: 20px 70px;
  background: #fff;
  border-radius: 0 10px 10px 0;
}

.kv__desc::before {
  content: "";
  position: absolute;
  left: -3%;
  top: 0%;
  transform: translateY(-50%);
  width: 130px;
  height: 139px;
  background-image: url(../img/bg_01.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.kv__desc::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -45%;
  transform: translateY(-50%);
  width: 200px;
  height: 139px;
  background-image: url(../img/bg_02.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.kv__desc h1 {
  margin: 0 0 clamp(12px, 2.34vw, 28px);
  font-size: clamp(24px, 3.6vw, 36px);
  font-weight: 800;
  line-height: 1.4;
}

.kv__desc h1 .en {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--kv-accent);
  font-size: clamp(28px, 4vw, 44px);
  padding-right: 5px;
}

.kv__desc p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray800);
}



@media screen and (max-width: 599px) {
  .kv {
    min-height: 0;
    background-position: right top;
    overflow: hidden;
  }

  .kv__inner {
    max-width: none;
    min-height: 0;
    flex-direction: column;
    /* 縦積み（テキスト → 画像の順） */
    padding: 30px 16px;
    gap: 20px;
    /* カードと画像の間隔 */
  }

  .kv__desc {
    width: 96%;
    margin-inline: 0;
    border-radius: 12px;
    padding: clamp(1rem, 5vw, 1.5rem);
    padding-top: 40px;
    margin-top: 10px;
    margin-right: 20px;
    overflow: hidden;
  }

  .kv__img {
    position: relative;
    right: -10%;
    top: auto;
    translate: none;
    width: 90%;
    z-index: auto;
  }

  .kv__desc h1 {
    font-size: 28px;
  }

  .kv__desc::before {
    content: none;
  }

  .kv__desc::after {
    content: none;
  }

  .kv__inner::before {
    z-index: 100000;
    content: "";
    position: absolute;
    right: -7%;
    top: -2%;
    /* transform: translateY(-50%); */
    width: 130px;
    height: 139px;
    background-image: url(../img/bg_01_sp.png) !important;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    left: auto;
    transform: scale(0.6);
  }

  .kv__inner::after {
    z-index: 100000;
    content: "";
    position: absolute;
    left: -13%;
    bottom: 27%;
    transform: translateY(-50%);
    width: 200px;
    height: 139px;
    background-image: url(../img/bg_02_sp.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    right: auto;
    transform: scale(0.6);
  }

}


/* case
------------------------------------------------*/
.case {
  padding-bottom: 100px;
}

.case h2 {
  font-size: 2rem;
  color: var(--orange);
  margin-bottom: 30px;
  font-weight: 500;
}

.case p {
  margin-bottom: 30px;
}

.case__list {
  display: flex;
  justify-content: center;
  gap: 2.9%;
  margin-bottom: 30px;
}

.case__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 30.6%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  transition: ease all .3s;
}

.case__item>div {
  padding: 20px 20px 30px 20px;
}

.case__item small {
  padding: 15px;
  display: block;
}

.case__btn {
  border: 1px solid var(--orange-accent);
  border-radius: 100vh;
  padding: 5px;
  color: var(--orange-accent);
  transition: ease all .3s;
}

.case__item:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}

.case__item:hover .case__btn {
  color: white;
  background: var(--orange-accent);
}

.case__img {
  width: 100%;
}

@media screen and (max-width: 599px) {
  .case {
    padding-top: 30px;
    padding-bottom: 100px;
  }

  .case__list {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-direction: column;
  }

  .case__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: ease all .3s;
  }

  .case__item>div {
    padding: 20px;
  }

  .case__item small {
    padding: 15px;
    display: block;
  }

  .case__btn {
    border: 1px solid var(--orange-accent);
    border-radius: 100vh;
    padding: 5px;
    color: var(--orange-accent);
    transition: ease all .3s;
  }

  .case__item:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
  }

  .case__item:hover .case__btn {
    color: white;
    background: var(--orange-accent);
  }

  .case__img {
    width: 100%;
  }
}

/* issue
------------------------------------------------*/
.issue {
  background: linear-gradient(180deg, #FFB339 0%, #FF9D00 100%);
  border-radius: 40px;
  padding-top: 80px;
  position: relative;
}

.issue__baloon {
  font-size: 2.4rem;
  width: 90%;
  max-width: 500px;
  padding: 10px;
  color: white;
  background: var(--orange-strong);
  font-weight: 500;
  position: absolute;
  border-radius: 100vh;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.issue__baloon::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid var(--orange-strong);
  ;
}

.line01 {
  position: absolute;
  width: 3px;
  height: 50px;
  background: white;
  content: '';
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.issue__content {
  background: url(../img/img02b.png) center 0 no-repeat;
  background-size: 500px;
  padding-top: 250px;
  padding-bottom: 100px;
  position: relative;
}

.issue__headline {
  position: absolute;
  top: 170px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.4rem;
  font-weight: 600;
  color: #482D00;
}

.issue__list {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: stretch;
  /* これ重要 */
}

.issue__item {
  min-width: 0;
  flex: 1;
  max-width: 460px;

  display: flex;
  flex-direction: column;
  /* 縦並びにする */
}

.issue01 {
  background: rgba(157, 97, 0, .9);
  border-radius: 20px;
  padding: 20px;
  color: white;
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.issue01:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid rgba(157, 97, 0, .9);
}

.issue02 {
  background: #482D00;
  border-radius: 20px;
  padding: 40px 20px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  /* これで高さを揃える */
}

.issue__title01 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.issue__title02 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
}


@media screen and (max-width: 1024px) {
  .issue__list {
    gap: 20px;
  }
}

@media screen and (max-width: 599px) {
  .issue {
    background: linear-gradient(180deg, #FFB339 0%, #FF9D00 100%);
    border-radius: 30px;
    padding-top: 80px;
    position: relative;
  }

  .issue__baloon {
    font-size: 1.8rem;
  }

  .line01 {
    position: absolute;
    width: 3px;
    height: 50px;
    background: white;
    content: '';
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .issue__content {
    background: url(../img/img02b.png) center 0 no-repeat;
    background-size: 300px;
    padding-top: 200px;
    padding-bottom: 100px;
    position: relative;
  }

  .issue__headline {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
  }

  .issue__list {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-direction: column;
    align-items: stretch;
    /* これ重要 */
  }

  .issue__item {
    min-width: 0;
    flex: 1;
    max-width: 460px;

    display: flex;
    flex-direction: column;
    /* 縦並びにする */
  }

  .issue01 {
    background: rgba(157, 97, 0, .9);
    border-radius: 20px;
    padding: 20px;
    color: white;
    position: relative;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .issue01:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-top: 15px solid rgba(157, 97, 0, .9);
  }

  .issue02 {
    background: #482D00;
    border-radius: 20px;
    padding: 40px 20px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    /* これで高さを揃える */
  }

  .issue__title01 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
  }

  .issue__title02 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
  }
}


/* solution
------------------------------------------------*/
.solution {
  background: white;
  padding: 80px 20px 60px;
  border-top-left-radius: 100% 250px;
  border-top-right-radius: 100% 250px;
  text-align: center;
  position: relative;
}

.line02 {
  position: absolute;
  width: 3px;
  height: 50px;
  background: var(--orange-accent);
  content: '';
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.solution h3 {
  font-size: 2.4rem;
  color: var(--orange-accent);
  margin-bottom: 30px;
  font-weight: 600;
}

.solution h4 {
  font-size: 3rem;
  margin-bottom: 30px;
}

.solution img {
  display: block;
  object-fit: contain;
  width: 70vw;
  max-width: 620px;
  margin: 0 auto;
  margin-bottom: 30px;
}

@media screen and (max-width: 599px) {
  .solution {
    background: white;
    padding: 80px 0 60px;
    border-top-left-radius: 120% 70px;
    border-top-right-radius: 120% 70px;
    text-align: center;
    position: relative;
  }

  .line02 {
    position: absolute;
    width: 3px;
    height: 50px;
    background: var(--orange-accent);
    content: '';
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .solution h3 {
    font-size: 2rem;
    color: var(--orange-accent);
    margin-bottom: 30px;
    font-weight: 600;
  }

  .solution h4 {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }

  .solution img {
    display: block;
    object-fit: contain;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 30px;
  }
}

/* function
------------------------------------------------*/
.function {
  border-radius: 40px 40px 0 0;
  background: var(--orange-subtle);
  padding: 80px 0;
}

.function h2 {
  font-size: 3rem;
  margin-bottom: 30px;
  font-weight: 600;
}

.function__section {
  padding: 30px 0 0;

}

.function__section h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 30px;
  background: #FF9D00;
  border-radius: 30px;
  color: white;
  max-width: 180px;
  margin: 0 auto 20px;
  font-size: 1.6rem;
}

.function__list {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.function__list div {
  background: white;
  font-size: 1.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  flex: 1;
  border-radius: 5px;
}

@media screen and (max-width: 599px) {
  .function {
    border-radius: 30px 30px 0 0;
    background: var(--orange-subtle);
    padding: 40px 0;
  }

  .function h2 {
    font-size: 2rem;
  }

  .function h3 {
    font-size: 1.6rem;
  }

  .function__list {
    gap: 5px;
  }

  .function__list div {
    font-size: 1.2rem;
    padding: 10px;
  }
}



/* ec
------------------------------------------------*/
.ec {
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 25%, rgba(255, 245, 238, 1) 25%, rgba(255, 238, 226, 1) 100%);
  margin-bottom: 70px;
}

.ec__inner {
  background: url('../img/ec_bg.png') no-repeat;
  background-size: cover;
  width: 90vw;
  margin: 0 auto;
  border-radius: 40px;
  text-align: center;
  padding: 40px 20px 40px;
}

.ec p {
  color: var(--gray900);
  margin-bottom: 30px;
  font-size: 1.8rem;
  font-weight: 500;
}

.ec p:last-child {
  color: white;
  font-size: 2rem;
  font-weight: 500;
}

.ec h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 30px;
  background: white;
  border-radius: 30px;
  color: var(--orange);
  max-width: 180px;
  margin: 0 auto 20px;
  font-size: 1.6rem;
}

.ec img {
  display: block;
  max-width: 520px;
  margin: 0 auto 30px;
  width: 100%;
}


@media screen and (max-width: 599px) {
  .ec {
    margin-bottom: 20px;
  }

  .ec__inner {
    width: 94vw;
    border-radius: 30px;
    padding: 40px 20px 40px;
  }

  .ec p {
    color: var(--gray900);
    margin-bottom: 30px;
    font-size: 1.8rem;
    font-weight: 500;
  }

  .ec p:last-child {
    color: white;
    font-size: 1.8rem;
    font-weight: 500;
  }

  .ec h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 30px;
    background: white;
    border-radius: 30px;
    color: var(--orange);
    max-width: 180px;
    margin: 0 auto 20px;
    font-size: 1.6rem;
  }

  .ec img {
    display: block;
    max-width: 520px;
    margin: 0 auto 30px;
    width: 100%;
  }
}


/* last
------------------------------------------------*/
.msg {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

.msg01 {
  font-size: 2.7rem;
  font-weight: 600;
  line-height: 1.8;
  text-align: left;
}

.msg01 img {
  width: 300px;
  height: auto;
}

.msg02 {
  background: var(--yellow);
  padding: 20px 30px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;

}

.msg02 i,
.msg02 span {
  color: var(--orange);
  padding-right: 5px;
}

@media screen and (max-width: 599px) {
  .msg {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
  }

  .msg01 {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.8;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .msg01 img {
    width: 200px;
    height: auto;
  }

  .msg02 {
    background: var(--yellow);
    padding: 20px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .msg02 i,
  .msg02 span {
    color: var(--orange);
    padding-right: 5px;
  }
}

/* cta
------------------------------------------------*/

.cta {
  background: var(--orange-subtle);
  padding: 60px 20px 60px;
  border-top-left-radius: 100% 250px;
  border-top-right-radius: 100% 250px;
  text-align: center;
}

.cta h2 {
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gray800);
  padding-bottom: 15px;
}

.cta>p {
  color: var(--orange-strong);
  padding-bottom: 30px;
  font-weight: 500;
}

.cta__btn {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.cta__btn>a {
  width: 310px;
  height: 100px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: ease all .3s;
}

.cta__btn__mail {
  background: var(--orange-strong);
  color: white;
  font-weight: 600;
  font-size: 2.4rem;
}

.cta__btn__mail:hover {
  background: var(--orange);
}

.cta__btn__tel {
  background: white;
  color: var(--orange-strong);
  font-size: 2.4rem;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  border: white 2px solid;
  cursor: default;
}

.cta__btn__tel small {
  font-size: 1.2rem;
  color: var(--gray700);
}

@media screen and (max-width: 599px) {
  .cta {
    background: var(--orange-subtle);
    padding: 60px 20px 60px;
    border-top-left-radius: 120% 70px;
    border-top-right-radius: 120% 70px;
    text-align: center;
  }

  .cta h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--gray800);
    padding-bottom: 15px;
  }

  .cta>p {
    color: var(--orange-strong);
    padding-bottom: 30px;
    font-weight: 500;
  }

  .cta__btn {
    display: flex;
    gap: 20px;
    flex-direction: column;
  }

  .cta__btn>a {
    width: 80vw;
    height: 70px;
    margin: 0 auto;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: ease all .3s;
  }

  .cta__btn__mail {
    background: var(--orange-strong);
    color: white;
    font-weight: 600;
    font-size: 1.8rem;
  }

  .cta__btn__mail:hover {
    background: var(--orange);
  }

  .cta__btn__tel {
    background: white;
    color: var(--orange-strong);
    font-size: 2.4rem;
    font-family: "Poppins", "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-style: normal;
    border: white 2px solid;
    cursor: default;
  }

  .cta__btn__tel small {
    font-size: 1.2rem;
    color: var(--gray700);
  }
}


/* footer
------------------------------------------------*/
.footer-sub {
  background: #121c23;
  padding: 30px 20px;
  display: flex;
  font-size: 1.2rem;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.7);
}

.footer-sub span {
  display: block;
}

.footer-sub ul.sub-nav {
  margin-left: 20px;
  display: flex;
}

.footer-sub ul.sub-nav li {
  margin-right: 20px;
}

.footer-sub ul.sub-nav a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-sub ul.sub-nav a:hover {
  color: white;
}

.footer-logo {
  width: 100px;
  color: #fff;
}

@media screen and (max-width: 599px) {
  .footer-sub {
    flex-direction: column;
    color: rgba(255, 255, 255, 0.7);
  }

  .footer-sub span {
    display: block;
    text-align: center;
    padding-top: 15px;
  }

  .footer-sub ul.sub-nav {
    flex-direction: column;
    margin-top: 20px;
    margin-left: 0;
  }

  .footer-sub ul.sub-nav li {
    margin-right: 0;
    margin-bottom: 10px;
    border-bottom: 1px dotted #b4b4b4;
    padding: 10px 5px;
  }

  .footer-sub .row {
    flex-direction: column;
  }
}

.dl-bnr-wrapper {
  position: fixed;
  right: 1%;
  bottom: 3%;
  z-index: 100;
}

.dl-bnr-close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #333;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}


.dl-bnr-wrapper.is-hidden {
  display: none;
}

@media screen and (max-width: 599px) {
  .dl-bnr-wrapper {
    text-align: right;
  }

  /* .dl-bnr img {
    transform: scale(0.5);
    transform-origin: top right;
  } */

  .dl-bnr-close {
    right: -3px;
  }
}

.dl-bnr-wrapper {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 100;
  width: 265px;
  /* PC画像の実寸に合わせる */
}

.sample-dl {
  bottom: 314px;
}

.dl-bnr-wrapper.is-hidden {
  display: none;
}

.dl-bnr {
  display: block;
}

.dl-bnr img {
  width: 100%;
  height: auto;
  display: block;
}

/* 画像内の✕の上に透明ボタンを重ねる */
.dl-bnr-close {
  position: absolute;
  top: 6%;
  right: 3%;
  width: 24px;
  height: 21px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 0;
  z-index: 1;
  box-shadow: none;
}

@media (max-width: 768px) {
  .dl-bnr-wrapper {
    right: 0;
    bottom: 0;
    width: 100%;
  }

  /* SP画像は✕の位置が異なるので調整 */
  .dl-bnr-close {
    top: 26%;
    right: 1px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
  }
}

.dl {
  margin-left: auto;
  margin-bottom: 15px;
  display: flex;
  background: #FFF134;
  color: black !important;
  padding: 10px 4px;
  height: 40px;
  transition: ease all .3s;
  margin-right: 20px;

  a {
    color: black !important;
  }
}

.cta__btn__dl {
  background: #FFF134;
  font-weight: 600;
  font-size: 2.4rem;
}


@media screen and (max-width: 599px) {
  .cta__btn__dl {
    color: black !important;
    font-weight: 600;
    font-size: 1.8rem !important;
  }
}