@charset "UTF-8";
/*--スタイル初期化-------------------------------------------------------------*/
body,
div,
dl,
dt,
dd,
ul,
li,
ol,
li,
h1,
h2,
h3,
h4,
h5,
form,
p,
table,
th,
td,
address {
  margin: 0;
  padding: 0;
}

body {
  color: #555;
  font-family: Verdana, Arial, 'メイリオ', Meiryo, 'ヒラギノ角ゴPro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', sans-serif;
  line-height: 120%;
}

a img,
img {
  border: 0;
}

ul,
li,
ol,
li {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th {
  text-align: left;
}

a {
  color: #0096d4;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

input[type='text'],
input[type='password'],
select {
  padding: 3px;
  border: 1px solid #ccc;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/*--clearfix------------------------------------------------------------------*/
.clearfix {
  zoom: 1;
}

.clearfix::after {
  content: '';
  display: block;
  clear: both;
  height: 0;
}

/*--汎用スタイル---------------------------------------------------------------*/
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-size: 12px;
  background: #f5f5f5;
}

.center {
  text-align: center !important;
}

.left {
  text-align: left !important;
}

.right {
  text-align: right !important;
}

.cancel {
  text-decoration: line-through !important;
}

input[type='button'],
input[type='submit'] {
  display: inline-block;
  margin: 10px 3px;
  padding: 0 1.6em;
  font-size: 1em;
  background: #fff;
  border: 1px solid #999;
  border-radius: 2px;
  cursor: pointer;
}

.button {
  display: inline-block;
  margin: 5px 15px 5px 15px;
  padding: 15px 40px 15px 40px;
  color: #fff;
  font-size: 1.2em;
  text-align: center;
  text-decoration: none;
  background-color: #499475;
  border: 1px solid #499475;
  border-radius: 5%;
}

.button:hover {
  color: #499475;
  background-color: #fff;
  border: 1px solid #499475;
}

.button--firstMessage {
  margin: 25% 15px 0 15px;
}

.--itemRight {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.--itemRight-left {
  margin-right: auto;
}

.--itemCenter {
  display: flex;
  align-items: center;
}

#slideMenuInput {
  display: none;
}

.slideMenu {
  position: fixed;
  z-index: 9999;
  width: 100%;
  padding: 0;
}

.slideMenuNav {
  position: absolute;
  /* 開いてないときは画面外に配置 */
  top: -500px;
  z-index: 9999;
  width: 100%;
  text-align: center;
  background: #333;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.slideMenuNav__list {
  position: static;
  right: 0;
  bottom: 0;
  font-size: 11px;
  list-style: none;
}

.slideMenuNav__button {
  border-bottom: 1px solid #999;
}

.slideMenuNav__text {
  display: block;
  width: 100%;
  padding: 18px 0;
  color: #fff;
  text-decoration: none;
}

.slideMenuNav__headline {
  padding: 5px;
  background: #999;
}

.slideMenuNav__headline span {
  color: #fff;
}

.slideMenuToggle {
  position: absolute;
  top: 8px;
  right: 10px;
  z-index: 101;
  width: 34px;
  height: 36px;
}

.slideMenuToggle__check {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.slideMenuToggle__line {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 4px;
  background: #333;
  -webkit-transition: 0.35s ease-in-out;
  -moz-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
}

.slideMenuToggle__line--line1 {
  top: 0;
}

.slideMenuToggle__line--line2 {
  top: 10px;
}

.slideMenuToggle__line--line3 {
  top: 20px;
}

/* .slideMenuToggle 切り替えアニメーション */
#slideMenuInput:checked + .slideMenuToggle span:nth-child(1) {
  top: 11px;
  -webkit-transform: rotate(315deg);
  -moz-transform: rotate(315deg);
  transform: rotate(315deg);
}

#slideMenuInput:checked + .slideMenuToggle span:nth-child(2) {
  left: 50%;
  width: 0;
}

#slideMenuInput:checked + .slideMenuToggle span:nth-child(3) {
  top: 11px;
  -webkit-transform: rotate(-315deg);
  -moz-transform: rotate(-315deg);
  transform: rotate(-315deg);
}

/* .slideMenuNav スライドアニメーション */
#slideMenuInput:checked ~ .slideMenuNav {
  display: block;
  -moz-transform: translateY(556px);
  -webkit-transform: translateY(556px);
  transform: translateY(550px);
}

@media screen and (min-width: 768px) {
  .slideMenuNav,
  .slideMenuToggle,
  #slideMenuInput:checked ~ .slideMenuNav {
    display: none;
  }
}

html {
  scroll-behavior: smooth;
}

@media screen and (max-width: 320px) {
  body {
    font-size: 10px;
  }
}

@-webkit-keyframes modify {
  0% {
    padding-top: 120px;
    margin-top: -120px;
  }
  100% {
    padding-top: 0;
    margin-top: 0;
  }
}

@keyframes modify {
  0% {
    padding-top: 120px;
    margin-top: -120px;
  }
  100% {
    padding-top: 0;
    margin-top: 0;
  }
}

section:target {
  -webkit-animation: modify 0.1s;
  animation: modify 0.1s;
}

.container {
  width: 1140px;
  margin-right: auto;
  margin-left: auto;
}

.header {
  display: flex;
  padding: 1.5rem 1rem 1.5rem 1rem;
  background: #fff;
  line-height: 1.5;
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(255, 255, 255, 0.9);
}

.siteName__icon {
  display: inline-block;
  width: 2em;
  height: 2em;
  margin: 0 auto;
  color: #fff;
  font-size: 1.5em;
  line-height: 2em;
  text-align: center;
  background: #499475;
  border-radius: 50%;
}

.siteName__text {
  padding-right: 1rem;
  color: #499475;
  font-size: 1.5em;
  font-family: 'Gabriola', 'Zapfino', 'ヒラギノ角ゴシック', 'Hiragino Sans', 'Meiryo UI', sans-serif;
  text-decoration: none;
}

.headerMenu {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.2em;
}

.headerMenu__button {
  margin: 0.25rem 0.25rem 0.25rem 0.25rem;
}

.headerMenu__text {
  text-decoration: none;
  display: block;
  padding: 0.5rem 1rem 0.5rem 1rem;
}

.headerMenu__text:hover {
  text-decoration: none;
}

.headerMenu__button {
  color: #fff;
  background-color: #499475;
  border: 1px solid #fff;
}

.headerMenu__button:hover {
  color: #499475;
  background-color: #fff;
}

.headerMenu__button:hover {
  border: 1px solid #499475;
}

.headerMenu__text {
  color: #fff;
  background-color: #499475;
}

.headerMenu__text:hover {
  color: #499475;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .headerMenu {
    display: none;
  }
}

.cover {
  display: flex;
  padding: 7.5rem 2rem 7.5rem 2rem;
  background: #555;
  line-height: 1.5;
  height: 500px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../img/cover.jpg");
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 480px) {
  .cover {
    padding: 4rem 0.25rem 4rem 0.25rem;
  }
}

.cover__subject {
  margin-bottom: 0.5rem;
  font-size: 3em;
  text-align: center;
}

@media screen and (max-width: 480px) {
  .cover__subject {
    font-size: 2.5em;
  }
}

.cover__text {
  margin-bottom: 0.5rem;
  font-size: 1em;
  text-align: center;
}

@media screen and (max-width: 480px) {
  .cover {
    height: 375px;
  }
}

@media screen and (max-width: 320px) {
  .cover {
    height: 300px;
  }
}

.cover__text {
  color: #fff;
  font-size: 1.5em;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .cover__text {
    font-size: 1.2em;
  }
}

@media screen and (max-width: 480px) {
  .cover__text {
    font-size: 1em;
  }
}

@media screen and (max-width: 320px) {
  .cover__text {
    font-size: 1em;
  }
}

.cover__name {
  margin-bottom: 2em;
  color: #fff;
  font-size: 2.5em;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .cover__name {
    margin-bottom: 1.5em;
    font-size: 2em;
  }
}

@media screen and (max-width: 480px) {
  .cover__name {
    margin-bottom: 1em;
    font-size: 1.5em;
  }
}

@media screen and (max-width: 320px) {
  .cover__name {
    margin-bottom: 0;
    font-size: 1.2em;
  }
}

.coverItemList {
  display: flex;
  padding: 0 0 0 0;
  line-height: 1.5;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-end;
}

.coverItem {
  margin: 1rem;
  padding: 1rem;
  background: #fff;
  border: 1px solid #555;
  width: 50%;
  max-width: 500px;
  min-height: 200px;
  background: rgba(255, 255, 255, 0.8);
}

@media screen and (max-width: 768px) {
  .coverItem {
    width: 100%;
    max-width: 100%;
  }
}

.coverItem__subject {
  margin-bottom: 1rem;
  font-size: 1.5em;
}

@media screen and (max-width: 480px) {
  .coverItem__subject {
    font-size: 1.2em;
  }
}

.coverItem__text {
  font-size: 1.2em;
}

@media screen and (max-width: 480px) {
  .coverItem__text {
    font-size: 1em;
  }
}

.problem {
  display: flex;
  padding: 7.5rem 2rem 7.5rem 2rem;
  background: #fff;
  line-height: 1.5;
}

@media screen and (max-width: 480px) {
  .problem {
    padding: 4rem 0.25rem 4rem 0.25rem;
  }
}

.problem__subject {
  margin-bottom: 0.5rem;
  font-size: 3em;
  text-align: center;
}

@media screen and (max-width: 480px) {
  .problem__subject {
    font-size: 2.5em;
  }
}

.problem__text {
  margin-bottom: 0.5rem;
  font-size: 1em;
  text-align: center;
}

.problem__subject {
  color: #499475;
}

.problem__ceparate {
  position: relative;
}

.problem__ceparate:after {
  position: absolute;
  bottom: -90px;
  left: 50%;
  z-index: 1;
  margin-left: -120px;
  border-top: 90px solid #fff;
  border-right: 120px solid transparent;
  border-left: 120px solid transparent;
  content: '';
}

.problemItemList {
  display: flex;
  padding: 0 0 0 0;
  line-height: 1.5;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-around;
}

.problemItem {
  margin: 1rem;
  padding: 1rem;
  background: #fff;
  border: 1px solid #555;
  width: 330px;
  min-height: 200px;
}

@media screen and (max-width: 768px) {
  .problemItem {
    width: 100%;
  }
}

.problemItem__icon {
  display: inline-block;
  width: 2em;
  height: 2em;
  margin: 0 auto;
  color: #fff;
  font-size: 1.3em;
  line-height: 2em;
  text-align: center;
  background: #499475;
  border-radius: 50%;
  margin-right: 0.5em;
}

.problemItem__subject {
  margin-bottom: 1rem;
  font-size: 1.5em;
}

.problemItem__text {
  font-size: 1.2em;
}

.resolve {
  display: flex;
  padding: 7.5rem 2rem 7.5rem 2rem;
  background: #dfd4be;
  line-height: 1.5;
}

@media screen and (max-width: 480px) {
  .resolve {
    padding: 4rem 0.25rem 4rem 0.25rem;
  }
}

.resolve__subject {
  margin-bottom: 0.5rem;
  font-size: 3em;
  text-align: center;
}

@media screen and (max-width: 480px) {
  .resolve__subject {
    font-size: 2.5em;
  }
}

.resolve__text {
  margin-bottom: 0.5rem;
  font-size: 1em;
  text-align: center;
}

.resolve__subject {
  color: #499475;
}

.resolveItemList {
  display: flex;
  padding: 0 0 0 0;
  line-height: 1.5;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-around;
}

.resolveItem {
  margin: 1rem;
  padding: 1rem;
  background: #fff;
  border: 1px solid #555;
  width: 520px;
  min-height: 200px;
}

@media screen and (max-width: 768px) {
  .resolveItem {
    width: 100%;
  }
}

.resolveItem__icon {
  display: inline-block;
  width: 2em;
  height: 2em;
  margin: 0 auto;
  color: #fff;
  font-size: 1.3em;
  line-height: 2em;
  text-align: center;
  background: #499475;
  border-radius: 50%;
  margin-right: 0.5em;
}

.resolveItem__subject {
  margin-bottom: 1rem;
  font-size: 1.5em;
}

.resolveItem__text {
  font-size: 1.2em;
}

.reason {
  display: flex;
  padding: 7.5rem 2rem 7.5rem 2rem;
  background: #555;
  line-height: 1.5;
  height: 1000px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/reason.jpg");
  background-size: cover;
}

@media screen and (max-width: 480px) {
  .reason {
    padding: 4rem 0.25rem 4rem 0.25rem;
  }
}

.reason__subject {
  margin-bottom: 0.5rem;
  font-size: 3em;
  text-align: center;
}

@media screen and (max-width: 480px) {
  .reason__subject {
    font-size: 2.5em;
  }
}

.reason__text {
  margin-bottom: 0.5rem;
  font-size: 1em;
  text-align: center;
}

.reason__subject {
  color: #fff;
}

.reason__text {
  color: #fff;
}

.reasonList {
  display: flex;
  padding: 0 0 0 0;
  line-height: 1.5;
  flex-wrap: wrap;
  align-items: stretch;
  flex-direction: column;
}

.reasonItem {
  margin: 0rem;
  padding: 0;
  background: #fff;
  display: flex;
  flex-direction: row;
  margin: 1rem;
}

@media screen and (max-width: 480px) {
  .reasonItem {
    flex-direction: column;
  }
}

.reasonItem__icon {
  display: inline-block;
  width: 2em;
  height: 2em;
  margin: 0 auto;
  color: #499475;
  font-size: 3em;
  line-height: 2em;
  text-align: center;
  background: #fff;
  border-radius: 50%;
}

.reasonItem__subject {
  font-size: 2em;
}

.reasonItemIconArea {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
  padding: 2rem;
  background: #499475;
}

@media screen and (max-width: 480px) {
  .reasonItemIconArea {
    margin-right: 0;
    padding: 1rem;
  }
}

.reasonItemTextArea {
  padding: 1rem;
}

.characteristic {
  display: flex;
  padding: 7.5rem 2rem 7.5rem 2rem;
  background: #8eb4d9;
  line-height: 1.5;
}

@media screen and (max-width: 480px) {
  .characteristic {
    padding: 4rem 0.25rem 4rem 0.25rem;
  }
}

.characteristic__subject {
  margin-bottom: 0.5rem;
  font-size: 3em;
  text-align: center;
}

@media screen and (max-width: 480px) {
  .characteristic__subject {
    font-size: 2.5em;
  }
}

.characteristic__text {
  margin-bottom: 0.5rem;
  font-size: 1em;
  text-align: center;
}

.characteristic__subject {
  color: #fff;
}

.characteristicItemList {
  display: flex;
  padding: 0 0 0 0;
  line-height: 1.5;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-around;
}

.characteristicItem {
  width: 500px;
  min-height: 200px;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .characteristicItem {
    width: 100%;
  }
}

.characteristicItem__icon {
  display: block;
  color: #fff;
  font-size: 8em;
  text-align: center;
}

.characteristicItem__subject {
  margin-bottom: 1rem;
  font-size: 1.5em;
  text-align: center;
}

.characteristicItem__text {
  margin-bottom: 2rem;
  padding: 0 2rem 0 2rem;
  font-size: 1.2em;
}

.function {
  display: flex;
  padding: 7.5rem 2rem 7.5rem 2rem;
  line-height: 1.5;
  text-align: center;
}

@media screen and (max-width: 480px) {
  .function {
    padding: 4rem 0.25rem 4rem 0.25rem;
  }
}

.function__subject {
  margin-bottom: 0.5rem;
  font-size: 3em;
  text-align: center;
}

@media screen and (max-width: 480px) {
  .function__subject {
    font-size: 2.5em;
  }
}

.function__text {
  margin-bottom: 0.5rem;
  font-size: 1em;
  text-align: center;
}

.functionList {
  display: flex;
  padding: 0 0 0 0;
  line-height: 1.5;
  flex-wrap: wrap;
  align-items: stretch;
  flex-direction: row;
  justify-content: center;
}

.functionAccount {
  margin: 0;
  padding: 0;
  background: #fff;
  border: 1px solid #555;
  width: 100%;
  max-width: 800px;
  margin-bottom: 2rem;
}

.functionAccount__head {
  display: flex;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: #499475;
}

@media screen and (max-width: 480px) {
  .functionAccount__head {
    margin-right: 0;
    padding: 1rem;
  }
}

.functionAccount__icon {
  display: inline-block;
  width: 2em;
  height: 2em;
  margin: 0 auto;
  color: #499475;
  font-size: 3em;
  line-height: 2em;
  text-align: center;
  background: #fff;
  border-radius: 50%;
  margin-bottom: 1rem;
}

@media screen and (max-width: 320px) {
  .functionAccount__icon {
    width: 1.5em;
    height: 1.5em;
    margin-bottom: 0.5rem;
    font-size: 2em;
    line-height: 2em;
  }
}

.functionAccount__subject {
  color: #fff;
  font-size: 2em;
}

@media screen and (max-width: 480px) {
  .functionAccount__subject {
    font-size: 1.5em;
  }
}

.functionAccount__table {
  width: 100%;
}

.functionAccount__label {
  width: 200px;
  padding: 1em;
  color: #fff;
  background: #499475;
  border: 1px solid #ccc;
}

.functionAccount__label--right {
  text-align: right;
}

@media screen and (max-width: 768px) {
  .functionAccount__label {
    display: block;
    width: 100%;
  }
}

.functionAccount__text {
  padding: 1em;
  text-align: left;
  border: 1px solid #ccc;
}

@media screen and (max-width: 768px) {
  .functionAccount__text {
    display: block;
    width: 100%;
  }
}

.price {
  display: flex;
  padding: 7.5rem 2rem 7.5rem 2rem;
  background: #fff;
  line-height: 1.5;
}

@media screen and (max-width: 480px) {
  .price {
    padding: 4rem 0.25rem 4rem 0.25rem;
  }
}

.price__subject {
  margin-bottom: 0.5rem;
  font-size: 3em;
  text-align: center;
}

@media screen and (max-width: 480px) {
  .price__subject {
    font-size: 2.5em;
  }
}

.price__text {
  margin-bottom: 0.5rem;
  font-size: 1em;
  text-align: center;
}

.priceList {
  display: flex;
  padding: 0 0 0 0;
  line-height: 1.5;
  flex-wrap: wrap;
  align-items: stretch;
  flex-direction: row;
  justify-content: center;
}

.priceItem {
  margin: 1rem;
  padding: 1rem;
  background: #7e9895;
  width: 450px;
  min-height: 300px;
  padding-bottom: 3rem;
  color: #fff;
}

@media screen and (max-width: 480px) {
  .priceItem {
    width: 100%;
  }
}

.priceItem__subject {
  padding-bottom: 0.5rem;
  font-size: 2em;
}

@media screen and (max-width: 480px) {
  .priceItem__subject {
    font-size: 1.5em;
  }
}

.priceItem__price {
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 1rem 0 1rem 0;
  color: #fff;
  font-size: 2rem;
  background: #499475;
  margin-bottom: 1rem;
  font-size: 1.5em;
}

.priceItem__price--left {
  margin-left: -35px;
}

.priceItem__price--left:before {
  position: absolute;
  top: 100%;
  left: 0;
  border: none;
  border-right: solid 20px #6a736f;
  border-bottom: solid 15px transparent;
  content: '';
}

.priceItem__price--right:after {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 0px;
  height: 0px;
  border-width: 30px 15px 30px 0px;
  border-style: solid;
  border-color: transparent #fff transparent transparent;
  content: '';
}

.priceItem__icon {
  display: inline-block;
  width: 2em;
  height: 2em;
  margin: 0 auto;
  color: #499475;
  font-size: 3em;
  line-height: 2em;
  text-align: center;
  background: #fff;
  border-radius: 50%;
  margin-bottom: 1rem;
}

@media screen and (max-width: 320px) {
  .priceItem__icon {
    width: 1.5em;
    height: 1.5em;
    margin-bottom: 0.5rem;
    font-size: 2em;
    line-height: 2em;
  }
}

.priceItem__textSubject {
  padding-top: 1rem;
  font-size: 1.4em;
}

.priceItem__textArea {
  padding: 0.5rem;
  background: #fff;
}

.priceItem__text {
  padding-bottom: 0.5rem;
  font-size: 1.2em;
}

.priceItem__text a {
  color: #fff;
}

.priceItem__text--black {
  color: #555;
}

.priceItem__text--black a {
  color: #555;
}

.priceItem__supplement {
  padding-bottom: 0.5rem;
  font-size: 1em;
}

.optionItem {
  margin: 0rem;
  padding: 0;
  background: #fff;
  display: flex;
  flex-direction: row;
  margin-bottom: 0.5rem;
}

@media screen and (max-width: 480px) {
  .optionItem {
    flex-direction: column;
  }
}

.optionItem__icon {
  display: inline-block;
  width: 2em;
  height: 2em;
  margin: 0 auto;
  color: #499475;
  font-size: 3em;
  line-height: 2em;
  text-align: center;
  background: #fff;
  border-radius: 50%;
}

.optionItem__subject {
  color: #555;
  font-size: 1.5em;
}

.optionItem__price {
  color: #555;
  font-size: 1.5em;
}

.optionItemIconArea {
  display: flex;
  padding: 0.5rem;
  background: #499475;
}

.optionItemTextArea {
  padding: 0.5rem;
}

.contact {
  display: flex;
  padding: 7.5rem 2rem 7.5rem 2rem;
  line-height: 1.5;
}

@media screen and (max-width: 480px) {
  .contact {
    padding: 4rem 0.25rem 4rem 0.25rem;
  }
}

.contact__subject {
  margin-bottom: 0.5rem;
  font-size: 3em;
  text-align: center;
}

@media screen and (max-width: 480px) {
  .contact__subject {
    font-size: 2.5em;
  }
}

.contact__text {
  margin-bottom: 0.5rem;
  font-size: 1em;
  text-align: center;
}

.contact__form iframe {
  width: 100%;
  height: 900px;
}

.law {
  display: flex;
  padding: 7.5rem 2rem 7.5rem 2rem;
  line-height: 1.5;
}

@media screen and (max-width: 480px) {
  .law {
    padding: 4rem 0.25rem 4rem 0.25rem;
  }
}

.law__subject {
  margin-bottom: 0.5rem;
  font-size: 3em;
  text-align: center;
}

@media screen and (max-width: 480px) {
  .law__subject {
    font-size: 2.5em;
  }
}

.law__text {
  margin-bottom: 0.5rem;
  font-size: 1em;
  text-align: center;
}

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

.law__table {
  max-width: 800px;
  width: 100%;
}

.law__label {
  padding: 1em;
  color: #fff;
  background: #499475;
  border: 1px solid #ccc;
  width: 200px;
}

.law__label--right {
  text-align: right;
}

@media screen and (max-width: 480px) {
  .law__label {
    display: block;
    width: 100%;
  }
}

.law__text {
  padding: 1em;
  text-align: left;
  background: #fff;
  border: 1px solid #ccc;
}

@media screen and (max-width: 480px) {
  .law__text {
    display: block;
    width: 100%;
  }
}

.order {
  display: flex;
  padding: 7.5rem 2rem 7.5rem 2rem;
  background: #fff;
  line-height: 1.5;
}

@media screen and (max-width: 480px) {
  .order {
    padding: 4rem 0.25rem 4rem 0.25rem;
  }
}

.order__subject {
  margin-bottom: 0.5rem;
  font-size: 3em;
  text-align: center;
}

@media screen and (max-width: 480px) {
  .order__subject {
    font-size: 2.5em;
  }
}

.order__text {
  margin-bottom: 0.5rem;
  font-size: 1em;
  text-align: center;
}

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

.orderItemList {
  display: flex;
  padding: 0 0 0 0;
  line-height: 1.5;
  flex-direction: column;
  justify-content: center;
  width: 800px;
}

@media screen and (max-width: 768px) {
  .orderItemList {
    width: 100%;
  }
}

.orderItem {
  text-align: left;
  margin-bottom: 2rem;
}

.orderItem__subject {
  margin-bottom: 1rem;
  font-size: 1.5em;
  color: #499475;
}

.orderItem__text {
  font-size: 1.2em;
  margin: 1rem;
}

.orderItem__notes {
  padding: 10px 20px 10px 20px;
  border: 1px solid #EEE;
  line-height: 1.7;
  color: #fff;
  background: #499475;
}

.orderItem__license {
  width: 100%;
  height: 150px;
}

.orderItem__update {
  text-align: right;
}

.orderItem__form {
  width: 100%;
  height: 900px;
}

.footer {
  display: flex;
  padding: 7.5rem 2rem 7.5rem 2rem;
  background: #555;
  line-height: 1.5;
}

@media screen and (max-width: 480px) {
  .footer {
    padding: 4rem 0.25rem 4rem 0.25rem;
  }
}

.footer__subject {
  margin-bottom: 0.5rem;
  font-size: 3em;
  text-align: center;
}

@media screen and (max-width: 480px) {
  .footer__subject {
    font-size: 2.5em;
  }
}

.footer__text {
  margin-bottom: 0.5rem;
  font-size: 1em;
  text-align: center;
}

.footer__copy {
  color: #fff;
  text-align: center;
}

.footer__copy a {
  color: #fff;
}
