@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  list-style: none;
}

* {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.4;
  font-feature-settings: "palt";
  font-size: 62.5%;
  height: 100%;
}

body {
  position: relative;
  height: 100%;
  color: #472F25;
  font-family: "Kosugi Maru", "メイリオ", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  font-style: normal;
}

header {
  background: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: fixed;
  width: calc(100% - 100px);
  max-width: 1100px;
  height: 68px;
  inset: 15px 0 auto 0;
  margin: auto;
  border-radius: 34px;
  transition: all 0.3s ease-out;
  z-index: 99;
}
@media screen and (max-width: 900px) {
  header {
    width: calc(100% - 20px);
  }
}
@media screen and (max-width: 768px) {
  header {
    background: rgba(255, 255, 255, 0);
    -webkit-backdrop-filter: blur(0px);
            backdrop-filter: blur(0px);
    border: 1px solid rgba(255, 255, 255, 0);
  }
}
@media screen and (max-width: 768px) {
  header.active {
    background: rgba(200, 200, 200, 0.1);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    height: 54px;
    border-radius: 27px;
  }
}
header .logo_header {
  position: absolute;
  width: 170px;
  top: 12px;
  left: 170px;
  opacity: 0;
  transition: all 0.8s ease-out;
}
@media screen and (max-width: 768px) {
  header .logo_header {
    width: 140px;
    left: 140px;
  }
}
header .logo_header.visible {
  left: 30px;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  header .logo_header.visible {
    top: 9px;
  }
}
header nav {
  position: absolute;
  top: 8px;
  right: 10px;
  width: calc(100% - 20px);
  height: 48px;
  transform-origin: right;
  margin-left: auto;
  transition: all 0.5s ease-out;
}
@media screen and (max-width: 768px) {
  header nav {
    display: none;
  }
}
header nav.shrink {
  width: calc(100% - 170px - 50px);
}
@media screen and (max-width: 768px) {
  header nav.shrink {
    width: calc(100% - 140px - 50px);
  }
}
@media screen and (max-width: 1100px) {
  header nav.shrink ul li {
    width: 12.5% !important;
  }
  header nav.shrink ul li a {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 1100px) {
  header nav.shrink ul li:last-child a {
    font-size: 1.2rem;
  }
}
header nav.shrink ul li:last-child a span {
  display: none;
}
header nav ul {
  height: 100%;
  display: flex;
  align-items: center;
}
header nav ul li {
  width: 11.5%;
  height: 100%;
}
header nav ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EF8400;
  box-shadow: 0 2px 0 0 rgb(208, 115, 0);
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 0 15px;
  white-space: nowrap;
  transition: all 0.3s ease-out;
}
@media screen and (max-width: 900px) {
  header nav ul li a {
    font-size: 1.2rem;
    padding: 0 5px;
  }
}
header nav ul li a:hover {
  color: #FFDA77;
}
header nav ul li:first-child a {
  border-radius: 24px 0 0 24px;
}
header nav ul li:last-child {
  width: 19%;
  margin-left: 0.5%;
  border-radius: 0 24px 24px 0;
}
header nav ul li:last-child a {
  background: #37A7C4;
  box-shadow: 0 2px 0 0 rgb(41, 125, 147);
  border-radius: 0 24px 24px 0;
}
@media screen and (max-width: 768px) {
  header nav ul li:last-child a span {
    display: none;
  }
}
header nav ul li:last-child a:hover:before {
  background: url("../img/download_hover.svg") no-repeat center;
}
header nav ul li:last-child a:before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background: url("../img/download.svg") no-repeat center;
  margin-right: 5px;
  transition: all 0.3s ease-out;
}

#nav_btn {
  display: none;
  position: fixed;
  right: 15px;
  top: 20px;
  width: 44px;
  height: 44px;
  border-radius: 22px;
  background: #EF8400 url("../img/nav_btn.svg") no-repeat center;
  background-size: 28px;
  box-shadow: 0 2px 0 0 rgb(208, 115, 0);
  cursor: pointer;
  z-index: 101;
  transition: all 0.3s ease-out;
}
#nav_btn:hover {
  background: #FEA55B url("../img/nav_btn.svg") no-repeat center;
  background-size: 28px;
}
@media screen and (max-width: 768px) {
  #nav_btn {
    display: block;
  }
}
#nav_btn.close {
  background: #EF8400 url("../img/nav_btn_close.svg") no-repeat center;
  background-size: 28px;
}
#nav_btn.close:hover {
  background: #FEA55B url("../img/nav_btn_close.svg") no-repeat center;
  background-size: 28px;
}

ul.sp_nav {
  display: none;
  position: fixed;
  top: 15px;
  background: rgba(50, 50, 50, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  width: calc(100% - 20px);
  inset: 15px 0 auto 0;
  margin: auto;
  border-radius: 5px 26px 5px 5px;
  padding: 15px 0;
  z-index: 100;
}
ul.sp_nav li a {
  display: block;
  width: 100%;
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
  text-decoration: none;
  padding: 15px;
  transition: all 0.3s ease-out;
}
ul.sp_nav li a:hover {
  color: #FFDA77;
}
ul.sp_nav li:last-child a {
  display: flex;
  align-items: center;
  justify-content: center;
}
ul.sp_nav li:last-child a:before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background: url("../img/download.svg") no-repeat center;
  margin-right: 5px;
  transition: all 0.3s ease-out;
}
ul.sp_nav li:last-child a:hover:before {
  background: url("../img/download_hover.svg") no-repeat center;
}

.fixed_inquiry_btn {
  position: fixed;
  right: -36px;
  top: 100px;
  display: flex;
  align-items: center;
  width: 35px;
  border-radius: 15px 0 0 15px;
  background: #EF8400;
  box-shadow: 0 1px 0 1px rgb(208, 115, 0);
  writing-mode: vertical-rl;
  text-decoration: none;
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
  padding: 30px 0;
  z-index: 98;
  transition: all 0.5s ease-out;
}
@media screen and (max-width: 600px) {
  .fixed_inquiry_btn {
    font-size: 1.4rem;
    width: 20px;
    range: 10px 0 0 10px;
  }
}
.fixed_inquiry_btn:hover {
  background: #FEA55B;
}
.fixed_inquiry_btn.visible {
  right: 0px;
}

main .inner {
  max-width: 1200px;
  width: 100%;
  padding: 60px;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  main .inner {
    padding: 30px;
  }
}
@media screen and (max-width: 768px) {
  main .inner {
    padding: 20px;
  }
}
main .flex {
  display: flex;
}
main .main_visual ~ * {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}
main .fade-in {
  opacity: 1;
  transform: translateY(0);
}
main .main_visual {
  position: relative;
  background: #fff;
  background-image: radial-gradient(at 96.8% 95.7%, #ffe082 0px, transparent 50%), radial-gradient(at -2% 99.4%, #ffcc80 0px, transparent 50%), radial-gradient(at 97.2% 8%, #fdfcf8 0px, transparent 50%), radial-gradient(at -0.1% 7.7%, #fafafa 0px, transparent 50%), radial-gradient(at 73.2% 71.5%, #fff8e1 0px, transparent 50%);
  overflow: hidden;
  border-bottom: 10px solid #EF8400;
  box-shadow: 0 5px 10px 1px rgba(0, 0, 0, 0.2);
}
main .main_visual .inner {
  padding: 0 60px;
}
main .main_visual .flex {
  justify-content: space-around;
  align-items: flex-end;
  padding-top: 120px;
}
@media screen and (max-width: 900px) {
  main .main_visual .flex {
    justify-content: space-between;
  }
}
@media screen and (max-width: 768px) {
  main .main_visual .flex {
    gap: 15px;
    padding-top: 60px;
  }
}
@media screen and (max-width: 700px) {
  main .main_visual .flex {
    flex-wrap: wrap;
    justify-content: center;
  }
}
main .main_visual .flex div:first-child {
  min-width: 360px;
  width: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 900px) {
  main .main_visual .flex div:first-child {
    min-width: auto;
    max-width: 360px;
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  main .main_visual .flex div:first-child {
    width: 40%;
  }
}
@media screen and (max-width: 700px) {
  main .main_visual .flex div:first-child {
    max-width: 100%;
    width: 100%;
  }
}
main .main_visual .flex div:last-child {
  max-width: 560px;
}
@media screen and (max-width: 900px) {
  main .main_visual .flex div:last-child {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  main .main_visual .flex div:last-child {
    width: 60%;
  }
}
@media screen and (max-width: 700px) {
  main .main_visual .flex div:last-child {
    max-width: 400px;
    width: 100%;
  }
}
main .main_visual .flex div:last-child img {
  width: 100%;
  height: auto;
  margin-top: -10px;
  margin-bottom: -5px;
}
@media screen and (max-width: 700px) {
  main .main_visual .flex div:last-child img {
    margin-bottom: -56px;
  }
}
main .main_visual .flex div .logo {
  max-width: 360px;
  width: 100%;
}
main .main_visual .flex div .main_visual_lead {
  width: 100%;
  font-size: clamp(2rem, 1.8rem + 0.67vw, 2.3rem);
  text-align: justify;
  line-height: 1.5;
  margin-top: 30px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  main .main_visual .flex div .main_visual_lead br {
    display: none;
  }
}
main .main_visual .flex div .main_visual_lead .marker {
  background: linear-gradient(transparent 60%, #FFF22E 40%);
  font-family: "BIZ UDGothic", "メイリオ", "Meiryo", sans-serif;
  color: #37A7C4;
  font-size: clamp(2rem, 1.533rem + 1.56vw, 2.7rem);
  font-weight: bold;
  letter-spacing: 0.1rem;
}
main .main_visual .flex div .main_visual_lead .marker:before {
  content: "「";
  margin-left: -1.4rem;
}
main .main_visual .flex div .main_visual_lead .marker:after {
  content: "」";
  margin-right: -1.4rem;
}
main .main_visual .flex div .main_visual_lead .marker span {
  letter-spacing: -0.8rem;
}
main .main_visual .flex div .main_visual_text {
  width: 100%;
  font-family: "Noto Sans JP", "メイリオ", "Meiryo", sans-serif;
  font-size: clamp(1.1rem, 0.767rem + 1.11vw, 1.6rem);
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  main .main_visual .flex div .main_visual_text br {
    display: none;
  }
}
main .main_visual .flex div .inquiry_btn {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 46px;
  border-radius: 23px;
  color: #fff;
  font-size: 1.8rem;
  text-decoration: none;
  background: #EF8400;
  box-shadow: 0 1px 0 1px rgb(208, 115, 0);
  padding: 0 30px;
  margin-top: 20px;
  margin-bottom: 45px;
  transition: all 0.3s ease-out;
}
@media screen and (max-width: 700px) {
  main .main_visual .flex div .inquiry_btn {
    margin-bottom: 15px;
  }
}
main .main_visual .flex div .inquiry_btn:before {
  content: "";
  display: block;
  width: 20px;
  height: 16px;
  background: url("../img/inquiry.svg") no-repeat;
}
main .main_visual .flex div .inquiry_btn:hover {
  background: #FEA55B;
}
main .bg_orange {
  background: #FCF5EF;
}
main .bg_blue {
  background: #F0FAFE;
}
main .bg_gray {
  background: #FAF9F7;
}
main .bg_white {
  background: #fff;
}
main .intro {
  padding: 60px 0 0 0;
}
main .intro .inner .flex {
  width: 100%;
  gap: 30px;
  align-items: center;
  justify-content: space-evenly;
}
@media screen and (max-width: 600px) {
  main .intro .inner .flex {
    flex-wrap: wrap;
    gap: 15px;
  }
}
main .intro .inner .flex:first-child {
  margin-bottom: 45px;
}
@media screen and (max-width: 600px) {
  main .intro .inner .flex:first-child {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 600px) {
  main .intro .inner .flex:nth-child(2) img {
    order: 1;
  }
}
main .intro .inner .flex > div {
  display: flex;
  gap: 15px;
  max-width: 460px;
  width: 60%;
}
@media screen and (max-width: 600px) {
  main .intro .inner .flex > div {
    max-width: none;
    width: 100%;
  }
}
main .intro .inner .flex > div:before {
  flex-shrink: 0;
  content: "";
  background: #EF8400;
  display: inline-block;
  width: 5px;
  border-radius: 2px;
}
main .intro .inner .flex > div .text_wrap p.intro_title {
  font-family: "BIZ UDGothic", "メイリオ", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 10px;
}
main .intro .inner .flex > div .text_wrap p.intro_title span {
  letter-spacing: -0.8rem;
}
main .intro .inner .flex > div .text_wrap p.intro_text {
  font-family: "Noto Sans JP", "メイリオ", "Meiryo", sans-serif;
  font-size: 1.3rem;
  line-height: 1.8;
}
main .intro .inner .flex img {
  max-width: 300px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  main .intro .inner .flex img {
    max-width: 240px;
  }
}
main .strengths p.strengths_title {
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.5rem;
  margin: 100px auto 0 auto;
  padding: 0 10px 5px;
  border-bottom: 3px solid #472F25;
  z-index: 1;
}
@media screen and (max-width: 600px) {
  main .strengths p.strengths_title {
    font-size: 1.6rem;
    letter-spacing: 0;
  }
}
main .strengths p.strengths_title:after {
  position: absolute;
  content: "";
  display: block;
  width: 30px;
  height: 23px;
  background: url("../img/tri_border.svg") no-repeat;
  background-size: auto;
  bottom: -23px;
  right: 0;
  left: 0;
  margin: 0 auto;
  z-index: 2;
}
main .strengths > .flex {
  gap: 5px !important;
  justify-content: center !important;
}
@media screen and (max-width: 600px) {
  main .strengths > .flex {
    gap: 15px !important;
  }
}
main .strengths > .flex.strength_img {
  margin-top: 30px;
}
main .strengths > .flex.strength_img img {
  max-width: 250px;
}
@media screen and (max-width: 768px) {
  main .strengths > .flex.strength_img img {
    max-width: 33%;
  }
}
@media screen and (max-width: 600px) {
  main .strengths > .flex.strength_img img {
    max-width: 250px;
  }
}
main .strength_bottom {
  width: 100%;
  aspect-ratio: 8/1;
  background: url("../img/strengths_bottom.svg") no-repeat;
  background-size: cover;
  margin-top: -5px;
}
main .solution .inner {
  padding-top: 35px;
}
main .solution p.issue_title {
  text-align: center;
  color: #EF8400;
  font-size: 2.4rem;
  margin-bottom: 40px;
}
main .solution p.issue_title span {
  letter-spacing: -1.4rem;
}
main .solution .solution_wrap {
  display: flex;
  margin-bottom: 55px;
}
@media screen and (max-width: 600px) {
  main .solution .solution_wrap {
    flex-direction: column;
  }
}
main .solution .solution_wrap div {
  min-height: 180px;
  box-shadow: 0 5px 0 0 rgba(0, 0, 0, 0.3);
  padding: 25px 15px 15px;
}
@media screen and (max-width: 600px) {
  main .solution .solution_wrap div {
    box-shadow: none;
  }
}
main .solution .solution_wrap .issue {
  position: relative;
  width: 35%;
  background: #B7D8DF;
}
@media screen and (max-width: 768px) {
  main .solution .solution_wrap .issue {
    width: 40%;
  }
}
@media screen and (max-width: 600px) {
  main .solution .solution_wrap .issue {
    width: 100%;
    border-radius: 0 30px 0 0;
  }
}
main .solution .solution_wrap .issue img.issue_icn {
  position: absolute;
  width: 75px;
  top: -25px;
  left: -10px;
}
main .solution .solution_wrap .issue p {
  font-family: "BIZ UDGothic", "メイリオ", "Meiryo", sans-serif;
  font-weight: 700;
  line-height: 1.6;
  color: #191919;
}
@media screen and (max-width: 600px) {
  main .solution .solution_wrap .issue p {
    width: 60%;
  }
}
main .solution .solution_wrap:nth-child(2) .issue {
  background: #B7D8DF url("../img/issue_illust1.svg") no-repeat right 15px bottom -2px;
  background-size: 35%;
}
@media screen and (max-width: 768px) {
  main .solution .solution_wrap:nth-child(2) .issue {
    background-size: 40%;
  }
}
@media screen and (max-width: 600px) {
  main .solution .solution_wrap:nth-child(2) .issue {
    background-size: 35%;
  }
}
main .solution .solution_wrap:nth-child(3) .issue {
  background: #B7D8DF url("../img/issue_illust2.svg") no-repeat right 15px bottom -3px;
  background-size: 35%;
}
@media screen and (max-width: 768px) {
  main .solution .solution_wrap:nth-child(3) .issue {
    background-size: 40%;
  }
}
@media screen and (max-width: 600px) {
  main .solution .solution_wrap:nth-child(3) .issue {
    background-size: 35%;
  }
}
main .solution .solution_wrap:nth-child(4) .issue {
  background: #B7D8DF url("../img/issue_illust3.svg") no-repeat right 15px bottom -4px;
  background-size: 40%;
}
@media screen and (max-width: 768px) {
  main .solution .solution_wrap:nth-child(4) .issue {
    background-size: 45%;
  }
}
@media screen and (max-width: 600px) {
  main .solution .solution_wrap:nth-child(4) .issue {
    background-size: 40%;
  }
}
main .solution .solution_wrap .solve {
  width: 65%;
  background: #FFE0B2;
  border-radius: 0 30px 0 0;
}
@media screen and (max-width: 768px) {
  main .solution .solution_wrap .solve {
    width: 60%;
  }
}
@media screen and (max-width: 600px) {
  main .solution .solution_wrap .solve {
    width: 100%;
    border-radius: 0;
    box-shadow: 0 5px 0 0 rgba(0, 0, 0, 0.3);
  }
}
main .solution .solution_wrap .solve .solve_title {
  font-size: 2rem;
  line-height: 1;
  color: #EF8400;
  background: url("../img/icn_solve.svg") no-repeat left center;
  padding-left: 24px;
  margin-bottom: 7px;
}
main .solution .solution_wrap .solve .solve_text {
  line-height: 1.6;
}
main .feature .inner {
  max-width: none;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  main .feature .inner {
    padding-bottom: 30px;
  }
}
main .feature .inner .glide {
  margin-bottom: 15px;
}
main .feature .inner .glide .glide__track {
  overflow: visible;
}
main .feature .inner .glide .glide__track ul.glide__slides {
  transform-style: preserve-3d;
  overflow: visible;
}
main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide {
  height: auto;
  padding: 10px;
  position: relative;
}
main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide:before {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  position: absolute;
  top: 33px;
  left: -12px;
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background: #EF8400;
}
@media screen and (max-width: 600px) {
  main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide:before {
    top: -13px;
  }
}
main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide:nth-child(1):before {
  content: "01";
}
main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide:nth-child(2):before {
  content: "02";
}
main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide:nth-child(3):before {
  content: "03";
}
main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide:nth-child(4):before {
  content: "04";
}
main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide:nth-child(5):before {
  content: "05";
}
main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide:nth-child(6):before {
  content: "06";
}
main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide:nth-child(7):before {
  content: "07";
}
main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide .slide_inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: #fff;
  padding: 30px 45px;
  border-radius: 10px;
  border: 1px solid #B7D8DF;
  transition: all 0.2s ease-out;
}
@media screen and (max-width: 600px) {
  main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide .slide_inner {
    padding: 20px;
  }
}
main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide .slide_inner p.slide_title {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 10px;
}
main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide .slide_inner p.slide_title span {
  letter-spacing: -0.4rem;
}
main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide .slide_inner p, main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide .slide_inner ul, main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide .slide_inner dl {
  flex: 0 0 auto;
}
main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide .slide_inner p.slide_text {
  line-height: 1.6;
}
main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide .slide_inner p.slide_note {
  font-family: "Noto Sans JP", "メイリオ", "Meiryo", sans-serif;
  font-size: 1.2rem;
  color: #37A7C4;
  margin-top: 7px;
}
main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide .slide_inner p.title {
  color: #EF8400;
  font-size: 1.8rem;
}
main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide .slide_inner p.text {
  font-family: "Noto Sans JP", "メイリオ", "Meiryo", sans-serif;
  font-size: 1.2rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide .slide_inner p.text br {
    display: none;
  }
}
main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide .slide_inner ul {
  margin-left: 10px;
}
main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide .slide_inner ul li {
  margin-bottom: 5px;
  text-indent: -1rem;
  padding-left: 1rem;
}
main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide .slide_inner ul li:before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background: #EF8400;
  vertical-align: 3px;
  margin-right: 5px;
}
main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide .slide_inner ul li > ul {
  margin-top: 5px;
}
main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide .slide_inner ul li > ul li {
  font-size: 1.3rem;
}
main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide .slide_inner ul li > ul li:before {
  display: none;
}
main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide .slide_inner.s4 dl dt {
  width: 7em;
}
main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide .slide_inner.s4 dl dt:after {
  left: 6em;
}
main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide .slide_inner.s5 dl dt {
  width: 8em;
}
main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide .slide_inner.s5 dl dt:after {
  left: 7em;
}
main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide .slide_inner.s6 dl dt {
  width: 10em;
}
main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide .slide_inner.s6 dl dt:after {
  left: 9em;
}
main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide .slide_inner dl {
  display: flex;
  margin-bottom: 5px;
}
@media screen and (max-width: 600px) {
  main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide .slide_inner dl {
    flex-direction: column;
    margin-bottom: 10px;
  }
}
main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide .slide_inner dl dt {
  display: inline-block;
  position: relative;
  width: 9em;
  font-size: 1.6rem;
  color: #EF8400;
}
main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide .slide_inner dl dt:after {
  content: "：";
  position: absolute;
}
@media screen and (max-width: 600px) {
  main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide .slide_inner dl dt:after {
    display: none;
  }
}
main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide .slide_inner dl dt span {
  letter-spacing: -0.4rem;
}
main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide .slide_inner dl dd {
  width: calc(100% - 16rem);
}
@media screen and (max-width: 600px) {
  main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide .slide_inner dl dd {
    width: 100%;
  }
}
main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide .slide_inner dl dd ul {
  margin-left: 5px;
}
main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide .slide_inner .flex {
  flex: 1 1 auto;
  gap: 15px;
  align-items: center;
  justify-content: space-around;
}
@media screen and (max-width: 768px) {
  main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide .slide_inner .flex {
    align-items: flex-start;
    margin-top: 15px;
  }
}
@media screen and (max-width: 600px) {
  main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide .slide_inner .flex {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
}
main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide .slide_inner .flex img {
  flex-shrink: 0;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide .slide_inner .flex img.w40 {
  max-width: 40%;
}
@media screen and (max-width: 600px) {
  main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide .slide_inner .flex img.w40.sp {
    max-width: 80% !important;
  }
}
main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide .slide_inner .flex img.w50 {
  max-width: 50%;
}
main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide .slide_inner .flex img.w60 {
  max-width: 60%;
}
main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide .slide_inner .flex img.w100 {
  max-width: 100%;
}
@media screen and (max-width: 600px) {
  main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide .slide_inner .flex img {
    max-width: 100% !important;
  }
}
main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide .slide_inner .flex .flex_inner {
  text-align: center;
  width: 33%;
}
@media screen and (max-width: 600px) {
  main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide .slide_inner .flex .flex_inner {
    width: 100%;
  }
}
main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide .slide_inner .flex .flex_inner img {
  max-width: 150px !important;
}
@media screen and (max-width: 768px) {
  main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide .slide_inner .flex .flex_inner img {
    max-width: 100px !important;
  }
}
main .feature .inner .glide .glide__track ul.glide__slides li.glide__slide.glide__slide--active .slide_inner {
  border: 1px solid #EF8400;
  box-shadow: 0 0 10px 1px rgba(239, 132, 0, 0.2);
}
main h2 {
  font-size: 4rem;
  text-align: center;
  line-height: 1.3;
  margin: 15px 0 0 0;
}
main h2:after {
  content: "";
  display: block;
  background: #EF8400;
  width: 70px;
  height: 4px;
  border-radius: 2px;
  margin: 20px auto 25px auto;
}
main h2.noAfter:after {
  display: none;
}
main .lead {
  font-family: "Noto Sans JP", "メイリオ", "Meiryo", sans-serif;
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.7;
  margin-bottom: 45px;
}
main .services {
  padding: 0;
}
main .services_contents {
  flex-wrap: wrap;
  justify-content: space-evenly;
  transition: height 1.5s ease-out;
}
main .service_item {
  flex: 1 1 calc(25% - 20px);
  max-width: 400px;
  padding: 50px;
}
@media screen and (max-width: 768px) {
  main .service_item {
    flex: 1 1 calc(50% - 20px);
    padding: 25px 35px;
  }
}
@media screen and (max-width: 600px) {
  main .service_item {
    flex: 1 1 calc(100% - 20px);
    max-width: 300px;
    padding: 30px 0;
  }
}
main .service_item .service_title {
  font-size: 1.8rem;
  color: #EF8400;
  margin-bottom: 5px;
}
main .service_item p {
  font-family: "Noto Sans JP", "メイリオ", "Meiryo", sans-serif;
  font-size: 1.4rem;
  line-height: 1.6;
}
main .service_item img {
  max-width: 100%;
  height: auto;
  margin-bottom: 7px;
}
main .permission {
  padding: 40px 0;
}
main .permission-table-wrapper {
  overflow-x: auto;
}
main .permission_table {
  background-color: #fff;
  text-align: left;
  margin: 0 auto;
  transition: all 0.5s ease;
  min-width: 768px;
  width: 100%;
  transition: height 1.5s ease-out;
}
main .permission_table thead {
  font-size: 80%;
}
main .permission_table th {
  color: #37A7C4;
  background-color: #D6E9ED;
  padding: 5px 10px;
  vertical-align: middle;
}
main .permission_table td {
  background-color: #FAF9F7;
  padding: 5px 10px;
  font-size: 80%;
}
main .permission_table .viewer {
  color: #fff;
  background-color: #79adc8;
  text-align: center;
  vertical-align: middle;
  font-size: 100%;
}
main .permission_table .editor {
  color: #fff;
  background-color: #37A7C4;
  text-align: center;
  vertical-align: middle;
  font-size: 100%;
}
main .permission_table .approver {
  color: #fff;
  background-color: #008eb5;
  text-align: center;
  vertical-align: middle;
  font-size: 100%;
}
main .introduction .timeline {
  background-color: #FCF5EF;
  justify-content: space-evenly;
  width: 100%;
  padding: 0 20px 0 20px;
  box-sizing: border-box;
  gap: 20px;
}
@media screen and (max-width: 600px) {
  main .introduction .timeline {
    padding: 0 10px 0 0;
    gap: 0px;
  }
}
main .introduction .timeline .timeline_left {
  flex: 1;
  background-color: #fcf5ef;
  text-align: center;
  font-size: 1.2rem;
  color: #fff;
  min-width: 66px;
}
@media screen and (max-width: 600px) {
  main .introduction .timeline .timeline_left {
    padding: 0;
  }
}
main .introduction .timeline .timeline_left .arrow_wrapper {
  position: relative;
  width: 100px;
  margin: 0 auto;
  padding: 30px 0;
  transition: all 0.5s ease-out;
}
@media screen and (max-width: 600px) {
  main .introduction .timeline .timeline_left .arrow_wrapper {
    width: 40px;
  }
}
main .introduction .timeline .timeline_left .arrow_rectangle {
  opacity: 0;
  height: 50px;
  background: linear-gradient(to bottom, #fbc686, #ef8400);
  transition: height 1.5s ease-out;
  position: relative; /* 必須: 三角形と同じ親要素基準で揃える */
  margin-bottom: -5px; /* これで隙間を調整 */
}
main .introduction .timeline .timeline_left .arrow_rectangle.visible {
  opacity: 1;
}
main .introduction .timeline .timeline_left .arrow_triangle {
  opacity: 0;
  position: absolute;
  bottom: -25px; /* 三角形を長方形の下部に密着させる */
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 50px solid #EF8400;
  margin-top: -2;
}
@media screen and (max-width: 600px) {
  main .introduction .timeline .timeline_left .arrow_triangle {
    bottom: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 25px solid #EF8400;
  }
}
main .introduction .timeline .timeline_left .arrow_triangle.visible {
  opacity: 1;
}
main .introduction .timeline .timeline_left .arrow_text {
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  z-index: 1;
  opacity: 0;
  transition: all 0.5s ease-out;
}
@media screen and (max-width: 600px) {
  main .introduction .timeline .timeline_left .arrow_text {
    writing-mode: vertical-rl;
    left: 67%;
  }
}
main .introduction .timeline .timeline_left .arrow_text.visible {
  opacity: 1;
}
main .introduction .timeline .timeline_left span.vertical {
  writing-mode: vertical-rl;
  font-size: 2rem;
  padding-bottom: 10px;
}
@media screen and (max-width: 600px) {
  main .introduction .timeline .timeline_left span.vertical {
    display: none;
  }
}
main .introduction .timeline .timeline_left span.bold_4 {
  font-size: 2rem;
  margin: 4px;
}
@media screen and (max-width: 600px) {
  main .introduction .timeline .timeline_left span.bold_4 {
    text-orientation: upright;
    margin: 0;
  }
}
main .introduction .timeline .timeline_left .timeline_left.active .arrow {
  width: 100px;
  height: 50px;
}
main .introduction .timeline .timeline_right {
  flex: 5;
  position: relative;
  margin: 0 auto;
  padding: 20px;
}
@media screen and (max-width: 600px) {
  main .introduction .timeline .timeline_right {
    padding: 5px 0;
  }
}
main .introduction .timeline .timeline_right .timeline_line {
  position: absolute;
  top: 50px;
  left: 50px;
  transform: translateX(-50%);
  width: 4px;
  background-color: #EF8400;
  z-index: 1;
  height: 0;
  transition: height 1.5s ease-out;
}
@media screen and (max-width: 600px) {
  main .introduction .timeline .timeline_right .timeline_line {
    left: 30px;
  }
}
main .introduction .timeline .timeline_right .section {
  display: flex;
  align-items: flex-start;
  margin: 30px 0;
  position: relative;
}
main .introduction .timeline .timeline_right .section .icon {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  margin-right: 20px;
  transition: all 0.5s ease-out;
}
main .introduction .timeline .timeline_right .section .icon img {
  height: auto;
  min-width: 65px;
}
main .introduction .timeline .timeline_right .section .s_text .s_title {
  font-size: 2.5rem;
  color: #EF8400;
}
main .introduction .timeline .timeline_right .section .s_text .s_title span {
  letter-spacing: -0.7rem;
}
@media screen and (max-width: 600px) {
  main .introduction .timeline .timeline_right .section .s_text .s_title {
    font-size: 1.5rem;
  }
}
main .introduction .timeline .timeline_right .section .s_text p {
  margin: 5px 0 0 0;
  line-height: 1.5;
}
main .operation_start {
  position: relative;
  background-color: #37A7C4;
  color: #fff;
  display: flex;
  justify-content: space-evenly;
  padding: 25px 5px 10px 20px;
  box-sizing: border-box;
}
main .operation_start .operation_start_left {
  flex: 2;
  font-size: 3rem;
  line-height: 1;
  text-align: right;
}
@media screen and (max-width: 600px) {
  main .operation_start .operation_start_left {
    font-size: 2rem;
    flex: 1;
  }
}
main .operation_start .operation_start_right {
  flex: 3;
  padding-left: 25px;
}
@media screen and (max-width: 600px) {
  main .operation_start .operation_start_right {
    font-size: 1.6rem;
    flex: 2;
  }
}
main .operation_start .operation_start_right ul {
  list-style: none;
  font-size: 2rem;
  padding-top: 10px;
}
@media screen and (max-width: 600px) {
  main .operation_start .operation_start_right ul {
    font-size: 1.5rem;
  }
}
main .operation_start .operation_start_right ul li {
  display: flex;
  align-items: center;
  gap: 5px;
}
main .operation_start .operation_start_right ul img {
  width: 20px;
  height: auto;
}
@media screen and (max-width: 600px) {
  main .operation_start .operation_start_right ul img {
    width: 15px;
  }
}
main .operation_bottom {
  width: 100%; /* 横幅を100%に設定 */
  margin-top: -1px; /* 余白を完全にリセット */
  padding: 0; /* 内側余白をリセット */
  aspect-ratio: 16/1; /* 比率を維持 */
  background: url("../img/operation_bottom.svg") no-repeat center center; /* 背景を中央に配置 */
  background-size: cover; /* 背景全体を要素に収める */
  position: relative; /* 他の要素に干渉しないようにする */
  display: block; /* 必要なら確実にブロック要素として表示 */
  overflow: visible; /* 内容の切り取りを防ぐ */
  line-height: 0; /* 子要素の高さによる影響を防止 */
}
main .other .other_wrap {
  justify-content: space-evenly;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
@media screen and (max-width: 1300px) {
  main .other .other_wrap {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 768px) {
  main .other .other_wrap {
    justify-content: center;
  }
}
main .other .other_item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  max-width: 330px;
  width: 100%;
  text-align: left;
  padding: 10px 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 1300px) {
  main .other .other_item {
    max-width: calc(50% - 20px);
  }
}
@media screen and (max-width: 768px) {
  main .other .other_item {
    max-width: 100%;
    padding: 10px 0px;
  }
}
main .other .other_item .o_title {
  font-size: 1.8rem;
  margin-bottom: 5px;
  font-weight: bolder;
}
main .other .other_item p {
  font-family: "Noto Sans JP", "メイリオ", "Meiryo", sans-serif;
  font-size: 1.4rem;
  line-height: 1.6;
}
main .other .other_item img {
  max-width: 50px;
  height: auto;
  margin-bottom: 7px;
  margin-right: 15px;
}
main .support .support_wrap {
  justify-content: space-evenly;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
main .support .support_item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  max-width: 750px;
  width: 100%;
  text-align: left;
  padding: 10px 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 600px) {
  main .support .support_item {
    padding: 10px 0px;
  }
}
main .support .support_item img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 15px;
}
@media screen and (max-width: 768px) {
  main .support .support_item img {
    width: 50px;
    height: 50px;
  }
}
main .support .support_item .support_text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
main .support .support_item .support_title {
  font-size: 1.8rem;
  margin-bottom: 5px;
  font-weight: bolder;
  color: #37A7C4;
}
main .support .support_item p {
  font-family: "Noto Sans JP", "メイリオ", "Meiryo", sans-serif;
  font-size: 1.4rem;
  line-height: 1.6;
}
main .faq .faq_contents {
  padding: 20px 0 0 0;
}
@media screen and (max-width: 600px) {
  main .faq .faq_contents {
    padding: 16px 0 0 0;
  }
}
main .faq .q_title {
  align-items: center;
  font-size: 1.4rem;
  background: #fff;
  cursor: pointer;
  padding: 20px;
  font-weight: bold;
  gap: 20px;
  border-radius: 10px;
  transition: all 0.5s ease-out;
}
@media screen and (max-width: 600px) {
  main .faq .q_title {
    gap: 10px;
    padding: 15px 8px;
  }
}
main .faq .q_title:before {
  content: "";
  display: block;
  min-width: 48px;
  min-height: 48px;
  background: url("../img/icn_q.svg") no-repeat;
  background-size: auto;
}
@media screen and (max-width: 600px) {
  main .faq .q_title:before {
    min-width: 40px;
    min-height: 40px;
  }
}
main .faq .q_title:hover {
  background: #FFDA77;
}
main .faq .q_title.open {
  border-radius: 10px 10px 0 0;
  background: #FFDA77;
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.1);
}
main .faq .q_text {
  flex-grow: 1;
  font-size: 1.6rem;
  font-weight: bold;
}
main .faq .toggle_icon {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 600px) {
  main .faq .toggle_icon {
    display: none;
  }
}
main .faq .toggle_icon::before, main .faq .toggle_icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #EF8400;
  transition: all 0.3s ease-out;
}
main .faq .toggle_icon::before {
  transform: rotate(0deg);
}
main .faq .toggle_icon::after {
  transform: rotate(90deg);
}
main .faq .toggle_icon.active::after {
  transform: rotate(0deg);
}
main .faq .a_content {
  display: none;
  background-color: #fff;
  padding: 20px 5px;
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 10px 10px;
}
main .faq .a_inner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-right: 25px;
}
@media screen and (max-width: 600px) {
  main .faq .a_inner {
    gap: 10px;
  }
}
main .faq .a_inner:before {
  content: "";
  display: block;
  min-width: 48px;
  min-height: 48px;
  background: url("../img/icn_a.svg") no-repeat;
  background-size: auto;
  margin: 0 0 0 15px;
}
@media screen and (max-width: 600px) {
  main .faq .a_inner:before {
    margin: 2px;
    min-width: 40px;
    min-height: 40px;
  }
}
main .faq .a_inner.open {
  opacity: 1;
  height: auto;
  margin-top: 0;
}
main .faq .a_text {
  font-size: 1.4rem;
  line-height: 1.6;
}
@media screen and (max-width: 800px) {
  main .none_br_tab br {
    display: none;
  }
}
@media screen and (max-width: 650px) {
  main .none_br_sp br {
    display: none;
  }
}
main .inquiry .logo_section {
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
main .inquiry .logo {
  width: 200px;
  height: auto;
}
main .inquiry .vertical_line {
  width: 4px;
  height: 80px;
  background-color: #dcdcdc;
}
main .inquiry .company_info {
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
}
main .inquiry .company_name {
  font-weight: bold;
  font-size: 18px;
  margin: 0;
}
main .inquiry .department,
main .inquiry .address {
  font-size: 14px;
  margin: 3px 0;
  font-weight: 100;
}
main .inquiry .department a,
main .inquiry .address a {
  color: #EF8400;
  text-decoration: none;
  transition: all 0.3s ease-out;
}
main .inquiry .department a:visited,
main .inquiry .address a:visited {
  color: #EF8400;
}
main .inquiry .department a:hover,
main .inquiry .address a:hover {
  color: #FEA55B;
}
main .inquiry .department a:active,
main .inquiry .address a:active {
  color: #EF8400;
}
@media (max-width: 856px) {
  main .inquiry .logo_section {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  main .inquiry .vertical_line {
    width: 250px;
    height: 4px;
  }
  main .inquiry .company_info,
  main .inquiry .address {
    text-align: center;
  }
}
main .inquiry .contact_button {
  padding: 60px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
main .inquiry .button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #EF8400;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  padding: 10px 50px;
  border-radius: 25px;
  gap: 10px;
  box-shadow: 0 1px 0 1px rgb(208, 115, 0);
  transition: all 0.5s ease;
}
main .inquiry .button:hover {
  background: #FEA55B; /* ホバー時の色 */
}
main .inquiry .button img {
  width: 25px;
}

#scrollTop {
  display: none;
  position: fixed;
  bottom: 45px;
  right: 35px;
  width: 44px;
  height: 44px;
  background: #EF8400 url("../img/up.svg") no-repeat center;
  background-size: 28px;
  box-shadow: 0 2px 0 0 rgb(208, 115, 0);
  border-radius: 22px;
  cursor: pointer;
  z-index: 100;
  transition: background 0.2s ease-out;
}
@media screen and (max-width: 768px) {
  #scrollTop {
    bottom: 20px;
    right: 15px;
  }
}
#scrollTop:hover {
  background: #FEA55B url("../img/up.svg") no-repeat center;
  background-size: 28px;
}

footer {
  position: sticky;
  top: 100vh;
  background: #EF8400;
}
footer .privacy_policy_trademark {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  color: #fff;
  gap: 20px;
  padding: 40px;
}
@media screen and (max-width: 893px) {
  footer .privacy_policy_trademark {
    display: block;
  }
}
footer .privacy_policy {
  flex: 1;
  font-weight: bold;
  font-size: 1.6rem;
  padding-bottom: 20px;
}
footer a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease-out;
}
footer a:visited {
  color: #fff;
}
footer a:hover {
  color: #ffdeb5;
}
footer a:active {
  color: #FCF5EF;
}
footer .trademark {
  flex: 0 0 auto;
  text-align: justify;
  font-size: 1rem;
  line-height: 1.8;
}
footer .trademark span {
  font-size: 1.4rem;
}
footer .copy {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  padding-bottom: 25px;
}/*# sourceMappingURL=style.css.map */