@charset "utf-8";


@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900|Noto+Serif+JP:200,300,400,500,600,700,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@400;500;700&family=M+PLUS+Rounded+1c:wght@400;500;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@600&display=swap')

/*
Theme Name: coral_theme
Theme URL: 
Description: original Theme
Author: SugarBeats
Version: 1
Tags:
License: 
License URI: 
*/
/*=====================================
*
*reset
=======================================*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
}

body {
  font-family: "M PLUS Rounded 1c", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", 'Noto Sans JP';
  color: #333;
  font-size: 15px;
  font-weight: normal;
  line-height: 1.5;
}

body.noscroll {
  overflow: hidden;
}

main {
  overflow: clip;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a,
a:visited {
  text-decoration: none;
  color: #1977ec;
}

a:hover {
  color: #ec194a;
}

.w126 {
  width: calc((1260 / 1920)*100%);
  max-width: 1260px;
  position: relative;
  margin: 0 auto;
}


@media screen and (max-width:1500px) {
  .w126 {
    width: calc((1400 / 1920)*100%);
  }
}


.w146 {
  width: calc((1460 / 1920)*100%);
  max-width: 1460px;
  position: relative;
  margin: 0 auto;
}

@media screen and (max-width:1500px) {
  .w146 {
    width: calc((1500 / 1920)*100%);
  }
}

.flex {
  display: flex;
}

:root {
  --awesomeFree: "Font Awesome 6 Free";
  --awesomebrand: "Font Awesome 6 Brands";
  --mPlusR: "M PLUS Rounded 1c", "Noto Sans JP";
  --barlow: "Barlow", "Noto Sans JP";
}

/*=====================================
*
*header
*
=======================================*/
header {
  position: fixed;
  width: 100%;
  background-color: #fff;
  z-index: 9996;
}

header .header-menu {
  align-items: center;
  justify-content: space-between;
  min-height: 75px;
}

header .header-menu .logo {
  width: 153px;
}

header .header-menu .menu nav {
  align-items: center;
  gap: 40px;
}

header .header-menu .menu ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

header .header-menu .menu ul li {
  transform: rotate(0.03deg);
}

@media screen and (max-width:1024px) {
  header .header-menu .menu ul li {
    transform: rotate(0.08deg);
  }
}

header .header-menu .menu ul li a {
  position: relative;
  font-family: var(--mPlusR);
  font-size: 16px;
  letter-spacing: 0.05em;
  color: #555;
  transition: 0.3s;
}

header .header-menu .menu ul li a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background-color: #F18A69;
  border-radius: 5px;
  transform: scale(0, 1);
  transition: 0.3s;
}

@media (any-hover:hover) {
  header .header-menu .menu ul li a:hover {
    color: #F18A69;
  }

  header .header-menu .menu ul li a:hover:after {
    transform: scale(1, 1);
  }
}

@media screen and (max-width:1300px) {
  header .header-menu .logo {
    width: 130px;
  }

  header .header-menu .menu {
    gap: 25px;
  }

  header .header-menu .menu ul {
    gap: 15px;
  }

  header .header-menu .menu ul li a {
    font-size: 14px;
  }
}

/*ハンバーガーメニュー*/
@media screen and (max-width:1024px) {
  header .header-menu {
    width: 96%;
    min-height: 60px;
  }

  header .header-menu .logo {
    width: 125px;
  }

  header .header-menu .menu {
    display: block;
    position: fixed;
    z-index: 9999;
    top: 50%;
    left: 50%;
    min-width: 80vw;
    max-height: 85lvh;
    padding: 50px 30px;
    border-radius: 20px;
    background-color: #fff;
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    overflow-y: scroll;
  }

  header .header-menu .menu.open {
    opacity: 1.0;
    pointer-events: initial;
  }

  header .header-menu .menu nav {
    display: block;
  }

  header .header-menu nav .wrapper {
    align-items: center;
    justify-content: space-between;
  }


  header .header-menu nav .wrapper .sp_btn {
    position: absolute;
    top: 38px;
    right: 30px;
    display: block;
    width: 32px;
    height: fit-content;
    font-family: var(--mPlusR);
    transform: rotate(0.08deg);
    text-align: center;
  }

  header .header-menu nav .wrapper .sp_btn .wrapper {
    position: relative;
    display: flex;
    gap: 5px;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 2px;
  }

  header .header-menu nav .wrapper .sp_btn .wrapper span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #eda68f;
    border-radius: 5px;
    transition: 0.8s;
  }

  header .header-menu nav .wrapper .sp_btn .wrapper span:nth-of-type(1) {
    position: relative;
    top: 4px;
    transform: rotate(-45deg);
  }

  header .header-menu nav .wrapper .sp_btn .wrapper span:nth-of-type(2) {
    position: relative;
    bottom: 4px;
    transform: rotate(45deg);
  }


  header .header-menu nav .logo {
    width: 115px;
  }

  header .header-menu .menu nav ul {
    display: block;
    width: 100%;
    margin-top: 15px;
  }

  header .header-menu .menu nav ul li {
    width: 100%;
    border-top: 1px #ffd4c6 solid;
  }

  header .header-menu .menu ul li:first-of-type {
    border: none
  }

  header .header-menu .menu ul li a {
    display: block;
    font-size: 16px;
    padding: 15px 10px;
  }

  header .header-menu .menu nav .btn01 {
    margin: 50px auto 0;
  }

  header .header-menu>.sp_btn {
    display: block;
    width: 32px;
    height: fit-content;
    font-family: var(--mPlusR);
    transform: rotate(0.08deg);
    text-align: center;
  }

  header .header-menu>.sp_btn .wrapper {
    position: relative;
    display: flex;
    gap: 5px;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 2px;
  }

  header .header-menu>.sp_btn .wrapper span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #eda68f;
    border-radius: 5px;
    transition: 0.8s;
  }

  header .header-menu>.sp_btn .open .wrapper span:nth-of-type(1) {
    position: relative;
    top: 8px;
    transform: rotate(45deg);
  }

  header .header-menu>.sp_btn .open .wrapper span:nth-of-type(3) {
    position: relative;
    bottom: 7px;
    transform: rotate(-45deg);
  }

  header .sp-menu_bg {
    position: fixed;
    z-index: 9997;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100lvh;
    background-color: rgba(51, 51, 51, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
  }

  header .sp-menu_bg.open {
    opacity: 1.0;
    pointer-events: initial;
  }
}

@media screen and (max-width:767px) {
  header .header-menu .logo {
    width: 100px;
  }

  header .header-menu .menu {
    min-width: 95vw;
  }

}

/*=====================================
*
*共通
*
=======================================*/
/*ボタン*/
.btn01 {
  width: fit-content;
  transition: 0.3s;
}

.btn01 :is(a, p) {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mPlusR);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #fff;
  max-height: 50px;
  padding: 15px 45px;
  border-radius: 50px;
  background: #F18A69;
  cursor: pointer;
  transform: rotate(0.03deg);
}

@media screen and (max-width:1024px) {
  .btn01 :is(a, p) {
    transform: rotate(0.08deg);
  }
}

.btn01 :is(a, p) img {
  position: absolute;
  right: 14.5px;
}

@media (any-hover:hover) {
  .btn01:hover {
    opacity: 0.75;
  }
}

@media screen and (max-width:1300px) {
  .btn01 :is(a, p) {
    font-size: 14px;
    padding: 13px 40px;
  }

  .btn01 :is(a, p) img {
    transform: scale(0.85)
  }
}

/*見出し*/
.heading_area .heading :is(h2, h3, h4, h5, h6) {
  position: relative;
  font-family: var(--mPlusR);
  letter-spacing: 0.05em;
  color: #555;
  transform: rotate(0.03deg);
}

@media screen and (max-width:1024px) {
  .heading_area .heading :is(h2, h3, h4, h5, h6) {
    transform: rotate(0.08deg);
  }
}

.heading_area.hd01 {
  width: fit-content;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 55px;
}

.heading_area.hd01 img {
  width: 1.72vw;
  min-width: 28px;
}

@media screen and (min-width:1921px) {
  .heading_area.hd01 img {
    width: 33px;
  }
}

.heading_area.hd01 .heading :is(h2, h3, h4, h5, h6) {
  font-size: clamp(22px, 1.82vw, 35px);
  font-weight: 600;
  line-height: calc(52/35);
  text-align: center;
  margin-top: 5px;
}

.heading_area.hd01 .heading :is(h2, h3, h4, h5, h6) span {
  color: #F18A69;
}

/*tb*/
@media screen and (max-width:1024px) {
  .heading_area.hd01 {
    margin-bottom: 40px;
  }

  article.like_lady .heading_area .heading {
    gap: 10px;
  }

  .heading_area.hd01 .heading :is(h2, h3, h4, h5, h6) {
    font-size: 23px;
  }

}


/*sp*/
@media screen and (max-width:767px) {
  .heading_area.hd01 .heading :is(h2, h3, h4, h5, h6) {
    font-size: 17px;
  }
	
  .heading_area.hd01{
	  margin-bottom: 30px;
  }
	
  .heading_area.hd01 img {
    min-width: 23px;
  }
}

/*=====================================
*mv
=======================================*/
.mv_area {
  position: relative;
  gap: 58px;
  flex-wrap: wrap;
  width: calc((1460 / 1920)*100%);
  max-width: 1460px;
  padding-top: 125px;
  margin: auto;
}

@media screen and (max-width:1500px) {
  .mv_area {
    width: calc((1500 / 1920)*100%);
    padding-top: 105px;
  }
}

.mv_area .left .heading_area {
  position: relative;
  font-size: 0.5vw;
  color: #555;
  letter-spacing: 0.05em;
  padding-bottom: 30px;
}

.mv_area .left .heading_area p {
  font-size: 2.6em;
  margin-bottom: 14px;
  transform: rotate(0.03deg);
}

.mv_area .left .heading_area h1 {
  font-size: 5.3em;
  font-weight: bold;
  transform: rotate(0.03deg);
}

@media screen and (min-width:1921px) {
  .mv_area .left .heading_area p {
    font-size: 26px;
  }

  .mv_area .left .heading_area h1 {
    font-size: 53px;
  }
}

@media screen and (max-width:1500px) {
  .mv_area .left .heading_area {
    padding-bottom: 20px;
  }
}

@media screen and (max-width:1024px) {
  .mv_area .left .heading_area p {
    transform: rotate(0.08deg);
  }

  .mv_area .left .heading_area h1 {
    transform: rotate(0.08deg);
  }
}

.mv_area .left .heading_area h1 span {
  position: relative;
  top: -2px;
  color: #F18A69;
}

.mv_area .left .heading_area h1 span:before {
  content: "";
  position: absolute;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #F18A69;
  transform: translateX(-50%);
}

.mv_area .left .heading_area h1 span:nth-of-type(1):before {
  opacity: 0;
  animation: 0.75s forwards ease-out dots-move;
}

.mv_area .left .heading_area h1 span:nth-of-type(2):before {
  opacity: 0;
  animation: 0.75s 0.2s forwards ease-out dots-move;
}

.mv_area .left .heading_area h1 span:nth-of-type(3):before {
  opacity: 0;
  animation: 0.75s 0.25s forwards ease-out dots-move;
}

.mv_area .left .heading_area h1 span:nth-of-type(4):before {
  opacity: 0;
  animation: 0.75s 0.3s forwards ease-out dots-move;
}

.mv_area .left .heading_area h1 span:nth-of-type(5):before {
  opacity: 0;
  animation: 0.75s 0.35s forwards ease-out dots-move;
}

@keyframes dots-move {
  from {
    top: -20px;
    opacity: 0;
  }

  to {
    top: -3px;
    opacity: 1.0;
  }
}

@media screen and (max-width:1500px) {
  .mv_area .left .heading_area h1 span:before {
    width: 5px;
    height: 5px;
  }
}

.mv_area .left .heading_area .img_area {
  position: absolute;
  right: calc((90 / 700)*100%);
  width: calc((165 / 700) * 100%);
  z-index: 1;
  animation: 1.0s forwards ease-out cat-move;
}

@keyframes cat-move {
  from {
    bottom: -100px;
    opacity: 0;
  }

  to {
    bottom: calc((-8 / 150)*100%);
    opacity: 1.0;
  }
}

@media screen and (max-width:1500px) {
  @keyframes cat-move {
    from {
      bottom: -90px;
      opacity: 0;
    }

    to {
      bottom: calc((-7 / 150)*100%);
      opacity: 1.0;
    }
  }
}

.mv_area :is(.left, .right) {
  width: calc(50% - 29px);
}

.mv_area :is(.left, .right)>.img_area {
  position: relative;
  width: fit-content;
  z-index: 2;
}

.mv_area :is(.left, .right) .img_area img {
  position: relative;
  z-index: 3;
}


.mv_area .left .img_area img:nth-of-type(2) {
  position: absolute;
  width: calc((353/700)*100%);
  left: calc((392/700)*100%);
  top: calc((133/400)*100%);
  z-index: 4;
}

.mv_area .right {
  flex-wrap: wrap;
  flex-direction: column-reverse;
}

.mv_area .right :is(.text_area, .img_area) {
  width: 100%;
}

.mv_area .right .img_area img:nth-of-type(2) {
  position: absolute;
  width: calc((304/700)*100%);
  top: calc((33/400)*100%);
  left: calc(((56/700)*100%)*-1);
  z-index: 3;
}

.mv_area .right .img_area img:nth-of-type(3) {
  position: absolute;
  width: calc((304/700)*100%);
  top: calc((208/400)*100%);
  left: calc((356/700)*100%);
  z-index: 3;
}

.mv_area .right .text_area {
  font-size: 0.53vw;
}

.mv_area .right .text_area p {
  font-size: 4.0em;
  font-weight: 600;
  line-height: calc(60 / 40);
  letter-spacing: 0.05em;
  margin-top: 20px;
  color: #555;
  transform: rotate(0.03deg);
}

@media screen and (min-width:1921px) {
  .mv_area .right .text_area p {
    font-size: 40px;
  }
}

@media screen and (max-width:1500px) {
  .mv_area .right .text_area p {
    margin-top: 10px;
  }
}

@media screen and (max-width:1024px) {
  .mv_area .right .text_area p {
    transform: rotate(0.08deg);
  }
}

.mv_area .right .text_area p span {
  color: #60ADD4;
}


.mv_area :is(.left, .right) .deco {
  position: absolute;
  z-index: 1;
}

.mv_area .left .deco {
  max-width: 445px;
  width: calc((445/700)*100%);
  left: calc((-207/700)*100%);
  bottom: calc((-115/400)*100%)
}

.mv_area .right .deco {
  max-width: 430px;
  width: calc((430/700)*100%);
  right: calc((-226/700)*100%);
  bottom: calc((-143/400)*100%);
}

.mv_area .deco2 {
  position: absolute;
  max-width: 430px;
  right: 1vw;
  bottom: 1vw;
  width: 22.4vw;
}

/*tb*/
@media screen and (max-width:1024px) {
  .mv_area {
    gap: 20px;
    width: 86%;
    padding-top: 90px;
  }

  .mv_area :is(.left, .right) {
    width: calc(50% - 10px);
  }

  .mv_area .left .heading_area {
    padding-bottom: 10px;
  }

  @keyframes cat-move {
    from {
      bottom: -80px;
      opacity: 0;
    }

    to {
      bottom: calc((-8 / 150)*100%);
      opacity: 1.0;
    }
  }

  .mv_area .left .deco {
    left: calc((-143/700)*100%);
  }

  .mv_area .right .deco {
    right: calc((-154/700)*100%);
  }

}

/*sp*/
@media screen and (min-width:501px) and (max-width:767px) {
  .mv_area {
    width: 96%;
  }

  .mv_area .left .heading_area {
    font-size: 0.2em;
  }

  .mv_area .left .heading_area p {
    font-size: 3.0em;
    margin-bottom: 14px;
    transform: rotate(0.08deg);
  }

  .mv_area .left .heading_area h1 {
    font-size: 6.0em;
  }

  .mv_area .left .heading_area h1 span:before {
    width: 4px;
    height: 4px;
  }

  .mv_area .right .text_area {
    font-size: 0.2em;
  }
}

@media screen and (max-width:500px) {
  .mv_area {
    display: block;
    width: 96%;
    height: 50lvh;
    padding-top: 70px;
  }

  .mv_area :is(.left, .right) {
    position: absolute;
    width: 100%;
  }

  .mv_area .left .heading_area {
    font-size: 5px;
  }

  .mv_area .left .heading_area p {
    transform: rotate(0.08deg);
  }

  .mv_area>div {
    animation: 10s infinite ease-out mv-anime;
    opacity: 0;
  }

  .mv_area .left {
    animation-delay: 0s;
  }

  .mv_area .right {
    top: 56px;
    flex-direction: initial;
    animation-delay: 5s;
  }

  @keyframes mv-anime {
    0% {
      opacity: 0;
    }

    25% {
      opacity: 1;
    }

    50% {
      opacity: 1;
    }

    65% {
      opacity: 0;
    }

    100% {
      opacity: 0;
    }
  }

  .mv_area .right .text_area {
    font-size: 5px;
    padding-bottom: 20px;
  }

  .mv_area .right .text_area p {
    font-size: 4.5em;
  }

  .mv_area .left .img_area img:nth-of-type(2) {
    width: calc((338/700)*100%);
    left: calc((381/700)*100%);
  }

  .mv_area .right .img_area img:nth-of-type(2) {
    width: calc((289/700)*100%);
    left: calc(((23/700)*100%)*-1);
  }

  .mv_area .right .img_area img:nth-of-type(3) {
    width: calc((289/700)*100%);
  }
}

/*=====================================
*like-lady
=======================================*/
article.like_lady {
  padding-top: 135px;
}

article.like_lady .heading_area .heading {
  gap: 0.089vw;
  align-items: center;
  justify-content: center;
}

article.like_lady .heading_area .heading img:nth-of-type(1) {
  width: 4.01vw;
}

article.like_lady .heading_area .heading img:nth-of-type(2) {
  position: relative;
  width: 2.86vw;
  bottom: -13px;
}

@media screen and (min-width:1921px) {
  article.like_lady .heading_area .heading img:nth-of-type(1) {
    width: 77px;
  }

  article.like_lady .heading_area .heading img:nth-of-type(2) {
    width: 55px;
  }
}

article.like_lady .contents_area .contents+.contents {
  margin-top: 90px;
}

article.like_lady .contents_area .contents>.heading {
  margin-bottom: calc(35px + 1.15vw);
}

article.like_lady .contents_area .contents .heading h3 {
  font-size: 1.67vw;
  font-weight: bold;
  color: #333;
  line-height: calc(50 / 47);
  letter-spacing: 0.05em;
  transform: rotate(0.03deg);
}

@media screen and (min-width:1921px) {
  article.like_lady .contents_area .contents .heading h3 {
    font-size: 32px;
  }
}

@media screen and (max-width:1024px) {
  article.like_lady .contents_area .contents .heading h3 {
    transform: rotate(0.08deg);
  }
}

article.like_lady .contents_area .contents .heading span {
  display: block;
  width: 53px;
  height: 2px;
  margin: 15px 0 10px;
  border-radius: 5px;
  background-color: #60ADD4;
}

article.like_lady .contents_area .contents .heading p {
  font-size: 1.15vw;
  line-height: 1.8;
  letter-spacing: 0.05em;
  transform: rotate(0.03deg);
}

@media screen and (min-width:1921px) {
  article.like_lady .contents_area .contents .heading p {
    font-size: 22px;
  }
}

@media screen and (max-width:1024px) {
  article.like_lady .contents_area .contents .heading p {
    transform: rotate(0.08deg);
  }
}

article.like_lady .contents_area .contents .before_after {
  gap: 2.5vw;
  align-items: center;
  justify-content: center;
  width: calc((1040/1260)*100%);
  margin: auto;
}

article.like_lady .contents_area .contents .before_after .before_img {
  position: relative;
  width: calc(50% - 48px - 1.02vw);
  opacity: 0;
}

article.like_lady .contents_area .contents.move .before_after .before_img {
  animation: 1.5s 0.5s forwards cubic-bezier(0.68, -0.17, 0.01, 1.44) before-img;
}

@keyframes before-img {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1.0;
    transform: translateX(0);
  }
}

article.like_lady .contents_area .contents .before_after .before_img span {
  position: absolute;
  top: -1.61vw;
  font-size: clamp(12px, 1.15vw, 22px);
  color: #F9D1C5;
  letter-spacing: 0.05em;
  transform: rotate(0.03deg);
}

@media screen and (max-width:1024px) {
  article.like_lady .contents_area .contents .before_after .before_img span {
    transform: rotate(0.08deg);
  }
}

article.like_lady .contents_area .contents .before_after .before_img img:last-of-type {
  position: absolute;
  width: calc((303/500)*100%);
  left: calc((-227/450)*100%);
  bottom: calc((-7/500)*100%);
  opacity: 0;
}

article.like_lady .contents_area .contents.move .before_after .before_img img:last-of-type {
  animation: 1.5s 1.25s forwards cubic-bezier(0.68, -0.17, 0.01, 1.44) before-serif;
}

@keyframes before-serif {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1.0;
    transform: translateX(0);
  }
}

article.like_lady .contents_area .contents .before_after .arrow {
  display: block;
  border-color: transparent transparent transparent #91C9EC;
  border-style: solid;
  border-width: 2.55vw 0 2.55vw 2.05vw;
  opacity: 0;
}

article.like_lady .contents_area .contents.move .before_after .arrow {
  animation: 0.8s 1.85s forwards ease-out arrow;
}

@keyframes arrow {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1.0;
    transform: translateX(0);
  }
}

@media screen and (min-width:1921px) {
  article.like_lady .contents_area .contents .before_after .arrow {
    border-width: 47px 0 47px 39px;
  }
}

article.like_lady .contents_area .contents .before_after .after_img {
  position: relative;
  width: calc(50% - 48px - 1.02vw);
  opacity: 0;
}

article.like_lady .contents_area .contents.move .before_after .after_img {
  animation: 1.5s 2.0s forwards cubic-bezier(0.68, -0.17, 0.01, 1.44) after-img;
}

@keyframes after-img {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1.0;
    transform: translateX(0);
  }
}


article.like_lady .contents_area .contents .before_after .after_img img:last-of-type {
  position: absolute;
  width: calc((303/500)*100%);
  right: calc((-227/450)*100%);
  bottom: calc((-11/500)*100%);
  opacity: 0;
}

article.like_lady .contents_area .contents.move .before_after .after_img img:last-of-type {
  animation: 1.5s 2.25s forwards cubic-bezier(0.68, -0.17, 0.01, 1.44) after-serif;
}

@keyframes after-serif {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1.0;
    transform: translateX(0);
  }
}

article.like_lady .contents_area .contents .before_after .after_img span {
  position: absolute;
  top: -1.61vw;
  font-size: clamp(12px, 1.15vw, 22px);
  color: #60ADD4;
  letter-spacing: 0.05em;
  transform: rotate(0.03deg);
}

@media screen and (max-width:1024px) {
  article.like_lady .contents_area .contents .before_after .after_img span {
    font-size: 16px;
    transform: rotate(0.08deg);
  }
}


/*tb*/
@media screen and (max-width:1024px) {
  article.like_lady {
    width: 86%;
    padding-top: 100px;
  }

  article.like_lady .heading_area .heading img:nth-of-type(1) {
    width: 40px;
  }

  article.like_lady .heading_area .heading img:nth-of-type(2) {
    width: 37px;
  }

  article.like_lady .contents_area .contents>.heading {
    margin-bottom: calc(30px + 16px);
  }

  article.like_lady .contents_area .contents .heading h3 {
    font-size: 18px;
  }

  article.like_lady .contents_area .contents .heading span {
    width: 40px;
    height: 2px;
  }

  article.like_lady .contents_area .contents .heading p {
    font-size: 14px;
  }

  article.like_lady .contents_area .contents .before_after :is(.before_img, .after_img) span {
    top: -23px;
    font-size: 16px;
  }
}

/*sp*/
@media screen and (max-width:767px) {
  article.like_lady {
    width: 96%;
    padding-top: 65px;
  }

  article.like_lady .contents_area .contents>.heading {
    margin-bottom: calc(15px + 16px);
  }
		
  article.like_lady .contents_area .contents .heading span{
	  margin: 7px 0 10px;
  }
	
  article.like_lady .contents_area .contents .before_after :is(.before_img,.after_img){
	   width:65%;
  }

  article.like_lady .contents_area .contents .before_after {
	flex-wrap:wrap;
	gap:0;
    width: 100%;
  }

  article.like_lady .contents_area .contents .before_after :is(.before_img, .after_img) span {
	position:static;
    font-size: 17px;
  }

  article.like_lady .contents_area .contents .before_after .before_img img:last-of-type {
    left: calc((-142/450)*100%);
  }

  article.like_lady .contents_area .contents .before_after .after_img img:last-of-type {
    right: calc((-142/450)*100%);
  }
	
	
  @keyframes before-img {
    from {
      opacity: 0;
      transform: translateY(-75px);
    }

    to {
      opacity: 1.0;
      transform: translateY(0);
    }
  }

  @keyframes after-img {
    from {
      opacity: 0;
      transform: translateY(-75px);
    }

    to {
      opacity: 1.0;
      transform: translateY(0);
    }
  }

  @keyframes before-serif {
    from {
      opacity: 0;
      transform: translateY(-75px);
    }

    to {
      opacity: 1.0;
      transform: translateY(0);
    }
  }

  @keyframes after-serif {
    from {
      opacity: 0;
      transform: translateY(-75px);
    }

    to {
      opacity: 1.0;
      transform: translateY(0);
    }
  }
	
  article.like_lady .contents_area .contents .before_after .arrow{
	  position:relative;
	  width:100%;
	  height:17px;
	  margin: 22px 0 -1px;
	  border:none;
	  opacity:0;
	}
  
	article.like_lady .contents_area .contents.move .before_after .arrow {
       animation: 0.8s 1.85s forwards ease-out arrow;
    }

@keyframes arrow {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

  to {
    opacity: 1.0;
    transform: translateY(0);
  }
}
	
  article.like_lady .contents_area .contents .before_after .arrow:before {
	content:"";
	position:absolute;
	left:50%;
    display: block;
    border-color: #91C9EC transparent transparent  transparent;
    border-style: solid;
    border-width: 17px 23px 0;
	transform:translatex(-50%);
  }

}

/*=====================================
*about
=======================================*/
article.about {
  margin-top: 180px;
  background-color: #9CCCEB;
}

article.about .contents_area {
  padding: 45px 0;
}

article.about .contents_area .about_heading {
  font-family: var(--mPlusR);
  text-align: center;
  margin-bottom: 20px;
}

article.about .contents_area .about_heading p {
  font-size: clamp(12px, 1.56vw, 30px);
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #E1F0F9;
  margin-bottom: 2px;
  transform: rotate(0.03deg);
}

article.about .contents_area .about_heading h2 {
  font-size: clamp(12px, 1.56vw, 30px);
  font-weight: bold;
  color: #717171;
  transform: rotate(0.03deg);
}

article.about .contents_area .contents p {
  font-size: clamp(12px, 1.09vw, 21px);
  letter-spacing: 0.05em;
  line-height: calc(42 / 21);
  color: #fff;
  transform: rotate(0.03deg);
}

article.about .contents_area .contents span {
  font-weight: bold;
}

article.about .contents_area .contents p+p {
  margin-top: 20px;
}

@media screen and (min-width:1921px) {
  article.about .contents_area .contents p {
    font-size: 21px;
  }
}

@media screen and (max-width:1024px) {
  article.about .contents_area .about_heading p {
    transform: rotate(0.08deg);
  }

  article.about .contents_area .about_heading h2 {
    transform: rotate(0.08deg);
  }

  article.about .contents_area .contents p {
    transform: rotate(0.08deg);
  }
}

/*tb*/
@media screen and (max-width:1024px) {
  article.about {
    margin-top: 100px;
  }

  article.about .contents_area {
    width: 96%;
  }

  article.about .contents_area .about_heading p {
    font-size: 17px;
  }

  article.about .contents_area .about_heading h2 {
    font-size: 17px;
  }

  article.about .contents_area .contents p {
    font-size: 16px;
  }
}

/*sp*/
@media screen and (max-width:767px) {
  article.about .contents_area .about_heading p {
    font-size: 18px;
  }

  article.about .contents_area .about_heading h2 {
    font-size: 18px;
  }

  article.about .contents_area .contents p {
    font-size: 14px;
  }
}

/*=====================================
*こんなお悩みありませんか？
=======================================*/
article.worries {
  padding-top: 65px;
}

article.worries .contents_area .contents .img_area {
  opacity: 0;
}

article.worries .contents_area .contents .img_area.move {
  animation: 0.5s 0.75s forwards ease-out worries-anime;
}

@keyframes worries-anime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1.0;
    transform: translateY(0);
  }
}

article.worries+.deco_arrow {
  position: relative;
  top: -1px;
  border-style: solid;
  border-color: #fff transparent transparent;
  border-width: 5.94vw 50vw 0;
  z-index: 2;
}

@media screen and (min-width:1921px) {
  article.worries+.deco_arrow {
    border-width: 114px 50vw 0;
  }
}

@media screen and (max-width:1024px) {
  article.worries {
    padding-top: 30px;
  }

  article.worries .contents_area .contents {
    width: 96%;
  }

  article.worries+.deco_arrow {
    border-width: 55px 50vw 0;
  }
}

/*=====================================
*5つのポイント
=======================================*/
article.point {
  position: relative;
  padding: 8.85vw 0 60px;
  background-image: url(img/point/point-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: -5.94vw;
  z-index: 1;
}

@media screen and (min-width:1921px) {
  article.point {
    padding: 170px 0 60px;
    margin-top: -114px;
  }
}

article.point .contents_area .point_heading {
  margin-bottom: clamp(20px, 2.6vw, 50px);
}

article.point .contents_area .point_heading h2 {
  font-size: clamp(12px, 1.82vw, 35px);
  font-weight: bold;
  color: #555;
  letter-spacing: 0.05em;
  line-height: calc(52 / 35);
  text-align: center;
  transform: rotate(0.03deg);
}

@media screen and (max-width:1024px) {
  article.point .contents_area .point_heading h2 {
    transform: rotate(0.08deg);
  }
}

article.point .contents_area .contents h3 {
  width: fit-content;
  font-size: clamp(12px, 1.56vw, 30px);
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #fff;
  margin: auto;
  padding: clamp(7px, 0.36vw, 7px) clamp(40px, 4.69vw, 90px);
  border-radius: 50px;
  background-color: #F18A69;
  transform: rotate(0.03deg);
}

@media screen and (max-width:1024px) {
  article.point .contents_area .contents h3 {
    transform: rotate(0.08deg);
  }
}

article.point .contents_area .contents .img-text_area {
  display: flex;
  gap: clamp(20px, 2.08vw, 40px) clamp(15px, 1.56vw, 30px);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: clamp(20px, 2.6vw, 50px);
}


article.point .contents_area .contents .img-text_area .img-text {
  width: calc((100% - (1.56vw*2)) / 3);
  opacity: 0;
}

@media screen and (min-width:768px) {

  article.point .contents_area .contents .img-text_area.move .img-text {
    animation: 0.75s forwards ease-out point-move;
  }

  article.point .contents_area .contents .img-text_area.move .img-text:nth-of-type(2) {
    animation-delay: 0.2s;
  }

  article.point .contents_area .contents .img-text_area.move .img-text:nth-of-type(3) {
    animation-delay: 0.4s;
  }

  article.point .contents_area .contents .img-text_area.move .img-text:nth-of-type(4) {
    animation-delay: 0.6s;
  }

  article.point .contents_area .contents .img-text_area.move .img-text:nth-of-type(5) {
    animation-delay: 0.8s;
  }
}

@keyframes point-move {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1.0;
    transform: translateY(0px);
  }
}

article.point .contents_area .contents .img-text_area .img-text .img_area .num {
  font-size: clamp(12px, 1.82vw, 35px);
  font-weight: bold;
  color: #f18a69;
  text-align: center;
  margin-top: max(-0.94vw, -18px);
  -webkit-text-stroke: #fff 1px;
  line-height: 1.0;
  transform: rotate(0.03deg);
}

article.point .contents_area .contents .img-text_area .img-text .text_area :is(h4, p) {
  font-weight: bold;
  transform: rotate(0.08deg);
}

article.point .contents_area .contents .img-text_area .img-text .text_area h4 {
  font-size: clamp(14px, 0.94vw, 18px);
  margin: clamp(10px, 0.68vw, 13px) 0;
  color: #333;
  text-align: center;
}

article.point .contents_area .contents .img-text_area .img-text .text_area p {
  font-size: clamp(12px, 0.73vw, 14px);
  color: #717171;
  line-height: calc(35 /14);
}

article.point .contents_area .contents .img-text_area .img-text .text_area span {
  font-weight: 800;
  color: #333;
}

@media screen and (max-width:1024px) {
  article.point .contents_area .contents .img-text_area .img-text .img_area .num {
    transform: rotate(0.08deg);
  }

}

/*tb*/
@media screen and (max-width:1024px) {
  article.point {
    padding: 85px 0 60px;
    margin-top: -55px;
  }

  article.point .contents_area {
    width: 96%;
  }

  article.point .contents_area .point_heading h2 {
    font-size: 17px;
  }

  article.point .contents_area .contents h3 {
    font-size: 15px;
	  padding: clamp(7px, 0.36vw, 7px) clamp(30px, 4.69vw, 90px);
  }

  article.point .contents_area .contents .img-text_area {
    display: flex;
    gap: 20px 10px;
  }

  article.point .contents_area .contents .img-text_area .img-text {
    width: calc((100% - (10px*2)) / 3);
  }

  article.point .contents_area .contents .img-text_area .img-text .img_area .num {
    font-size: 21px;
    margin-top: -11px;
  }

  article.point .contents_area .contents .img-text_area .img-text .text_area h4 {
    margin: 3px 0;
  }

}

/*sp*/
@media screen and (max-width:767px) {
  article.point .contents_area .contents .img-text_area {
    gap: 15px;
  }

  article.point .contents_area .contents .img-text_area .img-text {
    width: 100%;
  }

  article.point .contents_area .contents .img-text_area .img-text.move {
    animation: 0.75s 0.5s forwards ease-out point-move;
  }

  @keyframes point-move {
    from {
      opacity: 0;
      transform: translateY(50px);
    }

    to {
      opacity: 1.0;
      transform: translateY(0px);
    }
  }

  article.point .contents_area .contents .img-text_area .img-text img {
    width: 100%;
  }
}

/*=====================================
*お客様の声
=======================================*/
article.voice {
  padding: 60px 0 120px;
}

article.voice .contents_area .contents .voice-img_area {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(40px, 4.79vw, 92px);
  text-align: center;
  padding: 0 clamp(10px, 4.17vw, 80px);
}

@media screen and (max-width:1260px) {
  article.voice .contents_area .contents .voice-img_area {
    gap: 40px;
    padding: 0;
  }
}

article.voice .contents_area .contents .voice-img_area .text {
  position: relative;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  padding-bottom: 50px;
}

article.voice .contents_area .contents .voice-img_area .text:after {
  opacity: 0;
  transition: 0.3s;
}

article.voice .contents_area .contents .voice-img_area .text.voice-text_active:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  border-style: solid;
  border-color: transparent transparent #F8F8F8;
  border-width: 0 32.5px 35px;
  transform: translateX(-50%);
  transition: 0.3s;
  opacity: 1.0;
}

article.voice .contents_area .contents .voice-img_area .text .voice-btn_area {
  position: relative;
  cursor: pointer;
}

article.voice .contents_area .contents .voice-img_area .text .voice-btn_area.btn-active .deco {
  transform: rotate(-51deg);
  transition: 0.3s ease-out;
}

article.voice .contents_area .contents .voice-img_area .text .voice-btn_area .deco {
  position: absolute;
  z-index: 2;
  top: -7px;
  left: -18px;
  transition: 0.3s ease-out;
}


article.voice .contents_area .contents .voice-img_area .text .voice-btn_area .btn {
  position: relative;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  border: 1px solid #707070;
  background-color: #fff;
  z-index: 1;
}

article.voice .contents_area .contents .voice-img_area .text .voice-btn_area .btn span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 2px;
  border-radius: 5px;
  background-color: #707070;
  transform: translate(-50%, -50%);
}

article.voice .contents_area .contents .voice-img_area .text .voice-btn_area .btn span:nth-of-type(2) {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: 0.3s ease-out;
}

article.voice .contents_area .contents .voice-img_area .text .voice-btn_area.btn-active .btn span:nth-of-type(2) {
  transform: translate(-50%, -50%) rotate(0deg);
  transition: 0.3s ease-out;
}

article.voice .contents_area .contents .voice-img_area .text p {
  font-weight: bold;
  font-size: clamp(12px, 0.94vw, 18px);
  color: #F08969;
  letter-spacing: 0.05em;
  transform: rotate(0.03deg);
}

article.voice .contents_area .contents .voice-text_area {
  display: none;
  border-radius: 15px;
  background-color: #F8F8F8;
  transition: 0.3s;
}

article.voice .contents_area .contents .voice-text_area.text-active {
  display: block;
  padding: 40px 60px;
  transition: 0.3s;
}


article.voice .contents_area .contents .voice-text_area .voice-text+.voice-text {
  margin-top: 20px;
}

article.voice .contents_area .contents .voice-text_area h3 {
  position: relative;
  display: inline;
  width: fit-content;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #333;
  padding: 0 6px;
  background-image: linear-gradient(to top, transparent 5%, #FFD3C5 5%, #FFD3C5 35%, transparent 35%);
  transform: rotate(0.03deg);
}

article.voice .contents_area .contents .voice-text_area h3:before {
  content: "";
  position: absolute;
  top: 8px;
  left: -13px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #F08969;
}

article.voice .contents_area .contents .voice-text_area p {
  font-size: 18px;
  font-weight: bold;
  line-height: calc(40 / 18);
  color: #555;
  letter-spacing: 0.05em;
  margin-top: 10px;
  padding: 0 6px;
  transform: rotate(0.03deg);
}

article.voice .contents_area .contents .voice-text_area p span {
  color: #F08969;
}

@media screen and (max-width:1024px) {
  article.voice .contents_area .contents .voice-img_area .text p {
    transform: rotate(0.08deg);
  }


  article.voice .contents_area .contents .voice-text_area h3 {
    transform: rotate(0.08deg);
  }

  article.voice .contents_area .contents .voice-text_area p {
    transform: rotate(0.08deg);
  }
}

/*tb*/
@media screen and (max-width:1024px) {
  article.voice .contents_area {
    width: 96%;
  }
}

/*sp*/
@media screen and (max-width:767px) {
  article.voice .contents_area {
    width: 96%;
  }

  article.voice .contents_area .contents+.contents {
    margin-top: 30px
  }

  article.voice .contents_area .contents .voice-img_area {
    display: block;
  }

  article.voice .contents_area .contents .voice-img_area .voice-img {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    margin: auto;
  }

  article.voice .contents_area .contents .voice-img_area .voice-img .img_area {
    position: relative;
    width: calc(40% - 10px);
  }

  article.voice .contents_area .contents .voice-img_area.img-active .voice-img>.img_area:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -35px;
    border-style: solid;
    border-color: transparent transparent #F8F8F8;
    border-width: 0 32.5px 30px;
    transform: translateX(-50%);
    transition: 0.3s;
    opacity: 1.0;
  }

  article.voice .contents_area .contents .voice-img_area .text {
    display: block;
    position: static;
    width: calc(60% - 10px);
    margin: 0;
    padding: 0;
  }

  article.voice .contents_area .contents .voice-img_area.img-active .text:after {
    content: none;
  }

  article.voice .contents_area .contents .voice-img_area .text .voice-btn_area {
    position: absolute;
    top: 5px;
    left: 18px;
  }

  article.voice .contents_area .contents .voice-img_area .text .voice-btn_area .deco {
    top: -7px;
    left: -18px;
  }
	
  article.voice .contents_area .contents .voice-img_area.img-active .voice-btn_area .deco {
    transform: rotate(-51deg);
    transition: 0.3s ease-out;
  }

  article.voice .contents_area .contents .voice-img_area .text .voice-btn_area .btn span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 13px;
    height: 2px;
    border-radius: 5px;
    background-color: #707070;
    transform: translate(-50%, -50%);
  }

  article.voice .contents_area .contents .voice-img_area .text .voice-btn_area .btn span:nth-of-type(2) {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: 0.3s ease-out;
  }

  article.voice .contents_area .contents .voice-img_area.img-active .text .voice-btn_area .btn span:nth-of-type(2) {
    transform: translate(-50%, -50%) rotate(0deg);
    transition: 0.3s ease-out;
  }

  article.voice .contents_area .contents .voice-img_area .text p {
    font-size: 18px;
    text-align: start;
  }

  article.voice .contents_area .contents .voice-text_area.text-active {
    padding: 20px 30px;
    margin-top: 35px;
  }

  article.voice .contents_area .contents .voice-text_area .voice-text+.voice-text {
    margin-top: 10px;
  }

  article.voice .contents_area .contents .voice-text_area h3 {
    font-size: 14px;
  }

  article.voice .contents_area .contents .voice-text_area p {
    font-size: 13px;
  }

}

/*=====================================
course
=======================================*/
article.course {
  padding-top: 60px;
}

article.course .course_list ul {
  display: grid;
  gap: clamp(30px, 3.13vw, 60px);
  grid-template-columns: repeat(2, 1fr);
}

article.course .course_list ul li {
  display: grid;
  gap: 0;
  grid-template-rows: subgrid;
  grid-row: span 3;
  opacity: 0;
}

article.course .course_list ul li.move {
  animation: 0.75s 0.5s forwards course-list;
}

article.course .course_list ul li.move:nth-of-type(2) {
  animation-delay: 0.7s;
}

@keyframes course-list {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1.0;
    transform: translateY(0);
  }
}

article.course .course_list ul li .text_area {
  color: #555;
  margin-bottom: clamp(25px, 2.34vw, 45px);
  transform: rotate(0.03deg);
}

article.course .course_list ul li .text_area h2 {
  position: relative;
  z-index: 1;
  width: fit-content;
  font-size: clamp(16px, 1.04vw, 20px);
  font-weight: bold;
  letter-spacing: 0.05em;
  margin: clamp(15px, 1.56vw, 30px) auto;
  transform: rotate(0.03deg);
}

article.course .course_list ul li .text_area h2 span {
  position: absolute;
  z-index: -1;
  left: 50%;
  bottom: 0;
  display: inline-block;
  width: calc(100% + 20px);
  height: 8px;
  background: repeating-linear-gradient(-45deg, #FFEAE4, #FFEAE4 4px, #FCD0C2 0, #FCD0C2 13px);
  border-radius: 30px;
  transform: translateX(-50%) rotate(0deg);
}

article.course .course_list ul li .text_area p {
  font-size: clamp(12px, 0.83vw, 16px);
  line-height: calc(40 / 16);
  letter-spacing: 0.05em;
}

@media screen and (max-width:1024px) {
  article.course .course_list ul li .text_area {
    transform: rotate(0.08deg);
  }
}

article.course .course_list ul li .btn_area .btn01 {
  margin: auto;
}

article.course .flow_area {
  margin-top: 60px;
  padding: 60px 0 70px;
  background-color: #E5F5FF;
}

/*tb*/
@media screen and (max-width:1024px) {
  article.course .w126 {
    width: 96%;
  }
}

/*sp*/
@media screen and (max-width:610px) {
  article.course .course_list ul {
    display: block;
  }

  article.course .course_list ul li+li {
    margin-top: 50px;
  }

  article.course .course_list ul li.move {
    animation: 0.75s 0.5s forwards course-list;
  }

  article.course .course_list ul li.move:nth-of-type(2) {
    animation-delay: 0.5s;
  }

  @keyframes course-list {
    from {
      opacity: 0;
      transform: translateY(30px);
    }

    to {
      opacity: 1.0;
      transform: translateY(0);
    }
  }

}

/*flow*/
article.course .flow_area {
  display: none;
}

article.course .flow_area.active {
  display: block;
}

article.course .flow_area .flow_heading {
  text-align: center;
  margin-bottom: 60px;
}

article.course .flow_area .flow_heading img {
  width: clamp(20px, 1.67vw, 32px);
  margin-bottom: 10px;
}

article.course .flow_area .flow_heading h3 {
  font-size: clamp(20px, 1.67vw, 32px);
  font-weight: bold;
  color: #555;
  letter-spacing: 0.05em;
  transform: rotate(0.03deg);
}

article.course .flow_area .flow_heading h3 span {
  color: #F18A69;
}

article.course .flow_area .flow {
  position: relative;
  display: flex;
  gap: clamp(10px, 1.51vw, 29px);

}

article.course .flow_area .flow:not(:last-of-type) {
  padding-bottom: clamp(110px, 5.73vw, 110px);
}

article.course .flow_area .flow:not(:last-of-type):before {
  content: "";
  position: absolute;
  left: clamp(31.5px, 2.6vw, 50px);
  width: 3px;
  height: 0;
  background: #60ADD4;
  transform: translateX(-50%);
}

article.course .flow_area.active .flow.move:not(:last-of-type):before {
  animation: 1.5s 0.2s forwards ease-in-out flow-line;
}

@keyframes flow-line {
  from {
    height: 0;
  }

  to {
    height: 100%;
  }
}

article.course .flow_area .flow .step {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(63px, 5.21vw, 100px);
  height: clamp(63px, 5.21vw, 100px);
  font-size: clamp(10px, 0.73vw, 14px);
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.05em;
  text-align: center;
  background-color: #60ADD4;
  border-radius: 50%;
}

article.course .flow_area .flow .step p {
  transform: rotate(0.03deg);
}

@media screen and (max-width:1024px) {
  article.course .flow_area .flow .step p {
    transform: rotate(0.08deg);
  }
}

article.course .flow_area .flow .img_area {
  position: relative;
  z-index: 2;
  width: 19.27vw;
  max-width: 370px;
}

article.course .flow_area .flow .text_area {
  position: absolute;
  z-index: 1;
  top: clamp(2.86vw, 2.86vw, 55px);
  right: 0;
  width: calc((946/1260)*100%);
  padding: 1.82vw 5.21vw 1.82vw clamp(130px, 10.94vw, 210px);
  border-radius: 10px;
  background: #fff;
  filter: drop-shadow(5px 5px 0px #60add4);
}

@media screen and (min-width:1921px) {
  article.course .flow_area .flow .text_area {
    padding: 35px 100px 35px 210px;
  }
}

@media screen and (max-width:1100px) {
  article.course .flow_area .flow .text_area {
    padding-right: 25px;
    padding-left: 120px;
  }
}

article.course .flow_area .flow .text_area :is(h4, p) {
  font-weight: bold;
  letter-spacing: 0.05em;
  transform: rotate(0.03deg);
}

@media screen and (max-width:1024px) {
  article.course .flow_area .flow .text_area :is(h4, p) {

    transform: rotate(0.08deg);
  }
}

article.course .flow_area .flow .text_area h4 {
  font-size: clamp(14px, 0.94vw, 18px);
  color: #60ADD4;
  margin-bottom: 0.78vw;
}

article.course .flow_area .flow .text_area p {
  font-size: clamp(12px, 0.83vw, 16px);
  color: #555;
  line-height: calc(32 / 16);
}

article.course .flow_area .course-cost {
  position: relative;
  margin-top: clamp(130px, 6.77vw, 130px);
  padding: 35px 40px;
  border-radius: 10px;
  background-color: #6BB9E1;
  overflow: hidden;
}

article.course .flow_area .course-cost .text_area p {
  font-weight: bold;
  text-align: center;
  transform: rotate(0.03deg);
}

@media screen and (max-width:1024px) {
  article.course .flow_area .course-cost .text_area p {
    transform: rotate(0.08deg);
  }
}

article.course .flow_area .course-cost .text_area>p {
  font-size: clamp(14px, 1.04vw, 20px);
  color: #fff;
  line-height: calc(42 /20);
  letter-spacing: 0.05em;
  margin-bottom: clamp(20px, 1.56vw, 30px);
}

article.course .flow_area .course-cost .text_area .cost_area {
  padding: 30px 0;
  border-radius: 10px;
  background-color: #fff;
}

article.course .flow_area .course-cost .text_area .cost_area>p {
  font-size: clamp(20px, 1.82vw, 35px);
  color: #555;
  line-height: 1.0;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

article.course .flow_area .course-cost .text_area .cost_area>p span {
  color: #F18A69;
}

article.course .flow_area .course-cost .text_area .cost_area .cost p {
  font-size: clamp(20px, 1.82vw, 35px);
  color: #555;
  line-height: 1.0;
  letter-spacing: 0.05em;
}

article.course .flow_area .course-cost .text_area .cost_area .cost p span {
  font-size: clamp(25px, 3.39vw, 65px);
  font-family: var(--barlow);
  font-weight: bold;
  color: #F18A69;
  padding: 0 10px;
}

article.course .flow_area .course-cost .cost-deco {
  position: absolute;
  left: 20px;
  bottom: -10px;
  width: clamp(150px, 11.25vw, 216px);
}

/*tb*/
@media screen and (max-width:1024px) {
  article.course .flow_area .flow .img_area {
    width: 24.9vw;
    min-width: 230px;
  }

  article.course .flow_area .course-cost {
    margin-top: 100px;
  }

}

@media screen and (max-width:860px) {
  article.course .flow_area .flow .img_area {
    min-width: 210px;
  }
}

/*sp*/
@media screen and (max-width:767px) {
  article.course .flow_area .flow .img_area {
    width: 26.08vw;
    min-width: 170px;
  }

  article.course .flow_area .course-cost {
    margin-top: 150px;
  }

  article.course .flow_area .course-cost .cost-deco {
    width: clamp(100px, 18.25vw, 216px);
  }
}

@media screen and (max-width:610px) {
  article.course .flow_area .flow {
    flex-wrap: wrap;
    row-gap: 0;
  }

  article.course .flow_area .flow .img_area {
    width: calc(100% - 73px);
    max-width: initial
  }

  article.course .flow_area .flow .img_area img {
    width: 100%;
  }

  article.course .flow_area .flow .text_area {
    position: relative;
    z-index: 3;
    width: calc(100% - 73px - 30px);
    margin-top: -45px;
    margin-right: 15px;
    margin-left: auto;
    padding: 19px 25px;
  }

  article.course .flow_area .flow:not(:last-of-type) {
    padding-bottom: 40px;
  }

  article.course .flow_area .course-cost {
    margin-top: 80px;
    padding: 30px 24px;
  }

  article.course .flow_area .course-cost .text_area>p {
    font-size: 13px;
  }

  article.course .flow_area .course-cost .text_area .cost_area {
    padding: 20px 0;
  }

  article.course .flow_area .course-cost .text_area .cost_area>p {
    font-size: clamp(17px, 1.82vw, 35px);
    line-height: 1.5;
    margin-bottom: 10px;
  }

  article.course .flow_area .course-cost .text_area .cost_area .cost {
    position: relative;
    z-index: 4;
  }

  article.course .flow_area .course-cost .cost-deco {
    left: 8px;
  }
}

@media screen and (min-width:611px) {
  br.w61 {
    display: none;
  }
}

/*=====================================
event
=======================================*/
article.event {
  padding: 90px 0 60px;
}

article.event .lead {
  margin-bottom: clamp(25px, 2.6vw, 50px);
}

article.event .lead p {
  font-size: clamp(12px, 0.83vw, 16px);
  font-weight: bold;
  color: #555;
  letter-spacing: 0.05em;
  line-height: calc(32 / 16);
  text-align: center;
  transform: rotate(0.03deg);
}

@media screen and (max-width:1024px) {
  article.event .lead p {
    transform: rotate(0.08deg);
  }
}

article.event ul.event_list {
  display: grid;
  gap: clamp(10px, 1.04vw, 20px);
  grid-template-columns: repeat(2, 1fr);
}

article.event ul.event_list li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  row-gap: 0;
  padding: clamp(15px, 2.08vw, 40px);
  border-radius: 5px;
  background: repeating-linear-gradient(-50deg, #FFF4F0, #FFF4F0 3px, #FFECE5 0, #FFECE5 12px);
}


article.event ul.event_list li .text_area {
  position: relative;
  z-index: 1;
  padding: clamp(10px, 1.04vw, 20px) clamp(15px, 1.56vw, 30px);
  padding-right: 20px;
  margin-top: clamp(10px, 1.04vw, 20px);
  border-radius: 5px;
  background-color: #fff;
  overflow: hidden;
}

article.event ul.event_list li .text_area h3 {
  font-size: clamp(14px, 0.83vw, 16px);
  font-weight: bold;
  line-height: calc(32 / 16);
  letter-spacing: 0.05em;
  color: #F18A69;
  margin-bottom: clamp(10px, 0.78vw, 15px);
  transform: rotate(0.03deg);
}

article.event ul.event_list li .text_area p {
  font-size: clamp(12px, 0.83vw, 16px);
  line-height: calc(32 / 16);
  letter-spacing: 0.05em;
  color: #555;
  transform: rotate(0.03deg);
}

article.event ul.event_list li .text_area p:last-of-type {
  margin-top: clamp(10px, 0.78vw, 15px);
  padding-right: 10px;
}

article.event ul.event_list li .text_area .deco {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: clamp(45px, 3.49vw, 67px);
}

/*tb*/
@media screen and (max-width:1024px) {
  article.event .contents_area.w126 {
    width: 96%;
  }

  article.event ul.event_list li .text_area h3 {
    transform: rotate(0.08deg);
  }

  article.event ul.event_list li .text_area p {
    transform: rotate(0.08deg);
  }
}

/*sp*/
@media screen and (max-width:767px) {
  article.event .lead p {
    text-align: start;
  }
}

@media screen and (max-width:610px) {
  article.event ul.event_list {
    grid-template-columns: 1fr;
  }
}

/*=====================================
faq
=======================================*/
article.faq {
  padding: 60px 0;
}

article.faq .contents {
  padding: 20px;
  border-radius: 10px;
  background-color: #9ED3F4;
}

article.faq .contents+.contents {
  margin-top: 20px;
}

article.faq .qa {
  padding: 25px 30px;
  padding: clamp(20px, 1.3vw, 25px) clamp(20px, 1.56vw, 30px);
  border-radius: 10px;
  background-color: #fff;
}

article.faq .question {
  position: relative;
  gap: 10px;
  cursor: pointer;
}

article.faq .question .q {
  font-size: clamp(15px, 1.3vw, 25px);
  font-weight: bold;
  line-height: 1.0;
  color: #60ADD4;
  transform: rotate(0.03deg);
}

article.faq .question h3 {
  font-size: 18px;
  font-size: clamp(14px, 0.94vw, 18px);
  font-weight: bold;
  color: #555;
  padding-right: 100px;
  letter-spacing: 0.05em;
  transform: rotate(0.03deg);
}

article.faq .question .btn {
  position: absolute;
  right: 38px;
  text-align: center;
  transform: translateY(-50%);
  top: 50%;
}

article.faq .question .btn p {
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #89CAEB;
  transform: rotate(0.03deg);
}

article.faq .deco {
  height: 0;
  opacity: 0;
  margin-top: -4px;
  transition: 1.0s ease-out;
}

article.faq .deco.active {
  height: auto;
  opacity: 1.0;
  transition: 1.0s ease-out;
}

article.faq .answer {
  display: none;
  opacity: 0;
  font-size: 18px;
  font-size: clamp(14px, 0.94vw, 18px);
  font-weight: bold;
  line-height: calc(32 / 18);
  color: #60ADD4;
  padding: clamp(15px, 1.3vw, 25px) clamp(20px, 1.56vw, 30px) 0;
  transform: rotate(0.03deg);
}

article.faq .answer.active {
  opacity: 1.0;
}


@media screen and (max-width:1024px) {
  article.faq .contents_area.w126 {
    width: 96%;
  }

  article.faq .quesiton .q {
    transform: rotate(0.08deg);
  }

  article.faq .question .q h3 {
    transform: rotate(0.08deg);
  }

  article.faq .question .btn p {
    transform: rotate(0.08deg);
  }

  article.faq .answer {
    transform: rotate(0.08deg);
  }

}

@media screen and (max-width:767px) {
  article.faq .contents {
    padding: 15px;
  }

  article.faq .question h3 {
    padding-right: 50px;
  }

  article.faq .question .btn {
    right: 5px;
  }
}

/*=====================================
contact
=======================================*/
article.contact {
  padding: 60px 0;
  background-color: #9CCCEB;
}

article.contact .heading_area .heading h2 {
  color: #fff;
}

article.contact .contact_area {
  margin-top: 40px;
}

article.contact .contents {
  padding: 40px 80px;
  background-color: #fff;
  border-radius: 10px;
}

article.contact .contents .lead {
  padding: 25px 40px;
  border-radius: 10px;
  background-color: #E7F6FF;
}

article.contact .contents .lead p {
  font-size: 16px;
  font-weight: bold;
  color: #555;
  line-height: calc(30 / 16);
  letter-spacing: 0.05em;
  transform: rotate(0.03deg);
}

article.contact .contents .contact {
  gap: 60px;
  padding: 30px 40px;
}

article.contact .contents .contact+.contact {
  border-top: 1px solid #C1C1C1;
}

article.contact .contents .contact:nth-of-type() {
  border-bottom: 1px solid #C1C1C1;
}

article.contact .contents .contact h3 {
  min-width: 162px;
  font-size: 18px;
  color: #60ADD4;
  letter-spacing: 0.05em;
  transform: rotate(0.03deg);
}

article.contact .contents .contact p {
  width: 100%;
}

article.contact .contents .contact :is(input, textarea) {
  width: 100%;
  font-family: var(--mPlusR);
  color: #555;
  padding: 5px;
  border: #C1C1C1 solid 1px;
  border-radius: 5px;
  transform: rotate(0.03deg);
}

article.contact .contents .contact input {
  height: 30px;
}

article.contact .contents .contact textarea {
  resize: none;
  min-height: 166px;
}

article.contact .contents .contact_btn {
  width: fit-content;
  margin: auto;
  text-align: center;
  transform: rotate(0.08deg);
}

article.contact .contents .contact_btn input[type="checkbox"] {
  display: none;
}

article.contact .contents .contact_btn input[type="checkbox"]+span {
  position: relative;
  font-weight: bold;
  color: #555;
  letter-spacing: 0.05em;
  padding-left: 27px;
  cursor: pointer;
}

article.contact .contents .contact_btn input[type="checkbox"]+span:after,
article.contact .contents .contact_btn input[type="checkbox"]+span:before {
  position: absolute;
  content: "";
  display: block;
  top: calc(50% - 2px);
  left: calc(50% - 25px);
}

article.contact .contents .contact_btn input[type="checkbox"]+span:before {
  left: 6px;
  margin-top: -7px;
  width: 7px;
  height: 11px;
  border-right: 2px solid #60ADD4;
  border-bottom: 2px solid #60ADD4;
  transform: rotate(45deg);
  opacity: 0;
  z-index: 2;
}

article.contact .contents .contact_btn input[type="checkbox"]:checked+span:before {
  opacity: 1;
}

article.contact .contents .contact_btn input[type="checkbox"]+span:after {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 0;
  width: 18px;
  height: 18px;
  background: #fff;
  border: 1px solid #60ADD4;
  border-radius: 3px;
  z-index: 1;
  transform: translateY(-50%);
}


article.contact .contents .contact_btn input[type="submit"] {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mPlusR);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #fff;
  min-width: 250px;
  max-height: 65px;
  margin: 10px auto 0;
  padding: 15px 45px;
  border-radius: 50px;
  border: none;
  background: #F18A69;
  cursor: pointer;
  transform: rotate(0.03deg);
}

article.contact .contents .contact_btn input[type="submit"]+.deco:after {
  content: "";
  position: absolute;
  width: 27px;
  height: 26px;
  background-image: url(img/btn/btn-deco1.svg);
  transform: translateY(-50%);
  right: 112px;
  bottom: 3px;
  pointer-events: none;
}

@media screen and (max-width:1500px) {
  article.contact .contents {
    padding: 25px 30px;
  }
}

/*tb*/
@media screen and (max-width:1024px) {
  article.contact .w126 {
    width: 96%;
  }

  article.contact .contents .lead p {
    transform: rotate(0.08deg);
  }

  article.contact .contents .contact h3 {
    transform: rotate(0.08deg);
  }
}

/*sp*/
@media screen and (max-width:767px) {
  article.contact .contents .lead p {
    font-size: 14px;
  }

  article.contact .contents .contact {
    padding: 20px;
  }

  article.contact .contents .contact h3 {
    font-size: 14px;
  }

  article.contact .contents .contact :is(input, textarea) {
    font-size: 14px;
  }
}

@media screen and (max-width:610px) {
  article.contact .contents {
    padding: 25px 15px;
  }

  article.contact .contents .lead {
    padding: 25px 20px;
  }

  article.contact .contents .contact {
    flex-wrap: wrap;
    gap: 5px;
  }

  article.contact .contents .contact h3 {
    width: 100%;
  }

  article.contact .contents .contact :is(input, textarea) {
    width: 100%;
  }

  article.contact .contents .contact_btn input[type="checkbox"]+span {
    font-size: 11px;
	padding-left: 20px;
  }

  article.contact .contents .contact_btn input[type="submit"] {
    font-size: 16px;
    min-width: 200px;
    max-height: 55px;
  }

  article.contact .contents .contact_btn input[type="submit"]+.deco:after {
    bottom: 0px;
    right: 75.5px;
  }

  article.contact .contents .contact_btn input[type="checkbox"]+span:after {
    width: 13px;
    height: 13px;
  }

  article.contact .contents .contact_btn input[type="checkbox"]+span:before {
	left:4.2px;
    margin-top: -4px;
    width: 4px;
    height: 8px;
  }
}


/*=====================================
cta
=======================================*/
article.cta {
  padding: 45px 0;
  /*background: linear-gradient(200deg, #e5f5ff 0%, #b1d8f1 38.17%, #9ed4f6 70.09%, #9ccceb 100%);*/
  background: #6bb9e1;
  overflow: hidden;
}

article.cta .cta-contents_area .cta_heading h2 {
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  line-height: calc(55 / 32);
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 13px;
}

article.cta .cta-contents_area .cta-contents {
  position: relative;
}

article.cta .cta-contents_area .cta-contents .cta-btn_area {
  width: 250px;
  margin: auto;
  text-align: center;
}

article.cta .cta-contents_area .cta-contents .cta-btn_area .cta-serif img:nth-of-type(1) {
  position: relative;
  transform: translateY(33px);
  z-index: 1;
  opacity: 0;
}

article.cta .cta-contents_area .cta-contents .cta-btn_area .cta-serif img:nth-of-type(2) {
  position: absolute;
  top: 33px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  transition: 0.3s;
  opacity: 0;
}

article.cta.move .cta-contents_area .cta-contents .cta-btn_area .cta-serif img:nth-of-type(1) {
  animation: 0.75s 1.0s forwards ease-out serif-anime;
}

@keyframes serif-anime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1.0;
  }
}

article.cta.move .cta-contents_area .cta-contents .cta-btn_area .cta-serif img.active:nth-of-type(2) {
  opacity: 1.0;
  transition: 0.3s;
}

article.cta .cta-contents_area .cta-contents .cta-btn_area .cta-cat {
  position: relative;
  opacity: 0;
  z-index: 3;
}

article.cta.move .cta-contents_area .cta-contents .cta-btn_area .cta-cat {
  animation: 0.75s 0.3s forwards cubic-bezier(0.42, 0, 0.28, 0.76) cta_cat-anime;
}

@keyframes cta_cat-anime {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1.0;
    transform: translateY(4px);
  }
}

article.cta .cta-contents_area .cta-contents .cta-btn_area .btn01 {
  position: relative;
  z-index: 4;
  width: 100%;
}

article.cta .cta-contents_area .cta-contents .cta-btn_area .btn01 a {
  min-height: 65px;
  font-size: 22px;
}


article.cta .cta-contents_area .cta-contents .cta-btn_area .btn01 a img{
  right:14.5px;
}

@media (any-hover:hover) {
  article.cta .cta-contents_area .cta-contents .cta-btn_area .btn01:hover {
    opacity: 1.0;
  }
}

article.cta .cta-contents_area .cta-contents :is(.left-img, .right-img) {
  position: absolute;
}

article.cta .cta-contents_area .cta-contents .left-img {
  left: 0;
  bottom: -3.65vw;
  width: 8.75vw;
  min-width: 125px;
  opacity: 0;
}

article.cta.move .cta-contents_area .cta-contents .left-img {
  animation: 0.75s 0.5s forwards cubic-bezier(0.68, -0.17, 0.01, 1.44) cta_left-img;
}


@keyframes cta_left-img {
  from {
    opacity: 0;
    transform: translateX(-15px);
  }

  to {
    opacity: 1.0;
    transform: translateX(0);
  }
}

article.cta .cta-contents_area .cta-contents .right-img {
  right: 0;
  bottom: -4.01vw;
  width: 8.65vw;
  min-width: 125px;
  opacity: 0;
}

article.cta.move .cta-contents_area .cta-contents .right-img {
  animation: 0.75s 0.8s forwards cubic-bezier(0.68, -0.17, 0.01, 1.44) cta_right-img;
}

@keyframes cta_right-img {
  from {
    opacity: 0;
    transform: translateX(15px);
  }

  to {
    opacity: 1.0;
    transform: translateX(0);
  }
}

@media screen and (min-width:1921px) {
  article.cta .cta-contents_area .cta-contents .left-img {
    bottom: -52px;
    max-width: 168px;
  }

  article.cta .cta-contents_area .cta-contents .right-img {
    bottom: -77px;
    max-width: 166px;
  }
}

@media screen and (max-width:1500px) {
  article.cta .cta-contents_area .cta-contents .left-img {
    bottom: -51px;
  }

  article.cta .cta-contents_area .cta-contents .right-img {
    bottom: -71px;
  }
}

@media screen and (max-width:1024px) {
  article.cta .cta-contents_area .cta-contents {
    width: 80%;
  }

  article.cta .cta-contents_area .cta_heading h2 {
    font-size: 27px;
  }
}

@media screen and (max-width:767px) {
  article.cta .cta-contents_area .cta-contents {
    width: 100%;
  }

  article.cta .cta-contents_area .cta_heading h2 {
    font-size: 20px;
  }

  article.cta .cta-contents_area .cta-contents .cta-btn_area {
    width: 200px;
  }

  article.cta .cta-contents_area .cta-contents .left-img {
    min-width: 113px;
  }

  article.cta .cta-contents_area .cta-contents .right-img {
    min-width: 112px;
  }

  article.cta .cta-contents_area .cta-contents .cta-btn_area .btn01 a {
    min-height: 55px;
    font-size: 18px;
  }
}

/*=====================================
float bnr
=======================================*/
.float_bnr{
  position: fixed;
  z-index: 9995;
  right: clamp(10px,3.49vw,67px);
  bottom: -145px;
  width: clamp(135px,13.7vw,263px);
  transition: 0.75s cubic-bezier(0.68, -0.17, 0.01, 1.44);
  pointer-events:none;
  opacity:0;
}

.float_bnr.active{
  bottom: clamp(20px,3.49vw,50px);
  opacity:1.0;
	pointer-events:initial;
  transition: 0.75s cubic-bezier(0.68, -0.17, 0.01, 1.44);
}

@media (any-hover:hover){
  .float_bnr:hover{
    opacity: 0.75;
  } 
}

@media screen and (max-width:1024px) {
  .float_bnr{
    bottom: -80px;
  }
}

@media screen and (max-width:767px) {
  .float_bnr{
    bottom: -30px;
  }
}

/*=====================================
thanks
=======================================*/
#page .contents{
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 38px);
  text-align: center;
  padding:0 10px;
}

#page .contents p {
  font-size: clamp(16px, 1.04vw, 20px);
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 2.0;
  color: #555;
  transform: rotate(0.03deg);
}

#page .contents .thanks_btn {
  justify-content: center;
  letter-spacing: 0.05em;
  width: 240px;
  height: 55px;
  margin: 35px auto 0;
  background: #F18A69;
  border-radius:50px;
  transition:0.3s;
}

.thanks_btn > div{
  width:100%;
  height:100%;
}

#page .contents .thanks_btn a {
  display:flex;
  align-items:center;
  justify-content:center;
  height:100%;
  font-size: clamp(16px, 1.04vw, 20px);
  font-weight: bold;
  color: #fff;
  font-size: 16px;
  padding:0;
  
  background-color:transparent;
  transform: rotate(0.03deg);
  transition: 0.3s;
}

@media (any-hover:hover) {
  #page .contents .thanks_btn:hover {
    opacity: 0.75;
  }
}

@media screen and (max-width:1024px) {
  #page .contents p {
    transform: rotate(0.08deg);
  }

  #page .contents .thanks_btn {
    transform: rotate(0.08deg);
  }
}

@media screen and (max-width:767px) {
  #page .contents p {
    text-align: start;
  }
}

/*=====================================
footer
=======================================*/
footer .footer-menu_area {
  align-items: center;
  justify-content: space-between;
  padding: 25px 0;
}

footer .footer-menu_area .logo {
  width: 153px;
}

footer .footer-menu_area ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

footer .footer-menu_area ul li {
  transform: rotate(0.03deg);
}

@media screen and (max-width:1024px) {
  footer .footer-menu_area ul li {
    transform: rotate(0.08deg);
  }
}

footer .footer-menu_area ul li a {
  position: relative;
  font-family: var(--mPlusR);
  font-size: 16px;
  letter-spacing: 0.05em;
  color: #555;
  transition: 0.3s;
}

footer .footer-menu_area ul li a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background-color: #F18A69;
  border-radius: 5px;
  transform: scale(0, 1);
  transition: 0.3s;
}

@media (any-hover:hover) {
  footer .footer-menu_area ul li a:hover {
    color: #F18A69;
  }

  footer .footer-menu_area ul li a:hover:after {
    transform: scale(1, 1);
  }
}

@media screen and (max-width:1300px) {
  footer .footer-menu_area .logo {
    width: 130px;
  }

  footer .footer-menu_area {
    gap: 25px;
  }

  footer .footer-menu_area ul {
    gap: 15px;
  }

  footer .footer-menu_area ul li a {
    font-size: 14px;
  }
}

footer .copyright {
  padding: 10px 0;
  background-color: #E6F5FF;
}

footer .copyright p {
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #555;
  text-align: center;
  transform: rotate(0.03deg);
}

/*tb*/
@media screen and (max-width:1024px) {
  footer .w126 {
    width: 96%;
  }

  footer .footer-menu_area {
    display: block;
  }

  footer .footer-menu_area .logo {
    width: 100px;
    margin-bottom: 20px;
  }

  footer .footer-menu_area ul {
    flex-wrap: wrap;
    row-gap: 25px;
  }

  footer .footer-menu_area ul li {
    width: calc(50% - 10px);
    font-size: 12px;
  }


  footer .copyright p {
    transform: rotate(0.08deg);
  }
}


/*=====================================
*
*pc
*
=======================================*/
@media screen and (min-width: 1025px) {
  .sp {
    display: none;
  }

  .tb {
    display: none;
  }

  .sp_tb {
    display: none;
  }
}

/*=====================================
*
*tb
*
=======================================*/
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .pc {
    display: none;
  }

  .sp {
    display: none;
  }

  .tb {
    display: inherit;
  }

  .tb_pc {
    display: inherit;
  }

  .sp_tb {
    display: inherit;
  }
}

/*=====================================
*
*sp
*
=======================================*/
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }

  .tb_pc {
    display: none;
  }

  .sp {
    display: inherit;
  }

  .tb {
    display: none;
  }

  .sp_tb {
    display: inherit;
  }
}