@import url('https://fonts.googleapis.com/css2?family=BIZ+UDPGothic:wght@400;700&family=Noto+Sans+JP:wght@100..900&display=swap');

* {
  box-sizing: border-box;
}

::after,
::before {
  box-sizing: inherit;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
  width: 1300px;
  max-width: 96%;
  margin: clamp(20px, 3.07vw, 40px) auto;
}

p {
  margin: 0;
}

h1,
h2,
h3 {
  font-size: inherit;
  line-height: inherit;
  margin: 0;
  font-family: "BIZ UDPGothic";
  font-weight: 700;
}

dl {
  margin: 0;
}

dd {
  margin-left: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul:not([class]) {
  margin: 0 0 0 1.5em;
  list-style: disc;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border: 0;
  border-top: 1px solid;
  margin: 0;
  clear: both;
  color: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

b,
strong {
  font-weight: 700;
}

em {
  font-style: normal;
  display: inline-block;
}

img {
  border-style: none;
  vertical-align: bottom;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 700;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

#global-container {
  overflow: hidden;
  background: #fdf6e6;
}

*,
:after,
:before {
  box-sizing: border-box;
}

:root {
  --link: #222222;
  --bk: #222222;
  --blown: #501500;
  --blown2: #7e6058;
  --orange1: #ff6300;
  --orange2: #ff8a3e;
  --orange3: #ffac33;
  --orange4: #ffe09c;
  --orange5: #fff5d0;
  --orange6: #fff8e3;
  --yellow: #ffff8b;
  --portas: #cf1225;
  --fs16: clamp(1.4rem, 1.23vw, 1.6rem);
  --fs18: clamp(1.6rem, 1.38vw, 1.8rem);
  --fs20: clamp(1.6rem, 1.53vw, 2rem);
  --fs22: clamp(1.6rem, 1.69vw, 2.2rem);
  --fs24: clamp(1.8rem, 1.84vw, 2.4rem);
  --fs28: clamp(1.8rem, 2.15vw, 2.8rem);
  --fs30: clamp(1.8rem, 2.3vw, 3rem);
  --fs32: clamp(2rem, 2.46vw, 3.2rem);
  --fs36: clamp(2rem, 2.76vw, 3.6rem);
  --fs38: clamp(2rem, 2.92vw, 3.8rem);
}

html {
  font-size: 62.5%;
  line-height: 1.6;
  height: 100%;
}

body {
  color: #501500;
  background-color: #fff;
  font-size: var(--fs16);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  max-width: 100vw;
  min-width: 350px;
  width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  display: block;
}

dd a {
  color: var(--orange1);
  text-decoration: underline;
  position: relative;
}

a:hover {
  color: var(--blown);
  text-decoration: none;
}

a:hover img {
  text-decoration: none;
  transition: all 0.4s;
}

section a[target="_blank"]:after {
  content: url(../img/icon_blank.svg);
  width: 16px;
  margin: 0 0.5rem;
  line-height: 16px;
  display: inline-block;
  text-indent: initial;

  @media screen and (max-width: 768px) {
    width: 13px;
  }
}

a.link01[href*=".pdf"]:after {
  content: "PDF";
  width: auto;
  display: inline-block;
  margin-left: .5em;
  background: var(--portas);
  font-size: 1.2rem;
  padding: 0 4px;
  border-radius: 2px;
  line-height: 1;
  color: #fff;
}

a,
a:before,
button,
input {
  transition: all 0.4s;
}

@keyframes scrollDownLine {
  0% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }

  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }

  50.1% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }

  100% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }
}

.header {
  top: 0;
  width: 100%;
  height: 80px;
  padding: 0 50px;
  transition: all 0.3s;
  z-index: 10;
  background-color: #fff;
  display: flex;
  align-items: center;
}

@media (max-width: 980px) {
  .header {
    padding: 0 20px;
    height: 60px;
    justify-content: center;
  }

  .header__logo {
    width: 120px;
  }
}

/*///////////////////////MainVisual///////////////////////*/

.mv {
  width: 100%;
  background: #ffe09c url(../img/ttl_bg.gif) repeat-x;
  border-top: 10px solid var(--orange2);
  margin-bottom: clamp(60px, 9.23vw, 120px);
}

.mv>.inner {
  width: 1300px;
  max-width: 100%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-top: clamp(10px, 1.92vw, 25px);
  gap: min(35px, 2.69vw);

  @media screen and (max-width: 620px) {
    flex-direction: column-reverse;
    align-items: center;
  }
}

.box_ttl {
  margin-right: clamp(40px, 6.15vw, 80px);
  font-family: "BIZ UDPGothic";
  font-weight: 700;
  margin-bottom: clamp(15px, 2.3vw, 30px);

  @media screen and (max-width: 620px) {
    margin: auto;
    text-align: center;
  }
}

.box_ttl p {
  font-size: var(--fs32);
  color: var(--blown);
  margin-top: 20px;
  line-height: 1.5;

  @media screen and (max-width: 620px) {
    margin-top: 10px;
  }
}

.box_ttl p>span {
  @media screen and (max-width: 450px) {
    display: inline-block;
  }
}

.mv>.inner h1 {
  font-size: clamp(3.2rem, 5.69vw, 7.4rem);
  color: var(--blown);
  text-shadow:
    4px 3px 0 #fdf6e6, -3px 3px 0 #fdf6e6, -3px -3px 0 #fdf6e6, 5px -3px 0 #fdf6e6;
  line-height: 1;
  position: relative;
  margin-top: clamp(35px, 4.61vw, 60px);
  letter-spacing: .04em;
  display: inline-block;
  z-index: 2;
  white-space: nowrap;

  @media screen and (max-width: 620px) {
    text-shadow:
      3px 2px 0 #fdf6e6, -2px 2px 0 #fdf6e6, -2px -2px 0 #fdf6e6, 2px -2px 0 #fdf6e6;
  }
}

.mv>.inner h1:after {
  position: absolute;
  content: url(../img/icon_heart.svg);
  width: clamp(6rem, 11.07vw, 144px);
  top: clamp(-60px, -5.8vw, -10px);
  left: 92%;
  z-index: -1;
  -webkit-animation: blink .5s ease-in-out 5 alternate;
  -moz-animation: blink .5s ease-in-out 5 alternate;
  animation: blink .5s ease-in-out 5 alternate;

  @media screen and (max-width: 450px) {
    top: -30px;
  }
}

@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes blink {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes blink {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.mv>.inner h1>span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  text-shadow: none;
  position: absolute;
  left: .4em;
  top: max(-5vw, -54px);
  font-size: var(--fs22);
  display: inline-block;
  background: var(--portas);
  -webkit-text-stroke: 0;
  color: #fff;
  padding: 5px 5px;
  line-height: 1;
  letter-spacing: .05em;

  @media screen and (max-width: 620px) {
    top: -35px;
  }
}

.mv>.inner .wrap_price {
  display: flex;
  align-items: center;

  @media screen and (max-width: 620px) {
    align-items: flex-end;
    justify-content: center;
  }

  @media screen and (max-width: 450px) {
    align-items: center;
  }
}

.mv>.inner .wrap_price p.price {
  font-size: clamp(2rem, 2.3vw, 3rem);
  color: var(--blown);
  position: relative;
  /* margin-top: 20px; */
  letter-spacing: .04em;
  z-index: 2;
  text-shadow: 4px 3px 0px #fdf6e6;
  line-height: 1;
}

.mv>.inner .wrap_price p.price b {
  font-size: clamp(3.6rem, 5.38vw, 7rem);
  letter-spacing: -.05em
}

.mv>.inner .wrap_price p.price small {
  font-size: clamp(1.6rem, 1.38vw, 1.8rem);
}

.mv>.inner .wrap_price p.perday {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
  background: var(--orange1);
  color: #fff;
  font-size: var(--fs18);
  text-shadow: none;
  aspect-ratio: 1 / 1;
  border-radius: 500px;
  padding: .5em;
  line-height: 1.2;
  margin-left: 1em;
  margin-top: 10px;
  position: relative;
  overflow: hidden;

  @media (min-width: 431px) and (max-width: 620px) {
    flex-direction: row;
    aspect-ratio: inherit;
    padding: .1em 1em;
    align-items: flex-end;
  }

  @media screen and (max-width: 450px) {
    font-size: var(--fs16);
  }
}

.mv>.inner .wrap_price p.perday:before {
  content: "";
  height: 100%;
  width: 30px;
  position: absolute;
  top: -100px;
  left: 0;
  background-color: #fff;
  opacity: 0;
  -webkit-transform: rotate(45deg);
  -webkit-animation: reflection 6s ease-in-out infinite;
}

@keyframes reflection {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }

  10% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.2;
  }

  11% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 0.5;
  }

  20% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

.mv>.inner .wrap_price p.perday em {
  font-size: clamp(2rem, 1.84vw, 2.4rem);
}

.mv .inner picture {
  width: 34%;

  @media screen and (max-width: 768px) {
    right: 0;
    bottom: 40px;
  }

  @media screen and (max-width: 620px) {
    width: 50%;
  }

  @media screen and (max-width:430px) {
    width: 60%;
  }
}

/*///////////////////////PageLink///////////////////////*/

nav.pagelink {
  display: flex;
  justify-content: center;
  gap: 10px min(60px, 3vw);
  max-width: 100%;
  margin: auto;
  background: var(--orange2);
  padding: 15px;
}

nav.pagelink a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 580px;
  max-width: 50%;
  background: var(--orange1);
  color: #fff;
  border-radius: 10px;
  padding: 5px 10px 0;
  font-size: clamp(1.4rem, 2.15vw, 2.8rem);
  border: 3px solid #fff;
  line-height: 1.3;
  position: relative;
  white-space: nowrap;

  @media screen and (max-width: 768px) {
    justify-content: center;
    padding: 5px 10px;
  }
}

nav.pagelink em {
  font-size: var(--fs32);

  @media screen and (max-width: 768px) {
    font-size: 16px;
  }
}

nav.pagelink strong {
  color: #ffff8b;
}

nav.pagelink strong b {
  font-size: clamp(2rem, 2.76vw, 3.6rem);
}

nav.pagelink a:hover,
nav.pagelink a:hover:before {
  background: var(--orange3);
}

nav.pagelink a:after {
  content: "";
  position: absolute;
  width: 45px;
  height: 20px;
  background: var(--orange1);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  bottom: -38px;
  left: 50%;
  transform: translate(-50%, 0);
}

nav.pagelink a:hover:after {
  animation: pyon 0.5s infinite;
  background: var(--orange3);
  transform: translate(-50%, 0);
}

@keyframes pyon {
  0% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, 5px);
  }

  100% {
    transform: translate(-50%, 0);
  }
}

nav.pagelink picture {
  width: 47%;
  max-width: 274px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-height: 100px;
  overflow: hidden;
  flex-shrink: 0;

  @media screen and (max-width: 768px) {
    display: none;
  }
}

nav.pagelink picture .door {
  max-width: 52px;
  margin-right: .77vw;
  width: 30%;
}

nav.pagelink picture .man {
  max-width: 115px;
  width: 65%;
}

.max839 {
  @media screen and (max-width: 839px) {
    display: none;
  }
}

.min840 {
  @media screen and (min-width: 840px) {
    display: none;
  }
}

/*///////////cont////////////*/

section {
  margin-top: clamp(25px, 3.84vw, 50px);
}

#kaketsuke,
#faq {
  margin-top: clamp(50px, 7.69vw, 100px);
}

section section {
  margin-top: 0;
  position: relative;
}

.box_basic {
  background: #fff;
  width: 100%;
  border-radius: 10px;
  padding-bottom: 10px;
}

.box_basic h2 {
  font-size: clamp(2rem, 3.07vw, 4rem);
  font-weight: 400;
  line-height: 1;
  display: flex;
  align-items: center;
  position: relative;

  @media screen and (max-width: 768px) {
    line-height: 1.2;
  }
}
.box_basic h2 b{
  display:inline-block;
}

.box_basic h2>.heart {
  position: relative;
  display: block;
  color: #fff;
  font-size: clamp(2.5rem, 3.84vw, 5rem);
  font-weight: 700;
  width: clamp(54px, 8.3vw, 108px);
  z-index: 2;
  text-align: center;
  flex-shrink: 0;

  @media screen and (max-width: 768px) {
    width: 65px;
    font-size: 2.5rem;
    line-height: 1;
  }
}

.box_basic h2>.heart:after {
  content: "";
  transform: scaleX(-1);
  background: url(../img/icon_heart.svg) no-repeat;
  width: clamp(66px, 8.3vw, 108px);
  height: clamp(60px, 7.69vw, 100px);
  position: absolute;
  bottom: -10px;
  justify-content: center;
  left: -10px;
  z-index: -1;

  @media screen and (max-width: 768px) {
    width: 70px;
  }
}

.box_basic .box_h2 {
  display: flex;
  justify-content: space-between;
  align-items: end;
  position: relative;
  padding: 10px;
  background: var(--orange2)url(../img/h2_bg.gif) repeat;
  border-bottom: 5px solid var(--orange1);
  border-radius: 10px 10px 0 0;

  @media screen and (max-width: 768px) {
    padding: 5px;
  }
}

.wrap_catch {
  padding: clamp(10px, 4.61vw, 60px) clamp(10px, 3.84vw, 50px) 40px;
  display: flex;
  gap: 4.16666%;

  @media screen and (max-width: 450px) {
    flex-direction: column-reverse;
    padding: 20px !important;
  }
}

#hosho .wrap_catch {
  @media screen and (max-width: 768px) {
    padding: 20px 20px 200px;
  }
}

.wrap_catch .box_catch {
  width: 62.5%;

  @media screen and (max-width: 450px) {
    width: 100%;
  }
}

.wrap_catch picture {
  width: 37.5%;
  flex-shrink: 0;
  display: flex;
  gap: 8%;
  justify-content: center;
  align-items: flex-start;

  @media screen and (max-width: 450px) {
    width: 80%;
    max-width: 298px;
    margin: 0 auto 20px;
  }
}

#kaketsuke .wrap_catch picture {
  width: 32%;
  margin-top: -20px;

  @media screen and (max-width: 768px) {
    margin-top: 0;
  }

  @media screen and (max-width: 450px) {
    width: 80%;
    max-width: 298px;
    margin: 0 auto 20px;
  }
}

#kaketsuke .wrap_catch picture img.door {
  width: 28%;
  max-width: 87px;
}

#kaketsuke .wrap_catch picture img.man {
  width: 50%;
  max-width: 154px;
}

.box_catch .catch {
  font-size: clamp(1.6rem, 1.84vw, 2.4rem);
  margin-bottom: 1em;
  line-height: 1.5;
}

.box_catch .catch b {
  font-size: clamp(1.6rem, 2.46vw, 3.2rem);
  color: var(--orange1);
  font-weight: 600;
}

h3.trouble {
  text-align: center;
  position: relative;
  font-size: clamp(2rem, 3.07vw, 4rem);
  font-weight: 400;
  margin-bottom: clamp(30px, 4.61vw, 60px);
}

h3.trouble:after {
  content: "";
  width: 13.84%;
  height: 4px;
  background: var(--orange1);
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translate(-50%, 0);

  @media screen and (max-width: 450px) {
    width: 100px;
    height: 3px;
  }
}

.wrap_trouble {
  display: flex;
  justify-content: center;
  gap: 5.38%;
  margin: 0 0 25px;
  align-items: center;

  @media screen and (max-width: 450px) {
    flex-direction: column;
    gap: 10px;
  }
}

.wrap_trouble .box_trouble {
  width: 40%;
  background: var(--orange5);
  border: 3px solid var(--blown);
  border-radius: 10px;
  padding: 10px;
  display: flex;
  gap: 1.53%;
  line-height: 1.4;

  @media screen and (max-width: 768px) {
    width: 45%;
  }

  @media screen and (max-width: 620px) {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  @media screen and (max-width: 450px) {
    width: 92%;
    flex-direction: row;
  }
}

.wrap_trouble .box_trouble dt {
  font-size: var(--fs30);
  color: var(--orange1);
  margin-bottom: .2em;
}

.wrap_trouble dd {
  font-size: var(--fs24);
}

.wrap_trouble dd small {
  font-size: var(--fs16);
}

.wrap_trouble dd small.tax {
  font-size: 1.6rem;
}

.wrap_trouble dd .price {
  font-size: var(--fs32);
}

#kaketsuke .wrap_trouble {
  gap: 3.5%;
  align-items: stretch;
}

#kaketsuke .wrap_trouble dt {
  font-size: var(--fs24);
  color: var(--orange1);
  margin-bottom: .2em;
}

#kaketsuke .wrap_trouble dd {
  font-size: 2rem;
}

#kaketsuke .wrap_trouble dd {
  font-size: var(--fs20);
}

#kaketsuke .wrap_trouble .box_trouble picture {
  width: 30%;
  max-width: 120px;
}

span.arrow {
  width: 3%;
  height: 53px;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  background: var(--orange1);
  margin: auto 0;

  @media screen and (max-width: 450px) {
    transform: rotate(90deg);
    margin: auto;
  }
}

#kaketsuke .wrap_trouble .box_trouble {
  width: 60%;
  max-width: 650px;
  padding: 15px;

  @media screen and (max-width: 620px) {
    flex-direction: column-reverse;
    width: 92%;
    margin: auto;
  }
}

#kaketsuke .wrap_trouble .box_price {
  background: var(--orange4);
  border: 3px solid var(--blown);
  border-radius: 10px;
  padding: 10px 15px;
  display: flex;
  gap: 20px;
  line-height: 1.4;

  @media screen and (max-width: 450px) {
    width: 92%;
    margin: auto;
    justify-content: center;
  }
}

img.finger {
  animation: tuntun 2s ease-in-out infinite alternate-reverse;
}

@keyframes tuntun {
  0% {
    transform: translate(0, 0);
  }

  5% {
    transform: translate(-20%, -10%);
  }

  15% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(0, 0);
  }
}

.clickopen h3 {
  background: var(--orange2);
  border-radius: 100px;
  font-size: var(--fs38);
  color: #fff;
  display: flex;
  align-items: center;
  padding-left: 20px;
  position: relative;
  z-index: 2;



  @media screen and (max-width: 768px) {
    padding-left: 10px;
    padding-top: 5px;
  }

  @media screen and (max-width: 450px) {
    font-size: 18px;
  }
}

.clickopen h3:hover {
  cursor: pointer;
}

.clickopen h3>div {
  line-height: 1
}

.clickopen h3 img {
  margin-right: clamp(6px, 1.53vw, 20px);
  width: clamp(55px, 7.53vw, 98px);
}
.clickopen h3 b {
  color: var(--yellow);
}
.clickopen h3 b em {
  font-size: clamp(2.4rem, 3.69vw, 4.8rem);
  line-height: 1.5;
}

.clickopen h3 span {
  position: absolute;
  background: var(--orange6);
  width: clamp(30px, 4.61vw, 60px);
  height: clamp(30px, 4.61vw, 60px);
  border-radius: 100px;
  right: clamp(5px, 0.76vw, 10px);
  top: 50%;
  transform: translate(0, -50%);
}

.clickopen h3 span::after,
.clickopen h3 span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(3px, .53vw, 7px);
  height: 70%;
  border-radius: 100px;
  background-color: var(--orange1);
  transition: all 0.3s;
}

.clickopen h3 span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.clickopen h3.active span {
  background: var(--orange3);
}

.clickopen h3.active span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.clickopen h3.active span::after {
  transform: translate(-50%, -50%) rotate(135deg);
}

.clickopen h3:hover span {
  background: var(--orange3)
}

.clickopen h3:hover span::after,
.clickopen h3:hover span::before {
  background-color: #fff;
}

section.point {
  transform: translate(0, -30px);
  display: none;
}

section.point .wrap_point {
  background: var(--orange6);
  border: 2px solid var(--orange4);
  padding: 70px clamp(15px, 3.84vw, 50px) 30px;
  border-radius: 0 0 10px 10px;
}

ol.ol_point {
  margin: 0;
  padding: 0;
}

ol.ol_point li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 30px;

  @media screen and (max-width: 768px) {
    flex-wrap: wrap;
  }
}

ol.ol_point li:last-child {
  margin-bottom: 0;
}

ol.ol_point li:before {
  content: "1";
  font-size: var(--fs30);
  font-weight: 700;
  font-family: "BIZ UDPGothic";
  width: clamp(30px, 3.53vw, 46px);
  height: clamp(30px, 3.53vw, 46px);
  background: #fff;
  border-radius: 100px;
  border: solid var(--orange2) 4px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange2);

  @media screen and (max-width: 620px) {
    border: solid var(--orange2) 3px;
  }
}

ol.ol_point li:nth-child(2):before {
  content: "2";
}

ol.ol_point li:nth-child(3):before {
  content: "3";
}

ol.ol_point li:nth-child(4):before {
  content: "4";
}

ol.ol_point li:nth-child(5):before {
  content: "5";
}

ol.ol_point li dl {
  width: 58.3%;
  margin-right: 5%;

  @media screen and (max-width: 768px) {
    flex-grow: 1;
    margin: 0;
  }
}

ol.ol_point li dt {
  font-size: var(--fs24);
  margin-bottom: .5em;
}

ol.ol_point li dt b {
  color: var(--orange1);
}

ol.ol_point li dd {
  font-size: var(--fs22);

  @media screen and (max-width: 450px) {
    margin-left: -30px;
  }
}

ol.ol_point li picture {
  @media screen and (max-width: 768px) {
    width: 100%;
    text-align: center;
  }
  @media screen and (max-width: 450px) {
    width: 80%;
    margin:10px auto;
    text-align: center;
  }
}

ol.ol_point li picture img {
  @media screen and (max-width: 768px) {
    margin: auto;
  }
}

.wrap_subpoint {
  font-size: var(--fs20);
  text-align: center;
  padding: 0 clamp(10px, 3.84vw, 50px);
}

.wrap_subpoint h4 {
  font-size: var(--fs36);
  font-weight: 500;
  margin: clamp(25px, 6vw, 60px) auto 20px;
  display: inline-block;
  white-space: nowrap;
}

.wrap_subpoint h4 b {
  font-weight: 500;
  color: var(--orange1);
}

.wrap_subpoint h4:before,
.wrap_subpoint h4:after {
  content: "";
  background: url(../img/m_subpoint.svg) no-repeat;
  background-size: contain;
  width: 50px;
  height: 35px;
  display: inline-block;
  vertical-align: middle;
  margin-right: .3em;

  @media screen and (max-width: 768px) {
    width: 40px;
    height: 30px;
  }
}

.wrap_subpoint h4:after {
  margin-right: 0;
  margin-left: .3em;
  transform: scale(-1, 1);
}

.wrap_subpoint p {
  text-align: left;
}

.wrap_flow {
  background: var(--orange6);
  border: 2px solid var(--orange4);
  padding: 10px clamp(10px, 2.3vw, 30px) 30px;
  border-radius: 10px;
  margin-top: 60px;
}

.wrap_flow h5 {
  font-size: var(--fs36);
  font-weight: 500;
  text-align: center;
  margin: 10px 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrap_flow h5:before,
.wrap_flow h5:after {
  content: "";
  width: clamp(25px, 6vw, 60px);
  height: 4px;
  background: var(--orange1);
  margin-right: 20px;

  @media screen and (max-width: 768px) {
    height: 3px;
  }
}

.wrap_flow h5:after {
  margin-left: 20px;
}

.box_flow {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  font-size: var(--fs20);

  @media screen and (max-width: 768px) {
    padding: 10px;
  }
}

.box_flow ol {
  padding: 0;
  margin: 0;
}

.box_flow li {
  display: flex;
  gap: .5em;
  list-style: none;
  position: relative;
}

.box_flow li:not(:last-child) {
  margin-bottom: 1.2em;
}

.box_flow li:before {
  content: "1";
  font-weight: 700;
  font-family: "BIZ UDPGothic";
  line-height: 1;
  width: 28px;
  height: 28px;
  aspect-ratio: 1 / 1;
  background: var(--orange1);
  border-radius: 100px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.box_flow li:nth-child(2):before {
  content: "2";
}

.box_flow li:nth-child(3):before {
  content: "3";
}

.box_flow li:nth-child(4):before {
  content: "4";
}

.box_flow li:nth-child(5):before {
  content: "5";
}
.box_flow li em{
  color:var(--orange1);
  font-size:var(--fs24);
}

.box_link {
  border: 2px solid var(--orange1);
  text-align: center;
  border-radius: 10px;
  padding: 20px;
  margin-top: clamp(25px, 6vw, 60px);
  ;

  @media screen and (max-width: 768px) {
    padding: 10px;
  }
}

.box_link a {
  font-size: var(--fs20);
}

.box_faq {
  width: 1200px;
  max-width: 92%;
  margin: 50px auto;
  background: var(--orange6);
}

.box_faq h3 {
  background: var(--blown) url(../img/icon_faq_hosho.svg) no-repeat 15px 50% / 38px;
  color: #fff;
  font-size: var(--fs30);
  border-radius: 10px 10px 0 0;
  padding: 10px 10px 10px 70px;
  letter-spacing: .05em
}

.box_faq h3.kake {
  background: var(--blown) url(../img/icon_faq_kake.svg) no-repeat 10px 50% / 47px;
}

.box_faq dl {
  padding: 15px 0 clamp(10px, 3.84vw, 50px);
  margin: 15px clamp(10px, 3.84vw, 50px);
  font-size: var(--fs20);
}

.box_faq dl:not(:last-of-type) {
  border-bottom: 2px dashed var(--orange3);
  padding: 15px 0;
}

.box_faq dl dt {
  display: flex;
  align-items: flex-start;
  line-height: 1.8;
}

.box_faq dl dd {
  margin-top: .7em;
  display: flex;
  align-items: flex-start;
  line-height: 1.8;
}

.box_faq dt:before,
.box_faq dd:before {
  content: "Q";
  font-family: "BIZ UDPGothic";
  font-size: var(--fs28);
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background: var(--orange1);
  margin-right: .5em;
  border-radius: 100px;
  aspect-ratio: 1 / 1;
  width: 1.4em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.box_faq dd:before {
  content: "A";
  background: var(--orange3);
}

.clickopen:not(:last-of-type) {
  margin: 0 0 30px;

  @media screen and (max-width: 768px) {
    margin-bottom: 15px;
  }
}

a.link01 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

a.link01:before {
  content: url(../img/link.svg);
  width: 20px;
  height: 20px;
  margin-right: 5px;
  line-height: 1;
}

/*///////Kiyaku////////*/
section.kiyaku {
  background: var(--orange3);
  text-align: center;
  padding: 20px;
}

/*///////////footer////////////*/
.footer {
  height: 150px;
  text-align: center;
  position: relative;
  border-top: 1px solid #b8b8b8;
}

.footer__inner {
  width: 90%;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 0;
}

.footer__inner>div {
  display: grid;
  place-items: center;
}

.footer__inner>div>img {
  margin: 50px auto 0;
}

footer ul li {
  margin: 0 2rem;
  display: inline-block;
}

footer ul li a {
  color: #292929;
  text-decoration: none;
  font-size: 1.4rem;
}

footer ul li a:hover {
  color: #cf1225;
  text-decoration: underline;
}

footer .copy {
  margin: 3rem auto;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 600px) {
  footer .copy {
    flex-direction: column;
  }
}

footer .copy a img {
  width: 180px;
  margin: 0 3rem 3rem;
}

#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  line-height: 1;
  z-index: 9;
}

#page-top a {
  background: var(--blown);
  border-radius: 100px;
  text-decoration: none;
  color: var(--blown);
  width: 50px;
  height: 50px;
  text-align: center;
  display: block;
  opacity: 0.9;
  transition: all 0.3s ease;
  position: relative;
}

#page-top a:hover {
  text-decoration: none;
  opacity: 0.5;
}

#page-top a:before {
  position: absolute;
  top: 10px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 20px;
  height: 20px;
  border-top: 3px solid var(--orange5);
  border-right: 3px solid var(--orange5);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/*-- common -- */

.box_notice {
  @media screen and (max-width: 768px) {
    position: absolute;
    max-width: calc(92% - 1em);
  }

  @media screen and (max-width: 450px) {
    position: initial;
    max-width: 100%;
  }
}


.notice {
  text-indent: -1em !important;
  margin-left: 1em !important;
  font-weight: 500;
  font-size: clamp(1.4rem, 1.4vw, 1.6rem);
  color: var(--blown2);
}

.tCenter {
  text-align: center !important;
  margin: auto;
}

.tRight {
  text-align: right !important;
  margin: 0;
  padding-right: 50px;
  @media screen and (max-width: 450px) {
  text-align: center !important;
  margin: auto;
  }
}

.txt_red {
  color: #ff0000;
}

.f28 {
  font-size: clamp(1.8rem, 2.15vw, 2.8rem);
}

.mb40 {
  margin-bottom: clamp(20px, 3.07vw, 40px) !important;
}

.mb60 {
  margin-bottom: clamp(30px, 4.61vw, 60px) !important;
}

.mbH5em {
  margin-bottom: 0.5em !important;
}

.mtH5em {
  margin-top: 0.5em !important;
}

.mt1em {
  margin-top: 1em !important;
}

.mt1Hem {
  margin-top: 1.5em !important;
}

.mt2em {
  margin-top: 2em !important;
}

.mt50 {
  margin-top: 50px !important;

  @media screen and (max-width: 768px) {
    margin-top: 30px !important;
  }
}

@media screen and (min-width: 500px) {
  .only__ssp {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .only__sp {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .only__pc {
    display: none !important;
  }
}

.op,
.clickopen {
  max-width: 100%;
  margin: 0 auto;
  padding: clamp(30px, 4.61vw, 60px) clamp(10px, 3.84vw, 50px) clamp(10px, 1.92vw, 30px);
}

.fade-out {
  opacity: 0;
  transition: all 1s ease 0s;
}

.fade-in {
  opacity: 1;
}
