@charset "UTF-8";
/*==============================================================
	変数
===============================================================*/
/*==============================================================
	@extend
===============================================================*/
body {
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
  font-size: 1.6rem;
  font-style: normal;
  overflow: hidden;
  color: #191919;
  font-family: "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
}

#wrapper {
  width: 100%;
  position: relative;
  margin: 0 auto;
  background-color: #fff;
}

figure,
figcaption {
  margin-bottom: 0;
  padding: 0;
}

h1, h2, h3, h4 {
  font-weight: normal;
}

a,
a:hover,
a:active,
a:visited {
  color: #333;
  text-decoration: none;
  cursor: pointer;
}

h1, h2, h3 {
  font-weight: normal;
}

.pc_el {
  display: inline-block;
}

.sp_el {
  display: none;
}

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

/*==============================================================
	共通
===============================================================*/
.base_tl {
  font-family: Futura, Trebuchet MS, Arial, sans-serif;
  font-size: clamp(70px, 10vw, 90px);
  letter-spacing: 12px;
}

.base_tl span:first-child {
  font-size: clamp(80px, 10vw, 120px);
  color: #e0a42b;
  position: relative;
  top: 4px;
}

.base_tl .gray {
  font-size: clamp(80px, 10vw, 120px);
  color: #4D4D4D;
  position: relative;
  top: 4px;
}

.en {
  font-family: Futura, Trebuchet MS, Arial, sans-serif;
}

.inner_wrap {
  width: 1200px;
  margin: auto;
}

.inner_wrap_s {
  width: 850px;
  margin: auto;
}

/*==============================================================
	header : ヘッダー
===============================================================*/
header {
  width: 100%;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .fl_box {
  width: 100%;
  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;
}

header .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  padding-left: 3%;
}

header .logo img {
  max-width: 100%;
  height: auto;
  width: 200px;
}

header .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header .menu li {
  position: relative;
  line-height: 1;
}

header .menu li::after {
  content: "";
  position: absolute;
  height: 8rem;
  width: 103%;
  top: 50%;
  left: 0;
  background-color: #fff;
  -webkit-transform: translateY(-50%) skewX(-30deg);
  transform: translateY(-50%) skewX(-30deg);
  -webkit-transition: all ease .4s;
  transition: all ease .4s;
}

header .menu li a {
  position: relative;
  z-index: 1;
}

header .menu li a::before {
  content: "";
  position: absolute;
  border-right: solid 1px #333;
  height: 5rem;
  width: 100%;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%) skewX(-30deg);
  transform: translateY(-50%) skewX(-30deg);
}

header .menu li:last-child::after {
  width: 100vw;
}

header .menu li:last-child a::before {
  content: none;
}

header .menu li a {
  display: block;
  padding: 30px 20px;
  color: #333;
}

header .menu li:hover::after {
  background-color: #e1a32c;
}

header .menu li:hover a {
  color: #fff;
}

header.fixed {
  position: fixed;
  top: 0;
  z-index: 9;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

#menu, .sp_menu, .nav {
  display: none;
}

/*==============================================================
	#home : TOP
===============================================================*/
.mv_area {
  position: relative;
  height: calc(85vh - 90px);
  margin-bottom: 50px;
  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: 0;
}

.mv_area .video_area {
  width: 100%;
  position: relative;
  z-index: -1;
  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;
  /*最背面に設定*/
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  height: calc(85vh - 90px);
}

.mv_area .tl {
  text-align: center;
  font-size: clamp(30px, 2vw, 42px);
  color: #fff;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
  font-family: serif;
}

.mv_area .scroll {
  position: absolute;
  left: -5.5vw;
  bottom: 5vw;
  font-size: 36px;
  color: #999999;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
}

.mv_area .scroll .arrow {
  position: absolute;
  bottom: -90px;
  right: 0;
  overflow: hidden;
  display: block;
  width: 100%;
  height: 90px;
}

.mv_area .scroll .arrow::before, .mv_area .scroll .arrow::after {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  content: "";
  position: absolute;
}

.mv_area .scroll .arrow::before {
  top: 0;
  left: 15px;
  right: 0;
  margin: auto;
  width: 20px;
  height: 90px;
  background: url(../../img/ico_arrow.png) no-repeat;
  background-size: 10px;
  -webkit-animation: scroll 1.5s ease-out infinite;
  animation: scroll 1.5s ease-out infinite;
}

.mv_area #video {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  /*縦横幅指定*/
  width: 177.77777778vh;
  /* 16:9 の幅→16 ÷ 9＝ 177.77% */
  height: 56.25vw;
  /* 16:9の幅 → 9 ÷ 16 = 56.25% */
  min-height: 100%;
  min-width: 100%;
}

.mv_area .text_animate_2 {
  display: none;
}

.mv_area .text_animate, .mv_area .text_animate_2 {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.mv_area .text_animate span, .mv_area .text_animate_2 span {
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 0;
}

.mv_area .text_animate span.text_animate_on, .mv_area .text_animate_2 span.text_animate_on {
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 1;
}

.mv_area .text_animate.text_animate_rotate span, .mv_area .text_animate_2.text_animate_rotate span {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  display: inline-block;
}

.mv_area .text_animate.text_animate_rotate span.text_animate_rotate_on, .mv_area .text_animate_2.text_animate_rotate span.text_animate_rotate_on {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.mv_area .text_animate.text_animate_size span, .mv_area .text_animate_2.text_animate_size span {
  font-size: 22px;
}

.mv_area .text_animate.text_animate_size span.text_animate_size_on, .mv_area .text_animate_2.text_animate_size span.text_animate_size_on {
  font-size: 10px;
}

.mv_area .text_animate_sp {
  display: none;
}

.mv_area .text_animate_sp_2 {
  display: none;
}

.service_area {
  background-color: #fff;
}

.service_area .fl_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.service_area .photo {
  width: 40%;
  background: url(../../img/pho_service.png) no-repeat center/cover;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.service_area .txt_box {
  width: 60%;
  padding: 1% 8% 5% 8%;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  z-index: 0;
}

.service_area .base_tl {
  margin-bottom: 50px;
}

.service_area .img_tl {
  opacity: 0;
  position: relative;
  margin-bottom: 80px;
  display: inline-block;
}

.service_area .img_tl img {
  width: 100%;
  max-width: 350px;
}

.service_area .tl {
  opacity: 0;
  font-size: clamp(24px, 2vw, 36px);
  font-weight: bold;
  position: relative;
  margin-bottom: 50px;
  display: inline-block;
}

.service_area .tl::before {
  content: "";
  background: url(../../img/ico_title.png) no-repeat;
  position: absolute;
  top: -20px;
  right: 100%;
  width: 32px;
  height: 32px;
}

.service_area .tl::after {
  content: "";
  background: url(../../img/ico_title.png) no-repeat;
  position: absolute;
  bottom: -20px;
  left: 100%;
  width: 32px;
  height: 32px;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.service_area .txt {
  opacity: 0;
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.8;
}

.service_area .btn {
  opacity: 0;
}

.service_area .view {
  position: relative;
  background-color: #fff;
  border: 1px solid #000;
  padding: 10px;
  margin-top: 30px;
  text-align: center;
  width: 260px;
  display: block;
  font-size: clamp(20px, 5vw, 22px);
}

.service_area .view::before {
  content: "";
  background: url(../../img/ico_arrow_b.png) no-repeat;
  width: 50px;
  height: 10px;
  background-size: 50px;
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.service_area .view::after {
  content: "";
  background-color: #000;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 8px;
  top: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: -1;
}

.service_area .view:hover::before {
  right: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.service_area .view:hover::after {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  left: 0px;
  top: 0px;
}

.service_area.is-scroll .img_tl {
  -webkit-animation: slideIn 0.8s ease-out 0.3s 1 forwards;
          animation: slideIn 0.8s ease-out 0.3s 1 forwards;
}

.service_area.is-scroll .tl {
  -webkit-animation: slideIn 0.8s ease-out 0.5s 1 forwards;
          animation: slideIn 0.8s ease-out 0.5s 1 forwards;
}

.service_area.is-scroll .txt {
  -webkit-animation: slideIn 0.8s ease-out 0.7s 1 forwards;
          animation: slideIn 0.8s ease-out 0.7s 1 forwards;
}

.service_area.is-scroll .btn {
  -webkit-animation: slideIn 0.8s ease-out 0.9s 1 forwards;
          animation: slideIn 0.8s ease-out 0.9s 1 forwards;
}

.mission_area {
  background-color: #fffbf2;
}

.mission_area .fl_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mission_area .photo {
  width: 40%;
  background: url(../../img/pho_mission.png) no-repeat center/cover;
}

.mission_area .txt_box {
  width: 60%;
  padding: 5% 8% 5% 8%;
}

.mission_area .base_tl {
  margin-bottom: 50px;
}

.mission_area .tl {
  opacity: 0;
  font-size: clamp(24px, 2vw, 36px);
  font-weight: bold;
  position: relative;
  margin-bottom: 50px;
  display: inline-block;
}

.mission_area .tl::before {
  content: "";
  background: url(../../img/ico_title.png) no-repeat;
  position: absolute;
  top: -20px;
  right: 100%;
  width: 32px;
  height: 32px;
}

.mission_area .tl::after {
  content: "";
  background: url(../../img/ico_title.png) no-repeat;
  position: absolute;
  bottom: -20px;
  left: 100%;
  width: 32px;
  height: 32px;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.mission_area .txt {
  opacity: 0;
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.8;
}

.mission_area.is-scroll .tl {
  -webkit-animation: slideIn 0.8s ease-out 0.3s 1 forwards;
          animation: slideIn 0.8s ease-out 0.3s 1 forwards;
}

.mission_area.is-scroll .txt {
  -webkit-animation: slideIn 0.8s ease-out 0.5s 1 forwards;
          animation: slideIn 0.8s ease-out 0.5s 1 forwards;
}

.vision_area {
  background-color: #fff;
}

.vision_area .fl_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.vision_area .photo {
  width: 40%;
  background: url(../../img/pho_vision.png) no-repeat center/cover;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.vision_area .txt_box {
  width: 60%;
  padding: 5% 8% 5% 8%;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.vision_area .base_tl {
  margin-bottom: 50px;
}

.vision_area .tl {
  opacity: 0;
  font-size: clamp(24px, 2vw, 36px);
  font-weight: bold;
  position: relative;
  margin-bottom: 50px;
  display: inline-block;
}

.vision_area .tl::before {
  content: "";
  background: url(../../img/ico_title.png) no-repeat;
  position: absolute;
  top: -20px;
  right: 100%;
  width: 32px;
  height: 32px;
}

.vision_area .tl::after {
  content: "";
  background: url(../../img/ico_title.png) no-repeat;
  position: absolute;
  bottom: -20px;
  left: 100%;
  width: 32px;
  height: 32px;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.vision_area .txt {
  opacity: 0;
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.8;
}

.vision_area.is-scroll .tl {
  -webkit-animation: slideIn 0.8s ease-out 0.3s 1 forwards;
          animation: slideIn 0.8s ease-out 0.3s 1 forwards;
}

.vision_area.is-scroll .txt {
  -webkit-animation: slideIn 0.8s ease-out 0.5s 1 forwards;
          animation: slideIn 0.8s ease-out 0.5s 1 forwards;
}

.value_area {
  background: url(../../img/bg_value.png) no-repeat center/cover;
  padding: 100px 0;
  position: relative;
}

.value_area .tl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.value_area .tl img {
  max-width: 650px;
}

.value_area .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.value_area .list li {
  width: 50%;
  opacity: 0;
}

.value_area .list li img {
  max-width: 320px;
}

.value_area .list li:nth-child(1) {
  margin-bottom: 40px;
}

.value_area .list li:nth-child(2) {
  text-align: right;
  margin-bottom: 40px;
}

.value_area .list li:nth-child(3) {
  margin-top: 40px;
}

.value_area .list li:nth-child(4) {
  text-align: right;
  margin-top: 40px;
}

.value_area.is-scroll .list li:nth-child(1) {
  -webkit-animation: slideUP 0.8s ease-out 0.3s 1 forwards;
          animation: slideUP 0.8s ease-out 0.3s 1 forwards;
}

.value_area.is-scroll .list li:nth-child(2) {
  -webkit-animation: slideUP 0.8s ease-out 0.6s 1 forwards;
          animation: slideUP 0.8s ease-out 0.6s 1 forwards;
}

.value_area.is-scroll .list li:nth-child(3) {
  -webkit-animation: slideUP 0.8s ease-out 0.9s 1 forwards;
          animation: slideUP 0.8s ease-out 0.9s 1 forwards;
}

.value_area.is-scroll .list li:nth-child(4) {
  -webkit-animation: slideUP 0.8s ease-out 1.2s 1 forwards;
          animation: slideUP 0.8s ease-out 1.2s 1 forwards;
}

.company_area {
  padding: 100px 0;
  position: relative;
}

.company_area::before {
  content: "";
  background: url(../../img/bg_company.png) no-repeat right/cover;
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}

.company_area .fl_box {
  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;
}

.company_area .txt_box {
  width: 40%;
  margin-left: 10%;
}

.company_area .base_tl {
  margin-bottom: 50px;
}

.company_area .company_tbl {
  opacity: 0;
}

.company_area .company_tbl tr {
  border-bottom: 1px solid #e1a32b;
}

.company_area .company_tbl tr:last-child {
  border: none;
}

.company_area .company_tbl th {
  color: #333;
  text-align: left;
  font-weight: normal;
}

.company_area .company_tbl th, .company_area .company_tbl td {
  padding: 10px 20px;
  font-size: clamp(14px, 1vw, 21px);
}

.company_area .company_tbl a {
  color: #191919 !important;
}

.company_area .map {
  position: relative;
  width: 57%;
  padding-top: 35.5%;
}

.company_area .map iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.company_area.is-scroll .company_tbl {
  -webkit-animation: fadeIn 0.8s ease-out 0.8s 1 forwards;
          animation: fadeIn 0.8s ease-out 0.8s 1 forwards;
}

.contact_area {
  padding: 100px 0;
  background-color: #fffbf2;
}

.contact_area .base_tl {
  text-align: center;
  margin-bottom: 50px;
}

.contact_area .base_tbl {
  width: 100%;
  opacity: 0;
}

.contact_area .base_tbl th {
  width: 30%;
  vertical-align: baseline;
  color: #000;
  padding: 15px 20px;
  text-align: left;
  font-weight: normal;
  font-size: clamp(20px, 5vw, 24px);
}

.contact_area .base_tbl td {
  width: 66%;
  padding-left: 15px;
}

.contact_area .base_tbl tr {
  padding-bottom: 5%;
  border-bottom: 15px solid #fffbf2;
}

.contact_area .base_tbl input[type="text"],
.contact_area .base_tbl input[type="email"],
.contact_area .base_tbl textarea {
  width: 100%;
  padding: 21px;
  background-color: #fff;
  border: 1px solid #e0a42c;
}

.contact_area .base_tbl textarea {
  height: 200px;
  display: block;
}

.contact_area .base_tbl .required {
  font-size: 18px;
}

.contact_area .contact_btn {
  position: relative;
  background-color: #6dc5d4;
  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;
  text-align: center;
  color: #fff;
  padding: 20px;
  width: 100%;
  max-width: 430px;
  font-size: clamp(40px, 5vw, 42px);
  margin: 50px auto 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.contact_area .contact_btn:hover {
  outline: 2px solid #6dc5d4;
  outline-offset: -2px;
  background-color: #fff;
  color: #6dc5d4;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.contact_area.is-scroll .base_tbl {
  -webkit-animation: fadeIn 0.8s ease-out 0.8s 1 forwards;
          animation: fadeIn 0.8s ease-out 0.8s 1 forwards;
}

/*==============================================================
	CONTACT : 個人情報保護
===============================================================*/
.contact_area .inner_wrap_s .agree_box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20%;
}
.contact_area .inner_wrap_s .agree_box label {
  display: flex;
  align-items: center;
  font-size: 14px;
}
.contact_area .inner_wrap_s .agree_box input {
  margin-right: 10px;
}

/*==============================================================
	footer : フッター
===============================================================*/
footer {
  background-color: #fff;
  padding: 50px 0 0;
  color: #333;
}

footer .ft_logo {
  font-size: clamp(20px, 2vw, 32px);
  margin-bottom: 30px;
}

footer .fl_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 50px;
}

footer .add {
  margin-bottom: 10px;
  font-size: clamp(14px, 1vw, 16px);
}

footer .tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(14px, 1vw, 16px);
  margin-bottom: 10px;
}

footer .tel a {
  color: #333 !important;
}

footer .tel img {
  width: 25px;
  margin-right: 10px;
}

footer .mail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(14px, 1vw, 16px);
}

footer .mail a {
  color: #333 !important;
}

footer .mail img {
  width: 25px;
  margin-right: 10px;
}

footer .ft_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
}

footer .ft_list li:last-child a {
  margin: 0 0 0 15px;
}

footer .ft_list a {
  color: #333;
  margin: 0 15px;
  font-size: clamp(14px, 1vw, 16px);
}

footer .ft_list a:hover {
  color: #e0a42b;
}

footer .copy {
  padding-bottom: 10px;
  text-align: center;
  display: block;
}

#toTop {
  position: fixed;
  bottom: 3%;
  right: 1%;
  z-index: 4;
}

#toTop a {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  color: #999999;
  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;
}

#toTop .scroll {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
}

#toTop .scroll .arrow {
  position: absolute;
  bottom: -90px;
  right: 0;
  overflow: hidden;
  display: block;
  width: 100%;
  height: 90px;
}

#toTop .scroll .arrow::before, #toTop .scroll .arrow::after {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  content: "";
  position: absolute;
}

#toTop .scroll .arrow::before {
  top: 0;
  left: 15px;
  right: 0;
  margin: auto;
  width: 20px;
  height: 90px;
  background: url(../../img/ico_arrow.png) no-repeat;
  background-size: 7px;
  -webkit-animation: scroll 1.5s ease-out infinite;
  animation: scroll 1.5s ease-out infinite;
}

/*==============================================================
	headline : 下階層タイトル
===============================================================*/
#headline {
  background: url(../../img/bg_service.png) no-repeat top/cover;
  padding: 50px 0;
  text-align: center;
  color: #333;
  font-size: clamp(30px, 2vw, 42px);
}

/*==============================================================
	thanks : お問い合わせ後
===============================================================*/
#thanks .thanks_area {
  padding: 80px 0;
}

#thanks .thanks_area .txt {
  text-align: center;
  margin-bottom: 30px;
  font-size: 20px;
  line-height: 2;
}

#thanks .thanks_area .contact_btn {
  background-color: #000;
  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;
  text-align: center;
  color: #fff;
  padding: 20px;
  width: 80%;
  max-width: 430px;
  font-size: clamp(20px, 2vw, 32px);
  margin: 50px auto 0;
}

/*EOF
---------------------------------------------------------------------------------------*/
