@charset "UTF-8";
/*----------------------------------------------------------------------------

 fonts

----------------------------------------------------------------------------*/
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 400;
  src: url('../../../../asset/fonts/NotoSansJP-Regular.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 500;
  src: url('../../../../asset/fonts/NotoSansJP-Medium.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 600;
  src: url('../../../../asset/fonts/NotoSansJP-SemiBold.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 700;
  src: url('../../../../asset/fonts/NotoSansJP-Bold.woff2') format('woff2');
  font-display: swap;
}
/*----------------------------------------------------------------------------

 reset

----------------------------------------------------------------------------*/
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}
address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
}
ul, ol {
  list-style-type: none;
}
em, strong, th, address {
  font-style: normal;
  font-weight: normal;
  text-align: left;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  font-size: 100%;
}
img,
object,
embed {
  border: 0;
  vertical-align: top;
}
img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
hr {
  display: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 100%;
}
li {
  list-style-type: none;
}
strong {
  font-weight: 700;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*----------------------------------------------------------------------------

 CSS Custom Properties 

----------------------------------------------------------------------------*/
:root {
  --primary-txt-color: #000;
  --sub1-color: #FFFAF1;
  --sub2-color: #654200;
  --sub3-color: #F9E1B5;
  --white-color: #FFFFFF;
  --red-color: #C90000;
  --base-width: 1440; 
  --responsive-point: 1400;
  --scrollbar-width: 15;
  --four_rulesLeadSec-height: 0;
  --downloadSec-height: 0;
}
@media screen and (max-width: 767px) {
  :root {
    --base-width: 375;
  }
}
/*----------------------------------------------------------------------------

 base

----------------------------------------------------------------------------*/
html {
  font-size: 62.5%;
}
body {
  position: relative;
  color: var(--primary-txt-color);
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1;
  font-size: 1.6rem;
  background: var(--primary-bg-color);
  -webkit-font-smoothing: antialiased;
}
.sp,
.sp_inline,
.sp_inline_block {
  display: none;
}
.pc {
  display: block;
}
.pc_inline_block {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
  .sp_inline {
    display: inline;
  }
  .sp_inline_block {
    display: inline-block;
  }
  .pc,
  .pc_inline,
  .pc_inline_block {
    display: none;
  }
}
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

/*----------------------------------------------------------------------------

 fadein

----------------------------------------------------------------------------*/
.fadein {
  opacity : 0;
  /* filter: blur(5px); */
  transition : opacity 1.0s cubic-bezier(0.33, 1, 0.68, 1), filter 1.0s cubic-bezier(0.33, 1, 0.68, 1);
}
.fadein.scrollin {
  opacity : 1;
  /* filter: blur(0); */
}
@keyframes fadein { /* animation: fadein 1.4s cubic-bezier(0.33, 1, 0.68, 1) both; */
  0% {
    opacity : 0;
    /* filter: blur(5px); */
  }
  100% {
    opacity : 1;
    /* filter: blur(0); */
	}
}
.fadein_y,
.fadein_y02,
.fadein_y_bounce {
  opacity : 0;
  transform : translate3d(0, 20px, 0);
  /* filter: blur(5px); */
  transition : transform 1.0s cubic-bezier(0.33, 1, 0.68, 1), opacity 1.0s cubic-bezier(0.33, 1, 0.68, 1), filter 1.0s cubic-bezier(0.33, 1, 0.68, 1);
}
.fadein_y02 {
  transform : translate3d(0, -20px, 0);
  transition-duration: 2s;
}
.fadein_y_bounce {
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
}
.fadein_y.scrollin,
.fadein_y02.scrollin,
.fadein_y_bounce.scrollin {
  opacity : 1;
  transform : translate3d(0, 0, 0);
  /* filter: blur(0); */
}
@keyframes fadein_y { /* animation: fadein_y 1.0s cubic-bezier(0.33, 1, 0.68, 1) both; */
  0% {
    opacity : 0;
    transform : translate3d(0, 20px, 0);
    /* filter: blur(5px); */
  }
  100% {
    opacity : 1;
    transform : translate3d(0, 0, 0);
    /* filter: blur(0); */
	}
}
@keyframes fadein_y02 { /* animation: fadein_y02 1.0s cubic-bezier(0.33, 1, 0.68, 1) both; */
  0% {
    opacity : 0;
    transform : translate3d(0, -20px, 0);
    /* filter: blur(5px); */
  }
  100% {
    opacity : 1;
    transform : translate3d(0, 0, 0);
    /* filter: blur(0); */
	}
}
.fadein_x,
.fadein_x02 {
  opacity : 0;
  transform : translate3d(-30px, 0, 0);
  /* filter: blur(5px); */
  transition : transform 1.0s cubic-bezier(0.33, 1, 0.68, 1), opacity 1.0s cubic-bezier(0.33, 1, 0.68, 1), filter 1.0s cubic-bezier(0.33, 1, 0.68, 1);
}
.fadein_x02 {
  transform : translate3d(30px, 0, 0);
}
.fadein_x.scrollin,
.fadein_x02.scrollin {
  opacity : 1;
  transform : translate3d(0, 0, 0);
  /* filter: blur(0); */
}
@-moz-document url-prefix() {
  .fadein_x {
    transform : translate3d(-30px, 0, 0) rotate(0.0001deg);
  }
  .fadein_x02 {
    transform : translate3d(30px, 0, 0) rotate(0.0001deg);
  }
  .fadein_x.scrollin,
  .fadein_x02.scrollin {
    transform : translate3d(0, 0, 0) rotate(0.0001deg);
  }
}
.scale_down {
  opacity : 0;
  /* filter: blur(5px); */
  transform: scale(1.05);
  transition : opacity 1.0s cubic-bezier(0.33, 1, 0.68, 1), transform 1.0s cubic-bezier(0.33, 1, 0.68, 1), filter 1.0s cubic-bezier(0.33, 1, 0.68, 1);
}
.scale_down.scrollin {
  opacity : 1;
  transform: scale(1);
  /* filter: blur(0); */
}
.no_blur {
  filter: blur(0) !important;
}

/*-------------------------------------------------

gide line

--------------------------------------------------*/
body {
  position: relative;
}
body.debug::before {
  display: block;
  content: '';
  width: 1px;
  height: 100%;
  position: fixed;
  top: 0;
  left: 50%;
  background: magenta;
  pointer-events: none;
  z-index: 9999;
}

/*-------------------------------------------------

img hover anim

--------------------------------------------------*/
a img.hover {
  transition: opacity .1s ease-in-out;
  opacity: 1;
}
@media (hover: hover) and (pointer: fine) {
  a:hover img.hover {
    transition: opacity .1s ease-in-out .1s;
    opacity: 0.6;
  }
}

/*-------------------------------------------------

header

--------------------------------------------------*/
header {
  position: absolute;
  top: 0;
  left: 0;
  padding-top: clamp(20px, calc(30 / var(--base-width) * 100vw), 30px);
  padding-left: clamp(33px, calc(50 / var(--base-width) * 100vw), 50px);
  z-index: 2;
}
header .logo_main {
  width: clamp(46px, calc(70 / var(--base-width) * 100vw), 70px);
  height: clamp(46px, calc(70 / var(--base-width) * 100vw), 70px);
}
@media screen and (max-width: 767px) {
  header {
    padding: 20px 30px;
  }
  header .logo_main {
    width: 40px;
    height: 40px;
  }
}

/*-------------------------------------------------

main

--------------------------------------------------*/
.main {
  position: relative;
  overflow-x: clip;
  padding-top: clamp(85px, calc(130 / var(--base-width) * 100vw), 130px);
}
@media screen and (max-width: 767px) {
  .main {
    padding-top: 80px;
  }
}

/*-------------------------------------------------

 main_visual

--------------------------------------------------*/
#main_visual {
  position: relative;
  margin-bottom: min(calc(90 / var(--base-width) * 100vw), 90px);
}
#main_visual .outer {
	position: relative;
  padding-inline: var(--padding-inline-common);
}
#main_visual .inner {
	position: relative;
  display: flex;
  justify-content: space-between;
  width: min(var(--inner-width) / var(--base-width) * 100vw, var(--inner-width) * 1px);
  margin-inline: auto;
  /* css 変数 */
  --inner-width: 1250;
}
#main_visual .block_main {
  position: relative;
  padding-block: calc(45 / var(--base-font-size) * 1em) calc(70 / var(--base-font-size) * 1em);
  width: calc(885 / var(--inner-width) * 100%);
  font-size: clamp(12px, var(--base-font-size) / var(--responsive-point) * 100vw, var(--base-font-size) * 1px);
  z-index: 1;
  /* css 変数 */
  --base-font-size: 20;
} 
#main_visual .block_main::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200%;
  height: 100%;
  background: var(--sub3-color);
  border-radius: 0 9999px 9999px 0;
  z-index: -1;
}
#main_visual .block_main .txt_upper {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-bottom: 2em;
  margin-left: -0.25em;
}
#main_visual .block_main .txt_upper .ttl {
  padding: 1.1em;
  color: var(--white-color);
  font-size: calc(18 / var(--base-font-size) * 1em);
  font-weight: 600;
  letter-spacing: 0.1em;
  background: var(--sub2-color);
  border-radius: 9999px;
}
#main_visual .block_main .txt_upper .ttl .mark {
  display: inline-block;
  margin-left: 0.2em;
}
#main_visual .block_main .txt_upper .txt {
  color: var(--sub2-color);
  font-weight: 600;
  line-height: calc(28 / 20);
  letter-spacing: 0.1em;
}
#main_visual .block_main .ttl_main {
  margin-bottom: 0.35em;
  font-size: calc(50 / var(--base-font-size) * 1em);
  font-weight: 700;
  line-height: calc(70 / 50);
  letter-spacing: 0.05em;
}
#main_visual .block_main .ttl_main .min {
  font-size: calc(40 / 50 * 1em);
}
#main_visual .block_main .ttl_main .red {
  color: var(--red-color);
}
#main_visual .block_main .txt_middle {
  margin-bottom: 1.5em;
}
#main_visual .block_main .txt_middle .txt {
  display: inline-block;
  padding: 0.30em 0.85em;
  font-weight: 600;
  letter-spacing: 0.1em;
  background-color: var(--sub1-color);
  border-radius: 9999px;
}
#main_visual .block_main .txt_middle .txt .red {
  color: var(--red-color);
}
#main_visual .block_main .list_point {
  display: inline-block;
  margin-left: calc(60 / var(--base-font-size) * 1em);
  font-size: calc(16 / var(--base-font-size) * 1em);
  font-weight: 500;
  letter-spacing: 0.1em;
}
#main_visual .block_main .list_point li {
  display: flex;
  margin-bottom: 0.45em;
  padding-bottom: 0.35em;
  border-bottom: 1px dotted var(--sub1-color);
}
#main_visual .block_main .list_point li:last-of-type {
  margin-bottom: 0;
}
#main_visual .block_main .list_point li::before {
  content: '';
  background: url(../img/icon_list_check.svg) no-repeat;
  background-size: contain;
  width: 1em;
  height: 1em;
  margin-top: 0.2em;
  margin-right: 0.5em;
}
#main_visual .block_sub {
  position: relative;
  width: calc(328 / var(--inner-width) * 100%);
  font-size: clamp(12px, var(--base-font-size) / var(--responsive-point) * 100vw, var(--base-font-size) * 1px);
  /* css 変数 */
  --base-font-size: 20;
}
#main_visual .block_sub::before {
  content: '';
  position: absolute;
  top: -130px;
  top: clamp(-130px, calc(130 / var(--base-width) * -100vw), -85px);
  left: max(740 / var(--base-width) * -100vw, -740px);
  width: calc(1188 / var(--base-width) * 100vw);
  height: 100%;
  max-height: 600px;
  background: var(--sub1-color);
  border-radius: 9999px 0 0 9999px;
  z-index: -1;
}
#main_visual .block_sub .img {
  margin-bottom: 1.5em;
}
#main_visual .block_sub .button .txt {
  margin-bottom: 0.75em;
  color: var(--sub2-color);
  font-size: calc(16 / var(--base-font-size) * 1em);
  font-weight: 500;
  text-align: center;
}
#main_visual .block_sub .button a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: calc(13 / var(--base-font-size) * 1em);
  height: 4em;
  width: 100%;
  color: var(--white-color);
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.05em;
  background-color: var(--red-color);
  border-radius: 9999px;
  transition: background-color 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  #main_visual .block_sub .button a:hover {
    background-color: #d90000;
  }
}
#main_visual .block_sub .button a .pdf {
  width: calc(25 / var(--base-font-size) * 1em);
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}
#main_visual .block_sub .button a .arrow {
  width: calc(14 / var(--base-font-size) * 1em);
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}
@media screen and (max-width: 991px) {
  #main_visual .inner {
    width: 100%;
    padding-inline: 4%;
  }
}
@media screen and (max-width: 767px) {
  #main_visual {
    margin-bottom: 150px;
  }
  #main_visual .outer {
    padding-inline: 0;
  }
  #main_visual .inner {
    flex-direction: column;
    padding-inline: 0;
  }
  #main_visual .block_main {
    padding-block: 0 40px;
    width: 100%;
    font-size: calc(var(--base-font-size) * 1px);
    --base-font-size: 14;
  }
  #main_visual .block_main::before {
    top: 90px;
    right: auto;
    left: 0;
    width: 100%;
    height: calc(100% - 90px + 200px);
    border-radius: 0 150px 0 0;
    z-index: -2;
  }
  #main_visual .block_main::after {
    content: '';
    position: absolute;
    top: calc(100% + 200px);
    left: 0;
    width: 100%;
    height: 364px;
    border-radius: 9999px 0 0 9999px;
    background-color: var(--sub1-color);
    z-index: -1;
    transform: translateY(-50%);
  }
  #main_visual .block_main .txt_upper {
    justify-content: center;
    margin-bottom: 70px;
    margin-left: 0;
  }
  #main_visual .block_main .txt_upper .ttl {
    padding: 1.0em 1.3em;
    color: var(--white-color);
    font-size: 1em;
    line-height: 1.4;
    text-align: center;
  }
  #main_visual .block_main .txt_upper .txt {
    line-height: calc(22 / 14);
  }
  #main_visual .block_main .ttl_main {
    display: table;
    margin-inline: auto;
    margin-bottom: 30px;
    font-size: calc(28 / var(--base-font-size) * 1em);
    line-height: calc(41 / 28);
  }
  #main_visual .block_main .ttl_main .min {
    font-size: calc(24 / 28 * 1em);
  }
  #main_visual .block_main .txt_middle {
    margin-bottom: 30px;
  }
  #main_visual .block_main .txt_middle .txt {
    display: table;
    margin-inline: auto;
    padding: 0.60em 1.8em;
    font-size: calc(15 / var(--base-font-size) * 1em);
    line-height: calc(25 / 15);
    text-align: center;
  }
  #main_visual .block_main .list_point {
    display: table;
    margin-inline: auto;
    font-size: calc(15 / var(--base-font-size) * 1em);
    letter-spacing: 0;
    line-height: calc(32 / 15);
  }
  #main_visual .block_main .list_point li {
    margin-bottom: 0.15em;
    padding-bottom: 0.05em;
    border-bottom: 1px dotted var(--sub1-color);
  }
  #main_visual .block_main .list_point li:last-of-type {
    position: relative;
  }
  #main_visual .block_main .list_point li:last-of-type::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    border-bottom: 1px dotted var(--sub1-color);
  }
  #main_visual .block_main .list_point li::before {
    margin-top: 0.6em;
  }
  #main_visual .block_sub {
    width: 246px;
    margin: auto;
    font-size: calc(var(--base-font-size) * 1px);
    --base-font-size: 15;
    z-index: 1;
  }
  #main_visual .block_sub::before {
    display: none;
  }
  #main_visual .block_sub .img {
    margin-bottom: 20px;
  }
  #main_visual .block_sub .button .txt {
    margin-bottom: 15px;
  }
  #main_visual .block_sub .button a {
    gap: 8px;
    letter-spacing: 0.05em;
  }
  #main_visual .block_sub .button a .pdf {
    width: 20px;
  }
  #main_visual .block_sub .button a .arrow {
    width: 12px;
  }
}
@media screen and (min-width: 601px) and (max-width: 767px) {
  #main_visual .block_main .txt_upper .txt br.ctl {
    display: none !important;
  }
}
@media screen and (min-width: 480px) and (max-width: 767px) {
  #main_visual .block_main .ttl_main br.ctl,
  #main_visual .block_main .list_point li br.ctl {
    display: none !important;
  }
  #main_visual .block_main .list_point li:last-of-type::after {
    display: none;
  }
}

/*-------------------------------------------------

introduction

--------------------------------------------------*/
#introduction {
  position: relative;
  margin-bottom: min(calc(110 / var(--base-width) * 100vw), 110px);
}
#introduction .inner {
  width: min(var(--inner-width) / var(--base-width) * 100vw, var(--inner-width) * 1px);
  margin-inline: auto;
  font-size: clamp(12px, var(--base-font-size) / var(--responsive-point) * 100vw, var(--base-font-size) * 1px);
  /* css 変数 */
  --base-font-size: 20;
  --inner-width: 950;
}
#introduction .ttl_main {
  margin-bottom: 1.5em;
  color: var(--sub2-color);
  font-size: calc(40 / var(--base-font-size) * 1em);
  font-weight: 600;
  line-height: calc(60 / 40);
  letter-spacing: 0.1em;
  text-align: center;
}
#introduction .block_main {
  position: relative;
  margin-bottom: calc(60 / var(--base-font-size) * 1em);
  padding-block: calc(60 / var(--base-font-size) * 1em);
  background-color: var(--sub1-color);
  border: 1px solid var(--sub2-color);
  border-radius: 50px;
}
#introduction .block_main .list_point {
  display: table;
  margin-inline: auto;
}
#introduction .block_main .list_point li {
  display: flex;
  margin-bottom: 1.25em;
  padding-bottom: 1.05em;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-bottom: 1px dotted var(--sub2-color);
}
#introduction .block_main .list_point li:last-of-type {
  margin-bottom: 0;
}
#introduction .block_main .list_point li::before {
  content: '';
  background: url(../img/icon_list_check.svg) no-repeat;
  background-size: contain;
  width: 1em;
  height: 1em;
  margin-top: 0.1em;
  margin-right: 0.5em;
}
#introduction .block_lower {
  color: var(--sub2-color);
  font-size: calc(30 / var(--base-font-size) * 1em);
  font-weight: 600;
  line-height: calc(50 / 30);
  letter-spacing: 0.1em;
  text-align: center;
}
#introduction .block_lower .red {
  color: var(--red-color);
  font-weight: 700;
}
@media screen and (max-width: 991px) {
  #introduction .inner {
    --inner-width: 1050;
  }
}
@media screen and (max-width: 767px) {
  #introduction {
    margin-bottom: 70px;
  }
  #introduction .inner {
    width: 100%;
    margin-inline: auto;
    font-size: calc(var(--base-font-size) * 1px);
    /* css 変数 */
    --base-font-size: 15;
  }
  #introduction .ttl_main {
    margin-bottom: 40px;
    font-size: calc(23 / var(--base-font-size) * 1em);
    line-height: calc(35 / 23);
    letter-spacing: 0.05em;
  }
  #introduction .block_main {
    width: 330px;
    margin-bottom: 40px;
    margin-inline: auto;
    padding-block: calc(30 / var(--base-font-size) * 1em);
    padding-inline: calc(20 / var(--base-font-size) * 1em);
    border-radius: 30px;
  }
  #introduction .block_main .list_point {
    display: block;
  }
  #introduction .block_main .list_point li {
    display: flex;
    margin-bottom: 0.95em;
    padding-bottom: 0.75em;
    line-height: calc(24 / 15);
  }
  #introduction .block_main .list_point li:last-of-type {
    margin-bottom: 0;
  }
  #introduction .block_main .list_point li::before {
    content: '';
    background: url(../img/icon_list_check.svg) no-repeat;
    background-size: contain;
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    margin-top: 0.4em;
  }
  #introduction .block_lower {
    font-size: calc(18 / var(--base-font-size) * 1em);
    line-height: calc(30 / 18);
    letter-spacing: 0.05em;
  }
}
@media screen and (min-width: 480px) and (max-width: 767px) {
  #introduction .block_main {
    width: 60vw;
    min-width: 330px;
  }
  #introduction .block_lower p br.ctl {
    display: none !important;
  }
}

/*-------------------------------------------------

four_rules

--------------------------------------------------*/
#four_rules {
  position: relative;
  margin-bottom: min(140 / var(--base-width) * 100vw, 140px);
}
#four_rules .inner {
  width: min(var(--inner-width) / var(--base-width) * 100vw, var(--inner-width) * 1px);
  margin-inline: auto;
  font-size: clamp(12px, var(--base-font-size) / var(--responsive-point) * 100vw, var(--base-font-size) * 1px);
  /* css 変数 */
  --base-font-size: 20;
  --inner-width: 830;
}
#four_rules .block_lead {
  position: relative;
  padding-top: min(100 / var(--base-width) * 100vw, 100px);
  padding-bottom: min(125 / var(--base-width) * 100vw, 125px);
  z-index: 2;
}
#four_rules .block_lead::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: calc(1375 / 1440 * 100vw);
  height: 100%;
  background: var(--sub1-color);
  border-radius: 9999px 0 0 9999px;
  z-index: -1;
}
#four_rules .ttl_main {
  margin-bottom: 2em;
  color: var(--sub2-color);
  font-size: calc(35 / var(--base-font-size) * 1em);
  font-weight: 500;
  line-height: calc(60 / 40);
  letter-spacing: 0.1em;
  text-align: center;
  white-space: nowrap;
}
#four_rules .ttl_main .max {
  font-size: calc(50 / 35 * 1em);
  font-weight: 700;
}
#four_rules .ttl_main .red {
  color: var(--red-color);
}
#four_rules .block_lead_inner .txt {
  margin-bottom: 2em;
  line-height: 2;
  letter-spacing: 0.05em;
}
#four_rules .block_lead_inner .txt:last-of-type {
  margin-bottom: 0;
}
#four_rules .block_main {
  position: relative;
  padding-top: min(100 / var(--base-width) * 100vw, 100px);
  z-index: 1;
}
#four_rules .block_main::before {
  content: '';
  position: absolute;
  top: calc(var(--four_rulesLeadSec-height) / 2 * -1px);
  left: 0;
  width: calc(1375 / 1440 * 100vw);
  height: calc(100% + (var(--four_rulesLeadSec-height) / 2 * 1px));
  height: 110%;
  background: var(--sub1-color);
  border-radius:0 9999px 9999px 0;
  z-index: -1;
}
#four_rules .block_main .ttl_main {
  width: 100%;
  margin-bottom: 1.5em;
  padding: 0.5em 1em;
  color: var(--white-color);
  font-size: calc(24 / var(--base-font-size) * 1em);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  background-color: var(--sub2-color);
  border-radius: 9999px;
}
#four_rules .block_main .list_point {
  margin-bottom: min(calc(20 / var(--base-width) * 100vw), 20px);
}
#four_rules .block_main .list_point li {
  margin-bottom: 1.45em;
  padding-bottom: 1em;
  border-bottom: 1px solid var(--sub2-color);
}
#four_rules .block_main .list_point li .num {
  display: inline-flex;
  align-items: center;
  padding-block: 0.35em;
  padding-inline: 0.85em;
  color: var(--sub2-color);
  font-size: calc(16 / var(--base-font-size) * 1em);
  font-weight: 500;
  background-color: var(--white-color);
  border-radius: 9999px;
  border: 1px solid var(--sub2-color);
} 
#four_rules .block_main .list_point li .num .max {
  display: inline-block;
  margin-left: 0.25em;
  font-size: calc(24 / 16 * 1em);
  font-weight: 700;
  transform: translateY(-0.05em);
} 
#four_rules .block_main .list_point li .list_ttl {
  display: inline-block;
  margin-left: 0.65em;
  font-size: calc(24 / 16 * 1em);
  color: var(--red-color);
  font-size: calc(30 / var(--base-font-size) * 1em);
  font-weight: 700;
  letter-spacing: 0.1em;
  transform: translateY(0.125em);
}
#four_rules .block_main .list_point li .txt {
  margin-left: 1em;
  margin-top: 0.75em;
  font-weight: 500;
  letter-spacing: 0.05em;
}
#four_rules .block_txt {
  margin-bottom: min(calc(70 / var(--base-width) * 100vw), 70px);
  font-size: calc(16 / var(--base-font-size) * 1em);
  line-height: calc(30 / 16);
  letter-spacing: 0.05em;
}
#four_rules .block_img {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: calc(680 / 830 * 100%);
  margin-inline: auto;
}
#four_rules .block_img::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(20 / var(--base-font-size) * 1em);
  aspect-ratio: 1 / 1;
  background: #000;
  transform: translate(-35%, -50%);
  clip-path: polygon(0 0, 0% 100%, 80% 50%);
}
#four_rules .block_img > div {
  width: calc(287 / 680 * 100%);
}
#four_rules .block_img > div .ttl {
  display: block;
  width: 5.6em;
  margin-bottom: 0.75em;
  margin-inline: auto;
  padding: 0.20em 0;
  color: var(--white-color);
  font-size: calc(18 / var(--base-font-size) * 1em);
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.1em;
  background-color: #000;
  border-radius: 9999px;
}
#four_rules .block_img > div.after_block .ttl {
  background-color: var(--red-color);
}
@media screen and (max-width: 991px) {
  #four_rules .inner {
    --inner-width: 930;
  }
}
@media screen and (max-width: 767px) {
  #four_rules {
    position: relative;
    margin-bottom: 70px;
  }
  #four_rules .inner {
    width: 320px;
    font-size: calc(var(--base-font-size) * 1px);
    /* css 変数 */
    --base-font-size: 15;
  }
  #four_rules .block_lead {
    padding-top: 60px;
    padding-bottom: 50px;
    z-index: 1;
  }
  #four_rules .block_lead::before {
    width: 100%;
    height: 150%;
    background: var(--sub3-color);
    border-radius: 150px 0 0 0;
  }
  #four_rules .ttl_main {
    margin-bottom: 50px;
    font-size: calc(20 / var(--base-font-size) * 1em);
    line-height: calc(40 / 25);
    letter-spacing: 0.05em;
  }
  #four_rules .ttl_main .max {
    font-size: calc(30 / 20 * 1em);
  }
  #four_rules .block_lead_inner .txt {
    margin-bottom: 1.5em;
    line-height: calc(28 / 15);
  }
  #four_rules .block_main {
    width: 100%;
    margin-inline: auto;
    padding-top: 60px;
  }
  #four_rules .block_main::before {
    top: 0;
    left: 0;
    width: 100%;
    height: 95%;
    border-radius: 0 100px 100px 0;
  }
  #four_rules .block_main .ttl_main {
    width: 300px;
    margin-inline: auto;
    margin-bottom: 30px;
    padding: 0.3em 1em;
    font-size: calc(20 / var(--base-font-size) * 1em);
  }
  #four_rules .block_main .list_point {
    width: 290px;
    margin-inline: auto;
    margin-bottom: 40px;
  }
  #four_rules .block_main .list_point li {
    margin-bottom: 1.45em;
    padding-bottom: 1em;
  }
  #four_rules .block_main .list_point li .num {
    padding-block: 0.35em;
    padding-inline: 0.85em;
    font-size: calc(13 / var(--base-font-size) * 1em);
  } 
  #four_rules .block_main .list_point li .num .max {
    margin-left: 0.25em;
    font-size: calc(15 / 13 * 1em);
    transform: translateY(-0.05em);
  } 
  #four_rules .block_main .list_point li .list_ttl {
    margin-left: 0.65em;
    font-size: calc(20 / var(--base-font-size) * 1em);
    transform: translateY(0.125em);
  }
  #four_rules .block_main .list_point li .txt {
    margin-left: 1em;
    margin-top: 0.75em;
    font-size: calc(14 / var(--base-font-size) * 1em);
    line-height: calc(22 / 14);
  }
  #four_rules .block_txt {
    width: 290px;
    margin-inline: auto;
    margin-bottom: 60px;
    font-size: 1em;
    line-height: calc(28 / 15);
  }
  #four_rules .block_img {
    width: 310px;
    margin-inline: auto;
  }
  #four_rules .block_img::before {
    width: calc(14 / var(--base-font-size) * 1em);
    transform: translate(-35%, -50%);
  }
  #four_rules .block_img > div {
    width: calc(140 / 320 * 100%);
  }
  #four_rules .block_img > div .ttl {
    margin-bottom: 0.75em;
    padding: 0.25em 0;
    font-size: calc(13 / var(--base-font-size) * 1em);
  }
  #four_rules .block_img > div.after_block .ttl {
    background-color: var(--red-color);
  }
}
@media screen and (min-width: 480px) and (max-width: 767px) {
  #four_rules .inner {
    width: 60vw;
    min-width: 320px;
  }
  #four_rules .block_main .ttl_main {
    width: 60vw;
    min-width: 300px;
  }
  #four_rules .block_main .list_point,
  #four_rules .block_txt {
    width: 58vw;
    min-width: 290px;
  }
  #introduction .block_lower p br.ctl {
    display: none !important;
  }
  #four_rules .block_img {
    width: 50vw;
    min-width: 310px;
  }
}

/*-------------------------------------------------

download

--------------------------------------------------*/
#download {
  position: relative;
}
#download .outer {
  background-color: var(--sub3-color);
  border-radius: 9999px;
  /* css 変数 */
}
#download .inner {
  width: min(var(--inner-width) / var(--base-width) * 100vw, var(--inner-width) * 1px);
  margin-inline: auto;
  padding-block: min(70 / var(--inner-width) * 100vw, 70px) min(120 / var(--inner-width) * 100vw, 120px);
  font-size: clamp(14px, var(--base-font-size) / var(--responsive-point) * 100vw, var(--base-font-size) * 1px);
  /* css 変数 */
  --base-font-size: 20;
  --inner-width: 950;
}
#download .ttl_main {
  margin-bottom: 1em;
  color: var(--sub2-color);
  font-size: calc(40 / var(--base-font-size) * 1em);
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.1em;
}
#download .panel {
  text-align: center;
}
#download .status_list {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 3em;
  margin-bottom: 3em;
  font-size: calc(16 / var(--base-font-size) * 1em);
  font-weight: 500;
}
#download .status_list::before {
  content: '';
  position: absolute;
  top: 50%;
  left: calc(75 / 16 * 1em);
  width: calc(11 / 16 * 1em);
  aspect-ratio: 1 / 1;
  background: var(--white-color);
  transform: translate(0, -50%);
  clip-path: polygon(0 0, 0% 100%, 80% 50%);
}
#download .status_list li {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25em;
  color: var(--red-color);
}
#download .panel2 {
	display: none;
}
#download .panel1 .status_list li:last-of-type {
  color: var(--sub2-color);
}
#download .panel2 .status_list li:first-of-type {
  color: var(--sub2-color);
}
#download .status_list li .num {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(20 / 16 * 1em);
  aspect-ratio: 1 / 1;
  color: var(--white-color);
  font-weight: 600;
  background-color: var(--red-color);
  border-radius: 9999px;
}
#download .panel1 .status_list li:last-of-type .num {
  background-color: var(--sub2-color);
}
#download .panel2 .status_list li:first-of-type .num {
  background-color: var(--sub2-color);
}
#download .block_form_inner {
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: left;
}
#download .button {
  width: calc(328 / 950 * 100%);
}
#download .button button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(13 / var(--base-font-size) * 1em);
  height: 4em;
  width: 100%;
  color: var(--white-color);
  font-size: calc(20 / var(--base-font-size) * 1em);
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.05em;
  background-color: var(--red-color);
  border-radius: 9999px;
  transition: background-color 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  #download .button button:hover {
    background-color: #d90000;
  }
}
#download .button button .pdf {
  width: calc(25 / var(--base-font-size) * 1em);
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}
#download .button button .arrow {
  width: calc(14 / var(--base-font-size) * 1em);
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
  rotate: -90deg;
}
#download #btn_send.dd {
  opacity: .5;
  pointer-events: none;
  position: relative;
}
#download #btn_send.dd::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 48px;
  height: 48px;
  background: url(../img/icon_loading.png) center no-repeat;
  background-size: contain;
  filter: brightness(100);
}
#download form:has(input:invalid) #btn_send,
#download form:has(input:placeholder-shown) #btn_send {
  background-color: #999;
  pointer-events: none;
}
#download .input {
  position: relative;
  width: calc(550 / 950 * 100%);
}
#download .name {
  position: absolute;
  top: -1.5em;
  left: 0;
  color: var(--sub2-color);
  font-size: calc(16 / var(--base-font-size) * 1em);
  font-weight: 500;
}
#download .input input {
  width: 100%;
  padding: 1em;
  font-size: calc(20 / var(--base-font-size) * 1em);
  border: none;
  border-radius: 10px;
  background: var(--white-color);
}
#download .input input.mailarea:user-invalid {
  border: 1px solid var(--red-color);
}
#download .input input.mailarea:user-invalid ~ .errorbox::before {
  content: "メールアドレスを正しく入力してください。";
}
#download .input .errorbox {
  margin-top: .5em;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--red-color);
  content: "";
}
#download .txts {
  width: 100%;
}
#download .txts .txt {
  position: relative;
  display: flex;
  margin-top: 0.75em;
  font-size: calc(14 / var(--base-font-size) * 1em);
  letter-spacing: 0.05em;
  text-align: left;
}
#download .txts .txt a {
  color: #000;
}
#download .txts .txt::before {
  content: '※';
}
#download .panel2 .txt {
  position: relative;
  margin-bottom: 2em;
  color: var(--sub2-color);
  font-size: calc(20 / var(--base-font-size) * 1em);
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
}
#download .panel2 .button {
  display: table;
  margin-inline: auto;
}
#download .panel2 .button button .download {
  width: calc(25 / var(--base-font-size) * 1em);
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}
@media screen and (max-width: 991px) {
  #download .inner {
    --inner-width: 1050;
  }
  #download .button {
    width: calc(360 / 950 * 100%);
  }
}
@media screen and (max-width: 767px) {
  #download .outer {
    border-radius: 100px;
  }
  #download .inner {
    width: 100%;
    padding-block: 60px 90px;
    font-size: calc(var(--base-font-size) * 1px);
    /* css 変数 */
    --base-font-size: 12;
  }
  #download .ttl_main {
    margin-bottom: 30px;
    font-size: calc(23 / var(--base-font-size) * 1em);
    line-height: 1.6;
  }
  #download .status_list {
    margin-bottom: 60px;
    font-size: calc(13 / var(--base-font-size) * 1em);
  }
  #download .block_form_inner {
    width: 300px;
    margin-inline: auto;
    flex-direction: column;
  }
  #download .button {
    width: 250px;
    order: 2;
    margin: 0 auto;
  }
  #download .button button {
    gap: 8px;
    font-size: 15px;
  }
  #download .button button .pdf {
    width: 19px;
  }
  #download .button button .arrow {
    width: 11px
  }
  #download .input {
    width: 100%;
    margin-bottom: 5px;
    order: 0;
  }
  #download .txts {
    margin-bottom: 40px;
    order: 1;
  }
  #download .name {
    font-size: 12px;
  }
  #download .input input {
    font-size: 16px;
    border-radius: 5px;
  }
  #download .txts .txt {
    margin-top: 0.75em;
    font-size: 12px;
    line-height: calc(20 / 12);
    letter-spacing: 0;
  }
  #download .panel2 .txt {
    margin-bottom: 40px;
    font-size: 15px;
    line-height: calc(28 / 15);
  }
  #download .panel2 .button button .download {
    width: 18px;
  }
}
@media screen and (min-width: 480px) and (max-width: 767px) {
  #download .block_form_inner {
    width: 60vw;
    min-width: 300px;
  }
  #download .panel2 .txt br.ctl {
    display: none !important;
  }
}

/*-------------------------------------------------

faq

--------------------------------------------------*/
#faq {
  position: relative;
  padding-top: min(140 / var(--base-width) * 100vw, 140px);
  padding-bottom: min(220 / var(--base-width) * 100vw, 220px);
}
#faq::before {
  content: '';
  position: absolute;
  top: calc(var(--downloadSec-height) / 2 * -1px);
  right: 0;
  width: calc(1375 / 1440 * 100vw);
  height: calc(100% + (var(--downloadSec-height) / 2 * 1px));
  background: var(--sub1-color);
  border-radius: 9999px 0 0 9999px;
  z-index: -1;
}
#faq .inner {
  width: min(var(--inner-width) / var(--base-width) * 100vw, var(--inner-width) * 1px);
  margin-inline: auto;
  font-size: clamp(12px, var(--base-font-size) / var(--responsive-point) * 100vw, var(--base-font-size) * 1px);
  /* css 変数 */
  --base-font-size: 20;
  --inner-width: 830;
}
#faq .ttl_main {
  margin-bottom: 1.5em;
  color: var(--sub2-color);
  font-size: calc(40 / var(--base-font-size) * 1em);
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.1em;
}
#faq dl {
  margin-bottom: 2.0em;
  padding-bottom: 1.75em;
  font-size: calc(18 / var(--base-font-size) * 1em);
  border-bottom: 1px solid var(--sub2-color);
}
#faq dt {
  display: flex;
  align-items: center;
  color: var(--sub2-color);
  font-size: calc(25 / 18 * 1em);
  font-weight: 500;
  letter-spacing: 0.05em;
}
#faq dt .num {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(50 / var(--base-font-size) * 1em);
  aspect-ratio: 1 / 1;
  margin-right: 1em;
  color: var(--white-color);
  font-size: calc(20 / 25 * 1em);
  font-weight: 600;
  background-color: var(--sub2-color);
  border-radius: 9999px;
}
#faq dt .num::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.4em;
  aspect-ratio: 1 / 1;
  background-color: var(--sub2-color);
  transform: translate(90%, -50%);
  clip-path: polygon(0 0, 0% 100%, 80% 50%);
}
#faq dd {
  display: flex;
  align-items: flex-start;
  margin-top: 0.75em;
  margin-left: 1.2em;
  font-weight: 500;
  line-height: calc(30 / 18);
  letter-spacing: 0.05em;
}
#faq dd .num {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(30 / var(--base-font-size) * 1em);
  aspect-ratio: 1 / 1;
  margin-right: 1.2em;
  padding-bottom: 0.1em;
  color: var(--white-color);
  font-weight: 600;
  line-height: 1;
  background-color: var(--red-color);
  border-radius: 9999px;
  transform: translateY(0.15em);
}
@media screen and (max-width: 767px) {
  #faq {
    margin-bottom: 30px;
    padding-top: 60px;
    padding-bottom: 120px;
  }
  #faq::before {
    width: 100%;
    border-radius: 150px 0 0 150px;
  }
  #faq .inner {
    width: 320px;
    font-size: clamp(var(--base-font-size) * 1px);
    --base-font-size: 15;
  }
  #faq .ttl_main {
    margin-bottom: 40px;
    font-size: 23px;
  }
  #faq dl {
    margin-bottom: 1.75em;
    padding-bottom: 1.25em;
    font-size: 15px;
  }
  #faq dt {
    font-size: 16px;
    line-height: calc(24 / 16);
  }
  #faq dt .num {
    width: 40px;
    margin-right: 14px;
    font-size: 16px;
    line-height: 1;
    flex-shrink: 0;
  }
  #faq dt .num::before {
    width: 0.6em;
    transform: translate(90%, -50%);
  }
  #faq dd {
    margin-top: 0.75em;
    margin-left: 15px;
    line-height: calc(28 / 15);
  }
  #faq dd .num {
    width: 25px;
    margin-right: 14px;
    padding-bottom: 0.1em;
    font-size: 16px;
    transform: translateY(0.3em);
    flex-shrink: 0;
  }
}
@media screen and (min-width: 480px) and (max-width: 767px) {
  #faq .inner {
    width: 60vw;
    min-width: 320px;
  }
}

/*-------------------------------------------------

aboutus

--------------------------------------------------*/
#aboutus {
  position: relative;
  margin-bottom: min(140 / var(--base-width) * 100vw, 140px);
}
#aboutus .inner {
  width: min(var(--inner-width) / var(--base-width) * 100vw, var(--inner-width) * 1px);
  margin-left: min(120 / var(--base-width) * 100vw, 120px);
  font-size: clamp(12px, var(--base-font-size) / var(--responsive-point) * 100vw, var(--base-font-size) * 1px);
  /* css 変数 */
  --base-font-size: 20;
  --inner-width: 1075;
}
#aboutus .logo {
  width: clamp(50px, 85 / var(--responsive-point) * 100vw, 85px);
  margin-bottom: min(35 / var(--base-width) * 100vw, 35px);
}
#aboutus .ttl_main {
  margin-bottom: 0.75em;
  color: var(--primary-txt-color);
  font-size: calc(40 / var(--base-font-size) * 1em);
  font-weight: 600;
  line-height: calc(60 / 40);
  letter-spacing: 0.1em;
}
#aboutus .ttl_main .name {
  color: #E5C281;
}
#aboutus .block_txt {
  margin-bottom: 2.5em;
}
#aboutus .block_txt p {
  line-height: 2;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
#aboutus .block_case {
  margin-bottom: 2em;
}
#aboutus .block_case .ttl {
  display: inline-block;
  padding: 0.5em 1.0em;
  color: var(--white-color);
  font-size: calc(18 / var(--base-font-size) * 1em);
  font-weight: 500;
  letter-spacing: 0.1em;
  background-color: #000;
  border-radius: 10px 10px 0 0;
}
#aboutus .block_case .case_list_wrap {
  padding: 2em;
  font-size: calc(18 / var(--base-font-size) * 1em);
  letter-spacing: 0.05em;
  border-radius: 0 20px 20px 20px;
  border: 1px solid #E5C281;
}
#aboutus .block_case .case_list li {
  display: flex;
  margin-bottom: 1.2em;
}
#aboutus .block_case .case_list li::before {
  content: '・';
}
#aboutus .block_info_inner {
  display: flex;
  gap: calc(35 / var(--base-font-size) * 1em);
}
#aboutus .block_info_inner .img {
  width: calc(470 / 1075 * 100%);
}
#aboutus .block_info_inner .txt {
  width: calc(420 / 1075 * 100%);
}
#aboutus .block_info_inner .ttl {
  margin-bottom: 1.25em;
  padding-block: 0.50em 0.65em;
  color: var(--white-color);
  font-size: calc(18 / var(--base-font-size) * 1em);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  background-color: var(--red-color);
  border-radius: 9999px;
}
#aboutus .block_info_inner .txt p {
  font-size: calc(18 / var(--base-font-size) * 1em);
  line-height: calc(30 / 18);
  letter-spacing: 0.05em;
  text-align: center;
}
#aboutus .block_info_inner .img a {
  transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  #aboutus .block_info_inner .img a:hover {
    opacity: .75;
  }
}
@media screen and (max-width: 991px) {
  #aboutus .inner {
    margin-left: min(80 / var(--base-width) * 100vw, 80px);
    --base-font-size: 20;
    --inner-width: 1200;
  }
}
@media screen and (max-width: 767px) {
  #aboutus {
    margin-bottom: 140px;
  }
  #aboutus .inner {
    width: 330px;
    margin-inline: auto;
    font-size: 15px;
  }
  #aboutus .logo {
    width: 50px;
    margin-bottom: 35px;
  }
  #aboutus .ttl_main {
    display: table;
    margin-inline: auto;
    margin-bottom: 1.25em;
    font-size: 25px;
    line-height: calc(60 / 40);
  }
  #aboutus .block_txt {
    margin-bottom: 50px;
  }
  #aboutus .block_txt p {
    width: 300px;
    margin-inline: auto;
    white-space: inherit;
    text-align: justify;
  }
  #aboutus .block_case {
    margin-bottom: 50px;
  }
  #aboutus .block_case .ttl {
    padding: 0.5em 1.0em;
    font-size: 15px;
  }
  #aboutus .block_case .case_list_wrap {
    padding: 35px 25px;
    font-size: 15px;
    line-height: calc(25 / 15);
  }
  #aboutus .block_info_inner {
    flex-direction: column-reverse;
    align-items: center;
    gap: 30px;
  }
  #aboutus .block_info_inner .img {
    width: 320px;
  }
  #aboutus .block_info_inner .txt {
    width: 100%;
  }
  #aboutus .block_info_inner .ttl {
    margin-bottom: 30px;
    padding-block: 0.40em 0.65em;
    font-size: 18px;
    letter-spacing: 0.05em;
    line-height: calc(30 / 18);
    border-radius: 20px;
  }
  #aboutus .block_info_inner .txt p {
    font-size: 15px;
    line-height: calc(28 / 15);
  }
}
@media screen and (min-width: 480px) and (max-width: 767px) {
  #aboutus .inner {
    width: 65vw;
    min-width: 330px;
  }
  #aboutus .ttl_main,
  #aboutus .block_txt p {
    width: 60vw;
    min-width: 300px;
  }
  #aboutus .block_info_inner {
    width: 330px;
    margin-inline: auto;
  }
}

/*-------------------------------------------------

 footer

--------------------------------------------------*/
footer {
  position: relative;
  background: #000;
}
footer .outer {
  position: relative;
  padding-top: clamp(78px, 130 / var(--responsive-point) * 100vw, 130px);
  padding-bottom: clamp(18px, 30 / var(--responsive-point) * 100vw, 30px);
  padding-inline: clamp(36px, 60 / var(--responsive-point) * 100vw, 60px);
}
footer .inner {
  position: relative;
}
footer .logo {
  width: clamp(174px, 290 / var(--responsive-point) * 100vw, 290px);
  padding-bottom: clamp(36px, 60 / var(--responsive-point) * 100vw, 60px);
}
footer .copyright {
  position: absolute;
  left: 0;
  bottom: 0;
  color: var(--white-color);
  font-weight: 400;
  font-size: clamp(1.0rem, 14 / var(--responsive-point) * 100vw, 1.4rem);
  line-height: 1;
  letter-spacing: .05em;
}
footer .name {
  position: absolute;
  right: 0;
  bottom: 0;
  color: var(--white-color);
  font-weight: 400;
  font-size: clamp(1.0rem, 14 / var(--responsive-point) * 100vw, 1.4rem);
  line-height: 1.8;
  letter-spacing: .05em;
}
@media (max-width: 767px) {
  footer .outer {
    position: relative;
    padding-top: 90px;
    padding-bottom: 20px;
    padding-inline: 30px;
  }
  footer .logo {
    width: 170px;
    padding-bottom: 40px;
  }
  footer .copyright {
    font-size: 10px;
  }
  footer .name {
    position: relative;
    right: auto;
    bottom: auto;
    padding-bottom: 100px;
    font-size: 1.2rem;
    line-height: 170%;
  }
}

