@charset "utf-8";

html {
    scroll-behavior: smooth;
    background-color: #FFF;
    color: #333;
    font-size: 16px;
    font-family: 'M PLUS 1p', sans-serif;
}
.sp{
  display: none;
}
@media screen and (max-width: 767px){
  html{
    font-size: 10px;
}
.sp{
  display: block;
}
.pc{
  display: none;
}
}

a{
    text-decoration: none;
}
a img:hover{
  opacity: 0.7;
}

img {
	image-rendering: -webkit-optimize-contrast;
}
.mb5{
  margin-bottom: 5rem !important;
}
.center{
  text-align: center;
}

#sc1, #sc2, #sc3, #sc4{
padding-top: 100px;
margin-top: -100px;
}

section:nth-child(n+2){
  margin-bottom: 12rem;
}

@media screen and (max-width: 767px){
  section:nth-child(n+2){
    margin-bottom: 6rem;
  }  
}

.wrapper{
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}
@media screen and (max-width: 767px){
  .wrapper{
    width: 96%;
  }
}

div{
    width: 100%;
}

section img, div img{
    width: 100%;
    height: auto;
  }

/* お問い合わせ */
.contact{
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  margin: 1rem auto 5rem auto;
}

.contact p{
  display: flex;
  justify-content: center;
  align-items: center;
  color: #036EB8;
  width: 100%;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
}
.contact p::before,
.contact p::after {
    width: 5px;
    height: 40px;
    background-color: #036EB8;
    content: '';
}

.contact p::before {
    transform: rotate(-35deg);
    margin-right: 30px;
}

.contact p::after {
    transform: rotate(35deg);
    margin-left: 30px;
}

.contact div{
width: 45%;
margin: 1rem auto;
}

a.kameibtn{
  display: block;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  color: #1c8f0f;
  border-bottom: 2px solid #1c8f0f;
  padding: 0 1rem 0.25rem 1rem;
  font-size: 1.25rem;
}
a.kameibtn span{
font-weight: bolder;
}
a.kameibtn:hover span{
  color: #006ebd;
}

@media screen and (max-width: 767px){
  .contact p{
    font-size: 2rem;
  }  
  .contact div{
    width: 90%;
}
.contact{
  margin: 1rem auto 8rem auto;
}
}

/* header */
header{
  width: 100%;
  background-color: rgb(255, 255, 255, 0.5);
  position: fixed;
  z-index: 999;
}
header div{
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: 0;
  margin: 0 auto;
width: 100%;
max-width: 1100px;
height: 80px;
z-index: 999;
}

header div img.logo{
  display: block;
  width: 180px;
  height: auto;
}

header div a{
  display: block;
  background-color: rgb(255, 145, 0);
  border: 2px solid rgb(255, 145, 0);
  border-radius: 50px;
  padding: 0.5rem 2rem;
  font-size: 1.5rem;
  color: #FFF;
  font-weight: bold;
  margin: auto 0 auto auto;
  width: fit-content;
  /* font-family: 'Zen Maru Gothic', sans-serif; */
font-weight: 600;
letter-spacing: 0.25rem;
}
header div a i{
padding-right: 0.5rem;
font-weight: 400;
}

header div a:hover{
  background-color: #FFF;
  color: rgb(255, 145, 0);
}

@media screen and (max-width: 767px){
  header div{
    padding: 0.5rem;
    height: 50px;
  }

  header div a{
  font-size: 1.25rem;
  margin-right: 0.5%;
  }
  
  header div img.logo{
    width: 120px;
    height: auto;
  }
  
}

/* top */
section.top{
  padding-top: 80px;
}
h2{
  display: block;
  width: fit-content;
  padding: 0.25rem 1rem;
  margin: 1rem auto 1.5rem;
  text-align: center;
  font-size: 3rem;
  background-color: gold;
  font-family: 'Zen Maru Gothic', sans-serif;
font-weight: 700;
}
h1{
  display: block;
  text-align: center;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 900;
  font-size: 6rem;
  color: rgb(255, 123, 0);
  line-height: 8rem;
}
h1 span{
background: linear-gradient(transparent 70%, rgba(255, 217, 0, 0.731) 70%);
padding: 0 0.5rem;
}

.mainimg{
  background-image: url(../img/main.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  height: 80vh;
  width: 100%;
}
@media screen and (max-width: 767px){
  section.top{
    padding-top: 50px;
  }
  h2{
    padding: 0.25rem;
    font-size: 2.15rem;
  }
  h1{
    font-size: 4.5rem;
    line-height: 6.5rem;
  }
  .mainimg{
    background-size: cover;
    height: 45vh;
  }
  
}

/* アイテム制作タグ・メニュー */
h3{
  position: relative;
  padding: 0 65px;
  text-align: center;
  color: rgb(255, 123, 0);
  font-size: 2.25rem;
  font-family: 'Zen Maru Gothic', sans-serif;
font-weight: 600;
margin: 2rem auto;
}
h3:before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 2px;
  content: '';
  background: rgb(255, 123, 0);
}

h3 span {
  display: block;
  position: relative;
  background: #fff;
  width: fit-content;
    margin: 0 auto;
    padding: 0 1rem;
}
@media screen and (max-width: 767px){
  h3 span {
  padding: 0;
  }
}
ul.item-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 5rem;
}

ul.item-list li{
  padding: 0.25rem 1rem;
  color: rgb(255, 123, 0);
  border: 2.5px solid rgb(255, 123, 0);
  border-radius: 25px;
  text-align: center;
  font-family: 'Zen Maru Gothic', sans-serif;
font-weight: 500;
font-size: 1.5rem;
margin:0 0.5rem 1rem 0;
}
ul.item-list li::before{
  content: "#";
  font-size: 1.5rem;
  padding-right: 0.5rem;
}

ul.menu{
    width: 85%;
    margin: 4rem auto;
list-style: none;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

ul.menu li{
    width: 49%;
    height: fit-content;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 0.5rem 1rem;
    box-sizing: border-box;
    border-radius: 50px;
    background-color: #036EB8;
    border: #036EB8 2px solid;
    background-position: 10% ;
    background-repeat: no-repeat;
background-size: auto 60%;
}
ul.menu li:first-child{
    background-image: url(../img/icon1.png);
}
ul.menu li:nth-child(2){
    background-image: url(../img/icon2.png);
}
ul.menu li:nth-child(3){
    background-image: url(../img/icon3.png);
}
ul.menu li:nth-child(4){
    background-image: url(../img/icon4.png);
}
ul.menu li::after{
    content: "\f107";
    font-family: 'Font Awesome 6 Free';
    font-weight: 600;
    font-size: 1.5rem;
    color: #FFF;
    padding-right: 1rem;
}
ul.menu li:hover{
  background-color: #FFF;
}
ul.menu li:hover:first-child{
  background-image: url(../img/icon1_after.webp);
}
ul.menu li:hover:nth-child(2){
  background-image: url(../img/icon2_after.webp);
}
ul.menu li:hover:nth-child(3){
  background-image: url(../img/icon3_after.webp);
}
ul.menu li:hover:nth-child(4){
  background-image: url(../img/icon4_after.webp);
}

ul.menu li:hover::after{
  color: #036EB8;
}

ul.menu li a
{
    display: block;
    width: 100%;
    color: #FFF;
    font-size: 1.5rem;
    box-sizing: border-box;
    text-align: center;
    font-weight: bold;
    padding-left: 3rem;
}
ul.menu li:hover a{
  color: #036EB8;
}

@media screen and (max-width: 767px){
    ul.menu{
        justify-content: center;
    }
ul.menu li{
    width: 90%;
}
}


/* 販促物制作PR */
section.pr ul.prlist li{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
font-family: 'M PLUS 1p', sans-serif;
margin-bottom: 3rem;
}

section.pr ul.prlist li:nth-child(even){
  flex-direction: row-reverse;
}

section.pr ul.prlist li div:first-child{
  width: 45%;
}

section.pr ul.prlist li div:nth-child(2){
  width: 50%;
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (max-width: 767px){
  section.pr ul.prlist li{
    flex-direction: column-reverse !important;
  }
  section.pr ul.prlist li div:first-child{
    width: 100%;
  }
  section.pr ul.prlist li div:nth-child(2){
    width: 100%;
  }
  
}

section.pr ul.prlist li div h4{
  letter-spacing: 0.05em;
  font-size: 4rem;
  display: block;
  font-weight: 800;
  font-family: 'M PLUS 1p', sans-serif;
}

section.pr ul.prlist li div h4 span{
  font-size: 5rem;
  padding: 0.25rem 3rem;
  margin: 0.5rem auto;
  background-color: rgb(255, 123, 0);
  color: #FFF;
}

@media screen and (max-width: 767px){
  section.pr ul.prlist li div h4{
    text-align: center;
    font-weight: 400;
  }
}

section.pr ul.prlist li:nth-child(n+2) div:first-child{
width: 30%;
height: fit-content;
margin: auto 0;
}

section.pr ul.prlist li:nth-child(n+2) div:nth-child(2){
  width: 65%;
  }
  
  @media screen and (max-width: 767px){
    section.pr ul.prlist li:nth-child(n+2) div:first-child{
      width: 90%;
      margin: auto auto 6rem auto;
    }
    section.pr ul.prlist li:nth-child(n+2) div:nth-child(2){
      width: 96%;

    }
  }

ul.point{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 3rem;
}
ul.point li{
  margin-bottom: auto !important;
}

ul.point li:first-child{
  width: 15%;
}

ul.point li:nth-child(2){
  width: 85%;
}

ul.point li:nth-child(3){
  width: 100%;
  font-size: 2.5rem;
  position: relative;
  height: 75px;
  margin-right: 100px;
  padding: 0.5rem 2rem;
  word-break: break-all;
  color: #fff;
  background: rgb(255, 123, 0);
  margin:0.5rem auto;
}

ul.point li:nth-child(3):after {
  position: absolute;
  top: 0;
  right: -55px;
  width: 0;
  height: 0;
  content: '';
  border-width: 75px 55px 0 0;
  border-style: solid;
  border-color: rgb(255, 123, 0) transparent transparent transparent;
}

@media screen and (max-width: 767px){
  ul.point li:nth-child(3){
  text-align: center;
  height: auto;
  margin:0.5rem auto 1rem auto !important;
  }
  ul.point li:nth-child(3):after {
    display: none;
    }

  ul.point li:first-child{
    width: 20%;
  }
  
  ul.point li:nth-child(2){
    width: 75%;
  }
  
}

section.pr ul.prlist li:nth-child(odd) ul.point li:nth-child(3):after {
  position: absolute;
  top: 0;
  right: 0;
  left: -55px;
  width: 0;
  height: 0;
  content: '';
  border-width: 75px 0 0 55px ;
  border-style: solid;
  border-color: rgb(255, 123, 0) transparent transparent transparent;

}
ul.point li:nth-child(4){
  padding-left: 1em;
}

.okime li:first-child{
  width: 20% !important;
}
.okime li:nth-child(2){
  width: 80% !important;
}
@media screen and (max-width: 767px){
  .okime li:first-child{
    width: 25% !important;
  }
  .okime li:nth-child(2){
    width: 75% !important;
  }
  
}

/* 吹き出し */
.balloon-008 {
  display: flex;
  align-items: center;
  justify-content: center !important;
  position: relative;
  width: 100%;
  margin-left: 15px;
  padding: 0.8em;
  border: 3px solid #2589d0;
  border-radius: 5px;
  background-color: #fff;
  color: #333333;
  margin: 0 auto auto auto;
  font-size: 1.5rem;
}

.balloon-008::before,
.balloon-008::after {
  position: absolute;
  left: -15px;
  width: 15px;
  height: 30px;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
  content: '';
}

.balloon-008::before {
  background-color: #2589d0;
}

.balloon-008::after {
  left: -11px;
  background-color: #fff;
}


/* 装飾イメージ */
section.pickup h4, section.order h4{
font-size: 3rem;
text-align: center;
font-family: 'Zen Maru Gothic', sans-serif;
margin-bottom: 2rem;
}
section.pickup h4 span, section.order h4 span{
  background: linear-gradient(transparent 70%, rgba(255, 217, 0, 0.731) 70%);
font-size: 4rem;
}

.pickup h3{
  letter-spacing: 0.9rem;
  margin-bottom: 5rem;
}

.pickup p.sanko{
  text-align: center;
  font-family: 'Zen Maru Gothic', sans-serif;
font-size: 1.5rem;
margin-bottom: 2rem;
font-weight: 500;
}

.pickup div{
  margin-bottom: 5rem;
}

/* ピックアップアイテム */

.pickup ul.p-item li{
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
font-family: 'M PLUS 1p', sans-serif;
}
.pickup ul.p-item li:nth-child(even){
  flex-direction: row-reverse;
}
.pickup ul.p-item li div{
width: 38%;
}
.pickup ul.p-item li div img{
  width: auto;
  height: auto;
  max-height: 600px;
  margin: auto;
}

.pickup ul.p-item li dl{
  width: 50%;
  padding: 2rem;
  border: 2px solid rgb(255, 123, 0);
  border-radius: 25px;
  margin-left: 2rem;
  box-shadow: 6px 6px rgb(255, 123, 0);
}

.pickup ul.p-item li dl dt{
font-size: 2rem;
font-weight: bolder;
color: rgb(255, 123, 0);
margin-bottom: 1rem;
}

.pickup ul.p-item li dl dd{
font-size: 1.5rem;
letter-spacing: 0.25rem;
margin-bottom: 0.8rem;
}
@media screen and (max-width: 767px){
  .pickup div{
    margin-bottom: 0rem;
  }
  .pickup ul.p-item li{
  margin-bottom: 4rem;
  }
  .pickup ul.p-item li div{
    width: 90%;
    }
    .pickup ul.p-item li div img{
      max-height: 500px;
    }
    
    .pickup ul.p-item li dl{
      width: 90%;
      margin-left: 0;
      margin-bottom: 4rem;
    }
    
}

li.nobori{
  position: relative;
  margin-bottom: 10rem;
}
div.mini{
  width: 520px !important;
  position: absolute;
  display: flex;
  bottom: -80px;
  left: 25%;
  align-items: center;
}
div.mini img{
  width: 250px !important;
  height: 250px !important;
}

div.mini p{
  display: flex;
  align-items: center;
  position: relative;
  max-width: 300px;
  margin-right: 15px;
  padding: .8em 1.2em;
  border: 5px solid #ff7b00;
  border-radius: 5px;
  background-color: #fff;
  color: #ff7b00;
  font-size: 1.5rem;
  font-weight: bold;
}

div.mini p::before,
div.mini p::after {
  position: absolute;
  right: -18px;
  width: 18px;
  height: 30px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  content: '';
}

div.mini p::before {
  background-color: rgb(255, 123, 0);
}

div.mini p::after {
  right: -11px;
    background-color: #fff;
}

@media screen and (max-width: 767px){
  div.mini{
    width: 90% !important;
    position: relative;
    display: flex;
    bottom: 0;
    left: 0;
    align-items: center;
    margin: 1rem auto;
  }
  div.mini img{
    width: 45% !important;
    height: 45% !important;
  }
}


/* ご注文の流れ */
section.order ol li{
width: 85%;
border: #575757 dotted 5px;
margin: 5rem auto 6rem auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
position: relative;
padding-top: 40px;
}

section.order ol li img.midashi{
  width: 150px;
  position: absolute;
  top: -60px;
  right: 0;
  left: 0;
  margin: auto;
}
@media screen and (max-width: 767px){
  section.order ol li{
    width: 100%;
  }    
  section.order ol li img.midashi{
    width: 100px;
    top: -40px;
  
}
}

section.order ol li div{
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

section.order ol li div img{
  width: auto;
  height: 120px;
  margin: auto;
}

section.order ol li div span{
text-align: center;
font-size: 0.9em;
}

section.order ol li dl{
  width: 68%;
  font-family: 'M PLUS 1p', sans-serif;
  padding: 1.5rem 2rem 3rem 0;
}

section.order ol li dl dt{
  font-weight: bolder;
  font-size: 2rem;
  margin-bottom: 1rem
}
section.order ol li dl dd{
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

section.order ol li dl dd:nth-of-type(n+2){
  padding: 1rem;
  margin-top: 1rem;
  text-indent: -1em;
  padding-left: 3em;
  font-size: 1rem;
}
section.order ol li dl dd:nth-of-type(n+2)::before{
  content: "※";
}

section.order ol li:nth-of-type(1) dl dd:nth-of-type(2){
  background-color: rgb(255, 193, 182);
}

section.order ol li:nth-of-type(4) dl dd:nth-of-type(2){
  background-color: rgb(205, 255, 214);
}

section.order ol li:nth-of-type(6) dl dd:nth-of-type(n+2){
  background-color: rgb(231, 200, 255);
  margin:-1rem 0;
}

@media screen and (max-width: 767px){
  section.order ol li div{
    width: 100%;
    flex-wrap: wrap;
    flex-direction: row;
  }
  section.order ol li div img{
    width: 100px;
    height: auto;
  }
  section.order ol li dl{
    width: 100%;
    padding: 1.5rem ;
  }
  section.order ol li dl dd:nth-of-type(n+2){
    font-size: 1.25rem;
    padding-left: 2em;
  }
  section.order ol li dl dd:last-child{
    margin-bottom: 1rem !important;
  }
  
}

/* 注文手順吹き出し */
.balloon-001, .balloon-002, .balloon-003 {
  display: flex;
  justify-content: center;
  position: relative;
  width: 90%;
  margin: 30px auto 1rem auto;
  padding: .8em 1.2em;
  border-radius: 5px;
  color: #FFF;
  font-size: 1.2rem;
  font-family: 'M PLUS 1p', sans-serif;
}
@media screen and (max-width: 767px){
  .balloon-001, .balloon-002, .balloon-003 {
    width: 80%;
  }  
}

.balloon-001::before, .balloon-002::before, .balloon-003::before {
  position: absolute;
  top: -15px;
  width: 30px;
  height: 15px;
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
  content: '';
}

.balloon-001, .balloon-001::before{
  background-color: rgb(255, 153, 0);
}

.balloon-002, .balloon-002::before{
  background-color: rgb(0, 155, 28);
}

.balloon-003, .balloon-003::before{
  background-color: rgb(122, 29, 193);
}





/* 写真　ポイント */
section.photo h4{
  display: block;
  background-color: rgb(0, 131, 42);
  text-align: center;
  font-size: 3.8rem;
  color: #FFF;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  position: relative;
  width: 96%;
  margin: 5rem auto 1rem auto;
}
section.photo h4::before{
  content: url(../img/camera.webp);
  position: absolute;
  top: -220px;
  left: -100px;
  transform: scale(0.5);
  z-index: -1;
}
section.photo h4 i{
  margin: 0 1.5rem;
  opacity: 0.5;
}

@media screen and (max-width: 767px){
  section.photo h4{
    font-size: 2.5rem;
  }
  section.photo h4::before{
    top: -200px;
    left: -120px;
    transform: scale(0.3);
    z-index: -1;
  }
  
  section.photo h4 i{
    font-size: 2.25rem;
    margin: 0 0.5rem;
  }  
}

/* 写真NG・OK集 */
dl.photolist{
  display: flex;
  flex-wrap: wrap;
  padding: 2rem;
  width: 96%;
  border: 2px solid rgb(0, 131, 42);
  box-sizing: border-box;
  margin: 1rem auto;
  font-family: 'M PLUS 1p', sans-serif;
}

dl.photolist dt{
  width: 100%;
  text-align: center;
  font-size: 3rem;
  color: rgb(0, 131, 42);
  margin-bottom: 1rem;
}
dl.photolist dt:nth-child(n+2){
  margin-top: 6rem;
  border-top: rgb(0, 131, 42) 2px solid;
  padding-top: 3rem;
}
dl.photolist dd{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 1rem;
  position: relative;
}

dl.photolist dd i{
  width: 50%;
  text-align: center;
  font-size: 6rem;
  margin-bottom: 1rem;
}
.fa-triangle-exclamation{
  color: red;
}
.fa-circle-check{
  color: seagreen;
}

dl.photolist dd img{
  display: block;
  width: 49.5%;
  box-sizing: border-box;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px){
  dl.photolist dt{
    font-size: 2rem;
  }
  dl.photolist dd i{
    font-size: 4rem;
  }  
}

p.cut{
  width: 100%;
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

p.cut::before, p.cut::after{
content: "\f309";
font-family: 'Font Awesome 6 Free';
font-weight: 600;
font-size: 4rem;
color: seagreen;
padding: 0 15%;
}

dl.photolist dd p{
  font-size: 1.5rem;
  width: 100%;
}

dl.photolist dd.center{
  width: 100%;
  text-align: center;
}


/* フッター */

footer{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #4B2D00;
    padding: 1.5rem;
    box-sizing: border-box;
}
footer img{
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-bottom: 0.5rem;
}
footer p{
  color: #FFF;
}
footer p:nth-of-type(3){
  font-size: 0.8rem;
}

/* ページトップ矢印 */

#page-top a{
    display: flex;
    justify-content:center;
    align-items:center;
    background:rgb(255, 123, 0);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    color: #fff;
    text-align: center;
    text-transform: uppercase; 
    text-decoration: none;
    font-size:2rem;
    transition:all 0.3s;
  }
  
  #page-top a:hover{
    background: #777;
  }
  
  /*リンクを右下に固定*/
  #page-top {
    position: fixed;
    right: 10px;
    z-index: 2;
    opacity: 0;
    transform: translateY(100px);
  }
  
  /*　上に上がる動き　*/
  
  #page-top.UpMove{
    animation: UpAnime 0.5s forwards;
  }
  @keyframes UpAnime{
    from {
      opacity: 0;
    transform: translateY(100px);
    }
    to {
      opacity: 1;
    transform: translateY(0);
    }
  }
  
  /*　下に下がる動き　*/
  
  #page-top.DownMove{
    animation: DownAnime 0.5s forwards;
  }
  @keyframes DownAnime{
    from {
      opacity: 1;
    transform: translateY(0);
    }
    to {
      opacity: 1;
    transform: translateY(100px);
    }
  }








  /* メールフォーム */
  .timeline-003 {
    display: flex;
    justify-content: center;
    list-style-type: none;
    padding: 0;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.timeline-003 li {
    display: flex;
    flex: 1 1;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    color: #969da3;
    font-size: .8em;
}

.timeline-003 li.prev
 {
    color:#80caff;
}

.timeline-003 li::before {
    display: inline-block;
    margin-bottom: 6px;
    content: '\f0d1';
    font-family: 'Font Awesome 6 Free';
    font-weight: 600;
    font-size: 30px;
    width: 28px;
    background-color: #fff;
}

.timeline-003 li.prev::before,
.timeline-003 li.current::before {
    border-color: #80caff;
}

.timeline-003 li:not(:last-child)::after {
    position: absolute;
    top: 34px;
    left: 50%;
    z-index: -1;
    width: 100%;
    height: 2px;
    background-color: #80caff;
    content: '';
}

.timeline-003 li.current::before,
.timeline-003 li.prev::after,
.timeline-003 li.current {
    color: #2589d0;
}


/* サンプル画像 */
div.sampleimg{
  width: 80%;
  max-width: 1000px;
  margin: 1rem auto 3rem auto;
}


.formTable{
  width: 100%;
  max-width: 880px;
  margin: 1rem auto;
  font-size: 1rem;
}
.formTable th{
  background-color: #036EB8;
  color: #FFF;
  padding: 1rem;
  width: 25%;
}

.formTable th.hissu::after{
content: "※必須";
font-size: 1rem;
margin-left: 0.5rem;
color: rgb(255, 213, 0);
}

.formTable th.hukusu::after{
content: "※複数選択可能";
font-size: 0.8rem;
display: block;
width: 100%;
margin: auto;
font-weight: lighter;
}

.formTable td{
  display: flex;
  flex-wrap: wrap;
  padding: 1rem;
  align-items: center;
}

.formTable td p{
  width: 100%;
  padding:0 .4em .2em;
  border-bottom: #006ebd dotted 2px;
  color: #333;
}

.formTable td p:nth-of-type(n+2){
  margin-top: 2rem;
}

.formTable td label{
  height: fit-content;
  margin: 10px 10px 10px 0;
  width: 30%;
  box-sizing: border-box;
}
@media screen and (max-width: 767px){
  .last td:last-child {
    border-bottom: solid 1px #ccc;
    width: 100%;
  }

  form p{
    font-size: 1.25rem;
  }

  .formTable {
    width: 96%;
    font-size: 1.25rem;
  }
  .formTable th,
  .formTable td {
    border-bottom: none;
    width: 100%;
  }
  .formTable th{
    display: block;
    font-size: 1.5rem;
  }
  .formTable td{
justify-content: space-between;  }
  
.formTable td p{
margin-bottom: 10px;}

  .formTable td label{
    width: 48%;
    margin:0 0 10px 0;
  }  
}


/*チェックボックス設定 */
.checkbox-003 {
  border: none;
}

.checkbox-003 label {
  display: flex;
  align-items: center;
  gap: 0 .5em;
  position: relative;
  max-width: 200px;
  margin-bottom: .4em;
  padding: .5em .7em;
  border: 1px solid #006ebd;
  border-radius: 25px;
  background-color: #006ebd26;
  cursor: pointer;
}

@media screen and (max-width: 767px){
  .checkbox-003 label {
    width: 100%;
    max-width: 100%;
  }
}
.checkbox-003 label:has(:checked) {
  background-color: #006ebd;
  color: #fff;
}

.checkbox-003 label::before {
  width: 14px;
  height: 14px;
  border-radius: 1px;
  background-color: #fff;
  content: '';
}

.checkbox-003 label:has(:checked)::after {
  position: absolute;
  top: 14px;
  left: 15px;
  transform: rotate(45deg);
  width: 4px;
  height: 8px;
  border: solid #006ebd;
  border-width: 0 2px 2px 0;
  content: '';
}

.checkbox-003 input[type="checkbox"]{
  display: none;
}


/* テキスト入力欄設定 */
.formTable td input[type="text"], .formTable td input[type="tell"], textarea{
  border: 1px solid #1B73BA;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  color: #333;
  font-size: 13px;
  padding: 10px;
  height: 40px;
  width: 15rem;
}
.formTable td input[type="text"]:focus, .formTable td input[type="tell"]:focus, textarea:focus {
  border: 1px solid #ff9900;
  outline: 0;
}

.formTable td input[type="text"]::placeholder, .formTable td input[type="tell"]::placeholder {
  color: #999;
}


/* 郵便番号 */
.postn{
  width: 7rem !important;
margin-left: 1rem;
}
.post{
  position: relative;
}
.post::before{
  content: "〒";
  position: absolute;
  left: 0.5em;
  top: 1.5rem;
  color: #333;
  font-size: 1rem;
  padding-right: 0.25rem;
}

.form_text2{
  width: 100% !important;
  margin-top: 1rem;
  margin-left: 1rem;
}

.formTable td textarea{
  width: 100%;
  height: 8rem;
}


@media screen and (max-width: 767px){
  .formTable td input[type="text"], .formTable td input[type="tell"], textarea{
    width: 100%;
  }
  .postn{
  margin-left: 1.5rem;
  }
  .form_text2{
    margin-left: 1.5rem;
  }
  
  .post::before{
  font-size: 1.5rem;
  top: 1.7rem;
  }
}

p.red{
  color: red;
}

/* ボタン関係 */
input[type="submit"], input[type="button"]{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 .5em;
  position: relative;
width: 200px;
  margin:2rem auto 8rem auto;
  padding: .5em 3rem;
  border: 1px solid #006ebd;
  border-radius: 25px;
  background-color: #006ebd26;
  font-weight: bold;
}

input[type="submit"]:hover, input[type="button"]:hover{
  background-color: #006ebd;
  color: #fff;
}
@media screen and (max-width: 767px){
  input[type="submit"], input[type="button"]{
  font-size: 1.25rem;
  }
}

/* 送信完了画面 */
p.thanksp{
  text-align: center;
  margin-bottom: 5rem;
}
a.topbtn{
  display: block;
  color: #fff;
  background-color: #eb6100;
  border-radius: 100vh;
  width: 250px;
  margin-bottom: 20rem;
}
a.topbtn:hover {
  color: #fff;
  background: #f56500;
  margin-bottom: 50vh;
}
@media screen and (max-width: 767px){
  p.thanksp, a.topbtn{
 font-size: 1.25rem; 
}
}

.logotp{
  background-color: #FFF;
  border: none;
  margin: initial;
}