@charset "UTF-8";
@font-face {
  font-family: Futura-Bold;
  src: url(../font/FuturaBold.otf) format("opentype");
}
@font-face {
  font-family: Futura-Medium;
  src: url(../font/FuturaMedium.otf) format("opentype");
}
@font-face {
  font-family: Futura-CondensedMedium;
  src: url(../font/futura-condensed-pt-mediu.otf) format("opentype");
}
@font-face {
  font-family: CenturyGothic;
  src: url(../font/CenturyGothic.ttf) format("truetype");
}
html {
  font-size: 0.6px;
}

body {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #000;
  box-sizing: border-box;
  margin: 0;
  border: 0;
  font-feature-settings: "palt";
  line-height: 1.4;
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

h1, h2, h3, h4, figure {
  margin: 0;
}

.d-flex {
  display: flex;
}

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

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

p {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

.align-items-center {
  align-items: center;
}

.pc {
  display: flex !important;
}

.pc-block {
  display: block !important;
}

.font-mincho {
  font-family: "Hina Mincho", serif;
}

.sp {
  display: none !important;
}

.sp-block {
  display: none !important;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-around {
  justify-content: space-around;
}

.justify-content-end {
  justify-content: flex-end;
}

.align-items-baseline {
  align-items: baseline;
}

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

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

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.jusify-content-left {
  justify-content: left !important;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaled_x {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    opacity: 1;
    clip-path: inset(0);
  }
}
@keyframes scaled_x_reserve {
  0% {
    clip-path: inset(0 0 0 100%);
  }
  100% {
    opacity: 1;
    clip-path: inset(0);
  }
}
@keyframes scaled_x_down {
  0% {
    clip-path: inset(0 0 100% 0);
  }
  100% {
    opacity: 1;
    clip-path: inset(0);
  }
}
.anim {
  opacity: 0;
}
.anim.fadeInUp.is-animated {
  animation: fadeInUp 1s ease-in-out forwards;
}
.anim.fadeInDown.is-animated {
  animation: fadeInDown 0.5s ease-in-out forwards;
}
.anim.fadeIn.is-animated {
  animation: fadeIn 1s ease-in-out forwards;
}
.anim.fadeInLeft.is-animated {
  animation: fadeInLeft 1s ease-in-out forwards;
}
.anim.fadeInRight.is-animated {
  animation: fadeInRight 1s ease-in-out forwards;
}
.anim.scaled_x.is-animated {
  transform-origin: left;
  animation: scaled_x 1s ease-in-out forwards;
}
.anim.scaled_x_reserve.is-animated {
  transform-origin: right;
  animation: scaled_x_reserve 1s ease-in-out forwards;
}
.anim.scaled_x_down.is-animated {
  transform-origin: right;
  animation: scaled_x_down 1s ease-in-out forwards;
}

@media screen and (max-width: 768px) {
  html {
    font-size: 0.133333vw;
  }
  .pc {
    display: none !important;
  }
  .pc-block {
    display: none !important;
  }
  .sp {
    display: flex !important;
  }
  .sp-block {
    display: block !important;
  }
}
a {
  transition: 0.3s;
}
a:hover {
  opacity: 0.7;
}

.frontview {
  width: 100%;
  height: 100vh;
  position: relative;
}
.frontview .catch__text {
  width: 100%;
  position: absolute;
  left: 0;
  top: 80vh;
}
.frontview .catch__text .e__txt {
  font-family: Futura-CondensedMedium;
  font-size: 74.24rem;
  line-height: 80.15rem;
  text-align: center;
  color: #fff;
}
.frontview .catch__text .j__txt {
  font-weight: 500;
  font-size: 36.98rem;
  line-height: 74.92rem;
  text-align: center;
  color: #fff;
}

header {
  width: 100%;
  padding: 25rem 60rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 4;
}
header.fixed {
  animation: fadeIn 0.5s forwards;
  position: fixed;
  background: #f67c0e;
}
header .logo {
  width: 345rem;
  display: flex;
  position: relative;
  z-index: 1;
}
header ul {
  display: flex;
  align-items: center;
}
header ul li {
  padding: 0 20rem;
}
header ul li a {
  font-family: Futura-Medium;
  font-weight: normal;
  font-size: 27.74rem;
  line-height: 60.28rem;
  text-align: left;
  color: #fff;
  position: relative;
}
header ul li a:hover:after {
  width: 100%;
}
header ul li a:after {
  content: "";
  width: 0%;
  height: 0;
  border-top: 3rem solid #fff;
  position: absolute;
  left: 0;
  bottom: -10rem;
  transition: 0.3s;
}
header ul li .promise__btn {
  width: 237.3rem;
  height: 60.09rem;
  border-radius: 30.05rem;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
header ul li .promise__btn:after {
  content: unset;
}
header ul li .promise__btn .icon {
  width: 37rem;
  display: flex;
}
header ul li .promise__btn .lbl {
  font-weight: 500;
  font-size: 27.65rem;
  line-height: 46.08rem;
  margin-left: 18rem;
  text-align: left;
  color: #707070;
}

.detail__content {
  padding: 400rem 0 30rem;
  margin-top: -20rem;
  text-align: center;
  background: #f67c0e;
}
.detail__content .detail__text {
  font-weight: 500;
  font-size: 46rem;
  line-height: 77.04rem;
  margin-bottom: 80rem;
  text-align: center;
  color: #fff;
}
.detail__content .detail__text span {
  font-size: 77.04rem;
}
.detail__content .content__text {
  max-width: 1900rem;
  margin: auto;
  margin-top: 400rem;
}
.detail__content .content__text .c__lbl {
  font-weight: 500;
  font-size: 77.04rem;
  line-height: 131.07rem;
  text-align: center;
  color: #fff;
}
.detail__content .content__text .cp__text {
  margin-top: 150rem;
  text-align: left;
}
.detail__content .content__text .cp__text .c__txt {
  font-weight: 500;
  font-size: 68.92rem;
  line-height: 114.87rem;
  text-align: center;
  color: #f67c0e;
  border-radius: 59.32rem;
  margin-bottom: 80rem;
  padding: 5rem 25rem;
  background: #fff;
  display: inline-block;
}
.detail__content .content__text .cp__text .c__txt.mb0 {
  margin-bottom: 0;
}
.detail__content .content__text .cp__text .c__txt.mr60 {
  margin-right: 60rem;
}
.detail__content .content__text .cp__text .c__txt.mr100 {
  margin-right: 100rem;
}
.detail__content .content__text .cp__text .c__txt.ml40 {
  margin-left: 40rem;
}
.detail__content .content__text .cp__text .c__txt.c01 {
  font-size: 53.79rem;
  line-height: 89.65rem;
}
.detail__content .content__text .cp__text .c__txt.c02 {
  font-size: 44.53rem;
  line-height: 74.21rem;
}
.detail__content .content__text .cp__text .c__txt a {
  font-weight: bold;
  color: #f67c0e;
  text-decoration: underline;
  pointer-events: none;
}
.detail__content .content__text .cp__text .__right {
  text-align: right;
}
.detail__content .content__text .cp__text .__center {
  text-align: center;
}

.detail__btn {
  width: 355.18rem;
  height: 110.17rem;
  border-radius: 54.7rem;
  background: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.detail__btn.c01 {
  background: #f08200;
}
.detail__btn.c01 .lbl {
  color: white;
}
.detail__btn .lbl {
  font-family: Futura-Medium;
  font-weight: normal;
  font-size: 27.74rem;
  line-height: 46.23rem;
  text-align: left;
  color: #707070;
}
.detail__btn .icon {
  width: 13rem;
  margin-left: 40rem;
  display: flex;
}
.detail__btn .icon.pro {
  width: 25rem;
}

.bottom__bg {
  display: flex;
  margin-top: -5rem;
}

.egg__bg {
  width: 164rem;
  display: flex;
  margin: auto;
  margin-top: 70rem;
}

.title__wrapper .en__txt {
  font-family: CenturyGothic;
  font-weight: normal;
  font-size: 101.74rem;
  line-height: 1;
  text-align: center;
  color: #484848;
}
.title__wrapper .ja__txt {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-weight: 600;
  font-size: 27.74rem;
  line-height: 1;
  margin-top: 15rem;
  text-align: center;
  color: #707070;
}

.service__content {
  width: 100%;
  padding: 150rem 0;
  margin-top: 200rem;
  background: #f8f0e0;
}
.service__content .content__items {
  margin-top: 140rem;
  display: flex;
  justify-content: center;
}
.service__content .content__items .c__item {
  width: 548.57rem;
  height: auto;
  margin: 0 25rem;
  border-radius: 29.28rem;
  padding: 40rem;
  background: #fff;
  position: relative;
}
.service__content .content__items .c__item:nth-child(2) {
  animation-delay: 0.3s;
}
.service__content .content__items .c__item:nth-child(3) {
  animation-delay: 0.6s;
}
.service__content .content__items .c__item .num {
  font-family: Futura-CondensedMedium;
  font-weight: normal;
  font-size: 135.12rem;
  line-height: 1;
  text-align: left;
  color: #f08200;
  position: absolute;
  left: 20rem;
  top: 0;
  transform: translateY(-50%);
}
.service__content .content__items .c__item .c__image {
  width: 100%;
  display: flex;
}
.service__content .content__items .c__item .content__text {
  margin-top: 10rem;
}
.service__content .content__items .c__item .content__text h3 {
  font-weight: 500;
  font-size: 36.98rem;
  line-height: 46.23rem;
  text-align: center;
  color: #000;
}
.service__content .content__items .c__item .content__text p {
  font-weight: 500;
  font-size: 27.74rem;
  line-height: 46.23rem;
  margin-top: 30rem;
  text-align: left;
  color: #000;
}

.message__content {
  width: 100%;
  padding: 150rem 0;
  background: #f4f3f3;
  text-align: center;
  margin: 200rem 0;
}
.message__content .content__inner {
  margin-bottom: 60rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.message__content .content__inner .c__image {
  width: 534.77rem;
  display: flex;
}
.message__content .content__inner .content__text {
  width: 950rem;
  margin-left: 100rem;
}
.message__content .content__inner .content__text p {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-weight: 600;
  font-size: 28rem;
  line-height: 61.63rem;
  text-align: left;
  color: #000;
}
.message__content .content__inner .content__text p .c01 {
  font-size: 46rem;
}
.message__content .content__inner .content__text p .c02 {
  font-size: 37rem;
}

.contact__content {
  width: 100%;
  height: auto;
  padding: 90rem 0;
  background: #918b8b;
}
.contact__content .content__inner {
  width: 1650rem;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contact__content .content__inner .content__text .title__wrapper .en__txt {
  color: white;
  text-align: left;
}
.contact__content .content__inner .content__text .title__wrapper .ja__txt {
  color: white;
  text-align: left;
}
.contact__content .content__inner .content__text p {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-weight: 600;
  font-size: 23.11rem;
  line-height: 46.23rem;
  margin-top: 45rem;
  text-align: left;
  color: #fff;
}
.contact__content .content__inner .mail__btn {
  width: 747.97rem;
  height: 157.59rem;
  border-radius: 78.79rem;
  background: #f8f0e0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact__content .content__inner .mail__btn .icon {
  width: 65rem;
  display: flex;
}
.contact__content .content__inner .mail__btn .lbl {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-weight: 600;
  font-size: 26.42rem;
  line-height: 65.36rem;
  margin-left: 50rem;
  text-align: left;
  color: #f08200;
}

footer {
  padding: 100rem 0;
  background: #f08200;
}
footer .content__inner {
  width: 1650rem;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .content__inner .copyright {
  font-family: Futura-Medium;
  font-weight: normal;
  font-size: 27.74rem;
  line-height: 1.5;
  margin-top: 50rem;
  text-align: left;
  color: #fff;
}
footer .content__inner .content__info .f__logo {
  width: 354rem;
  display: flex;
}
footer .content__inner .content__info .address {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-weight: 600;
  font-size: 23.11rem;
  line-height: 46.23rem;
  margin-top: 60rem;
  text-align: left;
  color: #fff;
}
footer .content__inner .f__menu ul li {
  margin-bottom: 30rem;
}
footer .content__inner .f__menu ul li a {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-weight: 600;
  font-size: 21.69rem;
  line-height: 1;
  text-align: left;
  color: #fff;
}
footer .content__inner .f__menu ul li .facebook {
  width: 19rem;
  display: flex;
}

.subfrontview {
  width: 100%;
  height: 750rem;
  background: url(../img/subfrontview.webp);
  background-size: 100% 100%;
}
.subfrontview .title {
  width: 100%;
  position: absolute;
  left: 0;
  top: 330rem;
}
.subfrontview .title .en__txt {
  font-family: CenturyGothic;
  font-weight: normal;
  font-size: 75rem;
  line-height: 1.5;
  text-align: center;
  color: #fff;
}
.subfrontview .title .ja__txt {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-weight: 600;
  font-size: 33rem;
  line-height: 1;
  margin-top: 10rem;
  text-align: center;
  color: #fff;
}

.service__wrapper {
  margin-top: 220rem;
  position: relative;
}
.service__wrapper .service__item {
  width: 100%;
  padding: 100rem 0;
  margin-bottom: 200rem;
  position: relative;
}
.service__wrapper .service__item:nth-child(2n) .bg {
  left: auto;
  right: 0;
}
.service__wrapper .service__item:nth-child(2n) .content__inner {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.service__wrapper .service__item:nth-child(2n) .c__image {
  right: auto;
  left: 10%;
}
.service__wrapper .service__item .c__image {
  width: 550rem;
  display: flex;
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}
.service__wrapper .service__item .bg {
  width: 80%;
  height: 100%;
  background: #f8f0e0;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.service__wrapper .service__item .content__inner {
  width: 1800rem;
  height: auto;
  margin: auto;
  position: relative;
  z-index: 1;
}
.service__wrapper .service__item .content__inner .num {
  font-family: Futura-CondensedMedium;
  font-weight: normal;
  font-size: 135.13rem;
  line-height: 1;
  text-align: left;
  color: #f08200;
}
.service__wrapper .service__item .content__inner .t__txt {
  font-weight: 500;
  font-size: 57.54rem;
  line-height: 71.93rem;
  margin-top: 10rem;
  text-align: left;
  color: #000;
}
.service__wrapper .service__item .content__inner .c__txt {
  font-weight: 500;
  font-size: 27.74rem;
  line-height: 46.23rem;
  margin-top: 80rem;
  text-align: left;
  color: #000;
}

.about__wrapper {
  margin: 200rem 0;
}
.about__wrapper .ceo__detail {
  width: 100%;
  padding-top: 165rem;
  background: #f8f0e0;
}
.about__wrapper .ceo__detail .content__inner {
  width: 1800rem;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about__wrapper .ceo__detail .content__inner .content__text {
  font-weight: 500;
  font-size: 55.47rem;
  line-height: 69.34rem;
  text-align: left;
  color: #000;
}
.about__wrapper .ceo__detail .content__inner .content__text .c01 {
  font-size: 37rem;
}
.about__wrapper .ceo__detail .content__inner .content__text .c02 {
  font-size: 77rem;
}
.about__wrapper .ceo__detail .content__inner .c__image {
  width: 350rem;
}
.about__wrapper .detail__text {
  width: 1800rem;
  margin: 200rem auto;
  font-weight: 500;
  font-size: 27.73rem;
  line-height: 46.22rem;
  text-align: left;
  color: #000;
}
.about__wrapper .detail__text .sns__lbl {
  font-family: CenturyGothic;
  font-weight: 600;
  font-size: 36rem;
  line-height: 1.5;
  margin-top: 54rem;
  text-align: left;
  color: #000;
}
.about__wrapper .detail__text .facebook {
  width: 60rem;
  height: 60rem;
  margin-top: 10rem;
  border-radius: 50%;
  background: #f08200;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15rem;
}
.about__wrapper .detail__text .facebook img {
  -o-object-fit: contain;
     object-fit: contain;
}

.company__wrapper {
  margin: 200rem 0;
}
.company__wrapper .company__info {
  width: 1800rem;
  margin: auto;
}
.company__wrapper .company__info table {
  width: 100%;
  border-collapse: collapse;
}
.company__wrapper .company__info table tr {
  border-bottom: 3rem solid #a1a1a1;
}
.company__wrapper .company__info table tr td {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-weight: normal;
  font-size: 27.72rem;
  line-height: 55.43rem;
  padding: 22rem 0;
  text-align: left;
  color: #000;
}
.company__wrapper .company__info table tr td:first-child {
  width: 450rem;
  padding-left: 60rem;
  font-weight: 600;
  vertical-align: top;
}
.company__wrapper .member__content {
  width: 100%;
  margin-top: 160rem;
  padding: 130rem 0;
  background: #f8f0e0;
}
.company__wrapper .member__content .content__items {
  width: 1800rem;
  margin: auto;
  margin-top: 140rem;
}
.company__wrapper .member__content .content__items .c__item {
  width: 100%;
  margin-bottom: 140rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.company__wrapper .member__content .content__items .c__item:last-child {
  margin-bottom: 0;
  flex-direction: row-reverse;
}
.company__wrapper .member__content .content__items .c__item .c__image {
  width: 28%;
  margin-top: 60rem;
  display: flex;
}
.company__wrapper .member__content .content__items .c__item .content__text {
  width: 65%;
}
.company__wrapper .member__content .content__items .c__item .content__text p {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-weight: normal;
  font-size: 23.98rem;
  line-height: 46.23rem;
  text-align: left;
  color: #000;
}
.company__wrapper .member__content .content__items .c__item .content__text p .c01 {
  font-weight: 600;
  font-size: 36rem;
}
.company__wrapper .member__content .content__items .c__item .content__text p .c02 {
  font-size: 27rem;
}
.company__wrapper .member__content .content__items .c__item .content__text p .c03 {
  font-family: CenturyGothic;
  font-weight: bold;
  font-size: 24.98rem;
  line-height: 95.18rem;
  text-align: left;
  color: #000;
}
.company__wrapper .history__content {
  width: 1800rem;
  margin: 120rem auto 0;
}
.company__wrapper .history__content .content__inner {
  width: 100%;
  margin-top: 140rem;
}
.company__wrapper .history__content .content__inner table {
  width: 100%;
  border-collapse: collapse;
}
.company__wrapper .history__content .content__inner table tr td {
  font-weight: 500;
  font-size: 27.74rem;
  line-height: 1.5;
  padding: 22rem 0 22rem;
  text-align: left;
  color: #5c5c5c;
}
.company__wrapper .history__content .content__inner table tr td:last-child {
  padding-left: 60rem;
  position: relative;
}
.company__wrapper .history__content .content__inner table tr td:last-child:after {
  content: "";
  width: 5rem;
  height: 100%;
  background: #808080;
  position: absolute;
  left: 0;
  top: 35rem;
  transform: translate(-50%);
}
.company__wrapper .history__content .content__inner table tr td:first-child {
  width: 200rem;
  font-family: CenturyGothic;
  font-weight: normal;
  font-style: italic;
  font-size: 55.47rem;
  line-height: 1;
  vertical-align: top;
  text-align: left;
  color: #000;
  position: relative;
  z-index: 1;
}
.company__wrapper .history__content .content__inner table tr td:first-child:after {
  content: "";
  width: 24.5rem;
  height: 24.5rem;
  border-radius: 50%;
  background: #fff;
  border: 5.39rem solid #f08200;
  position: absolute;
  right: 0;
  top: 35rem;
  transform: translate(50%);
}
.company__wrapper .history__content .n__txt {
  font-weight: 500;
  font-size: 27.74rem;
  line-height: 1.6;
  margin-top: 100rem;
  text-align: left;
  color: #000;
}

.contact__wrapper {
  padding: 160rem 0;
  text-align: center;
}
.contact__wrapper .detail__txt {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-weight: normal;
  font-size: 27.65rem;
  line-height: 46.08rem;
  text-align: left;
  color: #000;
  display: inline-block;
}
.contact__wrapper .contact__form {
  width: 1500rem;
  margin: auto;
  margin-top: 170rem;
}
.contact__wrapper .contact__form table {
  width: 100%;
  border-collapse: collapse;
}
.contact__wrapper .contact__form table tr:last-child td:first-child {
  vertical-align: top;
}
.contact__wrapper .contact__form table tr td {
  padding: 50rem 0;
}
.contact__wrapper .contact__form table tr td:last-child {
  width: 1030.43rem;
}
.contact__wrapper .contact__form table tr td:first-child {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-weight: normal;
  font-size: 27.06rem;
  line-height: 47.36rem;
  text-align: left;
  color: #000;
}
.contact__wrapper .contact__form table tr td:first-child .required {
  width: 75.24rem;
  height: 39.88rem;
  margin-left: 20rem;
  border-radius: 19.2rem;
  background: #f08200;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-weight: normal;
  font-size: 20.3rem;
  line-height: 35.52rem;
  text-align: left;
  color: #fff;
}
.contact__wrapper .contact__form table tr td input[type=text], .contact__wrapper .contact__form table tr td input[type=email] {
  width: 100%;
  height: 79.75rem;
  border-radius: 39.17rem;
  background: #f1efef;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-weight: normal;
  font-size: 27.06rem;
  line-height: 47.36rem;
  padding-left: 20rem;
  text-align: left;
  color: #000;
  border: 0;
}
.contact__wrapper .contact__form table tr td select {
  width: 100%;
  height: 79.75rem;
  border-radius: 39.17rem;
  background: #f1efef;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-weight: normal;
  font-size: 27.06rem;
  line-height: 47.36rem;
  padding-left: 20rem;
  text-align: left;
  color: #000;
  border: 0;
}
.contact__wrapper .contact__form table tr td textarea {
  width: 100%;
  height: 448.5rem;
  border-radius: 28.42rem;
  background: #f1efef;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-weight: normal;
  font-size: 27.06rem;
  line-height: 47.36rem;
  padding: 20rem;
  text-align: left;
  color: #000;
  border: 0;
}
.contact__wrapper .contact__form .submit__btn {
  width: 747.97rem;
  height: 157.61rem;
  border-radius: 78.8rem;
  background: #f8f0e0;
  margin: auto;
  margin-top: 80rem;
  border-radius: 80.51rem;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact__wrapper .contact__form .submit__btn .lbl {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-weight: 600;
  font-size: 34.03rem;
  line-height: 59.56rem;
  text-align: left;
  color: #f08200;
}

.thanks__wrapper {
  margin: 200rem 0;
}
.thanks__wrapper .txt {
  font-size: 36rem;
  text-align: center;
}

@media screen and (max-width: 1110px) {
  html {
    font-size: 0.4px;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 0.1vw;
  }
  .frontview {
    width: 100%;
    height: auto;
    overflow: hidden;
    background: #f67a0e;
  }
  header {
    width: 100%;
    padding: 25rem 60rem;
  }
  .sp-menu {
    width: 49rem;
    height: 39rem;
    position: relative;
  }
  .sp-menu.open span:nth-child(1) {
    top: 20rem;
    transform: rotate(45deg);
  }
  .sp-menu.open span:nth-child(2) {
    width: 0;
  }
  .sp-menu.open span:nth-child(3) {
    top: 20rem;
    transform: rotate(-45deg);
  }
  .sp-menu span {
    width: 100%;
    height: 0;
    border-top: 3rem solid #fff;
    position: absolute;
    left: 0;
    top: 0;
    transition: 0.3s;
  }
  .sp-menu span + span {
    top: 20rem;
  }
  .sp-menu span + span + span {
    top: 38rem;
  }
  header ul {
    width: 100%;
    height: 100%;
    padding: 250rem 80rem 30rem;
    position: fixed;
    left: 0;
    top: 0;
    background: #f08200;
    display: none;
  }
  header ul li {
    padding: 0 30rem;
    border-top: 1px solid #fff;
  }
  header ul li.sp {
    border-bottom: 1px solid #fff;
  }
  header ul li a {
    padding: 45rem 0;
    font-size: 42rem;
    display: flex;
    align-items: center;
  }
  header ul li a span {
    width: 40rem;
    display: flex;
    margin-right: 20rem;
  }
  header ul li .promise__btn {
    width: 590rem;
    height: 149rem;
    border-radius: 80rem;
    margin: auto;
    margin-top: 70rem;
  }
  header ul li .promise__btn .icon {
    width: 64rem;
  }
  header ul li .promise__btn .lbl {
    width: auto;
    font-weight: 500;
    font-size: 48rem;
  }
  .detail__content {
    padding: 200rem 0 30rem;
  }
  .detail__btn {
    width: 500rem;
    height: 140rem;
    border-radius: 80rem;
  }
  .detail__btn .lbl {
    font-size: 34rem;
  }
  .detail__btn .icon {
    width: 17rem;
  }
  .detail__content .content__text .cp__text .c__txt {
    font-weight: 500;
    font-size: 47.92rem;
    line-height: 1.5;
    text-align: left;
    color: #f67c0e;
    border-radius: 80rem;
    padding: 15rem 30rem;
  }
  .detail__content .content__text {
    width: 950rem;
  }
  .detail__content .content__text .cp__text .c__txt.c01 {
    font-size: 40.79rem;
    line-height: 1.5;
  }
  .detail__content .content__text .cp__text .c__txt.c02 {
    font-size: 38.53rem;
    line-height: 1.5;
  }
  .detail__content .content__text .cp__text {
    margin-top: 100rem;
  }
  .egg__bg {
    width: 130rem;
    margin-top: 50rem;
  }
  .service__content .content__items {
    display: block;
  }
  .service__content .content__items .c__item {
    width: 800rem;
    margin: auto;
    margin-bottom: 150rem;
  }
  .service__content .content__items .c__item .content__text h3 {
    font-size: 42.98rem;
  }
  .service__content .content__items .c__item .content__text p {
    font-size: 32rem;
    line-height: 1.6;
  }
  .message__content .content__inner {
    display: block;
  }
  .message__content .content__inner .c__image {
    width: 600rem;
    margin: auto;
  }
  .message__content .content__inner .content__text {
    width: 900rem;
    margin: auto;
    margin-top: 120rem;
  }
  .message__content .content__inner .content__text p {
    font-size: 33rem;
    line-height: 1.7;
  }
  .contact__content .content__inner {
    width: 900rem;
    margin: auto;
    display: block;
  }
  .contact__content .content__inner .content__text p {
    font-size: 30rem;
    line-height: 1.7;
  }
  .contact__content .content__inner .mail__btn {
    width: 747.97rem;
    margin: auto;
    height: 157.59rem;
    margin-top: 50rem;
  }
  .contact__content .content__inner .mail__btn .lbl {
    font-size: 33.42rem;
  }
  footer .content__inner {
    width: 800rem;
    margin: auto;
    display: block;
  }
  footer .content__inner .content__info .f__logo {
    width: 450rem;
  }
  footer .content__inner .content__info .address {
    font-size: 33rem;
    line-height: 1.7;
  }
  footer .content__inner .f__menu ul {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30rem;
  }
  footer .content__inner .f__menu ul li {
    width: 50%;
  }
  footer .content__inner .f__menu ul li a {
    font-size: 31rem;
  }
  footer .content__inner .copyright {
    font-size: 34rem;
    line-height: 1.5;
    margin-top: 60rem;
    text-align: center;
  }
  .about__wrapper .ceo__detail {
    padding: 100rem 0;
  }
  .about__wrapper .ceo__detail .content__inner {
    width: 850rem;
    margin: auto;
    display: flex;
    flex-direction: column-reverse;
  }
  .about__wrapper .ceo__detail .content__inner .c__image {
    width: 56%;
  }
  .about__wrapper .ceo__detail .content__inner .content__text {
    width: 100%;
    margin-top: 36rem;
    font-weight: 500;
    font-size: 55.47rem;
    line-height: 78.34rem;
  }
  .about__wrapper .detail__text {
    width: 900rem;
    margin: 200rem auto;
    font-weight: 500;
    font-size: 34rem;
    line-height: 1.7;
    text-align: justify;
  }
  .company__wrapper .company__info {
    width: 900rem;
  }
  .company__wrapper .company__info table tr {
    display: grid;
  }
  .company__wrapper .company__info table tr td:first-child {
    width: 100%;
    padding-left: 0;
    padding-bottom: 0;
  }
  .company__wrapper .company__info table tr td {
    font-size: 33rem;
    line-height: 1.6;
    padding: 30rem 0;
  }
  .company__wrapper .company__info table tr td:last-child {
    padding-top: 10rem;
  }
  .company__wrapper .member__content .content__items {
    width: 900rem;
  }
  .company__wrapper .member__content .content__items .c__item {
    display: block;
  }
  .company__wrapper .member__content .content__items .c__item .c__image {
    width: 50%;
    margin: auto;
  }
  .company__wrapper .member__content .content__items .c__item .content__text {
    width: 100%;
    margin-top: 35rem;
  }
  .company__wrapper .member__content .content__items .c__item .content__text p {
    font-size: 34rem;
    line-height: 1.8;
  }
  .company__wrapper .member__content .content__items .c__item .content__text p .c01 {
    font-size: 44rem;
  }
  .company__wrapper .member__content .content__items .c__item .content__text p .c03 {
    font-size: 33rem;
    line-height: 1.5;
    margin-left: 20rem;
  }
  .company__wrapper .member__content .content__items .c__item .content__text p .c02 {
    font-size: 38rem;
  }
  .company__wrapper .history__content {
    width: 900rem;
  }
  .company__wrapper .history__content .content__inner table tr td {
    font-size: 33rem;
  }
  .company__wrapper .history__content .n__txt {
    font-size: 32rem;
  }
  .service__wrapper .service__item .content__inner {
    width: 900rem;
  }
  .service__wrapper .service__item .c__image {
    width: 550rem;
    margin: auto;
    margin-top: 64rem;
    display: flex;
    position: relative;
    right: auto;
    top: auto;
    transform: unset;
  }
  .service__wrapper .service__item .bg {
    width: 100%;
  }
  .service__wrapper .service__item .content__inner .c__txt {
    font-size: 33rem;
    line-height: 1.8;
  }
  .service__wrapper .service__item:nth-child(2n) .content__inner {
    flex-direction: row;
  }
  .service__wrapper .service__item:nth-child(2n) .c__image {
    right: auto;
    left: auto;
  }
  .contact__wrapper .detail__txt {
    width: 90%;
    font-size: 32rem;
    line-height: 1.8;
    text-align: justify;
  }
  .contact__wrapper .contact__form {
    width: 900rem;
    margin: auto;
    margin-top: 100rem;
  }
  .contact__wrapper .contact__form table tr {
    display: grid;
  }
  .contact__wrapper .contact__form table tr td:first-child {
    font-size: 32.06rem;
    padding-bottom: 0;
  }
  .contact__wrapper .contact__form table tr td:last-child {
    width: 100%;
  }
  .contact__wrapper .contact__form table tr td input[type=text], .contact__wrapper .contact__form table tr td input[type=email] {
    width: 100%;
    height: 108.75rem;
    border-radius: 39.17rem;
    font-size: 32rem;
    line-height: 47.36rem;
    padding-left: 30rem;
  }
  .contact__wrapper .contact__form table tr td:first-child .required {
    width: 107.24rem;
    height: 45.88rem;
    margin-left: 20rem;
    border-radius: 19.2rem;
    font-size: 26.3rem;
  }
  .contact__wrapper .contact__form .submit__btn {
    width: 100%;
    height: 160rem;
    margin: auto;
    margin-top: 80rem;
    border-radius: 80rem;
  }
  .contact__wrapper .contact__form .submit__btn .lbl {
    font-size: 40rem;
  }
  .contact__wrapper .contact__form .submit__btn .icon {
    width: 50rem;
  }
  .contact__wrapper .contact__form table tr td select {
    width: 100%;
    height: 108rem;
    font-size: 32rem;
    padding-left: 30rem;
  }
  .contact__wrapper .contact__form table tr td textarea {
    width: 100%;
    height: 500rem;
    border-radius: 28.42rem;
    font-size: 32rem;
    line-height: 1.7;
    padding: 30rem;
  }
  header ul li a:after {
    content: unset;
  }
  .thanks__wrapper .txt {
    font-size: 46rem;
  }
  .about__wrapper .detail__text .sns__lbl {
    font-size: 45rem;
  }
  .about__wrapper .detail__text .facebook {
    width: 80rem;
    height: 80rem;
  }
  .frontview .catch__text {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 250rem;
    top: auto;
  }
}/*# sourceMappingURL=style.css.map */