* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "NotoSansJP";
  src: url("fonts/NotoSansJP/NotoSansJP-Regular.woff2") format("woff2"), url("fonts/NotoSansJP/NotoSansJP-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "NotoSansJP";
  src: url("fonts/NotoSansJP/NotoSansJP-Bold.woff2") format("woff2"), url("fonts/NotoSansJP/NotoSansJP-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}
@keyframes headerAnimation {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 100;
    transform: translateY(0);
  }
}
body {
  color: #333;
  font-family: "NotoSansJP", sans-serif;
}

main {
  padding-top: 100px;
  max-width: 1240px;
  margin: 0 auto;
}
@media screen and (max-width: 1199px) {
  main {
    margin: 0 16px;
  }
}
@media screen and (max-width: 767px) {
  main {
    padding-top: 64px;
  }
}

.container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .container {
    flex-direction: column;
  }
}
.container .svg_box {
  width: 580px;
}
@media screen and (max-width: 1199px) {
  .container .svg_box {
    width: 48%;
  }
}
@media screen and (max-width: 767px) {
  .container .svg_box {
    width: 100%;
  }
}
.container .inputData_box {
  width: 580px;
  height: calc(100vh - 200px);
  overflow: scroll;
  padding-bottom: 24px;
}
@media screen and (max-width: 1199px) {
  .container .inputData_box {
    width: 48%;
  }
}
@media screen and (max-width: 767px) {
  .container .inputData_box {
    width: 100%;
    height: calc(50vh - 80px);
  }
}

.input_box {
  width: 100%;
  border: solid 2px #1f286f;
  border-radius: 8px;
  margin-bottom: 16px;
  padding: 8px 16px;
}
.input_box p {
  font-size: 20px;
  color: #1f286f;
  line-height: 1;
  margin-bottom: 8px;
}
.input_box textarea {
  display: inline-block;
  width: calc(100% - 32px);
  padding: 8px;
  vertical-align: top;
  max-height: 170px;
  border: none;
  font-size: 18px;
  font-family: "NotoSansJP", sans-serif;
  font-weight: normal;
  outline: none;
  line-height: 1.6;
  resize: vertical;
}
.input_box textarea::placeholder {
  color: #1f286f;
  opacity: 0.3;
}
.input_box .label_box label {
  font-size: 16px;
}
.input_box .label_box label:not(:nth-child(1)) {
  margin-left: 32px;
}
.input_box .label_box input[type=radio] {
  margin-right: 8px;
}
.input_box input[type=text] {
  width: calc(100% - 32px);
  border: none;
  font-size: 20px;
}
.input_box input[type=text]:focus {
  outline: none;
}
.input_box input[type=text]::placeholder {
  color: #1f286f;
  opacity: 0.3;
}

.ns_select-box p {
  font-size: 16px;
}
.ns_select-box .radiobox input {
  vertical-align: middle;
  margin-right: 16px;
}
.ns_select-box .radiobox label {
  font-size: 16px;
}
.ns_select-box .radiobox label:not(:nth-child(1)) {
  margin-left: 40px;
}

.svg-make_button {
  padding: 8px 32px;
  font-size: 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  background: #1f286f;
  color: #fff;
}
.svg-make_button:active {
  opacity: 0.5;
}

.modal {
  display: none;
}

.usage_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.modalArea {
  display: none;
  position: fixed;
  z-index: 11;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.modalArea .modalBg {
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.9);
}
.modalArea .modalWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 600px;
  padding: 16px;
  background-color: #fff;
}
.modalArea .modalWrapper .modal_header {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  padding-bottom: 16px;
  border-bottom: solid 1px #ededed;
}
.modalArea .modalWrapper .modal_header .modal_button {
  position: relative;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.modalArea .modalWrapper .modal_header .modal_button .line {
  position: absolute;
  top: 11px;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background-color: #1f286f;
}
.modalArea .modalWrapper .modal_header .modal_button .line:nth-child(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.modalArea .modalWrapper .modal_header .modal_button .line:nth-child(2) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.modalArea .modalWrapper .modal_content {
  width: 100%;
}
.modalArea .modalWrapper .closeModal {
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  cursor: pointer;
}

.about_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.article {
  width: 100%;
  padding: 50px 20px;
}
.article h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 40px;
}
.article p {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 32px;
}

.modal-body .trimming-area {
  min-width: 100%;
}
.modal-body .trimming-area img {
  width: 100%;
}

.trimming-btn {
  display: inline-block;
  padding: 0 6px;
  background-color: red;
  border: none;
  border-radius: 8px;
  text-align: center;
  line-height: 2;
  cursor: pointer;
  color: #fff;
}
.trimming-btn:hover {
  opacity: 0.5;
}

header {
  position: absolute;
  top: 0;
  height: 100px;
  width: 100%;
  padding: 0 40px;
  background: #fff;
  z-index: 10;
}
@media screen and (max-width: 1199px) {
  header {
    height: 60px;
    padding: 0;
  }
}
header .header__inner {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
header .header__inner h1 {
  margin-top: -10px;
  line-height: 1;
}
header .header__inner h1 a {
  font-size: 24px;
  color: #1f286f;
  text-decoration: none;
}
@media screen and (max-width: 1199px) {
  header .header__inner h1 a {
    font-size: 20px;
    margin-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  header .header__inner h1 a {
    font-size: 16px;
  }
}
header .header__inner .hum-box {
  display: none;
  z-index: 999;
  cursor: pointer;
  margin-right: 20px;
}
@media screen and (max-width: 1199px) {
  header .header__inner .hum-box {
    display: inline;
  }
}
header .header__inner .hum-box.open .hum-line:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
header .header__inner .hum-box.open .hum-line:nth-child(2) {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
}
header .header__inner .hum-box.open .hum-line:nth-child(3) {
  top: -10px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
header .header__inner .hum-box .hum-line {
  position: relative;
  display: block;
  height: 2px;
  width: 30px;
  background-color: #1f286f;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
header .header__inner .hum-box .hum-line:nth-child(1) {
  top: 0;
}
header .header__inner .hum-box .hum-line:nth-child(2) {
  margin: 8px 0;
}
header .header__inner .hum-box .hum-line:nth-child(3) {
  top: 0;
}
header .header__inner .header__nav {
  display: flex;
  align-items: center;
}
header .header__inner .header__nav .header__nav__list {
  list-style: none;
  display: block;
}
header .header__inner .header__nav .header__nav__list .item {
  display: inline-block;
  letter-spacing: 0;
}
header .header__inner .header__nav .header__nav__list .item a {
  position: relative;
  display: inline-block;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 1px;
  cursor: pointer;
  color: #333;
  text-decoration: none;
}
header .header__inner .header__nav .header__nav__list .item a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #1f286f;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform 0.3s;
}
header .header__inner .header__nav .header__nav__list .item a:hover::after {
  transform: scale(1, 1);
}
header .header__inner .header__nav .header__nav__list .item + .item {
  margin-left: 40px;
}
@media screen and (max-width: 1199px) {
  header .header__inner .header__nav {
    display: flex;
    position: absolute;
    top: 60px;
    width: 100%;
    padding: 30px 0;
    background-color: #fff;
    text-align: center;
    opacity: 0;
    transform: translateX(-100%);
    transition: all ease-in-out 0.5s;
    z-index: 990;
  }
  header .header__inner .header__nav .header__nav__list {
    position: relative;
    width: 100%;
    height: auto;
    text-align: center;
  }
  header .header__inner .header__nav .header__nav__list .item {
    display: block;
    margin: 20px 0;
  }
  header .header__inner .header__nav .header__nav__list .item + .item {
    margin-left: 0;
  }
  header .header__inner .header__nav.open {
    transform: translateX(0);
    opacity: 1;
  }
}