/*============================================================
common
==============================================================*/
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  color: #252c5a;
  letter-spacing: 0.08rem;
  animation: fadeIn 1.5s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0.01;
  }
  100% {
    opacity: 1;
  }
}
img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  margin: auto;
}

h1, h2, h3 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  transition: all 0.2s ease-in-out 0s;
}
a:hover {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
a:link, a:visited, a:active {
  color: #fff;
}

.sp {
  display: inherit;
}
@media (min-width: 769px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}
@media (min-width: 769px) {
  .pc {
    display: inherit;
  }
}

.inner {
  width: 100%;
  margin: auto;
  padding: 0 20px;
}
@media (min-width: 769px) {
  .inner {
    width: 90%;
    max-width: 1040px;
  }
}

.en {
  font-family: "Roboto", sans-serif;
}

.sec {
  padding: 60px 0;
}
@media (min-width: 769px) {
  .sec {
    padding: 80px 0;
  }
}

h2 {
  text-align: center;
  font-weight: 900;
}

.head_ttl {
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 30px;
  font-size: 1.875rem;
  margin-bottom: 30px;
}
.head_ttl span {
  display: block;
  color: #f5c83f;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.3rem;
  margin-top: 0.2rem;
}
@media (min-width: 769px) {
  .head_ttl {
    font-size: 40px;
    font-size: 2.5rem;
    margin-bottom: 50px;
  }
  .head_ttl span {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.btn {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 900;
  text-align: center;
  background: #22b260;
  background-clip: padding-box;
  border-radius: 100vh;
  padding: 1em 2em;
}
@media (min-width: 769px) {
  .btn {
    width: 380px;
    font-size: 18px;
    font-size: 1.125rem;
    padding: 18px 45px;
  }
}

/*============================================================
header
==============================================================*/
header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
}

.header_inner {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  padding: 10px 15px;
}

.header_logo img {
  zoom: 0.8;
}

.navi .link {
  font-weight: 900;
}
.navi .link a:link, .navi .link a:visited, .navi .link a:active {
  color: #252c5a;
}
.navi .btn {
  padding: 12px 20px 12px 20px;
}

#pc_navi ul {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  font-size: 14px;
  font-size: 0.875rem;
}

#sp_navi {
  position: fixed;
  z-index: -1;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  transition: all 0.3s;
}
#sp_navi ul {
  display: none;
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#sp_navi li {
  list-style: none;
  text-align: center;
}
#sp_navi li a {
  font-size: 15px;
  font-size: 0.9375rem;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}
#sp_navi li .btn {
  width: 280px;
  padding: 12px 20px 12px 20px;
  margin-top: 10px;
}
#sp_navi li .btn::after {
  right: 20px;
  margin-top: -13px;
}

#sp_navi.panelactive {
  opacity: 1;
  z-index: 999;
}

#sp_navi.panelactive ul {
  display: block;
}

.openbtn {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background: #252c5a;
  border-radius: 0 0 4px 4px;
}
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background-color: #fff;
  width: 45%;
}
.openbtn span:nth-of-type(1) {
  top: 15px;
}
.openbtn span:nth-of-type(2) {
  top: 23px;
}
.openbtn span:nth-of-type(3) {
  top: 31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

@media (min-width: 769px) {
  header {
    position: fixed;
    z-index: 100;
  }
  .header_inner {
    height: 70px;
    padding: 0 20px;
  }
  .header_logo img {
    zoom: 1;
  }
  #pc_navi ul {
    font-size: 1.300390117vw;
  }
  #pc_navi ul li {
    margin: 0 15px;
  }
  .navi .btn {
    width: auto;
    font-size: 1.300390117vw;
  }
}
@media (min-width: 1040px) {
  #pc_navi ul {
    font-size: 13px;
    font-size: 0.8125rem;
  }
  .navi .btn {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
/*============================================================
cta
==============================================================*/
.medal_list {
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center; /* Safari */
  flex-wrap: wrap;
}
.medal_list li {
  margin: 0 3px;
}

.cta {
  background: url(../img/cta_bg.jpg) no-repeat bottom center/cover;
  padding: 60px 0;
}
.cta .medal_list {
  margin: -70px 0 10px 0;
}
.cta .medal_list img {
  zoom: 0.6;
}

.cta_box {
  position: relative;
  max-width: 900px;
  background: #fff;
  border: solid 5px #252c5a;
  border-radius: 20px;
  padding-bottom: 30px;
  margin: 0 auto;
}
.cta_box .man, .cta_box .woman {
  position: absolute;
}
.cta_box .man img, .cta_box .woman img {
  zoom: 0.3;
}
.cta_box .man {
  right: 0;
  bottom: -66px;
}
.cta_box .woman {
  left: 0;
  bottom: -66px;
}

.cta_head {
  text-align: center;
  color: #fff;
  background: #252c5a;
  padding: 20px 0 90px;
  border-radius: 10px 10px 0 0;
}
.cta_head h2 {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.btn_wrap {
  text-align: center;
}
.btn_wrap p {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 900;
  margin-bottom: 6px;
}

.cta_btn {
  box-shadow: 8px 8px 0px 0px #146838;
  -webkit-box-shadow: 8px 8px 0px 0px #146838;
}
.cta_btn:hover {
  transform: translate(0, 3px);
  box-shadow: 2px 2px 0px 0px #146838;
  opacity: 1;
  filter: alpha(opacity=100);
}

@media (min-width: 769px) {
  .cta .medal_list {
    margin: -80px 0 10px 0;
  }
  .cta .medal_list img {
    zoom: 0.85;
  }
  .cta_box .man img, .cta_box .woman img {
    zoom: 1;
  }
  .cta_box .man {
    right: -40px;
    bottom: -70px;
  }
  .cta_box .woman {
    left: -10px;
    bottom: -70px;
  }
  .cta_head {
    padding: 30px 0 90px;
  }
  .cta_head h2 {
    font-size: 36px;
    font-size: 2.25rem;
  }
  .btn_wrap p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
/*============================================================
kv
==============================================================*/
#kv {
  background: url(../img/kv_bg.jpg) no-repeat bottom center/cover;
  padding: 80px 0 60px;
}

.kv_box .man, .kv_box .woman {
  position: absolute;
}
.kv_box .man img, .kv_box .woman img {
  zoom: 0.3;
}
.kv_box .man {
  right: -20px;
  bottom: -65px;
}
.kv_box .woman {
  left: -20px;
  bottom: -65px;
}
.kv_box h1 {
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
  font-weight: 900;
  background: #252c5a;
  border-radius: 10px 10px 0 0;
  padding: 10px 8px 40px;
}
.kv_box h1 span {
  display: block;
  margin-bottom: 10px;
}
.kv_box .medal_list {
  margin: -20px 0 10px 0;
}
.kv_box .medal_list img {
  zoom: 0.6;
}

@media (min-width: 769px) {
  #kv {
    padding: 130px 0 60px;
  }
  .kv_box {
    max-width: 800px;
  }
  .kv_box .man img, .kv_box .woman img {
    zoom: 1;
  }
  .kv_box .man {
    right: -110px;
    bottom: -65px;
  }
  .kv_box .woman {
    left: -90px;
    bottom: -65px;
  }
  .kv_box h1 {
    font-size: 20px;
    font-size: 1.25rem;
    padding: 30px 0 40px;
  }
  .kv_box h1 span {
    margin-bottom: 20px;
  }
  .kv_box .medal_list img {
    zoom: 1;
  }
}
/*============================================================
worry
==============================================================*/
#worry {
  background: #e9e9ee;
  padding: 40px 0 0;
}
#worry h2 {
  font-size: 22px;
  font-size: 1.375rem;
}
#worry ul {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center; /* Safari */
  flex-wrap: wrap;
  margin-top: 20px;
}
#worry li {
  position: relative;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  color: #252c5a;
  font-weight: 700;
  text-align: center;
  width: 100%;
  background: #fff;
  border: solid 4px #252c5a;
  border-radius: 20px;
  padding: 15px 20px;
  margin-bottom: 20px;
  box-sizing: border-box;
}
#worry figure img {
  zoom: 0.8;
}

@media (min-width: 769px) {
  #worry {
    padding: 60px 0 20px;
    margin-bottom: 0;
  }
  #worry h2 {
    font-size: 40px;
    font-size: 2.5rem;
  }
  #worry .worry_img {
    display: none;
  }
  #worry ul {
    background: url(../img/hi-res/worry_img@2x.png) no-repeat top center/contain;
    margin-top: 50px;
  }
  #worry li {
    width: calc(34% - 5px);
    height: 122px;
  }
  #worry li:nth-child(odd)::before {
    content: "";
    position: absolute;
    top: 50%;
    right: auto;
    bottom: auto;
    left: 100%;
    margin-top: -6px;
    border: 6px solid transparent;
    border-left: 8px solid #fff;
    z-index: 2;
  }
  #worry li:nth-child(odd)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: auto;
    bottom: auto;
    left: 100%;
    margin-top: -10px;
    border: 10px solid transparent;
    border-left: 14px solid #252c5a;
    z-index: 1;
  }
  #worry li:nth-child(even)::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    bottom: auto;
    left: auto;
    margin-top: -6px;
    border: 6px solid transparent;
    border-right: 8px solid #fff;
    z-index: 2;
  }
  #worry li:nth-child(even)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    bottom: auto;
    left: auto;
    margin-top: -10px;
    border: 10px solid transparent;
    border-right: 14px solid #252c5a;
    z-index: 1;
  }
}
/*============================================================
about
==============================================================*/
#about {
  background: #4ec180;
  padding-top: 0;
}

.triangle {
  max-width: 1280px;
  width: 100%;
  height: 80px;
  background-color: #e9e9ee;
  -webkit-clip-path: polygon(50% 80px, 0% 0%, 100% 0%);
          clip-path: polygon(50% 80px, 0% 0%, 100% 0%);
  margin: 0 auto;
  position: relative;
  top: -1px;
}

.about_head {
  position: relative;
  margin: 50px auto 80px;
}
.about_head h2 {
  font-size: 28px;
  font-size: 1.75rem;
  background: #f5c83f;
  padding: 5px 18px;
  margin-bottom: 20px;
}
.about_head p {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.8;
  padding-bottom: 70px;
}
.about_head .man {
  position: absolute;
  right: 0;
  left: 0;
  bottom: -80px;
  margin: 0 auto;
}
.about_head .man img {
  zoom: 0.6;
}

.about_box {
  position: relative;
  background: #fff;
  border: solid 4px #252c5a;
  border-radius: 20px;
  padding: 20px;
}
.about_box h3 {
  position: absolute;
  top: -33px;
  right: 0;
  left: 0;
  display: inline-table;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 900;
  color: #fff;
  background: #252c5a;
  border-radius: 100vh;
  padding: 4px 70px 10px;
  margin: 0 auto;
}
.about_box .des {
  text-align: center;
}
.about_box ul {
  margin-top: 50px;
}
.about_box li {
  position: relative;
  background: #f5c83f;
  border-radius: 4px;
  padding: 70px 20px 30px;
  margin-bottom: 40px;
}
.about_box li:last-child {
  margin-bottom: 0;
}
.about_box li figure {
  position: absolute;
  top: -30px;
  right: 0;
  left: 0;
}
.about_box li p {
  padding: 0 18px;
}
.about_box h4 {
  text-align: center;
  margin-bottom: 16px;
}

@media (min-width: 769px) {
  .about_head {
    max-width: 810px;
  }
  .about_head h2 {
    font-size: 40px;
    font-size: 2.5rem;
    padding: 5px 25px;
    margin-bottom: 40px;
  }
  .about_head p {
    font-size: 18px;
    font-size: 1.125rem;
    padding-bottom: 0;
  }
  .about_head .man {
    right: -60px;
    left: auto;
    bottom: -80px;
    margin: 0;
  }
  .about_head .man img {
    zoom: 1;
  }
  .about_box {
    padding: 50px;
  }
  .about_box h3 {
    font-size: 36px;
    font-size: 2.25rem;
  }
  .about_box ul {
    display: flex;
    display: -ms-flexbox;
    justify-content: space-between;
    -webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    align-items: normal;
    -webkit-box-align: normal;
    -ms-flex-align: normal; /* Safari */
    flex-wrap: wrap;
  }
  .about_box li {
    width: 31.5%;
    margin-bottom: 0;
  }
}
/*============================================================
step
==============================================================*/
#step {
  padding-bottom: 0;
}
#step h2 {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  background: #252c5a;
  border-radius: 100vh;
  padding: 14px 0;
  margin: 0 auto 40px;
}

.step_wrap {
  position: relative;
}

.step_ttl {
  display: inline-flex;
  align-items: center;
}
.step_ttl .circle {
  display: inline-block;
  width: 2.5em;
  height: 2.5em;
  content: "";
  border-radius: 50%;
  background-color: #fff;
  border: solid 5px #252c5a;
}
.step_ttl .num {
  color: #252c5a;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: bold;
  padding-left: 1em;
}

.step_contents {
  padding-left: 4em;
  margin-bottom: 4em;
}
.step_contents .flex_wrap {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: normal;
  -webkit-box-align: normal;
  -ms-flex-align: normal; /* Safari */
  flex-wrap: wrap;
}
.step_contents .flex_wrap .txt p {
  margin-bottom: 20px;
}
.step_contents h3 {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 900;
  margin-bottom: 25px;
}

.step_line {
  width: 5px;
  height: calc(100% + 4em);
  background-color: #252c5a;
  position: absolute;
  top: 1em;
  left: 1.05em;
  z-index: -1;
}

.last_step_line {
  height: 98%;
}

.maker {
  -webkit-text-decoration: underline 0.3em #f5c83f;
          text-decoration: underline 0.3em #f5c83f;
  text-underline-offset: -0.2em;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

.pillars {
  background: #fefae8;
  border-radius: 20px;
  margin-top: 50px;
  padding: 30px 0;
}
.pillars h4 {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  margin-bottom: 20px;
}
.pillars ul {
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: normal;
  -webkit-box-align: normal;
  -ms-flex-align: normal; /* Safari */
  flex-wrap: wrap;
}
.pillars li {
  margin: 10px 20px;
}
.pillars h5 {
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
  margin: 10px 0 5px;
}
.pillars p {
  font-size: 14px;
  font-size: 0.875rem;
}

.type {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: normal;
  -webkit-box-align: normal;
  -ms-flex-align: normal; /* Safari */
  flex-wrap: wrap;
  margin: 50px 0 30px;
}
.type li {
  background: #fefae8;
  border-radius: 20px;
  padding: 20px 20px 30px;
  margin-bottom: 10px;
}
.type h4 {
  text-align: center;
}
.type figure {
  margin: 20px 0;
}
.type p {
  padding: 0 15px;
}

.step_btn {
  width: auto;
  border: solid 2px #22b260;
  background: #fff;
}
.step_btn:link, .step_btn:visited, .step_btn:active {
  color: #22b260;
}

.effect {
  background: #fefae8;
  border-radius: 20px;
  margin-top: 50px;
  padding: 30px 20px;
}
.effect h4 {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 20px;
}
.effect .flex_wrap {
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center; /* Safari */
  flex-wrap: wrap;
}
.effect li {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.effect li::before {
  content: "";
  content: url(../img/lo-res/step3_icon.png);
  vertical-align: middle;
  margin-right: 4px;
}

@media (min-width: 769px) {
  #step h2 {
    font-size: 40px;
    font-size: 2.5rem;
  }
  .step_contents .flex_wrap .txt {
    width: 52%;
  }
  .step_contents .flex_wrap .txt p {
    margin-bottom: 0;
  }
  .step_contents h3 {
    font-size: 36px;
    font-size: 2.25rem;
  }
  .pillars h4 {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .pillars li {
    width: 15%;
    margin: 0 15px;
  }
  .type li {
    width: 31.5%;
    margin-bottom: 0;
  }
  .effect {
    padding: 30px 0;
  }
  .effect h4 {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .effect li {
    font-size: 16px;
    font-size: 1rem;
  }
}
/*============================================================
price
==============================================================*/
#price {
  padding-top: 40px;
}

.price_box {
  position: relative;
  max-width: 700px;
  background: #ececec;
  padding: 40px 20px;
  margin: 0 auto;
}
.price_box ul {
  margin-top: 30px;
}
.price_box li {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 900;
  margin-bottom: 10px;
}
.price_box li::before {
  content: "";
  display: inline-block;
  background: #f5c83f;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 10px;
}
.price_box li .caution {
  margin-left: 20px;
}
.price_box li .indent {
  margin-left: 1.5em;
}
.price_box .caution {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
}

.price_card {
  text-align: center;
}
.price_card .content {
  font-style: italic;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 900;
}
.price_card .content .yen {
  font-size: 30px;
  font-size: 1.875rem;
}
.price_card .content .num {
  font-size: 40px;
  font-size: 2.5rem;
}

.ring {
  position: absolute;
  top: -8px;
  right: 0;
  left: 0;
  margin: 0 auto;
}

@media (min-width: 769px) {
  .price_box {
    padding: 80px 130px;
  }
  .price_box ul {
    margin-top: 50px;
  }
  .price_box li {
    font-size: 18px;
    font-size: 1.125rem;
    margin-bottom: 20px;
  }
  .price_box li .indent {
    margin-left: 0;
  }
  .price_card .content {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .price_card .content .yen {
    font-size: 42px;
    font-size: 2.625rem;
  }
  .price_card .content .num {
    font-size: 60px;
    font-size: 3.75rem;
  }
}
/*============================================================
flow
==============================================================*/
#flow {
  background: #f5f5f5;
}
#flow ul {
  max-width: 800px;
  margin: 0 auto;
}
#flow li {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 10px 20px 20px;
  margin-bottom: 10px;
}
#flow .num {
  text-align: center;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 900;
  color: #f5c83f;
  border-bottom: solid 4px #f5f5f5;
  margin-bottom: 10px;
}
#flow h3 {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 900;
  margin-bottom: 6px;
}
#flow .strong {
  font-weight: 900;
}

.flow_img01, .flow_img02, .flow_img03 {
  position: absolute;
}
.flow_img01 img, .flow_img02 img, .flow_img03 img {
  zoom: 0.8;
}

.flow_img01 {
  top: -40px;
  right: 0;
}

.flow_img02 {
  top: 15px;
  right: 0;
}

.flow_img03 {
  right: 0;
  bottom: -80px;
}

@media (min-width: 769px) {
  #flow li {
    display: flex;
    display: -ms-flexbox;
    justify-content: normal;
    -webkit-box-pack: normal;
    -ms-flex-pack: normal;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center; /* Safari */
    flex-wrap: wrap;
    height: 160px;
    padding: 20px 40px;
  }
  #flow .num {
    text-align: left;
    font-size: 60px;
    font-size: 3.75rem;
    border-bottom: none;
    border-right: solid 4px #f5f5f5;
    padding-right: 20px;
    margin-right: 24px;
    margin-bottom: 0;
  }
  #flow h3 {
    text-align: left;
    font-size: 24px;
    font-size: 1.5rem;
  }
  #flow .txt {
    max-width: 600px;
  }
  .flow_img01 img, .flow_img02 img, .flow_img03 img {
    zoom: 1;
  }
  .flow_img01 {
    top: -40px;
    right: -20px;
  }
  .flow_img02 {
    top: -10px;
    right: -40px;
  }
  .flow_img03 {
    right: -30px;
    bottom: -30px;
  }
}
/*============================================================
faq
==============================================================*/
.faq_box {
  margin: 0 auto;
}

.accordion {
  margin-bottom: 15px;
}

.toggle {
  display: none;
}

.accordion_ttl {
  display: block;
  position: relative;
  text-align: left;
  color: #252c5a;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.4rem;
  background: #fff;
  padding: 10px 50px 10px 10px;
  z-index: 1;
  cursor: pointer;
  transition-duration: 0.2s;
  border-bottom: solid 2px #dcdcdc;
  font-weight: 900;
}
.accordion_ttl p {
  display: flex;
  align-items: center;
}
.accordion_ttl span {
  flex-shrink: 0;
  display: inline-block;
  text-align: center;
  color: #22b260;
  font-size: 42px;
  font-size: 2.625rem;
  line-height: 4rem;
  margin-right: 20px;
  margin-top: 10px;
}
.accordion_ttl::before {
  content: "";
  width: 20px;
  height: 2px;
  background: #22b260;
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
}
.accordion_ttl::after {
  content: "";
  width: 20px;
  height: 2px;
  background: #22b260;
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translateY(-50%) rotate(90deg);
  transition: 0.5s;
}

.accordion_ttl,
.accordion_txt {
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}

.accordion_txt {
  height: 0;
  margin-bottom: 10px;
  padding: 0 15px;
  overflow: hidden;
}
.accordion_txt .answer {
  flex-shrink: 0;
  display: inline-block;
  text-align: center;
  color: #f5c83f;
  font-size: 42px;
  font-size: 2.625rem;
  margin-right: 20px;
  margin-top: 10px;
}
.accordion_txt p {
  display: flex;
  align-items: center;
}

.toggle:checked + .accordion_ttl + .accordion_txt {
  height: auto;
  padding: 20px 15px;
  transition: all 0.3s;
}

.toggle:checked + .accordion_ttl::after {
  transform: translateY(-50%) rotate(0);
}

@media (min-width: 769px) {
  .faq_box {
    width: 96%;
    max-width: 800px;
    margin: 0 auto;
  }
  .accordion_ttl {
    font-size: 18px;
    font-size: 1.125rem;
    padding: 0 66px 0 15px;
  }
  .accordion_txt {
    font-size: 16px;
    font-size: 1rem;
    padding: 0 66px 0 15px;
  }
  .toggle:checked + .accordion_ttl + .accordion_txt {
    padding: 20px 66px 20px 15px;
  }
}
/*============================================================
contact
==============================================================*/
#contact {
  background: url(../img/contact_bg.jpg) no-repeat bottom center/cover;
}
#contact .head_ttl {
  margin-bottom: 30px;
}

.contact_box {
  max-width: 800px;
  background: #fff;
  border-radius: 20px;
  padding: 40px 20px;
  margin: 0 auto;
}

.contact_group {
  margin-bottom: 20px;
}
.contact_group textarea {
  height: 100px;
}

.contact_label {
  font-weight: 700;
  margin-bottom: 8px;
}

.input_group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.contact_req, .contact_any {
  font-size: 10px;
  font-size: 0.625rem;
  padding: 2px 9px 3px;
  border-radius: 100vh;
  margin-right: 8px;
  position: relative;
  top: -2px;
}

.contact_req {
  color: #fff;
  background: #22b260;
}

.contact_any {
  color: #252c5a;
  background: #ececec;
}

.contact_note {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  margin-top: 6px;
  margin-left: 2px;
}

.contact_input {
  width: 100%;
  height: 40px;
  background: #fff;
  padding: 8px 16px 8px;
  border: 1px solid #cfd0cc;
  border-radius: 5px;
}

.agree {
  text-align: left;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  margin: 30px auto;
}
.agree a {
  text-decoration: underline;
}
.agree a:link, .agree a:visited, .agree a:active {
  color: #252c5a;
}

.contact_action {
  text-align: center;
}

.contact_btn {
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  width: auto;
  border: none;
  margin-bottom: 10px;
}
.contact_btn:hover {
  transition: all 0.2s ease-in-out 0s;
  opacity: 0.5;
  filter: alpha(opacity=50);
}

@media (min-width: 769px) {
  .contact_box {
    padding: 50px 100px;
  }
  .contact_note {
    display: inline;
    font-size: 14px;
    font-size: 0.875rem;
    margin-left: 16px;
  }
}

.contact-form__confirm {
  display: none;
}

/*============================================================
company
==============================================================*/
#company h2 {
  font-size: 30px;
  font-size: 1.875rem;
}
#company h3 {
  font-weight: 900;
  font-size: 14px;
  font-size: 0.875rem;
}
#company li {
  font-size: 14px;
  font-size: 0.875rem;
  border-bottom: solid 1px #dcdcdc;
  padding: 16px 40px;
}
#company li:last-child {
  border-bottom: none;
}

@media (min-width: 769px) {
  #company .inner {
    display: flex;
    display: -ms-flexbox;
    justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center; /* Safari */
    flex-wrap: wrap;
  }
  #company h2 {
    margin-right: 60px;
  }
  #company h3 {
    width: 80px;
  }
  #company li {
    display: flex;
    display: -ms-flexbox;
    justify-content: normal;
    -webkit-box-pack: normal;
    -ms-flex-pack: normal;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center; /* Safari */
    flex-wrap: wrap;
  }
}
/*============================================================
footer
==============================================================*/
footer {
  color: #fff;
  background: #252c5a;
  text-align: center;
}

.footer_inner {
  width: 100%;
  margin: auto;
  padding: 40px 0;
}
@media (min-width: 769px) {
  .footer_inner {
    max-width: 1040px;
    margin: auto;
    padding: 40px 20px;
  }
}

.footer_list {
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center; /* Safari */
  flex-wrap: wrap;
  font-size: 12px;
  font-size: 0.75rem;
}
.footer_list li {
  font-weight: 700;
  margin: 0 10px;
}

.footer_copy {
  display: inline-block;
  font-size: 10px;
  font-size: 0.625rem;
}

@media (min-width: 769px) {
  .footer_inner {
    display: flex;
    display: -ms-flexbox;
    justify-content: space-between;
    -webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center; /* Safari */
    flex-wrap: wrap;
  }
  .footer_list li {
    margin: 0 20px 0 0;
  }
}