@charset "UTF-8";
/*共通*/
img {
  max-width: 100%;
  height: auto;
}

.fontMincho {
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif" !important;
}

.font120 {
  font-size: 120%;
}

.flexCenter {
  align-items: center;
}

.flexReverse {
  flex-direction: row-reverse;
}

.textNavy {
  color: #29558A;
}

.textBottomL {
  margin-bottom: 50px;
}

.textCenterPC, .textCenter {
  text-align: center;
}

.textRight {
  text-align: right;
}

.flexCenter {
  display: flex;
  justify-content: center;
}

body {
  font-size: 14px;
  line-height: 1.8;
}

.w800Box {
  width: 800px;
  margin: 0 auto;
}

.imgCenter {
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 640px) {
  .textBottomL {
    margin-bottom: 30px;
  }

  .textCenterPC {
    text-align: left;
  }

  .w800Box {
    width: 100%;
  }
}
/*common*/
.logoArea {
  text-align: center;
  font-size: 18px;
  margin-bottom: 10px;
}
.logoArea img {
  display: block;
  width: 140px;
  margin: 0 auto;
}

h1.sdTitle {
  text-align: center;
  font-size: 32px;
  margin-bottom: 10px;
}

h2.sdTitle {
  text-align: center;
  font-size: 28px;
  margin-bottom: 10px;
}

.checkBtnArea {
  text-align: center;
  margin-top: 30px;
}

.backColor {
  padding: 0 0 50px;
}

.contentsBox {
  margin: 0 auto 0;
  padding-top: 50px;
  width: 800px;
}

.spaceBottom {
  margin-bottom: 20px;
}

.sdNormalBtn {
  display: block;
  position: relative;
  background-color: #0081CC;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  text-align: center;
  color: #fff;
  width: 350px;
  padding: 10px 0;
  margin: 20px auto 0;
  font-size: 18px;
  font-weight: 600;
}
.sdNormalBtn::before {
  position: absolute;
  content: '';
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg) translateX(-50%) translateY(-50%);
  transform: rotate(45deg) translateX(-50%) translateY(-50%);
  right: 8%;
  top: 50%;
  margin-top: 2px;
}

@media screen and (max-width: 640px) {
  .logoArea {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .logoArea img {
    width: 120px;
  }

  h1.sdTitle {
    font-size: 7vw;
    margin-bottom: 5px;
  }

  h2.sdTitle {
    font-size: 6vw;
    margin-bottom: 5px;
  }

  .backColor {
    padding: 0 0 30px;
  }

  .contentsBox {
    padding-top: 30px;
    width: 94%;
  }

  .sdNormalBtn {
    width: 90%;
    max-width: 350px;
  }
}
/*チェクで送信ボタン*/
.checkBtnArea {
  text-align: center;
}

.check-box {
  margin-bottom: 10px;
}

.checkBox {
  display: none;
}

.checkBox + span {
  cursor: pointer;
  display: inline-block;
  margin: 0 0.2em 0;
  padding: 0 0 0 2em;
  position: relative;
  font-size: 13px;
}
.checkBox + span a {
  text-decoration: underline;
}

.checkBox + span::before {
  -webkit-transform: translateY(-50%);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.8);
  border-radius: 2px;
  content: "";
  display: block;
  height: 1.3em;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.3em;
}

.checkBox + span::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  border-bottom: 3px solid #0081CC;
  border-left: 3px solid #0081CC;
  content: "";
  display: block;
  height: 0.6em;
  left: 1%;
  margin-top: -0.2em;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  transition: all 0.3s ease 0s;
  width: 1em;
}

.checkBox:checked + span::after {
  opacity: 1;
}

.submitArea {
  position: relative;
  width: 350px;
  margin: 0 auto;
}
.submitArea::before {
  position: absolute;
  z-index: 1;
  content: '';
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg) translateX(-50%) translateY(-50%);
  transform: rotate(45deg) translateX(-50%) translateY(-50%);
  right: 8%;
  top: 50%;
  margin-top: 2px;
}

.submitBtn {
  border: none;
  font-size: 18px;
  padding: 0.6em 0;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  width: 100%;
  background-color: #0081CC;
  border-radius: 5px;
  color: #fff;
  font-weight: 600;
  position: relative;
  cursor: pointer;
}

.submitBtn:hover,
.submitBtn:focus {
  outline: none;
}

.submitBtn::-moz-foucus-inner {
  border: none;
  padding: 0;
}

input:disabled {
  cursor: default;
  background-color: #D8D8D8;
}

@media screen and (max-width: 640px) {
  .submitArea {
    width: 90%;
  }
}
/*top*/
.sdMainArea {
  padding: 30px 0;
}
.sdMainArea .sdMainInnerBox {
  background-color: #fff;
  width: 600px;
  margin: 0px auto;
  padding: 30px 0;
  border-radius: 20px;
}

.listBox {
  display: flex;
  justify-content: space-between;
}
.listBox li {
  width: 30%;
}
.listBox li h2 {
  font-size: 20px;
  text-align: center;
  margin: 10px 0 5px;
}

.sdFlowBox {
  background-color: #fff;
  padding: 20px 0;
  border-radius: 20px;
  width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flowList li {
  margin-bottom: 5px;
}
.flowList li .num {
  display: inline-block;
  height: 24px;
  width: 24px;
  line-height: 24px;
  border-radius: 50%;
  text-align: center;
  background-color: #d8d8d8;
  font-weight: bold;
  color: #fff;
  margin-right: 5px;
}

@media screen and (max-width: 640px) {
  .sdMainArea {
    padding: 30px 0;
  }
  .sdMainArea .sdMainInnerBox {
    width: 90%;
    margin: 0px auto;
    padding: 20px 0;
  }

  .listBox {
    flex-direction: column;
  }
  .listBox li {
    width: 100%;
    margin-bottom: 20px;
  }
  .listBox li h2 {
    font-size: 5vw;
    text-align: center;
    margin: 5px 0 0px;
  }
  .listBox li img {
    display: block;
    width: 80%;
    margin: 0 auto;
  }
  .listBox li:last-child {
    margin: 0;
  }

  .sdFlowBox {
    padding: 15px 0;
    width: 94%;
  }
}
/*address*/
.formArea {
  text-align: center;
  margin-bottom: 30px;
}
.formArea input {
  width: 28em;
  font-size: 16px;
  padding: 0.5em;
}

button.submitBtn {
  display: block;
  margin: 0 auto;
  width: 350px;
}

@media screen and (max-width: 640px) {
  .formArea input {
    width: 90%;
    font-size: 16px;
  }

  button.submitBtn {
    width: 80%;
    max-width: 350px;
  }
}
/*question*/
.setsumonBox {
  background-color: #fff;
  padding: 30px 0;
  border-radius: 20px;
  text-align: center;
}
.setsumonBox h2.sdQuestion {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

.selectBtnArea input {
  display: none;
}
.selectBtnArea ul {
  display: flex;
  justify-content: center;
}
.selectBtnArea ul li {
  margin: 0 10px;
}
.selectBtnArea ul li label {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 180px;
  height: 80px;
  font-size: 18px;
  border-radius: 5px;
  margin: 0;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.6;
  transition: .2s;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all  0.3s ease;
}
.selectBtnArea ul li input[type="radio"]:checked + label {
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

#nextBtn {
  position: relative;
  display: block;
  width: 280px;
  margin: 30px auto 0;
  padding: 10px 0;
  background-color: #B6B6B6;
  border: none;
  border-radius: 5px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all  0.3s ease;
}
#nextBtn::before {
  position: absolute;
  content: '';
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg) translateX(-50%) translateY(-50%);
  transform: rotate(45deg) translateX(-50%) translateY(-50%);
  right: 8%;
  top: 50%;
  margin-top: 2px;
}

.btnOn {
  cursor: pointer;
  background-color: #0081CC !important;
}
.btnOn:hover {
  opacity: 0.8;
}

@media screen and (max-width: 640px) {
  .setsumonBox h2.sdQuestion {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .selectBtnArea ul {
    flex-direction: column;
    align-items: center;
  }
  .selectBtnArea ul li {
    margin: 10px 5%;
    width: 70%;
  }
  .selectBtnArea ul li label {
    width: 100%;
    height: 3.5em;
    font-size: 4vw;
  }
  .selectBtnArea #nextBtn {
    width: 200px;
    margin: 20px auto 0;
    font-size: 4vw;
  }
}
/*type*/
.sdKekkaBox {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sdKekkaBox h1.sdTitleKekka {
  font-size: 26px;
  margin-bottom: 20px;
  line-height: 1.4;
}
.sdKekkaBox h1.sdTitleKekka .sm {
  font-size: 16px;
  font-weight: normal;
}
.sdKekkaBox img {
  width: 300px;
  height: auto;
  margin-left: 50px;
}

h2.sdYoutubeTitle {
  font-size: 24px;
  text-align: center;
  margin-bottom: 10px;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.youtubeWidth {
  width: 600px;
}

@media screen and (max-width: 640px) {
  .sdKekkaBox {
    padding: 20px 4%;
    flex-direction: column;
  }
  .sdKekkaBox h1.sdTitleKekka {
    font-size: 7vw;
    margin-bottom: 10px;
    text-align: center;
  }
  .sdKekkaBox h1.sdTitleKekka .sm {
    font-size: 70%;
  }
  .sdKekkaBox img {
    width: 100%;
    margin-top: 10px;
    margin-left: 0px;
  }

  h2.sdYoutubeTitle {
    font-size: 5vw;
  }

  .youtubeWidth {
    width: 94%;
  }
}
