@charset "UTF-8";
body {
  background: #fff;
  color: #111;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
img {
  width: 100%;
}
.pc {
  display: none;
}
.sp {
  display: block;
}
a {
  transition: 0.3s all;
}
.inner,
.mv_inner {
  width: 92vw;
  margin: 0 auto;
}
.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
em {
  font-style: normal;
}
.fc_blue {
  color: #2c6dd5;
}
.fc_yel {
  color: #ffff5a;
}
.fc_og {
  color: #ff8400;
}
@media screen and (min-width: 1000px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
  a:hover {
    opacity: 0.7;
  }
  .flex_pc {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .inner {
    width: 1000px;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/*===================
header
=====================*/
header {
  margin: 0 auto;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  height: 15vw;
  z-index: 20;
  background-color: #fff;
}
header .h_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header h1 {
  margin: 0 auto 0 0;
  width: 44vw;
}
header .right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
}
header .right a {
  display: block;
}
@media screen and (min-width: 1000px) {
  header {
    height: 90px;
  }
  header h1 {
    width: 276px;
  }
  header .right {
    gap: 20px;
  }
  header .right a.tel {
    display: inline-block;
    font-size: 36px;
    padding: 0 0 0 65px;
    margin: 4px 0 0;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 0.6;
    position: relative;
  }
  header .right a.tel::after {
    position: absolute;
    content: "";
    display: block;
    background: url(../../img/akiya_satei/free01.png) no-repeat left center;
    background-size: 100%;
    width: 54px;
    height: 35px;
    left: 0;
    top: -6px;
  }
  header .right a.tel small {
    font-size: 12px;
  }
  header .right a.mail {
    width: 233px;
    height: 60px;
    background: #fe9900;
    background: linear-gradient(
      180deg,
      rgba(254, 153, 0, 1) 0%,
      rgba(245, 119, 0, 1) 100%
    );
    text-align: center;
    border-radius: 5px;
    color: #fff;
    font-size: 22px;
    position: relative;
  }
  header .right a.mail span {
    position: absolute;
    display: block;
    top: 50%;
    left: 52%;
    transform: translate(-50%, -50%);
    width: 100%;
  }
  header .right a.mail::before,
  header .right a.mail::after {
    position: absolute;
    content: "";
    display: block;
    top: 50%;
    transform: translate(0, -50%);
  }
  header .right a.mail::before {
    background: url("../../img/akiya_satei/mail_icon.png") center center
      no-repeat;
    background-size: 100%;
    width: 31px;
    height: 22px;
    left: 15px;
  }
  header .right a.mail::after {
    background: url("../../img/akiya_satei/mail_arrow.png") center center
      no-repeat;
    background-size: 100%;
    width: 25px;
    height: 25px;
    right: 13px;
  }
}
@media screen and (min-width: 1200px) {
  header .inner {
    width: 1200px;
  }
}
@media screen and (max-width: 999px) {
  header .right a {
    width: 11vw;
    height: 11vw;
  }
  header .inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 480px) {
  header .right a {
    width: 13vw;
    height: 13vw;
  }
}
/*===================
footer
=====================*/
footer {
  padding: 10vw 0 0;
}
footer .f_tel a {
  display: inline-block;
  font-size: 36px;
  padding: 0 0 0 65px;
  margin: 4px 0 0;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 0.6;
  position: relative;
}
footer .f_tel a::after {
  position: absolute;
  content: "";
  display: block;
  background: url(../../img/akiya_satei/free01.png) no-repeat left center;
  background-size: 100%;
  width: 54px;
  height: 35px;
  left: 0;
  top: -6px;
}
footer .f_tel a small {
  font-size: 12px;
}
footer .copyright {
  border-top: 1px solid #eee;
  padding: 0.5em 0;
  font-size: 12px;
  text-align: center;
}
footer .areaList {
  margin: 2em;
}
footer .areaList ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 0.5em;
  font-size: 12px;
  line-height: normal;
}
footer .areaList ul li {
  padding: 0 0.5em 0 0;
  margin: 0 0.5em 0 0;
  border-right: 1px solid #ccc;
}
footer .areaList ul li:last-child {
  border-right: none;
}
#page-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 10;
}
#page-top a {
  display: block;
  height: 69px;
  opacity: 1;
  transition: ease-in 0.3s;
}
@media screen and (min-width: 1000px) {
  footer {
    padding: 60px 0 0;
  }
  footer .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  footer .f_logo {
    width: 332px;
  }
  footer .f_tel {
    width: 332px;
  }
  #page-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
  }
  #page-top a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 999px) {
  footer .f_logo {
    border-bottom: 1px solid #cfd9e7;
    text-align: center;
    padding: 0 0 5vw;
    margin: 0 0 5vw;
  }
  footer .f_logo img {
    width: 70vw;
  }
  footer .f_tel {
    text-align: center;
  }
  footer .f_tel a {
    font-size: 10vw;
  }
  footer .f_tel a small {
    font-size: 2.6vw;
  }
  #page-top a {
    width: 15vw;
    height: 15vw;
  }
}

/*===================
mv
=====================*/
.mv {
  background: url("../../img/akiya_satei/sp/mv_bg.jpg") center top no-repeat;
  background-size: cover;
  margin: 15vw 0 0;
}
.mv .inner {
  padding: 10vw 0 53vw;
  position: relative;
}
.mv .inner .icon {
  position: absolute;
  bottom: inherit;
  right: 0;
}
.mv .inner .icon img {
  display: block;
  width: 72vw;
  height: 44.8vw;
}
.mv .inner .mv_img {
  position: absolute;
  left: 0;
  bottom: 0;
}
.mv .inner .mv_img img {
  width: 43vw;
  height: 72.33vw;
}
.mv .txt_wrap {
  padding: 5.3vw 4vw;
  width: 92vw;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 25px;
  box-shadow: 10px 10px 16px -6px rgba(0, 0, 0, 0.3);
}
.mv .txt_wrap .txt {
  text-align: center;
}
.mv .txt_wrap .txt .txt01 {
  font-size: 26px;
  font-weight: 600;
}
.mv .txt_wrap .txt .txt01 span {
  background-color: #417fe2;
  color: #fff;
  font-size: 5.3vw;
  font-weight: 600;
  padding: 5px 5px 2px;
  display: inline-block;
  position: relative;
  margin: 0 1vw;
}
.mv .txt_wrap .txt .txt01 span::before,
.mv .txt_wrap .txt .txt01 span::after {
  position: absolute;
  content: "";
  display: block;
}
.mv .txt_wrap .txt .txt01 span::before {
  width: 0;
  height: 0;
  border-style: solid;
  border-left: 3vw solid transparent;
  border-bottom: 10vw solid #417fe2;
  border-top: 0;
  left: -2.8vw;
  bottom: 0;
}
.mv .txt_wrap .txt .txt01 span::after {
  width: 0;
  height: 0;
  border-right: 3vw solid transparent;
  border-top: 10vw solid #417fe2;
  border-bottom: 0;
  right: -2.8vw;
  top: 0;
}
.mv .txt_wrap .txt .txt02 {
  color: #417fe2;
  font-size: 9.6vw;
  font-weight: 600;
  line-height: 1.2;
  padding: 10px 0 5px;
  text-shadow: 2px 2px 5px rgba(255, 255, 255, 1);
}
.mv .txt_wrap .txt .txt02 small,
.mv .txt_wrap .txt .txt03 .txt03_01 small {
  font-size: 5.76vw;
}
.mv .txt_wrap .txt .txt03 {
  font-weight: 800;
}
.mv .txt_wrap .txt .txt03 .txt03_01 {
  position: relative;
  padding: 0 25px 0 0;
}
.mv .txt_wrap .txt .txt03 .txt03_01 small {
  position: absolute;
  right: 16px;
  bottom: 11px;
}
.mv .txt_wrap .txt .txt03 .txt03_01 img {
  width: 90%;
}
.mv .txt_wrap .txt .txt03 .txt03_02 {
  font-size: 6.4vw;
}
@media screen and (min-width: 1000px) {
  .mv {
    background: url("../../img/akiya_satei/mv_bg.jpg") center center no-repeat;
    background-size: cover;
    height: 643px;
    margin: 90px 0 0;
  }
  .mv .inner {
    padding: 60px 0 80px;
  }
  .mv .inner .icon {
    right: -80px;
    top: 50%;
    transform: translate(0, -50%);
    bottom: inherit;
    left: inherit;
  }
  .mv .inner .icon img {
    width: 230px;
    height: 476px;
    display: block;
  }
  .mv .inner .mv_img {
    position: absolute;
    left: -180px;
    top: 0;
    bottom: inherit;
  }
  .mv .inner .mv_img img {
    width: 526px;
    height: 643px;
  }
  .mv .txt_wrap {
    padding: 40px 30px 30px;
    width: 854px;
    margin: 0 auto 0 0;
    background: #ffffff;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.9) 50%
    );
    border-radius: 100px;
  }
  .mv .txt_wrap .txt {
    width: 460px;
    margin: 0 0 0 auto;
  }
  .mv .txt_wrap .txt .txt01 span {
    font-size: 32px;
    margin: 0 9px;
    padding: 5px;
  }
  .mv .txt_wrap .txt .txt01 span::before {
    border-style: solid;
    border-left: 20px solid transparent;
    border-bottom: 64px solid #417fe2;
    border-top: 0;
    left: -19px;
    bottom: 0;
  }
  .mv .txt_wrap .txt .txt01 span::after {
    border-style: solid;
    border-right: 20px solid transparent;
    border-top: 64px solid #417fe2;
    border-bottom: 0;
    right: -19px;
    top: 0;
  }
  .mv .txt_wrap .txt .txt02 {
    font-size: 58px;
    padding: 10px 0 10px;
  }
  .mv .txt_wrap .txt .txt02 small,
  .mv .txt_wrap .txt .txt03 .txt03_01 small {
    font-size: 36px;
  }
  .mv .txt_wrap .txt .txt03 .txt03_02 {
    font-size: 48px;
  }
}
@media screen and (max-width: 999px) {
  .mv .inner {
    width: 100%;
  }
  .mv .inner::after {
    position: absolute;
    content: "";
    display: block;
    background: url("../../img/akiya_satei/sp/mv_bg.png") center bottom
      no-repeat;
    background-size: 100%;
    width: 100%;
    height: 12vw;
    bottom: -0.3vw;
    left: 0;
  }
}
/*===================
.contact_box
=====================*/
.contact_box {
  background-color: #fff6ed;
}
.contact_box .inner {
  padding: 8vw 0 18vw;
}
.contact_box dl {
  position: relative;
  box-shadow: 0px 0px 16px -6px rgba(129, 79, 0, 0.1);
}
.contact_box dl::after {
  position: absolute;
  content: "";
  display: block;
  background: url("../../img/akiya_satei/cv.png") center top no-repeat;
  background-size: 100%;
  width: 31.73vw;
  height: 33.86vw;
  right: -2vw;
  top: -13vw;
}
.contact_box dl dt {
  background-color: #ff9c00;
  padding: 10px 30px;
  font-size: 4.8vw;
  font-weight: 600;
}
.contact_box dl dt h1 {
  color: #fff;
  line-height: 1.4;
}
.contact_box dl dd {
  background-color: #fff;
  padding: 8vw 0 4vw;
}
.contact_box dl dd a {
  display: block;
  border-radius: 13vw;
  box-shadow: 10px 10px 16px 0px rgba(0, 0, 0, 0.1);
}
.contact_box dl dd a.mail {
  background: #fe9900;
  background: linear-gradient(
    180deg,
    rgba(254, 153, 0, 1) 0%,
    rgba(245, 119, 0, 1) 100%
  );
  text-align: center;
  color: #fff;
  font-size: 4.8vw;
  font-weight: 600;
  position: relative;
}
.contact_box dl dd a.mail::before,
.contact_box dl dd a.mail::after {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  transform: translate(0, -50%);
}
.contact_box dl dd a.mail::before {
  background: url("../../img/akiya_satei/mail_icon.png") center center no-repeat;
  background-size: 100%;
  width: 7.2vw;
  height: 5vw;
  left: 7vw;
}
.contact_box dl dd a.mail::after {
  background: url("../../img/akiya_satei/mail_arrow.png") center center
    no-repeat;
  background-size: 100%;
  width: 6.1vw;
  height: 6.1vw;
  right: 7vw;
}
.contact_box dl dd a.mail span {
  position: absolute;
  display: block;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.contact_box dl dd a.tel {
  background: #0d9333;
  background: linear-gradient(
    180deg,
    rgba(21, 198, 78, 1) 0%,
    rgba(13, 147, 51, 1) 100%
  );
  text-align: center;
  color: #fff;
  font-size: 8.5vw;
  position: relative;
  font-family: "Lato", sans-serif;
  font-weight: 400;
}
.contact_box dl dd a.tel span {
  position: absolute;
  top: 50%;
  right: 7vw;
  transform: translate(0, -50%);
  line-height: 1;
}
.contact_box dl dd a.tel::before {
  position: absolute;
  content: "";
  display: block;
  background: url("../../img/akiya_satei/tel_icon02.png") center center
    no-repeat;
  background-size: 100%;
  width: 10.6vw;
  height: 6.9vw;
  left: 7vw;
  top: 50%;
  transform: translate(0, -50%);
}
.contact_box dl dd a.tel small {
  display: block;
  font-size: 2vw;
}
@media screen and (min-width: 1000px) {
  .contact_box .inner {
    padding: 70px 0 134px;
  }
  .contact_box dl::after {
    background: url("../../img/akiya_satei/cv.png") center top no-repeat;
    background-size: 100%;
    width: 254px;
    height: 272px;
    right: 10px;
    bottom: -5px;
    top: inherit;
  }
  .contact_box dl dt {
    font-size: 32px;
    padding: 10px 30px;
  }
  .contact_box dl dd {
    padding: 30px;
  }
  .contact_box dl dd .btn_wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
  }
  .contact_box dl dd a {
    display: block;
    width: 342px;
    height: 84px;
    border-radius: 50px;
  }
  .contact_box dl dd a.mail {
    font-size: 23px;
  }

  .contact_box dl dd a.mail::before {
    width: 33px;
    height: 23px;
    left: 15px;
  }
  .contact_box dl dd a.mail::after {
    width: 27px;
    height: 27px;
    right: 13px;
  }
  .contact_box dl dd a.tel {
    font-size: 36px;
    line-height: 1.2;
    text-align: left;
  }

  .contact_box dl dd a.tel::before {
    width: 47px;
    height: 31px;
    left: 20px;
    right: inherit;
  }
  .contact_box dl dd a.tel span {
    top: 50%;
    transform: translate(0, -50%);
    left: 80px;
    width: 100%;
  }
  .contact_box dl dd a.tel small {
    font-size: 10px;
  }
}
@media screen and (max-width: 999px) {
  .contact_box dl dd a {
    width: 84vw;
    height: 15vw;
    margin: 0 auto 3vw;
  }
}
/* contact02 */
.contact02.contact_box .inner {
  padding: 50px 0 0;
}
.contact02.contact_box .tit {
  text-align: center;
  font-weight: 600;
}
.contact02.contact_box .tit .txt01 span {
  border-radius: 80px;
  border: 3px solid #ff9c00;
  background-color: #fff;
  padding: 10px 30px;
  display: inline-block;
  font-size: 4vw;
  position: relative;
}
.contact02.contact_box .tit .txt01 span::before,
.contact02.contact_box .tit .txt01 span::after {
  position: absolute;
  content: "";
  display: block;
  left: 50%;
  transform: translate(-50%, 0);
}
.contact02.contact_box .tit .txt01 span::before {
  background-color: #ff9c00;
  width: 3px;
  height: 30px;
  bottom: -33px;
}
.contact02.contact_box .tit .txt01 span::after {
  background-color: #ff9c00;
  width: 13px;
  height: 13px;
  border-radius: 20px;
  bottom: -42px;
}
.contact02.contact_box .tit .txt02 {
  font-size: 4.8vw;
  margin: 50px 0 0;
}
.contact02.contact_box .tit .txt02 img {
  width: 65vw;
}
@media screen and (min-width: 1000px) {
  .contact02.contact_box .tit .txt01 span {
    font-size: 36px;
    padding: 10px 30px;
  }
  .contact02.contact_box .tit .txt02 {
    font-size: 42px;
    margin-bottom: -40px;
  }
  .contact02.contact_box .tit .txt02 img {
    width: 324px;
    height: 99px;
  }
}
@media screen and (max-width: 999px) {
  .contact02.contact_box dl::after {
    top: -10vw;
  }
  .contact02.contact_box .tit .txt01 span {
    display: block;
    line-height: 1.4;
  }
}
/*===================
.sec01
=====================*/
.sec01 {
  background: url(../../img/akiya_satei/sec01_bg.jpg) center bottom no-repeat;
  background-size: cover;
}
.sec01 .inner {
  position: relative;
  padding: 18vw 0;
}
.sec01 h1 {
  text-align: center;
  position: absolute;
  top: -9vw;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
}
.sec01 h1 span {
  background-color: #fff;
  font-size: 4vw;
  font-weight: 700;
  display: inline-block;
  border-radius: 13vw;
  padding: 2vw 8vw;
  position: relative;
}
.sec01 h1 span::after {
  position: absolute;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 5vw solid transparent;
  border-left: 5vw solid transparent;
  border-top: 6vw solid #fff;
  border-bottom: 0;
  bottom: -4vw;
  left: 50%;
  transform: translate(-50%, 0);
}
.sec01 .box01 {
  box-shadow: 10px 10px 16px 0px rgba(17, 63, 136, 0.3);
  border: 2px solid #fff;
  margin: 0 0 40px;
}
.sec01 .box01 dt {
  background-color: #2c6dd5;
  padding: 5.3vw 4vw 4vw;
}
.sec01 .box01 dt span {
  display: inline-block;
  margin: 0 8px;
}
.sec01 .box01 dt .tit01 {
  color: #fff;
  font-size: 8.5vw;
  font-weight: 600;
}
.sec01 .box01 dt .tit02 {
  background-color: #fff;
  font-size: 3.6vw;
  font-weight: 600;
  text-align: center;
  padding: 2vw;
  line-height: 1.4;
}
.sec01 .box01 dd {
  background-color: #fff;
  padding: 5vw;
  font-size: 3.7vw;
  line-height: 1.8;
}
.sec01 .box01 dd em {
  text-decoration: underline;
}
.sec01 .txt {
  text-align: center;
  color: #fff;
  font-weight: 600;
}
.sec01 .txt .txt01 {
  font-size: 4vw;
}
.sec01 .txt .txt02 {
  font-size: 4vw;
}
.sec01 .txt .txt02 span {
  font-size: 4.8vw;
  background-color: #fff;
  padding: 5px 10px;
  margin: 0 5px;
}
.sec01 .txt .txt03 {
  font-size: 4vw;
}
.sec01 .txt .txt03 span {
  font-size: 7vw;
}
@media screen and (min-width: 1000px) {
  .sec01 .inner {
    padding: 130px 0;
  }
  .sec01 h1 {
    top: -75px;
  }
  .sec01 h1 span {
    font-size: 36px;
    padding: 25px 50px;
    line-height: 1.4;
    border-radius: 100px;
  }

  .sec01 h1 span::after {
    border-style: solid;
    border-right: 35px solid transparent;
    border-left: 35px solid transparent;
    border-top: 40px solid #fff;
    border-bottom: 0;
    bottom: -30px;
  }
  .sec01 .box01 {
    border: 4px solid #fff;
    margin: 0 0 40px;
  }
  .sec01 .box01 dt {
    padding: 20px 45px;
  }
  .sec01 .box01 dt .tit01 {
    color: #fff;
    font-size: 65px;
  }
  .sec01 .box01 dt .tit02 {
    font-size: 24px;
    padding: 10px 40px;
  }
  .sec01 .box01 dd {
    font-size: 18px;
    padding: 20px 45px;
  }
  .sec01 .txt .txt01 {
    font-size: 30px;
    line-height: 1.8;
  }
  .sec01 .txt .txt02 {
    font-size: 36px;
    padding: 10px 50px;
  }
  .sec01 .txt .txt02 span {
    font-size: 48px;
  }
  .sec01 .txt .txt03 {
    font-size: 48px;
    line-height: 1.2;
  }
  .sec01 .txt .txt03 span {
    font-size: 72px;
  }
}

@media screen and (max-width: 999px) {
  .sec01 .box01 dt {
    text-align: center;
  }
  .sec01 .box01 dt .tit02 {
    display: block;
    margin: 0;
  }
}

/*===================
.sec02
=====================*/
.sec02 {
  background-color: #f5f7fa;
  padding: 8vw 0 20vw;
}
.sec02 .inner .tit {
  position: relative;
}
.sec02 .inner .tit .icon {
  position: absolute;
  width: 33.6vw;
  height: 17.6vw;
  left: -3vw;
  top: -17vw;
}
.sec02 .inner .tit h1 {
  text-align: center;
  font-size: 4vw;
  font-weight: 600;
  margin: 0 0 8vw;
}
.sec02 .inner .tit h1 em,
.sec02 .inner .tit h1 span {
  font-size: 6.4vw;
}
.sec02 .inner .tit h1 em {
  padding: 0 0 5px;
  border-bottom: 3px dotted #2c6dd5;
}
.sec02 .inner .wrap {
  background: url("../../img/akiya_satei/sec02_bg.jpg") center center no-repeat;
  background-size: cover;
  box-shadow: 10px 10px 16px 0px rgba(0, 0, 0, 0.1);
  border-radius: 40px;
  padding: 8vw 4vw;
}
.sec02 .inner .wrap {
  position: relative;
}
.sec02 .inner .wrap::after {
  position: absolute;
  content: "";
  display: block;
  background: url("../../img/akiya_satei/sec02_arrow.png") center bottom
    no-repeat;
  background-size: 100%;
  width: 3vw;
  height: 17vw;
  bottom: -10vw;
  left: 50%;
  transform: translate(-50%, 0);
}
.sec02 .inner .wrap .cont01 {
  margin: 0 0 7vw;
}
.sec02 .inner .wrap .cont01 dt {
  font-size: 4vw;
  padding: 0 0 1vw;
  margin: 0 0 2.6vw;
  border-bottom: 1px solid #000;
}
.sec02 .inner .wrap .cont01 dd {
  font-size: 3vw;
}
.sec02 .inner .wrap .cont02 .lead01 {
  font-size: 4vw;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.05em;
  margin: 0 0 12vw;
}
.sec02 .inner .wrap .cont02 .lead01 .txt01 {
  margin: 0 0 4vw;
}
.sec02 .inner .wrap .cont02 .lead01 span {
  font-size: 6.4vw;
  background-color: #ffff5a;
  position: relative;
  padding: 10px;
  margin: 0 10px;
  letter-spacing: 0.05em;
}
.sec02 .inner .wrap .cont02 .lead01 span::after {
  position: absolute;
  content: "";
  display: block;
  border: 1px solid #2c6dd5;
  top: -5px;
  left: -5px;
  width: 100%;
  height: 100%;
}
.sec02 .inner .wrap .cont02 ul li {
  margin: 0 0 20vw;
}
.sec02 .inner .wrap .cont02 ul li dl {
  position: relative;
  width: 83vw;
  height: 63vw;
}
.sec02 .inner .wrap .cont02 ul li:first-of-type dl {
  background: url("../../img/akiya_satei/sec02_img01.png?date20250825") center
    center no-repeat;
  background-size: contain;
}
.sec02 .inner .wrap .cont02 ul li:nth-of-type(2) dl {
  background: url("../../img/akiya_satei/sec02_img02.png?date20250825") center
    center no-repeat;
  background-size: contain;
}
.sec02 .inner .wrap .cont02 ul li:nth-of-type(3) dl {
  background: url("../../img/akiya_satei/sec02_img03.png?date20250825") center
    center no-repeat;
  background-size: contain;
}
.sec02 .inner .wrap .cont02 ul li:nth-of-type(4) dl {
  background: url("../../img/akiya_satei/sec02_img04.png?date20250825") center
    center no-repeat;
  background-size: contain;
}
.sec02 .inner .wrap .cont02 ul li dl dt {
  position: absolute;
  top: -30px;
  left: -15px;
  width: 21vw;
  height: 21vw;
}
.sec02 .inner .wrap .cont02 ul li dl dd {
  position: absolute;
  bottom: -30px;
  right: -15px;
  background-color: #fff;
  box-shadow: 10px 10px 16px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 3vw 4vw;
  font-size: 3vw;
  width: 80vw;
  height: 16vw;
}
.sec02 .inner .wrap .cont02 .lead02 {
  font-size: 4vw;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 2;
}
.sec02 .inner .wrap .cont02 .lead02 .icon {
  margin: 0 0 20px;
}
.sec02 .inner .wrap .cont02 .lead02 .icon img {
  width: 19.2vw;
  height: 21.3vw;
}
.sec02 .inner .wrap .cont02 .lead02 .txt01 {
  font-size: 3.7vw;
  font-weight: normal;
}
.sec02 .inner .wrap .cont02 .lead02 .txt03 span {
  font-size: 6.4vw;
  background-color: #ffff5a;
  position: relative;
  padding: 10px;
  letter-spacing: 0.05em;
}
.sec02 .inner .wrap .cont02 .lead02 .txt03 span::after {
  position: absolute;
  content: "";
  display: block;
  border: 1px solid #2c6dd5;
  top: -5px;
  left: -5px;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 1000px) {
  .sec02 {
    padding: 70px 0 170px;
  }
  .sec02 .inner .tit .icon {
    width: 352px;
    height: 201px;
    left: -60px;
    top: -180px;
  }
  .sec02 .inner .tit h1 {
    font-size: 48px;
    margin: 0 0 40px;
  }
  .sec02 .inner .tit h1 em {
    border-bottom: 8px dotted #2c6dd5;
    padding: 0 0 10px;
  }
  .sec02 .inner .tit h1 em,
  .sec02 .inner .tit h1 span {
    font-size: 72px;
  }
  .sec02 .inner .wrap {
    border-radius: 40px;
    padding: 60px 40px;
  }
  .sec02 .inner .wrap::after {
    width: 20px;
    height: 101px;
    bottom: -55px;
  }
  .sec02 .inner .wrap .cont01 {
    margin: 0 0 65px;
  }
  .sec02 .inner .wrap .cont01 dt {
    font-size: 30px;
    padding: 0 0 15px;
    margin: 0 0 30px;
  }
  .sec02 .inner .wrap .cont01 dd {
    font-size: 18px;
  }
  .sec02 .inner .wrap .cont02 .lead01 {
    font-size: 32px;
    margin: 0 0 40px;
    line-height: 2;
  }

  .sec02 .inner .wrap .cont02 .lead01 .txt01 {
    margin: 0 0 0;
  }
  .sec02 .inner .wrap .cont02 .lead01 span {
    font-size: 48px;
    padding: 10px 20px;
  }
  .sec02 .inner .wrap .cont02 ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .sec02 .inner .wrap .cont02 ul li {
    width: 50%;
    padding: 30px 15px;
    margin: 0 0 40px;
  }
  .sec02 .inner .wrap .cont02 ul li dl {
    width: 430px;
    height: 325px;
  }
  .sec02 .inner .wrap .cont02 ul li dl dt {
    width: 140px;
    height: 140px;
  }
  .sec02 .inner .wrap .cont02 ul li dl dd {
    width: 370px;
    height: 90px;
    font-size: 16px;
    padding: 20px 40px;
  }
  .sec02 .inner .wrap .cont02 .lead02 {
    font-size: 30px;
  }
  .sec02 .inner .wrap .cont02 .lead02 .icon img {
    width: 113px;
    height: 126px;
  }
  .sec02 .inner .wrap .cont02 .lead02 .txt01 {
    font-size: 24px;
    font-weight: normal;
  }
  .sec02 .inner .wrap .cont02 .lead02 .txt03 span {
    font-size: 48px;
    padding: 10px;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 479px) {
  .sec02 .inner .wrap .cont02 .lead01 span::after,
  .sec02 .inner .wrap .cont02 .lead02 .txt03 span::after {
    top: -3px;
    left: -3px;
  }
}
/*===================
.sec03
=====================*/
.sec03 {
  background: url("../../img/akiya_satei/sec03_bg.jpg") center bottom no-repeat;
  background-size: cover;
}
.sec03 .inner {
  position: relative;
  padding: 26vw 0 18vw;
}
.sec03 .inner .icon {
  position: absolute;
  top: -2vw;
  left: 50%;
  transform: translate(-50%, 0);
  width: 31.4vw;
  height: 30.6vw;
  z-index: 5;
}
.sec03 .box {
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 10px 10px 16px 0px rgba(0, 0, 0, 0.1);
  position: relative;
  text-align: center;
  font-weight: 600;
  padding: 8vw 4vw 5vw;
}
.sec03 .box .txt01 {
  font-size: 5.3vw;
}
.sec03 .box .txt01 span {
  color: #ffffff;
  background-color: #ff9c00;
  margin: 0 5px;
  padding: 5px;
}
.sec03 .box .txt01 small {
  font-size: 4vw;
}
.sec03 .box .txt02 {
  font-size: 4vw;
}
.sec03 .box .txt02 span {
  font-size: 4.8;
}
.sec03 .box .txt03 {
  position: relative;
}
.sec03 .box .txt03::before,
.sec03 .box .txt03::after {
  position: absolute;
  content: "";
  display: block;
  width: 284px;
  height: 271px;
  bottom: -60px;
}
.sec03 .box .txt03::before {
  background: url("../../img/akiya_satei/sec03_img01.png") center center
    no-repeat;
  background-size: 100%;
  left: -100px;
}
.sec03 .box .txt03::after {
  background: url("../../img/akiya_satei/sec03_img02.png") center center
    no-repeat;
  background-size: 100%;
  right: -100px;
}
.sec03 .box .txt03 img {
  width: 60%;
}
@media screen and (min-width: 1000px) {
  .sec03 .inner {
    padding: 120px 0;
  }
  .sec03 .inner .icon {
    top: -80px;
    width: 239px;
    height: 233px;
  }
  .sec03 .box {
    border-radius: 30px;
    padding: 50px 50px 30px;
  }
  .sec03 .box .txt01 {
    font-size: 42px;
  }
  .sec03 .box .txt01 small {
    font-size: 32px;
  }
  .sec03 .box .txt02 {
    font-size: 32px;
    margin: 0 0 40px;
  }
  .sec03 .box .txt02 span {
    font-size: 42px;
  }
}
@media screen and (max-width: 999px) {
  .sec03 .box .txt03::before {
    left: -7vw;
    width: 30vw;
    height: 29vw;
    bottom: -26vw;
  }
  .sec03 .box .txt03::after {
    right: -7vw;
    top: -56vw;
    width: 30vw;
    height: 29vw;
  }
  .sec03 .box .txt03 {
    margin: 2vw 0 0;
  }
  .sec03 .box .txt03 img {
    width: 80%;
  }
}
/*===================
.sec04
=====================*/
.sec04 .inner {
  padding: 10vw 0 20vw;
}
.sec04 .inner > .icon {
  text-align: center;
  margin: 0 0 20px;
}
.sec04 .inner > .icon span {
  color: #ffffff;
  font-size: 6.4vw;
  font-weight: 600;
  background-color: #ff9c00;
  padding: 10px 70px;
  border-radius: 50px;
  position: relative;
}
.sec04 .inner > .icon span::after {
  position: absolute;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
  border-top: 20px solid #ff9c00;
  border-bottom: 0;
  bottom: -15px;
  left: 50%;
  transform: translate(-50%, 0);
}
.sec04 .tit {
  text-align: center;
  font-weight: 600;
  margin: 0 0 30px;
}
.sec04 .tit .tit01 {
  text-align: center;
  font-size: 5vw;
}
.sec04 .tit .tit02 {
  font-size: 6vw;
  line-height: 1.2;
}
.sec04 .tit .tit02 span {
  background: -moz-linear-gradient(top, transparent 60%, #ffff5a 40%);
  background: -webkit-linear-gradient(top, transparent 60%, #ffff5a 40%);
  background: linear-gradient(to bottom, transparent 60%, #ffff5a 40%);
}
.sec04 .tit .tit02 em {
  font-size: 20vw;
}
.sec04 .tit .tit02 strong {
  font-size: 9vw;
}
.sec04 .lead01 {
  text-align: center;
  font-size: 3.7vw;
  margin: 0 0 6vw;
  line-height: 2;
}
.sec04 .lead01 strong {
  font-size: 4vw;
}
.sec04 dl {
  border: #ff9c00 5px solid;
  margin: 0 0 9vw;
}
.sec04 dl dt {
  background-color: #ff9c00;
  background-image: repeating-linear-gradient(
    315deg,
    #ff9c00,
    #ff9c00 10px,
    #ffa61a 10px,
    #ffa61a 20px
  );
  color: #fff;
  font-size: 4vw;
  padding: 4vw 0 6vw;
}
.sec04 dl dt strong {
  font-size: 5vw;
}
.sec04 dl dd {
  padding: 5vw 4vw 5vw;
  position: relative;
}
.sec04 dl dd ul li {
  position: relative;
  font-size: 3vw;
  padding: 0 0 10px 30px;
}
.sec04 dl dd ul li::before {
  position: absolute;
  content: "";
  display: block;
  background: url("../../img/akiya_satei/check_icon.png") center center
    no-repeat;
  background-size: 100%;
  width: 4vw;
  height: 5vw;
  left: 0;
  top: 0;
}
.sec04 .lead02 {
  text-align: center;
}
.sec04 .lead02 .txt01 {
  font-size: 4.8vw;
}
.sec04 .lead02 .txt02 {
  font-weight: 600;
  font-size: 9.6vw;
  line-height: 1.4;
}
.sec04 .lead02 .txt02 em {
  padding: 0 0 6px;
  letter-spacing: 0.02em;
  background: url(../../img/akiya_satei/sec04_line.png) left bottom repeat-x;
  background-size: 160%;
}
@media screen and (min-width: 1000px) {
  .sec04 .inner {
    padding: 50px 0 150px;
  }
  .sec04 .inner > .icon span {
    font-size: 42px;
    padding: 10px 70px;
  }
  .sec04 .tit .tit01 {
    font-size: 42px;
  }
  .sec04 .tit .tit02 {
    font-size: 48px;
    line-height: 1;
  }
  .sec04 .tit .tit02 em {
    font-size: 120px;
  }
  .sec04 .tit .tit02 strong {
    font-size: 64px;
  }
  .sec04 .lead01 {
    text-align: center;
    font-size: 22px;
    margin: 0 0 50px;
  }
  .sec04 .lead01 strong {
    font-size: 24px;
  }
  .sec04 dl {
    display: flex;
    justify-content: space-between;
    align-items: normal;
    margin: 0 0 50px;
  }
  .sec04 dl dt {
    width: 23%;
    display: table;
    padding: 0 0 0 15px;
    font-size: 30px;
    line-height: 1.4;
  }
  .sec04 dl dt span {
    display: table-cell;
    vertical-align: middle;
  }
  .sec04 dl dt strong {
    font-size: 36px;
  }
  .sec04 dl dd {
    width: 75%;
    padding: 40px 40px 40px 0;
  }
  .sec04 dl dd::before,
  .sec04 dl dd::after {
    position: absolute;
    content: "";
    display: block;
    width: 0;
    height: 0;
    left: -80px;
  }
  .sec04 dl dd::before {
    border-style: solid;
    border-color: transparent #fff transparent transparent;
    border-width: 0px 64px 250px 0px;
    top: 0;
  }
  .sec04 dl dd::after {
    border-style: solid;
    border-color: transparent #fff transparent transparent;
    border-width: 250px 62px 0px 0px;
    bottom: 0;
  }
  .sec04 dl dd ul li {
    font-size: 22px;
    padding: 0 0 10px 30px;
  }

  .sec04 dl dd ul li::before {
    width: 23px;
    height: 21px;
    top: 9px;
  }
  .sec04 .lead02 .txt01 {
    font-size: 36px;
  }
  .sec04 .lead02 .txt02 {
    font-size: 64px;
  }
  .sec04 .lead02 .txt02 em {
    background: url(../../img/akiya_satei/sec04_line.png) left bottom repeat-x;
    background-size: 100%;
    padding: 0 0 10px;
  }
}

@media screen and (max-width: 999px) {
  .sec04 .tit .tit01 {
    line-height: 1.4;
    margin: 0 0 5vw;
  }
  .sec04 .tit .tit02 span {
    background: -moz-linear-gradient(top, transparent 20%, #ffff5a 0%);
    background: -webkit-linear-gradient(top, transparent 20%, #ffff5a 0%);
    background: linear-gradient(to bottom, transparent 20%, #ffff5a 0%);
  }
  .sec04 dl dt {
    text-align: center;
  }
  .sec04 dl dd::before,
  .sec04 dl dd::after {
    position: absolute;
    content: "";
    display: block;
    width: 0;
    height: 0;
  }
  .sec04 dl dd::before {
    border-style: solid;
    border-color: transparent transparent transparent #fff;
    border-width: 8vw 0px 0px 50vw;
    top: -7vw;
    left: 0;
  }
  .sec04 dl dd::after {
    border-style: solid;
    border-color: transparent transparent #fff transparent;
    border-width: 0 0 8vw 50vw;
    top: -7vw;
    right: 0;
  }
}
/*===================
.sec05
=====================*/
.sec05 {
  background: url("../../img/akiya_satei/sp/sec05_bg.jpg") center top no-repeat;
  background-size: cover;
}
.sec05 .inner {
  position: relative;
  padding: 13vw 0;
}
.sec05 .inner .tit {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 10px 10px 16px 0px rgba(0, 0, 0, 0.1);
  padding: 4vw;
  text-align: center;
  font-weight: 600;
  position: absolute;
  left: 50%;
  top: -13vw;
  transform: translate(-50%, 0);
  width: 92vw;
}
.sec05 .inner .tit .icon span {
  font-size: 5vw;
  display: inline-block;
  position: relative;
}
.sec05 .inner .tit .icon span::before,
.sec05 .inner .tit .icon span::after {
  position: absolute;
  content: "";
  display: block;
  background-color: #ff8400;
  height: 2px;
  width: 35px;
  bottom: 20px;
}
.sec05 .inner .tit .icon span::before {
  margin-right: 10px;
  transform: rotate(60deg);
  left: -35px;
}
.sec05 .inner .tit .icon span::after {
  margin-right: 10px;
  transform: rotate(-60deg);
  right: -35px;
}
.sec05 .inner .tit h1 {
  font-size: 4vw;
}
.sec05 .inner .tit h1 span {
  background: -moz-linear-gradient(top, transparent 60%, #ffff5a 40%);
  background: -webkit-linear-gradient(top, transparent 60%, #ffff5a 40%);
  background: linear-gradient(to bottom, transparent 60%, #ffff5a 40%);
}
.sec05 .lead,
.sec05 .atten {
  color: #fff;
}
.sec05 .lead {
  font-size: 3.7vw;
  margin: 6vw 0 5.3vw;
  line-height: 2;
}
.sec05 ul {
  background-color: rgba(255, 255, 255, 0.88);
  padding: 4vw;
  margin: 0 0 20px;
}
.sec05 ul li {
  font-size: 3.2vw;
  padding: 0 0 20px;
}
.sec05 ul li:nth-of-type(2) {
  padding: 0 0 0;
}
.sec05 .atten {
  font-size: 2.6vw;
  margin: 0 0 8vw;
}
.sec05 .link {
  text-align: center;
}
.sec05 .link a {
  display: inline-block;
  background-color: #222;
  color: #fff;
  position: relative;
  font-size: 36px;
  padding: 20px 130px;
  border-radius: 10px;
}
.sec05 .link a::after {
  position: absolute;
  content: "";
  display: block;
  background: url("../../img/akiya_satei/sec04_arrow.png") center center
    no-repeat;
  background-size: 100%;
  width: 17px;
  height: 29px;
  top: 50%;
  right: 30px;
  transform: translate(0, -50%);
}
@media screen and (min-width: 1000px) {
  .sec05 {
    background: url("../../img/akiya_satei/sec05_bg.jpg") center top no-repeat;
    background-size: cover;
  }
  .sec05 .inner {
    padding: 150px 0 70px;
  }

  .sec05 .inner .tit {
    padding: 50px;
    top: -120px;
    width: 80%;
    border-radius: 30px;
  }
  .sec05 .tit {
    padding: 50px;
  }
  .sec05 .tit .icon {
    font-size: 48px;
  }

  .sec05 .inner .tit .icon span {
    font-size: 48px;
  }

  .sec05 .inner .tit .icon span::before {
    left: -55px;
  }
  .sec05 .inner .tit .icon span::after {
    right: -55px;
  }
  .sec05 .inner .tit .icon span::before,
  .sec05 .inner .tit .icon span::after {
    width: 55px;
    bottom: 40px;
  }
  .sec05 .inner .tit h1 {
    font-size: 40px;
  }
  .sec05 .lead {
    font-size: 20px;
    margin: 50px 0 20px;
  }
  .sec05 .atten {
    font-size: 14px;
    margin: 0 0 70px;
  }
  .sec05 ul {
    padding: 30px 40px;
    margin: 0 0 20px;
  }
  .sec05 ul li {
    font-size: 18px;
    padding: 0 0 20px;
  }
  .sec05 .atten {
    font-size: 14px;
    margin: 0 0 70px;
  }
}
@media screen and (max-width: 999px) {
  .sec05 .link a {
    width: 92vw;
    padding: 3vw 4vw;
    font-size: 5vw;
  }
  .sec05 .link a::after {
    width: 2.5vw;
    height: 4.5vw;
    right: 6vw;
  }
}
/*===================
.sec06
=====================*/
.sec06 {
  background: url("../../img/akiya_satei/sp/sec06_bg01.jpg") center bottom
    no-repeat;
  background-size: cover;
}
.sec06 .inner {
  padding: 7vw 0 90vw;
}
.sec06 .tit {
  text-align: center;
  color: #fff;
  font-weight: 600;
  text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
}
.sec06 .tit .icon {
  margin: 0 0 7vw;
}
.sec06 .tit .icon span {
  display: inline-block;
  border: 2px solid #fff;
  border-radius: 50px;
  padding: 0 9vw;
  font-size: 4.8vw;
}
.sec06 .tit .txt01 {
  font-size: 4vw;
}
.sec06 .tit .txt01 span {
  background-color: #417fe2;
  color: #fff;
  font-size: 5vw;
  font-weight: 600;
  padding: 5px 0 2px;
  display: inline-block;
  position: relative;
  margin: 0 1vw;
}
.sec06 .tit .txt01 span::before,
.sec06 .tit .txt01 span::after {
  position: absolute;
  content: "";
  display: block;
}
.sec06 .tit .txt01 span::before {
  width: 0;
  height: 0;
  border-style: solid;
  border-left: 3vw solid transparent;
  border-bottom: 10vw solid #417fe2;
  border-top: 0;
  left: -2.8vw;
  bottom: 0;
}
.sec06 .tit .txt01 span::after {
  width: 0;
  height: 0;
  border-right: 3vw solid transparent;
  border-top: 10vw solid #417fe2;
  border-bottom: 0;
  right: -2.8vw;
  top: 0;
}
.sec06 .tit .txt02 {
  font-size: 5.6vw;
  line-height: 1.4;
  margin: 0 0 30px;
}
.sec06 .tit .txt02 em {
  font-size: 14.9vw;
}
.sec06 ul {
  position: relative;
}
.sec06 ul li {
  position: absolute;
  font-family: "Zen Kurenaido", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 4vw;
  line-height: 1.4;
  text-align: center;
}
.sec06 ul li:first-of-type {
  background: url("../../img/akiya_satei/sp/sec06_list_bg01.png") center center
    no-repeat;
  background-size: contain;
  padding: 10vw 5vw;
  width: 46vw;
  height: 31vw;
  left: 30px;
  top: -3vw;
}
.sec06 ul li:nth-of-type(2) {
  background: url("../../img/akiya_satei/sp/sec06_list_bg02.png") center center
    no-repeat;
  background-size: contain;
  width: 50vw;
  height: 33vw;
  right: -3vw;
  top: 13vw;
  padding: 10vw 5vw;
}
.sec06 ul li:nth-of-type(3) {
  background: url("../../img/akiya_satei/sp/sec06_list_bg03.png") center center
    no-repeat;
  background-size: contain;
  padding: 10vw 5vw;
  width: 67vw;
  height: 33vw;
  left: -9vw;
  top: 22vw;
}
@media screen and (min-width: 1000px) {
  .sec06 {
    background: url("../../img/akiya_satei/sec06_bg01.jpg") center bottom
      no-repeat;
    background-size: cover;
  }
  .sec06 .inner {
    padding: 70px 0 520px;
  }
  .sec06 .tit .icon {
    margin: 0 0 40px;
  }
  .sec06 .tit .icon span {
    padding: 0 50px;
    font-size: 42px;
  }
  .sec06 .tit .txt01 {
    font-size: 42px;
  }
  .sec06 .tit .txt01 span {
    font-size: 48px;
    margin: 0 9px;
    padding: 5px;
  }
  .sec06 .tit .txt01 span::before {
    border-style: solid;
    border-left: 30px solid transparent;
    border-bottom: 90px solid #417fe2;
    border-top: 0;
    left: -29px;
    bottom: 0;
  }
  .sec06 .tit .txt01 span::after {
    border-style: solid;
    border-right: 30px solid transparent;
    border-top: 90px solid #417fe2;
    border-bottom: 0;
    right: -29px;
    top: 0;
  }

  .sec06 .tit .txt02 {
    font-size: 56px;
    line-height: 1.4;
    margin: 0 0 30px;
  }
  .sec06 .tit .txt02 em {
    font-size: 95px;
  }
  .sec06 ul li {
    font-size: 24px;
  }
  .sec06 ul li:first-of-type {
    background: url("../../img/akiya_satei/sec06_list_bg01.png") center center
      no-repeat;
    background-size: contain;
    padding: 60px 30px;
    width: 324px;
    height: 192px;
    left: 30px;
    top: 10px;
  }
  .sec06 ul li:nth-of-type(2) {
    background: url("../../img/akiya_satei/sec06_list_bg02.png") center center
      no-repeat;
    background-size: contain;
    padding: 50px 30px;
    width: 304px;
    height: 177px;
    left: 320px;
    top: -20px;
    right: inherit;
  }
  .sec06 ul li:nth-of-type(3) {
    background: url("../../img/akiya_satei/sec06_list_bg03.png") center center
      no-repeat;
    background-size: contain;
    padding: 50px 30px;
    width: 404px;
    height: 186px;
    right: 20px;
    top: 40px;
    left: inherit;
  }
}
/*===================
.result
=====================*/
.result {
  background-color: #f0f3f7;
}
.result .inner {
  padding: 10vw 0 0;
}
.result .tit01 {
  text-align: center;
  font-weight: 600;
  margin: 0 0 9vw;
}
.result .tit01 .icon {
  font-size: 4.8vw;
  margin: 0 0 10px;
}

.result .tit01 .icon span {
  position: relative;
}
.result .tit01 .icon span::before,
.result .tit01 .icon span::after {
  position: absolute;
  content: "";
  display: block;
  background-color: #2c6dd5;
  height: 2px;
  width: 35px;
  bottom: 10px;
}
.result .tit01 .icon span::before {
  margin-right: 10px;
  transform: rotate(60deg);
  left: -35px;
}
.result .tit01 .icon span::after {
  margin-right: 10px;
  transform: rotate(-60deg);
  right: -35px;
}
.result .tit01 h1 {
  font-size: 9vw;
  line-height: 1.2;
}
.result .tit01 h1 span {
  font-size: 10vw;
}
.result .box {
  border-radius: 30px;
  background-color: #417fe2;
  padding: 4vw 4vw 5vw;
}
.result .box .tit02 {
  text-align: center;
  color: #fff;
  font-weight: 600;
  margin: 0 0 7vw;
  line-height: 1.4;
}
.result .box .tit02 .txt01 .icon {
  font-size: 6vw;
  border: 2px solid #fff;
  border-radius: 50px;
  padding: 10px 30px;
}
.result .box .tit02 .txt01 .icon small {
  font-size: 4.8vw;
}
.result .box .tit02 .txt01 {
  font-size: 12vw;
}
.result .box .tit02 .txt02 {
  font-size: 4vw;
}
.result .box .list li {
  background: #ffffff;
  background: linear-gradient(
    114deg,
    rgba(255, 255, 255, 1) 50%,
    rgba(255, 255, 90, 1) 50%
  );
  border-radius: 10px;
  box-shadow: 10px 10px 16px 0px rgba(0, 0, 0, 0.1);
  padding: 4vw;
  margin: 0 0 10px;
}
.result .box .list li dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.result .box .list li dl dt,
.result .box .list li dl dd {
  width: 50%;
  font-size: 3.7vw;
  font-weight: 600;
}
.result .box .list li dl dd {
  font-size: 3.7vw;
  text-align: right;
  line-height: 1;
}
.result .box .list li dl dd span {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 14vw;
  color: #2c6dd5;
}
@media screen and (min-width: 1000px) {
  .result .inner {
    padding: 70px 0 0;
  }
  .result .tit01 {
    margin: 0 0 50px;
  }
  .result .tit01 .icon {
    font-size: 48px;
  }
  .result .tit01 h1 {
    font-size: 62px;
    line-height: 1.2;
  }
  .result .tit01 h1 span {
    font-size: 80px;
  }
  .result .tit01 .icon span::before {
    left: -55px;
  }
  .result .tit01 .icon span::after {
    right: -55px;
  }
  .result .tit01 .icon span::before,
  .result .tit01 .icon span::after {
    width: 55px;
    bottom: 20px;
  }
  .result .box {
    padding: 50px 70px;
  }
  .result .box .tit02 {
    margin: 0 0 40px;
  }
  .result .box .tit02 .txt01 {
    margin: 0 0 10px;
  }
  .result .box .tit02 .txt01 .icon {
    font-size: 40px;
    border-radius: 30px;
    padding: 10px 30px;
    margin: 0 10px 0 0;
  }
  .result .box .tit02 .txt01 .icon small {
    font-size: 32px;
  }
  .result .box .tit02 .txt01 {
    font-size: 72px;
  }
  .result .box .tit02 .txt02 {
    font-size: 32px;
  }
  .result .box .list li {
    border-radius: 20px;
    padding: 30px;
  }
  .result .box .list li dl dt,
  .result .box .list li dl dd {
    font-size: 40px;
    line-height: 1;
  }
  .result .box .list li dl dd span {
    font-size: 114px;
  }
}
/*===================
.case
=====================*/
.case {
  background-color: #f0f3f7;
}
.case .inner {
  padding: 16vw 0 14vw;
}
.case .tit {
  margin: 0 0 9vw;
  text-align: center;
}
.case .tit .en {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 6.4vw;
  color: #b5d3fb;
  margin: 0 0 10px;
}
.case .tit h1 {
  font-size: 8vw;
  font-weight: 600;
  color: #2c6dd5;
  line-height: 1;
}
.case .list li {
  background-color: #fff;
  position: relative;
  padding: 5vw;
  border-radius: 20px;
  box-shadow: 10px 10px 16px 0px rgba(0, 0, 0, 0.1);
  margin: 0 0 30px;
}
.case .list li .icon {
  position: absolute;
  width: 18.6vw;
  height: 19.7vw;
  top: 0;
  left: 4vw;
  z-index: 5;
}
.case .list li dl dd {
  font-weight: 600;
}
.case .list li dl dd .txt01 {
  font-size: 4vw;
}
.case .list li dl dd .txt02 {
  font-size: 6vw;
  font-weight: 600;
  line-height: 1.2;
}
.case .list li dl dd .txt02 span em {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 15vw;
}

@media screen and (min-width: 1000px) {
  .case .inner {
    padding: 100px 0;
  }
  .case .tit {
    margin: 0 0 50px;
  }
  .case .tit .en {
    font-size: 100px;
    margin: 0;
  }
  .case .tit h1 {
    font-size: 56px;
    line-height: 1;
  }
  .case .list li {
    padding: 50px;
    border-radius: 20px;
    margin: 0 0 30px;
  }
  .case .list li .icon {
    width: 118px;
    height: 126px;
    left: 30px;
  }
  .case .list li dl {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .case .list li dl dt {
    width: 400px;
  }
  .case .list li dl dd {
    width: 430px;
  }

  .case .list li dl dd .txt01 {
    font-size: 32px;
  }
  .case .list li dl dd .txt02 {
    font-size: 48px;
    text-align: right;
  }
  .case .list li dl dd .txt02 span em {
    font-size: 100px;
  }
}

/*===================
.about
=====================*/
.about {
  background: url("../../img/akiya_satei/sp/about_bg.jpg") center top no-repeat;
  background-size: cover;
}
.about .inner {
  padding: 10vw 0 16vw;
}
.about .tit {
  margin: 0 0 9vw;
  text-align: center;
}
.about .tit .en {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 6.4vw;
  color: #b5d3fb;
  margin: 0 0 10px;
}
.about .tit h1 {
  font-size: 8vw;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
}
.about .tit h1 small {
  font-size: 6vw;
}
.about .lead {
  color: #fff;
  font-size: 3.7vw;
  margin: 0 0 9vw;
  line-height: 2;
}
.about .box {
  background-color: #fff;
  border-radius: 30px;
  padding: 4vw;
  text-align: center;
}
.about .box .logo {
  margin: 0 0 30px;
}
.about .box .logo img {
  width: 50vw;
}

@media screen and (min-width: 1000px) {
  .about {
    background: url("../../img/akiya_satei/about_bg.jpg") center top no-repeat;
    background-size: cover;
  }
  .about .inner {
    padding: 70px 0 100px;
  }
  .about .tit {
    margin: 0 0 50px;
  }
  .about .tit .en {
    font-size: 100px;
    margin: 0;
  }
  .about .tit h1 {
    font-size: 54px;
    line-height: 1;
  }
  .about .tit h1 small {
    font-size: 48px;
  }
  .about .lead {
    font-size: 20px;
    margin: 0 0 50px;
  }
  .about .box {
    border-radius: 30px;
    padding: 35px 50px 50px;
  }
  .about .box .logo {
    margin: 0 0 30px;
  }
  .about .box .logo img {
    width: 450px;
  }
}

@media screen and (max-width: 999px) {
  .about iframe {
    width: 100%;
  }
}

/*===================
.voice
=====================*/
.voice {
  position: relative;
}
.voice::after {
  position: absolute;
  content: "";
  display: block;
  background-color: #f0f3f7;
  width: 100%;
  height: 155vw;
  bottom: 0;
  z-index: 0;
}
.voice .inner {
  padding: 10vw 0 0;
  position: relative;
}
.voice .tit {
  margin: 0 0 5vw;
  text-align: center;
}
.voice .tit .en {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 6.4vw;
  color: #b5d3fb;
  margin: 0 0 10px;
}
.voice .tit h1 {
  font-size: 8vw;
  font-weight: 600;
  color: #2c6dd5;
  line-height: 1;
}
.voice .slick01 {
  z-index: 2;
}
.voice .slick01 li.slider {
  box-shadow: 10px 10px 16px 0px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  margin: 30px 10px;
}
.voice .slick01 li .img {
  background-color: #fff;
  border-radius: 20px 20px 0 0;
}
.voice .slick01 li .txt {
  background-color: #ffff5a;
  padding: 0 30px 30px;
  border-radius: 0 0 20px 20px;
  font-size: 3vw;
}
.voice .slick01 li .txt h2 {
  font-size: 4.8vw;
  font-weight: 600;
}
.voice .slick01 li .txt span {
  display: block;
  margin: 0 0 5px;
}
.voice .slick01 .slick-dots {
  display: flex;
  justify-content: center;
  padding: 0 0 70px;
}
.voice .slick01 .slick-dots li button {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: gray;
  margin: 0 10px;
  color: transparent;
}
.voice .slick01 .slick-dots li.slick-active button {
  background-color: black;
}

@media screen and (min-width: 1000px) {
  .voice::after {
    height: 45vw;
  }
  .voice .inner {
    padding: 70px 0 0;
  }
  .voice .tit {
    margin: 0 0 50px;
  }
  .voice .tit .en {
    font-size: 100px;
    margin: 0;
  }
  .voice .tit h1 {
    font-size: 56px;
  }
  .voice .slick01 li .txt h2 {
    font-size: 30px;
  }
  .voice .slick01 li .txt {
    min-height: 330px;
    font-size: 16px;
  }
}
@media screen and (max-width: 999px) {
}

/*===================
.company
=====================*/
.company .inner {
  padding: 10vw 0 16vw;
}
.company .tit {
  margin: 0 0 9vw;
  text-align: center;
}
.company .tit .en {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 6.4vw;
  color: #b5d3fb;
  margin: 0 0 10px;
}
.company .tit h1 {
  font-size: 8vw;
  font-weight: 600;
  color: #2c6dd5;
  line-height: 1;
}
.company table {
  width: 100%;
}
.company table tr {
  border-bottom: 2px solid #fff;
}
.company table th {
  background-color: #417fe2;
  color: #fff;
  vertical-align: middle;
  padding: 30px 10px 30px 30px;
  width: 30%;
  font-size: 4vw;
}
.company table td {
  background-color: #f7fbff;
  vertical-align: middle;
  padding: 30px 10px 30px 30px;
  width: 70%;
  font-size: 4vw;
}

@media screen and (min-width: 1000px) {
  .company .inner {
    padding: 70px 0 100px;
  }
  .company .tit {
    margin: 0 0 50px;
  }
  .company .tit .en {
    font-size: 100px;
    margin: 0;
  }
  .company .tit h1 {
    font-size: 56px;
    line-height: 1;
  }
  .company table th {
    font-size: 20px;
  }
  .company table td {
    font-size: 18px;
  }
}

@media screen and (max-width: 999px) {
  .company table th,
  .company table td {
    display: block;
    width: 100%;
    padding: 4vw;
  }
}

/*===================
.contact
=====================*/
.contact {
  background-color: #f0f3f7;
}
.contact .inner {
  padding: 10vw 0 16vw;
}
.contact .tit {
  margin: 0 0 9vw;
  text-align: center;
}
.contact .tit .en {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 6.4vw;
  color: #b5d3fb;
  margin: 0 0 10px;
}
.contact .tit h1 {
  font-size: 8vw;
  font-weight: 600;
  color: #2c6dd5;
  line-height: 1;
}

.contact table {
  width: 100%;
  margin: 0 auto 10px;
  font-size: 16px;
}
.contact table th {
  padding: 10px 0 10px 15px;
  vertical-align: top;
  width: 30%;
  box-sizing: border-box;
  position: relative;
}
.contact table td {
  padding: 8px 15px;
  vertical-align: middle;
  width: 70%;
}
.contact table .inq td {
  padding: 12px 15px;
}
.req {
  background: #ff9c00;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  padding: 0 4px;
  position: absolute;
  right: 10px;
  top: 15px;
  border-radius: 3px;
}
.under_t {
  font-size: 10px;
  color: #417fe2;
  display: block;
}
.border_r {
  display: block;
  padding: 3px 10px 3px 0;
}
.contact table .inq td {
  vertical-align: top;
}
.contact input,
.contact textarea {
  padding: 20px;
  font-size: 16px;
  width: 100%;
  border-radius: 8px;
  background-color: #fff;
}

.agree {
  display: block;
  border: none;
  padding: 10vw 0 5vw;
}
.agree .agree_tit {
  text-align: center;
  font-weight: 600;
  font-size: 1.2em;
  margin: 0 0 1.2em;
}
.agree .privacy {
  width: 100%;
  background-color: #fff;
  margin: 0 auto 6vw;
  height: 30vw;
  border: 1px solid #ccc;
  overflow-x: scroll;
  padding: 4vw;
  line-height: 1.4;
}
.agree .privacy p,
.agree .privacy dl {
  margin: 0 0 2em;
}
.agree .privacy dl dt {
  text-align: center;
  font-weight: 600;
  font-size: 1.1em;
  margin: 0 0 1em;
}
.agree input[type="checkbox"] {
  width: inherit;
  margin: 0 5px 0 20px;
}
.agree .check {
  text-align: center;
}
.agree .check .req {
  position: inherit;
  padding: 4px 4px;
}

.btn_area {
  text-align: center;
  margin: 30px 0 0;
}
.btn_area button.check {
  width: 90vw;
  height: 19.2vw;
  border: none;
  cursor: pointer;
  background: #fe9900;
  background: linear-gradient(
    180deg,
    rgba(254, 153, 0, 1) 0%,
    rgba(245, 119, 0, 1) 100%
  );
  text-align: center;
  border-radius: 5px;
  color: #fff;
  font-size: 6vw;
  font-weight: 600;
  position: relative;

  &::after {
    position: absolute;
    content: "";
    display: block;
    top: 50%;
    transform: translate(0, -50%);
    background: url(../../img/akiya_satei/mail_arrow.png) center center
      no-repeat;
    background-size: 100%;
    width: 7vw;
    height: 7vw;
    right: 4vw;
  }
  &[disabled] {
    background: #ccc;

    &::after {
      background-image: url(../../img/akiya_satei/mail_arrow_g.png);
    }
  }
}

@media screen and (min-width: 1000px) {
  .contact .inner {
    padding: 70px 0 100px;
  }
  .contact .tit {
    margin: 0 0 50px;
  }
  .contact .tit .en {
    font-size: 100px;
    margin: 0;
  }
  .contact .tit h1 {
    font-size: 56px;
  }

  .contact table th {
    font-size: 18px;
  }
  .contact table td {
    font-size: 18px;
  }
  .inq .border_r {
    height: 180px;
  }
  .agree {
    font-size: 16px;
    padding: 70px 0;
  }
  .agree .agree_tit {
    font-size: 20px;
    margin: 0 0 20px;
  }
  .agree .privacy {
    width: 1000px;
    padding: 35px;
    height: 250px;
    margin: 0 0 30px;
  }

  .btn_area button.check {
    width: 510px;
    height: 109px;
    font-size: 32px;
  }
  .btn_area button.check::after {
    width: 33px;
    height: 33px;
    right: 25px;
  }
  .btn_area button:not([disabled]):hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 999px) {
  .contact table th,
  .contact table td,
  .contact table .inq td {
    display: block;
    width: 100%;
    padding: 0 0 10px;
    font-size: 3.7vw;
  }
  .border_r {
    padding: 0;
  }
  .agree .privacy {
    font-size: 3vw;
  }
  .req {
    position: relative;
    padding: 4px;
    top: -1vw;
    right: inherit;
    left: 2vw;
  }
}

@media screen and (max-width: 479px) {
  .check .wpcf7-list-item .wpcf7-list-item-label {
    font-size: 3.2vw;
  }
  .btn_area button.check {
    font-size: 4.8vw;
  }
}
/* thanks */
.thanks div {
  text-align: center;
  padding: 180px 0 0;
  line-height: 40px;
  font-size: 20px;
}
.video{
  position:relative;
}
.video iframe{
  width:100%;
  aspect-ratio:16 / 9;
  outline:none;
}
