@charset "UTF-8";
/*各ページ独自のcss設定*/


/*以下に指定を記述する*/


body{background-color: #fffbf8;}

h1{
   text-align: center;
   margin-top: 40px;
   
    color: #333333;
   font: bold;
}

.linebox {
  position: relative;
  width: 265px;
  height: 4px;
  margin: 0 auto;

}

.line {
  position: absolute;
  height: 4px;
}

.line1 {
  width: 120px;
  background: #edaa0b;
  border-radius: 10px;
  z-index: 3;
  left: 0;
}

.line2 {
  width: 100px;
  background: #f3c759;
  border-radius: 0 10px 10px 0;
  z-index: 2;
  left: 105px;
}

.line3 {
  width: 80px;
  background: #f9e3aa;
  border-radius: 0 10px 10px 0;
  z-index: 1;
  right: 0;
}



.nakamidashi {
width: 265px;
    height: 55px;
    background-color: #ffffff;
    border: 1px solid #edaa0b;
    margin: 0 auto;
    display: flex
;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 60px;
    margin-bottom: 30px;
}

.shadow {
    position: absolute;
    top: 29px;
    left: 237px;
    width: 27px;
    height: 3px;
    background-color: #edaa0b80;
}

.nakamidashi_text{
    color: #333333;
    font-weight: bold;
    font-size: 22px;
    position: relative;
}

.nakamidashi::before{
  content: "";
    position: absolute;
    top: -2px;
    left: 233px;
    width: 32px;
    height: 32px;
    background-color: #fffbf8;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.nakamidashi::after{
 content: "";
    position: absolute;
    top: -1px;
    left: 234px;
    width: 30px;
    height: 30px;
    background-color: #edaa0b;
    clip-path: polygon(0 0, 0 100%, 100% 100%);
}



.all_wrap{
  display: flex;
    flex-direction: column;
}

.zenki_wrap{
  display: flex;
    flex-wrap: wrap;
    gap: 16px;
    flex-direction: row;
    justify-content: center;

}

.kouki_wrap{
    flex-wrap: wrap;
    gap: 16px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.suisen_wrap{
    flex-wrap: wrap;
    gap: 16px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}


.button{
   font-size: 14px;
   font-weight: 500;
   color: #333333;
   display: flex;
   justify-content: center;
   align-items: center;
   background-color: #f9f9f9;
   width: 150px;
   height: 45px;
   box-shadow: 1px 1px 1px #00000080;
   position: relative;
   text-decoration: none;
}

.button::before{
   content: "";
   position: absolute;
   top: 0px;
   left: 0px;
   width: 15px;
   height: 15px;
   background-color: #b3b3b3b3;
   clip-path: polygon(0 0,100% 0,0 100%);
   
}

.button::after{
   content: "";
   position: absolute; 
   bottom: 0px;
   right: 0px;
   width: 15px;
   height: 15px;
   background-color: #edaa0b;
   clip-path: polygon(100% 0,0 100%,100% 100%);
}

.back_button_wrap{
    position: relative;
    margin: 0 auto;
    width: 180px;
}

.back_button{
   font-size: 14px;
   font-weight: 500;
   color: #333333;
   display: flex;
   justify-content: center;
   align-items: center;
   background-color: #f9f9f9;
   width: 180px;
   height: 45px;
   margin: 0 auto;
   box-shadow: 1px 1px 1px #00000080;
   margin-top: 90px;
   margin-bottom: 90px;
   text-decoration: none;
}

.back_button::before{
  content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    border-left: 15px solid #edaa0b;
    border-top: 15px solid transparent;
   
}

.back_button::after{
   content: "";
    position: absolute;
    top: 0;
    right: 0;
    border-left: 15px solid transparent;
    border-top: 15px solid #b3b3b3;
}

.arrow1 {
    display: inline-block;
    width: 30px;
    height: 0.75px;
    background: #4d4d4d;
    position: absolute;
    top: 55%;
    left: 32px;

}

.arrow2{
   display: inline-block;
    width: 10px;
    height: 0.75px;
    background: #4d4d4d;
    transform: rotate(-45deg) translateY(-60%);
    transform-origin: left bottom;
    position: absolute;
    top: 55%;
    left: 33px;
}

/*
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) {
    /*レスポンシブ用*/


}
    