@charset "UTF-8";

@font-face{
  font-family: 'mont';
  src: url('../fonts/Montserrat-Bold.ttf') format('truetype');
  src: url('../fonts/Montserrat-Bold.woff') format('woff');
}
@font-face{
  font-family: 'serif-bold';
  src: url('../fonts/NotoSerifJP-Bold.otf') format('opentype');
  src: url('../fonts/NotoSerifJP-Bold.woff') format('woff');
}
@font-face {
  font-family: 'serif-medi';
  src: url('../fonts/NotoSerifJP-Medium.otf') format('opentype');
  src: url('../fonts/NotoSerifJP-Medium.woff') format('woff');
}

:root {
  --gold: #dbba67;
}

/* common setting /////////////////////*/
*{
  box-sizing: border-box;
  font-weight: normal;
  scroll-behavior: smooth;
}
*:focus{
  outline: 0;
}
body{
  line-height: 1.75;
  font-family: '游ゴシック体', 'Yu Gothic', 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro','メイリオ', 'Meiryo', sans-serif;
  font-size: 18px;
  color: #222;
  background: #fff;
}
img{
  display: block;
  max-width: 100%;
  vertical-align: middle;
}
picture{
  display: block;
  width: fit-content;
}
a,a:visited,a:active,a:hover{
  color: #222;
  transition: 0.2s ease;
  text-decoration: none;
}
b{
  font-weight: normal;
}
.wrap{
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.kenten{
  background: top left / 1em .5em repeat-x radial-gradient(circle, var(--gold) .07em, rgba(0, 0, 0, 0) .09em);
  padding-top: .2em;
}
section.heading{
  position: relative;
}
section{
  padding: 110px 0 100px;
}
.white_card{
  background: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
  padding: 60px 50px;
  position: relative;
}
.white_card::before,
.white_card::after{
  content: '';
  display: block;
  width: 30px;
  aspect-ratio: 1;
  background: var(--gold);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  position: absolute;
}
.white_card::before {
  left: 0; top: 0;
}
.white_card::after {
  transform: rotate(180deg);
  right: 0; bottom: 0;
}
.white_card:first-of-type{
  margin: 0 0 60px;
}
.white_card h3{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  column-gap: 1em;
  align-items: center;
  margin: 0 0 50px;
  font-family: 'serif-medi';
  font-size: 1.4rem;
  text-align: center;
}
.white_card h3::before,
.white_card h3::after{
  content: '';
  display: block;
  height: .9em;
  background: url('../image/bg_pattern.png');
}
br.pc_not{ display: none; }
br.sp_not{ display: block; }


/* heading /////////////////////*/
.heading::before{
  content: '';
  display: block;
  position: absolute;
  top: -58px;
  left: 0; right: 0;
  margin: auto;
  max-width: 100%;
  overflow: hidden;

  font-family: 'mont';
  font-size: 115px;
  color: rgba(0, 0, 0, .6);
  text-align: center;
  text-wrap: nowrap;
}
h2{
  margin: 0 0 80px;
  font-family: 'serif-medi';
  font-size: 35px;
  text-align: center;
  line-height: 1.5;
}
h2 .small{
  display: block;
  margin: 0 0 .5em;
  font-size: .71em;
}
h2 .gold_mark{
  display: inline-block;
  padding: 0 .3em;
  margin: 0 0 .5em;
  background: var(--gold);
  font-size: .85em;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, .4);
}
h2 .gold_mark b{
  font-size: 1.5em;
}
h2 b{
  font-family: 'serif-bold';
}


/* header /////////////////////*/
header{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo{
  width: 200px;
}

/* main_visual /////////////////////*/
#main_visual{
  background: url('../image/kv_bg.png') no-repeat center top /cover, #222;
  color: #fff;
  padding: 30px 0 80px;
}
#main_visual h1{
  font-family: 'serif-medi';
  font-size: 24px;
  text-align: center;
}
#main_visual .kv_copy_top{
  display: flex;
  justify-content: center;
  margin: 70px 0 40px;
}
#main_visual .kv_copy_top > *{
  margin: 0 10px 0 0;
}
#main_visual .kv_copy_main{
  font-size: 60px;
  line-height: 1.5;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,.7));
}
#main_visual .kv_copy_main .kenten{
  color: var(--gold);
  font-size: 1.3em;
  font-family: 'serif-bold';
}
#main_visual .kv_copy_main .small{
  font-size: .8em;
}

#main_visual .kv_copy_point{
  display: flex;
  justify-content: center;
}
#main_visual .kv_copy_point img{
  margin: 40px 15px 0;
}

/* CTA /////////////////////*/
#cta{
  padding: 60px 0 0;
  background: url('../image/bg_04.png'), #222;
  position: relative;
}
#cta h2{
  margin: 0 0 20px;
  font-family: 'serif-bold';
  color: #fff;
}
#cta h2 span{
  padding: 0 1.3em;
  margin-right: 16px;
  background: linear-gradient(160deg, #e6cf86 0%, #e6cf86 50%, #dbba67 50%, #dbba67 100%);
  color: #222;
  text-shadow: -1px -1px 0 rgba(255, 255, 255, .7);
}
#cta h2 + small{
  display: block;
  margin: 0 0 20px;
  font-family: 'serif-medi';
  font-size: 30px;
  text-align: center;
  color: #fff;  
}
#cta .cta_action{
  display: flex;
  padding: 40px 50px;
  justify-content: space-between;
  background: url('../image/bg_07.png') ,#fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, .4);
  position: relative;
  bottom: -20px;
  z-index: 5;
}
#cta .cta_action::before{
  content: '';
  display: block;
  width: 150px;
  aspect-ratio: 1 / 1;
  background: url('../image/cta_img01.png')no-repeat left top /contain;
  position: absolute;
  left: -80px; top: -50px;
}
#cta .cta_action::after{
  content: '';
  display: block;
  width: 140px;
  aspect-ratio: 1 / 2;
  background: url('../image/cta_img02.png')no-repeat left top /contain;
  position: absolute;
  right: -50px;
  top: -130px;
}
#cta .cta_action div{
  width: calc(50% - 25px);
  text-align: center;
}
#cta .cta_action div p{
  font-weight: bold;
}
#cta .cta_action div h3{
  margin: 20px 0;
  font-family: 'serif-medi';
  font-size: 22px;
  color: #639a3f;
}
#cta .cta_action div:last-of-type h3{ color: #c2891f; }

/* sec-01 /////////////////////*/
#sec-01::before {
  content: 'OUTSTANDING SERVICE';
  top: -40px;
  color: #fff;
}
#sec-01{
  padding: 130px 0 100px;
  background: url('../image/bg_05.png'),#f7f7f7;
}
#sec-01 h2{
  margin: 0 0 120px;
}
#sec-01 .sec01_cards{
  display: flex;
  justify-content: space-between;
}
#sec-01 .sec01_cards .card{
  width: calc(100% / 3 - 13px);
  background: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
  position: relative;
  z-index: 0;
}
#sec-01 .sec01_cards .card::before,
#sec-01 .sec01_cards .card::after{
  content: '';
  display: block;
  width: 30px;
  aspect-ratio: 1;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  background: var(--gold);
  position: absolute;
  z-index: 1;
}
#sec-01 .sec01_cards .card::before{
  left: 0; top: 0;
}
#sec-01 .sec01_cards .card::after{
  transform: rotate(180deg);
  right: 0; bottom: 0;
}
#sec-01 .sec01_cards .num{
  position: absolute;
  left: 0; top: -60px;
  z-index: -1;
}
#sec-01 .sec01_cards h3{
  margin: 20px 0 0;
  font-size: 1.2em;
  text-align: center;
  font-weight: bold;
}
#sec-01 .sec01_cards h3::after{
  content: '';
  display: block;
  width: 50px;
  margin: 30px auto;
  border: 1px solid #222;
}
#sec-01 .sec01_cards p{
  padding: 0 35px 40px;
}

/* sec-02 /////////////////////*/
#sec-02::before {
  content: 'RIGOROUS EDUCATION';
}
#sec-02::after{
  content: '';
  display: block;
  width: 100px;
  aspect-ratio: 2 / 1;
  background: url('../image/bg_05.png'), #f7f7f7;
  position: absolute;
  top: 0; left: calc(50% - 50px);
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
}
#sec-02{
  padding: 110px 0 30px;
  background: url('../image/bg_06.png');
}
#sec-02 h2{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  color: #fff;
  margin: 0 0 90px;
}
#sec-02 h2 .small{
  width: 100%;
}
#sec-02 h2 .gold_mark{
  padding: 0;
  border-bottom: 1px solid var(--gold);
  background: transparent;
  font-size: 1em;
  color: var(--gold);
  text-shadow: none;
}
#sec-02 h2 .small+.gold_mark::after {
  content: "・";
  color: var(--gold);
}
#sec-02 h2 b{
  width: 100%;
}
#sec-02 .sec02_program{
  display: grid;
  grid-template-columns: 1fr 450px;
  align-items: start;
  row-gap: 10px;
  padding: 60px 50px;
  margin-bottom: 80px;
  background: url('../image/sec02_bg01.png') no-repeat left top /contain, rgba(0, 0, 0, .5);
  color: #fff;
  position: relative;
}
#sec-02 .sec02_program:nth-of-type(2){
  background: url('../image/sec02_bg02.png') no-repeat left top /contain, rgba(0, 0, 0, .5);
}
#sec-02 .sec02_program:nth-of-type(3){
  background: url('../image/sec02_bg03.png') no-repeat left top /contain, rgba(0, 0, 0, .5);
}
#sec-02 .sec02_program::before{
  content: '';
  display: block;
  width: 392px; height: 158px;
  background: url('../image/sec02_text01.png') no-repeat right top /contain;
  position: absolute;
  right: -20px; top: -14px;
}
#sec-02 .sec02_program:nth-of-type(2):before{
  background: url('../image/sec02_text02.png') no-repeat right top /contain;
}
#sec-02 .sec02_program:nth-of-type(3):before{
  background: url('../image/sec02_text03.png') no-repeat right top /contain;
}
#sec-02 .sec02_program::after{
  content: '';
  display: block;
  width: 60px;
  aspect-ratio: 1;
  background: var(--gold);
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  position: absolute;
  left: -10px;
  bottom: -10px;
}
#sec-02 .sec02_program figure{
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}
#sec-02 .sec02_program h3{
  font-family: 'serif-medi';
  font-size: 25px;
  padding-top: 110px;
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}
#sec-02 .sec02_program p{
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

/* sec-03 /////////////////////*/
#sec-03::before {
  content: 'HIGH SATISFACTION';
  color: #fff;
}
#sec-03 {
  background: #f7f7f7;
}
#sec-03 h2{
  margin: 0 0 60px;
}
#sec-03 .sec03_content{
  max-width: 800px;
  margin: 0 auto;
  font-family: 'serif-medi';
  text-align: center;
}
#sec-03 .sec03_content p{
  margin: 30px 0;
}
#sec-03 .sec03_content picture:last-of-type{
  display: block;
  margin: 0 0 50px;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,.2));
}
#sec-03 .sec03_content .bottom{
  font-size: 35px;
}
#sec-03 .sec03_content .bottom span{
  color: #c2891f;
}

/* sec-04 /////////////////////*/
#sec-04::before {
  content: 'WORKING STYLE';
  color: #fff;
  top: -40px;
}
#sec-04 {
  background: #f7f7f7;
}
#sec-04 h2 .but{
  width: fit-content;
  margin: 0 auto;
  text-align: left;
  position: relative;
}
#sec-04 h2 .but span{
  color: #c2891f;
}
#sec-04 h2 .but .balloon{
  display: grid;
  place-items: center;
  width: 100px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .4);
  position: absolute;
  left: -130px; top: 0;
}
#sec-04 h2 .but .balloon::after{
  content: url('../image/balloon_tail.png');
  display: block;
  transform: scale(.5) rotate(-45deg);
  position: absolute;
  right: -12px; bottom: -14px;
}
#sec-04 .prof{
  display: grid;
  grid-template-columns: 400px 1fr;
  align-items: center;
  gap: 0 50px;
  padding: 0 50px;
}
#sec-04 .prof img{
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}
#sec-04 .prof h4{
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  border-left: 2px solid var(--gold);
  padding: 0 0 0 1rem;
  font-family: 'serif-medi';
  font-size: 1.5rem;
}
#sec-04 .prof h4 small{
  font-family: 'mont';
  font-size: 1.1rem;
  color: var(--gold);
}
#sec-04 .prof h4 span{
  font-size: .8em;
}
#sec-04 .prof dl{
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  display: flex;
  flex-wrap: wrap;
}
#sec-04 .prof dl dt{
  width: 5em;
  margin: 0 .5em 0 0;
  text-align: right;
}
#sec-04 .prof dl dd{
  width: calc(100% - 5.5em);
}
#sec-04 .pay{
  margin: 40px auto;
}
#sec-04 .bottom{
  font-family: 'serif-medi';
  font-size: 1.4rem;
  text-align: center;
  margin: 40px 0 70px;
}
#sec-04 .bottom span{
  color: #c2891f;
}
#sec-04 .pay + .bottom span{
  font-family: 'mont';
  font-size: 1.6rem;
}
#sec-04 .timeline{
  margin: 0 auto;
}
#sec-04 .timeline + .bottom{
  margin: 40px 0 0;
}
#sec-04 .worker{
  margin: 0 0 70px;
  display: grid;
  grid-template-columns: 350px 1fr;
  place-items: start center;
  gap: 30px 50px;
}
#sec-04 .worker h4{
  width: 100%;
  padding: 5px 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  font-family: 'serif-medi';
  font-size: 1.1rem;
  text-align: center;
}
#sec-04 .worker h4:first-of-type{
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}
#sec-04 .worker .age{
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}
#sec-04 .worker h4:last-of-type{
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}
#sec-04 .worker .graph{
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}
#sec-04 .ss{
  width: fit-content;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
#sec-04 .ss img{
  margin: 0 50px 0 0;
}
#sec-04 .ss p{
  text-align: left;
  margin: 0;
}

/* sec-05 /////////////////////*/
#sec-05::before{
  content: 'GREETING';
  top: -40px;
  color: #fff;
}
#sec-05{
  padding: 110px 0 60px;
  background: url('../image/bg_01.png'),#f7f7f7;
}
#sec-05 .ceo{
  display: grid;
  grid-template-columns: 350px 1fr;
  place-items: start;
  gap: 1.5em 50px;
}
#sec-05 .ceo .photo{
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}
#sec-05 .ceo p:first-of-type{
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}
#sec-05 .ceo ul{
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  display: flex;
  flex-wrap: wrap;
}
#sec-05 .ceo ul li{
  width: 50%;
  list-style: inside circle;
}
#sec-05 .ceo p:last-of-type{
  grid-column: 2 / 3;
  grid-row: 3 / 4;
}
#sec-05 .ceo small{
  grid-column: 2 / 3;
  grid-row: 4 / 5;
  font-size: 1rem;
  font-family: 'serif-medi';
}
#sec-05 .white_card{
  margin: 80px 0 0;
  padding: 50px 100px;
}
#sec-05 .white_card h3{
  display: block;
  margin: 0 0 40px;
  padding: 0 0 20px;
  border-bottom: 1px solid #999;
}
#sec-05 .white_card h3 img{
  margin: 0 auto;
}
#sec-05 .white_card h3::before,
#sec-05 .white_card h3::after{
  content: none;
}
#sec-05 .white_card dl{
  width: 83%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
#sec-05 .white_card dl dt{
  width: 5em;
  margin-right: .5em;
}
#sec-05 .white_card dl dd{
  width: calc(100% - 6.5em);
}
#sec-05 .client{
  font-family: 'serif-medi';
}
#sec-05 .client h3{
  margin: 100px 0 50px;
  font-size: 35px;
  text-align: center;
}
#sec-05 .client ul{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,.2));
}
#sec-05 .client ul li{
  width: 310px;
  height: 60px;
  padding: 13px 0 0 40px;
  margin: 0 0 30px;
  position: relative;
  z-index: 1;
}
#sec-05 .client ul li::before{
  content: '';
  width: 260px;
  height: 100%;
  background: #fff;
  position: absolute;
  left: 0; top: 0;
  z-index: -1;
}
#sec-05 .client ul li::after{
  content: '';
  display: block;
  width: 60px;
  aspect-ratio: 1 / 1;
  background: url('../image/sec05_tail.png') no-repeat right top /contain;
  position: absolute;
  right: 0; top: 0;
  z-index: -1;
}
#sec-05 .client ul li span{
  font-size: .8em;
}

/* sec-06 /////////////////////*/
#sec-06::before {
  content: 'JOB DESCRIPTION';
  color: #fff;
}
#sec-06 {
  background: #f7f7f7;
}
#sec-06 .white_card{
  margin: 0;
}
#sec-06 .white_card h3{
  margin: 0 0 20px;
}
#sec-06 dl{
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  flex-wrap: wrap;
}
#sec-06 dl dt,
#sec-06 dl dd{
  border-bottom: 1px solid #ddd;
}
#sec-06 dl dt{
  width: 200px;
  padding: 30px 50px 1rem 0;
  text-align: right;
}
#sec-06 dl dd{
  width: calc(100% - 200px);
  padding: 30px 0 1rem;
}
#sec-06 dl dd ul li{
  list-style: inside circle;
}

/* sec-07_form /////////////////////*/
#sec-07::before{
  content: 'INQUIRY';
}
#sec-07{
  background: #444;
  color: #fff;
}
#sec-07 .wrap{
  max-width: 800px;
}
#sec-07 .must::before{
  content: '必 須';
  display: inline-block;
  padding: 0 .8em;
  margin-right: 1em;
  justify-content: center;
  font-size: .7em;
  border: 1px solid #fff;
}
#sec-07 h2 + small{
  display: block;
  margin: 0 0 20px;
  font-size: .8em;
  text-align: center;
}
#sec-07 .sec07_form_list{
  display: flex;
  align-items: stretch;
  margin-bottom: 30px;
}
#sec-07 .sec07_form_list label{
  width: 250px;
  padding: 10px 0 10px 15px;
  flex-shrink: 0;
  background: #222;
}
#sec-07 .sec07_form_list input,
#sec-07 .sec07_form_list textarea{
  width: 100%;
  padding: 10px 15px;
  background: #696969;
  transition: 0.15s ease;
}
#sec-07 .sec07_form_list input:focus,
#sec-07 .sec07_form_list textarea:focus {
  box-shadow:  0 0 10px #fff, 0 0 3px #222;
  transition: 0.15s ease;
}
#sec-07 .sec07_form_list input::placeholder,
#sec-07 .sec07_form_list textarea::placeholder{
  color: rgba(255, 255, 255, .3);
}
#sec-07 .sec07_form_list textarea{
  resize: none;
  height: 200px;
}
#sec-07 .sec07_form_pp{
  padding: 20px 25px 40px;
  background: #696969;
}
#sec-07 .sec07_form_pp p{
  width: 95%;
  height: 8.5em;
  margin: 0 auto;
  font-size: 14px;
  overflow-y: scroll;
  scrollbar-width: thin;
}
#sec-07  .sec07_check{
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid #fff;
  text-align: center;
}
#sec-07 .sec07_check input[type="checkbox"]{
  appearance: none;
  width: 40px;
  aspect-ratio: 1 / 1;
  padding: 6px 12px;
  border: 1px solid #fff;
}
#sec-07 .sec07_check input[type="checkbox"]:checked{
  background: rgba(0, 0, 0, .5);
}
#sec-07 .sec07_check .check{
  font-weight: bold;
  margin-left: 20px;
}
#sec-07 .sec07_check input[type="checkbox"]::before{
  display: block;
  content: "";
  width: 14px;
  aspect-ratio: 1.4 / 2;
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
  transform: rotate(45deg);
  opacity: 0;
  transition: 0.2s ease;
}
#sec-07 .sec07_check input[type="checkbox"]:checked::before{
  opacity: 1;
  transition: 0.2s ease;
}
#sec-07 button{
  display: block;
  margin: 50px auto 0;
}

/* sec-08 /////////////////////*/
#sec-08::before{
  content: 'COMPANY';
}
#sec-08{
  background: url('../image/bg_pattern2.png'),
  url('../image/sec08_bg.png') no-repeat center top /cover;
  color: #fff;
}
#sec-08 .wrap{
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
}
#sec-08 h2{
  width: 100%;
  margin: 0 0 50px;
}
#sec-08 ul{
  width: calc(50% - 25px);
}
#sec-08 ul li{
  padding: 1.5rem 1rem 1rem;
  border-bottom: 1px solid #fff;
}
#sec-08 ul li h4{
  font-weight: bold;
}
#sec-08 ul li small{
  display: inline-block;
  margin-right: 1rem;
  padding-left: 3em;
  font-size: 1rem;
  position: relative;
}
#sec-08 ul li small::before{
  content: '';
  display: inline-block;
  margin-right: 1em;
  padding: 0 .8em;
  background: #fff;
  color: #222;
  font-weight: bold;
  font-size: 0.7rem;
  line-height: 1.3;
  position: absolute;
  left: 0; top: 6px;
}
#sec-08 ul li .tel::before{
  content: 'TEL';
}
#sec-08 ul li .fax::before{
  content: 'FAX';
}

/* footer /////////////////////*/
footer{
  background: #222;
  color: #fff;
  padding: 30px 0;
}
footer .wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .logo{
  width: 200px;
}
footer small{
  display: block;
}

/* thanks /////////////////////*/
header.thanks{
  width: 100%;
  padding: 20px 0;
  background: linear-gradient(rgba(0,0,0,.4), transparent);
  position: absolute;
  left: 0; top: 0;
}
header.thanks img{
  width: 200px;
  margin: 0 auto;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .6));
}
#thanks{
  padding: 200px 0 100px;
  background: url(../image/bg_05.png),#f7f7f7;
  text-align: center;
}
#thanks img{
  width: 40%;
  margin: 0 auto;
}
#thanks h1{
  margin: 0 0 2rem;
  font-family: 'serif-medi';
  font-size: 2rem;
}
#thanks a{
  display: block;
  max-width: 500px;
  margin: 2rem auto;
  padding: 1rem;
  border-radius: 3px;
  background: var(--gold);
  font-family: 'serif-medi';
}
#thanks .tel img{
  width: 300px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .4));
}
#thanks .return{
  margin: 5rem auto 0;
  background: transparent;
  border: 1px solid #222;
}