@charset "UTF-8";
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  text-align: left;
  vertical-align: top;
  font-weight: normal;
}

td {
  text-align: left;
  vertical-align: top;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input, select, textarea, img {
  vertical-align: middle;
}

ul, dl, ol {
  list-style: none;
}

em {
  font-style: normal;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/* ========================================
    ■ 必須設定
======================================== */
:root {
  --font-family-default: "Noto Sans JP", sans-serif;
  --font-family-helvetica: Helvetica, Arial, "Noto Sans JP", sans-serif;
  --color-bg-default: #fff;
  --color-font-default: #000000;
  --color-link-default: #51AE75;
  --color-gray: #EFF3F9;
  --color-white: #FFFFFF;
  --color-deep-green: #145E5E;
  --color-orange: #FF6A05;
  --color-black: #000000;
  --color-gray02: #ACACAC;
  --color-black02: #454545;
  --color-lightgreen: #51AE75;
  --color-ash-green: #365044;
  --grad02: linear-gradient(90deg, #51AE75 4%, #64B848 50%, #73C84F 78%, #8AD939 98%);
}

.font_gray {
  color: var(--color-gray);
}
.font_white {
  color: var(--color-white);
}
.font_deep-green {
  color: var(--color-deep-green);
}
.font_orange {
  color: var(--color-orange);
}
.font_black {
  color: var(--color-black);
}
.font_gray02 {
  color: var(--color-gray02);
}
.font_black02 {
  color: var(--color-black02);
}
.font_lightgreen {
  color: var(--color-lightgreen);
}
.font_ash-green {
  color: var(--color-ash-green);
}
.font_grad02, .sec01_voice .flickity-page-dots > li.dot.is-selected::before {
  background: var(--grad02);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 関数
----------------------------- */
.is_sp {
  display: block;
}
@media screen and (min-width: 769px) {
  .is_sp {
    display: none;
  }
}

.is_pc {
  display: none;
}
@media screen and (min-width: 769px) {
  .is_pc {
    display: block;
  }
}

img.is_sp,
br.is_sp {
  display: inline-block;
}
@media screen and (min-width: 769px) {
  img.is_sp,
  br.is_sp {
    display: none;
  }
}

img.is_pc,
br.is_pc {
  display: none;
}
@media screen and (min-width: 769px) {
  img.is_pc,
  br.is_pc {
    display: inline-block;
  }
}

/* ========================================
    ■ General
======================================== */
/* 1px = 0.01remに変換（100px = 1rem）*/
html {
  font-size: 13.0208333333vw;
}
@media screen and (min-width: 769px) {
  html {
    font-size: 6.5104166667vw;
  }
}

body {
  font-family: var(--font-family-default);
  color: var(--color-font-default);
  line-height: 1.6;
  background: var(--color-bg-default);
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt" 1;
  font-size: 0.3rem;
}
@media screen and (min-width: 769px) {
  body {
    font-size: 0.23rem;
  }
}

a {
  color: var(--color-link-default);
  text-decoration: underline;
  transition: 0.2s ease;
}
a::before, a::after {
  transition: 0.2s ease;
}
a:hover {
  text-decoration: none;
  transition: 0.2s ease;
}
a:hover::before, a:hover::after {
  transition: 0.2s ease;
}

img,
video,
object {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  border: none;
}

section {
  position: relative;
}

mark {
  background: none;
  color: inherit;
  font-weight: inherit;
  font-style: inherit;
}

picture {
  display: block;
}

/* utility class
----------------------------- */
.clearfix {
  overflow: hidden;
  zoom: 1;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.scrollbar::-webkit-scrollbar {
  background: #fff;
  width: 0.2rem;
}
.scrollbar::-webkit-scrollbar-thumb {
  background: #aaa;
}

table.tbl_block {
  display: block;
  text-align: left;
}
@media screen and (min-width: 769px) {
  table.tbl_block {
    display: table;
  }
}
table.tbl_block tbody {
  display: block;
  text-align: left;
}
@media screen and (min-width: 769px) {
  table.tbl_block tbody {
    display: table-row-group;
  }
}
table.tbl_block tr {
  display: block;
  text-align: left;
}
@media screen and (min-width: 769px) {
  table.tbl_block tr {
    display: table-row;
  }
}
table.tbl_block th, table.tbl_block td {
  display: block;
  text-align: left;
}
@media screen and (min-width: 769px) {
  table.tbl_block th, table.tbl_block td {
    display: table-cell;
  }
}

/* ・リスト */
.list_dot > li {
  position: relative;
  padding-left: 1em;
}
.list_dot > li::before {
  content: "・";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
}

/* 標準テキストボックス */
.cmn_textbox01 > p:nth-of-type(n+2) {
  margin-top: 1em;
}

/* ボタン_オレンジ */
.cmn_btn01 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background: var(--color-orange);
  border: 1px solid var(--color-orange);
  border-radius: 100px;
  width: 100%;
  padding: 0.18rem 0.14rem;
  text-decoration: none;
  transition: 0.2s ease;
}
.cmn_btn01 .txt01 {
  flex-grow: 1;
  text-align: center;
  color: var(--color-white);
  font-size: 0.2rem;
  font-weight: 900;
  transition: 0.2s ease;
}
.cmn_btn01 .arrow01 {
  display: block;
  width: 0.22rem;
  line-height: 1;
  transition: 0.2s ease;
}
.cmn_btn01 .arrow01 svg {
  width: 100%;
  vertical-align: top;
  fill: var(--color-white);
  transition: 0.2s ease;
}
.cmn_btn01:hover {
  background: var(--color-white);
}
.cmn_btn01:hover .txt01 {
  color: var(--color-orange);
}
.cmn_btn01:hover .arrow01 svg {
  fill: var(--color-orange);
}

/* ボタン_緑 */
.cmn_btn02 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background: var(--color-lightgreen);
  border: 1px solid var(--color-white);
  border-radius: 100px;
  width: 100%;
  padding: 0.3rem 0.35rem;
  text-decoration: none;
  transition: 0.2s ease;
}
.cmn_btn02 .txt01 {
  flex-grow: 1;
  text-align: center;
  color: var(--color-white);
  font-size: 0.3rem;
  font-weight: 900;
  transition: 0.2s ease;
}
.cmn_btn02 .arrow01 {
  display: block;
  width: 0.4rem;
  line-height: 1;
  transition: 0.2s ease;
}
.cmn_btn02 .arrow01 svg {
  width: 100%;
  vertical-align: top;
  fill: var(--color-white);
  transition: 0.2s ease;
}
.cmn_btn02:hover {
  background: var(--color-white);
  border-color: var(--color-lightgreen);
}
.cmn_btn02:hover .txt01 {
  color: var(--color-lightgreen);
}
.cmn_btn02:hover .arrow01 svg {
  fill: var(--color-lightgreen);
}

/* ========================================
    ■ fv
======================================== */
#fv {
  background: url(../images/fv_bg01.png) no-repeat center top;
  background-size: 100% auto;
  height: 13.6rem;
  padding: 0.3rem 0 0;
}

.fv_header {
  display: grid;
  grid-template-columns: 2.22rem 3.17rem;
  justify-content: space-between;
  align-items: center;
  padding: 0 0.38rem;
}

.cmn_btn01.fv_header_btn01 {
  padding: 0.18rem 0.14rem;
}
.cmn_btn01.fv_header_btn01 .txt01 {
  font-size: 0.2rem;
}
.cmn_btn01.fv_header_btn01 .arrow01 {
  width: 0.22rem;
}

.fv_tit01 {
  width: 6.58rem;
  margin: 0.68rem 0 0 0.28rem;
}

.fv_txt01 {
  margin: 0.45rem 0 0 0.4rem;
  color: var(--color-deep-green);
  font-size: 0.26rem;
  font-weight: 700;
}
.fv_txt01 strong {
  font-weight: 900;
}

.fv_point {
  margin: 0.86rem 0 0 0.4rem;
}
.fv_point > li:nth-of-type(n+2) {
  margin-top: 0.3rem;
}
.fv_point .item01 {
  width: 4.28rem;
}
.fv_point .item02 {
  width: 5.24rem;
}

.cmn_btn01.fv_bottom_btn01 {
  width: 6.14rem;
  margin: 1rem auto 0;
  padding: 0.35rem 0.4rem;
}
.cmn_btn01.fv_bottom_btn01 .txt01 {
  font-size: 0.34rem;
}
.cmn_btn01.fv_bottom_btn01 .arrow01 {
  width: 0.44rem;
}

@media screen and (min-width: 769px) {
  #fv {
    background-image: url(../images/fv_bg01_pc@2x.png);
    height: 8.36rem;
    padding: 0.26rem 0 0;
  }
  .fv_header {
    grid-template-columns: 1.48rem 2.74rem;
    padding: 0 0.58rem 0 0.44rem;
  }
  .cmn_btn01.fv_header_btn01 {
    padding: 0.12rem 0.16rem;
  }
  .cmn_btn01.fv_header_btn01 .txt01 {
    font-size: 0.17rem;
  }
  .cmn_btn01.fv_header_btn01 .arrow01 {
    width: 0.2rem;
  }
  .fv_tit01 {
    width: 5.96rem;
    margin: 0.22rem 0 0 2.07rem;
  }
  .fv_txt01 {
    margin: 0.3rem 0 0 2.2rem;
    font-size: 0.2rem;
  }
  .fv_point {
    margin: 0.5rem 0 0 2.16rem;
    display: flex;
  }
  .fv_point > li:nth-of-type(n+2) {
    margin-top: 0;
    margin-left: 0.25rem;
  }
  .fv_point .item01 {
    width: 3.25rem;
  }
  .fv_point .item02 {
    width: 4.55rem;
  }
  .cmn_btn01.fv_bottom_btn01 {
    width: 4.76rem;
    margin: 0.52rem 0 0 2.18rem;
    padding: 0.26rem 0.3rem;
  }
  .cmn_btn01.fv_bottom_btn01 .txt01 {
    font-size: 0.26rem;
  }
  .cmn_btn01.fv_bottom_btn01 .arrow01 {
    width: 0.35rem;
  }
}
/* ========================================
    ■ sec01
======================================== */
#sec01 {
  background: url(../images/sec01_bg01.png) no-repeat left top;
  background-size: cover;
  padding: 1rem 0;
}

.sec01_tit01 {
  color: var(--color-deep-green);
  text-align: center;
  font-size: 0.63rem;
  font-weight: 900;
}
.sec01_tit01 .small {
  font-size: 0.53rem;
}

.sec01_voice {
  position: relative;
  padding: 0.45rem 0 1.2rem;
}
.sec01_voice .flickity-prev-next-button {
  background: url(../images/sec01_voice_arrow01.svg) no-repeat center center;
  background-size: 100% 100%;
  width: 1rem;
  height: 1rem;
  top: 2.7rem;
}
.sec01_voice .flickity-prev-next-button.previous {
  left: 0.4rem;
}
.sec01_voice .flickity-prev-next-button.next {
  right: 0.4rem;
  transform: translateY(-50%) scaleX(-1);
}
.sec01_voice .flickity-prev-next-button .flickity-button-icon {
  opacity: 0;
}
.sec01_voice .flickity-page-dots {
  bottom: 0;
  counter-reset: count_num 0;
}
.sec01_voice .flickity-page-dots > li {
  position: relative;
}
.sec01_voice .flickity-page-dots > li::before {
  counter-increment: count_num 1;
  content: counter(count_num, decimal-leading-zero);
  display: block;
  color: #145E5E;
  font-family: var(--font-family-helvetica);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  transition: 0.2s ease;
}
.sec01_voice .flickity-page-dots > li::after {
  content: "";
  display: block;
  width: 0;
  height: 0.03rem;
  background: var(--grad02);
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: 0.2s ease;
}
.sec01_voice .flickity-page-dots > li.dot {
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  opacity: 1;
  margin: 0 0.33rem;
}
.sec01_voice .flickity-page-dots > li.dot.is-selected::after {
  width: 100%;
  opacity: 1;
  transform: scale(1);
}

.sec01_voice_item {
  width: 6.54rem;
  height: 10.2rem;
  padding: 0.2rem;
}
.sec01_voice_item .inner {
  width: 100%;
  height: 100%;
  border-radius: 0.1rem;
  background: var(--color-white);
  box-shadow: 0 0.06rem 0.2rem 0 rgba(20, 94, 94, 0.1);
  padding: 0.5rem 0.4rem 0;
}

.sec01_voice_head {
  display: grid;
  grid-template-columns: 1.6rem auto;
  gap: 0.65rem;
  align-items: center;
  border-bottom: solid 1px rgba(172, 172, 172, 0.6);
  padding: 0 0 0.4rem;
}
.sec01_voice_head .data .name {
  font-size: 0.25rem;
  font-weight: 900;
}
.sec01_voice_head .data .industry {
  font-size: 0.25rem;
  font-weight: 500;
}

.sec01_voice_body {
  padding: 0.42rem 0 0;
}
.sec01_voice_body .tit {
  color: var(--color-deep-green);
  font-size: 0.38rem;
  font-weight: 700;
  line-height: 1.7;
}
.sec01_voice_body .cmn_textbox01 {
  margin: 0.45rem 0 0;
  font-size: 0.28rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

.sec01_img01 {
  width: 6.9rem;
  margin: 0.75rem auto 0;
}

.sec01_img02 {
  width: 6.9rem;
  margin: 1rem auto 0;
}

@media screen and (min-width: 769px) {
  #sec01 {
    background-image: url(../images/sec01_bg01_pc@2x.png);
    padding: 1.44rem 0 1.1rem;
  }
  .sec01_tit01 {
    font-size: 0.6rem;
  }
  .sec01_tit01 .small {
    font-size: 0.5rem;
  }
  .sec01_voice {
    padding: 0.5rem 0 0.8rem;
  }
  .sec01_voice .flickity-prev-next-button {
    width: 0.72rem;
    height: 0.72rem;
    top: 50%;
  }
  .sec01_voice .flickity-prev-next-button.previous {
    left: 2.16rem;
  }
  .sec01_voice .flickity-prev-next-button.next {
    right: 2.16rem;
  }
  .sec01_voice .flickity-page-dots > li {
    position: relative;
  }
  .sec01_voice .flickity-page-dots > li::before {
    font-size: 0.36rem;
  }
  .sec01_voice .flickity-page-dots > li.dot {
    margin: 0 0.2rem;
  }
  .sec01_voice_item {
    width: 10.4rem;
    height: 4.02rem;
    padding: 0.2rem;
  }
  .sec01_voice_item .inner {
    padding: 0.4rem 0.5rem;
    display: grid;
    grid-template-columns: auto 6.24rem;
    gap: 0.4rem;
    align-items: center;
  }
  .sec01_voice_head {
    flex-grow: 1;
    display: block;
    border-bottom: none;
    border-right: solid 1px rgba(172, 172, 172, 0.6);
    padding: 0 0.45rem 0 0;
    text-align: center;
  }
  .sec01_voice_head .img {
    width: 1.6rem;
    margin: 0 auto;
  }
  .sec01_voice_head .data {
    margin-top: 0.2rem;
  }
  .sec01_voice_head .data .name {
    font-size: 0.23rem;
  }
  .sec01_voice_head .data .industry {
    font-size: 0.2rem;
  }
  .sec01_voice_body {
    padding: 0;
  }
  .sec01_voice_body .tit {
    font-size: 0.29rem;
    line-height: 1.5;
  }
  .sec01_voice_body .cmn_textbox01 {
    margin: 0.18rem 0 0;
    font-size: 0.21rem;
  }
  .sec01_img01 {
    width: 9.76rem;
  }
  .sec01_img02 {
    width: 100%;
    margin: 0.75rem auto 0;
  }
}
/* ========================================
    ■ sec02
======================================== */
#sec02 {
  padding: 1rem 0 1.74rem;
}

.sec02_tit01 {
  color: var(--color-deep-green);
  font-size: 0.6rem;
  font-weight: 900;
  text-align: center;
}

.sec02_point {
  margin: 0.75rem 0 0;
}
.sec02_point > li {
  display: grid;
  grid-template-columns: 3.07rem auto;
  align-items: center;
  gap: 0.45rem;
  border-radius: 0.15rem;
  background: var(--color-gray);
  width: 6.9rem;
  margin: 0.45rem auto 0;
  padding: 0.4rem 0.28rem 0.4rem 0.38rem;
}
.sec02_point > li:nth-of-type(1) {
  margin-top: 0;
}
.sec02_point .content .tit {
  color: var(--color-deep-green);
  font-size: 0.33rem;
  font-weight: 900;
  line-height: 1.35;
}
.sec02_point .content .txt {
  margin: 0.1rem 0 0;
  font-size: 0.25rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 769px) {
  #sec02 {
    padding: 1.1rem 0 1.3rem;
  }
  .sec02_point {
    display: grid;
    grid-auto-columns: 3.7rem;
    grid-auto-flow: column;
    gap: 0.46rem;
    justify-content: center;
  }
  .sec02_point > li {
    display: block;
    border-radius: 0.15rem;
    background: var(--color-gray);
    width: 100%;
    margin: 0;
    padding: 0.3rem;
  }
  .sec02_point .content {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: 0.86rem auto;
    gap: 0.2rem;
    margin: 0.25rem 0 0;
  }
  .sec02_point .content .tit {
    font-size: 0.27rem;
    line-height: 1.5;
  }
  .sec02_point .content .txt {
    margin: 0;
    font-size: 0.21rem;
    line-height: 1.8;
  }
}
/* ========================================
    ■ sec03
======================================== */
#sec03 {
  position: relative;
  background: var(--color-gray);
  padding: 0.7rem 0 1rem;
}

.sec03_ico01 {
  position: absolute;
  left: 50%;
  top: -0.73rem;
  transform: translateX(-50%);
  width: 2.72rem;
}

.sec03_tit01 {
  position: relative;
  text-align: center;
  font-size: 0.6rem;
  font-weight: 900;
  color: var(--color-deep-green);
}

.sec03_business {
  display: grid;
  grid-template-columns: repeat(3, 1.97rem);
  gap: 0.26rem 0.12rem;
  justify-content: center;
  margin: 0.75rem 0 0;
  text-align: center;
}
.sec03_business .ico img {
  border-radius: 50%;
  box-shadow: 0 0.06rem 0.2rem rgba(20, 94, 94, 0.1);
}
.sec03_business .ico figcaption {
  display: block;
  margin: 0.22rem 0 0;
  color: var(--color-deep-green);
  font-size: 0.27rem;
  font-weight: 900;
  line-height: 1.25;
}

.sec03_point {
  position: relative;
  width: 6.9rem;
  margin: 1.8rem auto 0;
  padding: 0.75rem 0 0.5rem;
  border-radius: 0.1rem;
  border: 3px solid var(--color-white);
  background: #ACE572;
}
.sec03_point .ico {
  position: absolute;
  left: 50%;
  top: -1.14rem;
  transform: translateX(-50%);
  width: 1.58rem;
}
.sec03_point .txt {
  text-align: center;
  color: var(--color-deep-green);
  font-size: 0.34rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.sec03_point .txt strong {
  font-weight: inherit;
  font-size: 0.44rem;
}

.sec03_other {
  width: 6.9rem;
  margin: 0.65rem auto 0;
  border-top: solid 1px var(--color-gray02);
  border-bottom: solid 1px var(--color-gray02);
  padding: 0.35rem 0 0.45rem;
}

.sec03_other_head {
  text-align: center;
}
.sec03_other_head .ico {
  width: 0.42rem;
  margin: 0 auto;
}
.sec03_other_head .tit {
  margin: 0.26rem 0 0;
  color: var(--color-deep-green);
  font-size: 0.46rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.sec03_other_head .tit strong {
  font-weight: inherit;
  font-size: 0.64rem;
}

.sec03_other_body {
  margin: 0.6rem 0 0;
  font-size: 0.26rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
.sec03_other_body small {
  font-size: 0.18rem;
}

@media screen and (min-width: 769px) {
  #sec03 {
    padding: 0.7rem 0 1.6rem;
  }
  .sec03_business {
    grid-template-columns: repeat(6, 1.9rem);
    gap: 0.12rem;
  }
  .sec03_point {
    width: 12rem;
    margin: 0.8rem auto 0;
    padding: 0.36rem 0;
  }
  .sec03_point .ico {
    position: absolute;
    left: 0.26rem;
    top: -0.12rem;
    transform: translateX(0);
    width: 1.52rem;
  }
  .sec03_other {
    display: grid;
    grid-template-columns: 2.92rem auto;
    width: 12rem;
    margin: 0.4rem auto 0;
    padding: 0.32rem 0;
  }
  .sec03_other_head {
    display: grid;
    place-content: center;
    padding: 0 0.3rem;
    border-right: solid 1px var(--color-gray02);
  }
  .sec03_other_head .tit {
    margin: 0.12rem 0 0;
    font-size: 0.2rem;
  }
  .sec03_other_head .tit strong {
    font-weight: 700;
    font-size: 0.28rem;
  }
  .sec03_other_body {
    flex-grow: 1;
    display: grid;
    place-content: center;
    margin: 0;
    padding: 0 0.3rem;
    font-size: 0.21rem;
  }
}
/* ========================================
    ■ cta
======================================== */
.cta {
  background: url(../images/cta_bg01.png) no-repeat center top;
  background-size: cover;
  padding: 1rem 0 0;
}

.cta_txt01 {
  position: relative;
  border: 0.04rem solid var(--color-white);
  width: 6.54rem;
  margin: 0 0 0 0.4rem;
  padding: 0.05rem 0;
  color: var(--color-white);
  text-align: center;
  font-size: 0.32rem;
  font-weight: 900;
}
.cta_txt01::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-right: 0.04rem solid var(--color-white);
  border-bottom: 0.04rem solid var(--color-white);
  position: absolute;
  left: 0.1rem;
  top: 0.12rem;
}

.cta_tit01 {
  width: 6.9rem;
  margin: 0.38rem auto 0;
}

.cmn_btn02.cta_btn01 {
  width: 5.5rem;
  margin: 0.55rem auto 0;
}

.cta_img01 {
  width: 5.58rem;
  margin: 0.48rem auto 0;
}

@media screen and (min-width: 769px) {
  .cta {
    position: relative;
    background-image: url(../images/cta_bg01_pc@2x.png);
    padding: 0.47rem 0 0.42rem 7.36rem;
  }
  .cta_txt01 {
    width: 5.68rem;
    margin: 0;
    font-size: 0.28rem;
  }
  .cta_txt01::after {
    left: 0.1rem;
    top: 0.1rem;
  }
  .cta_tit01 {
    width: 5.98rem;
    margin: 0.32rem 0 0;
  }
  .cmn_btn02.cta_btn01 {
    width: 4.76rem;
    margin: 0.4rem 0 0 0.6rem;
    padding: 0.26rem 0.3rem;
  }
  .cmn_btn02.cta_btn01 .txt01 {
    font-size: 0.26rem;
  }
  .cmn_btn02.cta_btn01 .arrow01 {
    width: 0.35rem;
  }
  .cta_img01 {
    position: absolute;
    left: 1.64rem;
    bottom: 0;
    width: 5.62rem;
    margin: 0;
  }
}
/* ========================================
    ■ sec04
======================================== */
#sec04 {
  background: url(../images/sec04_bg01.png) repeat left top;
  padding: 0 0 1rem;
}

.sec04_head {
  background: url(../images/sec04_head_bg01.svg) no-repeat center top;
  background-size: 100% auto;
  padding: 1.2rem 0 0;
}
.sec04_head .tit01 {
  width: 6rem;
  margin: 0 auto;
}

.sec04_merit {
  margin: 0.47rem 0 0;
}
.sec04_merit > li {
  position: relative;
  min-height: 5.6rem;
  margin: 0.9rem 0 0;
  padding: 2.95rem 0 0;
}
.sec04_merit > li .sec04_merit_img {
  position: absolute;
  top: 0;
  width: 6.9rem;
}
.sec04_merit > li .sec04_merit_box {
  position: relative;
  width: 5.23rem;
  background: var(--color-white);
  box-shadow: 0 0 0.1rem 0 rgba(20, 94, 94, 0.2);
}
.sec04_merit > li .sec04_merit_box .cmn_textbox01 {
  margin: 0.27rem 0 0;
  font-size: 0.28rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
.sec04_merit > li .sec04_merit_box .cmn_textbox01 .small {
  font-size: 0.18rem;
}
.sec04_merit > li .sec04_merit_box_num {
  color: var(--color-deep-green);
  font-family: var(--font-family-helvetica);
  font-weight: 700;
}
.sec04_merit > li .sec04_merit_box_num .txt {
  display: block;
  position: relative;
  font-size: 0.2rem;
  padding: 0 0 0.1rem;
}
.sec04_merit > li .sec04_merit_box_num .txt::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--color-deep-green);
  width: 0.6rem;
  height: 0.04rem;
}
.sec04_merit > li .sec04_merit_box_num .num {
  display: block;
  font-size: 0.9rem;
  line-height: 1.2;
}
.sec04_merit > li .sec04_merit_box_tit01 {
  margin: 0.1rem 0 0;
  color: var(--color-deep-green);
  font-size: 0.34rem;
  font-weight: 900;
}
.sec04_merit > li .sec04_merit_box_tit01 .big {
  font-size: 0.4rem;
  font-weight: inherit;
}
.sec04_merit > li:nth-of-type(1) {
  margin-top: 0;
}
.sec04_merit > li:nth-of-type(2n-1) .sec04_merit_img {
  right: 0;
}
.sec04_merit > li:nth-of-type(2n-1) .sec04_merit_box {
  border-radius: 0 0.1rem 0.1rem 0;
  margin: 0 auto 0 0;
  padding: 0.5rem 0.4rem 0.5rem 0.6rem;
}
.sec04_merit > li:nth-of-type(2n) .sec04_merit_img {
  left: 0;
}
.sec04_merit > li:nth-of-type(2n) .sec04_merit_box {
  border-radius: 0.1rem 0 0 0.1rem;
  margin: 0 0 0 auto;
  padding: 0.5rem 0.6rem 0.5rem 0.4rem;
}

@media screen and (min-width: 769px) {
  #sec04 {
    padding: 0 0 1.1rem;
  }
  .sec04_head {
    background-image: url(../images/sec04_head_bg01_pc.svg);
    background-size: 8.1rem auto;
  }
  .sec04_merit {
    margin: 0.8rem 0 0;
  }
  .sec04_merit > li {
    margin: 0.8rem 0 0;
    padding: 0.6rem 0 0;
  }
  .sec04_merit > li .sec04_merit_img {
    position: absolute;
    top: 0;
    width: 9.44rem;
  }
  .sec04_merit > li .sec04_merit_box .cmn_textbox01 {
    margin: 0.17rem 0 0;
    font-size: 0.21rem;
    line-height: 1.8;
  }
  .sec04_merit > li .sec04_merit_box_tit01 {
    margin: 0.1rem 0 0;
    font-size: 0.27rem;
  }
  .sec04_merit > li .sec04_merit_box_tit01 .big {
    font-size: 0.32rem;
  }
  .sec04_merit > li:nth-of-type(2n-1) .sec04_merit_box {
    border-radius: 0.1rem;
    margin: 0 0 0 1.68rem;
    padding: 0.6rem 0.4rem 0.6rem 0.6rem;
  }
  .sec04_merit > li:nth-of-type(2n) .sec04_merit_box {
    border-radius: 0.1rem;
    margin: 0 0 0 8.5rem;
    padding: 0.6rem 0.6rem 0.6rem 0.4rem;
  }
}
/* ========================================
    ■ sec05
======================================== */
#sec05 {
  padding: 0.9rem 0 1rem;
}

.sec05_head {
  text-align: center;
}
.sec05_head .txt {
  background: url(../images/sec05_head_deco01.svg) no-repeat center bottom;
  background-size: 2.88rem auto;
  padding: 0 0 0.25rem;
  color: var(--color-ash-green);
  font-size: 0.33rem;
  font-weight: 900;
  line-height: 1.24;
  letter-spacing: 0.05em;
}
.sec05_head .tit {
  margin: 0.14rem 0 0;
  color: var(--color-ash-green);
  font-size: 0.6rem;
  font-weight: 900;
}

.sec05_service {
  width: 6.9rem;
  margin: 1rem auto 0;
}

.sec05_service_tit01 {
  border-top: solid 2px var(--color-gray02);
  border-bottom: solid 2px var(--color-gray02);
  padding: 0.2rem 0;
  text-align: center;
  font-size: 0.37rem;
  font-weight: 900;
  line-height: 1.16;
}

.sec05_service_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 0.3rem;
  margin: 0.55rem 0 0;
  text-align: center;
}
.sec05_service_list .about {
  display: grid;
  place-content: center;
  border-radius: 0.4rem;
  background: var(--grad02);
  border-radius: 100px;
  min-height: 0.8rem;
  padding: 0.08rem 0 0.05rem;
  color: var(--color-white);
  font-size: 0.25rem;
  font-weight: 500;
  line-height: 1.25;
}
.sec05_service_list .name {
  margin: 0.2rem 0 0;
  color: var(--color-deep-green);
  text-align: center;
  font-size: 0.5rem;
  font-weight: 900;
  line-height: 1.3;
}
.sec05_service_list .name strong {
  font-weight: inherit;
  font-size: 0.6rem;
}

.sec05_service_foot {
  margin: 0.5rem 0 0;
  font-size: 0.18rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 769px) {
  .sec05_service {
    width: 12rem;
    margin: 0.6rem auto 0;
  }
  .sec05_service_tit01 {
    padding: 0.25rem 0;
    font-size: 0.32rem;
  }
  .sec05_service_list {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem 0.45rem;
    margin: 0.5rem 0 0;
  }
  .sec05_service_list .about {
    min-height: auto;
    padding: 0.12rem 0 0.1rem;
    font-size: 0.22rem;
  }
  .sec05_service_foot {
    margin: 0.4rem 0 0;
    text-align: right;
  }
}
/* ========================================
    ■ form
======================================== */
#form {
  background: #EFF3F8;
  padding: 1rem 0;
  /* placeholder */
  /* Google Chrome, Safari, Opera 15+, Android, iOS */
  /* Firefox 18- */
  /* Firefox 19+ */
  /* IE 10+ */
  /* テキスト入力 */
}
#form :placeholder-shown {
  color: var(--color-gray02);
}
#form ::-webkit-input-placeholder {
  color: var(--color-gray02);
}
#form :-moz-placeholder {
  color: var(--color-gray02);
  opacity: 1;
}
#form ::-moz-placeholder {
  color: var(--color-gray02);
  opacity: 1;
}
#form :-ms-input-placeholder {
  color: var(--color-gray02);
}
#form input[type=text],
#form input[type=tel],
#form input[type=email],
#form textarea {
  width: 100%;
  margin: 0;
  padding: 0.16rem 0.28rem;
  font-family: var(--font-family-default);
  font-size: 0.28rem;
  border: solid 1px #707070;
  border-radius: 0.05rem;
  box-shadow: none;
}
#form textarea {
  min-height: 2.4rem;
}

.form_tit01 {
  color: var(--color-deep-green);
  text-align: center;
  font-size: 0.6rem;
  font-weight: 900;
}

.form_head {
  margin: 0.53rem 0 0;
}

.form_head_worry > li {
  width: 6.68rem;
  margin: 0.34rem auto 0;
  border-radius: 0.6rem;
  background: var(--color-white);
  padding: 0.28rem 0;
  text-align: center;
  font-size: 0.28rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.form_head_worry > li:nth-of-type(1) {
  margin-top: 0;
}

.form_head_txt01 {
  margin: 0.6rem 0 0;
  text-align: center;
  font-size: 0.3rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

.form_box {
  width: 6.9rem;
  margin: 1rem auto 0;
  border-radius: 0.1rem;
  background: var(--color-white);
  box-shadow: 0 0.06rem 0.2rem 0 rgba(20, 94, 94, 0.1);
  padding: 0.4rem 0.38rem;
}

.form_box_tbl th {
  padding: 0.4rem 0 0.1rem;
  font-size: 0.28rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.form_box_tbl td {
  border-bottom: solid 1px #ddd;
  padding: 0 0 0.4rem;
}
.form_box_tbl tr:nth-last-of-type(1) th, .form_box_tbl tr:nth-last-of-type(1) td {
  border-bottom: none;
}
.form_box_tbl .must {
  display: inline-block;
  background: var(--color-orange);
  border-radius: 50px;
  padding: 2px 0.1rem;
  color: var(--color-white);
  font-size: 0.16rem;
  font-weight: 700;
  transform: translateY(-0.04rem);
}

.form_privacy {
  width: 6.9rem;
  margin: 0.7rem auto 0;
  padding: 0.4rem 0.38rem;
  border-top: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
}

.form_privacy_tit01 {
  font-size: 0.28rem;
  font-weight: 700;
}

.form_privacy_box {
  border-radius: 0.05rem;
  border: 1px solid #707070;
  background: #E8E8E8;
}
.form_privacy_box .inner {
  height: 2.4rem;
  overflow: auto;
  padding: 0.18rem 0.4rem 0.18rem 0.3rem;
  font-size: 0.28rem;
}
.form_privacy_box a {
  word-break: break-all;
}

.form_consent {
  margin: 0.6rem 0 0;
  text-align: center;
}
.form_consent input[type=checkbox] {
  position: absolute;
  left: 50%;
  opacity: 0;
}
.form_consent input[type=checkbox]:checked + .checkbox::before {
  opacity: 1;
}
.form_consent label {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.form_consent label .checkbox {
  display: block;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 0.05rem;
  border: 1px solid var(--color-black);
  background: var(--color-white);
}
.form_consent label .checkbox::before {
  content: "";
  display: block;
  background: url(../images/form_checkbox01.svg) no-repeat center center;
  background-size: auto 90%;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.form_consent label .txt {
  margin-left: 0.12rem;
  font-size: 0.21rem;
  letter-spacing: 0.05em;
}

.form_btn01 {
  display: block;
  background: var(--color-orange);
  font-family: var(--font-family-default);
  text-shadow: none;
  border: none;
  border-radius: 100px;
  width: 5.36rem;
  margin: 0.15rem auto 0;
  padding: 0.3rem 0;
  text-decoration: none;
  transition: 0.2s ease;
  cursor: pointer;
  color: var(--color-white);
  font-size: 0.26rem;
  font-weight: 900;
}
.form_btn01:hover {
  box-shadow: none;
  opacity: 0.8;
}

@media screen and (min-width: 769px) {
  #form input[type=text],
  #form input[type=tel],
  #form input[type=email],
  #form textarea {
    padding: 0.2rem 0.3rem;
    font-size: 0.21rem;
  }
  #form textarea {
    min-height: 2.8rem;
  }
  .form_head {
    margin: 0.75rem 0 0;
  }
  .form_head_worry {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.2rem;
    width: 10.2rem;
    margin: 0 auto;
  }
  .form_head_worry > li {
    width: 100%;
    margin: 0;
    padding: 0.2rem 0;
    font-size: 0.21rem;
  }
  .form_head_txt01 {
    margin: 0.32rem 0 0;
    font-size: 0.21rem;
  }
  .form_box {
    width: 12rem;
    margin: 0.6rem auto 0;
    padding: 0.2rem 0.4rem;
  }
  .form_box_tbl {
    width: 100%;
  }
  .form_box_tbl th {
    width: 3.2rem;
    padding: 0.54rem 0 0;
    font-size: 0.21rem;
    border-bottom: solid 1px #ddd;
  }
  .form_box_tbl td {
    padding: 0.3rem 0 0.5rem;
  }
  .form_box_tbl .must {
    margin-right: 0.12rem;
    padding: 2px 0.15rem;
    transform: translateY(0);
  }
  .form_privacy {
    display: grid;
    grid-template-columns: auto 8.6rem;
    align-items: center;
    width: 11.3rem;
    margin: 0.5rem auto 0;
    padding: 0;
    border-top: none;
    border-bottom: none;
  }
  .form_privacy_tit01 {
    font-size: 0.21rem;
  }
  .form_privacy_box .inner {
    height: 1.68rem;
    padding: 0.2rem 0.35rem 0.2rem 0.3rem;
    font-size: 0.21rem;
  }
  .form_consent {
    margin: 0.54rem 0 0;
  }
  .form_consent label .txt {
    margin-left: 0.16rem;
  }
  .form_btn01 {
    width: 4.75rem;
    margin: 0.24rem auto 0;
    padding: 0.24rem 0;
  }
}
/* ========================================
    ■ sec07
======================================== */
#sec07 {
  padding: 0.8rem 0;
}

.sec07_tit01 {
  color: var(--color-deep-green);
  text-align: center;
  font-size: 0.6rem;
  font-weight: 900;
}

.sec07_tbl {
  width: 80%;
  margin: 0.6rem auto 0;
  font-size: 0.26rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
.sec07_tbl th {
  padding: 0.1rem 0;
  font-weight: 700;
}
.sec07_tbl td {
  padding: 0.1rem 0;
}

@media screen and (min-width: 769px) {
  #sec07 {
    padding: 1.1rem 0;
  }
  .sec07_tbl {
    width: 50%;
    font-size: 0.21rem;
  }
}
/* ========================================
    ■ footer
======================================== */
#footer {
  background: var(--color-black);
  padding: 0.3rem 0 1.6rem;
  text-align: center;
  color: var(--color-white);
  font-family: var(--font-family-helvetica);
  font-size: 0.16rem;
}
#footer.short {
  padding: 0.3rem 0;
}

@media screen and (min-width: 769px) {
  #footer {
    padding: 0.3rem 0 1.4rem;
    font-size: 0.21rem;
  }
  #footer.short {
    padding: 0.3rem 0;
  }
}
/* ========================================
    ■ cta_fixed
======================================== */
#cta_fixed {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 999;
  display: grid;
  place-content: center;
  width: 100%;
  height: 1.3rem;
  background: rgba(255, 255, 255, 0.8);
}

.cmn_btn01.cta_fixed_btn01 {
  width: 6.14rem;
  padding: 0.25rem 0.4rem;
}
.cmn_btn01.cta_fixed_btn01 .txt01 {
  font-size: 0.34rem;
}
.cmn_btn01.cta_fixed_btn01 .arrow01 {
  width: 0.45rem;
}

@media screen and (min-width: 769px) {
  #cta_fixed {
    height: 1.1rem;
  }
  .cmn_btn01.cta_fixed_btn01 {
    width: 8rem;
    padding: 0.15rem 1.94rem;
  }
  .cmn_btn01.cta_fixed_btn01 .txt01 {
    font-size: 0.26rem;
  }
  .cmn_btn01.cta_fixed_btn01 .arrow01 {
    width: 0.35rem;
  }
}
/* ========================================
    ■ thanks
======================================== */
#thanks {
  padding: 0.65rem 0 0.8rem;
}

.thanks_logo {
  width: 2.22rem;
  margin: 0 auto;
}

.thanks_tit01 {
  margin: 0.6rem 0 0;
  text-align: center;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.thanks_textbox {
  width: 6.9rem;
  margin: 0.7rem auto 0;
  text-align: center;
  font-size: 0.28rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
.thanks_textbox .txt02 {
  border-radius: 0.1rem;
  background: var(--color-gray);
  margin: 0.35rem 0 0;
  padding: 0.4rem 0;
}
.thanks_textbox .txt03 {
  margin: 0.65rem 0 0;
}
.thanks_textbox .mail {
  margin: 0.35rem 0 0;
  background: var(--grad02);
  border-radius: 0.1rem;
  padding: 0.03rem;
}
.thanks_textbox .mail .inner {
  background: var(--color-white);
  border-radius: 0.1rem;
  padding: 0.3rem 0;
  font-size: 0.28rem;
  font-weight: 700;
}
.thanks_textbox .txt04 {
  margin: 0.35rem 0 0;
}

@media screen and (min-width: 769px) {
  #thanks {
    padding: 0.65rem 0 1rem;
  }
  .thanks_tit01 {
    margin: 0.45rem 0 0;
    font-size: 0.5rem;
  }
  .thanks_textbox {
    width: 11rem;
    margin: 0.8rem auto 0;
    font-size: 0.21rem;
  }
  .thanks_textbox .txt02 {
    margin: 0.45rem 0 0;
  }
  .thanks_textbox .txt03 {
    margin: 0.45rem 0 0;
  }
  .thanks_textbox .mail {
    margin: 0.3rem 0 0;
  }
  .thanks_textbox .mail .inner {
    padding: 0.2rem 0;
    font-size: 0.21rem;
  }
  .thanks_textbox .txt04 {
    margin: 0.3rem 0 0;
  }
}/*# sourceMappingURL=style.css.map */