@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=BIZ+UDPGothic:wght@400;700&family=BIZ+UDPMincho:wght@400;700&family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Waterfall&display=swap');

/* reset */

*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
    all: unset;
    display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Fix mobile Safari increase font-size on landscape mode */
html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
    cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu, summary {
    list-style: none;
}

/* For images to not be able to exceed their container */
img {
    max-inline-size: 100%;
    max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
    border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
    -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
    white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
    -webkit-appearance: revert;
    appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
    all: revert;
    box-sizing: border-box;
}

/* reset default text opacity of input placeholder */
::placeholder {
    color: unset;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
    display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable="false"])) {
    -moz-user-modify: read-write;
    -webkit-user-modify: read-write;
    overflow-wrap: break-word;
    -webkit-line-break: after-white-space;
    -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable="true"]) {
    -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
    all: revert;
    box-sizing: border-box;
}

/* Remove details summary webkit styles */
::-webkit-details-marker {
    display: none;
}

/* common */
:root {
    --padding: 80px;
    --base-color: #D9D1D8;
    --button:#B40C72;
    --primary-color: #D24091;
    --pink_strong:#D5328C;
    --pink_dark:#F74EA6;
    --pink_medium:#FF81BB;
    --pink_light:#FFAFCF;
    --pink_pale:#FFD8E5;
    --navy:#002A7C;
    --navy_dark:#00184E;
    --blue_dark:#214298;
    --blue_medium:#3D5BB2;
    --blue_medium02:#5774CC;
    --blue_light: #8FA9FF;
    --blue_light02: #B6C6FF;
    --blue_pale:#DEE3FF;
    --gray_strong:#282429;
    --gray_dark:#3E393E;
    --gray_medium:#878187;
    --gray_light:#A29BA1;
    --gray_pale:#F6EDF4;
}

html{
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
  
body {
  font-family: "BIZ UDPGothic", serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: 1px;
  background:var(--base-color);
  color: var(--gray_dark);
  font-size:16px;
  overflow-x: hidden;
  position:relative;
  background: var(--pink_light);
}
  
a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover{
  text-decoration: underline;
}

img {
  object-fit: cover;
}


/* loading */

#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: white;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.anime {
  width: 260px;
  height: 90px;
  margin: 200px auto;
  border-radius: 100%;
  animation: sk-scaleout 1s infinite ease-in-out;
  display:flex;
  justify-content: center;
}

.anime img{
  width:100%;
}

.loaded {
  opacity: 0;
  visibility: hidden;
}


/* main */ 

.main-case{
  width:100%;
  padding-left:400px;
  display:flex;
  justify-content: center;
}

@media screen and (max-width: 900px) {
  .main-case{
    padding-left:0;
  }

  .button-box{
    width: 440px;
    margin: 0 auto;
    position: relative;
  }
}

@media screen and (max-width: 440px) {
  .button-box{
    width: 100%;
  }
}

main{
  width:440px;
  margin:0 auto 40px auto;
  overflow-x: hidden;
  border-bottom-left-radius:8px;
  border-bottom-right-radius:8px;
  padding-top:10px;
}

@media screen and (max-width: 460px) {
  main{
  margin:0 auto;
}
}

@media screen and (max-width: 440px) {
  .main{
    width:100%;
  }
}

section{
  width:100%;
  position:relative;
  background:white;
}

.inner{
  width:calc(100% - 34px);
  margin:0 auto;
  padding:80px 0 20px 0;
}


/*  button */

.login_btn{
  display:block;
  width:92px;
  height:28px;
  border-radius:8px;
  background:var(--primary-color);
  color:white;
  font-size:0.75em;
  font-weight:700;
  line-height:28px;
  text-align:center;
  display:flex;
  align-items: center;
  justify-content: center;
  gap:4px;
  z-index:6;
}

.login_btn:hover{
  text-decoration: none;
  background:var(--pink_dark);
}

.signup_btn{
  width:100%;
  height:64px;
  border-radius:32px;
  background:var(--button);
  color:white;
  font-size:1.25em;
  font-weight:700;
  letter-spacing: 5px;
  line-height:64px;
  border:2px solid white;
  text-align:center;
  overflow: hidden;
  text-transform: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  
  &.shiny:after{
    position:absolute;
    top:-200%;
    left:-150%;
    content:"";
    height:500%;
    width:70px;
    background:linear-gradient(90deg, rgba(255,255,255,0),rgba(255,255,255,0.6) 40%,rgba(255,255,255,0),rgba(255,255,255,0.6),rgba(255,255,255,0));
    transform: rotate(60deg);
    animation:3s shine infinite linear;
    opacity:.8;
  }
}

@keyframes shine{
  0%{
    left:-100%;
  }
  80%{
    left:150%;
  }
  100%{
    left:150%;
  }
}

.signup_btn:hover{
  text-decoration: none;
  background:var(--primary-color);
  box-shadow:0 1px 10px white;
}

.line_btn{
  display:block;
  width:fit-content;
  max-width:100%;
  height:46px;
  border-radius:32px;
  background:white;
  font-size:0.8em;
  font-weight:700;
  letter-spacing: 1px;
  line-height:64px;
  padding:0 32px;
  display:flex;
  justify-content: center;
  align-items: center;
  gap:8px;
  margin: 20px auto;
}

nav .line_btn{
  border:1px solid var(--button);
}

.line_btn:hover{
  text-decoration: none;
  box-shadow:0 1px 10px white;
}

@media screen and (max-width: 460px) {
  .line_btn:hover{
    border:2px solid var(--primary-color);
  }
}

.fixed_btn{
  display:block;
  width:100%;
  height:64px;
  border-radius:32px;
  background-image: linear-gradient(to bottom, #90E77E, #06c755 40%, #28901D 80%);
  color:white;
  font-size:1.25em;
  font-weight:700;
  letter-spacing: 5px;
  line-height:64px;
  border:2px solid white;
  text-align:center;
  box-shadow:1px 2px 16px #373737;
}

.fixed_btn:hover{
  text-decoration: none;
  background-image: linear-gradient(to bottom, #90E77E 20%, #06c755 60%, #28901D);
}

@media screen and (max-width: 700px) {
  .fixed_btn{
  border-top-left-radius:0;
  border-bottom-left-radius:0;
  border:none;
  font-size:1.1em;
  letter-spacing: 3px;
  }
}

/* header */

header{
  width:100%;
  margin:0 auto;
  padding:20px;
  position:relative; 
  background:white;
  display:flex;
  justify-content: space-between;
  position:fixed;
}

h1 img{
  width:153px;
}

.pc-layout{
  position:fixed;
  top:0;
  left:0;
  width:100vw;
  height:100vh;
  background-image: linear-gradient(to bottom, #ff70C0, var(--pink_light));
  z-index:-2;
}

.pc-layout:after{
  position:absolute;
  content:"";
  top:0;
  left:0;
  width:100vw;
  height:100vh;
  background-image: url("../images/bg.svg");
  background-repeat: repeat;
  background-size: 400px;
  opacity: .2;
}

header .nav{
  display:none;
}

.header-nav{
  width:350px;
  position:fixed;
  top:120px;
  right:calc(50% + 70px);
}


@media screen and (max-width: 900px) {
  .header-nav{
    display:none;
  }
}

.header-nav ul{
  background:rgb(255 255 255 / 71%);
  padding:36px 32px;
  border-radius:8px;
  box-shadow:0px 2px 20px var(--primary-color);
}

.header-nav ul li{
  list-style: none;
  margin-bottom:20px;
  font-weight:700;
}

.header-nav ul li a:hover{
  text-decoration:none;
  padding-left:8px;
}

.header-nav ul li:last-child{
  margin-bottom:0;
}

.cv-pc{
  background:var(--navy);
  border-radius:8px;
  color:white;
  padding:20px 20px 12px 20px;
  text-align:center;
  margin-top:40px;
  box-shadow:0px 2px 20px var(--primary-color);
}

.cv-pc h2{
  font-size:1.5em;
  padding-bottom:16px;
}

.sp{
  display:none;
}



/* title */

h2{
  font-size:2.2em;
  font-weight: 700;
  line-height:1.4;
  letter-spacing:0.1em;
  color:white;
  text-align:center;
  margin:0 auto;
  padding-bottom: 28px;
}

@media screen and (max-width: 420px) {
  h2{
    font-size:1.8em;
  }
}

h2 p{
  font-size:0.6em;
  letter-spacing: 5px;
  width:100%;
}

h2 img{
  margin:0 auto 12px auto;
}

h2 span{
  font-size:0.7em;
}


/* SP ヘッダーカバー */

.sp-logo-fix{
  display:none;
}

@media screen and (max-width: 900px) {
  .sp-logo-fix{
    display:block;
    position:fixed;
    background-image: linear-gradient(to bottom, white 76%, rgb(255 255 255 / 0%));
    width:440px;
    max-width:100%;
    height:65px;
    z-index:1;
    top:0;
    left:0;
    right:0;
    margin:0 auto;
    padding:13px 0 0 15px;
    opacity: 0; /* 初期状態は非表示 */
    transform: translateY(-20px); /* 初期状態で少し上に移動 */
    transition: opacity 0.5s ease, transform 0.5s ease; /* アニメーションを設定 */
  }
}

.sp-logo-fix.visible {
  opacity: 1; /* 表示 */
  transform: translateY(0); /* 元の位置に戻る */
}

/* top */


#top{
  background-image: linear-gradient(to bottom, var(--pink_strong), var(--pink_medium));
  margin-top:42px;
  border-top-left-radius:8px;
  border-top-right-radius:8px;
}

@media screen and (max-width: 900px) {
  #top:before{
    position:absolute;
    background:var(--base-color);
    content: "";
    width:100%;
    height:80px;
    top:-55px;
    z-index:-2;
  }
}

.top-header{
  background:var(--pink_strong);
  height:35px;
  width:100%;
  border-top-left-radius:8px;
  border-top-right-radius:8px;
  position:relative;
  z-index:2;
}

.top-header .pc,
.top-header .sp{
  position:absolute;
  top:-30px;
  left:23px;
}

.top-header p{
  position:absolute;
  top:-19px;
  left:52px;
  color:white;
  letter-spacing: 5px;
  font-size:0.8em;
}

img.hero{
  position:absolute;
  top:16px;
  width:100%;
}

#top .inner{
  position:relative;
  padding:435px 0 0 0;
}

@media screen and (max-width: 900px) {
  #top .inner{
    padding: 420px 0 0 0;
  }
}

@media screen and (max-width: 420px) {
  #top .inner{
    padding:375px 0 0 0;
  }
}

@media screen and (max-width: 370px) {
  #top .inner{
    padding:335px 0 0 0;
  }
}


#top ul{
  width:100%;
  display:flex;
  justify-content:center;
}

#top h2{
  font-size:1.7em;
  letter-spacing: 7px;
}

#top h2 p:first-child{
  padding-bottom:20px;
}

#top h2 p.s_text{
  font-size:0.6em;
  letter-spacing: 16px;
  padding-top:10px;
}

.top-ribbon{
  position:absolute;
  top:0;
  right:-17px;
}

@media screen and (max-width: 1125px) {

  header .login_btn{
    position:absolute;
    top:18px;
    right:0;
    left:195px;
  }
}

@media screen and (max-width: 900px) {

  header{
    justify-content:flex-end;
  }

  header .login_btn{
    position:absolute;
    top:-9px;
    right:60px;
    left:auto;
  }

/* ここから下がハンバーガーメニューに関するCSS */

header .nav{
  display:block;
  position: absolute;
  top: -29px;
  right: 0px;
}
            
/* チェックボックスを非表示にする */
.drawer_hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer_open {
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100;/* 重なり順を一番上にする */
  cursor: pointer;
}

.drawer_open:after{
  content:"MENU";
  position:absolute;
  bottom:4px;
  font-size: 0.45em;
}

/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #333;
  transition: 0.5s;
  position: absolute;
}

/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
  bottom: 8px;
}

/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
  top: 8px;
}

#drawer_input:checked ~ .drawer_open:after{
  content:"CLOSE";
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
}
  
/* メニューのデザイン*/
.nav_content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%; /* メニューを画面の外に飛ばす */
  z-index: 99;
  background: #fff;
  transition: .5s;
}

/* メニュー黒ポチを消す */
.nav_list {
  list-style: none;
  padding-top:80px;
  text-align:center;
}

.nav_list li{
  margin-bottom:20px;
}

.nav_list li .signup_btn{
  width:360px;
  max-width:80%;
  margin:0 auto;
  font-size:1.2em;
  letter-spacing: 2px;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .nav_content {
  left: 0;/* メニューを画面に入れる */
}

  /*/////*/

  #top h1 img{
    width: 155px;
    padding-top: 8px;
    padding-left: 23px;
  }

  .top-header .pc{
    display:none;
  }

  .top-header .sp{
    display:block;
  }

  header{
    background:none;
    z-index:10;
  }

  header h1{
    display:none;
  }

  .top-header{
    background:white;
    z-index:0;
    width:440px;
  }

  .top-header p{
    color:var(--gray_medium);
    top:0;
    font-size: 0.7em;
    left: 54px;
  }

  img.hero{
    top:20px;
  }

  .top-ribbon{
    top:10px;
  }

}

@media screen and (max-width: 460px) {
  header .nav{
    right:-25px;
  }

  header .login_btn{
    right:30px;
  }

  .top-header .sp{
    left:15px;
  }

  .top-header{
    border-radius:0;
  }
  .top-header p{
    left: 48px;
  }
}

@media screen and (max-width: 420px) {

  .top-ribbon{
    top:5px;
    width:135px;
  }

}


/*  intro  */

.top-wave{
  position:absolute;
  top:-1px;
  left:0;
}

#intro h2{
  color:var(--pink_strong);
  font-size:1.5em;
  letter-spacing: 2px;
  display:flex;
  justify-content: center;
  gap:10px;
  padding-bottom:16px;
}

.fukidasi{
  background: var(--gray_medium);
  color:white;
  font-size:0.8em;
  padding:4px;
  margin:15px auto;
  position:relative;
  width:92px;
  text-align:center;
  border-radius:4px
}

.fukidasi:after{
  position:absolute;
  bottom:-9px;
  left:0;
  right:0;
  margin:0 auto;
  content:"";
  background: var(--gray_medium);
  height: calc(tan(60deg) * 12px / 2);
  width: 12px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.detail{
  font-size:0.7em;
  text-align:center;
  margin-top:10px;
}

/* target */
#target {
  background:var(--blue_pale);
}

#target:before{
  position:absolute;
  content:"";
  bottom:-60px;
  left:0;
  width:100%;
  height:65px;
  background:var(--blue_pale);
}

.blue-ribbon{
  background:var(--blue_dark);
  color:white;
  font-size:0.8em;
  font-weight:700;
  text-align:center;
  padding:4px 20px 4px 25px;
  width:245px;
  position:relative;
  transform: rotate(-8deg);
  margin-left:-20px;
}

.blue-ribbon:after{
  position:absolute;
  top:0;
  right:-1px;
  margin:0 auto;
  content:"";
  background: var(--blue_pale);
  height: calc(tan(60deg) * 34px / 2);
  width: 14px;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

#target .two-clm{
  display:flex;
  justify-content: space-between;
  width:370px;
  max-width:100%;
  padding-top:16px;
  text-align:center;
  color:var(--blue_dark);
  font-size:0.8em;
  font-weight:700;
  position:relative;
  margin:0 auto;
  gap:4px;
}

#target .two-clm img{
  width:100%;
  margin-bottom:12px;
}

#target .two-clm .check{
  position:absolute;
  top:-32px;
  right:0;
  left:0;
  margin:0 auto;
  color:var(--pink_strong);
  font-size:5em;
  font-weight:400;
  transform: rotate(-10deg);
  font-family:"Waterfall", serf;
  text-align:center;
}

/* compare */

#compare {
  background:var(--blue_dark);
  border-top-left-radius:60px;
  border-top-right-radius:60px;
}

#compare .inner{
  padding:50px 0 20px 0;
}

.feature{
  background:white;
  border-radius:8px;
  padding:60px 20px 20px 20px;
  position:relative;
  text-align:center;
  margin-top:86px;
}

.feature:first-child{
  margin-top:56px;
}

.feature img.title-deco{
  position:absolute;
  top:-57px;
  left:0;
  right:0;
  margin:0 auto;
}

.feature h3{
  position:relative;
  margin-top:-105px;
  color:var(--navy);
  line-height:1.1;
  font-size:0.8em;
  font-weight:600;
}

.feature h3 span{
  font-family:"Barlow Condensed", sans-serif;
  font-size:2.5em;
  letter-spacing: 0;
  font-weight:400;
}

.common{
  background:var(--gray_pale);
  border-radius:4px;
  border:1px solid var(--gray_light);
  width:100%;
  margin-top:12px;
}

.feature h4{
  width:100%;
  background:var(--gray_medium);
  color:white;
  font-size:1.25em;
  font-weight:700;
  padding:2px;
  border-top-left-radius:4px;
  border-top-right-radius:4px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.common h4{
  background:var(--gray_medium);
}

.feature ul{
  color:var(--gray_strong);
  padding:12px 4px 4px 4px;
}

.feature ul li{
  width:100%;
  line-height:1.2;
  list-style: none;
  margin-bottom:8px;
  font-size:0.9em;
}

.feature .arrow{
  margin:8px 0;
  width:24px;
}

.castfile{
  background:var(--pink_pale);
  border-radius:4px;
  border:1px solid var(--pink_medium);
  width:100%;
}

.castfile h4{
  background:var(--pink_strong);
}

.castfile span{
  color:var(--pink_strong);
  font-weight:700;
}

/* paper */

#paper .paper{
  height:211px;
}

#paper .inner{
  width:100%;
  position:relative;
}

#paper .p-box{
  position:relative;
}

#paper .p-wave{
  position:absolute;
  bottom:0;
  left:0;
}

#paper .bg{
  position:absolute;
  top:0;
  left:0;
  width:100%;
}

#paper .inner{
  position:relative;
  padding:8px 0 80px 0;
}

#paper h2{
  letter-spacing: 0;
  position:relative;
  padding: 8px 0 18px 0;
  line-height: 1.3;
}

#paper h2 span.big{
  color:white;
  font-size:1.2em;
  font-family:"BIZ UDPMincho", serf;
}

#paper h2 span.blue{
  color:var(--blue_light);
}

#paper h2 span.serif{
  font-family:"BIZ UDPMincho", serf;
  font-size:1em;
}


@media screen and (max-width: 410px) {
  .sp{
    display:block;
  }
}

#paper ul{
  position:relative;
}

#paper ul li{
  background:var(--gray_pale);
  padding:4px 8px;
  text-align:center;
  display:block;
  font-size:0.8em;
  font-weight:700;
  margin:0 auto 12px auto;
  display:flex;
  align-items: center;
  width:fit-content;
}

#paper ul li img{
  margin-right:8px;
}

/* merit */

#merit:before{
  position:absolute;
  top:-50px;
  left:0;
  content:"";
  width:51%;
  height:51px;
  clip-path: polygon(0 100%, 100% 100%, 0 0);
  background:white;
}

#merit:after{
  position:absolute;
  top:-50px;
  right:0;
  content:"";
  width:51%;
  height:51px;
  clip-path: polygon(100% 100%, 0 100%, 100% 0);
  background:white;
}

#merit .inner{
  width:100%;
  padding:50px 0 0 0;
  text-align:center;
}

#merit h2{
  padding-bottom:16px;
}

#merit img{
  max-width:85%;
}

.arrow{
  width:48px;
  margin:-25px 0 12px 0;
}

.plus{
  position:relative;
  padding-bottom:80px;
  margin-top:28px;
  background-image: linear-gradient(to bottom, white 30%, var(--pink_dark) 80%);
}

#merit img.bubble{
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  mix-blend-mode: screen;
  max-width:100%;
}

.plus > div{
  position:relative;
}

.plus p{
  color:white;
  font-size:1.75em;
  font-weight:700;
  letter-spacing: 2px;
  text-shadow:0px 1px 10px var(--pink_strong);
}

@media screen and (max-width: 420px) {
  .plus p{
    font-size:1.5em;
  }
}

.plus p span{
  font-size:1.3em;
}

#merit img.bottom-wave{
  max-width:100%;
}

.bottom-wave{
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
}

/* signup */

.signup{
  background:var(--navy);
  position:relative;
}

.signup .inner{
  padding:20px 0 75px 0;
  text-align:center;
}

.signup .copy{
  color:var(--blue_light02);
  font-size:1.4em;
  font-weight:700;
  letter-spacing: 2px;;
  margin-bottom:16px;
}

.microcopy{
  color:white;
  font-size:0.8em;
  letter-spacing: 2px;
  margin-bottom:10px;
}

.signup .detail{
  color:white;
  font-size: 0.7em;
  text-align: center;
  margin-top: 10px;
}

/* category */

#category{
  background:var(--blue_light02);
}

#category .inner{
  padding:20px 0 80px 0;
  color:var(--navy);
  font-weight:700;
  text-align:center;
  width:100%;
}

#category h2{
  color:var(--blue_dark);
  padding-bottom:0;
}

#category .intro-text{
  margin:0 auto 40px auto;
  line-height: 1.8;
  max-width:calc(100% - 34px);
}

.left,
.right{
  display:flex;
  width:100%;
  margin-top:12px;
}

.left div,
.right div{
  width:50%;
  display:flex;
  align-items: center;
  justify-content: center;
}

.left div p,
.right div p{
  background:white;
  padding:12px 16px;
  border-radius:8px;
  position:relative;
  width: 90%;
  text-align: left;
  font-size: 14px;
}

.left div p:after,
.right div p:after{
  position:absolute;
  content:"";
  bottom:-19px;
  left:0;
  right:0;
  margin:0 auto;
  width: 20px;
  height: 20px;
  background-color: white;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.left div p:after{
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.left div p span,
.right div p span{
  background:var(--pink_pale);
  padding:1px 2px;
}

@media screen and (max-width: 440px) {

  .left{
    position:relative;
    justify-content: flex-end;
  }

  .right{
    position:relative;
  }

  .right div{
    position:absolute;
    right:20px;
    bottom:75px;
  }

  .left div{
    position:absolute;
    left:20px;
    bottom:75px;
  }

  .left div p,
  .right div p{
    z-index:2;
    font-size:.8em;
    padding:12px;
    filter: drop-shadow(1px 2px 5px var(--blue_medium));
  }

  .left img{
    max-width:220px;
  }

  .right img{
    max-width:220px;
  }
}

@media screen and (max-width: 400px) {

  .sp_c{
    display:none;
  }

}

/* function */

#function{
  background:var(--pink_pale);
}

#function .inner{
  padding:0 0 65px 0;
}

#function h2{
  color:var(--pink_dark);

}

#function .intro-text{
  text-align:center;
  font-weight:700;
  margin-bottom:20px;
}

.function-list li{
  background:white;
  padding:8px 16px;
  display:flex;
  justify-items: center;
  margin-bottom:20px;
  color:var(--gray_strong);
  font-weight:600;
  gap:8px;
}

#function h3{
  background-image: linear-gradient(to bottom, var(--pink_strong), var(--pink_medium));
  color:white;
  font-weight:700;
  text-align:center;
  letter-spacing: 2px;
  line-height:44px;
  border-top-left-radius:12px;
  border-top-right-radius:12px;
  margin:36px 0 12px 0;
}

.function-box {
  display:flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap:8px;
  margin-bottom:28px;
}

.function-box li{
  width:calc(50% - 4px);
  background:rgb(255 255 255 / 75%);
  padding:4px 8px;
  color:var(--gray_strong);
  font-size:0.7em;
  display:flex;
  align-self: center;
  gap:4px;
}

.function-box li p{
  line-height:24px;
}

@media screen and (max-width: 440px) {
  .function-box li{
    width:100%;
    font-size:1em;
    gap:8px;
  }
}

.function-plus{
  background:white;
  border:1px solid var(--pink_strong);
  border-radius: 4px;
  margin-bottom:24px;
}

#function .function-plus h3{
  background-image: none;
  font-size:1.25em;
  line-height:1.2;
  color:var(--pink_strong);
  margin:18px 4px 12px 4px;
}

.function-plus p{
  font-size:0.8em;
  padding:0 20px 16px 20px;
}

/* start */

#start{
  background:var(--pink_light);
}

#start:before{
  position:absolute;
  content:"";
  bottom:-60px;
  left:0;
  width:100%;
  height:65px;
  background:var(--pink_light);
}

#start .inner{
  padding:20px 0 40px 0;
}

#start h2 img{
  margin-top:-8px;
}

#start .inner > div{
  display:flex;
  justify-content: space-around;
}

.circle{
  width:180px;
  height:180px;
  border-radius:90px;
  text-align:center;
  padding:15px 5px;
  background:white;
  position:relative;
}

.circle:after{
  position:absolute;
  top:5px;
  left:0;
  right:0;
  margin:0 auto;
  content:"";
  width:170px;
  height:170px;
  border-radius:85px;
  border:1px dashed var(--pink_light);
}

.circle p{
  font-size:1.25em;
  font-weight: 700;
  line-height:1.8;
  width:fit-content;
  margin:0 auto;
}

.circle .num-title{
  color:var(--pink_light);
  font-family:"Roboto", sans-serif;
  font-size:1.25em;
  font-weight:400;
  padding:0;
  border-bottom:1px solid var(--pink_light);
  margin-bottom:20px;
}

@media screen and (max-width: 415px) {
  .circle{
    width:140px;
    height:140px;
    border-radius:70px;
  }

  .circle:after{
    top:5px;
    width:130px;
    height:130px;
    border-radius:65px;
  }

  .circle p{
    line-height:1.5;
  }

  .circle .num-title{
    font-size:0.8em;
    margin-bottom:10px;
  }
}

/* voice */

#voice {
  background:var(--blue_dark);
  border-top-left-radius:60px;
  border-top-right-radius:60px;
}

#voice .inner {
  padding: 50px 0 90px 0;
}

#voice .intro-text{
  font-size:0.8em;
  color:white;
}

#voice ul{
  display:flex;
  justify-content: center;
  gap:8px;
  margin-top:8px;
}

#voice ul li{
  font-size:0.8em;
  text-align:center;
  color:white;
  padding:4px 16px;
  border:1px solid white;
  border-radius:4px;
}

@media screen and (max-width: 400px) {
  #voice ul li{
    padding:4px 8px;
  }
}

.case{
  background:white;
  padding:14px 12px;
  margin-top:80px;
  position:relative;
}

.case:before{
  position:absolute;
  top:-14px;
  left:0;
  content:"";
  width:100%;
  height:16px;
  background:var(--navy_dark);
  border-top-left-radius:8px;
  border-top-right-radius:8px;
}

.case-num{
  position:absolute;
  top:-50px;
  left:23px;
  width:172px;
  color:white;
}

.case-num p{
  position: absolute;
  color: white;
  top: 0;
  left: 25px;
  font-size:0.8em;
  letter-spacing: 3px;
}

.case-num p span{
  font-size:2.5em;
  font-family:"Roboto", sans-serif;
}

.case-num img{
  width:100%;
}

p.user{
  font-weight:700;
  text-align:center;
  margin:8px 0;
}

.case .voice{
  display:flex;
  gap:20px;
  justify-content: space-between;
}

.case .voice img{
  width:100px;
  height:100px;
}

.case .voice h3{
  font-size:0.8em;
  font-weight:700;
  letter-spacing: 1px;
  margin:0 0 4px 0;
  color:var(--primary-color)
}

.case .voice p{
  font-size:14px;
}


.issue,
.solution,
.effect{
  display:flex;
  justify-content:space-between;
  background:var(--blue_dark);
  position:relative;
  margin-bottom:2px;
}

.issue:after,
.solution:after,
.effect:after{
  position:absolute;
  top:-1px;
  left:0;
  content:"";
  width:48px;
  height: calc(tan(60deg) * 16px / 2);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background:white;
}

.solution{
  background:var(--blue_medium02);
}

.effect{
  background:var(--primary-color);
}

.issue > p,
.solution > p,
.effect > p{
  width:48px;
  line-height:48px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-weight:700;
  color:white;
  padding:20px 0;
  text-align:center;
  position:relative;
  min-height:91px;
}

.issue > p:before,
.solution > p:before,
.effect > p:before{
  position:absolute;
  bottom: 0;
  left: -1px;
  content: "";
  width: 50px;
  height: 14px;
  background: white;
}

.issue > p:after,
.solution > p:after,
.effect > p:after{
  position: absolute;
  bottom: 0.02em;
  right: -1px;
  content: "";
  width: 48px;
  height: 14px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: var(--blue_dark);
}

.solution > p:after{
  background:var(--blue_medium02);
}

.effect > p:after{
  background:var(--primary-color);
}

.issue div,
.solution div,
.effect div{
  background:white;
  width:calc(100% - 48px);
  padding-left:16px;
  font-size:0.8em;
}

.issue div p{
  padding:12px 0;
}

.solution div p,
.effect div p{
  padding:12px 0;
  border-top:1px solid var(--gray_light);
}

/* price */
#price{
  background:var(--blue_pale);
  text-align: center;
}

#price .inner{
  padding:20px 0 80px 0;
}

#price h2{
  color:var(--navy);
}

#price h2 span{
  font-size:0.8em;
  letter-spacing: 0;
}

#price h2 img{
  margin-top:-10px;
}

.price-box{
  width:100%;
  background:white;
  border-top-left-radius:16px;
  border-top-right-radius:16px;
}

.price-box h3{
  width:100%;
  background:var(--primary-color);
  color:white;
  font-size:1.4em;
  font-weight:700;
  line-height:2;
  text-align:center;
  padding:8px 10px 5px 10px;
  border-top-left-radius:16px;
  border-top-right-radius:16px;
}

.business > h3{
  background:var(--blue_medium);
}

.option > h3{
  background:var(--blue_light);
}

.price-box p{
  width:100%;
  text-align:center;
  padding:24px 0 0 0;
  line-height:0.8;
}
.price-box p.detail{
  font-size:.9em;
}
span.num{
  font-size:4.5em;
  font-weight:700;
  font-family:"Roboto", sans-serf;
}

.free > p{
  color:var(--primary-color);
}

.business > p{
  color:var(--blue_medium);
}

.option > p{
  color:#718EE8;
}

.price-box ul{
  width:100%;
  padding:16px 20px 16px 20px;
}
  
.price-box ul li{
  display:flex;
  align-items: center;
  gap:4px;
  padding:4px 0;
}

.price-box ul li p{
  text-align:left;
  padding:0;
  font-size:0.8em;
}

.price-box ul li img{
  width:32px;
  height:32px;
}

@media screen and (max-width: 420px) {
  .price-box ul{
    padding:16px 8px 16px 8px;
  }

  .price-box ul li img{
    width:24px;
    height:24px;
  }

  .price-box ul li p{
    font-size:0.7em;
  }
}

.more{
  font-weight:700;
  padding:20px 0;
}

.update{
  color: var(--pink_strong);
  font-size: 5em;
  font-weight: 400;
  transform: rotate(-10deg);
  font-family: "Waterfall", serf;
  margin-top:-50px;
}

#price .arrow{
  width:24px;
  margin:-16px auto 20px auto;
}

/*  固定ボタン  */

.cv-sp{
  display:none;
}

@media screen and (max-width: 900px) {
  .cv-sp{
    display:block;
    position:fixed;
    bottom:20px;
    right:0;
    left:0;
    margin:0 auto;
    width:380px;
    z-index:7;
  }
}


@media screen and (max-width: 700px) {
  .cv-sp{
    width:calc(100% - 105px);
    right:auto;
    bottom:16px;
  }
}

.chat{
  position:fixed;
  bottom:20px;
  right:20px;
  width:80px;
  height:80px;
  border-radius:40px;
  background:#06c755;
  color:white;
  font-size:1.25em;
  font-weight:700;
  letter-spacing: 5px;
  line-height:64px;
  text-align:center;
  box-shadow:1px 2px 8px rgb(55 55 55 / 30%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat img{
  width: 78px;
  padding-top: 4px;
}

@media screen and (max-width: 700px) {
  .chat{
    bottom:11px;
    right:12px;
  }
}

/* privacy */
#privacy{
  padding:20px 0;
  margin-top:-20px;
  font-size:0.8em;
  line-height:1.5;
}

#privacy .logo{
  display:none;
}

@media screen and (max-width: 900px) {
  #privacy .logo{
    display:block;
    position: absolute;
    left: 16px;
    top: 23px;
  }
}

#privacy h2{
  color:var(--gray_dark);
}

#privacy .intro{
  margin-bottom:40px;
}

#privacy ul.chapter > li{
  margin-bottom:40px;
}

#privacy h3{
  font-size:1.2em;
  font-weight:700;
  line-height: 1.5;
  margin-bottom: 8px;
}

#privacy ul.list,
#privacy ul.num{
  margin-top:12px;
}

#privacy ul.list li{
  margin-bottom:4px;
  list-style:circle;
  margin-left:20px;
}

#privacy ul.num li{
  margin-bottom:4px;
  list-style:decimal;
  margin-left:20px;
}

#privacy ul.underline{
  margin-top:20px;
}

#privacy ul.underline h3{
  border-bottom: 1px solid var(--button);
  padding-bottom: 8px;
}


/* footer */
footer{
  background:white;
  padding:40px 0 100px 0;
}

footer ul{
  width:100%;
  text-align:center;
  margin:0 auto 40px auto;
}

footer ul li {
  font-size:0.8em;
  font-weight:700;
  margin-bottom:12px;
}

footer p{
  font-size:0.6em;
  text-align:center;
}












