@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
/* ------------------------------
    mixin
------------------------------ */
/* ------------------------------
    reset
------------------------------ */
html {
  font-size: 62.5%;
  overflow-y: scroll;
}
@media screen and (max-width: 1200px) {
  html {
    font-size: calc(100vw * 10 / 1200);
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: calc(100vw * 10 / 450);
  }
}

*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, address, time,
ul, ol, li, dl, dt, dd,
table, th, td, img, figure, figcaption,
form, input, button, textarea, select {
  margin: 0;
  padding: 0;
  border: none;
  line-height: 100%;
  list-style-type: none;
  font-style: normal;
  font-weight: normal;
  font-family: "Noto Sans JP", sans-serif;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  resize: none;
  outline: none;
  background: none;
}

select::-ms-expand {
  display: none;
}

button:hover {
  cursor: pointer;
}

a {
  color: #000;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  a {
    transition: opacity 0.3s ease;
  }
  a:hover {
    opacity: 0.6;
    cursor: pointer;
  }
}

img, object, picture, svg {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

.roboto {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: normal;
}

/* ------------------------------
    base
------------------------------ */
body {
  color: #000;
  min-width: 1260px;
  font-size: 1rem;
  text-align: left;
  /*padding-right: 47rem;*/
  /*padding-left: 47rem;*/
}

section {
  position: relative;
}

main {
  padding-top: 150px;
  display: block;
}

.wrap {
  width: 90%;
  max-width: 82rem;
  padding: 0;
  margin: 0 auto;
  position: relative;
}

p, th, td, dt, dd, li, input, button, textarea {
  font-size: 1.6rem;
  line-height: 1.8;
}

.fixed {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.preload *, .preload *::before, .preload *::after {
  transition: none !important;
}

@media screen and (min-width: 768px) {
  .fade {
    transition: opacity 0.3s ease;
  }

  .fade:hover {
    opacity: 0.6;
    cursor: pointer;
  }

  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@media screen and (max-width: 767px) {
  body {
    min-width: inherit;
    padding: 0;
  }

  main {
    padding-top: 60px;
    margin-bottom: 280px;
  }

  input, textarea, select, .select {
    font-size: max(1.6rem, 16px) !important;
  }

  
}
/* ------------------------------
    header
------------------------------ */
#header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
}
#header .wrap {
  max-width: inherit;
  width: 100%;
  padding: 0;
}
#header .logo_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  padding: 0 3rem;
}
#header .logo_wrap .logo {
  flex-grow: 1;
}
#header .logo_wrap .logo a {
  display: flex;
  align-items: center;
}
#header .logo_wrap .logo img {
  width: 22rem;
}
#header .logo_wrap .logo span {
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: bold;
  margin-left: 1em;
}
#header .logo_wrap .button.pc {
  display: flex;
  align-items: center;
  gap: 3rem;
}
#header .logo_wrap .button.pc .tel {
  display: flex;
}
#header .logo_wrap .button.pc .tel .ico {
  flex: 0 0 auto;
  width: 4.7rem;
  margin-right: 1em;
}
#header .logo_wrap .button.pc .tel .txt {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: bold;
}
#header .logo_wrap .button.pc .tel .txt .roboto {
  font-size: 3.3rem;
}
#header nav {
  background: #f5f2ed;
}
#header nav .gnavi {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  gap: 4em;
}
#header nav .gnavi li a {
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: bold;
}
#header .overlay {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 997;
}
#header .overlay.active {
  opacity: 1;
  pointer-events: auto;
}

@media screen and (max-width: 767px) {
  #header,
#header .wrap,
#header .logo_wrap {
    width: 100%;
    height: 60px;
  }

  #header {
    background-color: transparent;
    padding: 0;
    margin: 0;
    z-index: 999;
  }
  #header .logo_wrap {
    position: relative;
    background: #fff;
    z-index: 999;
    padding: 0 60px 0 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  }
  #header .logo_wrap .logo {
    padding-left: 3vw;
  }
  #header .logo_wrap .logo img {
    width: 120px;
  }
  #header .logo_wrap .button.sp {
    display: flex;
    gap: 0;
  }
  #header .logo_wrap .button.sp .tel, #header .logo_wrap .button.sp .download {
    width: 60px;
    height: 60px;
  }
  #header .logo_wrap .button.sp .tel a, #header .logo_wrap .button.sp .download a {
    background: #f08200;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 8px;
    width: 100%;
    height: 100%;
  }
  #header .logo_wrap .button.sp .tel a .ico, #header .logo_wrap .button.sp .download a .ico {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 20px;
    margin: 0 auto 2px;
  }
  #header .logo_wrap .button.sp .tel a .txt, #header .logo_wrap .button.sp .download a .txt {
    display: inline-block;
    font-size: 6px;
    line-height: 1.2;
    text-align: center;
  }
  #header .logo_wrap .button.sp .download a {
    border-left: 1px solid #fff;
  }
  #header .logo_wrap .button.sp .download a .ico {
    padding-top: 5px;
  }
  #header .menu-trigger {
    background: #f5f2ed;
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    padding: 10px;
    z-index: 999;
  }
  #header .menu-trigger .ico {
    width: 25px;
    height: 25px;
    margin: 0 auto;
    position: relative;
  }
  #header .menu-trigger .ico span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #f08200;
  }
  #header .menu-trigger .ico span:nth-of-type(1) {
    top: 15%;
  }
  #header .menu-trigger .ico span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  #header .menu-trigger .ico span:nth-of-type(3) {
    bottom: 15%;
  }
  #header .menu-trigger p {
    color: #f08200;
    font-size: 10px;
    line-height: 1;
    font-weight: bold;
    text-align: center;
    margin-top: 0.5em;
  }
  #header .menu-trigger p.close {
    display: none;
  }
  #header nav {
    width: 100%;
    opacity: 0;
    padding: 0;
    position: fixed;
    left: 0;
    top: 60px;
    overflow-y: auto;
    max-height: calc(100% - 60px);
    transform: translateY(-100%);
    transition: transform 0.3s, opacity 1s;
    z-index: 998;
  }
  #header nav .nav_wrap {
    top: 0;
    left: 0;
    width: 100%;
    position: relative;
    margin: 0;
    padding-bottom: 10vw;
  }
  #header nav .nav_wrap .gnavi {
    height: auto;
    margin: 0;
    display: block;
  }
  #header nav .nav_wrap .gnavi li {
    border-bottom: 1px solid #ccc;
  }
  #header nav .nav_wrap .gnavi li a {
    display: block;
    font-size: 1.8rem;
    padding: 1.5em 3em 1.5em 5vw;
    position: relative;
  }
  #header nav .nav_wrap .gnavi li a::after {
    content: "";
    position: absolute;
    right: 5vw;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 0.8em;
    height: 0.8em;
    border-top: 3px solid #f08200;
    border-right: 3px solid #f08200;
  }
  #header nav .nav_wrap .btn {
    text-align: center;
    margin-top: 8vw;
  }
  #header nav .nav_wrap .btn a {
    width: 90%;
  }
  #header.navOpen .menu-trigger span:nth-of-type(1) {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
  }
  #header.navOpen .menu-trigger span:nth-of-type(2) {
    opacity: 0;
  }
  #header.navOpen .menu-trigger span:nth-of-type(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(45deg);
  }
  #header.navOpen .menu-trigger .close {
    display: block;
  }
  #header.navOpen .menu-trigger .open {
    display: none;
  }
  #header.navOpen nav {
    opacity: 1;
    transform: translateY(0);
    transition: transform 0.3s, opacity 0s;
  }
}
/* ------------------------------
    footer
------------------------------ */
#footer .inner {
  padding: 10rem 0 3rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  #footer .inner {
    padding-top: 6rem;
  }
}
#footer .logo {
  width: 18rem;
  margin: 0 auto;
}
#footer .pagetop a {
  position: absolute;
  right: 3rem;
  bottom: 3rem;
  width: 7rem;
  height: 7rem;
  background: #f08200;
  border-radius: 100%;
  overflow: hidden;
  text-indent: -1000px;
}
#footer .pagetop a::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 1.2rem 2rem 1.2rem;
  border-color: transparent transparent #fff transparent;
}
@media screen and (max-width: 767px) {
  #footer .pagetop a {
    width: 5em;
    height: 5em;
  }
}
#footer .bg {
  background: #f08200;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 3rem;
}
@media screen and (max-width: 767px) {
  #footer .bg {
    flex-direction: column-reverse;
    gap: 1rem;
  }
}
#footer .copy {
  font-size: 1.2rem;
  background: #f08200;
  color: #fff;
  text-align: center;
  padding: 20px 20px 100px 20px;

}
#footer .bg .menu {
  display: flex;
  gap: 1.5em;
}
#footer .bg .menu li {
  font-size: 1.4rem;
}
#footer .bg .menu li a {
  color: #fff;
  text-decoration: underline;
}
#footer .policy {
  max-width: 1120px;
  width: 100%;
  height: fit-content;
  margin-right: auto;
  margin-left: auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content:space-between;
  margin-top: 0px;
  padding-top: 30px;
  font-size: 12px;

}

#footer .policy a {
  position: relative;
  display: inline-block;
  padding-bottom: 3px;
  color: #fff;
  text-decoration: none;
  font-size: 0.8em;
}

footer .policy__item img{
  width: 230px;
}

@media screen and (max-width: 767px) {
  #footer .policy{
    display: block;
    text-align: center;
  }

}

/* ------------------------------
    main
------------------------------ */
.side_form {
  position: absolute;
  right: 0;
  /*left: 0;*/
  top: 0;
  width: 43rem;
  /*height: 100%;
  height: 645px;*/
  height: 485px;
  /*padding-top: 120px;*/
  z-index: 888;
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  margin: 180px 30px 30px 30px;
  border-radius: 30px;
}

.side_form .scroll {
  overflow-y: auto;
  height: 100%;
}
.side_form .inner {
  padding: 3rem;
}
.side_form .ttl {
  color: #f08200;
  text-align: center;
}
.side_form .ttl span {
  display: inline-block;
  /*font-size: 2.8rem;*/
  font-size: 2.3rem;
  line-height: 1.4;
  font-weight: bold;
}
.side_form .ttl span::before, .side_form .ttl span::after {
  content: "";
  width: 3px;
  height: 1.5em;
  background: #f08200;
  rotate: -15deg;
  display: inline-block;
  vertical-align: middle;
  margin-right: 1em;
}
.side_form .ttl span::after {
  rotate: 15deg;
  margin-left: 1em;
  margin-right: 0;
}
.side_form .tar {
  color: #f08200;
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: bold;
  text-align: right;
  margin: 0.5em 0;
}
.side_form .form .grid {
  display: grid;
  grid-template-columns: 30% 70%;
  /*gap: 1rem;*/
  gap: 0.5rem;
}
.side_form .form .grid dt {
  font-weight: bold;
  padding-top: 0.5em;
  white-space: nowrap;
  font-size: 1.4em;
}
.side_form .form .grid dt .kome {
  color: #f08200;
}
.side_form .form .grid .flex {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.side_form .form *::placeholder {
  color: #999;
}
.side_form .form label {
  display: inline-block;
  margin: 0.2em 0;
}
.side_form .form input[type=text],
.side_form .form input[type=email],
.side_form .form input[type=tel],
.side_form .form textarea,
.side_form .form select {
  /*font-size: 1.6rem;*/
  font-size: 1.4rem;
  padding: 0 1em;
  background: #f5f2ed;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .side_form .form input[type=text],
.side_form .form input[type=email],
.side_form .form input[type=tel],
.side_form .form textarea,
.side_form .form select {
    padding: 0 0.5em;
  }
}
.side_form .form textarea {
  line-height: 1.8em;
  padding: 1em;
  /*height: 8em;*/
  height: 6em;
}
.side_form .form input[type=text],
.side_form .form input[type=email],
.side_form .form input[type=tel],
.side_form .form select {
  /*line-height: 3em;
  height: 3em;*/
  line-height: 2em;
  height: 2em;
  
}
.side_form .form input[type=text],
.side_form .form input[type=email],
.side_form .form input[type=tel],
.side_form .form textarea {
  width: 100%;
}
.side_form .form select {
  background: #f5f2ed url("../img/select.svg") no-repeat right center/auto 100%;
  padding-right: 3.5em;
  vertical-align: middle;
  width: 100%;
}
.side_form .form input[type=radio],
.side_form .form input[type=checkbox] {
  display: block;
  width: 1px;
  height: 1px;
  overflow: hidden;
  visibility: hidden;
}
.side_form .form input[type=radio] + span,
.side_form .form input[type=checkbox] + span {
  display: inline-block;
  position: relative;
  padding-left: 1.8em;
}
.side_form .form input[type=radio] + span::before, .side_form .form input[type=radio] + span::after,
.side_form .form input[type=checkbox] + span::before,
.side_form .form input[type=checkbox] + span::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 1.4em;
  height: 1.4em;
  border-radius: 100%;
  border: 1px solid #ccc;
  background: #fff;
  margin-right: 0.3em;
}
.side_form .form input[type=radio] + span::after,
.side_form .form input[type=checkbox] + span::after {
  width: 0.8em;
  height: 0.8em;
  margin: 0.3em 0 0 0.3em;
  background: transparent;
  border: none;
}
.side_form .form input[type=radio]:checked + span::after,
.side_form .form input[type=checkbox]:checked + span::after {
  background: #000;
}
.side_form .form input[type=checkbox] + span::before {
  border-radius: 0;
}
.side_form .form input[type=checkbox]:checked + span::after {
  width: 1em;
  height: 0.6em;
  margin: 0.2em 0 0 0.2em;
  border-bottom: 3px solid #000;
  border-left: 3px solid #000;
  transform: rotate(-45deg);
  border-radius: 0;
  background: transparent;
}
.side_form .form button {
  background: #f08200;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  /*font-size: 1.8rem;*/
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: bold;
  border-radius: 100px;
  /*padding: 0.8em 4em;*/
  padding: 0.6em 4em;
  margin: 0.5em auto 0;
}
.side_form .form .small {
  color: #757575;
  font-size: 1.2rem;
  line-height: 1.4;
  letter-spacing: -0.1em;
  text-align: center;
  white-space: nowrap;
  margin-top: 1em;
}

.btn_round a, .btn_round button {
  background: #f08200;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: bold;
  padding: 1em 2em;
  border-radius: 100px;
}
.btn_round a .ico, .btn_round button .ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5em;
  height: 1.5em;
  margin-right: 0.5em;
}
.btn_round._yellow a, .btn_round._yellow button {
  background: #ffb000;
}
.btn_round._white a, .btn_round._white button {
  background: #fff;
  color: #f08200;
}

#sec_mv .bg {
  background: url("../img/mv_bg_pc@2x_2.png") no-repeat right -45rem center/cover;
  /*padding: 6rem 0;*/
  padding: 5rem 48rem 5rem 0;
  background-position: 0;
}
#sec_mv .ttl {
  width: 52rem;
  max-width: 100%;
}
#sec_mv .btn_wrap {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
}
#sec_mv .btn_wrap a {
  font-size: 1.6rem;
  width: 26rem;
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 767px) {
  #sec_mv .bg {
    background: url("../img/mv_bg_sp.png") no-repeat center top/100% auto;
    padding: 3rem 0;
  }
  #sec_mv .btn_wrap {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  #sec_mv .btn_wrap .btn_round {
    width: 100%;
  }
  #sec_mv .btn_wrap a {
    width: 100%;
  }
}
#sec_mv .slider {
  display: flex;
  overflow: hidden;
}
#sec_mv .slider .slide {
  display: flex;
  /*animation: loop-slide 20s infinite linear 1s both;*/
  animation: loop-slide 50s infinite linear 1s both;
}
#sec_mv .slider .slide img {
  max-width: inherit;
  /*height: 120px;*/
  height: 125px;
  padding: 30px 0;
}
@media screen and (max-width: 767px) {
  #sec_mv .slider .slide img {
    height: 15vw;
  }
}
@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

#sec_01 .flex {
  display: flex;
  justify-content: center;
  gap: 4rem;
  padding: 10rem 0;
}
@media screen and (max-width: 767px) {
  #sec_01 .flex {
    padding: 6rem 0;
    flex-wrap: wrap;
    gap: 0;
  }
}
#sec_01 .flex .left .ttl {
  font-size: 3.2rem;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 767px) {
  #sec_01 .flex .left .ttl {
    font-size: 2.8rem;
    text-align: center;
  }
}
#sec_01 .flex .left .ttl span {
  /*padding-bottom: 0.3em;*/
  border-bottom: 5px solid #ffb000;
}
#sec_01 .flex .left .txt {
  font-weight: bold;
}
#sec_01 .flex .left .txt small {
  display: inline-block;
  font-size: 80%;
  margin-top: 1em;
}
#sec_01 .flex .right {
  flex: 0 0 auto;
  text-align: center;
}
#sec_01 .flex .right .small {
  font-size: 1.2rem;
}

#sec_02 {
  background: #fffae9;
  padding: 6rem 0;
}
#sec_02 .ttl {
  font-size: 3.2rem;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
}
#sec_02 .ttl strong {
  display: inline-block;
  color: #fff;
  background: #f08200;
  font-size: 4rem;
  padding: 0 0.5em;
  margin-top: 0.2em;
  border-radius: 1rem;
}
#sec_02 .ttl strong small {
  font-size: 70%;
}
#sec_02 .box {
  display: flex;
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  #sec_02 .box {
    display: block;
    margin-top: 3rem;
  }
}
#sec_02 .box .detail .num {
  color: #f08200;
  font-size: 7.6rem;
  line-height: 1;
  margin-bottom: -2rem;
  margin-left: 3rem;
}
#sec_02 .box .detail .inner {
  background: #fff;
  border-radius: 3rem;
  padding: 4rem 7rem 4rem 4rem;
  margin-right: -3rem;
}
@media screen and (max-width: 767px) {
  #sec_02 .box .detail .inner {
    margin-right: -5vw;
  }
}
#sec_02 .box .detail .sttl {
  font-size: 2.8rem;
  line-height: 1.6;
  font-weight: bold;
}
#sec_02 .box .detail .sttl strong {
  background: #ffb000;
  color: #fff;
  display: inline-block;
  padding: 0 0.3em;
  margin: 0 0.1em;
  border-radius: 1rem;
}
#sec_02 .box .detail .sttl small {
  font-size: 80%;
}
#sec_02 .box .detail .txt {
  font-size: 1.4rem;
  margin-top: 1em;
  font-weight: bold;
}
#sec_02 .box .img {
  flex: 0 0 auto;
  width: 43rem;
  max-width: 25vw;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  #sec_02 .box .img {
    width: 100%;
    max-width: inherit;
    margin-top: -2rem;
  }
}
#sec_02 .box._reverse {
  flex-direction: row-reverse;
}
#sec_02 .box._reverse .detail .inner {
  margin-right: 0;
  margin-left: -3rem;
  padding-right: 4rem;
  padding-left: 7rem;
}
@media screen and (max-width: 767px) {
  #sec_02 .box._reverse .detail .inner {
    margin-right: 0;
    margin-left: -5vw;
  }
}
#sec_02 .btn_round {
  text-align: center;
  margin-top: 6rem;
}
#sec_02 .btn_round a {
  font-size: 1.6rem;
  width: 44rem;
}
@media screen and (max-width: 767px) {
  #sec_02 .btn_round a {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

#sec_03 {
  padding: 6rem 0;
}
#sec_03 .ttl {
  font-size: 3.2rem;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
}
#sec_03 .box {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  #sec_03 .box {
    display: block;
    margin-top: 3rem;
    border-width: 4px;
  }
}
#sec_03 .box .img {
  flex: 0 0 auto;
  width: 16rem;
  margin-right: 2rem;
}
#sec_03 .box .img img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  #sec_03 .box .img {
    margin: 0 auto 2rem;
  }
}
#sec_03 .box .detail {
  flex: 1 1 auto;
  border: #eee 8px solid;
  border-radius: 3rem;
  padding: 2rem 3rem;
}
#sec_03 .box .detail .sttl {
  color: #f08200;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 1em;
}
#sec_03 .box .detail .txt {
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: bold;
}

#sec_04 {
  background: #f5f2ed;
  padding: 6rem 0;
}
#sec_04 .ttl {
  font-size: 3.2rem;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
}
#sec_04 .grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin: 4rem 0;
}
@media screen and (max-width: 767px) {
  #sec_04 .grid {
    grid-template-columns: 1fr;
  }
}
#sec_04 .grid .item .img {
  height: 14rem;
  overflow: hidden;
  margin-bottom: 0.3em;
}
@media screen and (max-width: 767px) {
  #sec_04 .grid .item .img {
    height: 20rem;
  }
}
#sec_04 .grid .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#sec_04 .grid .item .name {
  font-size: 1.8rem;
  font-weight: bold;
}
#sec_04 .grid .item .txt {
  font-size: 1.4rem;
}
#sec_04 .movie {
  margin: 6rem 0;
}
#sec_04 .movie .item {
  width: 41.4rem;
  margin: 0 auto;
}
#sec_04 .movie .item .video {
  height: 23.2rem;
  margin-bottom: 0.5em;
}
#sec_04 .movie .item .video iframe {
  width: 100%;
  height: 100%;
}
#sec_04 .movie .item .name {
  font-size: 1.8rem;
  font-weight: bold;
}
#sec_04 .movie .item .txt {
  font-size: 1.4rem;
}
#sec_04 .btn_round {
  text-align: center;
}
#sec_04 .btn_round a {
  font-size: 1.6rem;
  width: 38rem;
}

#sec_05 {
  padding: 10rem 0 0;
}
@media screen and (max-width: 767px) {
  #sec_05 {
    padding: 6rem 0 0;
  }
}
#sec_05 .ttl {
  text-align: center;
}
#sec_05 .ttl .orange, #sec_05 .ttl .yellow {
  background: #f08200;
  color: #fff;
  display: inline-block;
  font-size: 2rem;
  line-height: 1.6;
  font-weight: bold;
  padding: 0 0.5em;
  margin: 0 0.2em;
  border-radius: 0.5rem;
}
#sec_05 .ttl .yellow {
  background: #ffb000;
}
#sec_05 .ttl strong {
  font-size: 4rem;
  line-height: 1.4;
  font-weight: bold;
}
#sec_05 .ttl strong small {
  font-size: 70%;
}
@media screen and (max-width: 767px) {
  #sec_05 .ttl strong {
    font-size: 3.6rem;
  }
}
#sec_05 .table {
  width: 67rem;
  margin: 6rem auto;
  border-collapse: collapse;
}
@media screen and (max-width: 767px) {
  #sec_05 .table {
    width: 100%;
    margin: 4rem 0;
  }
}
#sec_05 .table th, #sec_05 .table td {
  font-size: 1.8rem;
  padding: 1em 2em;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  #sec_05 .table th, #sec_05 .table td {
    font-size: 1.4rem;
    padding: 0.5em;
  }
}
#sec_05 .table thead th, #sec_05 .table thead td {
  background: #ccc;
}
#sec_05 .table thead th._orange, #sec_05 .table thead th._yellow, #sec_05 .table thead td._orange, #sec_05 .table thead td._yellow {
  background: #f08200;
  color: #fff;
  width: 38%;
}
#sec_05 .table thead th._yellow, #sec_05 .table thead td._yellow {
  background: #ffb000;
}
#sec_05 .table tbody th {
  background: #f5f2ed;
  text-align: left;
}
@media screen and (max-width: 767px) {
  #sec_05 .table tbody th {
    text-align: center;
  }
}
#sec_05 .table tbody td {
  background: #faf9f7;
  border-right: 1px solid #ccc;
}
#sec_05 .table tbody tr:nth-child(n+2) th, #sec_05 .table tbody tr:nth-child(n+2) td {
  border-top: 1px solid #ccc;
}
#sec_05 .bg {
  background: #f08200;
}
#sec_05 .bg .flex {
  display: flex;
  align-items: flex-end;
}
#sec_05 .bg .flex .img {
  flex: 0 0 auto;
  width: 25rem;
  padding-left: 4rem;
  margin-top: -3rem;
}
@media screen and (max-width: 767px) {
  #sec_05 .bg .flex .img {
    width: 30vw;
    padding-left: 0;
  }
}
#sec_05 .bg .flex .detail {
  color: #fff;
  padding: 6rem 0 6rem 4rem;
  min-width: 0;
}
#sec_05 .bg .flex .detail .sttl {
  font-size: 3rem;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 0.8em;
}
#sec_05 .bg .flex .detail .btn_round a {
  font-size: 1.4rem;
  width: 30rem;
}
@media screen and (max-width: 767px) {
  #sec_05 .bg .flex .detail {
    padding: 4rem 0 4rem 2rem;
  }
  #sec_05 .bg .flex .detail .sttl {
    font-size: 2.4rem;
  }
}

#sec_06 {
  background: #fffae9;
  padding: 6rem 0 8rem;
}
@media screen and (max-width: 767px) {
  #sec_06 {
    padding: 6rem 0;
  }
}
#sec_06 .ttl {
  font-size: 3.2rem;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
}
#sec_06 .btn_round {
  text-align: center;
  margin-top: 6rem;
}
#sec_06 .btn_round a {
  width: 30rem;
  font-size: 1.6rem;
}
#sec_06 .flow .box {
  background: #fff;
  padding: 4rem 10rem;
  margin-top: 6rem;
  border-radius: 3rem;
  display: flex;
  align-items: center;
  gap: 6rem;
}
@media screen and (max-width: 767px) {
  #sec_06 .flow .box {
    display: block;
    padding: 3rem;
  }
}
#sec_06 .flow .box + .box {
  position: relative;
}
#sec_06 .flow .box + .box::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translate(-50%, 0);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.8rem;
  border-color: #f08200 transparent transparent transparent;
}
#sec_06 .flow .box .img {
  flex: 0 0 auto;
  width: 10rem;
  height: 10rem;
}
#sec_06 .flow .box .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  #sec_06 .flow .box .img {
    margin: 0 auto 2rem;
  }
}
#sec_06 .flow .box .detail .sttl {
  font-size: 2.2rem;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 0.5em;
}
#sec_06 .flow .box .detail .sttl .num {
  color: #f08200;
  font-size: 2.8rem;
  margin-right: 0.3em;
  vertical-align: -0.05em;
}
#sec_06 .flow .box .detail .btn_round {
  margin-top: 1em;
  text-align: left;
}
#sec_06 .flow .box .detail .btn_round a {
  font-size: 1.2rem;
  padding: 0.8em 2em;
  width: auto;
}

#sec_07 {
  background: #f5f2ed;
  padding: 6rem 0;
}
@media screen and (max-width: 767px) {
  #sec_07 {
    padding: 6rem 0;
  }
}
#sec_07 .ttl {
  font-size: 3.2rem;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
  padding-bottom: 0.1em;
  position: relative;
  border-bottom: 5px solid #ffb000;
  width: fit-content;
  margin: 0 auto;
}
#sec_07 .ttl::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 1.5em;
  height: 3px;
  /*background: #f08200;*/
}
@media screen and (max-width: 767px) {
  #sec_07 .ttl {
    font-size: 2.8rem;
    margin-bottom: 1em;
  }
}
#sec_07 .qa {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  #sec_07 .qa {
    margin-top: 2rem;
  }
}
#sec_07 .qa .q {
  padding-right: 3em;
  padding-bottom: 0.5em;
  border-bottom: 2px solid #ccc;
  position: relative;
  cursor: pointer;
  line-height: 1.4;
  font-weight: bold;
  text-indent: -1.7em;
  padding-left: 1.7em;
}
#sec_07 .qa .q::before {
  content: "Q.";
  color: #f08200;
  font-weight: bold;
  font-size: 1.8rem;
  margin-right: 0.5em;
}
#sec_07 .qa .q .ico {
  width: 1em;
  height: 1em;
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
}
#sec_07 .qa .q .ico::before, #sec_07 .qa .q .ico::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 100%;
  background: #f08200;
  transition: transform 0.3s ease;
}
#sec_07 .qa .q .ico::after {
  width: 100%;
  height: 4px;
}
#sec_07 .qa .q.acd-open .ico::before {
  transform: translateY(-50%) rotate(90deg);
}
#sec_07 .qa .a {
  padding-top: 0.5em;
  position: relative;
  cursor: pointer;
  text-indent: -1.7em;
  padding-left: 1.7em;
}
#sec_07 .qa .a::before {
  content: "A.";
  color: #ffb000;
  font-weight: bold;
  font-size: 1.8rem;
  margin-right: 0.5em;
}
#sec_07 .btn_round {
  text-align: center;
  margin-top: 6rem;
}
#sec_07 .btn_round a {
  width: 30rem;
  font-size: 1.6rem;
}

#sec_08 {
  /*background: #f5f2ed;*/
  padding: 6rem 0;
}
#sec_08 .ttl {
  font-size: 3.2rem;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
  border-bottom: 5px solid #ffb000;
  width: fit-content;
  text-align: center;
  margin: 0 auto;
}
#sec_08 .grid {
  display: grid;
  /*grid-template-columns: 48.5% 48.5%;
  grid-template-columns: 30% 30% 30%;*/
  grid-template-columns: 45% 45%;
  /*gap: 3%;*/
  gap: 8%;
  margin: 4rem 0;
}

#sec_08 .grid .item{
  background-color: #fff;
  box-shadow: 0 0 7px rgb(0 0 0 / 40%);
  display: flex;
  flex-direction:column;
}
@media screen and (max-width: 767px) {
  #sec_08 .grid {
    grid-template-columns: 1fr;
  }
  #sec_08 .grid .item{
    width: 95%;
  }
}
#sec_08 .grid .item .img {
  /*height: 14rem;*/
  overflow: hidden;
  margin-bottom: 0.3em;
}
@media screen and (max-width: 767px) {
  #sec_08 .grid .item .img {
    height: 20rem;
  }
}
#sec_08 .grid .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#sec_08 .grid .item .name {
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 1.3em;
  margin: 20px;
}
#sec_08 .grid .item .txt {
  font-size: 1.4rem;
  margin: 20px;
}
#sec_08 .movie {
  margin: 6rem 0;
}
#sec_08 .movie .item {
  width: 41.4rem;
  margin: 0 auto;
}
#sec_08 .movie .item .video {
  height: 23.2rem;
  margin-bottom: 0.5em;
}
#sec_08 .movie .item .video iframe {
  width: 100%;
  height: 100%;
}
#sec_08 .movie .item .name {
  font-size: 1.8rem;
  font-weight: bold;
}
#sec_08 .movie .item .txt {
  font-size: 1.4rem;
}
#sec_08 .btn_round {
  text-align: center;
  margin: auto 20px 20px 20px;
}
#sec_08 .btn_round a {
  /*font-size: 1.6rem;*/
  font-size: 1.2rem;
  width: 38rem;
}


/* ------------------------------
    responsive
------------------------------ */
@media screen and (min-width: 960px) {
  .pc-none {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 959px) {
  .tb-none {
    display: none !important;
  }

  .pc {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .sp-none {
    display: none !important;
  }
}
/* ------------------------------
    clearfix
------------------------------ */
.cf {
  zoom: 1;
}
.cf::after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  overflow: hidden;
  /* 隙間対応 */
  font-size: 0.1em;
  /* 隙間対応 */
  line-height: 0;
  /* 隙間対応 */
}


/* sliderTitle */

.sliderTitle{
  font-size: 1.6em;
  font-weight: bold;
  margin: 30px auto 0 auto;
  text-align: center;
}
.sliderTitle span{
  color: #f08200;
}
.sliderTitle span strong{
  font-size: 1.5em;
}


/*============================
    recruit / strength
============================*/
.recruit {
  padding: 80px 0 0;
}

.str__copy {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 100px;
}

.str__copy .small {
  font-size: 1.8rem;
  display: block;
}

.str__item {
  background: linear-gradient(transparent 0%, transparent 80px, #faf9f7 80px, #faf9f7 100%);
}

.str__imgwrap {
  width: 50%;
  padding: 0 8% 0 0;
}

.str__txtwrap {
  width: 50%;
  padding: 50px 0 0;
}

.str__txtwrap--inner {
  max-width: 640px;
}
.str__img{
  border-radius: 10px;
  overflow: hidden;
}
.str__img img{
  object-fit: cover;
  width: 100%;
  height: 500px;
}
.str__ttl {
  margin-bottom: 30px;
  font-size:  min(2.8rem,3vw);
  letter-spacing: .05em;
  font-weight: bold;
}

.str__ttl .font-en {
  text-align: center;
  font-size: 5rem;
  color: #fff0d0;
  letter-spacing: .05em;
  line-height: 1;
  display: block;
  margin-bottom: .5em;
}

.str__ttl .color-ma {
  line-height: 1;
  color: #fcc345;
  letter-spacing: .05em;
}

.str__ttl .boxtxt {
  display: inline-block;
  line-height: 55px;
  border-radius: 10px;
  background: #f08200;
  color: #fff;
  font-size: min(2.8rem,3vw);
  margin-right: 10px;
  padding: 0 .5em;
  letter-spacing: .1em;
}

.str__txt {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 2;
}

@media screen and (max-width:1024px) {
  .recruit {
      padding: 60px 0 0;
  }

  .str__copy {
      font-size: 2.4rem;
      margin-bottom: 60px;
  }

  .str__copy .small {
      font-size: 1.4rem;
  }

  .str__item {
      background: linear-gradient(transparent 0%, transparent 50px, #faf9f7 50px, #faf9f7 100%);
  }

  .str__imgwrap {
      width: 50%;
      padding: 0 5% 20px 0;
  }
  .str__img img{
      height: 330px;
  }
  .str__txtwrap {
      width: 50%;
      padding: 30px 0 0;
  }

  .str__ttl {
      margin-bottom: 20px;
      font-size:  min(3rem,3vw);
  }

  .str__ttl .font-en {
      font-size: min(4rem, 4vw);
  }

  .str__ttl .boxtxt {
      line-height: 40px;
      border-radius: 10px;
      font-size: min(3rem,2.8vw);
      margin-right: 10px;
      padding: 0 .5em;
  }

  .str__txt {
      font-size: 1.4rem;
  }
}

@media screen and (max-width:767px) {
  .recruit {
      padding: 60px 0 0;
  }

  .recruit .inner__large {
      padding: 0;
  }

  .str__copy {
      font-size: 1.8rem;
      margin-bottom: 40px;
  }

  .str__copy .small {
      font-size: 1.2rem;
      margin-top: 5px;
  }

  .str__item {
      padding: 0 5%;
      background: linear-gradient(transparent 0%, transparent 30%, #faf9f7 30%, #faf9f7 100%);
  }

  .str__imgwrap {
      width: 100%;
      padding: 0;
      margin: 0 auto 30px;
  }
  .str__img img{
      height: auto;
  }
  .str__txtwrap {
      width: 100%;
      padding: 0 0 20px 15px;
  }

  .str__ttl {
      margin-bottom: 20px;
      font-size: 2rem;
  }

  .str__ttl .font-en {
      font-size: 3rem;

  }

  .str__ttl .boxtxt {
      line-height: 30px;
      border-radius: 5px;
      font-size: 2rem;
      margin-right: 5px;
  }

  .str__txt {
      font-size: 1.4rem;
  }
}

/*============================
  raise
============================*/
.raise {
  padding: 100px 0 0;
}

.raise .str__imgwrap {
  width: 50%;
  padding: 0 0 0 8%;
}


.raise .str__txtwrap--inner {
  max-width: 640px;
  margin: 0 0 0 auto;
  padding: 0 5% 0 0;
}


.raise .str__ttl .font-en {
  margin-left: .75em;

}

.raise__lesson {
  /*background: #faf9f7;*/
  padding: 60px 1% 50px;
}

.raise__lesson--inner {
  max-width: 1280px;
  margin: 0 auto;
}

.raise__h3 {
  font-size: 3.2rem;
  font-weight: bold;
  width: fit-content;
  white-space: nowrap;
  margin: 0 auto 40px;
  padding-bottom: 0.2em;
  border-bottom: 5px solid #ffb000;
}

.raise__tabwrap {
  margin-bottom: 30px;
}

.raise__tab {
  width: 19%;
  height: 65px;
  border-radius: 5px;
  background: #f1eee7;
  text-align: center;
  cursor: pointer;
  transition: .3s ease-out;
  position: relative;
  color: #727171;
  font-weight: bold;

}

.raise__tab .txt {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  font-size: 1.5rem;
  line-height: 1.2;
}

.raise__tab .txt .small {
  font-size: 1.2rem;
  display: block;
}

.raise__tab.active {
  background: #f08200;
  color: #fff;
}

.raise__atcwrap {
  padding: 0 5%;
}

.raise__atc {
  display: none;
}

.raise__atc.atc01 {
  display: block;
}

.raise__h4 {
  font-size: 1.8rem;
  margin-bottom: 40px;
}

.raise__atc--inner {
  padding: 0 5%;
}

.raise__h5 {
  line-height: 55px;
  width: fit-content;
  color: #fff;
  padding: 0 1.5em;
  font-size: 2.2rem;
  background: #ffb000;
  border-radius: 10px;
  margin-bottom: 30px;
}

.raise__ul {
  margin-left: 5%;
}

.raise__ul li {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: .5em;
}

@media screen and (max-width:1024px) {
  .raise {
      padding: 100px 0 0;
  }

  .raise .str__imgwrap {
      width: 50%;
      padding: 0 0 0 5%;
  }


  .raise .str__txtwrap--inner {
      margin: 0 0 0 auto;
      padding: 0 5% 0 0;
  }



  .raise__lesson {
      padding: 50px 0 40px;
  }

  .raise__h3 {
      font-size: 2rem;
      margin: 0 auto 30px;
      padding-bottom: 1em;
  }

  .raise__tabwrap {
      margin-bottom: 30px;
  }

  .raise__tab {
      width: 19%;
      height: 50px;
  }

  .raise__tab .txt {
      font-size: 1.4rem;
      line-height: 1.2;
      letter-spacing: 0;
  }

  .raise__tab .txt .small {
      font-size: 1rem;
      display: block;
      letter-spacing: 0;
  }

  .raise__atcwrap {
      padding: 0 5%;
  }


  .raise__h4 {
      font-size: 1.8rem;
      margin-bottom: 30px;
  }

  .raise__atc--inner {
      padding: 0 5%;
  }

  .raise__h5 {
      line-height: 40px;
      padding: 0 1em;
      font-size: 1.8rem;
      border-radius: 10px;
      margin-bottom: 20px;
  }

  .raise__ul {
      margin-left: 0;
  }

  .raise__ul li {
      font-size: 1.6rem;
      margin-bottom: .5em;
  }
}

@media screen and (max-width:767px) {
  .raise {
      padding: 60px 0 0;
  }

  .raise .inner__large {
      padding: 0;
  }

  .raise__item {
      display: flex;
      flex-direction: column-reverse;
  }

  .raise .str__imgwrap {
      width: 100%;
      padding: 0;
  }


  .raise .str__txtwrap--inner {
      margin: 0 auto;
      padding: 0;
  }


  .raise__lesson {
      padding: 40px 0 30px;
  }

  .raise__h3 {
      font-size: 1.6rem;
      margin: 0 auto 30px;
      padding-bottom: 1em;
  }

  .raise__tabwrap {
      margin-bottom: 20px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
  }

  .raise__tab {
      width: 31%;
      margin: 0 1% 10px;
      height: 40px;
      border-radius: 5px;
  }

  .raise__tab .txt {
      font-size: 1.2rem;
  }

  .raise__tab .txt .small {
      font-size: 1rem;
  }

  .raise__atcwrap {
      padding: 0 5%;
  }


  .raise__h4 {
      font-size: 1.4rem;
      margin-bottom: 20px;
      text-align: justify;
  }

  .raise__atc--inner {
      padding: 0;
  }

  .raise__h5 {
      line-height: 30px;
      padding: 0 1em;
      font-size: 1.4rem;
      border-radius: 5px;
      margin-bottom: 15px;
  }

  .raise__ul {
      margin-left: 0;
  }

  .raise__ul li {
      font-size: 1.3rem;
      margin-bottom: .5em;
      text-indent: -1em;
      padding-left: 1em;

  }

}


/*============================
	resolve
============================*/

.resolve {
  padding: 100px 0 0;
  background-color: #FFFAED;
}

.resolve__h3 {
  text-align: center;
  font-size: 3.2rem;
  font-weight: bold;
  /*width: fit-content;
  border-bottom: 5px solid #ffb000;
  padding-bottom: 0.3em;*/
  text-decoration: underline 5px;
  text-decoration-color: #ffb000;
  text-underline-offset: 5px;
  margin-bottom: 50px;
  line-height: 1.7em;
}

.resolve__h4 {
  font-size: 2.2rem;
  margin-bottom: 30px;
}

.resolve__atc--item {
  margin-bottom: 70px;
}

.resolve__atc--item:last-child {
  margin-bottom: 0;
}

.resolve__ico {
  width: 140px;
}

.resolve__txtwrap {
  width: calc(100% - 140px);
  padding: 0 0 0 3%;
}

.resolve__h5 {
  font-size: 2.4rem;
  margin-bottom: .5em;
}

.resolve__txt {
  font-size: 1.4rem;
  font-weight: bold;
}

@media screen and (max-width:1024px) {

  .resolve {
      padding: 100px 0 0;
  }

  .resolve__h3 {
      font-size: 2rem;
      text-underline-offset: 6px;
      margin-bottom: 40px;
  }

  .resolve__h4 {
      font-size: 1.8rem;
      margin-bottom: 20px;
  }

  .resolve__atc--item {
      margin-bottom: 40px;
  }

  .resolve__ico {
      width: 100px;
  }

  .resolve__txtwrap {
      width: calc(100% - 100px);
      padding: 0 0 0 3%;
  }

  .resolve__h5 {
      font-size: 1.8rem;
      margin-bottom: .5em;
  }

  .resolve__txt {
      font-size: 1.4rem;

  }
}

@media screen and (max-width:767px) {

  .resolve {
      padding: 80px 0 0;
  }

  .resolve .inner__large {
      padding: 0;
  }

  .resolve__h3 {
      font-size: 1.6rem;
      text-underline-offset: 6px;
      margin-bottom: 30px;
  }

  .resolve__h4 {
      font-size: 1.8rem;
      margin-bottom: 20px;
  }

  .resolve__atc--item {
      margin-bottom: 30px;
      display: flex;
  }

  .resolve__ico {
      width: 50px;
  }

  .resolve__txtwrap {
      width: calc(100% - 50px);
      padding: 0 0 0 3%;
  }

  .resolve__h5 {
      font-size: 1.4rem;
      margin-bottom: .5em;
  }

  .resolve__txt {
      font-size: 1.3rem;

  }
}


/**********FloatingBnrここから**********/
.banner {
  /*display: none;*/
  position: fixed;
  margin: 15px 20px;
  z-index: 99998;
  bottom: 0;
  right: 0;
}
.banner a {
  text-decoration: none;
}
.pc_bnr{
  display:block;
}
.sp_bnr{
  display:none;
}
.banner-icon {
  color: #f8f8f8;
  font-size: 40px;
}

.banner-back {
  width: 300px;
  background-color: #fff;
  border-radius: 25px;
}

.banner-top {
  padding: 20px;
  border-radius: 25px 25px 0px 0px;
  background: -moz-radial-gradient(#0AB0C7, #006EB0 70%);
  background: -webkit-radial-gradient(#0AB0C7, #006EB0 70%);
  background: radial-gradient(#0AB0C7, #006EB0 70%);
}

.banner-copy {
  font-size: 18px;
  position: relative;
}
.banner-copy::after {
  font-family: 'Font Awesome 6 Free';
  font-size: 20px;
  content: '\f054';
  color: #006EB0;
  position: absolute;
  margin-top: 11px;
  top: 0;
  right: 18px;
}

.banner-bottom {
  line-height: 1.6;
}

.banner-body {
  width: 300px;
  background: #f8f8f8;
  color: #000000;
  font-weight: bold;
  text-align: center;
  border-radius: 25px;
  -webkit-box-shadow: 0 0 7px rgb(0 0 0 / 40%);
  box-shadow: 0 0 7px rgb(0 0 0 / 40%);
}
.banner-body:hover {
  transition: opacity 0.3s ease;
  opacity: 0.7;
}

.banner-close {
  font-weight: bold;
  position: absolute;
  top: -2px;
  right: -4px;
  z-index: 99999;
  padding: 4px 8px;
  border: none;
  background-color: #f8f8f8;
  border-radius: 25px;
  cursor: pointer;
  -webkit-box-shadow: 0 0 7px rgb(0 0 0 / 40%);
  box-shadow: 0 0 7px rgb(0 0 0 / 40%);
  color: #000 !important;
}
.banner-close a:link, a:visited, a:hover, a:active{
  /*color: #000 !important;*/
}

@media screen and (max-width: 750px) {
  .banner {
      width: 100%;
      margin: 0px;
  }
  .banner .pc_bnr{
    display: none;
  }
  .banner .sp_bnr{
    width: 100%;
    display:block;
  }
  
  .banner-icon {
      font-size: 28px;
  }
  .banner-body {
      width: 100%;
      border-radius: 0px;
  }
  .banner-back {
      width: 100%;
      margin: 0px;
      border-radius: 0px;
  }
  .banner-top {
      padding: 5px;
      border-radius: 0px;
      background: -moz-linear-gradient(#006EB0 50%, #0AB0C7);
      background: -webkit-linear-gradient(#006EB0 50%, #0AB0C7);
      background: linear-gradient(#006EB0 50%, #0AB0C7);
  }

  .banner-copy {
      font-size: 15px;
  }
  .banner-copy::after {
      font-size: 12px;
      margin-top: 1.4px;
      margin-left: 12px;
      top: initial;
      right: initial;
  }
  .banner-close {
      top: 8px;
      right: 15px;
      
      -webkit-touch-callout: none;
      -webkit-tap-highlight-color: transparent;
      cursor: pointer;
      display: block;
  }
 
 
  }
  .banner-copy-br {
      display: none;

  }

/**********FloatingBnrここまで**********/
/**********FloatingBnr2ここから**********/
.banner2 {
  /*display: none;*/
  position: fixed;
  margin: 15px 20px;
  z-index: 99998;
  bottom: 0;
  right: 0;
}
.banner2 a {
  text-decoration: none;
}
.banner2 .pc_bnr{
  display:block;
}
.banner2 .sp_bnr{
  display:none;
}
.banner2 .banner-icon {
  color: #f8f8f8;
  font-size: 40px;
}

.banner2 .banner-back {
  width: 300px;
  background-color: #fff;
  border-radius: 25px;
}

.banner2 .banner-top {
  padding: 20px;
  border-radius: 25px 25px 0px 0px;
  background: -moz-radial-gradient(#0AB0C7, #006EB0 70%);
  background: -webkit-radial-gradient(#0AB0C7, #006EB0 70%);
  background: radial-gradient(#0AB0C7, #006EB0 70%);
}

.banner2 .banner-copy {
  font-size: 18px;
  position: relative;
}
.banner2 .banner-copy::after {
  font-family: 'Font Awesome 6 Free';
  font-size: 20px;
  content: '\f054';
  color: #006EB0;
  position: absolute;
  margin-top: 11px;
  top: 0;
  right: 18px;
}

.banner2 .banner-bottom {
  line-height: 1.6;
}

.banner2 .banner-body {
  width: 300px;
  background: #f8f8f8;
  color: #000000;
  font-weight: bold;
  text-align: center;
  border-radius: 25px;
  -webkit-box-shadow: 0 0 7px rgb(0 0 0 / 40%);
  box-shadow: 0 0 7px rgb(0 0 0 / 40%);
}
.banner2 .banner-body:hover {
  transition: opacity 0.3s ease;
  opacity: 0.7;
}

.banner2 .banner-close {
  font-weight: bold;
  position: absolute;
  top: -2px;
  right: -4px;
  z-index: 99999;
  padding: 4px 8px;
  border: none;
  background-color: #f8f8f8;
  border-radius: 25px;
  cursor: pointer;
  -webkit-box-shadow: 0 0 7px rgb(0 0 0 / 40%);
  box-shadow: 0 0 7px rgb(0 0 0 / 40%);
  color: #000 !important;
}
.banner-close a:link, a:visited, a:hover, a:active{
  /*color: #000 !important;*/
}

@media screen and (max-width: 750px) {
  .banner2 {
      width: 50%;
      margin: 0px;
      bottom: 10px;
      right: 10px;
  }
  .banner2 .pc_bnr{
    /*display: none;*/
  }
  .banner2 .sp_bnr{
    /*width: 100%;
    display:block;*/
  }
  
  .banner2 .banner-icon {
      font-size: 28px;
  }
  .banner2 .banner-body {
      width: 100%;
      border-radius: 0px;
  }
  .banner2 .banner-back {
      width: 100%;
      margin: 0px;
      border-radius: 0px;
  }
  .banner2 .banner-top {
      padding: 5px;
      border-radius: 0px;
      background: -moz-linear-gradient(#006EB0 50%, #0AB0C7);
      background: -webkit-linear-gradient(#006EB0 50%, #0AB0C7);
      background: linear-gradient(#006EB0 50%, #0AB0C7);
  }

  .banner2 .banner-copy {
      font-size: 15px;
  }
  .banner2 .banner-copy::after {
      font-size: 12px;
      margin-top: 1.4px;
      margin-left: 12px;
      top: initial;
      right: initial;
  }
  .banner2 .banner-close {
      top: -10px;
      right: 0px;
      
      -webkit-touch-callout: none;
      -webkit-tap-highlight-color: transparent;
      cursor: pointer;
      display: block;
  }
 
 
  }
  .banner2 .banner-copy-br {
      display: none;

  }

/**********FloatingBnr2ここまで**********/

