/*****************************
共通
*****************************/
*{
  box-sizing: border-box;
}

/* フォームのCSSを初期化 */
.submit {
  -webkit-appearance: none;
  background-color: rgba(0, 0, 0, 0.32);
  background-image: none;
  border: none;
  border-radius: 0;
  /* color: #fff; */
  cursor: pointer;
  display: inline-block;
  font-size: 1em;
  margin: 0 0 1em;
  /* padding: 0.6em 2em; */
  text-decoration: none;
}
.submit:hover,
.submit:focus {
  outline: none;
}
.submit::-moz-foucus-inner {
  border: none;
  padding: 0;
}



@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');

@media screen and (max-width: 1024px) {
 .pc{
   display: none;
 }
}
@media screen and (min-width: 1025px) {
  .sp{
    display: none;
  }
}

HTML{
  /* height: 100vh; */
}
body {
  /* height: 100vh; */
  font-family: 'Noto Serif','Yu Mincho Light','YuMincho',
                'Yu Mincho','游明朝体','ヒラギノ明朝 ProN',
                'Hiragino Mincho ProN',serif;
}
@media screen and (max-width: 1024px) {
  body {
  min-width: auto;
  width: auto;
  }
}
.wrap{
  /* height: 100vh; */
}
.oth-ff{
  font-family:'Noto Sans JP',"游ゴシック Medium",YuGothic,YuGothicM,
              "Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro",
              メイリオ,Meiryo,sans-serif;
}
.back img{
  width: 100%;
  height: auto;
}
.hl2 {
  margin: 0  auto 50px auto;
  font-size: 40px;
  color: rgb(255, 255, 255);
  text-align: center;
}
@media screen and (max-width: 1024px) {
.hl2 {
    margin-bottom: 2.5vh;
    font-size: 9vw;
}
}
a{
  text-decoration: none;
}
/**form**/
.input,
.check,
.finish {
  position: relative;
  display: flex;
  justify-content: center;
  /* height: 100vh; */
  /* min-height: 800px; */
  min-height: 100vh;
  background-image: url(../img/ph02.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .input,
  .check,
  .finish{
    background-image: url(../img/sp_ph02.png);
  }
}
@media all and (-ms-high-contrast: none) {
  .input,
  .check,
  .finish {
    background-position: center center;
  }
}
.content{
  /* position: absolute; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 680px;
  margin: 50px 0;
}
@media screen and (max-width: 1024px) {
  .content{
    width: 100%;
        padding: 4vh 5vw;
    margin: 0;
  }
}
.process{
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  font-family:"'Noto Sans JP',游ゴシック Medium",YuGothic,YuGothicM,
              "Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro",
              メイリオ,Meiryo,sans-serif;
                font-size: 16px;
}
@media screen and (max-width: 1024px) {
  .process{
    font-size: 3.5vw;
    margin-bottom: 2.5vh;
  }
}
.process .circle{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 71px;
  height: 71px;
  border-radius: 50%;
  border-color: rgb(255, 255, 255);
  border-style: solid;
  border-width: 2px;
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
}
@media screen and (max-width: 1024px) {
  .process .circle{
    width: 13.3vw;
    height: 13.3vw;
    font-size: 2vw;
  }

}
.process .line {
    position: relative;
    margin-right: 70px;
}
@media screen and (max-width: 1024px) {
.process .line {
    margin-right: 8vw;
}
}
.circle .line::after,
.circle.line::after {
    position: absolute;
    display: block;
    top: calc(50% - 0.5px);
    left: 70px;
    width: 70px;
    height: 1px;
    background-color: rgb(255, 255, 255);
    content: '';
}
@media screen and (max-width: 1024px) {
  .line::after {
    left: 100% !important;
    width: 9vw !important;
  }
}
.now{
  background-color: rgb(255, 255, 255) !important;
  color: black !important;
}
.form-tb{
  width: 100%;
  margin-bottom: 30px;
  background-color: rgb(0, 0, 0);
  font-family:"'Noto Sans JP',游ゴシック Medium",YuGothic,YuGothicM,
              "Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro",
              メイリオ,Meiryo,sans-serif !important;
}
@media screen and (max-width: 1024px) {
  .form-tb{
    display: block;
    margin-bottom: 2vh;
  }
}
.form-tb tr{
  border: solid 1px rgb(136, 136, 136);
}
@media screen and (max-width: 1024px) {
  .form-tb tr {
    display:-webkit-box;
  	display:-ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
  	-ms-flex-direction: column;
  	flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  .form-tb tbody {
    display: block;
  }
}
.form-tb th {
  text-align: left;
  vertical-align: top;
  width: 220px;
  padding-top: 35px;
  padding-left: 30px;
  font-size: 16px;
  color: rgb(255, 255, 255);
  line-height: 1.25;
}
@media screen and (max-width: 1024px) {
  .form-tb th {
    display: block;
    width: 100%;
    padding: 4vw 5vw 1.5vw 5vw;
    font-size: 4.2vw;
    font-weight: bold;
  }
}
.form-tb th span{
  font-size: 14px;
  color: rgb(102, 102, 102);
  line-height: 1.429;
  font-family: 'Noto Serif','Yu Mincho Light','YuMincho',
                  'Yu Mincho','游明朝体','ヒラギノ明朝 ProN',
                  'Hiragino Mincho ProN',serif;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .form-tb th span{
    font-size: 3.4vw;
  }
}


.form-tb td {
  padding: 30px 30px 30px 0;
  line-height: 1.6;
}
@media screen and (max-width: 1024px) {
  .form-tb td {
    padding: 0 5vw 5vw 5vw;
  }
}

.submit-outer,
.back-outer{
  position: relative;
}
.submit-outer input,
.back,
.go-top {
  display: block;
  width: 240px;
  height: 50px;
  margin: auto;
  border-style: solid;
  border-width: 1px;
  border-color: rgb(255, 255, 255);
  background-color: rgb(255, 255, 255);
  font-size: 16px;
  font-family:"'Noto Sans JP',游ゴシック Medium",YuGothic,YuGothicM,
  "Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro",
  メイリオ,Meiryo,sans-serif;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .submit-outer input,
  .back {
    height: 6vh;
    width: 100%;
    padding: 0;
    margin: 0;
    font-size: 3.9vw;
  }
}
.next {
    position: absolute;
    top: calc(50% - 1px);
    width: 8px;
    height: 8px;
    border-top: solid 1px;
    border-right: solid 1px;
    border-color: black;
    transform: rotate(45deg) translateY(-50%);
}
@media screen and (max-width: 1024px) {
  .next {
    right: 2vw;
    width: 2vw;
    height: 2vw;
  }
}



.btn-outer .next{
  right: 1em;
}
@media screen and (max-width: 1024px) {
  .btn-outer .next{
    right: 16vw;
    width: 2vw;
    height: 2vw;
  }
}

.submit-outer input:hover,
.back:hover,
.go-top:hover{
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
}
.submit-outer input:hover~.next,
.back-outer>a:hover~.next,
.go-top:hover~.next {
  border-color: rgb(255, 255, 255);
}


/*****************************
top
*****************************/
.top {
  position: relative;
  height: 100vh;
  min-height: 800px;
  background-image: url(../img/ph01_1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 1024px) {
  .top {
    min-height: 180vw;
    background-image: url(../img/sp_ph01.jpg);
  }
}
@media screen and (max-width: 1024px) {
  .top .logo {
    position: absolute;
    width: 53%;
    top: 0;
    right: 0;
  }
}
@media screen and (max-width: 1024px) {
  .top .logo img {
    width: 100%;
    height: auto;
  }
}


.text {
    position: absolute;
    top: 42.5%;
    right: 10%;
}
@media screen and (max-width: 1024px) {
  .text {
    left: 0;
    bottom: 0;
    right: auto;
    top: auto;
    margin: 5.2vw;
  }
}
.text .hl1 {
  margin-bottom: 1em ;
  font-size: 22px;
  font-weight: 700;
  color: rgb(255, 255, 255);
}
@media screen and (max-width: 1024px) {
  .text .hl1 {
    font-size: 4.9vw;
  }
}
.text p{
  font-size: 14px;
  color: rgb(255, 255, 255);
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .text p{
    font-size: 3.75vw;
    line-height: 1.8;
  }
}

.text .contact {
    position: relative;
    display: flex;
    align-items: center;
    width: 177px;
    height: 38px;
    padding-left: 0.5em;
    margin-top: 1em;
    border-style: solid;
    border-width: 1px;
    border-color: rgb(255, 255, 255);
    background-color: rgb(255, 255, 255);
    font-size: 24px;
    font-weight: 700;
    color: rgb(0, 0, 0);
}
@media screen and (max-width: 1024px) {
  .text .contact{
    width: 39%;
    height: 1.7em;
    font-size: 5.75vw;
  }
}
.text .contact::after {
  position: absolute;
  display: block;
  right: 0.5em;
  top: calc(50% - 1px);
  width: 8px;
  height: 8px;
  border-top: solid 1px;
  border-right: solid 1px;
  border-color: rgb(0, 0, 0);
  transform: rotate(45deg) translateY(-50%);
  content: "";
}
@media screen and (max-width: 1024px) {
  .text .contact::after {
    right: 2vw;
    width: 2vw;
    height: 2vw;
  }
}
.text .contact:hover {
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
}
.text .contact:hover::after {
  border-color: rgb(255, 255, 255);
}


/*****************************
input
*****************************/
.input .name,
.input .add {
  width: 100%;
  height: 40px;
  padding: 0 1em;
  font-size: 14px;
  font-family:"'Noto Sans JP',游ゴシック Medium",YuGothic,YuGothicM,
              "Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro",
              メイリオ,Meiryo,sans-serif !important;
  color: #9b9b9b;
}
@media screen and (max-width: 1024px) {
  .input .name,
  .input .add {
    font-size: 3.8vw;
    font-weight: 700;
    height: 6vh;
  }
}

.input .msg {
  width: 100%;
  height: 170px;
  padding: 1em;
  font-size: 14px;
  font-family:"'Noto Sans JP',游ゴシック Medium",YuGothic,YuGothicM,
              "Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro",
              メイリオ,Meiryo,sans-serif !important;
  color: #9b9b9b;
}
@media screen and (max-width: 1024px) {
  .input .msg {
    height: 23vh;
    font-size: 3.8vw;
    font-weight: 700;
  }
}


/*****************************
check
*****************************/
.name-out,
.add-out {
  display: flex;
  align-items: center;
  vertical-align: middle;
  width: 100%;
  height: 40px;
  padding: 0 1em;
  font-size: 14px;
  color: rgb(255, 255, 255);
}
@media screen and (max-width: 1024px) {
  .name-out,
  .add-out {
    font-size: 3.8vw;
    font-weight: 700;
    height: 6vh;
  }
}
.msg-out {
  width: 100%;
  height: 170px;
  overflow: auto;
  padding: 1em;
  font-size: 14px;
  color: rgb(255, 255, 255);
}
@media screen and (max-width: 1024px) {
  .msg-out  {
    height: 23vh;
    font-size: 3.8vw;
    font-weight: 700;
  }
}

.btn-outer{
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .btn-outer{
    flex-direction: column-reverse;
  }
}
.back-outer,
.submit-outer{
  margin: 0 15px;
}
@media screen and (max-width: 1024px) {
  .back-outer,
  .submit-outer{
    margin: 0;
    padding: 1.5vh 12vw;
  }
}
.back{
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
}



/*****************************
finish
*****************************/
.box{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 430px;
  border-style: solid;
  border-width: 1px;
  border-color: rgb(136, 136, 136);
  background-color: rgb(0, 0, 0);
  margin-bottom: 80px;
  font-family:"'Noto Sans JP',游ゴシック Medium",YuGothic,YuGothicM,
              "Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro",
              メイリオ,Meiryo,sans-serif !important;
}
@media screen and (max-width: 1024px) {
  .box{
    height: auto;
  }
}
.box .thanks{
  margin:120px 0 30px 0 ;
  font-size: 22px;
    color: rgb(255, 255, 255);
    color: rgb(255, 255, 255);
    font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .box .thanks{
    margin: 18vh 0 3vh 0;
    font-size: 4.5vw;
    text-align: center;
    line-height: 1.6;
  }
}
.box .p-wait{
  text-align: center;
  margin-bottom: 50px;
  font-size: 14px;
  color: rgb(255, 255, 255);
  line-height: 1.6;
}
@media screen and (max-width: 1024px) {
  .box .p-wait{
    font-size: 2vw;
    margin-bottom: 3vh;
  }
}
.go-top{
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
}
@media screen and (max-width: 1024px) {
  .go-top{
    font-size: 2.5vh;
    width: 63vw;
    height: 6vh;
    /* margin-bottom: 17vh; */
  }
}
.box .go-top-outer{
  position: relative;
}
@media screen and (max-width: 1024px) {
  .box .go-top-outer{
    margin-bottom: 17vh;
  }
}
.box .next{
  right: 1em;
}
