@charset "UTF-8";

html {
  font-size:62.5%;
}
body {
  font-size:1.4rem;
  color:#2E2E2E;
    padding: 0;
    margin: 0;
    font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
}
*, *::before, *::after {
  box-sizing:border-box;
}
.clearfix::after {
  content:'';
  display:block;
  clear:both;
}

img{
    width:100%;
}
.element {
    /* 最初は非表示 */
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: opacity 1s, visibility 1s, transform 1s;
  }
  /* フェードイン時に入るクラス */
  .is-fadein {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
/*header*/
header{
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

header p.description{
font-size: 11px;
}

.headline{
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}
.headline .logoarea{
    max-width:240px;
}
.headline .menuarea{
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}
.menuarea .item{
width: 200px;
    text-align: center;
    border-radius: 20px;
    color: #fff;
    letter-spacing: 1px;
}
.item a{
        color: #fff;
    text-decoration: none;
    font-weight: 600;
}
.insta{
background: #CE82CD;
}

.phone{
    background: #2E4A8B;
}

.line{
    background: #1DC850;
}

/*main*/
main.contents{
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
}

section{
margin: 80px 0;
    text-align: center;
}

section#about h2{
    max-width: 280px;
    margin: 0 auto 40px;
}
section#about p.text{
    font-size: 2rem;
    line-height: 2;
    font-weight: bold;
}
span.marker{
    background:linear-gradient(transparent 60%, #93C1E3 60%);
}
#monitor h2{
    max-width: 490px;
    margin: 0 auto 40px;
}

section#monitor p.text{
    font-size: 2rem;
    line-height: 2;
}
span.notice{
    font-size: 15px;
}

#contact h2{
    max-width: 590px;
    margin: 0 auto 40px;
}
#contact .btnarea .item{
    width: 750px;
    padding: 3px 10px;
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 5px;
    line-height: 1;
    margin: 30px auto;
    box-shadow: 2px 6px #ddd;
    border-radius: 10px;
}

/*footer*/
footer{
    display: flex;
    justify-content: space-between;
    padding: 50px 50px 10px;
    background: #F6D2D4;
    width: 100%;
    align-items: flex-end;
}

footer .logoarea{
    max-width: 180px;
}

footer .right .btnarea .item{
    width: 250px;
    padding: 1px 8px;
    text-align: center;
    line-height: 1;
    display: block;
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 15px;
    margin: 20px 0px;
}

@media screen and (max-width:425px){

    .pc{
    display: none;
}
header p.description {
    font-size: 10px;
    text-align: center;
}
.headline{
    display: block;
}
.headline .logoarea {
    width: 80%;
    max-width: 80%;
    margin: 0 auto;
}
.headline .menuarea{
    display: block;
}

.headline .menuarea .item{
    width: 80%;
    margin: 10px auto;
    display: block;
    line-height: 1;
    border-radius: 20px;
    padding: 1px;
}
#contact .btnarea .item{
    width: 100%;
    padding: 3px 10px;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 2px;
    line-height: 1;
    margin: 30px auto;
    box-shadow: 2px 6px #ddd;
    border-radius: 10px;
}
section{
    padding:0 20px;
}
section#about h2{
    max-width: 250px;
    margin: 0 auto 20px;
}
section#about p.text {
    font-size: 1.5rem;
    line-height: 2;
    font-weight: bold;
}
section#monitor h2{
    width:270px;
    margin: 0 auto 20px;
}
section#monitor p.text {
    font-size: 1.5rem;
    line-height: 2;
}
section#monitor span.notice{
font-size: 11px;
    line-height: 2;
    display: inline-block;
}

section#contact h2{
    width: 270px;;
}
footer{
    display: block;
    text-align: justify;
    padding: 30px 20px 10px;
}
footer .logoarea {
    max-width: 270px;
    margin: 0 auto;
}
footer .right .btnarea .item {
width:100%;
}
}

@media screen and (min-width:426px){
.sp{
    display: none;
}
}