@charset "UTF-8";
/* CSS Information
---------------------------------------------------------------
Site URL:https://paintlabo.jp/
File name:style.css
Summary:base styles
Created:2025-05-08
--------------------------------------------------------------- */
/* Fonts */
/* ------------------------------------------------------------ */
/* Margin */
/* ------------------------------------------------------------ */
/* Link */
/* ------------------------------------------------------------ */
a {
  text-decoration: none;
}

a[href^="tel:"] {
  pointer-events: none;
  cursor: text;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

/* Animation */
/* ------------------------------------------------------------ */
a,
img {
  transition: all 0.5s ease;
}

a:hover {
  filter: alpha(opacity=50);
  opacity: 0.5;
}

/* Font */
/* ------------------------------------------------------------ */
sup {
  font-size: 66%;
  vertical-align: top;
}

sub {
  font-size: 66%;
  vertical-align: baseline;
}

/* インデント1文字分 */
/* ------------------------------------------------------------ */
.indent {
  text-indent: -1em;
  margin-left: 1em;
}

/* Clear */
/* ------------------------------------------------------------ */
.clfx:after {
  content: "";
  height: 0;
  clear: both;
  display: block;
  visibility: hidden;
}

/* pc_mode / sp_mode */
/* ------------------------------------------------------------ */
.pc {
  display: inherit;
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: inherit;
  }
}
/* Button */
/* ------------------------------------------------------------ */
.btn {
  width: 80%;
}
.btn a {
  background-color: #373739;
  background-image: url(../img/icon_arrow.svg);
  background-repeat: no-repeat;
  background-size: auto 8px;
  background-position: center right min(2.667vw, 20px);
  border-radius: min(10.667vw, 80px);
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  height: min(8vw, 60px);
  max-height: 70px;
  padding-left: min(2.667vw, 20px);
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
}
.btn a:hover {
  background-color: #eb6da5;
  animation: shad 1.5s infinite;
  color: #fff;
}
@keyframes shad {
  0% {
    box-shadow: 0 0 0 0 #f19ec2;
  }
  70% {
    box-shadow: 0 0 0 10px rgba(39, 172, 217, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(39, 172, 217, 0);
  }
}
.btn a img {
  width: 20px !important;
  margin-right: min(0.667vw, 5px);
}
.btn a span {
  font-size: 1rem;
  margin-left: min(0.667vw, 5px);
}

/* Style */
/* ------------------------------------------------------------ */
html {
  -ms-overflow-style: none;
  scrollbar-width: none;
  font-size: min(3.733vw, 28px);
}
html body::-webkit-scrollbar {
  display: none;
}
html body header {
  position: relative;
  z-index: 2;
}
html body header .inner {
  position: fixed;
  top: 0;
  width: 100%;
  transition: all 0.5s ease;
}
html body header .inner > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 99;
  box-sizing: border-box;
  width: 100%;
  max-width: 750px;
  height: 16vw;
  max-height: 120px;
  margin: 0 auto;
  padding: 0 min(6.667vw, 50px);
  position: relative;
}
html body header .inner > div h1 img {
  width: 34.133vw;
  max-width: 256px;
}
html body header .inner > div > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 28%;
}
html body header .inner > div > div p img {
  width: 6.133vw;
  max-width: 46px;
}
html body header .inner > div > div #nav_toggle {
  background-image: url(../img/nav_toggle_bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 12.8vw;
  max-width: 96px;
  cursor: pointer;
  position: relative;
  top: min(2.666vw, 26px);
}
html body header .inner > div > div #nav_toggle::before {
  content: "";
  display: block;
  padding-top: 143.75%;
}
html body header .inner > div > div #nav_toggle span {
  width: 37.5%;
  height: 1px;
  display: block;
  background: #fff;
  position: absolute;
  left: 29%;
  transition: transform 0.3s ease-in-out, top 0.2s ease;
}
html body header .inner > div > div #nav_toggle span:nth-child(1) {
  top: 24%;
}
html body header .inner > div > div #nav_toggle span:nth-child(2) {
  top: 31%;
}
html body header .inner > div > div #nav_toggle span:nth-child(3) {
  top: 38%;
}
html body header .inner #global_nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  visibility: hidden;
  opacity: 0;
  z-index: 9;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
html body header .inner #global_nav ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border-radius: min(2vw, 15px) 0 0 min(2vw, 15px);
  background: #fff;
  width: 80%;
  max-width: 480px;
  height: auto;
  max-height: -moz-fit-content;
  max-height: fit-content;
  padding: min(6.667vw, 50px) min(4vw, 30px);
  opacity: 0;
  transform: translateX(250px);
  transition: transform 0.3s ease, opacity 0.1s ease;
}
html body header .inner #global_nav ul li {
  width: 100%;
}
html body header .inner #global_nav ul li a {
  background-image: url(../img/icon_arrow_sp.svg);
  background-repeat: no-repeat;
  background-size: auto 8px;
  background-position: center right;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
html body header .inner #global_nav ul li a span {
  color: #000;
  font-size: min(1rem, 24px);
  font-weight: 400;
}
html body header .inner #global_nav ul li a img {
  width: 8%;
  max-width: 30px;
  margin-right: min(1.333vw, 10px);
}
html body header .inner #global_nav ul li:nth-of-type(n+2) {
  margin: min(4vw, 30px) 0 0;
}
html body header .inner #global_nav ul li:last-child {
  display: block;
  margin: min(4vw, 30px) 0 0;
}
html body header .inner #global_nav ul li:last-child a {
  background: none;
}
html body header .inner.fixed {
  background: rgb(255, 255, 255) !important;
}
html body header .inner.open > div #nav_toggle span:nth-child(1) {
  top: 31%;
  transform: rotate(45deg);
}
html body header .inner.open > div #nav_toggle span:nth-child(2) {
  top: 31%;
  width: 0;
  left: 50%;
}
html body header .inner.open > div #nav_toggle span:nth-child(3) {
  top: 31%;
  transform: rotate(-45deg);
}
html body header .inner.open #global_nav {
  visibility: visible;
  opacity: 1;
}
html body header .inner.open #global_nav ul {
  opacity: 1;
  transform: translateX(0);
  transition: transform 0.5s ease, opacity 0.9s ease;
}
html body main {
  overflow: hidden;
}
html body main#index section .inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  padding: min(16vw, 120px) min(6.667vw, 50px);
}
html body main#index section .inner h2 {
  width: 100%;
  max-width: 650px;
}
html body main#index section#fv {
  background-image: url(../img/fv.png);
  background-repeat: no-repeat;
  background-size: min(121.333vw, 910px);
  background-position: center top;
}
html body main#index section#fv .inner {
  padding: 0 min(4vw, 30px);
}
html body main#index section#fv .inner h2 {
  display: none;
}
html body main#index section#fv .inner #news {
  border-radius: min(16vw, 120px);
  background: rgba(0, 0, 0, 0.83);
  padding: min(2.667vw, 20px) min(6.667vw, 50px);
  width: 100%;
  margin-top: min(77.333vw, 580px);
}
html body main#index section#fv .inner #news time {
  color: #fff;
  font-size: min(0.857rem, 24px);
}
html body main#index section#fv .inner #news p {
  color: #fff;
  font-size: min(0.857rem, 24px);
  line-height: 1.5;
}
html body main#index section#fv .inner #btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: min(2.667vw, 20px);
}
html body main#index section#fv .inner #btn ul {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 57.101%;
  max-width: 394px;
}
html body main#index section#fv .inner #btn p {
  width: 34.927%;
  max-width: 241px;
}
html body main#index section#fv2 {
  background-color: #e6e6e7;
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0 auto;
  z-index: 1;
}
html body main#index section#fv2 .inner {
  padding: 0;
}
html body main#index section#fv2 .inner > ul {
  background-color: #fff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
}
html body main#index section#merit .inner {
  padding: min(16vw, 120px) min(6.667vw, 50px) 0;
}
html body main#index section#merit .inner p {
  margin-top: min(5.333vw, 40px);
}
html body main#index section#reason .inner {
  padding: min(16vw, 120px) min(6.667vw, 50px) 0;
}
html body main#index section#reason .inner p {
  margin-top: min(5.333vw, 40px);
}
html body main#index section#comparison .inner {
  padding: min(16vw, 120px) min(6.667vw, 50px) 0;
}
html body main#index section#comparison .inner p {
  margin-top: min(5.333vw, 40px);
}
html body main#index section#grants .inner {
  padding: min(16vw, 120px) min(6.667vw, 50px) 0;
}
html body main#index section#grants .inner p {
  margin-top: min(5.333vw, 40px);
}
html body main#index section#payment .inner {
  padding: min(16vw, 120px) min(6.667vw, 50px) 0;
}
html body main#index section#payment .inner p {
  margin-top: min(5.333vw, 40px);
}
html body main#index section#merit {
  background-color: #e6e6e7;
}
html body main#index section#reason {
  background-color: #e6e6e7;
}
html body main#index section#reason .inner {
  padding: min(16vw, 120px) min(6.667vw, 50px);
}
html body main#index section#price .inner {
  padding: min(16vw, 120px) min(6.667vw, 50px) 0;
}
html body main#index section#price .inner ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: min(5.333vw, 40px);
}
html body main#index section#price .inner ul li {
  width: 46%;
}
html body main#index section#price .inner ul li:nth-of-type(n+3) {
  margin-top: min(5.333vw, 40px);
}
html body main#index section#example .inner {
  padding: min(16vw, 120px) min(6.667vw, 50px) 0;
}
html body main#index section#example .inner ul {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: min(5.333vw, 40px);
}
html body main#index section#example .inner ul li {
  width: 100%;
}
html body main#index section#example .inner ul li:nth-of-type(n+2) {
  margin-top: min(5.333vw, 40px);
}
html body main#index section#flow .inner > dl {
  border-radius: min(2vw, 15px);
  margin-top: min(5.333vw, 40px);
  width: 100%;
  overflow: hidden;
}
html body main#index section#flow .inner > dl dt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  box-sizing: border-box;
  width: 100%;
  padding: min(4vw, 30px);
  overflow: hidden;
  cursor: pointer;
}
html body main#index section#flow .inner > dl dt p {
  display: flex;
  align-items: center;
  font-size: min(0.857rem, 24px);
  font-weight: 700;
}
html body main#index section#flow .inner > dl dt p strong {
  font-size: min(1.142rem, 32px);
  font-weight: 700;
  margin-left: min(1.333vw, 10px);
}
html body main#index section#flow .inner > dl dt .icon {
  width: 5%;
  max-width: 24px;
  position: relative;
}
html body main#index section#flow .inner > dl dt .icon span {
  width: 100%;
  height: 2px;
  display: block;
  background: #000;
  position: absolute;
  left: 0;
  transition: transform 0.3s ease-in-out, top 0.2s ease;
}
html body main#index section#flow .inner > dl dt .icon span:nth-child(1) {
  top: calc(50% - 1px);
  transform: rotate(-90deg);
}
html body main#index section#flow .inner > dl dt .icon span:nth-child(2) {
  top: calc(50% - 1px);
}
html body main#index section#flow .inner > dl dt.active .icon span:nth-child(1) {
  top: calc(50% - 1px);
  transform: rotate(0deg);
}
html body main#index section#flow .inner > dl dd {
  display: none;
  text-align: left;
  box-sizing: border-box;
  width: 100%;
  padding: 0 min(4vw, 30px) min(4vw, 30px);
  overflow: hidden;
}
html body main#index section#flow .inner > dl dd p {
  border-top: 1px #BABABA solid;
  font-size: min(1rem, 28px);
  line-height: 2;
  padding: min(2.667vw, 20px) 0 0;
}
html body main#index section#flow .inner > dl:nth-of-type(1) {
  background-color: #ffdcff;
}
html body main#index section#flow .inner > dl:nth-of-type(2) {
  background-color: #ffcaff;
}
html body main#index section#flow .inner > dl:nth-of-type(3) {
  background-color: #ffbaff;
}
html body main#index section#flow .inner > dl:nth-of-type(4) {
  background-color: #ffa7ff;
}
html body main#index section#flow .inner > dl:nth-of-type(5) {
  background-color: #ff84ff;
}
html body main#index section#flow .inner > dl:nth-of-type(n+2) {
  margin-top: min(1.333vw, 10px);
}
html body main#index section#flow .inner > p {
  margin-top: min(1.333vw, 10px);
}
html body main#index section#button .inner ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
html body main#index section#button .inner ul li {
  width: 46%;
}
html body main#index section.contact {
  background-image: url(../img/contact_bg.png);
  background-repeat: repeat;
  background-size: min(3.733vw, 28px);
  background-position: left top;
}
html body main#index section.contact .inner h3:nth-of-type(n+2) {
  margin-top: min(5.333vw, 40px);
}
html body main#index section.contact .inner p {
  margin-top: min(2.667vw, 20px);
}
html body main#index section.contact .inner p:nth-of-type(1) {
  width: 91.23%;
  max-width: 593px;
}
html body main#index section.contact .inner p:nth-of-type(2) {
  width: 84.769%;
  max-width: 551px;
}
html body main#contact section#inquiry .inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  padding: min(16vw, 120px) min(6.667vw, 50px);
}
html body main#contact section#inquiry .inner > strong {
  display: block;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
  margin: min(8vw, 60px) 0 0;
}
html body main#contact section#inquiry .inner > p {
  font-size: 0.857rem;
  line-height: 2;
  margin-top: min(2.667vw, 20px);
}
html body main#contact section#inquiry .inner > p:nth-of-type(n+2) {
  margin-top: 0;
}
html body main#contact section#inquiry .inner .must {
  background: #E62800;
  border-radius: min(5.333vw, 40px);
  color: #fff;
  font-size: 0.571rem;
  padding: min(0.667vw, 5px) min(1.333vw, 10px);
}
html body main#contact section#inquiry .inner > .mw_wp_form {
  width: 100%;
  margin-top: min(2.667vw, 20px);
}
html body main#contact section#inquiry .inner > .mw_wp_form form > div.btn_area {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  margin-top: min(5.333vw, 40px);
}
html body main#contact section#inquiry .inner > .mw_wp_form form > div.btn_area .btn_submit {
  background-color: #373739;
  background-image: url(../img/icon_arrow.svg);
  background-repeat: no-repeat;
  background-size: auto 8px;
  background-position: center right min(2.667vw, 20px);
  border-radius: min(10.667vw, 80px);
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  width: 80%;
  height: min(10.667vw, 80px);
  padding: 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.5s ease;
}
html body main#contact section#inquiry .inner > .mw_wp_form form > div.btn_area .btn_submit:hover {
  background-color: #eb6da5;
  animation: shad 1.5s infinite;
  color: #fff;
}
@keyframes shad {
  0% {
    box-shadow: 0 0 0 0 #f19ec2;
  }
  70% {
    box-shadow: 0 0 0 10px rgba(39, 172, 217, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(39, 172, 217, 0);
  }
}
html body main#contact section#inquiry .inner > .mw_wp_form form .w50 {
  width: 50% !important;
}
html body main#contact section#inquiry .inner > .mw_wp_form form .w50 + p {
  width: 100%;
  margin-top: min(2.667vw, 20px);
}
html body main#contact section#inquiry .inner > .mw_wp_form form span.error {
  display: block;
  text-align: left;
  font-size: 0.714rem;
  margin-top: min(1.333vw, 10px);
  flex-basis: 100%;
}
html body main#contact section#inquiry .inner > .mw_wp_form form dl {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: min(5.333vw, 40px);
}
html body main#contact section#inquiry .inner > .mw_wp_form form dl dt {
  flex-shrink: 0;
  width: 100%;
  margin-bottom: min(2.667vw, 20px);
}
html body main#contact section#inquiry .inner > .mw_wp_form form dl dt .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
html body main#contact section#inquiry .inner > .mw_wp_form form dl dd {
  display: flex;
  align-items: center;
  width: 100%;
}
html body main#contact section#inquiry .inner > .mw_wp_form form dl dd .wrap {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  font-size: 1rem;
  line-height: 1.5;
}
html body main#contact section#inquiry .inner > .mw_wp_form form :is(input:not([type=file]):not([type=radio]):not([type=checkbox]):not([type=submit]), select, textarea) {
  display: flex;
  align-items: center;
  background: #E4F1F6;
  border-radius: min(1.333vw, 10px);
  border: none;
  color: #373739;
  font-size: 1rem;
  letter-spacing: 1px;
  width: 100%;
  height: min(10.667vw, 80px);
  padding: min(0.667vw, 5px) min(1.333vw, 10px);
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
html body main#contact section#inquiry .inner > .mw_wp_form form textarea {
  height: 24vw !important;
}
html body main#contact section#inquiry .inner > .mw_wp_form form input[type=file] {
  font-size: 1rem;
}
html body main#contact section#inquiry .inner > .mw_wp_form form .horizontal-item {
  padding: min(1.333vw, 10px) 0;
}
html body main#contact section#inquiry .inner > .mw_wp_form form .horizontal-item + .horizontal-item {
  margin-left: 0;
}
html body main#contact section#inquiry .inner > .mw_wp_form form .select {
  width: 100%;
  position: relative;
}
html body main#contact section#inquiry .inner > .mw_wp_form form .select::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-width: 0 2px 2px 0;
  border-color: #373739;
  border-style: solid;
  position: absolute;
  right: min(1.333vw, 10px);
  top: calc(50% - 8px);
  transform-origin: center;
  transform: rotate(45deg);
}
html body main#contact section#inquiry .inner > .mw_wp_form form .radio {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
}
html body main#contact section#inquiry .inner > .mw_wp_form form .radio input[type=radio] {
  position: absolute;
  visibility: hidden;
  width: auto;
}
html body main#contact section#inquiry .inner > .mw_wp_form form .radio .mwform-radio-field label {
  display: flex;
}
html body main#contact section#inquiry .inner > .mw_wp_form form .radio .mwform-radio-field label .mwform-radio-field-text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  position: relative;
}
html body main#contact section#inquiry .inner > .mw_wp_form form .radio .mwform-radio-field label .mwform-radio-field-text::before {
  content: "";
  display: inline-block;
  position: relative;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  margin: 0 min(1.333vw, 10px) 0 0;
  background: #E4F1F6;
  box-sizing: border-box;
  border-radius: 50%;
  vertical-align: middle;
}
html body main#contact section#inquiry .inner > .mw_wp_form form .radio input[type=radio]:checked + .mwform-radio-field-text::before {
  border: 1px solid #5EACCC;
}
html body main#contact section#inquiry .inner > .mw_wp_form form .radio input[type=radio]:checked + .mwform-radio-field-text::after {
  display: inline-block;
  position: absolute;
  left: 5px;
  content: "";
  width: 10px;
  height: 10px;
  background: #5EACCC;
  border-radius: 50%;
  box-sizing: border-box;
  vertical-align: middle;
}
html body main#contact section#inquiry .inner > .mw_wp_form form .check {
  position: relative;
}
html body main#contact section#inquiry .inner > .mw_wp_form form .check input[type=checkbox] {
  position: absolute;
  visibility: hidden;
  width: auto;
}
html body main#contact section#inquiry .inner > .mw_wp_form form .check .mwform-checkbox-field {
  display: block;
}
html body main#contact section#inquiry .inner > .mw_wp_form form .check .mwform-checkbox-field label {
  display: flex;
}
html body main#contact section#inquiry .inner > .mw_wp_form form .check .mwform-checkbox-field label .mwform-checkbox-field-text {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  height: 20px;
  margin: 0;
  cursor: pointer;
  position: relative;
  padding: 0 0 0 calc(20px + min(1.333vw, 10px));
}
html body main#contact section#inquiry .inner > .mw_wp_form form .check .mwform-checkbox-field label .mwform-checkbox-field-text::before, html body main#contact section#inquiry .inner > .mw_wp_form form .check .mwform-checkbox-field label .mwform-checkbox-field-text::after {
  content: "";
  display: inline-block;
  position: absolute;
}
html body main#contact section#inquiry .inner > .mw_wp_form form .check .mwform-checkbox-field label .mwform-checkbox-field-text::before {
  top: 54%;
  left: 0;
  background: #E4F1F6;
  width: 20px;
  height: 20px;
  margin: 0;
  transform: translateY(-50%);
  box-sizing: border-box;
  border-radius: 0;
}
html body main#contact section#inquiry .inner > .mw_wp_form form .check .mwform-checkbox-field label .mwform-checkbox-field-text::after {
  top: 0;
  left: 0;
  border-width: 2px;
  border-color: transparent transparent #5EACCC #5EACCC;
  border-style: solid;
  width: 20px;
  height: 10px;
  transform: translateY(-50%) rotate(-45deg);
  opacity: 0;
}
html body main#contact section#inquiry .inner > .mw_wp_form form .check input[type=checkbox]:checked + .mwform-checkbox-field-text::after {
  opacity: 1;
}
html body main#contact section#inquiry .inner > .mw_wp_form_confirm .select::after {
  content: none !important;
}
html body main#complete section#contents .inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  padding: min(16vw, 120px) min(6.667vw, 50px);
}
html body main#complete section#contents .inner > strong {
  display: block;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
  margin: min(8vw, 60px) 0 0;
}
html body main#complete section#contents .inner > p:nth-of-type(1) {
  text-align: center;
  font-size: 1rem;
  line-height: 2;
  margin-top: min(2.667vw, 20px);
}
html body main#complete section#contents .inner > p:nth-of-type(2) {
  margin-top: min(5.333vw, 40px);
}
html body main#complete section#contents .inner > div {
  border-radius: min(2.667vw, 20px);
  background: #FFFADF;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  padding: min(2.667vw, 20px) min(5.333vw, 40px);
  margin-top: min(5.333vw, 40px);
}
html body main#complete section#contents .inner > div > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
html body main#complete section#contents .inner > div > div figure {
  width: 15%;
  max-width: 80px;
  margin: 0 0 min(2.667vw, 20px);
  flex-shrink: 0;
}
html body main#complete section#contents .inner > div > div div {
  width: 100%;
}
html body main#complete section#contents .inner > div > div div p {
  font-size: 1rem;
  line-height: 2;
}
html body main#complete section#contents .inner > div > em {
  font-size: 1rem;
  font-weight: 500;
  margin-top: min(2.667vw, 20px);
}
html body main#complete section#contents .inner > div > p {
  text-align: center;
  font-size: 1rem;
  line-height: 2;
  margin-top: min(1.333vw, 10px);
}
html body main#complete section#contents .inner > div > p a {
  color: #373739;
}
html body footer {
  background: #373739;
  overflow: hidden;
}
html body footer .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: min(1.333vw, 10px) 0;
}
html body footer .inner > small {
  color: #fff;
  font-size: 0.714rem;
}/*# sourceMappingURL=style.css.map */