:root {
  --text: #333;
  --blue: #039;
  --bg: #f0f7fa;
  --red: #c00;
  --g1: linear-gradient(90deg, #f45, #c00);
  --g1-button: linear-gradient(90deg, #f09, #f45, #c00);
  --g2: linear-gradient(90deg, #099, #03c);
  --g2-button: linear-gradient(90deg, #0ff, #099, #03c);
  --g3: linear-gradient(90deg, #fba3d3, #04bcfc);
  --drop-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  --drop-shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.25);
  --rounded-corners: 20px;
  --border-height: 2px;

  --max-width: 1280px;
  --font-size: 14px;
  --heading-size: 24px;
  --side-padding: 15px;
  --vertical-padding: 50px;
}
@media (min-width: 560px) {
  :root {
    --drop-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    --drop-shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.25);
    --rounded-corners: 25px;
    --border-height: 3px;
    --font-size: 16px;
    --heading-size: 36px;
    --side-padding: 30px;
    --vertical-padding: 75px;
  }
}
@media (min-width: 960px) {
  :root {
    --drop-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    --drop-shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.25);
    --rounded-corners: 30px;
    --border-height: 4px;
    --font-size: 18px;
    --heading-size: 48px;
    --side-padding: 50px;
    --vertical-padding: 100px;
  }
}

/* Layout */
#main[data-lp="takuhaibin"] {
  width: 100%;
  max-width: unset;
  background: var(--bg);
  font-feature-settings: "palt";
  text-align: center;
  padding: 0;
  margin: 0;
}
.page-width {
  width: 100%;
  max-width: var(--max-width);
  padding: 0 var(--side-padding);
  margin: 0 auto;
}
section[class*="section-"] {
  position: relative;
  padding: var(--vertical-padding) 0;
}
section[class*="section-"]::after {
  content: "";
  position: absolute;
  right: var(--side-padding);
  bottom: -2px;
  left: var(--side-padding);
  display: block;
  width: calc(100% - (var(--side-padding) * 2));
  max-width: calc(var(--max-width) - 100px);
  height: var(--border-height);
  background: var(--g3);
  margin: auto;
  border-radius: calc(var(--border-height) / 2);
}
section[class*="section-"].separator-none::after {
  content: none;
}
.rounded-corners {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(1rem);
  box-shadow: var(--drop-shadow), 0 0 0 1px #fff inset;
  border-radius: var(--rounded-corners);
}

/* Grid */
[class*="grid-"] {
  display: grid;
  gap: 15px;
}
.box-grid {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  gap: 15px;
}
@media (min-width: 560px) {
  [class*="grid-"] {
    gap: 30px;
  }
  .box-grid {
    grid-template-columns: 150px 1fr;
    gap: 20px;
  }
}
@media (min-width: 750px) {
  .grid-2,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3,
  .grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1280px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .box-grid {
    grid-template-columns: 200px 1fr;
    gap: 30px;
  }
}

/* Box */
.takuhai-bin .box {
  padding: 15px;
}
.takuhai-bin .image-box {
  margin: 0;
}
.takuhai-bin .image-box .image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.takuhai-bin .image-box-list {
  grid-template-columns: repeat(2, 1fr);
}
.takuhai-bin .image-box-list .image-box {
  border-radius: var(--rounded-corners) var(--rounded-corners) 0 0;
  overflow: hidden;
  margin: 0;
}
.takuhai-bin .image-box-list .box {
  padding: 15px 10px;
}
.takuhai-bin .image-box-list h3 {
  font-size: 14px;
  margin-bottom: 5px !important;
}
.takuhai-bin .image-box-list p {
  font-size: 12px;
}
.takuhai-bin .message-box .message {
  font-size: 16px;
  font-weight: 700;
}
.takuhai-bin .message-box .message em {
  font-size: 1.5em;
  font-style: normal;
  color: var(--red);
}
.takuhai-bin .gradation-box {
  position: relative;
  padding: 20px;
  border: none;
}
.takuhai-bin .gradation-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--g3);
  border-radius: var(--rounded-corners);
  z-index: -1;
}
.takuhai-bin .gradation-box::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  bottom: 3px;
  left: 3px;
  background: #fff;
  border-radius: calc(var(--rounded-corners) - 3px);
  z-index: -1;
}
@media (min-width: 750px) {
  .takuhai-bin .image-box-list .box {
    padding: 20px 20px 30px;
  }
  .takuhai-bin .image-box-list h3 {
    font-size: 20px;
  }
  .takuhai-bin .image-box-list p {
    font-size: 16px;
  }
  .takuhai-bin .message-box .message {
    font-size: 20px;
  }
  .takuhai-bin .message-box .message br {
    display: none;
  }
  .takuhai-bin .gradation-box {
    padding: 30px 40px;
  }
}
@media (min-width: 1280px) {
  .takuhai-bin .image-box-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Button */
.takuhai-bin .button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  width: 100%;
  max-width: 400px;
  height: 60px;
  font-size: 1.2em;
  font-weight: 700;
  color: var(--blue);
  background: #fff;
  margin: auto;
  border-radius: 30px;
  box-shadow: var(--drop-shadow);
}
.takuhai-bin .button[target="_blank"]::after {
  content: none;
}
.takuhai-bin .button > * {
  z-index: 1;
}
.takuhai-bin .button-primary {
  background: var(--g1-button) right top / 200% 100% no-repeat;
  color: #fff !important;
}
.takuhai-bin .button-secondary {
  background: var(--g2-button) right top / 200% 100% no-repeat;
  color: #fff !important;
}
.takuhai-bin .button .fa {
  font-size: 1.5em;
}
@media (min-width: 750px) {
  .takuhai-bin .button {
    height: 80px;
    border-radius: 40px;
  }

  .takuhai-bin .button:not(.button-primary):not(.button-secondary) {
    background: var(--g2-button) right top / 200% 100% no-repeat;
  }
  .takuhai-bin .button:not(.button-primary):not(.button-secondary)::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #fff;
    border-radius: 40px;
  }
  .takuhai-bin
    .button:not(.button-primary):not(.button-secondary):hover::before {
    top: 2px;
    right: 2px;
    bottom: 2px;
    left: 2px;
  }
  .takuhai-bin .button:hover {
    background-position: left top;
    transform: translateY(-5px);
    box-shadow: var(--drop-shadow-hover);
  }
}

/* Text */
.takuhai-bin h2,
.takuhai-bin h3,
.takuhai-bin h4 {
  line-height: 1.4 !important;
  margin: 0 !important;
}
.takuhai-bin p {
  margin: 0;
}
.takuhai-bin .section-heading {
  position: relative;
  font-size: var(--heading-size);
  line-height: 1.8 !important;
}
.takuhai-bin .section-heading::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: calc(50% - 1em);
  width: 2em;
  display: block;
  width: 2em;
  height: var(--border-height);
  background: var(--g1);
  border-radius: calc(var(--border-height) / 2);
}
.takuhai-bin .section-read {
  margin: 1.5em 0 2.5em !important;
}
.takuhai-bin .blue-heading {
  color: var(--blue);
}
@media (min-width: 750px) {
  .takuhai-bin .section-read {
    font-size: 20px;
    margin-bottom: 3em !important;
  }
}

/* #First */
#First .first-view-main {
  height: 100svh;
  background: url(../img/tt/fv-sp.jpg) right bottom / 100% auto no-repeat;
  padding: 100px 0 30px;
}
#First .first-view-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 100%;
}
#First .catchcopy {
  display: grid;
  overflow: hidden;
}
#First .copy-sub {
  position: relative;
  display: grid;
  place-content: center;
  height: 2em;
  font-size: 18px;
  line-height: 1;
  margin-bottom: 10px !important;
  mix-blend-mode: multiply;
}
#First .copy-sub::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--g2);
  border-radius: 18px;
  z-index: 1;
}
#First .copy-sub::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  bottom: 2px;
  left: 2px;
  background: #fff;
  border-radius: 16px;
  z-index: 2;
}
#First .copy-sub span {
  position: relative;
  top: 0.03em;
  background: var(--g2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: 3;
}
#First .copy-main {
  display: grid;
  font-size: 40px;
}
#First .copy-main span {
  white-space: nowrap;
}
#First .copy-main span:last-child {
  display: inline-flex;
  justify-content: center;
  align-items: flex-end;
}
#First .copy-main .zero {
  display: inline-block;
  width: 116px;
  height: 140px;
  background: url(../img/tt/s1-0.png) 0 0 / contain no-repeat;
  color: transparent;
  filter: drop-shadow(var(--drop-shadow));
}
#First .copy-read {
  font-size: 16px;
  margin-top: 1em;
  text-shadow: 0 0 5px #fff;
}
#First .buttons {
  display: grid;
  gap: 15px;
}
#First .icon-text {
  background: linear-gradient(to right bottom, #fba3d3, #04bcfc);
  padding: 30px 0;
}
#First .icon-text .box-list {
  grid-template-columns: repeat(2, 1fr);
}
#First .icon-text .box-list .list-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 10px 5px;
}
#First .icon-text .box-list .list-item .image {
  max-width: 90px;
  height: auto;
}
#First .icon-text .box-list .list-item p {
  font-size: 12px;
  margin: 0;
}
#First .icon-text .box-list .list-item p small {
  display: block;
}
@media (min-width: 560px) {
  #First {
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: 100%;
  }
  #First .first-view-main {
    height: auto;
    background: url(../img/tt/fv-tb.jpg) right center / 100% auto no-repeat;
  }
  #First .first-view-grid {
    justify-content: center;
    gap: 30px;
  }
  #First .copy-sub {
    width: 460px;
    height: 50px;
    font-size: 24px;
    margin: 0 auto 0.5em !important;
  }
  #First .copy-sub::before {
    border-radius: 25px;
  }
  #First .copy-sub::after {
    border-radius: 23px;
  }
  #First .copy-main {
    font-size: 55px;
  }
  #First .copy-main .zero {
    width: 158px;
    height: 190px;
    margin: 0 5px;
  }
  #First .copy-read {
    font-size: 20px;
  }
  #First .buttons {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
  }
}
@media (min-width: 750px) {
  #First .first-view-main {
    background-position: right bottom;
    padding: 140px 0 40px;
  }
  #First .icon-text .box-list .list-item {
    gap: 10px;
    height: 100%;
    padding: 20px 30px;
  }
  #First .icon-text .box-list .list-item .image {
    max-width: 120px;
  }
  #First .icon-text .box-list .list-item h4 {
    font-size: 18px;
  }
  #First .icon-text .box-list .list-item p {
    font-size: 14px;
  }
  #First .icon-text .box-list .list-item p small {
    display: inline;
  }
}
@media (min-width: 960px) {
  #First {
    min-height: 100svh;
    grid-template-rows: 1fr auto;
  }
}
@media (min-width: 1280px) {
  #First {
    grid-template-rows: calc(100svh - 270px) 270px;
  }
  #First .first-view-main {
    height: calc(100svh - 270px);
    background: url(../img/tt/fv-pc.jpg) right bottom / auto 100% no-repeat;
  }
  #First .catchcopy {
    position: relative;
    max-width: 820px;
  }
  #First .copy-sub {
    position: absolute;
    top: 20px;
    left: 0;
    width: 566px;
    height: 60px;
    font-size: 32px;
  }
  #First .copy-sub::before {
    border-radius: 30px;
  }
  #First .copy-sub::after {
    border-radius: 27px;
  }
  #First .copy-main {
    display: flex;
    align-items: flex-end;
    font-size: 67px;
  }

  #First .copy-read {
    font-size: 24px;
    text-align: left;
    margin-top: 0;
  }
  #First .copy-read br {
    display: none;
  }
  #First .buttons {
    margin: 0;
  }
  #First .icon-text .box-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* #Recommend */
#Recommend .box-grid {
  padding: 15px;
}
#Recommend .box-grid h3 {
  font-size: 16px;
  text-align: left !important;
}
#Recommend .box-grid .box {
  padding: 0;
}
#Recommend .box-grid p {
  font-size: 12px;
  text-align: left;
  margin: 5px 0 0;
}
@media (min-width: 750px) {
  #Recommend .box-grid {
    padding: 40px;
  }
  #Recommend .box-grid h3 {
    font-size: 24px;
  }
  #Recommend .box-grid p {
    font-size: 16px;
    margin-top: 15px;
  }
}
@media (max-width: 959px) {
  #Recommend .box-list {
    grid-template-columns: 1fr;
  }
}

/* #Flow */
#Flow .step-list {
  position: relative;
  display: grid;
  gap: 20px;
}
#Flow .step-list::before {
  content: "";
  position: absolute;
  top: 50px;
  left: calc(50px - 2px);
  bottom: 50px;
  width: 4px;
  background: var(--blue);
  opacity: 0.1;
  z-index: 1;
}
#Flow .step-item {
  gap: 25px;
}
#Flow .step-image {
  position: relative;
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--drop-shadow);
  z-index: 2;
}
#Flow .step-balloon {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  text-align: left;
  padding: 20px;
}
#Flow .step-balloon::before {
  content: "STEP " attr(data-step);
  display: inline-block;
  font-weight: 700;
  line-height: 1;
  background: var(--g2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#Flow .step-balloon::after {
  content: "";
  position: absolute;
  top: calc(50% - 15px);
  left: -15px;
  display: block;
  width: 15px;
  height: 30px;
  background: #fff;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}
#Flow .step-balloon > * {
  text-align: left !important;
}
#Flow .step-balloon h3 {
  font-size: 16px;
}
#Flow .step-balloon p {
  font-size: 12px;
}
@media (min-width: 750px) {
  #Flow .step-list {
    gap: 50px;
    max-width: 850px;
    margin: 0 auto;
  }
  #Flow .step-list::before {
    top: 75px;
    left: calc(75px - 3px);
    bottom: 75px;
    width: 6px;
  }
  #Flow .step-item {
    gap: 40px;
  }
  #Flow .step-balloon {
    gap: 10px;
    padding: 40px;
  }
  #Flow .step-balloon::before {
    font-size: 30px;
  }
  #Flow .step-balloon::after {
    top: calc(50% - 25px);
    left: -25px;
    width: 25px;
    height: 50px;
  }
  #Flow .step-balloon h3 {
    font-size: 24px;
  }
  #Flow .step-balloon h3 br {
    display: none;
  }
  #Flow .step-balloon p {
    font-size: 16px;
  }
}
@media (min-width: 1280px) {
  #Flow .step-list::before {
    top: 100px;
    left: calc(100px - 3px);
    bottom: 100px;
  }
}

/* #Price */
#Price .price-box {
  display: grid;
  gap: 20px;
  padding: 30px;
}
#Price .price-box h3 {
  font-size: 14px;
}
#Price .price-box .price {
  font-size: 22px;
  font-weight: 700;
  color: var(--blue);
}
@media (min-width: 750px) {
  #Price .price-box {
    gap: 40px;
    padding: 60px;
  }
  #Price .price-box h3 {
    font-size: 20px;
  }
  #Price .price-box .price {
    font-size: 30px;
  }
}

/* #Brands */
#Brands {
  background: url(../img/tt/brand-bg.jpg) center center / cover no-repeat
    #4c5c74;
  color: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25) inset;
}
#Brands .brand-list .box {
  padding: 10px;
}
#Brands .brand-list h3 {
  font-size: 16px;
  line-height: 1.2 !important;
}
#Brands .brand-list p {
  font-size: 10px;
  line-height: 1.2;
}
#Brands .message-box {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(1rem);
  padding: 20px;
  margin-top: 30px;
  border-radius: var(--rounded-corners);
}
#Brands .message-box .message {
  font-size: 16px;
  font-weight: 700;
}
#Brands .brand-box {
  font-weight: 700;
  color: var(--text);
  padding: 30px;
}
#Brands .brand-name-list {
  position: relative;
  display: grid;
  gap: 5px;
  list-style: none;
  text-align: left;
  padding: 0;
}
/*
#Brands .brand-name-list::after {
	content: "など";
	position: absolute;
	right: 0;
	bottom: 0;
	font-weight: normal;
	text-align: right;
}
*/
#Brands .brand-name-list li {
  margin: 0;
}
#Brands .brand-name-list li::before {
  content: "\f02b";
  font-family: "Font Awesome 5 Free";
  margin: 0;
  opacity: 0.5;
}
#Brands .brand-other {
	text-align: right;
	font-size: .8em;
	font-weight: normal;
}
@media (min-width: 560px) {
  #Brands .brand-box {
    padding: 30px 50px;
  }
  #Brands .brand-name-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
@media (max-width: 749px) {
  #Brands .brand-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 750px) {
  #Brands .message-box .message {
    font-size: 22px;
  }
  #Brands .brand-list h3 {
    font-size: 18px;
  }
  #Brands .brand-list p {
    font-size: 12px;
  }
}
@media (min-width: 960px) {
  #Brands .brand-box {
    padding: 30px 60px;
  }
  #Brands .brand-name-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}

/* #Others */
#Others .service-list {
  margin-top: 40px;
}
#Others .service-list h3 {
  font-size: 18px;
}
#Others .check-list {
  text-align: left;
  margin: 0 auto;
}
#Others .check-list li::before {
  color: var(--blue);
  margin-right: 0.25em;
}
@media (max-width: 749px) {
  #Others .service-list {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 750px) {
  #Others .service-list {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 60px;
  }
  #Others .service-list h3 {
    font-size: 24px;
    margin-bottom: 0.5em !important;
  }
  #Others .check-list {
    font-size: 18px;
  }
}

/* #ForBiz */
#ForBiz .forbiz-box {
  display: grid;
  gap: 20px;
  padding: 30px;
}

#ForBiz .forbiz-list h3 {
  font-size: 14px;
  margin-top: 5px;
}
@media (max-width: 749px) {
  #ForBiz .forbiz-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 750px) {
  #ForBiz .forbiz-box {
    gap: 40px;
    padding: 60px;
  }
  #ForBiz .forbiz-list h3 {
    font-size: 20px;
  }
  #ForBiz .forbiz-list .image-box {
    margin-bottom: 10px;
  }
}

/* #Payments */
#Payments .payments-box {
  display: grid;
  gap: 20px;
  padding: 30px;
}
#Payments h3 {
  font-size: 14px;
  color: var(--blue);
  margin-bottom: 0.5em !important;
}
@media (min-width: 750px) {
  #Payments .payments-box {
    gap: 40px;
    padding: 60px;
  }
  #Payments h3 {
    font-size: 20px;
  }
}

/* #Offer */
#Offer {
  position: relative;
  padding-bottom: 100px;
  overflow: hidden;
}
#Offer .flex-box:last-child {
  margin-bottom: 0;
}
#Offer .area-list {
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
#Offer .area-box {
  position: relative;
  display: grid;
  gap: 10px;
  flex: 1;
  padding: 30px;
}
#Offer .area-tag {
  content: attr(data-area);
  position: absolute;
  top: -10px;
  right: -10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 36px;
  font-weight: 700;
  background: #fff;
  padding: 0 20px;
  border-radius: 18px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
#Offer .area-tag span {
  background: var(--g2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#Offer .area-heading {
  font-size: 14px;
  text-align: left;
}
#Offer .target-area {
  text-align: left;
  margin: 0;
}
#Offer .target-area > * {
  margin: 0;
}
#Offer .target-area dt {
  font-size: 14px;
}
#Offer .target-area dd {
  font-size: 12px;
}
#Offer .phone-heading {
  font-weight: 700;
  color: var(--blue);
}
#Offer .phone-box {
  background: var(--g2);
  margin: 0 -30px;
}
#Offer .phone-number {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  text-decoration: none;
}
#Offer .reception {
  font-size: 12px;
}
#Offer .caution-box {
  color: var(--red);
  font-weight: 700;
}
#Offer .button-box {
  display: grid;
  gap: 15px;
}
#Offer .timezone-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 1em;
}
#Offer .timezone {
  display: grid;
  gap: 5px;
  margin: 0;
}
#Offer .timezone .image {
  max-width: 70px;
  margin: 0 auto;
}
#Offer .timezone figcaption {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}
#Offer::after {
  content: "";
  position: absolute;
  left: -100%;
  bottom: 0;
  display: block;
  width: 90px;
  height: 50px;
  background: url(../img/tt/s12-1.png) 0 0 / 100% 100% no-repeat;
  animation: 5s ease-in-out 1s infinite driving;
}
@media (min-width: 750px) {
  #Offer .sub-heading {
    font-size: 30px;
    margin-bottom: 40px !important;
  }
  #Offer .sub-heading br {
    display: none;
  }
  #Offer .area-list {
    flex-direction: row;
    gap: 30px;
    margin-bottom: 80px;
  }
  #Offer .area-box,
  #Offer .gradation-box {
    width: 100%;
    max-width: 600px;
    gap: 20px;
    padding: 40px 60px 60px;
    margin: 0 auto;
  }
  #Offer .area-tag {
    top: -15px;
    right: -15px;
    font-size: 20px;
    height: 60px;
    padding: 0 30px;
    border-radius: 30px;
  }
  #Offer .target-area dt {
    font-size: 18px;
  }
  #Offer .target-area dd {
    font-size: 16px;
  }
  #Offer .phone-heading {
    font-size: 18px;
  }
  #Offer .phone-box {
    margin: -10px -60px 0;
  }
  #Offer .phone-number {
    font-size: 36px;
  }
  #Offer .reception {
    font-size: 16px;
  }
  #Offer .blue-heading {
    font-size: 20px;
    margin-bottom: 10px !important;
  }
  #Offer .caution-box {
    font-size: 20px;
  }
  #Offer .button-box {
    gap: 30px;
  }
  #Offer .timezone-list {
    margin-top: 2em;
  }
  #Offer .timezone .image {
    max-width: 110px;
  }
  #Offer .timezone figcaption {
    font-size: 18px;
  }
  #Offer::after {
    animation-duration: 10s;
  }
}
@media (min-width: 960px) {
  #Offer .phone-number {
    font-size: 48px;
    pointer-events: none;
  }
}

@keyframes driving {
  from {
    left: -100%;
  }
  to {
    left: 150vw;
  }
}

/* #Last */
#Last {
  position: relative;
  background: url(../img/tt/s12-2.png) center bottom / 100% auto no-repeat,
    linear-gradient(#099, #03c);
  color: #fff;
  padding-bottom: 100vw;
}
#Last .section-read {
  font-weight: 700;
}
#Last .buttons {
  display: grid;
  gap: 20px;
  margin-bottom: 30px;
}
#Last .message-box {
  font-size: 18px;
  font-weight: 700;
}
@media (min-width: 750px) {
  #Last {
    background: url(../img/tt/s12-2.png) right -180px bottom / auto 80% no-repeat,
      var(--g2);
    padding: 100px 0 100px;
  }

  #Last .message-box {
    font-size: 24px;
  }
}
@media (min-width: 960px) {
  #Last {
    background: url(../img/tt/s12-2.png) right -130px bottom / auto 100% no-repeat,
      var(--g2);
  }
  #Last .buttons {
    width: 100%;
    max-width: 800px;
    grid-template-columns: repeat(2, 1fr);
    margin: 0 auto 50px;
  }
  #Last .message-box br {
    display: none;
  }
}
