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

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

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

a img {
  border: none;
}

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

/* ======================================================================
 common
====================================================================== */
html {
  font-size: clamp(5px, 0.6666666667vw, 14px);
}
@media screen and (max-width: 768px) {
  html {
    font-size: 2.2522522523vw;
  }
}

body {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Helvetica Neue", Arial, sans-serif;
  color: #1e1e1e;
  font-style: normal;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.8;
}

input,
button,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  border-radius: 0;
  box-sizing: border-box;
  color: inherit;
}

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

label {
  cursor: pointer;
}

a {
  text-decoration: none;
  color: #1e1e1e;
}

img {
  width: 100%;
  vertical-align: bottom;
}

.sp {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .cglp_main {
    margin-top: 6rem;
    overflow-x: hidden;
  }
}

.cglp_inner {
  width: 100%;
  box-sizing: border-box;
  padding: 8rem 8rem;
}
@media screen and (max-width: 768px) {
  .cglp_inner {
    padding: 5rem 2.5rem;
  }
}

.cglp_ttl {
  width: 17rem;
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .cglp_ttl {
    width: 15rem;
    font-size: 1rem;
  }
}
.cglp_ttl_en, .cglp_ttl_jp {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-style: normal;
  letter-spacing: normal;
  font-weight: 400;
  display: block;
  font-size: 1.4rem;
  padding-bottom: 0.8rem;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(15px);
}
@media screen and (max-width: 768px) {
  .cglp_ttl_en, .cglp_ttl_jp {
    font-size: 1.2rem;
  }
}
.cglp_ttl_en {
  position: relative;
}
.cglp_ttl_en .underline {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  background-color: #1e1e1e;
  width: 0; /* ← 最初は0で非表示 */
}

.cglp_txt {
  font-size: 1.2rem;
  line-height: 1.8;
}

/* ======================================================================
 開始時のローディング処理
====================================================================== */
.cglp_initial_screen {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  z-index: 10001;
  /* display: none; */
}
.cglp_initial_screen p {
  font-size: 3rem;
  color: #fff;
}
.cglp_initial_screen_logo {
  opacity: 0;
  width: 26.5625vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .cglp_initial_screen_logo {
    width: 57.4358vw;
  }
}

/* ローディング関連のコンテナ */
.cglp_loading {
  /* 元サイトの .p-top_overlay に相当する白い画面 */
  /* フレアのコンテナ */
}
.cglp_loading_container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 10002;
  pointer-events: none;
}
.cglp_loading_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 10000;
  opacity: 0;
  /* 最初は透明 */
}
.cglp_loading_flare {
  position: absolute;
  top: 0;
  left: 0;
  width: 200rem;
  height: 200rem;
  z-index: 10001;
  /* 白い画面より手前 */
  mix-blend-mode: screen;
  opacity: 0;
  /* 初期状態は透明 */
  overflow: visible !important;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  pointer-events: none;
  will-change: transform, opacity;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}
.cglp_loading_flare._lp01 {
  background-image: url("../img/lp01/kosai01.png");
}
.cglp_loading_flare._lp02 {
  background-image: url("../img/lp02/kosai02.png");
}
.cglp_loading_flare._lp03 {
  background-image: url("../img/lp03/kosai03.png");
}
.cglp_loading_flare._lp04 {
  background-image: url("../img/lp04/kosai04.png");
}
.cglp_loading_flare img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
  overflow: visible !important;
  display: block;
  max-width: none;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) {
    .cglp_loading_flare img {
      transform: translateZ(0);
    }
  }
}
/* ======================================================================
 header
====================================================================== */
.cglp_header {
  width: 100%;
  background-color: transparent;
  transition: top 0.3s ease, background-color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .cglp_header {
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }
}
.cglp_header._lp01 {
  background: #f5e9ea;
}
.cglp_header._lp01 .cglp_header_menu {
  background: #e54749;
}
.cglp_header._lp01 .cglp_header_menu_ham {
  background: #e54749;
}
.cglp_header._lp01 .cglp_header_btn._01 {
  background: #e54749;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .cglp_header._lp01 .cglp_header_btn._01 {
    background: #fff;
    color: #e54749;
  }
}
.cglp_header._lp02 {
  background: #F8EEDC;
}
.cglp_header._lp02 .cglp_header_menu {
  background: #E89700;
}
.cglp_header._lp02 .cglp_header_menu_ham {
  background: #E89700;
}
.cglp_header._lp02 .cglp_header_btn._01 {
  background: #E89700;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .cglp_header._lp02 .cglp_header_btn._01 {
    background: #fff;
    color: #E89700;
  }
}
.cglp_header._lp03 {
  background: #EEF4F5;
}
.cglp_header._lp03 .cglp_header_menu {
  background: #0075FA;
}
.cglp_header._lp03 .cglp_header_menu_ham {
  background: #0075FA;
}
.cglp_header._lp03 .cglp_header_btn._01 {
  background: #0075FA;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .cglp_header._lp03 .cglp_header_btn._01 {
    background: #fff;
    color: #0075FA;
  }
}
.cglp_header._lp04 {
  background: #D7EFE5;
}
.cglp_header._lp04 .cglp_header_menu {
  background: #0FB200;
}
.cglp_header._lp04 .cglp_header_menu_ham {
  background: #0FB200;
}
.cglp_header._lp04 .cglp_header_btn._01 {
  background: #0FB200;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .cglp_header._lp04 .cglp_header_btn._01 {
    background: #fff;
    color: #0FB200;
  }
}
.cglp_header_cont {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 7rem;
}
@media screen and (max-width: 768px) {
  .cglp_header_cont {
    width: 100%;
    padding: 0;
  }
}
.cglp_header_logo {
  opacity: 1;
  transition: all 0.2s ease-in-out;
  width: 25rem;
}
@media screen and (max-width: 768px) {
  .cglp_header_logo {
    transition: none;
  }
}
.cglp_header_logo:hover, .cglp_header_logo:hover img {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .cglp_header_logo:hover, .cglp_header_logo:hover img {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .cglp_header_logo {
    width: 15rem;
    margin-left: 1.2rem;
  }
}
.cglp_header_btn-group {
  display: flex;
}
@media screen and (max-width: 768px) {
  .cglp_header_btn-group {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
  }
}
.cglp_header_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30rem;
  height: 6.6rem;
  font-weight: bold;
  border-radius: 6.6rem;
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 768px) {
  .cglp_header_btn {
    transition: none;
  }
}
.cglp_header_btn:hover, .cglp_header_btn:hover img {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .cglp_header_btn:hover, .cglp_header_btn:hover img {
    opacity: 1;
  }
}
.cglp_header_btn._01._lp01 {
  background: #e54749;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .cglp_header_btn._01._lp01 {
    background: #fff;
    color: #e54749;
  }
}
.cglp_header_btn._01._lp02 {
  background: #E89700;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .cglp_header_btn._01._lp02 {
    background: #fff;
    color: #E89700;
  }
}
.cglp_header_btn._01._lp03 {
  background: #0075FA;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .cglp_header_btn._01._lp03 {
    background: #fff;
    color: #0075FA;
  }
}
.cglp_header_btn._01._lp04 {
  background: #0FB200;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .cglp_header_btn._01._lp04 {
    background: #fff;
    color: #0FB200;
  }
}
.cglp_header_btn._02 {
  margin-left: 10px;
  background: #ffff00;
  color: #1e1e1e;
}
.cglp_header_menu {
  display: none;
  width: 100%;
  height: calc(100vh - 6rem);
  position: absolute;
  top: 6rem;
  left: 0;
  z-index: 3;
  background: #e54749;
  overflow-y: auto;
  padding: 0 0 5rem;
  box-sizing: border-box;
}
.cglp_header_menu_list {
  padding-top: 2rem;
}
.cglp_header_menu_item {
  display: flex;
  align-items: center;
}
.cglp_header_menu_link {
  color: #fff;
  padding: 1.1rem 1rem 1.1rem 2rem;
  display: flex;
  align-items: center;
  width: 100%;
}
.cglp_header_menu_link::before {
  content: "";
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  background-color: #fff;
  margin-right: 1.5rem;
  border-radius: 50%;
}
.cglp_header_menu_ham {
  display: none;
  position: relative;
  width: 6rem;
  height: 6rem;
  cursor: pointer;
  background-color: #e54749;
}
@media screen and (max-width: 768px) {
  .cglp_header_menu_ham {
    display: block;
  }
}
.cglp_header_menu_ham_line {
  position: absolute;
  left: 25%;
  width: 50%;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s;
}
.cglp_header_menu_ham_line._line01 {
  top: 32%;
}
.cglp_header_menu_ham_line._line01._active {
  transform: rotate(45deg);
  top: 50%;
}
.cglp_header_menu_ham_line._line02 {
  top: 50%;
}
.cglp_header_menu_ham_line._line02._active {
  width: 0;
}
.cglp_header_menu_ham_line._line03 {
  top: 68%;
}
.cglp_header_menu_ham_line._line03._active {
  transform: rotate(-45deg);
  top: 50%;
}

/* ======================================================================
 footer
====================================================================== */
.cglp_footer_top .cglp_inner {
  padding: 3rem 0 19rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .cglp_footer_top .cglp_inner {
    padding: 2.5rem 2.5rem 15rem;
  }
}
.cglp_footer_logo {
  width: 74rem;
}
@media screen and (max-width: 768px) {
  .cglp_footer_logo {
    width: 100%;
  }
}
.cglp_footer_copy {
  font-size: 1.4rem;
  color: #1e1e1e;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-style: normal;
  letter-spacing: normal;
  font-weight: 400;
}

.cglp_fixed {
  background: #e54749;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.cglp_fixed._lp01 {
  background: #e54749;
}
.cglp_fixed._lp01 .cglp_fixed_link-list_link._04 .cglp_fixed_link-list_txt .num {
  color: #e54749;
}
.cglp_fixed._lp02 {
  background: #E89700;
}
.cglp_fixed._lp02 .cglp_fixed_link-list_link._04 .cglp_fixed_link-list_txt .num {
  color: #E89700;
}
.cglp_fixed._lp03 {
  background: #0075FA;
}
.cglp_fixed._lp03 .cglp_fixed_link-list_link._04 .cglp_fixed_link-list_txt .num {
  color: #0075FA;
}
.cglp_fixed._lp04 {
  background: #0FB200;
}
.cglp_fixed._lp04 .cglp_fixed_link-list_link._04 .cglp_fixed_link-list_txt .num {
  color: #0FB200;
}
.cglp_fixed.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.cglp_fixed .cglp_inner {
  padding: 3.3rem 0 3.4rem;
}
@media screen and (max-width: 768px) {
  .cglp_fixed .cglp_inner {
    padding: 1rem 1rem 1rem;
  }
}
.cglp_fixed_link-list {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .cglp_fixed_link-list {
    flex-wrap: wrap;
    gap: 0.5rem 0.7rem;
  }
}
.cglp_fixed_link-list_link {
  width: 24.2rem;
  height: 8.3rem;
  background: #ffff00;
  border-radius: 1.5rem;
  opacity: 1;
  transition: all 0.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .cglp_fixed_link-list_link {
    transition: none;
  }
}
.cglp_fixed_link-list_link:hover, .cglp_fixed_link-list_link:hover img {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .cglp_fixed_link-list_link:hover, .cglp_fixed_link-list_link:hover img {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .cglp_fixed_link-list_link {
    width: calc(50% - 0.5rem);
    height: auto;
    padding: 0.5rem;
    box-sizing: border-box;
    border-radius: 1rem;
  }
}
.cglp_fixed_link-list_link._03 {
  padding-right: 1rem;
}
.cglp_fixed_link-list_link._04 {
  background: #fff;
}
.cglp_fixed_link-list_link_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.cglp_fixed_link-list_img {
  width: 4.3rem;
}
.cglp_fixed_link-list_txt {
  font-weight: bold;
  line-height: 1;
}
.cglp_fixed_link-list_txt .min {
  font-size: 1.64rem;
  display: block;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 768px) {
  .cglp_fixed_link-list_txt .min {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 0.3rem;
  }
}
.cglp_fixed_link-list_txt .big {
  font-size: 2.46rem;
  display: block;
}
@media screen and (max-width: 768px) {
  .cglp_fixed_link-list_txt .big {
    font-size: 1.8rem;
  }
}
.cglp_fixed_link-list_txt .num {
  font-size: 3rem;
  color: #e54749;
  display: block;
}
@media screen and (max-width: 768px) {
  .cglp_fixed_link-list_txt .num {
    font-size: 2.4rem;
  }
}

/* ======================================================================
 lp01
====================================================================== */
.cglp_01_mv {
  padding: 2rem 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .cglp_01_mv {
    padding: 1.5rem 0;
  }
}
.cglp_01_mv_ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120rem;
}
@media screen and (max-width: 768px) {
  .cglp_01_mv_ttl {
    width: 90%;
  }
}
.cglp_01_sec01 {
  background: #f5e9ea;
}
.cglp_01_sec01_ttl {
  text-align: center;
  font-weight: bold;
  font-size: 6.4rem;
  color: #e54749;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec01_ttl {
    font-size: 4.4rem;
    line-height: 1.2;
  }
}
.cglp_01_sec01_sub-ttl {
  text-align: center;
  font-size: 3.6rem;
  color: #1e1e1e;
  font-weight: bold;
  margin-bottom: 7.4rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec01_sub-ttl {
    font-size: 2rem;
    line-height: 1.5;
    text-align: left;
  }
}
.cglp_01_sec01_list {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec01_list {
    flex-direction: column;
    gap: 8rem;
  }
}
.cglp_01_sec01_list_box {
  width: 30vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec01_list_box {
    width: 100%;
  }
}
.cglp_01_sec01_list_ttl {
  font-size: 3.2rem;
  font-weight: bold;
  color: #1e1e1e;
  text-align: center;
  white-space: nowrap;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec01_list_ttl {
    font-size: 2.8rem;
  }
}
.cglp_01_sec01_list_num {
  font-size: 8rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 0.5rem;
  width: 18rem;
  height: 18rem;
  border-radius: 18rem;
  background-color: #e54749;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  white-space: nowrap;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec01_list_num {
    margin-bottom: 0;
  }
}
.cglp_01_sec01_list_num_percent {
  font-size: 3.6rem;
}
.cglp_01_sec01_list_num::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -1.9rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 2rem 0.8rem 0 0.8rem;
  border-color: #e54749 transparent transparent transparent;
}
.cglp_01_sec01_list_img {
  margin-bottom: 0.2rem;
}
.cglp_01_sec01_list_txt {
  padding: 0 5rem;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec01_list_txt {
    padding: 0 2rem;
  }
}
.cglp_01_sec02 {
  background: #e54749;
}
.cglp_01_sec02 .cglp_inner {
  padding: 8rem 8rem 11.5rem;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec02 .cglp_inner {
    padding: 5rem 2.5rem 7rem;
  }
}
.cglp_01_sec02_ttl {
  color: #fff;
  font-size: 7.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec02_ttl {
    font-size: 5rem;
    white-space: nowrap;
  }
}
.cglp_01_sec02_txt {
  color: #fff;
  font-size: 2rem;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec02_txt {
    text-align: left;
    font-size: 1.8rem;
  }
}
.cglp_01_sec02_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  position: relative;
  width: 97rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec02_list {
    flex-direction: column;
    width: 100%;
  }
}
.cglp_01_sec02_item {
  width: 48.5rem;
  max-width: calc(50% - 1.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  background: #fff;
  border-radius: 2rem;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec02_item {
    width: 100%;
    max-width: none;
  }
}
.cglp_01_sec02_item_ttl {
  color: #e54749;
  text-align: center;
  font-size: 3.2rem;
  font-weight: bold;
  padding: 2rem 0;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec02_item_ttl {
    font-size: 2.8rem;
  }
}
.cglp_01_sec02_item_img {
  width: 100%;
}
.cglp_01_sec02_item_txt {
  padding: 2.5rem;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec02_item_txt {
    font-size: 1.8rem;
  }
}
.cglp_01_sec02_trademark {
  text-align: right;
  font-size: 1.4rem;
  color: #fff;
  position: absolute;
  right: 0;
  bottom: -3.5rem;
}
.cglp_01_sec03 {
  background: #f5e9ea;
}
.cglp_01_sec03_ttl {
  text-align: center;
  font-weight: bold;
  font-size: 6.4rem;
  color: #e54749;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec03_ttl {
    font-size: 4rem;
    line-height: 1.2;
    white-space: nowrap;
  }
}
.cglp_01_sec03_sub-ttl {
  text-align: center;
  font-size: 3.6rem;
  color: #1e1e1e;
  font-weight: bold;
  margin-bottom: 5rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec03_sub-ttl {
    font-size: 2rem;
    line-height: 1.5;
    text-align: left;
  }
}
.cglp_01_sec03_list {
  display: flex;
  justify-content: center;
  gap: 5rem;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec03_list {
    flex-direction: column;
  }
}
.cglp_01_sec03_list_box {
  width: calc(33.33% - 3.3333333333rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec03_list_box {
    width: 100%;
  }
}
.cglp_01_sec03_list_ttl {
  font-size: 3.2rem;
  font-weight: bold;
  color: #e54749;
  text-align: center;
  white-space: nowrap;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec03_list_ttl {
    font-size: 2.8rem;
  }
}
.cglp_01_sec03_list_img {
  margin-bottom: 0.2rem;
  border-radius: 2rem;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec03_list_img {
    margin-bottom: 1rem;
  }
}
.cglp_01_sec03_list_img img {
  border-radius: 2rem;
}
.cglp_01_sec03_list_txt {
  padding: 0;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec03_list_txt {
    font-size: 1.8rem;
  }
}
.cglp_01_sec04 {
  background: #fff;
}
.cglp_01_sec04_ttl {
  color: #e54749;
  font-size: 6.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec04_ttl {
    font-size: 4rem;
    line-height: 1.2;
    white-space: nowrap;
  }
}
.cglp_01_sec04_sub-ttl {
  text-align: center;
  font-size: 3.6rem;
  color: #1e1e1e;
  font-weight: bold;
  margin-bottom: 5rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec04_sub-ttl {
    font-size: 2rem;
    line-height: 1.5;
    text-align: left;
    margin-bottom: 3rem;
  }
}
.cglp_01_sec04_txt {
  color: #1e1e1e;
  font-size: 2rem;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec04_txt {
    font-size: 1.8rem;
    text-align: left;
  }
}
.cglp_01_sec04_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec04_list {
    flex-direction: column;
  }
}
.cglp_01_sec04_item {
  width: 48.5rem;
  max-width: calc(50% - 1.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  border-radius: 2rem;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec04_item {
    width: 100%;
    max-width: none;
  }
}
.cglp_01_sec04_item_ttl {
  width: 100%;
  color: #fff;
  background: #e54749;
  text-align: center;
  font-size: 3.2rem;
  line-height: 1.3;
  font-weight: bold;
  border-radius: 2rem 2rem 0 0;
  height: 12.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cglp_01_sec04_item_img {
  width: 100%;
}
.cglp_01_sec04_item_txt-wrap {
  padding: 2.5rem;
  background: #f5e9ea;
  border-radius: 0 0 2rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.cglp_01_sec04_item_txt {
  margin-bottom: 2.5rem;
}
.cglp_01_sec04_item_list-ttl {
  background: #e54749;
  color: #fff;
  width: 100%;
  height: 4rem;
  font-weight: bold;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.cglp_01_sec04_item_list {
  margin-bottom: auto;
}
.cglp_01_sec04_item_list_item {
  font-size: 1.8rem;
  line-height: 1.8;
  padding-left: 1rem;
  display: flex;
  align-items: center;
}
.cglp_01_sec04_item_list_item::before {
  content: "";
  display: inline-block;
  margin-right: 1rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #e54749;
  flex-shrink: 0;
}
.cglp_01_sec05 {
  background: #e54749;
}
.cglp_01_sec05_ttl {
  color: #fff;
  font-size: 6.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec05_ttl {
    font-size: 4rem;
    line-height: 1.3;
  }
}
.cglp_01_sec05_sub-ttl {
  text-align: center;
  font-size: 3.6rem;
  color: #fff;
  font-weight: bold;
  margin-bottom: 3rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec05_sub-ttl {
    font-size: 2rem;
    line-height: 1.5;
    text-align: left;
  }
}
.cglp_01_sec05_txt {
  color: #fff;
  font-size: 2rem;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec05_txt {
    font-size: 1.8rem;
    text-align: left;
  }
}
.cglp_01_sec05_slider {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100rem;
  max-width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec05_slider {
    width: 100%;
    max-width: none;
  }
}
.cglp_01_sec05_slider .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cglp_01_sec05_slider .slick-arrow::before {
  display: none;
}
.cglp_01_sec05_slider .slick-arrow img {
  display: block;
  width: 100%;
  height: auto;
}
.cglp_01_sec05_slider .slick-prev {
  left: -7rem;
}
.cglp_01_sec05_slider .slick-next {
  right: -7rem;
}
.cglp_01_sec05_item {
  width: 100rem;
  max-width: 90%;
  background: #fff;
  border-radius: 2rem;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec05_item {
    width: 100%;
    max-width: none;
  }
}
.cglp_01_sec05_item_inner {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec05_item_inner {
    flex-direction: column;
  }
}
.cglp_01_sec05_item_img {
  width: 50%;
  height: 100%;
  border-radius: 2rem 0 0 2rem;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec05_item_img {
    width: 100%;
    height: auto;
    border-radius: 2rem 2rem 0 0;
  }
}
.cglp_01_sec05_item_img img {
  border-radius: 2rem 0 0 2rem;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec05_item_img img {
    border-radius: 2rem 2rem 0 0;
  }
}
.cglp_01_sec05_item_txt-wrap {
  width: 50%;
  height: auto;
  border-radius: 0 2rem 2rem 0;
  padding: 0 4rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec05_item_txt-wrap {
    width: 100%;
    padding: 2.5rem;
  }
}
.cglp_01_sec05_item_tag {
  display: inline-block;
  font-size: 1.8rem;
  line-height: 1.8;
  color: #fff;
  background: #e54749;
  padding: 0 2rem;
  border-radius: 1rem;
  align-self: flex-start;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec05_item_tag {
    font-size: 1.6rem;
  }
}
.cglp_01_sec05_item_ttl {
  color: #e54749;
  font-size: 3.2rem;
  line-height: 1.3;
  font-weight: bold;
  padding: 2rem 0;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec05_item_ttl {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 768px) {
  .cglp_01_sec05_item_txt {
    font-size: 1.8rem;
  }
}
.cglp_01_sec06 {
  background: #f5e9ea;
}
.cglp_01_sec06 .cglp_inner {
  padding: 8rem 8rem 20rem;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec06 .cglp_inner {
    padding: 5rem 2.5rem;
  }
}
.cglp_01_sec06_ttl {
  text-align: center;
  font-weight: bold;
  font-size: 6.4rem;
  color: #e54749;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec06_ttl {
    font-size: 5rem;
  }
}
.cglp_01_sec06_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5rem 4.2rem;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec06_list {
    gap: 3rem;
    flex-direction: column;
  }
}
.cglp_01_sec06_item {
  width: 47.9rem;
  max-width: calc(50% - 2.1rem);
}
@media screen and (max-width: 768px) {
  .cglp_01_sec06_item {
    width: 100%;
    max-width: none;
  }
}
.cglp_01_sec06_item_top {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cglp_01_sec06_item_ttl {
  color: #e54749;
  font-size: 2.8rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec06_item_ttl {
    font-size: 2.4rem;
  }
}
.cglp_01_sec06_item_ttl .name {
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec06_item_ttl .name {
    font-size: 2rem;
  }
}
.cglp_01_sec06_item_txt-wrap {
  padding: 2.5rem;
  background: #fff;
  border: 3px solid #e54749;
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec06_item_txt {
    font-size: 1.8rem;
  }
}
.cglp_01_sec07 {
  background: #fff;
}
.cglp_01_sec07 .cglp_inner {
  padding: 8rem 8rem 10rem;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec07 .cglp_inner {
    padding: 5rem 2.5rem;
  }
}
.cglp_01_sec07_ttl {
  color: #e54749;
  font-size: 6.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec07_ttl {
    font-size: 4.4rem;
    line-height: 1.3;
  }
}
.cglp_01_sec07_sub-ttl {
  text-align: center;
  font-size: 3.6rem;
  color: #1e1e1e;
  font-weight: bold;
  margin-bottom: 5rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec07_sub-ttl {
    font-size: 2rem;
    text-align: left;
  }
}
.cglp_01_sec07_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec07_list {
    flex-direction: column;
  }
}
.cglp_01_sec07_item {
  width: 48.5rem;
  box-sizing: border-box;
  max-width: calc(50% - 1.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  border-radius: 2rem;
  background: #e54749;
  padding: 2.5rem;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec07_item {
    width: 100%;
    max-width: none;
  }
}
.cglp_01_sec07_item_img {
  margin-bottom: 2rem;
}
.cglp_01_sec07_item_ttl {
  color: #fff;
  text-align: center;
  font-size: 3.2rem;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 1.4rem;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec07_item_ttl {
    font-size: 2.8rem;
  }
}
.cglp_01_sec07_item_txt {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec07_item_txt {
    font-size: 1.8rem;
  }
}
.cglp_01_sec08 {
  background: #e54749;
}
.cglp_01_sec08 .cglp_inner {
  padding: 8rem 8rem 10rem;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec08 .cglp_inner {
    padding: 5rem 2.5rem;
  }
}
.cglp_01_sec08_ttl {
  color: #fff;
  font-size: 6.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec08_ttl {
    font-size: 4.4rem;
    line-height: 1.3;
  }
}
.cglp_01_sec08_sub-ttl {
  text-align: center;
  font-size: 3.6rem;
  color: #fff;
  font-weight: bold;
  margin-bottom: 5rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec08_sub-ttl {
    font-size: 2rem;
    text-align: left;
  }
}
.cglp_01_sec08_list {
  gap: 2rem;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec08_list {
    gap: 1rem;
  }
}
.cglp_01_sec08_item {
  width: 100rem;
  max-width: 90%;
  background: #fff;
  border-radius: 2rem;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec08_item {
    width: 100%;
    max-width: none;
    border-radius: 1rem;
  }
}
.cglp_01_sec08_item_question {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  padding: 3rem;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec08_item_question {
    padding: 1.5rem;
  }
}
.cglp_01_sec08_item_question::after {
  content: "";
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  border-right: 3px solid #e54749;
  border-bottom: 3px solid #e54749;
  position: absolute;
  right: 3rem;
  top: calc(50% - 2px);
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .cglp_01_sec08_item_question::after {
    width: 0.8rem;
    height: 0.8rem;
    border-right: 2px solid #e54749;
    border-bottom: 2px solid #e54749;
    right: 1.5rem;
  }
}
.cglp_01_sec08_item_question_q {
  font-size: 2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  color: #fff;
  background: #e54749;
  margin-right: 1.5rem;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec08_item_question_q {
    width: 3rem;
    height: 3rem;
    font-size: 1.6rem;
    padding-bottom: 0.2rem;
    box-sizing: border-box;
  }
}
.cglp_01_sec08_item_question_ttl {
  font-size: 2rem;
  font-weight: bold;
  color: #e54749;
  padding-right: 3rem;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec08_item_question_ttl {
    font-size: 1.6rem;
  }
}
.cglp_01_sec08_item_answer {
  display: none;
  margin-top: -1rem;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec08_item_answer {
    margin-top: 0;
  }
}
.cglp_01_sec08_item_answer_txt {
  padding: 0 3rem 3rem;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec08_item_answer_txt {
    padding: 0 2rem 2rem;
    font-size: 1.6rem;
  }
}
.cglp_01_sec08_item._active .cglp_01_sec08_item_question::after {
  top: calc(50% + 4px);
  border-bottom: none;
  border-right: none;
  border-top: 3px solid #e54749;
  border-left: 3px solid #e54749;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec08_item._active .cglp_01_sec08_item_question::after {
    border-bottom: none;
    border-right: none;
    border-top: 2px solid #e54749;
    border-left: 2px solid #e54749;
  }
}
.cglp_01_sec09 .cglp_inner {
  padding: 11rem 20rem 10rem;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec09 .cglp_inner {
    padding: 8rem 2.5rem;
  }
}
.cglp_01_sec09_cont {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec09_cont {
    flex-direction: column;
  }
}
.cglp_01_sec09_img {
  margin-right: 5rem;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec09_img {
    margin-right: 0;
    margin-bottom: 5rem;
  }
}
.cglp_01_sec09_txt-wrap {
  width: 51rem;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec09_txt-wrap {
    width: 100%;
  }
}
.cglp_01_sec09_ttl {
  font-size: 4.8rem;
  font-weight: bold;
  color: #e54749;
  line-height: 1.2;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec09_ttl {
    font-size: 3.2rem;
    text-align: center;
  }
}
.cglp_01_sec09_txt {
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec09_txt {
    font-size: 1.8rem;
  }
}
.cglp_01_sec09_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffff00;
  font-size: 2.4rem;
  font-weight: bold;
  border-radius: 1.5rem;
  box-shadow: 0 4px 0 0 #c9c900;
  width: 43.5rem;
  height: 7.4rem;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec09_btn {
    width: 100%;
    height: auto;
    padding: 1.5rem;
    font-size: 2rem;
    box-sizing: border-box;
  }
}
.cglp_01_sec10 {
  background: #f5e9ea;
}
.cglp_01_sec10 .cglp_inner {
  padding: 8rem 8rem 10rem;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec10 .cglp_inner {
    padding: 5rem 2.5rem;
  }
}
.cglp_01_sec10_ttl {
  color: #e54749;
  font-size: 6.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec10_ttl {
    font-size: 4.4rem;
  }
}
.cglp_01_sec10_list {
  gap: 2rem;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec10_list {
    gap: 1rem;
  }
}
.cglp_01_sec10_item {
  width: 100rem;
  max-width: 90%;
  background: #fff;
  border-radius: 2rem;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec10_item {
    width: 100%;
    max-width: none;
    border-radius: 1rem;
  }
}
.cglp_01_sec10_item_question {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  padding: 2rem 0;
  margin: 0 3rem;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec10_item_question {
    padding: 1.5rem 0;
    margin: 0 1.5rem;
  }
}
.cglp_01_sec10_item_question::after {
  content: "";
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  border-right: 3px solid #e54749;
  border-bottom: 3px solid #e54749;
  position: absolute;
  right: 1rem;
  top: calc(50% - 2px);
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .cglp_01_sec10_item_question::after {
    width: 0.8rem;
    height: 0.8rem;
    border-right: 2px solid #e54749;
    border-bottom: 2px solid #e54749;
    right: 0rem;
  }
}
.cglp_01_sec10_item_question_ttl {
  font-size: 2rem;
  font-weight: 900;
  color: #e54749;
}
.cglp_01_sec10_item_answer {
  display: none;
  margin-top: -1rem;
  padding: 2rem 0;
  margin: 0 3rem;
  border-top: 1px solid #D9D9D9;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec10_item_answer {
    padding: 1.5rem 0;
    margin: 0 1.5rem;
  }
}
.cglp_01_sec10_item_answer_item {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec10_item_answer_item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.cglp_01_sec10_item_answer_item + .cglp_01_sec10_item_answer_item {
  margin-top: 1rem;
}
.cglp_01_sec10_item_answer_link {
  font-size: 1.8rem;
  font-weight: bold;
  color: #e54749;
  text-decoration: underline;
  width: 25%;
  padding-right: 1rem;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec10_item_answer_link {
    margin-right: 0;
    width: 100%;
  }
}
.cglp_01_sec10_item_answer_link:hover {
  text-decoration: none;
}
.cglp_01_sec10_item_answer_zip {
  font-size: 1.8rem;
  color: #1e1e1e;
  line-height: 1.7;
  width: 55%;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec10_item_answer_zip {
    margin-right: 0;
    width: 100%;
  }
}
.cglp_01_sec10_item_answer_tel {
  font-size: 1.8rem;
  font-weight: bold;
  color: #1e1e1e;
  white-space: nowrap;
  width: 20%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec10_item_answer_tel {
    width: 100%;
    text-align: left;
  }
}
.cglp_01_sec10_item._active .cglp_01_sec10_item_question::after {
  top: calc(50% + 4px);
  border-bottom: none;
  border-right: none;
  border-top: 3px solid #e54749;
  border-left: 3px solid #e54749;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec10_item._active .cglp_01_sec10_item_question::after {
    border-bottom: none;
    border-right: none;
    border-top: 2px solid #e54749;
    border-left: 2px solid #e54749;
  }
}
.cglp_01_sec11 {
  background: #e54749;
}
.cglp_01_sec11 .cglp_inner {
  padding: 8rem 0 5rem;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec11 .cglp_inner {
    padding: 5rem 0 3rem;
  }
}
.cglp_01_sec11_ttl {
  color: #ffff00;
  font-size: 6.4rem;
  line-height: 1.2;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec11_ttl {
    font-size: 4rem;
  }
}
.cglp_01_sec11_sub-ttl {
  text-align: center;
  font-size: 3.6rem;
  color: #fff;
  font-weight: bold;
  margin-bottom: 7rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec11_sub-ttl {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: left;
    padding: 0 2.5rem;
  }
}
.cglp_01_sec11_slider {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cglp_01_sec11_btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec11_btn-group {
    flex-direction: column;
    margin-top: 3rem;
  }
}
.cglp_01_sec11_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45rem;
  height: 10rem;
  font-size: 3rem;
  font-weight: bold;
  border-radius: 15rem;
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec11_btn {
    transition: none;
  }
}
.cglp_01_sec11_btn:hover, .cglp_01_sec11_btn:hover img {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .cglp_01_sec11_btn:hover, .cglp_01_sec11_btn:hover img {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .cglp_01_sec11_btn {
    width: 90%;
    height: auto;
    padding: 1.5rem;
    font-size: 2rem;
    box-sizing: border-box;
  }
}
.cglp_01_sec11_btn._01 {
  background: #fff;
  color: #e54749;
}
.cglp_01_sec11_btn._02 {
  background: #ffff00;
  color: #1e1e1e;
}

/* ======================================================================
 lp02
====================================================================== */
.cglp_02_mv {
  position: relative;
}
.cglp_02_mv_ttl {
  position: absolute;
  top: calc(50% - 2rem);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120rem;
}
@media screen and (max-width: 768px) {
  .cglp_02_mv_ttl {
    top: 50%;
    width: 94%;
  }
}
.cglp_02_sec01 {
  background: #F8EEDC;
}
.cglp_02_sec01_ttl {
  text-align: center;
  font-weight: bold;
  font-size: 6.4rem;
  color: #E89700;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec01_ttl {
    font-size: 4.4rem;
    line-height: 1.2;
  }
}
.cglp_02_sec01_sub-ttl {
  text-align: center;
  font-size: 3.6rem;
  color: #1e1e1e;
  font-weight: bold;
  margin-bottom: 7.4rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec01_sub-ttl {
    font-size: 2rem;
    line-height: 1.5;
    text-align: left;
  }
}
.cglp_02_sec01_list {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec01_list {
    flex-direction: column;
    gap: 8rem;
    margin-bottom: 4rem;
  }
}
.cglp_02_sec01_list_box {
  width: 30vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec01_list_box {
    width: 100%;
  }
}
.cglp_02_sec01_list_ttl {
  font-size: 3.2rem;
  font-weight: bold;
  color: #1e1e1e;
  text-align: center;
  white-space: nowrap;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec01_list_ttl {
    font-size: 2.8rem;
  }
}
.cglp_02_sec01_list_num {
  font-size: 8rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 0.5rem;
  width: 18rem;
  height: 18rem;
  border-radius: 18rem;
  background-color: #E89700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  white-space: nowrap;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec01_list_num {
    margin-bottom: 0;
  }
}
.cglp_02_sec01_list_num_percent {
  font-size: 3.6rem;
}
.cglp_02_sec01_list_num::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -1.9rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 2rem 0.8rem 0 0.8rem;
  border-color: #E89700 transparent transparent transparent;
}
.cglp_02_sec01_list_img {
  margin-bottom: 0.2rem;
}
.cglp_02_sec01_list_txt {
  padding: 0 5rem;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec01_list_txt {
    padding: 0 2rem;
  }
}
.cglp_02_sec01_flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10rem;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec01_flex {
    flex-direction: column;
    gap: 2.5rem;
  }
}
.cglp_02_sec01_flex_img {
  width: 63rem;
  max-width: 50%;
  border-radius: 2rem;
  flex-shrink: 0;
}
.cglp_02_sec01_flex_img img {
  border-radius: 2rem;
}
.cglp_02_sec01_flex_ttl {
  font-weight: bold;
  font-size: 4.8rem;
  line-height: 1.3;
  color: #E89700;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec01_flex_ttl {
    line-height: 1.2;
  }
}
.cglp_02_sec01_flex_txt {
  font-size: 2rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}
.cglp_02_sec01_flex_item {
  padding-bottom: 1.6rem;
  border-bottom: 1px solid #1e1e1e;
}
.cglp_02_sec01_flex_item_ttl {
  font-size: 2.4rem;
  color: #E89700;
  margin-bottom: 1.5rem;
  line-height: 1;
}
.cglp_02_sec01_flex_item_txt {
  font-size: 1.6rem;
  line-height: 1.8;
  line-height: 1;
}
.cglp_02_sec01_flex_item + .cglp_02_sec01_flex_item {
  margin-top: 1.6rem;
}
.cglp_02_sec02_ttl {
  font-weight: bold;
  font-size: 6.4rem;
  line-height: 1.2;
  margin-bottom: 3rem;
  color: #E89700;
  text-align: center;
}
.cglp_02_sec02_sub-ttl {
  font-weight: bold;
  font-size: 3.6rem;
  line-height: 1.5;
  margin-bottom: 5rem;
  text-align: center;
}
.cglp_02_sec02_img {
  width: 100rem;
  margin: 0 auto;
  max-width: 100%;
}
.cglp_02_sec03 {
  background: #E89700;
}
.cglp_02_sec03 .cglp_inner {
  padding: 8rem 8rem 11.5rem;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec03 .cglp_inner {
    padding: 5rem 2.5rem 7rem;
  }
}
.cglp_02_sec03_ttl {
  color: #fff;
  font-size: 7.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec03_ttl {
    font-size: 5rem;
    white-space: nowrap;
    line-height: 1.2;
  }
}
.cglp_02_sec03_sub-ttl {
  font-weight: bold;
  font-size: 3.6rem;
  line-height: 1.5;
  margin-bottom: 5rem;
  text-align: center;
  color: #fff;
}
.cglp_02_sec03_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  position: relative;
  width: 97rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec03_list {
    flex-direction: column;
    width: 100%;
  }
}
.cglp_02_sec03_item {
  width: 48.5rem;
  max-width: calc(50% - 1.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  background: #fff;
  border-radius: 2rem;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec03_item {
    width: 100%;
    max-width: none;
  }
}
.cglp_02_sec03_item_ttl {
  color: #E89700;
  text-align: center;
  font-size: 3.2rem;
  font-weight: bold;
  padding: 2rem 0;
  line-height: 1.3;
  min-height: 8.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec03_item_ttl {
    font-size: 2.8rem;
    min-height: 7.2rem;
  }
}
.cglp_02_sec03_item_img {
  width: 100%;
}
.cglp_02_sec03_item_txt {
  padding: 2.5rem;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec03_item_txt {
    font-size: 1.8rem;
  }
}
.cglp_02_sec03_trademark {
  text-align: right;
  font-size: 1.4rem;
  color: #fff;
  position: absolute;
  right: 0;
  bottom: -3.5rem;
}
.cglp_02_sec04 {
  background: #F8EEDC;
}
.cglp_02_sec04 .cglp_inner {
  padding: 8rem 11rem;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec04 .cglp_inner {
    padding: 5rem 2.5rem 7rem;
  }
}
.cglp_02_sec04_ttl {
  text-align: center;
  font-weight: bold;
  font-size: 6.4rem;
  color: #E89700;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec04_ttl {
    font-size: 4rem;
    line-height: 1.2;
    white-space: nowrap;
  }
}
.cglp_02_sec04_sub-ttl {
  text-align: center;
  font-size: 3.6rem;
  color: #1e1e1e;
  font-weight: bold;
  margin-bottom: 5rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec04_sub-ttl {
    font-size: 2rem;
    line-height: 1.5;
    text-align: left;
  }
}
.cglp_02_sec04_img {
  width: 100%;
}
.cglp_02_sec05_ttl {
  text-align: center;
  font-weight: bold;
  font-size: 6.4rem;
  color: #E89700;
  margin-bottom: 3rem;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec05_ttl {
    font-size: 4rem;
    line-height: 1.2;
    white-space: nowrap;
  }
}
.cglp_02_sec05_sub-ttl {
  text-align: center;
  font-size: 3.6rem;
  color: #1e1e1e;
  font-weight: bold;
  margin-bottom: 6rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec05_sub-ttl {
    font-size: 2rem;
    line-height: 1.5;
    text-align: left;
  }
}
.cglp_02_sec05_list {
  display: flex;
  justify-content: center;
  gap: 5rem;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec05_list {
    flex-direction: column;
  }
}
.cglp_02_sec05_list_box {
  width: calc(33.33% - 3.3333333333rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec05_list_box {
    width: 100%;
  }
}
.cglp_02_sec05_list_ttl {
  font-size: 3.2rem;
  font-weight: bold;
  color: #E89700;
  text-align: center;
  white-space: nowrap;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec05_list_ttl {
    font-size: 2.8rem;
  }
}
.cglp_02_sec05_list_img {
  margin-bottom: 1.2rem;
  border-radius: 2rem;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec05_list_img {
    margin-bottom: 1rem;
  }
}
.cglp_02_sec05_list_img img {
  border-radius: 2rem;
}
.cglp_02_sec05_list_txt {
  padding: 0;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec05_list_txt {
    font-size: 1.8rem;
  }
}
.cglp_02_sec06 {
  background: #E89700;
}
.cglp_02_sec06_ttl {
  color: #fff;
  font-size: 6.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec06_ttl {
    font-size: 4rem;
    line-height: 1.3;
  }
}
.cglp_02_sec06_sub-ttl {
  text-align: center;
  font-size: 3.6rem;
  color: #fff;
  font-weight: bold;
  margin-bottom: 3rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec06_sub-ttl {
    font-size: 2rem;
    line-height: 1.5;
    text-align: left;
  }
}
.cglp_02_sec06_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto auto;
  grid-template-areas: "wide wide tall1 tall1" "wide wide tall2 tall2" "icon1 icon2 tall2 tall2";
  gap: 2.4rem;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec06_grid {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .cglp_02_sec06_grid > .cglp_02_sec06_card + .cglp_02_sec06_card {
    margin-top: 2.4rem;
  }
}
.cglp_02_sec06_card {
  background: #fff;
  border-radius: 1rem;
  padding: 2.4rem 2.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  height: 100%;
  box-sizing: border-box;
  border: 1px solid #d6d6d6;
  box-shadow: none;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec06_card {
    padding: 1.8rem 2rem;
    width: 100%;
  }
}
.cglp_02_sec06_card._wide {
  grid-column: 1/span 2;
  grid-area: wide;
  grid-row: 1/span 2;
  background: #f4f4f4;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec06_card._wide {
    grid-column: auto;
  }
}
.cglp_02_sec06_card._tall._tall-top {
  grid-area: tall1;
  grid-column: 3/span 2;
  grid-row: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 1.6rem;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec06_card._tall._tall-top {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
}
.cglp_02_sec06_card._tall._tall-bottom {
  grid-area: tall2;
  grid-column: 3/span 2;
  grid-row: 2/span 2;
  background: #fff;
  border: none;
}
.cglp_02_sec06_card._tall._tall-bottom .cglp_02_sec06_card_img {
  margin-top: auto;
  margin-bottom: 0;
}
.cglp_02_sec06_card._img-only {
  padding: 0;
  background: #e6e6e6;
  grid-area: img;
}
.cglp_02_sec06_card._icon {
  background: #fff;
  border: none;
  box-shadow: none;
}
.cglp_02_sec06_card._icon._icon-left {
  grid-area: icon1;
  grid-column: 1;
  grid-row: 3;
}
.cglp_02_sec06_card._icon._icon-right {
  grid-area: icon2;
  grid-column: 2;
  grid-row: 3;
}
.cglp_02_sec06_card_head {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.cglp_02_sec06_reason {
  font-size: 1.4rem;
  font-weight: 700;
  color: #E89700;
  letter-spacing: 0.08em;
}
.cglp_02_sec06_card_ttl {
  font-size: 2.8rem;
  line-height: 1.3;
  font-weight: bold;
  color: #1e1e1e;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec06_card_ttl {
    font-size: 2.4rem;
  }
}
.cglp_02_sec06_card_txt {
  font-size: 1.8rem;
  line-height: 1.7;
  color: #1e1e1e;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec06_card_txt {
    font-size: 1.6rem;
  }
}
.cglp_02_sec06_card_img {
  width: 100%;
  aspect-ratio: 4/3;
  background: #d8d8d8;
  border-radius: 0.8rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cglp_02_sec06_card_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cglp_02_sec06_card._tall._tall-top .cglp_02_sec06_card_img {
  grid-column: 1;
  grid-row: 1/span 2;
  max-width: none;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec06_card._tall._tall-top .cglp_02_sec06_card_img {
    aspect-ratio: 4/3;
  }
}
.cglp_02_sec06_card._tall._tall-top .cglp_02_sec06_card_head {
  grid-column: 2;
  grid-row: 1;
}
.cglp_02_sec06_card._tall._tall-top .cglp_02_sec06_card_txt {
  grid-column: 2;
  grid-row: 2;
}
.cglp_02_sec06_card_icon {
  width: 4.8rem;
  height: 4.8rem;
  background: #fff;
}
.cglp_02_sec06_card_icon img {
  object-fit: contain;
}
.cglp_02_sec07 {
  background: #F8EEDC;
}
.cglp_02_sec07 .cglp_inner {
  padding: 8rem 8rem 20rem;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec07 .cglp_inner {
    padding: 5rem 2.5rem;
  }
}
.cglp_02_sec07_ttl {
  text-align: center;
  font-weight: bold;
  font-size: 6.4rem;
  color: #E89700;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec07_ttl {
    font-size: 5rem;
  }
}
.cglp_02_sec07_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5rem 4.2rem;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec07_list {
    gap: 3rem;
    flex-direction: column;
  }
}
.cglp_02_sec07_item {
  width: 47.9rem;
  max-width: calc(50% - 2.1rem);
}
@media screen and (max-width: 768px) {
  .cglp_02_sec07_item {
    width: 100%;
    max-width: none;
  }
}
.cglp_02_sec07_item_top {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cglp_02_sec07_item_ttl {
  color: #E89700;
  font-size: 2.8rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec07_item_ttl {
    font-size: 2.4rem;
  }
}
.cglp_02_sec07_item_ttl .name {
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec07_item_ttl .name {
    font-size: 2rem;
  }
}
.cglp_02_sec07_item_txt-wrap {
  padding: 2.5rem;
  background: #fff;
  border: 3px solid #E89700;
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec07_item_txt {
    font-size: 1.8rem;
  }
}
.cglp_02_sec08 {
  background: #fff;
}
.cglp_02_sec08 .cglp_inner {
  padding: 8rem 8rem 10rem;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec08 .cglp_inner {
    padding: 5rem 2.5rem;
  }
}
.cglp_02_sec08_ttl {
  color: #E89700;
  font-size: 6.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec08_ttl {
    font-size: 4.4rem;
    line-height: 1.3;
  }
}
.cglp_02_sec08_sub-ttl {
  text-align: center;
  font-size: 3.6rem;
  color: #1e1e1e;
  font-weight: bold;
  margin-bottom: 5rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec08_sub-ttl {
    font-size: 2rem;
    text-align: left;
  }
}
.cglp_02_sec08_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec08_list {
    flex-direction: column;
  }
}
.cglp_02_sec08_item {
  width: 48.5rem;
  box-sizing: border-box;
  max-width: calc(50% - 1.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  border-radius: 2rem;
  background: #F8EEDC;
  padding: 2.5rem;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec08_item {
    width: 100%;
    max-width: none;
  }
}
.cglp_02_sec08_item_img {
  margin-bottom: 2rem;
}
.cglp_02_sec08_item_ttl {
  color: #E89700;
  text-align: center;
  font-size: 3.2rem;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 1.4rem;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec08_item_ttl {
    font-size: 2.8rem;
  }
}
.cglp_02_sec08_item_txt {
  color: #1e1e1e;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec08_item_txt {
    font-size: 1.8rem;
  }
}
.cglp_02_sec09 {
  background: #E89700;
}
.cglp_02_sec09 .cglp_inner {
  padding: 8rem 8rem 10rem;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec09 .cglp_inner {
    padding: 5rem 2.5rem;
  }
}
.cglp_02_sec09_ttl {
  color: #fff;
  font-size: 6.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec09_ttl {
    font-size: 4.4rem;
    line-height: 1.3;
  }
}
.cglp_02_sec09_sub-ttl {
  text-align: center;
  font-size: 3.6rem;
  color: #fff;
  font-weight: bold;
  margin-bottom: 5rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec09_sub-ttl {
    font-size: 2rem;
    text-align: left;
  }
}
.cglp_02_sec09_list {
  gap: 2rem;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec09_list {
    gap: 1rem;
  }
}
.cglp_02_sec09_item {
  width: 100rem;
  max-width: 90%;
  background: #fff;
  border-radius: 2rem;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec09_item {
    width: 100%;
    max-width: none;
    border-radius: 1rem;
  }
}
.cglp_02_sec09_item_question {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  padding: 3rem;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec09_item_question {
    padding: 1.5rem;
  }
}
.cglp_02_sec09_item_question::after {
  content: "";
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  border-right: 3px solid #E89700;
  border-bottom: 3px solid #E89700;
  position: absolute;
  right: 3rem;
  top: calc(50% - 2px);
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .cglp_02_sec09_item_question::after {
    width: 0.8rem;
    height: 0.8rem;
    border-right: 2px solid #E89700;
    border-bottom: 2px solid #E89700;
    right: 1.5rem;
  }
}
.cglp_02_sec09_item_question_q {
  font-size: 2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  color: #fff;
  background: #E89700;
  margin-right: 1.5rem;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec09_item_question_q {
    width: 3rem;
    height: 3rem;
    font-size: 1.6rem;
    padding-bottom: 0.2rem;
    box-sizing: border-box;
  }
}
.cglp_02_sec09_item_question_ttl {
  font-size: 2rem;
  font-weight: bold;
  color: #E89700;
  padding-right: 3rem;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec09_item_question_ttl {
    font-size: 1.6rem;
  }
}
.cglp_02_sec09_item_answer {
  display: none;
  margin-top: -1rem;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec09_item_answer {
    margin-top: 0;
  }
}
.cglp_02_sec09_item_answer_txt {
  padding: 0 3rem 3rem;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec09_item_answer_txt {
    padding: 0 2rem 2rem;
    font-size: 1.6rem;
  }
}
.cglp_02_sec09_item._active .cglp_02_sec09_item_question::after {
  top: calc(50% + 4px);
  border-bottom: none;
  border-right: none;
  border-top: 3px solid #E89700;
  border-left: 3px solid #E89700;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec09_item._active .cglp_02_sec09_item_question::after {
    border-bottom: none;
    border-right: none;
    border-top: 2px solid #E89700;
    border-left: 2px solid #E89700;
  }
}
.cglp_02_sec10 .cglp_inner {
  padding: 11rem 20rem 10rem;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec10 .cglp_inner {
    padding: 8rem 2.5rem;
  }
}
.cglp_02_sec10_cont {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec10_cont {
    flex-direction: column;
  }
}
.cglp_02_sec10_img {
  margin-right: 5rem;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec10_img {
    margin-right: 0;
    margin-bottom: 5rem;
  }
}
.cglp_02_sec10_txt-wrap {
  width: 51rem;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec10_txt-wrap {
    width: 100%;
  }
}
.cglp_02_sec10_ttl {
  font-size: 4.8rem;
  font-weight: bold;
  color: #E89700;
  line-height: 1.2;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec10_ttl {
    font-size: 3.2rem;
    text-align: center;
  }
}
.cglp_02_sec10_txt {
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec10_txt {
    font-size: 1.8rem;
  }
}
.cglp_02_sec10_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffff00;
  font-size: 2.4rem;
  font-weight: bold;
  border-radius: 1.5rem;
  box-shadow: 0 4px 0 0 #c9c900;
  width: 43.5rem;
  height: 7.4rem;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec10_btn {
    width: 100%;
    height: auto;
    padding: 1.5rem;
    font-size: 2rem;
    box-sizing: border-box;
  }
}
.cglp_02_sec11 {
  background: #F8EEDC;
}
.cglp_02_sec11 .cglp_inner {
  padding: 8rem 8rem 10rem;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec11 .cglp_inner {
    padding: 5rem 2.5rem;
  }
}
.cglp_02_sec11_ttl {
  color: #E89700;
  font-size: 6.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec11_ttl {
    font-size: 4.4rem;
  }
}
.cglp_02_sec11_list {
  gap: 2rem;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec11_list {
    gap: 1rem;
  }
}
.cglp_02_sec11_item {
  width: 100rem;
  max-width: 90%;
  background: #fff;
  border-radius: 2rem;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec11_item {
    width: 100%;
    max-width: none;
    border-radius: 1rem;
  }
}
.cglp_02_sec11_item_question {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  padding: 2rem 0;
  margin: 0 3rem;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec11_item_question {
    padding: 1.5rem 0;
    margin: 0 1.5rem;
  }
}
.cglp_02_sec11_item_question::after {
  content: "";
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  border-right: 3px solid #E89700;
  border-bottom: 3px solid #E89700;
  position: absolute;
  right: 1rem;
  top: calc(50% - 2px);
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .cglp_02_sec11_item_question::after {
    width: 0.8rem;
    height: 0.8rem;
    border-right: 2px solid #E89700;
    border-bottom: 2px solid #E89700;
    right: 0rem;
  }
}
.cglp_02_sec11_item_question_ttl {
  font-size: 2rem;
  font-weight: 900;
  color: #E89700;
}
.cglp_02_sec11_item_answer {
  display: none;
  margin-top: -1rem;
  padding: 2rem 0;
  margin: 0 3rem;
  border-top: 1px solid #D9D9D9;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec11_item_answer {
    padding: 1.5rem 0;
    margin: 0 1.5rem;
  }
}
.cglp_02_sec11_item_answer_item {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec11_item_answer_item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.cglp_02_sec11_item_answer_item + .cglp_02_sec11_item_answer_item {
  margin-top: 1rem;
}
.cglp_02_sec11_item_answer_link {
  font-size: 1.8rem;
  font-weight: bold;
  color: #E89700;
  text-decoration: underline;
  width: 25%;
  padding-right: 1rem;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec11_item_answer_link {
    margin-right: 0;
    width: 100%;
  }
}
.cglp_02_sec11_item_answer_link:hover {
  text-decoration: none;
}
.cglp_02_sec11_item_answer_zip {
  font-size: 1.8rem;
  color: #1e1e1e;
  line-height: 1.7;
  width: 55%;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec11_item_answer_zip {
    margin-right: 0;
    width: 100%;
  }
}
.cglp_02_sec11_item_answer_tel {
  font-size: 1.8rem;
  font-weight: bold;
  color: #1e1e1e;
  white-space: nowrap;
  width: 20%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec11_item_answer_tel {
    width: 100%;
    text-align: left;
  }
}
.cglp_02_sec11_item._active .cglp_02_sec11_item_question::after {
  top: calc(50% + 4px);
  border-bottom: none;
  border-right: none;
  border-top: 3px solid #E89700;
  border-left: 3px solid #E89700;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec11_item._active .cglp_02_sec11_item_question::after {
    border-bottom: none;
    border-right: none;
    border-top: 2px solid #E89700;
    border-left: 2px solid #E89700;
  }
}
.cglp_02_sec12 {
  background: #E89700;
}
.cglp_02_sec12 .cglp_inner {
  padding: 8rem 0 5rem;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec12 .cglp_inner {
    padding: 5rem 0 3rem;
  }
}
.cglp_02_sec12_ttl {
  color: #ffff00;
  font-size: 6.4rem;
  line-height: 1.2;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec12_ttl {
    font-size: 4rem;
  }
}
.cglp_02_sec12_sub-ttl {
  text-align: center;
  font-size: 3.6rem;
  color: #fff;
  font-weight: bold;
  margin-bottom: 7rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec12_sub-ttl {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: left;
    padding: 0 2.5rem;
  }
}
.cglp_02_sec12_slider {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cglp_02_sec12_btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec12_btn-group {
    flex-direction: column;
    margin-top: 3rem;
  }
}
.cglp_02_sec12_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45rem;
  height: 10rem;
  font-size: 3rem;
  font-weight: bold;
  border-radius: 15rem;
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec12_btn {
    transition: none;
  }
}
.cglp_02_sec12_btn:hover, .cglp_02_sec12_btn:hover img {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .cglp_02_sec12_btn:hover, .cglp_02_sec12_btn:hover img {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .cglp_02_sec12_btn {
    width: 90%;
    height: auto;
    padding: 1.5rem;
    font-size: 2rem;
    box-sizing: border-box;
  }
}
.cglp_02_sec12_btn._01 {
  background: #fff;
  color: #E89700;
}
.cglp_02_sec12_btn._02 {
  background: #ffff00;
  color: #1e1e1e;
}

/* ======================================================================
 lp03
====================================================================== */
.cglp_03_mv {
  position: relative;
}
.cglp_03_mv_ttl {
  position: absolute;
  top: calc(50% - 2rem);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120rem;
}
@media screen and (max-width: 768px) {
  .cglp_03_mv_ttl {
    top: 50%;
    width: 94%;
  }
}
.cglp_03_sec01 {
  background: #EEF4F5;
}
.cglp_03_sec01 .cglp_inner {
  padding: 6rem 0 10rem;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec01 .cglp_inner {
    padding: 6rem 2.5rem 10rem;
  }
}
.cglp_03_sec01_ttl {
  text-align: center;
  font-weight: bold;
  font-size: 6.4rem;
  color: #0075FA;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec01_ttl {
    font-size: 4.4rem;
    line-height: 1.2;
  }
}
.cglp_03_sec01_sub-ttl {
  text-align: center;
  font-size: 3.6rem;
  color: #1e1e1e;
  font-weight: bold;
  margin-bottom: 7.4rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec01_sub-ttl {
    font-size: 2rem;
    line-height: 1.5;
    text-align: left;
  }
}
.cglp_03_sec01_txt {
  text-align: center;
  font-size: 2rem;
  color: #1e1e1e;
  margin-bottom: 7rem;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec01_txt {
    font-size: 1.6rem;
    margin-bottom: 3rem;
    text-align: left;
  }
}
.cglp_03_sec01_list {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec01_list {
    flex-direction: column;
    gap: 8rem;
  }
}
.cglp_03_sec01_list_box {
  width: 30vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec01_list_box {
    width: 100%;
  }
}
.cglp_03_sec01_list_ttl {
  font-size: 3.2rem;
  font-weight: bold;
  color: #1e1e1e;
  text-align: center;
  white-space: nowrap;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec01_list_ttl {
    font-size: 2.8rem;
  }
}
.cglp_03_sec01_list_num {
  font-size: 8rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 0.5rem;
  width: 18rem;
  height: 18rem;
  border-radius: 18rem;
  background-color: #0075FA;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  white-space: nowrap;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec01_list_num {
    margin-bottom: 0;
  }
}
.cglp_03_sec01_list_num_percent {
  font-size: 3.6rem;
}
.cglp_03_sec01_list_num::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -1.9rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 2rem 0.8rem 0 0.8rem;
  border-color: #0075FA transparent transparent transparent;
}
.cglp_03_sec01_list_img {
  margin-top: -7.5rem;
  margin-bottom: 0.2rem;
  width: 30rem;
  position: relative;
  z-index: 2;
}
.cglp_03_sec01_list_txt {
  padding: 0 5rem;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec01_list_txt {
    padding: 0 2rem;
  }
}
.cglp_03_sec02 {
  background: #0075FA;
}
.cglp_03_sec02 .cglp_inner {
  padding: 8rem 8rem 11.5rem;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec02 .cglp_inner {
    padding: 5rem 2.5rem 7rem;
  }
}
.cglp_03_sec02_ttl {
  color: #fff;
  font-size: 7.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec02_ttl {
    font-size: 5rem;
    white-space: nowrap;
  }
}
.cglp_03_sec02_txt {
  color: #fff;
  font-size: 2rem;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec02_txt {
    text-align: left;
    font-size: 1.8rem;
  }
}
.cglp_03_sec02_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  position: relative;
  width: 97rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec02_list {
    flex-direction: column;
    width: 100%;
  }
}
.cglp_03_sec02_item {
  width: 48.5rem;
  max-width: calc(50% - 1.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  background: #fff;
  border-radius: 2rem;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec02_item {
    width: 100%;
    max-width: none;
  }
}
.cglp_03_sec02_item_ttl {
  color: #0075FA;
  text-align: center;
  font-size: 3.2rem;
  font-weight: bold;
  padding: 2rem 0;
  line-height: 1.3;
  min-height: 8.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec02_item_ttl {
    font-size: 2.8rem;
    min-height: 7.2rem;
  }
}
.cglp_03_sec02_item_img {
  width: 100%;
}
.cglp_03_sec02_item_txt {
  padding: 2.5rem 1.5rem 2.5rem 2.2rem;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec02_item_txt {
    font-size: 1.8rem;
  }
}
.cglp_03_sec02_item_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffff00;
  font-size: 2.4rem;
  font-weight: bold;
  border-radius: 1.5rem;
  box-shadow: 0 4px 0 0 #c9c900;
  width: 43.5rem;
  max-width: 100%;
  height: 6.4rem;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec02_item_btn {
    width: 100%;
    height: auto;
    padding: 1.5rem;
    font-size: 2rem;
    box-sizing: border-box;
  }
}
.cglp_03_sec02_trademark {
  text-align: right;
  font-size: 1.4rem;
  color: #fff;
  position: absolute;
  right: 0;
  bottom: -3.5rem;
}
.cglp_03_sec03 {
  background: #EEF4F5;
}
.cglp_03_sec03 .cglp_inner {
  padding: 10rem 0;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec03 .cglp_inner {
    padding: 5rem 2.5rem;
  }
}
.cglp_03_sec03_ttl {
  text-align: center;
  font-weight: bold;
  font-size: 6.4rem;
  color: #0075FA;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec03_ttl {
    font-size: 4rem;
    line-height: 1.2;
    white-space: nowrap;
  }
}
.cglp_03_sec03_sub-ttl {
  text-align: center;
  font-size: 3.6rem;
  color: #1e1e1e;
  font-weight: bold;
  margin-bottom: 5rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec03_sub-ttl {
    font-size: 2rem;
    line-height: 1.5;
    text-align: left;
    margin-bottom: 2.5rem;
  }
}
.cglp_03_sec03_cont {
  width: 100rem;
  max-width: 100%;
  margin: 0 auto;
  background: #fff;
  border-radius: 2rem;
  padding: 5rem;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec03_cont {
    width: 100%;
    padding: 2rem;
    border-radius: 1rem;
  }
}
.cglp_03_sec03_img {
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec03_img {
    margin-bottom: 2.5rem;
  }
}
.cglp_03_sec03_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec03_list {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.cglp_03_sec03_list_box {
  width: calc(50% - 1.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  border-radius: 1.5rem;
  border: 1px solid #0075FA;
  padding: 2.5rem;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec03_list_box {
    width: 100%;
    border-radius: 1rem;
  }
}
.cglp_03_sec03_list_tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin-bottom: 1.6rem;
}
.cglp_03_sec03_list_tag {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.8;
  width: 12.4rem;
  height: 4.4rem;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec03_list_tag {
    width: 10rem;
    height: 3.8rem;
    font-size: 1.6rem;
  }
}
.cglp_03_sec03_list_tag._01 {
  background: #BEDBF2;
}
.cglp_03_sec03_list_tag._02 {
  background: #C8DCF0;
}
.cglp_03_sec03_list_tag._03 {
  background: #D3DCEE;
}
.cglp_03_sec03_list_tag._04 {
  background: #DDDDEC;
}
.cglp_03_sec03_list_tag._05 {
  background: #E8DDEA;
}
.cglp_03_sec03_list_tag._06 {
  background: #F2DDE8;
}
.cglp_03_sec03_list_tag._07 {
  background: #FBDEE6;
}
.cglp_03_sec03_list_ttl {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: bold;
  color: #0075FA;
  text-align: center;
  white-space: nowrap;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec03_list_ttl {
    font-size: 1.8rem;
  }
}
.cglp_03_sec03_list_img {
  margin-bottom: 0.2rem;
  border-radius: 2rem;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec03_list_img {
    margin-bottom: 1rem;
  }
}
.cglp_03_sec03_list_img img {
  border-radius: 2rem;
}
.cglp_03_sec03_list_txt {
  padding: 0;
  font-size: 1.8rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec03_list_txt {
    font-size: 1.6rem;
  }
}
.cglp_03_sec04 {
  background: #0075FA;
}
.cglp_03_sec04_ttl {
  color: #00FFFF;
  font-size: 6.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec04_ttl {
    font-size: 4rem;
    line-height: 1.3;
  }
}
.cglp_03_sec04_sub-ttl {
  text-align: center;
  font-size: 3.6rem;
  color: #fff;
  font-weight: bold;
  margin-bottom: 3rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec04_sub-ttl {
    font-size: 2rem;
    line-height: 1.5;
    text-align: left;
  }
}
.cglp_03_sec04_txt {
  color: #fff;
  font-size: 2rem;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec04_txt {
    font-size: 1.8rem;
    text-align: left;
  }
}
.cglp_03_sec04_cont {
  width: 100rem;
  max-width: 100%;
  margin: 0 auto;
  background: #fff;
  border-radius: 2rem;
  padding: 5rem 3rem;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec04_cont {
    width: 100%;
    padding: 2rem;
  }
}
.cglp_03_sec04_img {
  width: 100%;
}
.cglp_03_sec05 {
  background: #EEF4F5;
}
.cglp_03_sec05 .cglp_inner {
  padding: 8rem 8rem 20rem;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec05 .cglp_inner {
    padding: 5rem 2.5rem;
  }
}
.cglp_03_sec05_ttl {
  text-align: center;
  font-weight: bold;
  font-size: 6.4rem;
  color: #0075FA;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec05_ttl {
    font-size: 5rem;
  }
}
.cglp_03_sec05_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5rem 4.2rem;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec05_list {
    gap: 3rem;
    flex-direction: column;
  }
}
.cglp_03_sec05_item {
  width: 47.9rem;
  max-width: calc(50% - 2.1rem);
}
@media screen and (max-width: 768px) {
  .cglp_03_sec05_item {
    width: 100%;
    max-width: none;
  }
}
.cglp_03_sec05_item_top {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cglp_03_sec05_item_ttl {
  color: #0075FA;
  font-size: 2.8rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec05_item_ttl {
    font-size: 2.4rem;
  }
}
.cglp_03_sec05_item_ttl .name {
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec05_item_ttl .name {
    font-size: 2rem;
  }
}
.cglp_03_sec05_item_txt-wrap {
  padding: 2.5rem;
  background: #fff;
  border: 3px solid #0075FA;
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec05_item_txt {
    font-size: 1.8rem;
  }
}
.cglp_03_sec06 {
  background: #fff;
}
.cglp_03_sec06 .cglp_inner {
  padding: 8rem 8rem 10rem;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec06 .cglp_inner {
    padding: 5rem 2.5rem;
  }
}
.cglp_03_sec06_ttl {
  color: #0075FA;
  font-size: 6.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec06_ttl {
    font-size: 4.4rem;
    line-height: 1.3;
  }
}
.cglp_03_sec06_sub-ttl {
  text-align: center;
  font-size: 3.6rem;
  color: #1e1e1e;
  font-weight: bold;
  margin-bottom: 5rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec06_sub-ttl {
    font-size: 2rem;
    text-align: left;
  }
}
.cglp_03_sec06_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec06_list {
    flex-direction: column;
  }
}
.cglp_03_sec06_item {
  width: 48.5rem;
  box-sizing: border-box;
  max-width: calc(50% - 1.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  border-radius: 2rem;
  background: #0075FA;
  padding: 2.5rem;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec06_item {
    width: 100%;
    max-width: none;
  }
}
.cglp_03_sec06_item_img {
  margin-bottom: 2rem;
}
.cglp_03_sec06_item_ttl {
  color: #fff;
  text-align: center;
  font-size: 3.2rem;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 1.4rem;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec06_item_ttl {
    font-size: 2.8rem;
  }
}
.cglp_03_sec06_item_txt {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec06_item_txt {
    font-size: 1.8rem;
  }
}
.cglp_03_sec07 {
  background: #0075FA;
}
.cglp_03_sec07 .cglp_inner {
  padding: 8rem 8rem 10rem;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec07 .cglp_inner {
    padding: 5rem 2.5rem;
  }
}
.cglp_03_sec07_ttl {
  color: #fff;
  font-size: 6.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec07_ttl {
    font-size: 4.4rem;
    line-height: 1.3;
  }
}
.cglp_03_sec07_sub-ttl {
  text-align: center;
  font-size: 3.6rem;
  color: #fff;
  font-weight: bold;
  margin-bottom: 5rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec07_sub-ttl {
    font-size: 2rem;
    text-align: left;
  }
}
.cglp_03_sec07_list {
  gap: 2rem;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec07_list {
    gap: 1rem;
  }
}
.cglp_03_sec07_item {
  width: 100rem;
  max-width: 90%;
  background: #fff;
  border-radius: 2rem;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec07_item {
    width: 100%;
    max-width: none;
    border-radius: 1rem;
  }
}
.cglp_03_sec07_item_question {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  padding: 3rem;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec07_item_question {
    padding: 1.5rem;
  }
}
.cglp_03_sec07_item_question::after {
  content: "";
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  border-right: 3px solid #0075FA;
  border-bottom: 3px solid #0075FA;
  position: absolute;
  right: 3rem;
  top: calc(50% - 2px);
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .cglp_03_sec07_item_question::after {
    width: 0.8rem;
    height: 0.8rem;
    border-right: 2px solid #0075FA;
    border-bottom: 2px solid #0075FA;
    right: 1.5rem;
  }
}
.cglp_03_sec07_item_question_q {
  font-size: 2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  color: #fff;
  background: #0075FA;
  margin-right: 1.5rem;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec07_item_question_q {
    width: 3rem;
    height: 3rem;
    font-size: 1.6rem;
    padding-bottom: 0.2rem;
    box-sizing: border-box;
  }
}
.cglp_03_sec07_item_question_ttl {
  font-size: 2rem;
  font-weight: bold;
  color: #0075FA;
  padding-right: 3rem;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec07_item_question_ttl {
    font-size: 1.6rem;
  }
}
.cglp_03_sec07_item_answer {
  display: none;
  margin-top: -1rem;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec07_item_answer {
    margin-top: 0;
  }
}
.cglp_03_sec07_item_answer_txt {
  padding: 0 3rem 3rem;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec07_item_answer_txt {
    padding: 0 2rem 2rem;
    font-size: 1.6rem;
  }
}
.cglp_03_sec07_item._active .cglp_03_sec07_item_question::after {
  top: calc(50% + 4px);
  border-bottom: none;
  border-right: none;
  border-top: 3px solid #0075FA;
  border-left: 3px solid #0075FA;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec07_item._active .cglp_03_sec07_item_question::after {
    border-bottom: none;
    border-right: none;
    border-top: 2px solid #0075FA;
    border-left: 2px solid #0075FA;
  }
}
.cglp_03_sec08 .cglp_inner {
  padding: 11rem 20rem 10rem;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec08 .cglp_inner {
    padding: 8rem 2.5rem;
  }
}
.cglp_03_sec08_cont {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec08_cont {
    flex-direction: column;
  }
}
.cglp_03_sec08_img {
  margin-right: 5rem;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec08_img {
    margin-right: 0;
    margin-bottom: 5rem;
  }
}
.cglp_03_sec08_txt-wrap {
  width: 51rem;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec08_txt-wrap {
    width: 100%;
  }
}
.cglp_03_sec08_ttl {
  font-size: 4.8rem;
  font-weight: bold;
  color: #0075FA;
  line-height: 1.2;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec08_ttl {
    font-size: 3.2rem;
    text-align: center;
  }
}
.cglp_03_sec08_txt {
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec08_txt {
    font-size: 1.8rem;
  }
}
.cglp_03_sec08_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffff00;
  font-size: 2.4rem;
  font-weight: bold;
  border-radius: 1.5rem;
  box-shadow: 0 4px 0 0 #c9c900;
  width: 43.5rem;
  height: 7.4rem;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec08_btn {
    width: 100%;
    height: auto;
    padding: 1.5rem;
    font-size: 2rem;
    box-sizing: border-box;
  }
}
.cglp_03_sec09 {
  background: #EEF4F5;
}
.cglp_03_sec09 .cglp_inner {
  padding: 8rem 8rem 10rem;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec09 .cglp_inner {
    padding: 5rem 2.5rem;
  }
}
.cglp_03_sec09_ttl {
  color: #0075FA;
  font-size: 6.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec09_ttl {
    font-size: 4.4rem;
  }
}
.cglp_03_sec09_list {
  gap: 2rem;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec09_list {
    gap: 1rem;
  }
}
.cglp_03_sec09_item {
  width: 100rem;
  max-width: 90%;
  background: #fff;
  border-radius: 2rem;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec09_item {
    width: 100%;
    max-width: none;
    border-radius: 1rem;
  }
}
.cglp_03_sec09_item_question {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  padding: 2rem 0;
  margin: 0 3rem;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec09_item_question {
    padding: 1.5rem 0;
    margin: 0 1.5rem;
  }
}
.cglp_03_sec09_item_question::after {
  content: "";
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  border-right: 3px solid #0075FA;
  border-bottom: 3px solid #0075FA;
  position: absolute;
  right: 1rem;
  top: calc(50% - 2px);
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .cglp_03_sec09_item_question::after {
    width: 0.8rem;
    height: 0.8rem;
    border-right: 2px solid #0075FA;
    border-bottom: 2px solid #0075FA;
    right: 0rem;
  }
}
.cglp_03_sec09_item_question_ttl {
  font-size: 2rem;
  font-weight: 900;
  color: #0075FA;
}
.cglp_03_sec09_item_answer {
  display: none;
  margin-top: -1rem;
  padding: 2rem 0;
  margin: 0 3rem;
  border-top: 1px solid #D9D9D9;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec09_item_answer {
    padding: 1.5rem 0;
    margin: 0 1.5rem;
  }
}
.cglp_03_sec09_item_answer_item {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec09_item_answer_item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.cglp_03_sec09_item_answer_item + .cglp_03_sec09_item_answer_item {
  margin-top: 1rem;
}
.cglp_03_sec09_item_answer_link {
  font-size: 1.8rem;
  font-weight: bold;
  color: #0075FA;
  text-decoration: underline;
  width: 25%;
  padding-right: 1rem;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec09_item_answer_link {
    width: 100%;
  }
}
.cglp_03_sec09_item_answer_link:hover {
  text-decoration: none;
}
.cglp_03_sec09_item_answer_zip {
  font-size: 1.8rem;
  color: #1e1e1e;
  line-height: 1.7;
  width: 55%;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec09_item_answer_zip {
    margin-right: 0;
    width: 100%;
  }
}
.cglp_03_sec09_item_answer_tel {
  font-size: 1.8rem;
  font-weight: bold;
  color: #1e1e1e;
  white-space: nowrap;
  text-align: center;
  width: 20%;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec09_item_answer_tel {
    width: 100%;
    text-align: left;
  }
}
.cglp_03_sec09_item._active .cglp_03_sec09_item_question::after {
  top: calc(50% + 4px);
  border-bottom: none;
  border-right: none;
  border-top: 3px solid #0075FA;
  border-left: 3px solid #0075FA;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec09_item._active .cglp_03_sec09_item_question::after {
    border-bottom: none;
    border-right: none;
    border-top: 2px solid #0075FA;
    border-left: 2px solid #0075FA;
  }
}
.cglp_03_sec10 {
  background: #0075FA;
}
.cglp_03_sec10 .cglp_inner {
  padding: 8rem 0 5rem;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec10 .cglp_inner {
    padding: 5rem 0 3rem;
  }
}
.cglp_03_sec10_ttl {
  color: #ffff00;
  font-size: 6.4rem;
  line-height: 1.2;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec10_ttl {
    font-size: 4rem;
  }
}
.cglp_03_sec10_sub-ttl {
  text-align: center;
  font-size: 3.6rem;
  color: #fff;
  font-weight: bold;
  margin-bottom: 7rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec10_sub-ttl {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: left;
    padding: 0 2.5rem;
  }
}
.cglp_03_sec10_slider {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cglp_03_sec10_btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec10_btn-group {
    flex-direction: column;
    margin-top: 3rem;
  }
}
.cglp_03_sec10_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45rem;
  height: 10rem;
  font-size: 3rem;
  font-weight: bold;
  border-radius: 15rem;
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec10_btn {
    transition: none;
  }
}
.cglp_03_sec10_btn:hover, .cglp_03_sec10_btn:hover img {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .cglp_03_sec10_btn:hover, .cglp_03_sec10_btn:hover img {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .cglp_03_sec10_btn {
    width: 90%;
    height: auto;
    padding: 1.5rem;
    font-size: 2rem;
    box-sizing: border-box;
  }
}
.cglp_03_sec10_btn._01 {
  background: #fff;
  color: #0075FA;
}
.cglp_03_sec10_btn._02 {
  background: #ffff00;
  color: #1e1e1e;
}

/* ======================================================================
 lp04
====================================================================== */
.cglp_04_mv {
  position: relative;
}
.cglp_04_sec01 {
  background: #EEF4F5;
}
.cglp_04_sec01_ttl {
  text-align: center;
  font-weight: bold;
  font-size: 6.4rem;
  color: #0FB200;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec01_ttl {
    font-size: 4.4rem;
    line-height: 1.2;
  }
}
.cglp_04_sec01_sub-ttl {
  text-align: center;
  font-size: 3.6rem;
  color: #1e1e1e;
  font-weight: bold;
  margin-bottom: 7.4rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec01_sub-ttl {
    font-size: 2rem;
    line-height: 1.5;
    text-align: left;
  }
}
.cglp_04_sec01_list {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec01_list {
    flex-direction: column;
    gap: 8rem;
  }
}
.cglp_04_sec01_list_box {
  width: 30vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec01_list_box {
    width: 100%;
  }
}
.cglp_04_sec01_list_ttl {
  font-size: 3.2rem;
  font-weight: bold;
  color: #1e1e1e;
  text-align: center;
  white-space: nowrap;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec01_list_ttl {
    font-size: 2.8rem;
  }
}
.cglp_04_sec01_list_num {
  font-size: 8rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 0.5rem;
  width: 18rem;
  height: 18rem;
  border-radius: 18rem;
  background-color: #0FB200;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  white-space: nowrap;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec01_list_num {
    margin-bottom: 0;
  }
}
.cglp_04_sec01_list_num._fs {
  font-size: 6rem;
}
.cglp_04_sec01_list_num_percent {
  font-size: 3.6rem;
}
.cglp_04_sec01_list_num::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -1.9rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 2rem 0.8rem 0 0.8rem;
  border-color: #0FB200 transparent transparent transparent;
}
.cglp_04_sec01_list_img {
  margin: 3rem 0;
}
.cglp_04_sec01_list_txt {
  padding: 0 5rem;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec01_list_txt {
    padding: 0 2rem;
  }
}
.cglp_04_sec01_list_txt span {
  display: block;
  font-size: 1.4rem;
  margin-top: 2rem;
}
.cglp_04_sec02 {
  background: #0FB200;
}
.cglp_04_sec02 .cglp_inner {
  padding: 8rem 8rem 11.5rem;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec02 .cglp_inner {
    padding: 5rem 2.5rem 7rem;
  }
}
.cglp_04_sec02_ttl {
  color: #fff;
  font-size: 7.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec02_ttl {
    font-size: 5rem;
  }
}
.cglp_04_sec02_sub-ttl {
  text-align: center;
  font-size: 3.6rem;
  color: #fff;
  font-weight: bold;
  margin-bottom: 5rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec02_sub-ttl {
    font-size: 2rem;
    line-height: 1.5;
    text-align: left;
  }
}
.cglp_04_sec02_txt {
  color: #fff;
  font-size: 2rem;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec02_txt {
    text-align: left;
    font-size: 1.8rem;
  }
}
.cglp_04_sec02_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  position: relative;
  width: 97rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec02_list {
    flex-direction: column;
    width: 100%;
  }
}
.cglp_04_sec02_item {
  width: 48.5rem;
  max-width: calc(50% - 1.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  background: #fff;
  border-radius: 2rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec02_item {
    width: 100%;
    max-width: none;
  }
}
.cglp_04_sec02_item_ttl {
  color: #0FB200;
  text-align: center;
  font-size: 3.2rem;
  font-weight: bold;
  padding: 2rem 0;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec02_item_ttl {
    font-size: 2.8rem;
  }
}
.cglp_04_sec02_item_ttl + .cglp_04_sec02_item_txt {
  padding-top: 0;
}
.cglp_04_sec02_item_tag {
  font-weight: 700;
  background: #0FB200;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2.5rem auto 0;
  height: 3.7rem;
  padding: 0 1rem;
  border-radius: 1rem;
  font-size: 1.8rem;
}
.cglp_04_sec02_item_tag + .cglp_04_sec02_item_ttl {
  padding-top: 0.5rem;
}
.cglp_04_sec02_item_img {
  width: 100%;
}
.cglp_04_sec02_item_txt {
  padding: 2.5rem;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec02_item_txt {
    font-size: 1.8rem;
  }
}
.cglp_04_sec02_trademark {
  text-align: right;
  font-size: 1.4rem;
  color: #fff;
  position: absolute;
  right: 0;
  bottom: -3.5rem;
}
.cglp_04_sec03_ttl {
  text-align: center;
  font-weight: bold;
  font-size: 6.4rem;
  color: #0FB200;
  margin-bottom: 3rem;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec03_ttl {
    font-size: 4rem;
    line-height: 1.2;
  }
}
.cglp_04_sec03_sub-ttl {
  text-align: center;
  font-size: 3.6rem;
  color: #1e1e1e;
  font-weight: bold;
  margin-bottom: 5rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec03_sub-ttl {
    font-size: 2rem;
    line-height: 1.5;
    text-align: left;
  }
}
.cglp_04_sec03_list {
  display: flex;
  justify-content: center;
  gap: 5rem;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec03_list {
    flex-direction: column;
  }
}
.cglp_04_sec03_list_box {
  width: calc(33.33% - 3.3333333333rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec03_list_box {
    width: 100%;
  }
}
.cglp_04_sec03_list_ttl {
  font-size: 3.2rem;
  font-weight: bold;
  color: #0FB200;
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec03_list_ttl {
    font-size: 2.8rem;
  }
}
.cglp_04_sec03_list_img {
  margin-bottom: 2rem;
  border-radius: 2rem;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec03_list_img {
    margin-bottom: 1rem;
  }
}
.cglp_04_sec03_list_img img {
  border-radius: 2rem;
}
.cglp_04_sec03_list_txt {
  padding: 0;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec03_list_txt {
    font-size: 1.8rem;
  }
}
.cglp_04_sec04 {
  background: #D7EFE5;
}
.cglp_04_sec04_ttl {
  color: #0FB200;
  font-size: 6.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec04_ttl {
    font-size: 4rem;
    line-height: 1.2;
  }
}
.cglp_04_sec04_sub-ttl {
  text-align: center;
  font-size: 3.6rem;
  color: #1e1e1e;
  font-weight: bold;
  margin-bottom: 5rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec04_sub-ttl {
    font-size: 2rem;
    line-height: 1.5;
    text-align: left;
    margin-bottom: 3rem;
  }
}
.cglp_04_sec04_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec04_list {
    flex-direction: column;
  }
}
.cglp_04_sec04_item {
  width: 48.5rem;
  max-width: calc(50% - 1.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  border-radius: 2rem;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec04_item {
    width: 100%;
    max-width: none;
  }
}
.cglp_04_sec05_ttl {
  color: #0FB200;
  font-size: 6.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec05_ttl {
    font-size: 4rem;
    line-height: 1.3;
  }
}
.cglp_04_sec05_sub-ttl {
  text-align: center;
  font-size: 3.6rem;
  font-weight: bold;
  margin-bottom: 3rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec05_sub-ttl {
    font-size: 2rem;
    line-height: 1.5;
    text-align: left;
  }
}
.cglp_04_sec05_img {
  margin: 0 auto 5rem;
  width: 100rem;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec05_img {
    width: 100%;
  }
}
.cglp_04_sec05_img p {
  font-size: 1.4rem;
  margin-top: 1rem;
}
.cglp_04_sec05 .cglp_04_sec02_item {
  background: #D7EFE5;
}
.cglp_04_sec06 {
  background: #D7EFE5;
}
.cglp_04_sec06 .cglp_inner {
  padding: 8rem 8rem 20rem;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec06 .cglp_inner {
    padding: 5rem 2.5rem;
  }
}
.cglp_04_sec06_ttl {
  text-align: center;
  font-weight: bold;
  font-size: 6.4rem;
  color: #0FB200;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec06_ttl {
    font-size: 5rem;
  }
}
.cglp_04_sec06_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5rem 4.2rem;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec06_list {
    gap: 3rem;
    flex-direction: column;
  }
}
.cglp_04_sec06_item {
  width: 47.9rem;
  max-width: calc(50% - 2.1rem);
}
@media screen and (max-width: 768px) {
  .cglp_04_sec06_item {
    width: 100%;
    max-width: none;
  }
}
.cglp_04_sec06_item_top {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cglp_04_sec06_item_img {
  width: 12.8rem;
}
.cglp_04_sec06_item_ttl {
  color: #0FB200;
  font-size: 2.8rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec06_item_ttl {
    font-size: 2.4rem;
  }
}
.cglp_04_sec06_item_ttl .name {
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec06_item_ttl .name {
    font-size: 2rem;
  }
}
.cglp_04_sec06_item_txt-wrap {
  padding: 2.5rem;
  background: #fff;
  border: 3px solid #0FB200;
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec06_item_txt {
    font-size: 1.8rem;
  }
}
.cglp_04_sec07 {
  background: #fff;
}
.cglp_04_sec07 .cglp_inner {
  padding: 8rem 8rem 10rem;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec07 .cglp_inner {
    padding: 5rem 2.5rem;
  }
}
.cglp_04_sec07_ttl {
  color: #0FB200;
  font-size: 6.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec07_ttl {
    font-size: 4.4rem;
    line-height: 1.3;
  }
}
.cglp_04_sec07_sub-ttl {
  text-align: center;
  font-size: 3.6rem;
  color: #1e1e1e;
  font-weight: bold;
  margin-bottom: 5rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec07_sub-ttl {
    font-size: 2rem;
    text-align: left;
  }
}
.cglp_04_sec07_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec07_list {
    flex-direction: column;
  }
}
.cglp_04_sec07_item {
  width: 48.5rem;
  box-sizing: border-box;
  max-width: calc(50% - 1.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  border-radius: 2rem;
  background: #D7EFE5;
  padding: 2.5rem;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec07_item {
    width: 100%;
    max-width: none;
  }
}
.cglp_04_sec07_item_img {
  margin-bottom: 2rem;
}
.cglp_04_sec07_item_ttl {
  color: #0FB200;
  text-align: center;
  font-size: 3.2rem;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 1.4rem;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec07_item_ttl {
    font-size: 2.8rem;
  }
}
.cglp_04_sec07_item_txt {
  color: #1e1e1e;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec07_item_txt {
    font-size: 1.8rem;
  }
}
.cglp_04_sec08 {
  background: #0FB200;
}
.cglp_04_sec08 .cglp_inner {
  padding: 8rem 8rem 10rem;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec08 .cglp_inner {
    padding: 5rem 2.5rem;
  }
}
.cglp_04_sec08_ttl {
  color: #fff;
  font-size: 6.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec08_ttl {
    font-size: 4.4rem;
    line-height: 1.3;
  }
}
.cglp_04_sec08_sub-ttl {
  text-align: center;
  font-size: 3.6rem;
  color: #fff;
  font-weight: bold;
  margin-bottom: 5rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec08_sub-ttl {
    font-size: 2rem;
    text-align: left;
  }
}
.cglp_04_sec08_list {
  gap: 2rem;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec08_list {
    gap: 1rem;
  }
}
.cglp_04_sec08_item {
  width: 100rem;
  max-width: 90%;
  background: #fff;
  border-radius: 2rem;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec08_item {
    width: 100%;
    max-width: none;
    border-radius: 1rem;
  }
}
.cglp_04_sec08_item_question {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  padding: 3rem;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec08_item_question {
    padding: 1.5rem;
  }
}
.cglp_04_sec08_item_question::after {
  content: "";
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  border-right: 3px solid #0FB200;
  border-bottom: 3px solid #0FB200;
  position: absolute;
  right: 3rem;
  top: calc(50% - 2px);
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .cglp_04_sec08_item_question::after {
    width: 0.8rem;
    height: 0.8rem;
    border-right: 2px solid #0FB200;
    border-bottom: 2px solid #0FB200;
    right: 1.5rem;
  }
}
.cglp_04_sec08_item_question_q {
  font-size: 2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  color: #fff;
  background: #0FB200;
  margin-right: 1.5rem;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec08_item_question_q {
    width: 3rem;
    height: 3rem;
    font-size: 1.6rem;
    padding-bottom: 0.2rem;
    box-sizing: border-box;
  }
}
.cglp_04_sec08_item_question_ttl {
  font-size: 2rem;
  font-weight: bold;
  color: #0FB200;
  padding-right: 3rem;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec08_item_question_ttl {
    font-size: 1.6rem;
  }
}
.cglp_04_sec08_item_answer {
  display: none;
  margin-top: -1rem;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec08_item_answer {
    margin-top: 0;
  }
}
.cglp_04_sec08_item_answer_txt {
  padding: 0 3rem 3rem;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec08_item_answer_txt {
    padding: 0 2rem 2rem;
    font-size: 1.6rem;
  }
}
.cglp_04_sec08_item._active .cglp_01_sec08_item_question::after {
  top: calc(50% + 4px);
  border-bottom: none;
  border-right: none;
  border-top: 3px solid #0075FA;
  border-left: 3px solid #0075FA;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec08_item._active .cglp_01_sec08_item_question::after {
    border-bottom: none;
    border-right: none;
    border-top: 2px solid #0075FA;
    border-left: 2px solid #0075FA;
  }
}
.cglp_04_sec09 .cglp_inner {
  padding: 11rem 20rem 10rem;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec09 .cglp_inner {
    padding: 8rem 2.5rem;
  }
}
.cglp_04_sec09_cont {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec09_cont {
    flex-direction: column;
  }
}
.cglp_04_sec09_img {
  margin-right: 5rem;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec09_img {
    margin-right: 0;
    margin-bottom: 5rem;
  }
}
.cglp_04_sec09_txt-wrap {
  width: 51rem;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec09_txt-wrap {
    width: 100%;
  }
}
.cglp_04_sec09_ttl {
  font-size: 4.8rem;
  font-weight: bold;
  color: #0FB200;
  line-height: 1.2;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec09_ttl {
    font-size: 3.2rem;
    text-align: center;
  }
}
.cglp_04_sec09_txt {
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec09_txt {
    font-size: 1.8rem;
  }
}
.cglp_04_sec09_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffff00;
  font-size: 2.4rem;
  font-weight: bold;
  border-radius: 1.5rem;
  box-shadow: 0 4px 0 0 #c9c900;
  width: 43.5rem;
  height: 7.4rem;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec09_btn {
    width: 100%;
    height: auto;
    padding: 1.5rem;
    font-size: 2rem;
    box-sizing: border-box;
  }
}
.cglp_04_sec10 {
  background: #D7EFE5;
}
.cglp_04_sec10 .cglp_inner {
  padding: 8rem 8rem 10rem;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec10 .cglp_inner {
    padding: 5rem 2.5rem;
  }
}
.cglp_04_sec10_ttl {
  color: #0FB200;
  font-size: 6.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec10_ttl {
    font-size: 4.4rem;
  }
}
.cglp_04_sec10_list {
  gap: 2rem;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec10_list {
    gap: 1rem;
  }
}
.cglp_04_sec10_item {
  width: 100rem;
  max-width: 90%;
  background: #fff;
  border-radius: 2rem;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec10_item {
    width: 100%;
    max-width: none;
    border-radius: 1rem;
  }
}
.cglp_04_sec10_item_question {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  padding: 2rem 0;
  margin: 0 3rem;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec10_item_question {
    padding: 1.5rem 0;
    margin: 0 1.5rem;
  }
}
.cglp_04_sec10_item_question::after {
  content: "";
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  border-right: 3px solid #0FB200;
  border-bottom: 3px solid #0FB200;
  position: absolute;
  right: 1rem;
  top: calc(50% - 2px);
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .cglp_04_sec10_item_question::after {
    width: 0.8rem;
    height: 0.8rem;
    border-right: 2px solid #0FB200;
    border-bottom: 2px solid #0FB200;
    right: 0rem;
  }
}
.cglp_04_sec10_item_question_ttl {
  font-size: 2rem;
  font-weight: 900;
  color: #0FB200;
}
.cglp_04_sec10_item_answer {
  display: none;
  margin-top: -1rem;
  padding: 2rem 0;
  margin: 0 3rem;
  border-top: 1px solid #D9D9D9;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec10_item_answer {
    padding: 1.5rem 0;
    margin: 0 1.5rem;
  }
}
.cglp_04_sec10_item_answer_item {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec10_item_answer_item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.cglp_04_sec10_item_answer_item + .cglp_04_sec10_item_answer_item {
  margin-top: 1rem;
}
.cglp_04_sec10_item_answer_link {
  font-size: 1.8rem;
  font-weight: bold;
  color: #0FB200;
  text-decoration: underline;
  width: 25%;
  padding-right: 1rem;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec10_item_answer_link {
    width: 100%;
  }
}
.cglp_04_sec10_item_answer_link:hover {
  text-decoration: none;
}
.cglp_04_sec10_item_answer_zip {
  font-size: 1.8rem;
  color: #1e1e1e;
  line-height: 1.7;
  width: 55%;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec10_item_answer_zip {
    width: 100%;
  }
}
.cglp_04_sec10_item_answer_tel {
  font-size: 1.8rem;
  font-weight: bold;
  color: #1e1e1e;
  white-space: nowrap;
  width: 20%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec10_item_answer_tel {
    width: 100%;
    text-align: left;
  }
}
.cglp_04_sec10_item._active .cglp_04_sec10_item_question::after {
  top: calc(50% + 4px);
  border-bottom: none;
  border-right: none;
  border-top: 3px solid #0FB200;
  border-left: 3px solid #0FB200;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec10_item._active .cglp_04_sec10_item_question::after {
    border-bottom: none;
    border-right: none;
    border-top: 2px solid #0FB200;
    border-left: 2px solid #0FB200;
  }
}
.cglp_04_sec11 {
  background: #0FB200;
}
.cglp_04_sec11 .cglp_inner {
  padding: 8rem 0 5rem;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec11 .cglp_inner {
    padding: 5rem 0 3rem;
  }
}
.cglp_04_sec11_ttl {
  color: #ffff00;
  font-size: 6.4rem;
  line-height: 1.2;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec11_ttl {
    font-size: 4rem;
  }
}
.cglp_04_sec11_sub-ttl {
  text-align: center;
  font-size: 3.6rem;
  color: #fff;
  font-weight: bold;
  margin-bottom: 7rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec11_sub-ttl {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: left;
    padding: 0 2.5rem;
  }
}
.cglp_04_sec11_slider {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cglp_04_sec11_btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec11_btn-group {
    flex-direction: column;
    margin-top: 3rem;
  }
}
.cglp_04_sec11_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45rem;
  height: 10rem;
  font-size: 2.8rem;
  font-weight: bold;
  border-radius: 15rem;
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec11_btn {
    transition: none;
  }
}
.cglp_04_sec11_btn:hover, .cglp_04_sec11_btn:hover img {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .cglp_04_sec11_btn:hover, .cglp_04_sec11_btn:hover img {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .cglp_04_sec11_btn {
    width: 90%;
    height: auto;
    padding: 1.5rem;
    font-size: 2rem;
    box-sizing: border-box;
  }
}
.cglp_04_sec11_btn._01 {
  background: #fff;
  color: #0FB200;
}
.cglp_04_sec11_btn._02 {
  background: #ffff00;
  color: #1e1e1e;
}/*# sourceMappingURL=style.css.map */