@charset "UTF-8";
/*----------------------
common
----------------------*/
:root {
  --link-color: #000;
  --main-color: #ff8080;
  --text-color: #000;
  --sub-color:#FFEEFF;
  --sub2-color:#f5f1f5;
}

html {
  font-size: 62.5%;
  color: var(--text-color);
}

body {
  font-family: "YuMincho", "Helvetica Neue", "Arial", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-size: 1.4rem;
  color: var(--text-color);
  background-color: #fff;
}

a {
  text-decoration: none;
  color: var(--link-color);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: baseline;
}

section {
  padding-top: 80px;
}

.wrapper {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 80px;
}

.btn {
  display: inline-block;
  width: 240px;
  max-width: 100%;
  padding: 12px;
  background-color: var(--main-color);
  border: 2px solid transparent;
  border-radius: 26px;
  color: #fff;
  font-size: 2rem;
  text-align: center;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  position: relative;
  margin-left: 24px;
}
.btn img {
  width: 20px;
  position: absolute;
  top: 50%;
  left: 40px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.btn-contact {
  padding: 4px 4px 4px 24px;
}
.btn-tel {
  padding: 4px 4px 4px 24px;
}

.section__title {
  padding-top: 40px;
  text-align: center;
}
.section__title h2 {
  font-size: 32px;
}
.section__title h3 {
  font-size: 32px;
  color: #000;
  padding: 10px;
  display: inline-block;
  position: relative;
}
.section__title h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background-image: repeating-linear-gradient(-45deg, var(--main-color), var(--main-color) 1px, transparent 2px, transparent 5px);
}
.section__subtitle {
  margin-top: 40px;
}
.section__subtitle h4 {
  position: relative;
  font-size: 24px;
  padding: 8px 16px;
}
.section__subtitle h4::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 4px;
  background-color: var(--main-color);
}
.section__subtitle2 {
  margin-top: 40px;
}
.section__subtitle2 p {
  font-size: 24px;
  position: relative;
  background-color: var(--sub-color);
  padding: 8px;
}
.section__subtitle2 p::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--main-color);
}

.btn:focus,
.btn:hover {
  opacity: 0.8;
}

.br-sp {
  display: none;
}

.text-main-color {
  text-decoration: underline;
  text-decoration-color: #d6ef92;
  text-decoration-thickness: 10px;
  text-underline-offset: -4px;
}

.pager {
  margin: 40px auto 0 auto;
}
.pager ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pager li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #d0d0d0;
  position: relative;
  margin: 0 8px;
}
.pager li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000;
  width: 36px;
  height: 36px;
}
.pager .current {
  border: 1px solid var(--main-color);
  background-color: var(--main-color);
}
.pager .current span {
  color: #fff;
}

/*----------------------
header
----------------------*/
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 16px;
  height: 120px;
}
.header__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  margin-bottom: 16px;
}
.header__logo {
  width: 200px;
}
.header__logo img {
  width: 100%;
}
.header__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header__nav li {
  text-align: center;
  margin-right: 32px;
  width: 140px;
  position: relative;
}
.header__nav li:last-child {
  margin-right: 0;
}
.header__nav li:last-child::before {
  content: none;
}
.header__nav li::before {
  content: "";
  position: absolute;
  top: 0;
  right: -16px;
  height: 100%;
  width: 2px;
  background-color: var(--main-color);
}
.header__nav a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 100px;
  height: 100%;
  color: #000;
  font-size: 1.6rem;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
}
.header__nav a:hover {
  color: var(--main-color);
  text-decoration: underline;
}

.toggle {
  display: none;
}

/*----------------------
mv
----------------------*/
.mv__text {
  position: absolute;
  top: 50%;
  left: 100px;
  z-index: 11;
}
.mv__text h2 {
  font-size: 4rem;
  margin-bottom: 40px;
  position: relative;
  color: #000;
}
.mv__text h2::before {
  width: 100%;
  color: #fff;
  content: attr(data-text);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-text-stroke: 5px #fff;
  z-index: -1;
}
.mv__text h2::after {
  width: 100%;
  color: #fff;
  content: attr(data-text);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-text-stroke: 9px #ffffff;
  z-index: -2;
}
.mv__text p {
  font-size: 3rem;
  position: relative;
}
.mv__text p::before {
  width: 100%;
  color: #fff;
  content: attr(data-text);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-text-stroke: 5px #fff;
  z-index: -1;
}
.mv__text p::after {
  width: 100%;
  color: #fff;
  content: attr(data-text);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-text-stroke: 9px #ffffff;
  z-index: -2;
}
.mv__text span {
  font-size: 5rem;
  text-decoration: underline;
  text-decoration-color: #d6ef92;
  text-decoration-thickness: 10px;
  text-underline-offset: -4px;
}
.mv__img {
  width: 100%;
  height: calc(70vh - 120px);
  position: relative;
  overflow: hidden;
}
.mv__img img {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -o-object-fit: cover;
     object-fit: cover;
}
.mv__title {
  position: absolute;
  top: 42%;
  right: 0;
  left: 0;
  margin: 0 auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
  z-index: 10;
}
.mv__title h2 {
  font-size: 48px;
  color: #fff;
}

/*----------------------
slider
----------------------*/
.slider {
  position: relative;
  z-index: 1;
  height: calc(100vh - 120px);
}

.slider-item01 {
  background: url(../images/top_01.jpg);
}

.slider-item02 {
  background: url(../images/top_02.jpg);
}

.slider-item03 {
  background: url(../images/top_03.jpg);
}

.slider-item {
  width: 100%;
  height: calc(100vh - 120px);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.slick-prev,
.slick-next {
  position: absolute;
  z-index: 1000;
  top: 50%;
  cursor: pointer;
  outline: none;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  height: 25px;
  width: 25px;
}

.slick-prev {
  left: 2.5%;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.slick-next {
  right: 2.5%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.slick-dots {
  position: relative;
  z-index: 3;
  text-align: center;
  margin: -50px 0 0 0;
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 50%;
  background: #fff;
}

.slick-dots .slick-active button {
  background: #333;
}

/*----------------------
about
----------------------*/
.about {
  background-image: url(../images/bg_07.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 800px;
  position: relative;
  z-index: -2;
}
.about::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: -1;
}
.about__body {
  text-align: center;
  max-width: 1440px;
  margin: 80px auto 0px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.about__text {
  font-size: 24px;
  -moz-text-align-last: left;
       text-align-last: left;
  width: 50%;
  padding: 0 0px 0 40px;
  margin: 0 auto;
}
.about__text ul {
  text-align: left;
  margin-top: 20px;
  font-size: 24px;
}
.about__text ul span {
  font-size: 28px;
  padding-right: 16px;
  color: var(--main-color);
}
.about__text p {
  margin-top: 20px;
}

/*----------------------
works
----------------------*/
.works {
  background-color: #f1f5f4;
  position: relative;
  padding-bottom: 40px;
  padding-top: 40px;
}
.works__inner {
  padding-top: 20px;
  padding-bottom: 160px;
  max-width: 1440px;
}
.works__cards {
  margin-top: 160px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 100px 1fr 100px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px;
}

.card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.card__number {
  position: absolute;
  top: 0px;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: var(--main-color);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 10;
}
.card__number:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid #fff;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.card__number p {
  font-size: 32px;
  color: #fff;
}
.card__img {
  width: 100%;
  position: relative;
  padding-top: 60%;
  overflow: hidden;
  border-radius: 30px;
  -webkit-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
}
.card__img img {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -o-object-fit: cover;
     object-fit: cover;
}
.card__title {
  margin-top: 40px;
}
.card__title h4 {
  font-size: 24px;
  color: #000;
}
.card__desc {
  margin-top: 40px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.card__link {
  margin-top: 40px;
  text-align: center;
}
.card__link a {
  border: 3px solid var(--main-color);
  background-color: var(--main-color);
  font-size: 16px;
  color: #fff;
}
.card__link a:hover {
  background-color: #fff;
  border: 3px solid var(--main-color);
  color: var(--main-color);
}

/*----------------------
column
----------------------*/
.column__inner {
  max-width: 1440px;
}
.column__body {
  margin-top: 80px;
}
.column__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.column__list li {
  width: 33%;
  border-right: 1px solid var(--main-color);
  padding: 24px;
  overflow-wrap: break-word;
}
.column__list li:last-child {
  border-right: none;
}
.column__list a {
  color: var(--text-color);
}
.column__list a:hover {
  opacity: 0.5;
}
.column__list2 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.column__list2 li {
  width: 100%;
  border-right: none;
  border-bottom: 1px solid var(--main-color);
}
.column__list2 li:last-child {
  border-right: none;
}
.column__list3 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.column__list3 li {
  width: 100%;
  border-right: none;
}
.column__list3 li:last-child {
  border-right: none;
}
.column__link {
  margin-top: 40px;
  text-align: center;
}
.column__link a {
  border: 3px solid var(--main-color);
  background-color: var(--main-color);
  font-size: 16px;
  color: #fff;
}
.column__link a:hover {
  background-color: #fff;
  border: 3px solid var(--main-color);
  color: var(--main-color);
}

.date,
.category,
.title {
  color: var(--main-color);
}

/*----------------------
gallery
----------------------*/
.gallery__inner {
  margin-top: 160px;
}

.slider2 li {
  width: 100%;
  position: relative;
  padding-top: 5%;
  overflow: hidden;
}
.slider2 img {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -o-object-fit: cover;
     object-fit: cover;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
.slider2 .slick-slide {
  margin: 0 0px; /*スライド左右の余白調整*/
}

/*----------------------
access
----------------------*/
.access__inner {
  max-width: 1440px;
}
.access__flex {
  margin-top: 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 80px;
}
.access__map {
  width: 100%;
}
.access__map img {
  width: 100%;
  height: 300px;
}

/*----------------------
link-area
----------------------*/
.link-area {
  background-color: #f1f5f4;
  padding-bottom: 80px;
}
.link-area__body {
  margin-top: 80px;
}
.link-area__link-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.link-area__contact {
  background-color: #fff;
  padding: 24px;
  margin-right: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 450px;
}
.link-area__contact a {
  border: 3px solid var(--main-color);
  background-color: var(--main-color);
  font-size: 16px;
  color: #fff;
}
.link-area__tel {
  background-color: #fff;
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 450px;
}
.link-area__word {
  margin-top: 40px;
  background-color: #fff;
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 450px;
  text-align: center;
}
.link-area__word .btn-word {
  color: #fff;
  min-width: none;
}

/*----------------------
footer
----------------------*/
.footer__upper {
  padding: 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
}
.footer__logo {
  width: 30%;
}
.footer__logo img {
  width: 200px;
}
.footer__address {
  width: 30%;
}
.footer__address .mr {
  padding-left: 7px;
}
.footer__nav {
  width: 30%;
  padding: 10px;
}
.footer__nav ul {
  max-width: 1000px;
  margin: 0 auto;
}
.footer__nav li {
  margin-bottom: 10px;
}
.footer__nav a {
  color: var(--text-color);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer__nav a:hover {
  text-decoration: underline;
  opacity: 0.8;
  color: var(--main-color);
}
.footer__copy {
  padding: 20px;
  background-color: var(--main-color);
  text-align: center;
}

/*----------------------
tomb
----------------------*/
.tomb__inner {
  max-width: 1000px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
}
.tomb__desc {
  margin-top: 40px;
}

.step__items {
  margin-top: 40px;
  font-size: 18px;
  line-height: 1.8;
}
.step__item-flow {
  position: relative;
}
.step__item-flow:last-child::after {
  content: none;
}
.step__item-flow::after {
  content: "";
  position: absolute;
  top: 50px;
  left: 28px;
  width: 4px;
  height: 100%;
  background-color: var(--main-color);
}
.step__desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.step__img {
  width: 30%;
  position: relative;
  padding-top: 30%;
  overflow: hidden;
}
.step__img img {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}
.step__text {
  width: 70%;
  padding-left: 40px;
  -moz-text-align-last: left;
       text-align-last: left;
}
.step__item {
  margin-top: 40px;
}
.step__item-desc {
  text-align: left;
  padding-left: 80px;
  margin-top: 20px;
}
.step__title p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 24px;
  text-decoration: underline;
  text-decoration-color: var(--sub-color);
  text-decoration-thickness: 10px;
  text-underline-offset: -4px;
}
.step__title p span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--main-color);
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 50%;
  margin-right: 20px;
  color: #fff;
}
.step__desc {
  padding-left: 80px;
}

.cards2 {
  font-size: 18px;
  line-height: 1.8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0px 80px;
}
.cards2 .card {
  width: 48%;
  background-color: var(--sub2-color);
  border-radius: 20px;
  padding: 40px;
  margin-top: 40px;
}
.cards2 .card__number {
  position: absolute;
  top: 0px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: var(--main-color);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 10;
}
.cards2 .card__number:before {
  content: none;
}
.cards2 .card__number p {
  font-size: 28px;
  color: #fff;
}
.cards2 .card__desc {
  text-align: left;
}
.cards2 .card__img2 {
  width: 100%;
  position: relative;
  padding-top: 60%;
  overflow: hidden;
  margin-top: 20px;
}
.cards2 .card__img2 img {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}

/*----------------------
features
----------------------*/
.features__inner {
  max-width: 1000px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  padding-bottom: 40px;
}
.features__img {
  width: 100%;
  position: relative;
  padding-top: 40%;
  overflow: hidden;
  border-radius: 0px;
  margin-top: 40px;
}
.features__img img {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -o-object-fit: fill;
     object-fit: fill;
}
.features__desc {
  width: 100%;
  margin-top: 40px;
}

.media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.media__text {
  width: 48%;
  padding: 0 20px;
}
.media__text p {
  margin-bottom: 20px;
}
.media__text li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}
.media__text span {
  min-width: 40px;
  min-height: 40px;
  border-radius: 50%;
  background-color: var(--main-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  margin-right: 20px;
}
.media__img {
  width: 48%;
  position: relative;
  padding-top: 40%;
  overflow: hidden;
  border-radius: 20px;
}
.media__img img {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -o-object-fit: cover;
     object-fit: cover;
}
.media dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.media dl dt {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}
.media dl dt span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--main-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  margin-right: 20px;
}
.media dl dd {
  padding-left: 60px;
  width: 100%;
}

.row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

/*----------------------
intro
----------------------*/
.intro__inner {
  padding: 0 20px;
}

.cards3 {
  font-size: 18px;
  line-height: 1.8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0px 80px;
}
.cards3 .card {
  width: 48%;
  background-color: var(--sub2-color);
  border-radius: 20px;
  padding: 40px;
  margin-top: 40px;
}
.cards3 .card__number {
  position: absolute;
  top: 0px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: var(--main-color);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 10;
}
.cards3 .card__number:before {
  content: none;
}
.cards3 .card__number p {
  font-size: 28px;
  color: #fff;
}
.cards3 .card__title {
  text-align: center;
}
.cards3 .card__desc {
  text-align: left;
}
.cards3 .card__img2 {
  width: 100%;
  position: relative;
  padding-top: 60%;
  overflow: hidden;
  margin-top: 20px;
}
.cards3 .card__img2 img {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  -o-object-fit: contain;
     object-fit: contain;
}

/*----------------------
contact
----------------------*/
.contact__inner {
  max-width: 1000px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  padding-bottom: 80px;
}

.form__inner {
  max-width: 800px;
  margin: 40px auto 0 auto;
  width: 100%;
}
.form__item {
  border-top: 1px solid #ddd;
  padding: 24px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.form__item:last-child {
  border-bottom: 1px solid #ddd;
}
.form__item .label {
  width: 40%;
}
.form__item p:nth-child(2) {
  width: 60%;
}
.form__item .bg-green {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 48px;
  display: inline-block;
  text-align: center;
  background: var(--main-color);
  color: #fff;
}
.form__item input {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
  height: 48px;
  background: #eaedf2;
}
.form__item textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding-left: 1em;
  padding-right: 1em;
  height: 220px;
  width: 100%;
  background: #eaedf2;
}

.action-box input {
  border-radius: 6px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 16px;
  padding-bottom: 16px;
  width: 280px;
  display: block;
  background: var(--main-color);
  color: #fff;
}
.action-box:hover {
  opacity: 0.8;
}

/*----------------------
company
----------------------*/
.company__body table {
  font-size: 18px;
  max-width: 1000px;
  width: 100%;
  margin: 40px auto 0 auto;
  text-align: left;
  border-collapse: collapse;
  border: 1px solid #BBBBBB;
}
.company__body th {
  background-color: var(--sub2-color);
  width: 30%;
  font-weight: normal;
  border-bottom: 1px solid #BBBBBB;
  border-right: 1px solid #BBBBBB;
  vertical-align: top;
  padding: 16px;
  color: var(--main-color);
}
.company__body td {
  background-color: #ffffff;
  border-bottom: 1px solid #BBBBBB;
  padding: 16px;
}
.company__body li {
  list-style-type: disc;
  margin-left: 1.4rem;
}

.map__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 80px;
}
.map__body {
  margin-top: 40px;
}
.map__desc {
  font-size: 24px;
  margin-top: 80px;
  color: var(--main-color);
  text-align: center;
}
.map__img {
  margin-top: 40px;
  width: 100%;
  text-align: center;
}
.map .step__imgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0px 80px;
  margin: 40px 0px;
}
.map .step__img {
  width: 40%;
  position: relative;
  padding-top: 30%;
  overflow: hidden;
}
.map .step__img img {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}
.map .step__img3 {
  margin-left: 80px;
  width: 36%;
  position: relative;
  padding-top: 30%;
  overflow: hidden;
}
.map .step__img3 img {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}
.map .step__title p {
  text-decoration: none;
}

.arrow {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 4px;
  margin-top: 120px;
  border-radius: 9999px;
  background-color: var(--main-color);
}
.arrow:before {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  width: 30px;
  height: 4px;
  border-radius: 9999px;
  background-color: var(--main-color);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: calc(100% - 2px) 50%;
          transform-origin: calc(100% - 2px) 50%;
}

/*----------------------
qa
----------------------*/
.qa__inner {
  max-width: 1000px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  padding-bottom: 80px;
}
.qa__items {
  margin-top: 40px;
}
.qa__item {
  width: 100%;
  margin-top: 40px;
  margin-bottom: 40px;
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 0px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0px 20px rgba(0, 0, 0, 0.08);
  font-size: 18px;
  padding: 40px;
}
.qa__item .fz-l {
  font-size: 22px;
  margin-right: 20px;
}
.qa__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--main-color);
  margin-bottom: 36px;
}
.qa__answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.qa__question-text p {
  position: relative;
  padding-left: 20px;
}
.qa__question-text p::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2px;
  height: 39px;
  background-color: var(--main-color);
}
.qa__answer-text p {
  padding-left: 20px;
  position: relative;
}
.qa__answer-text p::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2px;
  height: 39px;
  background-color: #222222;
}

/*----------------------
privacy
----------------------*/
.privacy__inner {
  max-width: 1000px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  padding-bottom: 80px;
}
.privacy__desc {
  margin-top: 40px;
}
.privacy__item {
  margin-top: 40px;
}
.privacy__item-desc {
  margin-top: 20px;
}
.privacy__body table {
  font-size: 18px;
  max-width: 1000px;
  width: 100%;
  margin: 40px auto 0 auto;
  text-align: left;
  border-collapse: collapse;
  border: 1px solid #BBBBBB;
}
.privacy__body th {
  background-color: var(--sub2-color);
  width: 30%;
  font-weight: normal;
  border-bottom: 1px solid #BBBBBB;
  border-right: 1px solid #BBBBBB;
  vertical-align: top;
  padding: 16px;
  color: var(--main-color);
}
.privacy__body td {
  background-color: #ffffff;
  border-bottom: 1px solid #BBBBBB;
  padding: 16px;
}
.privacy__body li {
  list-style-type: disc;
  margin-left: 1.4rem;
}

/*----------------------
about2
----------------------*/
.about2__inner {
  max-width: 1000px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  padding: 0 20px;
}
.about2__desc {
  text-align: center;
  margin: 20px 0px;
}

/*----------------------
tablet
----------------------*/
@media (max-width: 1025px) {
  /*----------------------
  common
  ----------------------*/
  .wrapper {
    padding: 0 20px;
  }
  .page-title {
    font-size: 2.4rem;
  }
  .section__title {
    padding-top: 40px;
    text-align: center;
  }
  .section__title h2 {
    font-size: 28px;
  }
  .section__title h3 {
    font-size: 28px;
    color: #000;
    padding: 10px;
    display: inline-block;
    position: relative;
  }
  .section__title h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-image: repeating-linear-gradient(-45deg, var(--main-color), var(--main-color) 1px, transparent 2px, transparent 5px);
  }
  .section__subtitle {
    margin-top: 40px;
  }
  .section__subtitle h4 {
    position: relative;
    font-size: 24px;
    padding: 8px 16px;
  }
  .section__subtitle h4::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 4px;
    background-color: var(--main-color);
  }
  .section__subtitle2 {
    margin-top: 40px;
  }
  .section__subtitle2 p {
    font-size: 24px;
    position: relative;
    background-color: var(--sub-color);
    padding: 8px;
  }
  .section__subtitle2 p::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--main-color);
  }
  br {
    display: none;
  }
  .btn {
    margin-left: 0;
  }
  /*----------------------
  header
  ----------------------*/
  .header__contact {
    display: none;
  }
  .header__inner {
    height: 50px;
    padding: 16px 0px 16px 16px;
  }
  .header__logo {
    width: 150px;
  }
  .header__nav {
    position: fixed;
    top: 0px;
    left: -100vw;
    width: 100vw;
    background-color: var(--main-color);
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    z-index: 30;
    height: 100vh;
    padding: 30px;
    white-space: nowrap;
  }
  .header__nav.active {
    left: 0px;
  }
  .header__nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    height: 100vh;
    padding: 0;
  }
  .header__nav li {
    padding: 8px;
    margin: 0 auto 24px auto;
  }
  .header__nav li:last-child {
    margin: 0 auto;
  }
  .header__nav a {
    color: #fff;
  }
  .toggle {
    display: block;
    position: relative;
    z-index: 50;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background-color: var(--main-color);
  }
  .toggle span {
    display: inline-block;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #fff;
    width: 45%;
  }
  .toggle span:nth-child(1) {
    top: 15px;
  }
  .toggle span:nth-child(2) {
    top: 23px;
  }
  .toggle span:nth-child(3) {
    top: 31px;
  }
  .toggle.active span:nth-child(1) {
    top: 18px;
    left: 18px;
    -webkit-transform: translateY(6px) rotate(-45deg);
            transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  .toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .toggle.active span:nth-child(3) {
    top: 30px;
    left: 18px;
    -webkit-transform: translateY(-6px) rotate(45deg);
            transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
  /*----------------------
  mv
  ----------------------*/
  .mv__text {
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
  }
  .mv__text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  .mv__text p {
    font-size: 2rem;
  }
  .mv__text span {
    font-size: 3rem;
  }
  .mv__img {
    width: 100%;
    height: calc(70vh - 50px);
    position: relative;
    overflow: hidden;
  }
  .mv__img img {
    position: absolute;
    top: 50%;
    width: 100%;
    height: 100%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -o-object-fit: cover;
       object-fit: cover;
  }
  .mv__title {
    position: absolute;
    top: 42%;
    right: 0;
    left: 0;
    margin: 0 auto;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    text-align: center;
    z-index: 10;
  }
  .mv__title h2 {
    font-size: 32px;
    color: #fff;
  }
  /*----------------------
  slider
  ----------------------*/
  .slider {
    position: relative;
    z-index: 1;
    height: calc(100vh - 50px);
  }
  .slider-item {
    width: 100%;
    height: calc(100vh - 50px);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  /*----------------------
  about
  ----------------------*/
  .about {
    height: 120vh;
  }
  .about__text {
    font-size: 20px;
    text-align: center;
    width: 100%;
    padding: 0px;
    margin: 0 auto;
  }
  .about__text ul {
    text-align: center;
    margin: 20px auto 0 auto;
    font-size: 20px;
  }
  .about__text ul span {
    font-size: 24px;
    padding-right: 16px;
    color: var(--main-color);
  }
  .about__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about__item {
    margin-top: 40px;
    width: 100%;
  }
  .about__item h4 {
    font-size: 32px;
    padding: 30px;
  }
  .about__item p {
    font-size: 20px;
    line-height: 1.8;
  }
  /*----------------------
  works
  ----------------------*/
  .works__inner {
    padding: 0 80px;
  }
  .works__cards {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 80px;
  }
  /*----------------------
  column
  ----------------------*/
  .column__list li {
    width: 100%;
    border-bottom: 1px solid var(--main-color);
    border-right: none;
  }
  /*----------------------
  link-area
  ----------------------*/
  .link-area__link-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .link-area__contact {
    margin-right: 0px;
    width: 100%;
    max-width: 450px;
    margin: 0 auto 40px auto;
  }
  .link-area__tel {
    background-color: #fff;
    padding: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
  }
  .link-area__word {
    background-color: #fff;
    padding: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    max-width: 450px;
    margin: 40px auto 0 auto;
  }
  /*----------------------
  footer
  ----------------------*/
  .footer__upper {
    max-width: 1000px;
    font-size: 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .footer__logo {
    width: 100%;
  }
  .footer__logo img {
    width: 200px;
  }
  .footer__address {
    width: 100%;
  }
  .footer__nav {
    margin-top: 40px;
    width: 100%;
    padding: 10px;
  }
  /*----------------------
  tomb
  ----------------------*/
  .tomb__inner {
    padding: 0 20px;
  }
  .media {
    margin-top: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .media__text {
    width: 100%;
    padding: 0 20px;
  }
  .media__img {
    width: 100%;
    padding-top: 60%;
    margin-top: 40px;
  }
  .step__item-flow {
    position: relative;
  }
  .step__item-flow .step__desc {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .step__item-flow .step__img {
    width: 100%;
    padding-top: 60%;
  }
  .step__item-flow .step__text {
    width: 100%;
    padding-left: 0px;
  }
  .cards2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cards2 .card {
    width: 100%;
  }
  .cards2__img {
    width: 100%;
    padding-top: 60%;
  }
  .cards2__text {
    width: 100%;
    padding-left: 0px;
  }
  /*----------------------
  features
  ----------------------*/
  .features__inner {
    padding: 0 20px;
  }
  .features .media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .features .media__text {
    width: 100%;
  }
  .features .media__img {
    width: 100%;
    padding-top: 60%;
  }
  /*----------------------
  intro
  ----------------------*/
  .intro__inner {
    padding: 0 20px;
  }
  .intro .media::before {
    content: none;
  }
  .intro .media__text {
    margin-top: 40px;
    width: 100%;
  }
  .intro .media__img {
    width: 100%;
    padding-top: 60%;
  }
  .cards3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cards3 .card {
    width: 100%;
  }
  /*----------------------
  company
  ----------------------*/
  .greet__inner {
    padding: 20px;
  }
  .company__table {
    overflow-x: scroll;
  }
  .company__inner {
    padding: 0 20px;
  }
  .company__body table {
    min-width: 600px;
  }
  .map__inner {
    padding: 0 20px;
  }
  .map__body {
    margin-top: 40px;
  }
  .arrow {
    margin-top: 80px;
  }
  /*----------------------
  qa
  ----------------------*/
  .qa__inner {
    padding: 20px;
  }
  /*----------------------
  privacy
  ----------------------*/
  .privacy__inner {
    padding: 20px;
  }
  /*----------------------
  contact
  ----------------------*/
  .form__inner {
    padding: 0 20px;
  }
}
/*----------------------
sp
----------------------*/
@media (max-width: 599px) {
  /*----------------------
  works
  ----------------------*/
  .card {
    width: 80%;
    margin: 0 auto;
    text-align: center;
  }
  .card__number {
    width: 70px;
    height: 70px;
  }
  .card__number:before {
    width: 60px;
    height: 60px;
  }
  .card__number p {
    font-size: 28px;
  }
  .card__img {
    text-align: left;
  }
  .cards2 .card__img {
    text-align: center;
  }
  .works__inner {
    padding: 0 20px;
  }
  /*----------------------
  link-area
  ----------------------*/
  .link-area__contact {
    margin-right: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .link-area__contact a {
    margin-top: 20px;
  }
  .link-area__tel {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .link-area__tel-item {
    margin-top: 20px;
  }
  /*----------------------
  tomb
  ----------------------*/
  .cards2 {
    padding: 0;
  }
  .cards2 .card {
    width: 100%;
  }
  .step__item-desc {
    padding: 0;
  }
  /*----------------------
  intro
  ----------------------*/
  .cards3 {
    padding: 0;
  }
  .cards3 .card__img2 {
    padding-top: 60%;
  }
  .cards3 .card__img2 img {
    position: relative;
  }
  /*----------------------
  company
  ----------------------*/
  .map .step__imgs {
    padding: 0 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .map .step__img {
    width: 100%;
    padding-top: 60%;
  }
  .map .step__img3 {
    width: 100%;
    margin-left: 0;
    padding-top: 60%;
  }
  .arrow {
    width: 0px;
    height: 0px;
  }
  .arrow:before {
    content: none;
  }
  /*----------------------
  contact
  ----------------------*/
  .contact__text {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .contact__form {
    margin-top: 40px;
  }
  .form__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .form__item .label {
    width: 100%;
    margin-bottom: 20px;
  }
  .form__item p:nth-child(2) {
    width: 100%;
  }
  .form__checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .form__area {
    margin-left: 0px;
    width: 100%;
  }
  .form__area-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
    width: 100o;
  }
  .form__consent {
    margin-top: 40px;
    text-align: center;
  }
  .action-box input {
    border-radius: 6px;
    margin-top: 32px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 16px;
    padding-bottom: 16px;
    width: 280px;
    display: block;
    background: var(--main-color);
    color: #fff;
  }
  .action-box:hover {
    opacity: 0.8;
  }
  .checkbox {
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }
}
/*# sourceMappingURL=style.css.map */