@charset "UTF-8";
:root {
    --beige:#fafbe6;
    --white:#fcfcef;
    --skyblue:#98d2c0;
    --emeraldgreen:#00a99d;
    --navy:#215881;
    --black:#3e3a39;
    --grey:#e6e6e6;
}

/*置き換え禁止*/
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;

}

html,
body {
    font-family:
        "Zen Kaku Gothic New",
        "Noto Sans JP",
        "Helvetica Neue",
        Helvetica,
        Arial,
        sans-serif;
    font-weight: 400;
    font-style: normal;
}

main,
header,
footer {
    max-width: 450px !important;
    margin: 0 auto !important;
    color: #3e3a39;
}

/*以上、置き換え禁止*/
/*以下に指定を記述する*/
h1{
   color: #98d2c0;
    text-shadow: 1.5px 1px 0 #215881;
    margin: 40px auto 30px;
    text-align: center;
    position: relative;
    font-size: 32px;
}

h1::after{
   content: "";
    position: absolute;
    left: 15%;
    top: 1.5em;
    width: 70%;
    border-top: 2px solid #98d2c0;
    border-bottom: 2px solid #03aa9d;
    height: 2px;
   
}


h2{
    color: #3e3a39;
    text-align: center;
    width: 100%;
    position: relative;
    font-size: 18px;


}
.kakoisoto{
    background-color: #98d2c0;
    width: 70%;
    margin: 10% auto;
    margin-bottom: 10px;
    border: 2px solid var(--emeraldgreen);
    border-radius: 12px;
    padding: 10px;
    box-sizing: border-box;
    margin-top: 30px;
    



}

.kakoinaka{
  background-color: #fcfcef;
    border-radius: 10px;
    padding: 5px 0px;
    text-align: center;


}
.maru1{
   position: absolute;
    height: 6px;
    width: 6px;
    background-color: #fcfcef;
    z-index: 50;
    top: 115%;
    left: -2%;
    border-radius: 10px;

}
.maru2{
   position: absolute;
    height: 6px;
    width: 6px;
    background-color: #fcfcef;
    z-index: 50;
    top: -35%;
    left: -2%;
    border-radius: 10px;
}

.maru3{
   position: absolute;
    height: 6px;
    width: 6px;
    background-color: #fcfcef;
    z-index: 50;
    top: -35%;
    left: 99.5%;
    border-radius: 10px;
}
.maru4{
   position: absolute;
    height: 6px;
    width: 6px;
    background-color: #fcfcef;
    z-index: 50;
    top: 115%;
    left: 99.5%;
    border-radius: 10px;
}

h3{
    color: #3e3a39;
    border-bottom: 2px dashed #98d2c0;
    border-top: 2px dashed #98d2c0;
    text-align: center;
    width: 70%;
    margin: 0px auto;
    background-color: #fcfcef;
    font-size: 15px;
    padding: 5px;
    margin-bottom: 10px;
    margin-top: 0px;
    font-weight: normal;
}

.back-btn{
    font-size: 17px;
    font-weight: 500;
    color: #3e3a39;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color:var(--skyblue);
    width: 180px;
    height: 45px;
    margin: 0 auto;
    margin-top:50px;
    margin-bottom: 50px;
    box-shadow: 4px 4px var(--emeraldgreen);
    border-radius: 30px;
    position:relative;
    
}

.back-btn:active{
    opacity:0.7;
    transform: translateY(6px);
    box-shadow: 0 0 0 var(--emeraldgreen);
}


.back-text{
  position: absolute;
  left: 15px;
  right: 0;
  text-align: center;

}

.modorumaru{
       position: absolute;
    height: 35px;
    width: 35px;
    background-color: #fcfcef;
    z-index: 40;
    top: 6px;
    left: 8px;
    border-radius: 20px;
}

.yajirushi1{
     position: absolute;
    height: 5px;
    width: 10px;
    background-color: var(--skyblue);
    z-index: 50;
    top: 22px;
    left: 25px;
}



.yajirushi2{
      position: absolute;
    height: 0px;
    width: 0px;
    z-index: 50;
    top: 14px;
    left: 15PX;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid var(--skyblue);
}




/*こっから概要のパーツ*/
.gaiyo{
   background-color: var(--white);
    border: 1px solid var(--emeraldgreen);
    margin: auto 20px;
    margin-top: 50px;
    position: relative;
    color: #3e3a39;
    font-size: 14px;
    padding: 10px;
    margin-bottom: 30px;
}


.gaiyo::before{
    position: absolute;
    content: "";
    background-color: var(--skyblue);
    height: 20px;
    width: 100px;
    left: 50%;
    transform: translateX(-50%);
    top: -10px;
}



.orime1{
    position: absolute;
    right: -2px;
    bottom: -2px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 15px 0 0;
    border-color: var(--skyblue) transparent transparent transparent;
}

.orime2{
    position: absolute;
    right: -2px;
    bottom: -2px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 15px 15px;
    border-color: transparent transparent var(--beige) transparent;
}
/*ここまで概要のパーツ*/



/*
css概説（復習用　要らなければ消してください）

vol.1 用語の解説

セレクタ…装飾をつけたい対象の要素のこと
属性…セレクタに施したい装飾の種類
値…セレクタに施したい装飾の具体的内容

例：h1{color:red;}
h1がセレクタ　colorが属性　redが値

vol.2 セレクタの指定
①要素名で指定
h1{color:red;}

②class名で指定
.class{color:red;}

③id名で指定
#id{color:red;}

④要素名プラスclass名で指定
div.class{color:red;}

⑤要素名プラスid名で指定
div#id{color:red;}

⑥要素の位置から指定
header div{color:red;}   
↑スペースを入れる（ここではheader内のdiv要素を指定）

vol.3 属性・値の指定

①{属性:値;}の形で記述
{color:red;}

②１つのセレクタに対する指定はまとめて記述できる
h1{
   color:red;
   width:90%;
}

③指定が重複したら後の行にあるものが優先
h1{
   color:red;
   width:90%;
   color:blue;
}
↑ここではh1はblueになる

④指定が重複したらより特定が強いものが優先
h1{
   color:red;
   width:90%;
}
header h1{
   color:blue;
}
↑ここではheader内のh1はcolorがblue、widthが90%になる
*/


@media screen and (min-width:1024px) {
    /*レスポンシブ用*/


}