@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap');
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #333333;
  font-weight: 500;
  background-color: #edf5f9;
}
.header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 26px;
}
.header__logo {
  margin: 31px 0 0 min(64px, 2vw);
    max-width: 45vw;
}
.header__logo img {
  width: 100%;
}
.header__nav ul {
  display: flex;
  align-items: center;
  height: 73px;
  margin: 62px 46px 0 0;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 0 47px;
}
.header__nav ul li+li {
  margin-left: 87px;
}
.header__nav ul li a {
  color: #515151;
  font-size: min(2.5vw, 24px);
}
.layout {
  width: min(100% - 48px, 1200px);
  margin: min(150px, 16vw) auto 0;
}
.layout h1 {
  font-size: min(52px, 4.8vw);
  margin: 60px 0;
  font-weight: bold;
}
.layout__text, .layout__text p {
  font-size: 20px;
}
.layout__linkBtn a {
  display: inline-block;
  padding: 15px 23px;
  background-color: #fff;
  text-align: center;
  margin-top: 40px;
  box-shadow: 0 7px 16px rgb(0 0 0 / 13%);
  font-size: 18px;
  line-height: 1.5;
}
.contact {
  margin: 9vw auto 0;
  width: min(100% - 48px, 1200px);
}
.contact h3 {
  text-align: center;
  font-size: min(7vw, 50px);
}
.contact__contents {
  margin-top: calc(6vw + 12px);
  display: grid;
  grid-template-rows: auto auto 1fr;
}
.contact__contentsImg {
  grid-column: 1/2;
  grid-row: 1/4;
  margin-right: min(3vw, 46px);
  width: min(40vw, 576px);
}
.contact__contentsImg img {
  width: 100%;
}
.contact__contentsName {
  grid-column: 2/3;
  grid-row: 1/2;
  margin-top: 18px;
  font-weight: bold;
  font-size: min(3vw, 28px);
}
.contact__contentsText {
  grid-column: 2/3;
  grid-row: 2/3;
  margin-top: 17px;
  font-size: min(2.5vw, 24px);
}
.contact__contentsBtn {
  grid-column: 2/3;
  grid-row: 3/4;
}
.contact__contentsBtn a {
  display: block;
  padding: 34px 0;
  background-color: #fff;
  text-align: center;
  width: min(45vw, 458px);
  margin-top: 40px;
  box-shadow: 0 7px 16px rgb(0 0 0 / 13%);
  font-size: min(2.5vw, 24px);
}
.form__inner {
  background-color: #fff;
  padding: 90px 140px;
  margin-top: 55px;
}
.formArea dt {
  font-size: 20px;
  margin-bottom: 30px;
  line-height: 1.5;
}
.formArea__inputText input,
.formArea__inputText textarea{
  width: 100%;
  border: 1px solid #989898;
  box-sizing: border-box;
  border-radius: 2px;
  padding: 14px;
  font-size: 20px;
}
.formArea__inputText {
  display: flex;
  height: 131px;
  justify-content: space-between;
}
.formArea__inputText dt {
  width: 272px;
}
.formArea__inputText dd {
  width: min(604px, 54vw);
}
.formArea__inputText--textArea{
  height: auto;
}
.formArea__mandatory dt {
  margin-top: 6px;
}
.formArea__mandatory dt:before {
  content: "必須";
  background-color: #4c4c4c;
  color: #fff;
  padding: 5px 11px;
  margin-right: 29px;
  font-weight: normal;
  font-size: 20px;
  display: inline-block;
}
.formArea__name {
  display: flex;
  justify-content: space-between;
}
.formArea__name div {
  width: min(288px, 24vw);
}
.formArea__case input[type=radio]+label {
  position: relative;
  display: inline-block;
  border: 1px solid #c8c8c8;
  margin-right: 30px;
}
.formArea__case input[type=radio]+label span {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 18px;
  font-weight: normal;
  background-color: rgba(90, 90, 90, 0.7);
  color: #fff;
  width: 100%;
  text-align: center;
  padding: 13px 0;
}
.formArea__case input[type=radio]+label:before {
  content: "";
  display: inline-block;
  background-size: contain;
  width: 190px;
  height: 190px;
}
.formArea__case input[type=radio][value="cover"]+label:before {
  background-image: url(/assets/make/img/make-case-img01.jpg);
}
.formArea__case input[type=radio][value="pocketBook"]+label:before {
  background-image: url(/assets/make/img/make-case-img02.jpg);
}
.formArea__case input[type=radio]:checked+label {
  border: 4px solid #000;
}
.formArea__case input[type=radio] {
  display: none;
}
.formArea__image {
  margin-top: 84px;
}
.formArea__template {
  margin-top: 84px;
}
.formArea__template select {
  font-size: 18px;
  padding: 14px;
}
.formArea__templateList {
  display: flex;
  flex-wrap: wrap;
  margin-top: 12px;
}
.formArea__templateTxt {
  width: 100%;
  font-size: 16px;
}
.formArea__templateItem {
  border: 1px solid #c8c8c8;
  width: 134px;
  height: 134px;
  overflow: hidden;
  position: relative;
  margin: 12px 12px 0 0;
}
.formArea__templateItem span {
  position: absolute;
  font-size: 18px;
  color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-shadow: rgb(0 0 0) 0 0 9px;
  text-align: center;
}
.formArea__templateItem img {
  height: 100%;
}
.formArea__grayDisplay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}
.formArea__grayDisplay img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  object-fit: contain;
}
.formArea__submitBtn {
  margin-top: 100px;
  text-align: center;
}
.formArea__submitBtn button {
  font-weight: 700;
  color: #fff;
  background-color: #EBB630;
  border: none;
  box-sizing: border-box;
  border-radius: 2px;
  padding: 20px;
  font-size: 18px;
  width: 300px;
  cursor: pointer;
}
.footer {
  background-color: #fff;
  margin-top: 11vw;
}
.footer ul {
  display: table;
  margin: 0 auto;
}
.footer ul li {
  display: inline-block;
  margin: 20px 3vw;
}
.footer ul li a {
  font-size: 16px;
  font-weight: 400;
}
.pageTop {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 0;
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.4);
  background-image: url(/assets/common/img/pagetop.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 20px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  -webkit-transition: .5s ease;
  transition: .5s ease;
  cursor: pointer;
  z-index: 10;
}
.pageTop a:hover {
  opacity: 0.7;
}
/* tablet
---------------------------------------------------------------------------------*/
@media screen and (min-width:768px) and (max-width:1330px) {
  .header__nav {
    width: 48vw;
  }
  .header__nav ul {
    margin: 62px 10px 0 0;
    padding: 0 2vw;
    justify-content: space-around;
  }
  .header__nav ul li+li {
    margin-left: 3vw;
  }
}
@media screen and (min-width:768px) and (max-width:1230px) {
  .form__inner {
    padding: 90px 5vw;
  }
}
/* SP
---------------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .spNone {
    display: none !important;
  }
  img {
    width: 100%;
  }
  body {
    overflow: hidden;
    position: relative;
  }
  .header {
    display: block;
  }
  .header__logo {
    margin: 0;
    width: 73vw;
    max-width: none;
  }
  .header__navOpenBtn {
    position: absolute;
    width: 15vw;
    height: 15vw;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.7);
    top: 4vw;
    right: 3vw;
    border-radius: 100%;
  z-index: 10;}
  .header__navOpenBtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: calc(4vw + -1px);
    height: 3px;
    background-color: #fff;
  }
  .header__navOpenBtn span:nth-of-type(1) {
    top: 6vw;
    width: 50%;
  }
  .header__navOpenBtn span:nth-of-type(2) {
    top: 9vw;
    width: 50%;
  }
  .header__navOpenBtn.active span:nth-of-type(1) {
    top: 7vw;
    left: 4vw;
    transform: rotate(-45deg);
    width: 46%;
  }
  .header__navOpenBtn.active span:nth-of-type(2) {
    top: 7vw;
    left: 4vw;
    transform: rotate(45deg);
    width: 46%;
  }
  .header__nav ul {
    display: block;
    height: auto;
    margin: 0;
    padding: 6vw 4vw;
    background-color: rgba(0, 0, 0, 0.9);
    width: 44vw;
    position: absolute;
    top: 22vw;
    right: 0;
    transform: translateX(44vw);
    transition: all 0.4s;
  z-index: 10;}
  .header__nav ul li+li {
    margin: 8vw 0 0 0;
  }
  .header__nav ul.active {
    transform: translateX(0);
  }
  .header__nav ul li a {
    color: #fff;
    font-size: 5vw;
    font-weight: normal;
  }
  .layout {
    margin: 16vw 3vw 0;
    width: auto;
  }
  .layout h1 {
    margin: 8vw 0;
    line-height: 1.5;
    font-size: 7vw;
  }
  .layout__text, .layout__text p {
    font-size: 18px;
  }
  .contact {
    width: auto;
    margin: 14vw 0 11vw;
  }
  .contact h3 {
    font-size: 10vw;
  }
  .contact__contents {
    margin: 3vw;
  }
  .contact__contentsImg {
    width: auto;
    margin: 3vw 0 0;
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .contact__contentsName {
    grid-column: 1/2;
    grid-row: 1/2;
    font-size: 5vw;
    margin-top: 5vw;
  }
  .contact__contentsText {
    grid-column: 1/2;
    grid-row: 3/4;
    margin-top: 3vw;
    font-size: 4vw;
  }
  .contact__contentsBtn {
    grid-column: 1/2;
    grid-row: 4/5;
  }
  .contact__contentsBtn a {
    width: auto;
    margin: 9vw 6vw 0;
    padding: 5vw 0;
    font-size: 4vw;
  }
  .form__inner {
    padding: 10vw 3vw;
  }
  .formArea dt {
    font-size: 18px;
    margin-bottom: 16px;
  }
  .formArea__inputText input,
  .formArea__inputText textarea {
    font-size: 17px;
  }
  .formArea__inputText {
    display: block;
  }
  .formArea__inputText dd {
    width: auto;
  }
  .formArea__mandatory dt:before {
    font-size: 16px;
    padding: 4px 9px;
    margin-right: 14px;
  }
  .formArea__name div {
    width: 48%;
  }
  .formArea__case input[type=radio]+label {
    margin-right: 3vw;
  }
  .formArea__case input[type=radio]+label:before {
    width: 39vw;
    height: 39vw;
  }
  .formArea__image {
    margin-top: 16vw;
  }
  .formArea__template {
    margin-top: 16vw;
  }
  .formArea__templateItem {
    width: 40vw;
    height: 40vw;
  }
  .formArea__templateItem img {
    width: auto;
  }
  .formArea__grayDisplay img {
    width: 90%;
  }
  .formArea__submitBtn {
    margin-top: 13vw;
  }
  .footer {
    padding: 5vw 0;
  }
  .footer ul {
    display: block;
    margin: 0;
  }
  .footer ul li {
    display: block;
    margin: 10vw 3vw;
  }
  .footer ul li a {
    font-size: 4vw;
  }
}
/* PC
---------------------------------------------------------------------------------*/
@media screen and (min-width: 768px) {
  .pcNone {
    display: none !important;
  }
}