@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+2:wght@400;800&family=Montserrat:ital,wght@400;1,400;800&display=swap");
body {
  font-family: "M PLUS 2", "Montserrat", "Hiragino Sans", "メイリオ", serif;
  color: #00255D;
  background-color: #fffefe;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1rem;
  line-height: 1.5rem;
}
@media screen and (max-width: 490px) {
  body {
    font-size: 14px;
  }
}

main {
  min-height: 100vh;
}

@media screen and (max-width: 490px) {
  .pc_only {
    display: none !important;
  }
}

@media screen and (min-width: 1280px) {
  .sp_only {
    display: none !important;
  }
}

a img:hover {
  opacity: 0.7;
}

.section__marquee {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  padding: 25px 0;
}
@media screen and (max-width: 490px) {
  .section__marquee {
    position: absolute;
    width: 100vw;
    left: -5vw;
    bottom: -110px;
  }
}

.marquee__text {
  font-family: "Montserrat";
  font-size: 80px;
  font-weight: 600;
  line-height: 85px;
  color: rgba(168, 168, 168, 0.2);
  display: inline-block;
  padding-right: 0.5em;
  animation: marquee 15s linear infinite;
}
@media screen and (max-width: 490px) {
  .marquee__text {
    font-size: 50px;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.basic_width {
  max-width: 1080px;
  margin: 0 auto;
}
.basic_width img {
  width: 100%;
}
@media screen and (max-width: 490px) {
  .basic_width {
    width: 100vw;
  }
  .basic_width img {
    width: 100%;
  }
}

.basic_width_b {
  max-width: 1280px;
  margin: 0 auto;
}
.basic_width_b img {
  width: 100%;
}
@media screen and (max-width: 490px) {
  .basic_width_b {
    width: 100vw;
  }
  .basic_width_b img {
    width: 100%;
  }
}

.con_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 130px;
  background-repeat: no-repeat;
  background-size: cover;
  font-weight: 800;
  line-height: 2rem;
  font-size: 28px;
}
@media screen and (max-width: 490px) {
  .con_btn {
    display: block;
    height: auto;
    padding: 30px 0;
    text-align: center;
    font-size: 25px;
  }
}
.con_btn a {
  padding: 0 20px;
}
@media screen and (max-width: 490px) {
  .con_btn img {
    width: 80vw;
    padding: 10px;
  }
}

.fadein {
  animation-name: fadein;
  animation-delay: 1.5s;
  animation-duration: 1.2s;
  animation-fill-mode: both;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
.slideup {
  transform: translateY(50px);
}

.slidedown {
  transform: translateY(-50px);
}

.slideright {
  transform: translateX(50px);
}

.slideleft {
  transform: translateX(-50px);
}

span[id] {
  display: block;
  height: 70px;
  margin-top: -70px;
  content: "";
}

.box {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
}
.box.ready {
  opacity: 1;
  transform: translateY(0px);
}

body {
  width: 100%;
}

.box_sticky_area {
  overflow: visible;
  position: relative;
}

.header {
  position: sticky;
  top: 30px;
  margin: 0 auto;
  margin-top: 50px;
  height: auto;
  padding: 20px 0 22px;
  width: 80%;
  z-index: 99;
  background-color: #fff;
  border-radius: 40px;
  box-shadow: 0px 5px 20px 0px rgba(133, 133, 133, 0.17);
}
@media screen and (max-width: 490px) {
  .header {
    display: none;
    margin: initial;
    border-radius: initial;
    top: 0;
  }
}
.header.active {
  animation-name: fadeIn;
  animation-fill-mode: forwards;
  animation-duration: 0.4s;
}
@media screen and (max-width: 490px) {
  .header.active {
    display: block;
    position: fixed;
    background-color: #D1C195;
    width: 100vw;
    height: 100vh;
    color: #fff;
    left: 0;
    z-index: 98;
    padding-top: 100px;
  }
}
.header .logo {
  width: 25%;
  padding-left: 50px;
}
@media screen and (max-width: 490px) {
  .header .logo {
    padding-left: 20px;
  }
}
.header .logo img {
  width: auto;
  height: 20px;
}
.header .con_header {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 490px) {
  .header .con_header {
    display: block;
    z-index: 100;
  }
}
.header .con_header .menu {
  display: flex;
  padding-right: 60px;
  color: #D1C195;
  font-size: 15px;
}
@media screen and (max-width: 490px) {
  .header .con_header .menu {
    display: block;
    color: white;
    font-size: 16px;
    line-height: 20px;
    text-align: right;
    padding: initial;
    padding-top: 30px;
  }
}
.header .con_header .menu li {
  padding: 0 20px;
}
@media screen and (max-width: 490px) {
  .header .con_header .menu li {
    padding: 15px 20px;
  }
}
.header .con_header .menu a:hover {
  color: #00255D;
}

@media screen and (max-width: 490px) {
  .sp_menu_con {
    position: fixed;
    z-index: 99;
    right: 15px;
    top: 15px;
  }
}

.hamburger {
  position: relative; /*ボタン内側の基点となるためrelativeを指定*/
  width: 50px;
  height: 50px;
}
.hamburger span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  right: 7px;
  height: 1px;
  border-radius: 5px;
  background: #00255D;
  width: 70%;
}
.hamburger span:nth-of-type(1) {
  top: 14px;
}
.hamburger span:nth-of-type(2) {
  top: 25px;
}
.hamburger span:nth-of-type(3) {
  top: 36px;
}
.hamburger.active {
  width: 50px;
  height: 50px;
  margin-top: 20px;
}
.hamburger.active span:nth-of-type(1) {
  top: 20px;
  right: 0px;
  transform: translateY(6px) rotate(-45deg);
  width: 100%;
}
.hamburger.active span:nth-of-type(2) {
  opacity: 0;
}
.hamburger.active span:nth-of-type(3) {
  top: 33px;
  right: 0px;
  transform: translateY(-6px) rotate(45deg);
  width: 100%;
}

.main_visual {
  width: 100%;
  height: 100vh;
  position: relative;
  background-image: url("../img/main_visual.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
@media screen and (max-width: 490px) {
  .main_visual {
    background-image: url("../img/sp/main_visual.jpg");
    background-position: left;
  }
}
.main_visual .bg_beige {
  display: block;
  width: 100%;
  height: 400vh;
  background-color: #D1C195;
  transform: skewY(45deg) translateY(-40%);
  overflow: hidden;
  z-index: 99;
  position: relative;
}
.main_visual .bg_beige_after {
  width: 100%;
  height: 100vh;
  background-color: #D1C195;
  transform: skewY(45deg) translateY(-300%);
  transition: all 1s ease-in-out 1s;
  overflow: hidden;
  z-index: 99;
}
.main_visual .container {
  height: 300px;
  position: absolute;
}
.main_visual .scrollbar-text {
  display: inline-block;
  position: absolute;
  bottom: 0;
  padding: 10px 10px 110px;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.2em;
  writing-mode: vertical-lr;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.main_visual .scrollbar {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1px;
  z-index: 2;
}
.main_visual .scrollbar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 100px;
  background: #fff;
  animation: liner 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes liner {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  30% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  70% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
.main_visual .txt_copy {
  position: absolute;
  color: #fff;
  font-weight: 800;
  font-size: 60px;
  line-height: 80px;
  text-align: center;
  top: 40%;
  left: 33%;
  text-shadow: 0 2px 10px #aaa;
}
@media screen and (max-width: 490px) {
  .main_visual .txt_copy {
    font-size: 35px;
    text-align: left;
    line-height: 45px;
    top: 35vh;
    left: 5vw;
  }
}
.main_visual .logo_sib {
  position: absolute;
  left: 5%;
  top: 50px;
  opacity: 0;
}
@media screen and (max-width: 490px) {
  .main_visual .logo_sib {
    width: 100px;
    left: 20px;
    top: 25px;
  }
}

.wrap_text {
  font-family: "Montserrat";
  font-weight: 800;
  font-size: 80px;
  line-height: 85px;
  overflow: hidden;
  display: flex;
  justify-content: left;
  align-items: center;
}
@media screen and (max-width: 490px) {
  .wrap_text {
    font-size: 35px;
    line-height: 40px;
  }
}
.wrap_text.is-active {
  --y: 0;
}

.char {
  display: inline-block;
  transform: translateY(var(--y, 110%));
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  transition-delay: calc(0.04s * var(--char-index));
}

.visuallyHidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media screen and (max-width: 490px) {
  .in_under_box {
    margin-top: -30px;
  }
}

.in_under_txt {
  overflow: hidden;
  transform: translate(0, 100%);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.75s;
  margin-bottom: 5px;
}
@media screen and (max-width: 490px) {
  .in_under_txt {
    margin-top: 0px;
    transform: translate(0, 0);
  }
}
.in_under_txt span {
  display: block;
  transform: translate(0, 100%);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.75s;
}
.in_under_txt.visible span {
  transform: translate(0, 0);
}

.concept {
  padding: 60px 0 100px 0;
  display: block;
}
@media screen and (max-width: 490px) {
  .concept {
    padding: 30px 5vw 60px 5vw;
  }
}
.concept .in_under_txt {
  overflow: hidden;
  transform: translate(0, 100%);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.75s;
  margin-bottom: 5px;
}
.concept .in_under_txt span {
  display: block;
  transform: translate(0, 100%);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.75s;
}
.concept .in_under_txt.visible span {
  transform: translate(0, 0);
}
@media screen and (max-width: 490px) {
  .concept .in_under_txt {
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
  }
}

.box_concept_photo {
  width: 100%;
  height: 370px;
  background-image: url("../img/main_visual_02.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.btn_a {
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 17px;
  text-align: center;
  width: 300px;
  padding: 8px 30px;
  border-radius: 30px;
  border: 1px solid #fff;
  margin: 25px 0;
}
@media screen and (max-width: 490px) {
  .btn_a {
    width: 100%;
    text-align: center;
    margin: initial;
    margin: 15px 0;
    padding: 15px 30px;
  }
}

.ttl_navy {
  text-align: center;
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 75px;
  margin: 0 0 85px 0;
  justify-content: center;
}
@media screen and (max-width: 490px) {
  .ttl_navy {
    font-size: 45px;
    margin: 40px 0;
    line-height: 50px;
  }
}

.ttl_navy_border {
  width: 100%;
  position: relative;
}
.ttl_navy_border span {
  content: "";
  position: absolute;
  background-color: #00255D;
  height: 1px;
  width: 110px;
  left: 47%;
  top: -61px;
}
@media screen and (max-width: 490px) {
  .ttl_navy_border span {
    left: 38%;
    top: -35px;
  }
}

.box_business {
  padding: 100px 0 60px 0;
}
@media screen and (max-width: 490px) {
  .box_business {
    padding: initial;
  }
}

.txt_top_visual {
  position: absolute;
  text-align: center;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
@media screen and (max-width: 490px) {
  .txt_top_visual {
    padding: 0 5vw;
    top: 45%;
    text-align: left;
  }
}
.txt_top_visual .ttl_white {
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 75px;
  justify-content: center;
}
@media screen and (max-width: 490px) {
  .txt_top_visual .ttl_white {
    font-size: 48px;
    line-height: 53px;
    justify-content: left;
  }
}

.txt_top_copy {
  font-size: 25px;
  line-height: 2rem;
}
@media screen and (max-width: 490px) {
  .txt_top_copy {
    font-size: 18px;
    line-height: 25px;
    font-weight: 400;
  }
}

.concept_photo img {
  width: 100%;
}

.blur {
  filter: blur(10px);
  transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  position: absolute;
  z-index: -1;
  overflow: hidden;
}

.top_real_estate {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 490px) {
  .top_real_estate {
    height: 70vh;
  }
}

.con_almal {
  background-image: linear-gradient(150deg, #00255d, #000000);
  color: #fff;
  padding: 100px 0;
}
@media screen and (max-width: 490px) {
  .con_almal {
    padding: 20px 5vw 50px 5vw;
  }
}
.con_almal .staff {
  width: 100%;
  height: 470px;
  position: relative;
  display: flex;
  margin-bottom: 60px;
}
@media screen and (max-width: 490px) {
  .con_almal .staff {
    display: block;
    height: auto;
    margin-bottom: 0px;
  }
}
.con_almal .staff .staff_photo {
  width: 55%;
  overflow: hidden;
}
@media screen and (max-width: 490px) {
  .con_almal .staff .staff_photo {
    width: 100%;
  }
}
.con_almal .staff .staff_photo img {
  width: 100%;
}
.con_almal .staff .txt_staff {
  position: absolute;
  height: 100%;
  background-image: linear-gradient(95deg, transparent 5%, #00255d 20%, #011941);
  width: 60%;
  vertical-align: middle;
  padding: 40px 80px 40px 240px;
  right: 0;
  font-weight: 400;
  line-height: 2rem;
}
@media screen and (max-width: 490px) {
  .con_almal .staff .txt_staff {
    position: relative;
    background-image: none;
    height: auto;
    width: 100%;
    padding: initial;
    line-height: 20px;
  }
}
.con_almal .staff .txt_staff .logo_almal {
  padding: 25px 0 50px;
}
@media screen and (max-width: 490px) {
  .con_almal .staff .txt_staff .logo_almal {
    padding: 30px 0;
  }
}
.con_almal .staff .btn_a:hover {
  background-color: #FFF;
  color: #00255d;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.con_almal .ttl_white_sm {
  text-align: center;
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 55px;
  padding: 110px 0 65px 0;
}
@media screen and (max-width: 490px) {
  .con_almal .ttl_white_sm {
    padding-top: 50px;
    padding-bottom: 30px;
    font-size: 40px;
  }
}
.con_almal .box_projects {
  width: 100%;
  text-align: center;
}
.con_almal .box_advisory {
  position: relative;
  margin-top: 30px;
}
.con_almal .box_advisory .box_con_advisory {
  width: 100%;
  display: flex;
  height: 350px;
}
@media screen and (max-width: 490px) {
  .con_almal .box_advisory .box_con_advisory {
    display: block;
    height: auto;
    padding: initial;
  }
}
.con_almal .box_advisory .box_con_advisory .left_box {
  width: 50%;
  flex-shrink: 0;
  overflow: clip;
}
.con_almal .box_advisory .box_con_advisory .left_box .concept_photo {
  width: 100%;
}
.con_almal .box_advisory .box_con_advisory .left_box img {
  width: 100%;
}
@media screen and (max-width: 490px) {
  .con_almal .box_advisory .box_con_advisory .left_box {
    width: 100%;
  }
}
.con_almal .box_advisory .box_con_advisory .sticky_wrap {
  overflow: hidden;
}
.con_almal .box_advisory .box_con_advisory .right_box {
  height: 350px;
  padding: 50px 0 50px 50px;
  flex-wrap: nowrap;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 490px) {
  .con_almal .box_advisory .box_con_advisory .right_box {
    padding: initial;
    padding-top: 25px;
    padding-left: 15px;
    height: auto;
    overflow: hidden;
  }
}
.con_almal .box_advisory .box_con_advisory .right_box p {
  width: 400px;
  font-size: 16px;
  overflow-wrap: break-word;
  margin: 0 20px;
}
.con_almal .box_advisory .box_con_advisory .right_box .ttl_adv {
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 35px;
  padding-bottom: 30px;
}
.con_almal .box_con_contact {
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7rem;
  padding-top: 20px;
}
@media screen and (max-width: 490px) {
  .con_almal .box_con_contact {
    padding: 15px 0;
    margin-top: 80px;
    font-size: 15px;
    line-height: 20px;
  }
}

.swiper-wrapper .swiper-slide {
  width: 720px;
}
.swiper-wrapper .swiper-slide .ttl_pro {
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 35px;
  line-height: 2.5rem;
  padding: 25px 0;
  vertical-align: middle;
  margin: 0 20px;
}
@media screen and (max-width: 490px) {
  .swiper-wrapper .swiper-slide .ttl_pro {
    font-size: 25px;
    line-height: 30px;
  }
}
.swiper-wrapper .swiper-slide .txt_pro {
  width: 600px;
  margin: 0 auto;
  font-size: 15px;
  font-weight: 400;
}
@media screen and (max-width: 490px) {
  .swiper-wrapper .swiper-slide .txt_pro {
    width: 100%;
    font-size: 14px;
    text-align: left;
  }
}
.swiper-wrapper .swiper-slide img {
  width: 100%;
}
@media screen and (max-width: 490px) {
  .swiper-wrapper .swiper-slide img {
    width: 100%;
  }
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev,
.swiper-button-next {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  color: #fff;
  font-size: 1.5rem;
}

.swiper-button-next::after {
  content: "\f054"; /* FontAwesomeの右矢印 */
  padding-left: 5px;
}

.swiper-button-prev::after {
  content: "\f053"; /* FontAwesomeの左矢印 */
}

.top_weallness {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 490px) {
  .top_weallness {
    height: 70vh;
    width: 100%;
  }
}

@media screen and (max-width: 490px) {
  .concept_photo_weallness {
    width: 100%;
  }
}
.concept_photo_weallness img {
  width: 100%;
  overflow: hidden;
}

.blur_weall {
  filter: blur(10px);
  transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  z-index: -1;
  overflow: hidden;
}

.con_weallness {
  width: 100%;
  padding: 80px 0 0;
  text-align: center;
}
@media screen and (max-width: 490px) {
  .con_weallness {
    padding-top: 35px;
    position: relative;
  }
}
.con_weallness .logo_hda img {
  width: 550px;
}
@media screen and (max-width: 490px) {
  .con_weallness .logo_hda img {
    width: 80vw;
    padding-bottom: 25px;
  }
}
.con_weallness .txt_hda {
  margin: -30px 0 110px 0;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7rem;
}
@media screen and (max-width: 490px) {
  .con_weallness .txt_hda {
    padding: 0 5vw;
    font-size: 15px;
    margin: 25px 0;
  }
}
@media screen and (max-width: 490px) {
  .con_weallness .banner_photo {
    width: 100%;
    padding: 0 5vw;
  }
}
.con_weallness .banner_photo .con_photo {
  width: 500px;
  height: 530px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  background-image: url("../img/photo_spa.jpg");
  background-position: center;
  background-size: cover;
  overflow: hidden;
  cursor: pointer;
}
@media screen and (max-width: 490px) {
  .con_weallness .banner_photo .con_photo {
    margin: initial;
    width: 100%;
    height: 50vh;
    background-size: cover;
  }
}
.con_weallness .banner_photo .con_photo::after {
  background: #D1C195;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 300%;
  height: 300%;
  transform: rotate(-45deg) scaleX(0);
  transform-origin: 0% 50%;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.con_weallness .banner_photo .con_photo:hover::after {
  transform: rotate(-45deg) scaleX(0.35);
}
.con_weallness .banner_photo .txt_spa {
  position: absolute;
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 55px;
  color: #fff;
  text-align: center;
  left: 45%;
  top: 45%;
  z-index: 2;
}
@media screen and (max-width: 490px) {
  .con_weallness .banner_photo .txt_spa {
    width: 90%;
    display: block;
    top: 45%;
    left: initial;
    font-size: 40px;
  }
}
@media screen and (max-width: 490px) {
  .con_weallness .section__marquee {
    left: 0;
    margin-bottom: 0px;
  }
}

@media screen and (max-width: 490px) {
  .con_company {
    padding: 0 5vw;
  }
}

.company {
  margin-top: 30px;
  margin-bottom: 110px;
}
.company .photo_company {
  width: 100%;
  overflow: hidden;
  padding-bottom: 40px;
}
@media screen and (max-width: 490px) {
  .company .photo_company {
    padding-bottom: 0;
    margin-top: 120px;
  }
}
.company .photo_company img {
  width: 100%;
}
.company table, .company td, .company th {
  border: 1px solid #fff;
  border-collapse: collapse;
}
@media screen and (max-width: 490px) {
  .company table, .company td, .company th {
    display: block;
    width: 90vw;
  }
}
.company table {
  width: 780px;
  margin: 0 auto;
  font-size: 14px;
}
@media screen and (max-width: 490px) {
  .company table {
    width: 90vw;
  }
}
.company table th {
  width: 25%;
  background-color: rgba(209, 193, 149, 0.2);
  padding: 8px 15px;
  font-weight: 400;
  text-align: right;
}
@media screen and (max-width: 490px) {
  .company table th {
    width: 90vw;
    text-align: left;
  }
}
.company table td {
  width: 75%;
  background-color: #fff;
  padding: 8px 15px;
}
@media screen and (max-width: 490px) {
  .company table td {
    width: 90vw;
  }
}

.contact {
  margin-top: 40px;
  text-align: center;
  padding: 0 0 80px 0;
  background-color: rgba(168, 168, 168, 0.1);
}
@media screen and (max-width: 490px) {
  .contact {
    padding: 0 5vw;
    padding-bottom: 80px;
  }
}
.contact .ttl_contact {
  font-size: 17px;
  font-weight: 400;
  padding-bottom: 20px;
}
.contact table {
  width: 100%;
}
.contact th {
  text-align: right;
  padding: 13px 0;
  padding-right: 20px;
  font-size: 14px;
  font-weight: 400;
}
@media screen and (max-width: 490px) {
  .contact th {
    display: block;
    text-align: left;
    padding: initial;
  }
}
.contact td {
  width: calc(100% - 150px);
  margin: 0 auto;
  text-align: left;
  padding: 10px 0;
}
@media screen and (max-width: 490px) {
  .contact td {
    display: block;
    width: 100%;
    padding: initial;
    font-size: 15px;
  }
}
.contact .required::before {
  content: "必須";
  color: #FFF;
  font-size: 13px;
  margin-right: 3px;
  padding: 3px 5px;
  background-color: #D1C195;
}
@media screen and (max-width: 490px) {
  .contact input {
    width: 100%;
    text-align: left;
    margin: 0;
  }
}
.contact textarea {
  height: 200px;
  line-height: 1.5rem;
}
.contact input, .contact textarea, .contact select {
  width: calc(100% - 150px);
  text-align: left;
  background-color: #fff;
  padding: 5px 10px;
  border: 1px solid #fff;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1rem;
  color: #00255D;
}
@media screen and (max-width: 490px) {
  .contact input, .contact textarea, .contact select {
    width: 100%;
    margin-top: 5px;
    margin-bottom: 10px;
  }
}
.contact input[type=submit], .contact input[type=button] {
  width: initial;
  text-align: initial;
  background-color: initial;
  padding: initial;
  border-radius: initial;
  border: initial;
  font-size: initial;
  font-weight: initial;
  margin: initial;
  margin: 15px auto;
  padding: 20px 0 50px;
  font-size: 15px;
  font-weight: 400;
  width: 250px;
  padding: 20px 50px;
  color: #00255D;
  border: 0.5px solid #00255D;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 490px) {
  .contact input[type=submit], .contact input[type=button] {
    font-size: 15px;
    font-weight: 400;
  }
}
.contact input[type=submit]:hover, .contact input[type=button]:hover {
  color: #fff;
  background-color: #00255D;
}
.contact input[type=checkbox] {
  justify-content: center;
  width: 15px;
  margin-right: 15px;
  position: relative;
}
@media screen and (max-width: 490px) {
  .contact input[type=checkbox] {
    margin: initial;
    padding: 10px;
  }
}
.contact input[type=checkbox]:checked + .wpcf7-list-item-label:after { /*チェックアイコン*/
  border: none;
  border-right: 2px solid #222;
  border-bottom: 2px solid #222;
  height: 11px;
  left: -30px;
  top: 5px;
  margin: 0 auto;
  transform: rotate(45deg);
  width: 7px;
  opacity: 1;
  position: absolute;
}
@media screen and (max-width: 490px) {
  .contact input[type=checkbox]:checked + .wpcf7-list-item-label:after {
    left: -15px;
    top: 7px;
  }
}
.contact ::placeholder {
  font-size: 14px;
  letter-spacing: 0.1rem;
  font-weight: normal;
  color: #ccc;
}

.ttl_thx {
  padding-top: 150px;
  text-align: center;
  font-weight: 800;
  font-size: 30px;
}

.txt_thx {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  padding: 40px 0;
  line-height: 2rem;
}

.btn_back {
  margin-top: 110px;
}
.btn_back a {
  margin: 15px auto;
  padding: 20px 0 50px;
  font-size: 18px;
  font-weight: bold;
  width: 300px;
  padding: 20px 80px;
  color: #00255D;
  border: 0.5px solid #00255D;
  position: relative;
  text-align: center;
}
.btn_back a:hover {
  color: #fff;
  background-color: #00255D;
}

footer {
  width: 100%;
  text-align: center;
  background-color: #00255D;
  padding: 10px 0;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
}
@media screen and (max-width: 490px) {
  footer {
    line-height: 1.2rem;
    font-size: 12px;
  }
}