@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
====================================================================== */
* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", serif;
  color: #2d2d2d;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
}

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

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

label {
  cursor: pointer;
}

a {
  text-decoration: none;
  color: #2d2d2d;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  img {
    width: 100%;
  }
}

.inner {
  width: 1000px;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .inner {
    width: 92%;
  }
}

.wrap {
  overflow: hidden;
}

.sp {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
}
.trans {
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 768px) {
  .trans {
    transition: none;
  }
}

.trans:hover,
.trans:hover img {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .trans:hover,
  .trans:hover img {
    opacity: 1;
  }
}

.anchor {
  display: block;
  position: relative;
  top: -90px;
  visibility: hidden;
}
@media screen and (max-width: 768px) {
  .anchor {
    top: -70px;
  }
}

/* ======================================================================
 header
====================================================================== */
/*=============================
.btn-trigger
=============================*/
.btn-trigger {
  position: relative;
  width: 32px;
  height: 22px;
  cursor: pointer;
}

.btn-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
}

.btn-trigger,
.btn-trigger span {
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}

.btn-trigger span:nth-of-type(1) {
  top: 0;
}

.btn-trigger span:nth-of-type(2) {
  top: 10px;
}

.btn-trigger span:nth-of-type(3) {
  bottom: 0;
}

.btn-trigger.active {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

.btn-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
}

.btn-trigger.active span:nth-of-type(2) {
  -webkit-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
}

.btn-trigger.active span:nth-of-type(3) {
  opacity: 0;
}

/* ======================================================================
 footer
====================================================================== */
/* ======================================================================
 main
====================================================================== */
.cgss_header {
  position: fixed;
  box-sizing: border-box;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  background-color: #0059b3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 45px 24px 50px;
  height: 90px;
}
@media screen and (max-width: 768px) {
  .cgss_header {
    padding: 10px 4%;
    height: 70px;
  }
}
.cgss_header_logo {
  width: 150px;
}
@media screen and (max-width: 768px) {
  .cgss_header_logo {
    display: block;
    margin: auto 0;
  }
}
.cgss_header_menu_btn {
  display: none;
  position: absolute;
  right: 34px;
  top: 34px;
}
@media screen and (max-width: 1200px) {
  .cgss_header_menu_btn {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .cgss_header_menu_btn {
    right: 15px;
    top: 24px;
  }
}
.cgss_header_menu_list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 1200px) {
  .cgss_header_menu_list {
    position: absolute;
    left: 0;
    top: 70px;
    display: none;
    background-color: #0059b3;
    width: 100%;
    padding: 20px 0;
  }
}
.cgss_header_menu_list_box {
  font-weight: 700;
  transition: all 0.2s ease-in-out;
  margin-left: 50px;
  color: #fff;
  font-size: 18px;
  white-space: nowrap;
}
@media screen and (max-width: 1450px) {
  .cgss_header_menu_list_box {
    font-size: 16px;
    margin-left: 40px;
  }
}
@media screen and (max-width: 1200px) {
  .cgss_header_menu_list_box {
    font-size: 18px;
    display: block;
    margin-left: 0;
    text-align: center;
    padding: 15px 0;
  }
}
.cgss_header_menu_list_box:hover {
  color: #fcff3a;
}
.cgss_header_menu_list_box::after {
  content: "";
  position: relative;
  transition: all 0.2s ease-in-out;
  opacity: 0;
  display: block;
  background: #fcff3a;
  width: 100%;
  height: 2px;
  margin-top: 5px;
  bottom: -5px;
}
@media screen and (max-width: 768px) {
  .cgss_header_menu_list_box::after {
    display: none;
  }
}
.cgss_kv {
  position: relative;
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  .cgss_kv {
    padding-top: 70px;
    margin-top: 0;
  }
}
.cgss_kv_ttl {
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 175px;
}
@media screen and (max-width: 768px) {
  .cgss_kv_ttl {
    padding-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .cgss_kv_ttl img {
    margin: 0 auto;
    width: 250px;
  }
}
.cgss_kv_img img {
  width: 100%;
}
.cgss_catch {
  padding: 80px 0 70px;
  background-color: #5ba2ec;
}
@media screen and (max-width: 768px) {
  .cgss_catch {
    padding: 60px 0 50px;
  }
}
.cgss_catch_ttl {
  font-weight: 700;
  font-size: 52px;
  text-align: center;
  margin-bottom: 60px;
  color: #fcff3a;
}
@media screen and (max-width: 768px) {
  .cgss_catch_ttl {
    font-size: 36px;
    margin-bottom: 40px;
    line-height: 1.2;
  }
}
.cgss_catch_txt {
  color: #fff;
  font-size: 20px;
  line-height: 2;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 768px) {
  .cgss_catch_txt {
    margin-bottom: 30px;
    text-align: left;
  }
}
.cgss_catch_txt .color01 {
  color: #fcff3a;
}
.cgss_catch_head {
  font-size: 20px;
  color: #fcff3a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  border: 2px solid #fff;
  border-radius: 10px;
  padding: 15px 0 14px;
}
.cgss_catch_list {
  display: flex;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .cgss_catch_list {
    flex-direction: column;
  }
}
.cgss_catch_list_flex {
  display: flex;
}
@media screen and (max-width: 768px) {
  .cgss_catch_list_flex {
    flex-direction: column;
  }
}
.cgss_catch_list_group._01 {
  width: 657px;
}
@media screen and (max-width: 768px) {
  .cgss_catch_list_group._01 {
    width: 100%;
  }
}
.cgss_catch_list_group._02 {
  width: 313px;
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  .cgss_catch_list_group._02 {
    width: 100%;
    margin-left: 0;
    margin-top: 30px;
  }
}
.cgss_catch_list_group._02 .cgss_catch_list_item {
  margin-left: 0;
}
.cgss_catch_list_item {
  background-color: #fff;
  padding: 35px 0 0;
  border-radius: 10px;
  display: block;
  width: 313px;
}
@media screen and (max-width: 768px) {
  .cgss_catch_list_item {
    width: 100%;
    padding: 25px 0 0;
  }
}
.cgss_catch_list_item:not(:first-child) {
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  .cgss_catch_list_item:not(:first-child) {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cgss_catch_list_item_ttl {
  font-size: 26px;
  text-align: center;
  color: #007dff;
  margin-bottom: 20px;
  padding: 0 15px;
}
.cgss_catch_list_item_txt {
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
  letter-spacing: 0.01em;
  margin-bottom: 15px;
  padding: 0 15px;
}
.cgss_catch_list_item_img {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .cgss_catch_list_item_img {
    width: 50%;
    margin: 0 auto;
  }
}
.cgss_catch_list_item_btn {
  background-color: #fcff3a;
  color: #007dff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  padding: 13px 0 17px;
  border-radius: 0 0 10px 10px;
  box-shadow: inset 0 -3px rgba(0, 0, 0, 0.3);
  padding-left: 20px;
}
.cgss_catch_list_item_btn img {
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .cgss_catch_list_item_btn img {
    width: 20px;
    height: 20px;
  }
}
.cgss_elementary {
  padding: 80px 0 70px;
}
@media screen and (max-width: 768px) {
  .cgss_elementary {
    padding: 60px 0 50px;
  }
}
.cgss_elementary .inner {
  position: relative;
}
.cgss_elementary_ttl {
  font-weight: 700;
  font-size: 52px;
  text-align: center;
  margin-bottom: 60px;
  color: #007dff;
}
@media screen and (max-width: 768px) {
  .cgss_elementary_ttl {
    font-size: 36px;
    margin-bottom: 40px;
    line-height: 1.2;
  }
}
.cgss_elementary_sub-ttl {
  font-weight: 700;
  font-size: 52px;
  text-align: center;
  margin-bottom: 60px;
  color: #007dff;
}
@media screen and (max-width: 768px) {
  .cgss_elementary_sub-ttl {
    font-size: 36px;
    margin-top: 100px;
    margin-bottom: 40px;
    line-height: 1.2;
    text-align: left;
    position: relative;
  }
}
.cgss_elementary_sub-ttl_img {
  display: none;
}
@media screen and (max-width: 768px) {
  .cgss_elementary_sub-ttl_img {
    display: block;
    position: absolute;
    right: -6%;
    bottom: -6%;
    width: 46%;
  }
}
.cgss_elementary_txt {
  font-size: 20px;
  line-height: 2;
  margin-bottom: 55px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .cgss_elementary_txt {
    text-align-last: left;
  }
}
.cgss_elementary_object-btm {
  display: none;
}
@media screen and (max-width: 768px) {
  .cgss_elementary_object-btm {
    display: block;
    margin: -75px 0 20px;
    position: relative;
    left: 8.5vw;
    width: 86%;
  }
}
.cgss_elementary_img {
  width: 800px;
  margin: 0 auto 30px;
}
@media screen and (max-width: 768px) {
  .cgss_elementary_img {
    width: 100%;
    margin-bottom: 12px;
  }
}
.cgss_elementary_img img {
  width: 100%;
}
.cgss_elementary_asterisk {
  display: none;
}
@media screen and (max-width: 768px) {
  .cgss_elementary_asterisk {
    display: block;
    font-size: 11px;
    line-height: 1.45;
    text-align: center;
    margin-bottom: 50px;
  }
}
.cgss_elementary_btn-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .cgss_elementary_btn-wrap {
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
}
.cgss_elementary_btn {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background-color: #fcff3a;
  color: #004097;
  font-weight: bold;
  width: 252px;
  height: 107px;
  box-shadow: inset 0 -3px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.1em;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .cgss_elementary_btn {
    height: 60px;
    width: 100%;
    padding-left: 15px;
  }
}
.cgss_elementary_btn._tel {
  flex-direction: column;
}
.cgss_elementary_btn:not(:first-child) {
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .cgss_elementary_btn:not(:first-child) {
    margin-left: 0;
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .cgss_elementary_btn:nth-child(n+3) {
    margin-top: 10px;
  }
}
.cgss_elementary_btn_flex {
  display: flex;
}
.cgss_elementary_btn_img {
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .cgss_elementary_btn_img {
    width: 20%;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 768px) {
  .cgss_elementary_btn_img img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .cgss_elementary_btn_img._01 {
    width: 30px;
  }
}
@media screen and (max-width: 768px) {
  .cgss_elementary_btn_img._02 {
    width: 31px;
  }
}
@media screen and (max-width: 768px) {
  .cgss_elementary_btn_img._03 {
    width: 26px;
  }
}
.cgss_elementary_btn_img._tel {
  margin-right: 5px;
}
@media screen and (max-width: 768px) {
  .cgss_elementary_btn_img._tel {
    width: 12%;
  }
}
.cgss_elementary_btn_txt {
  font-size: 20px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .cgss_elementary_btn_txt {
    font-size: 21px;
  }
}
.cgss_elementary_btn_txt._tel {
  font-size: 17px;
  margin-bottom: 6px;
  font-feature-settings: "palt";
  letter-spacing: 0.001em;
}
@media screen and (max-width: 768px) {
  .cgss_elementary_btn_txt._tel {
    font-size: 21px;
  }
}
.cgss_elementary_btn_tel {
  font-size: 28px;
}
@media screen and (max-width: 768px) {
  .cgss_elementary_btn_tel {
    display: none;
  }
}
.cgss_elementary_calendar {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .cgss_elementary_calendar {
    width: 100%;
  }
}
.cgss_elementary_calendar_zoom {
  display: none;
}
@media screen and (max-width: 768px) {
  .cgss_elementary_calendar_zoom {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    cursor: pointer;
  }
}
.cgss_elementary_calendar_zoom_img {
  width: 17px;
}
.cgss_elementary_calendar_zoom_txt {
  font-size: 16px;
  color: #007dff;
}
.cgss_elementary_calendar_modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  width: 100vw;
}
.cgss_elementary_calendar_modal_img-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: auto;
}
.cgss_elementary_calendar_modal_img {
  width: 150vw;
  padding-left: 25vw;
}
.cgss_elementary_calendar_modal_img img {
  width: 150vw;
}
.cgss_elementary_calendar_overlay {
  display: none;
  transition: all 0.2s ease-in-out;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  cursor: pointer;
}
.cgss_elementary_tab {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.cgss_elementary_tab_item {
  width: 310px;
  height: 60px;
  font-size: 22px;
  color: #007dff;
  background-color: #fff;
  border-top: 4px solid #5ba2ec;
  border-right: 4px solid #5ba2ec;
  border-left: 4px solid #5ba2ec;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .cgss_elementary_tab_item {
    font-size: 18px;
    width: calc(33% - 10px);
    height: 50px;
  }
}
.cgss_elementary_tab_item:not(:first-child) {
  margin-left: 5px;
}
.cgss_elementary_tab_item._active {
  height: 80px;
  font-size: 26px;
  border-top: 4px solid #007dff;
  border-right: 4px solid #007dff;
  border-left: 4px solid #007dff;
  color: #fff;
  background-color: #007dff;
}
@media screen and (max-width: 768px) {
  .cgss_elementary_tab_item._active {
    font-size: 22px;
    height: 60px;
  }
}
.cgss_elementary_contents {
  border: 4px solid #007dff;
  border-radius: 10px;
  background-color: #fff;
  padding: 50px;
  display: none;
}
@media screen and (max-width: 768px) {
  .cgss_elementary_contents {
    padding: 20px;
  }
}
.cgss_elementary_contents._active {
  display: block;
}
.cgss_elementary_contents_head {
  background-color: #e6f2fe;
  color: #007dff;
  font-size: 36px;
  height: 113px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .cgss_elementary_contents_head {
    font-size: 36px;
    height: auto;
    margin-bottom: 25px;
    border-radius: 5px;
    padding: 18px;
    line-height: 1.2;
    text-align: center;
  }
}
.cgss_elementary_contents_head_min {
  display: block;
  font-size: 21px;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .cgss_elementary_contents_head_min {
    line-height: 1.4;
  }
}
.cgss_elementary_contents_sub-ttl {
  margin-bottom: 20px;
  text-align: center;
  font-size: 26px;
  color: #007dff;
}
@media screen and (max-width: 768px) {
  .cgss_elementary_contents_sub-ttl {
    margin-bottom: 25px;
  }
}
.cgss_elementary_contents_list_item {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .cgss_elementary_contents_list_item {
    flex-direction: column;
  }
}
.cgss_elementary_contents_list_item:not(:first-child) {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .cgss_elementary_contents_list_item:not(:first-child) {
    margin-top: 15px;
  }
}
.cgss_elementary_contents_list_item_subject {
  background-color: #007dff;
  color: #fff;
  padding: 11px 18px 10px 19px;
  line-height: 1.2;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  border-radius: 10px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .cgss_elementary_contents_list_item_subject {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
    border-radius: 5px;
  }
}
.cgss_elementary_contents_list_item_detail {
  font-size: 20px;
  line-height: 1.7;
  padding-top: 6px;
}
@media screen and (max-width: 768px) {
  .cgss_elementary_contents_list_item_detail {
    padding: 0;
  }
}
.cgss_elementary_contents_list_item_detail a {
  color: #007dff;
  text-decoration: underline;
}
.cgss_elementary_contents_list_item_detail a:hover {
  text-decoration: none;
}
.cgss_elementary_object {
  position: absolute;
}
@media screen and (max-width: 768px) {
  .cgss_elementary_object {
    display: none;
  }
}
.cgss_elementary_object._01 {
  top: 0px;
  left: -304px;
}
.cgss_elementary_object._02 {
  top: 370px;
  right: -327px;
}
.cgss_elementary_object._03 {
  bottom: 733px;
  left: -300px;
}
.cgss_elementary_object._04 {
  bottom: 150px;
  right: -260px;
}
.cgss_consistent {
  padding: 80px 0 70px;
  background-color: #5ba2ec;
}
@media screen and (max-width: 768px) {
  .cgss_consistent {
    padding: 60px 0 50px;
  }
}
.cgss_consistent .inner {
  position: relative;
}
.cgss_consistent_ttl {
  font-weight: 700;
  font-size: 52px;
  text-align: center;
  margin-bottom: 60px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .cgss_consistent_ttl {
    font-size: 36px;
    margin-bottom: 40px;
    line-height: 1.2;
  }
}
.cgss_consistent_sub-ttl {
  font-weight: 700;
  font-size: 52px;
  text-align: center;
  margin-bottom: 60px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .cgss_consistent_sub-ttl {
    font-size: 36px;
    margin-top: 100px;
    margin-bottom: 40px;
    line-height: 1.2;
    text-align: left;
    position: relative;
  }
}
.cgss_consistent_sub-ttl_img {
  display: none;
}
@media screen and (max-width: 768px) {
  .cgss_consistent_sub-ttl_img {
    display: block;
    position: absolute;
    right: -5%;
    bottom: 10%;
    width: 30%;
  }
}
.cgss_consistent_txt {
  font-size: 20px;
  line-height: 2;
  margin-bottom: 55px;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .cgss_consistent_txt {
    text-align-last: left;
  }
}
.cgss_consistent_list-box {
  border: 4px solid #fcff3a;
  border-radius: 10px;
  padding: 50px 20px 50px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 100px 0 50px;
}
@media screen and (max-width: 768px) {
  .cgss_consistent_list-box {
    padding: 40px 4% 4%;
    margin: 50px 0 30px;
  }
}
.cgss_consistent_list-box_ttl {
  padding: 23px;
  font-size: 40px;
  text-align: center;
  color: #fcff3a;
  background-color: #5ba2ec;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .cgss_consistent_list-box_ttl {
    font-size: 32px;
    white-space: nowrap;
    top: -44px;
  }
}
.cgss_consistent_list-box_desc {
  font-size: 24px;
  line-height: 1.8;
  color: #fff;
  width: 600px;
  margin: 0 0 30px;
}
@media screen and (max-width: 768px) {
  .cgss_consistent_list-box_desc {
    font-size: 22px;
    width: 100%;
  }
}
.cgss_consistent_list-box_img {
  max-width: 800px;
  margin: 0 auto;
}
.cgss_consistent_list-box_img img {
  max-width: 100%;
  height: auto;
}

.cgss_consistent_object-btm {
  display: none;
}
@media screen and (max-width: 768px) {
  .cgss_consistent_object-btm {
    display: block;
    margin: -60px 0 20px;
    position: relative;
    left: 8.5vw;
    width: 80%;
  }
}

.cgss_consistent_img {
  width: 800px;
  margin: 0 auto 30px;
}
.cgss_consistent_img img {
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .cgss_consistent_img {
    width: 100%;
    margin-bottom: 0;
    font-size: 11px;
    text-align: center;
    line-height: 1.45;
  }
  .cgss_consistent_img img {
    margin-bottom: 12px;
  }
}
.cgss_consistent_img img {
  width: 100%;
}
.cgss_consistent_asterisk {
  display: none;
}
@media screen and (max-width: 768px) {
  .cgss_consistent_asterisk {
    display: block;
    font-size: 11px;
    line-height: 1.45;
    text-align: center;
    margin-bottom: 50px;
  }
}
.cgss_consistent_btn-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .cgss_consistent_btn-wrap {
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
}
.cgss_consistent_btn {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background-color: #fcff3a;
  color: #004097;
  font-weight: bold;
  width: 252px;
  height: 107px;
  box-shadow: inset 0 -3px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.1em;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .cgss_consistent_btn {
    height: 60px;
    width: 100%;
    padding-left: 15px;
  }
}
.cgss_consistent_btn._tel {
  flex-direction: column;
}
.cgss_consistent_btn:not(:first-child) {
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .cgss_consistent_btn:not(:first-child) {
    margin-left: 0;
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .cgss_consistent_btn:nth-child(n+3) {
    margin-top: 10px;
  }
}
.cgss_consistent_btn_flex {
  display: flex;
}
.cgss_consistent_btn_img {
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .cgss_consistent_btn_img {
    width: 20%;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 768px) {
  .cgss_consistent_btn_img img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .cgss_consistent_btn_img._01 {
    width: 30px;
  }
}
@media screen and (max-width: 768px) {
  .cgss_consistent_btn_img._02 {
    width: 31px;
  }
}
@media screen and (max-width: 768px) {
  .cgss_consistent_btn_img._03 {
    width: 26px;
  }
}
.cgss_consistent_btn_img._tel {
  margin-right: 5px;
}
@media screen and (max-width: 768px) {
  .cgss_consistent_btn_img._tel {
    width: 12%;
  }
}
.cgss_consistent_btn_txt {
  font-size: 20px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .cgss_consistent_btn_txt {
    font-size: 21px;
  }
}
.cgss_consistent_btn_txt._tel {
  font-size: 17px;
  margin-bottom: 6px;
  font-feature-settings: "palt";
  letter-spacing: 0.001em;
}
@media screen and (max-width: 768px) {
  .cgss_consistent_btn_txt._tel {
    font-size: 21px;
  }
}
.cgss_consistent_btn_tel {
  font-size: 28px;
}
@media screen and (max-width: 768px) {
  .cgss_consistent_btn_tel {
    display: none;
  }
}
.cgss_consistent_calendar {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .cgss_consistent_calendar {
    width: 100%;
  }
}
.cgss_consistent_calendar_zoom {
  display: none;
}
@media screen and (max-width: 768px) {
  .cgss_consistent_calendar_zoom {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    cursor: pointer;
  }
}
.cgss_consistent_calendar_zoom_img {
  width: 17px;
}
.cgss_consistent_calendar_zoom_txt {
  font-size: 16px;
  color: #fff;
}
.cgss_consistent_calendar_modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  width: 100vw;
}
.cgss_consistent_calendar_modal_img-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: auto;
}
.cgss_consistent_calendar_modal_img {
  width: 150vw;
  padding-left: 25vw;
}
.cgss_consistent_calendar_modal_img img {
  width: 150vw;
}
.cgss_consistent_calendar_overlay {
  display: none;
  transition: all 0.2s ease-in-out;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  cursor: pointer;
}
.cgss_consistent_tab {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.cgss_consistent_tab_item {
  width: 231px;
  height: 60px;
  font-size: 22px;
  color: #007dff;
  background-color: #fff;
  border-top: 4px solid #5ba2ec;
  border-right: 4px solid #5ba2ec;
  border-left: 4px solid #5ba2ec;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .cgss_consistent_tab_item {
    font-size: 14px;
    width: calc(30% - 15px);
    height: 50px;
    line-height: 1.2;
  }
}
.cgss_consistent_tab_item:not(:first-child) {
  margin-left: 0px;
}
.cgss_consistent_tab_item._active {
  height: 80px;
  font-size: 26px;
  border-top: 4px solid #007dff;
  border-right: 4px solid #007dff;
  border-left: 4px solid #007dff;
  color: #fff;
  background-color: #007dff;
}
@media screen and (max-width: 768px) {
  .cgss_consistent_tab_item._active {
    font-size: 16px;
    height: 60px;
  }
}
.cgss_consistent_contents {
  border: 4px solid #007dff;
  border-radius: 10px;
  background-color: #fff;
  padding: 50px;
  display: none;
}
@media screen and (max-width: 768px) {
  .cgss_consistent_contents {
    padding: 20px;
  }
}
.cgss_consistent_contents._active {
  display: block;
}
.cgss_consistent_contents_head {
  background-color: #e6f2fe;
  color: #007dff;
  font-size: 36px;
  height: 113px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .cgss_consistent_contents_head {
    font-size: 36px;
    height: auto;
    margin-bottom: 25px;
    border-radius: 5px;
    padding: 18px;
    line-height: 1.2;
    text-align: center;
    flex-direction: column;
  }
}
.cgss_consistent_contents_head_min {
  display: block;
  font-size: 21px;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .cgss_consistent_contents_head_min {
    line-height: 1.4;
  }
}
.cgss_consistent_contents_group {
  position: relative;
}
@media screen and (max-width: 768px) {
  .cgss_consistent_contents_group:nth-child(n+2) {
    margin-top: 40px;
  }
}
.cgss_consistent_contents_group:nth-child(n+2)::before {
  content: "+";
  position: relative;
  top: 14px;
  margin: 0 10px;
}
@media screen and (max-width: 768px) {
  .cgss_consistent_contents_group:nth-child(n+2)::before {
    position: absolute;
    left: 50%;
    top: -45px;
    transform: translateX(-50%);
  }
}
.cgss_consistent_contents_sub-ttl {
  margin: 30px 0 20px;
  text-align: center;
  font-size: 26px;
  color: #007dff;
}
@media screen and (max-width: 768px) {
  .cgss_consistent_contents_sub-ttl {
    margin: 35px 0 25px;
  }
}
.cgss_consistent_contents_list_item {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .cgss_consistent_contents_list_item {
    flex-direction: column;
  }
}
.cgss_consistent_contents_list_item:not(:first-child) {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .cgss_consistent_contents_list_item:not(:first-child) {
    margin-top: 15px;
  }
}
.cgss_consistent_contents_list_item_subject {
  background-color: #007dff;
  color: #fff;
  padding: 11px 18px 10px 19px;
  line-height: 1.2;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  border-radius: 10px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .cgss_consistent_contents_list_item_subject {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
    border-radius: 5px;
  }
}
.cgss_consistent_contents_list_item_detail {
  font-size: 20px;
  line-height: 1.7;
  padding-top: 6px;
}
@media screen and (max-width: 768px) {
  .cgss_consistent_contents_list_item_detail {
    padding: 0;
  }
}
.cgss_consistent_contents_list_item_detail a {
  color: #007dff;
  text-decoration: underline;
}
.cgss_consistent_contents_list_item_detail a:hover {
  text-decoration: none;
}
.cgss_consistent_object {
  position: absolute;
}
@media screen and (max-width: 768px) {
  .cgss_consistent_object {
    display: none;
  }
}
.cgss_consistent_object._01 {
  top: 210px;
  right: -294px;
}
.cgss_consistent_object._02 {
  top: 690px;
  left: -280px;
}
.cgss_consistent_object._03 {
  bottom: 615px;
  right: -240px;
}
.cgss_consistent_object._04 {
  bottom: 120px;
  left: -270px;
}
.cgss_middle {
  padding: 80px 0 70px;
}
@media screen and (max-width: 768px) {
  .cgss_middle {
    padding: 60px 0 50px;
  }
}
.cgss_middle .inner {
  position: relative;
}
.cgss_middle_ttl {
  font-weight: 700;
  font-size: 52px;
  text-align: center;
  margin-bottom: 60px;
  color: #007dff;
}
@media screen and (max-width: 768px) {
  .cgss_middle_ttl {
    font-size: 36px;
    margin-bottom: 40px;
    line-height: 1.2;
  }
}
.cgss_middle_sub-ttl {
  font-weight: 700;
  font-size: 52px;
  text-align: center;
  margin-bottom: 60px;
  color: #007dff;
}
@media screen and (max-width: 768px) {
  .cgss_middle_sub-ttl {
    font-size: 36px;
    margin-top: 100px;
    margin-bottom: 40px;
    line-height: 1.2;
    text-align: left;
    position: relative;
  }
}
.cgss_middle_sub-ttl_img {
  display: none;
}
@media screen and (max-width: 768px) {
  .cgss_middle_sub-ttl_img {
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 30%;
  }
}
.cgss_middle_txt {
  font-size: 20px;
  line-height: 2;
  margin-bottom: 55px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .cgss_middle_txt {
    text-align-last: left;
  }
}
.cgss_middle_object-btm {
  display: none;
}
@media screen and (max-width: 768px) {
  .cgss_middle_object-btm {
    display: block;
    margin: -60px 0 20px;
    position: relative;
    left: 9vw;
    width: 92%;
  }
}
.cgss_middle_img {
  width: 800px;
  margin: 0 auto 30px;
}
.cgss_middle_img img {
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .cgss_middle_img {
    width: 100%;
    margin-bottom: 0;
    font-size: 11px;
    line-height: 1.45;
    text-align: center;
  }
  .cgss_middle_img img {
    margin-bottom: 12px;
  }
}
.cgss_middle_img img {
  width: 100%;
}
.cgss_middle_asterisk {
  display: none;
}
@media screen and (max-width: 768px) {
  .cgss_middle_asterisk {
    display: block;
    font-size: 11px;
    line-height: 1.45;
    text-align: center;
    margin-bottom: 50px;
  }
}
.cgss_middle_btn-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .cgss_middle_btn-wrap {
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
}
.cgss_middle_btn {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background-color: #fcff3a;
  color: #004097;
  font-weight: bold;
  width: 252px;
  height: 107px;
  box-shadow: inset 0 -3px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.1em;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .cgss_middle_btn {
    height: 60px;
    width: 100%;
    padding-left: 15px;
  }
}
.cgss_middle_btn._tel {
  flex-direction: column;
}
.cgss_middle_btn:not(:first-child) {
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .cgss_middle_btn:not(:first-child) {
    margin-left: 0;
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .cgss_middle_btn:nth-child(n+3) {
    margin-top: 10px;
  }
}
.cgss_middle_btn_flex {
  display: flex;
}
.cgss_middle_btn_img {
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .cgss_middle_btn_img {
    width: 20%;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 768px) {
  .cgss_middle_btn_img img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .cgss_middle_btn_img._01 {
    width: 30px;
  }
}
@media screen and (max-width: 768px) {
  .cgss_middle_btn_img._02 {
    width: 31px;
  }
}
@media screen and (max-width: 768px) {
  .cgss_middle_btn_img._03 {
    width: 26px;
  }
}
.cgss_middle_btn_img._tel {
  margin-right: 5px;
}
@media screen and (max-width: 768px) {
  .cgss_middle_btn_img._tel {
    width: 12%;
  }
}
.cgss_middle_btn_txt {
  font-size: 20px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .cgss_middle_btn_txt {
    font-size: 21px;
  }
}
.cgss_middle_btn_txt._tel {
  font-size: 17px;
  margin-bottom: 6px;
  font-feature-settings: "palt";
  letter-spacing: 0.001em;
}
@media screen and (max-width: 768px) {
  .cgss_middle_btn_txt._tel {
    font-size: 21px;
  }
}
.cgss_middle_btn_tel {
  font-size: 28px;
}
@media screen and (max-width: 768px) {
  .cgss_middle_btn_tel {
    display: none;
  }
}
.cgss_middle_calendar {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .cgss_middle_calendar {
    width: 100%;
  }
}
.cgss_middle_calendar_zoom {
  display: none;
}
@media screen and (max-width: 768px) {
  .cgss_middle_calendar_zoom {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    cursor: pointer;
  }
}
.cgss_middle_calendar_zoom_img {
  width: 17px;
}
.cgss_middle_calendar_zoom_txt {
  font-size: 16px;
  color: #007dff;
}
.cgss_middle_calendar_modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  width: 100vw;
}
.cgss_middle_calendar_modal_img-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: auto;
}
.cgss_middle_calendar_modal_img {
  width: 150vw;
  padding-left: 25vw;
}
.cgss_middle_calendar_modal_img img {
  width: 150vw;
}
.cgss_middle_calendar_overlay {
  display: none;
  transition: all 0.2s ease-in-out;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  cursor: pointer;
}
.cgss_middle_tab {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.cgss_middle_tab_item {
  width: 310px;
  height: 60px;
  font-size: 22px;
  color: #007dff;
  background-color: #fff;
  border-top: 4px solid #5ba2ec;
  border-right: 4px solid #5ba2ec;
  border-left: 4px solid #5ba2ec;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .cgss_middle_tab_item {
    font-size: 18px;
    width: calc(33% - 10px);
    height: 50px;
  }
}
.cgss_middle_tab_item:not(:first-child) {
  margin-left: 5px;
}
.cgss_middle_tab_item._active {
  height: 80px;
  font-size: 26px;
  border-top: 4px solid #007dff;
  border-right: 4px solid #007dff;
  border-left: 4px solid #007dff;
  color: #fff;
  background-color: #007dff;
}
@media screen and (max-width: 768px) {
  .cgss_middle_tab_item._active {
    font-size: 22px;
    height: 60px;
  }
}
.cgss_middle_contents {
  border: 4px solid #007dff;
  border-radius: 10px;
  background-color: #fff;
  padding: 50px;
  display: none;
}
@media screen and (max-width: 768px) {
  .cgss_middle_contents {
    padding: 20px;
  }
}
.cgss_middle_contents._active {
  display: block;
}
.cgss_middle_contents_head {
  background-color: #e6f2fe;
  color: #007dff;
  font-size: 36px;
  height: 113px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .cgss_middle_contents_head {
    display: block;
    font-size: 32px;
    height: auto;
    margin-bottom: 25px;
    border-radius: 5px;
    padding: 18px;
    line-height: 1.2;
    text-align: center;
  }
}
.cgss_middle_contents_sub-ttl {
  margin-bottom: 20px;
  text-align: center;
  font-size: 26px;
  color: #007dff;
}
@media screen and (max-width: 768px) {
  .cgss_middle_contents_sub-ttl {
    margin-bottom: 25px;
  }
}
.cgss_middle_contents_list_item {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .cgss_middle_contents_list_item {
    flex-direction: column;
  }
}
.cgss_middle_contents_list_item:not(:first-child) {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .cgss_middle_contents_list_item:not(:first-child) {
    margin-top: 15px;
  }
}
.cgss_middle_contents_list_item_subject {
  background-color: #007dff;
  color: #fff;
  padding: 11px 18px 10px 19px;
  line-height: 1.2;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  border-radius: 10px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .cgss_middle_contents_list_item_subject {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
    border-radius: 5px;
  }
}
.cgss_middle_contents_list_item_detail {
  font-size: 20px;
  line-height: 1.7;
  padding-top: 6px;
}
@media screen and (max-width: 768px) {
  .cgss_middle_contents_list_item_detail {
    padding: 0;
  }
}
.cgss_middle_object {
  position: absolute;
}
@media screen and (max-width: 768px) {
  .cgss_middle_object {
    display: none;
  }
}
.cgss_middle_object._01 {
  top: 38px;
  left: -304px;
}
.cgss_middle_object._02 {
  top: 385px;
  right: -327px;
}
.cgss_middle_object._03 {
  bottom: 573px;
  left: -260px;
}
.cgss_middle_object._04 {
  bottom: -10px;
  right: -230px;
}
.cgss_voice {
  padding: 80px 0 70px;
  background-color: #007dff;
}
@media screen and (max-width: 768px) {
  .cgss_voice {
    padding: 60px 0 50px;
  }
}
.cgss_voice_ttl {
  font-weight: 700;
  font-size: 52px;
  text-align: center;
  margin-bottom: 60px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .cgss_voice_ttl {
    font-size: 36px;
    margin-bottom: 40px;
  }
}
.cgss_voice_list_item {
  border: 2px solid #fff;
  border-radius: 10px;
  padding: 40px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .cgss_voice_list_item {
    width: 100%;
    padding: 30px 20px 35px;
    flex-direction: column;
  }
}
.cgss_voice_list_item:not(:first-child) {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .cgss_voice_list_item:not(:first-child) {
    margin-top: 20px;
  }
}
.cgss_voice_list_item_img {
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .cgss_voice_list_item_img {
    width: 60%;
    margin: 0 auto 20px;
  }
}
.cgss_voice_list_item_txt {
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  .cgss_voice_list_item_txt {
    margin-left: 0;
    margin-top: 24px;
  }
}
.cgss_voice_list_item_ttl {
  color: #fff;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.cgss_voice_list_item_desc {
  color: #fff;
  font-size: 15px;
  line-height: 1.8;
}
.cgss_flow {
  padding: 80px 0 70px;
  background: #5ba2ec;
}
@media screen and (max-width: 768px) {
  .cgss_flow {
    padding: 60px 0 50px;
  }
}
.cgss_flow_ttl {
  font-weight: 700;
  font-size: 52px;
  text-align: center;
  margin-bottom: 60px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .cgss_flow_ttl {
    font-size: 36px;
    margin-bottom: 40px;
  }
}
.cgss_flow_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.cgss_flow_list::before {
  content: "";
  display: block;
  width: 10px;
  height: 90%;
  background-color: #007dff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.cgss_flow_list_item {
  width: 800px;
  border-radius: 10px;
  background-color: #fff;
  display: flex;
  align-items: center;
  border: 4px solid #007dff;
  padding: 26px 29px 30px 42px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .cgss_flow_list_item {
    width: 100%;
    padding: 25px;
    flex-direction: column;
  }
}
.cgss_flow_list_item:not(:first-child) {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .cgss_flow_list_item:not(:first-child) {
    margin-top: 25px;
  }
}
.cgss_flow_list_item_img {
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  .cgss_flow_list_item_img {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.cgss_flow_list_item_ttl {
  display: flex;
  align-items: center;
  font-size: 20px;
  color: #007dff;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .cgss_flow_list_item_ttl {
    font-size: 18px;
  }
}
.cgss_flow_list_item_ttl_num {
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  background-color: #007dff;
  color: #fff;
  padding: 0 0 2px 1px;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .cgss_flow_list_item_ttl_num {
    font-size: 16px;
  }
}
.cgss_flow_list_item_desc {
  font-size: 15px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .cgss_flow_list_item_desc {
    font-size: 14px;
  }
}
.cgss_flow_list_item_desc_link {
  color: #007dff;
  text-decoration: underline;
}
.cgss_flow_list_item_desc_link:hover {
  text-decoration: none;
}
.cgss_faq {
  padding: 80px 0 70px;
}
@media screen and (max-width: 768px) {
  .cgss_faq {
    padding: 60px 0 50px;
  }
}
.cgss_faq_ttl {
  font-weight: 700;
  font-size: 52px;
  text-align: center;
  margin-bottom: 60px;
  color: #007dff;
}
@media screen and (max-width: 768px) {
  .cgss_faq_ttl {
    font-size: 36px;
    margin-bottom: 40px;
  }
}
.cgss_faq_list_item {
  border-radius: 10px;
  border: 4px solid #007dff;
}
.cgss_faq_list_item:not(:first-child) {
  margin-top: 30px;
}
.cgss_faq_list_item_ttl {
  color: #fff;
  background-color: #007dff;
  height: 50px;
  font-size: 20px;
  padding-left: 20px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .cgss_faq_list_item_ttl {
    font-size: 18px;
    height: auto;
    line-height: 1.5;
    padding: 10px 15px;
  }
}
.cgss_faq_list_item_ttl_q {
  margin-right: 12px;
}
.cgss_faq_list_item_txt {
  padding: 30px;
  font-size: 15px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .cgss_faq_list_item_txt {
    padding: 15px;
    font-size: 14px;
  }
}
.cgss_building {
  background-color: #007dff;
  padding: 80px 0 150px;
}
@media screen and (max-width: 768px) {
  .cgss_building {
    padding: 60px 0 60px;
  }
}
.cgss_building_ttl {
  font-weight: 700;
  font-size: 52px;
  text-align: center;
  margin-bottom: 60px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .cgss_building_ttl {
    font-size: 36px;
    margin-bottom: 40px;
  }
}
.cgss_building_tab {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-bottom: 2px solid #fff;
}
@media screen and (max-width: 768px) {
  .cgss_building_tab {
    width: 100vw;
    position: relative;
    right: 4vw;
  }
}
.cgss_building_tab_item {
  cursor: pointer;
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 231px;
  height: 50px;
  border-radius: 10px 10px 0 0;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .cgss_building_tab_item {
    font-size: 14px;
    height: 50px;
    text-align: center;
    line-height: 1.4;
  }
}
.cgss_building_tab_item:not(:first-child) {
  margin-left: 5px;
}
@media screen and (max-width: 768px) {
  .cgss_building_tab_item:first-child {
    margin-left: 10px;
  }
}
@media screen and (max-width: 768px) {
  .cgss_building_tab_item:last-child {
    margin-right: 10px;
  }
}
.cgss_building_tab_item._active {
  background: #fff;
  color: #007dff;
  font-size: 26px;
  height: 70px;
}
@media screen and (max-width: 768px) {
  .cgss_building_tab_item._active {
    font-size: 18px;
    height: 60px;
  }
}
.cgss_building_contents {
  display: none;
}
.cgss_building_contents._active {
  display: block;
}
.cgss_building_contents_area_ttl {
  color: #007dff;
  background-color: #fff;
  font-size: 26px;
  padding: 25px;
  margin-top: 30px;
  border-radius: 10px 10px 10px 10px;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 768px) {
  .cgss_building_contents_area_ttl {
    font-size: 18px;
    margin-top: 15px;
    padding: 20px;
  }
}
.cgss_building_contents_area_ttl._active {
  border-radius: 10px 10px 0 0;
}
.cgss_building_contents_area_ttl._active:after {
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  top: calc(50% - 1px);
  right: 33px;
}
@media screen and (max-width: 768px) {
  .cgss_building_contents_area_ttl._active:after {
    right: 21px;
    top: calc(50% - 0px);
  }
}
.cgss_building_contents_area_ttl::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background-color: #007dff;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .cgss_building_contents_area_ttl::before {
    width: 20px;
    height: 20px;
    right: 15px;
  }
}
.cgss_building_contents_area_ttl:after {
  content: "";
  display: block;
  height: 11.2583302492px;
  width: 13px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: #fff;
  position: absolute;
  top: calc(50% + 1px);
  right: 33px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .cgss_building_contents_area_ttl:after {
    height: 7.7942286341px;
    width: 9px;
    right: 21px;
  }
}
.cgss_building_contents_area_group {
  display: none;
}
.cgss_building_contents_item {
  display: flex;
  align-items: center;
  color: #fff;
  border-bottom: 1px solid #fff;
  padding: 30px 0 30px 30px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .cgss_building_contents_item {
    padding: 30px 0;
    flex-direction: column;
    align-items: flex-start;
  }
}
.cgss_building_contents_item_ttl {
  font-size: 18px;
  width: 270px;
  padding-right: 40px;
  flex-shrink: 0;
}
.cgss_building_contents_item_ttl a {
  color: #FFF;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .cgss_building_contents_item_ttl {
    padding-right: 0;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.cgss_building_contents_item_zip {
  width: 396px;
  font-size: 15px;
  line-height: 1.5;
  padding-right: 30px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .cgss_building_contents_item_zip {
    width: auto;
    padding-right: 0;
    margin-bottom: 20px;
  }
}
.cgss_building_contents_item_zip a{
  color: #fff;
  text-decoration: underline;
}
.cgss_building_contents_item_tags {
  display: flex;
  width: 300px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .cgss_building_contents_item_tags {
    width: 100%;
  }
}
.cgss_building_contents_item_tag {
  color: #007dff;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px 8px 15px;
  font-size: 15px;
  border-radius: 5px;
}
.cgss_building_contents_item_tag:not(:first-child) {
  margin-left: 5px;
}
.cgss_footer_top {
  background: no-repeat center center/cover;
  background-image: url(../img/footer_bg.png);
  width: 100%;
  height: 448px;
  padding: 70px 0 0;
}
@media screen and (max-width: 768px) {
  .cgss_footer_top {
    background: no-repeat center center/100% 100%;
    background-image: url(../img/footer_bg_sp.png);
    background-size: cover;
    height: auto;
    padding: 56px 0 22px;
  }
}
.cgss_footer_top_txt {
  font-size: 20px;
  font-weight: bold;
  line-height: 2;
  color: #fff;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .cgss_footer_top_txt {
    font-size: 16px;
    text-align: center;
    white-space: nowrap;
  }
}
.cgss_footer_top_img {
  position: absolute;
  z-index: 2;
  top: -204px;
  right: -202px;
  width: 773px;
}
@media screen and (max-width: 768px) {
  .cgss_footer_top_img {
    position: relative;
    width: 110vw;
    top: 0;
    right: 8.5vw;
  }
}
.cgss_footer_top_img img {
  width: 100%;
}
.cgss_footer_top_btn-wrap {
  display: flex;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .cgss_footer_top_btn-wrap {
    flex-wrap: wrap;
    margin-top: 0;
  }
}
.cgss_footer_top_btn {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background-color: #fcff3a;
  color: #004097;
  font-weight: bold;
  width: 235px;
  height: 100px;
  box-shadow: inset 0 -3px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.1em;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .cgss_footer_top_btn {
    height: 60px;
    width: 100%;
    padding-left: 15px;
  }
}
.cgss_footer_top_btn._tel {
  flex-direction: column;
}
.cgss_footer_top_btn:not(:first-child) {
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .cgss_footer_top_btn:not(:first-child) {
    margin-left: 0;
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .cgss_footer_top_btn:nth-child(n+3) {
    margin-top: 10px;
  }
}
.cgss_footer_top_btn_flex {
  display: flex;
}
.cgss_footer_top_btn_img {
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .cgss_footer_top_btn_img {
    width: 20%;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 768px) {
  .cgss_footer_top_btn_img img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .cgss_footer_top_btn_img._01 {
    width: 30px;
  }
}
@media screen and (max-width: 768px) {
  .cgss_footer_top_btn_img._02 {
    width: 31px;
  }
}
@media screen and (max-width: 768px) {
  .cgss_footer_top_btn_img._03 {
    width: 26px;
  }
}
.cgss_footer_top_btn_img._tel {
  margin-right: 5px;
}
@media screen and (max-width: 768px) {
  .cgss_footer_top_btn_img._tel {
    width: 12%;
  }
}
.cgss_footer_top_btn_txt {
  font-size: 20px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .cgss_footer_top_btn_txt {
    font-size: 21px;
  }
}
.cgss_footer_top_btn_txt._tel {
  font-size: 17px;
  margin-bottom: 6px;
  font-feature-settings: "palt";
  letter-spacing: 0.001em;
}
@media screen and (max-width: 768px) {
  .cgss_footer_top_btn_txt._tel {
    font-size: 21px;
  }
}
.cgss_footer_top_btn_tel {
  font-size: 28px;
}
@media screen and (max-width: 768px) {
  .cgss_footer_top_btn_tel {
    display: none;
  }
}
.cgss_footer_top_supplement {
  font-size: 14px;
  margin-top: 28px;
  color: #2d2d2d;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .cgss_footer_top_supplement {
    font-size: 14px;
    font-feature-settings: "palt";
    letter-spacing: 0.001em;
    line-height: 1.5;
  }
}
.cgss_footer_btm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 80px 23px;
}
@media screen and (max-width: 768px) {
  .cgss_footer_btm {
    display: block;
    padding: 20px 0;
  }
}
@media screen and (max-width: 768px) {
  .cgss_footer_logo {
    display: block;
    width: 40%;
    margin: 0 auto 2.5%;
  }
}
.cgss_footer_copy {
  color: #004097;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: normal;
}
@media screen and (max-width: 768px) {
  .cgss_footer_copy {
    text-align: center;
  }
}
.cgss_fixed {
  display: none;
  position: fixed;
  width: 100vw;
  height: auto;
  bottom: 0;
  left: 0;
  z-index: 888;
  padding: 0;
  opacity: 1;
  transition: opacity 0.5s ease; /* フェードの速度を調整 */
}
@media screen and (max-width: 768px) {
  .cgss_fixed {
    display: block;
  }
}
.cgss_fixed_btn-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .cgss_fixed_btn-wrap {
    margin-bottom: 0;
  }
}
.cgss_fixed_btn {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background-color: #fcff3a;
  color: #004097;
  font-weight: bold;
  width: 252px;
  height: 107px;
  box-shadow: inset 0 -3px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.1em;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .cgss_fixed_btn {
    border-radius: 0;
    height: 56px;
    width: 100%;
    padding-left: 0;
  }
}
.cgss_fixed_btn:not(:first-child) {
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .cgss_fixed_btn:not(:first-child) {
    margin-left: 0;
    border-left: 1px solid #004097;
  }
}
.cgss_fixed_btn_flex {
  display: flex;
}
.cgss_fixed_btn_img {
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .cgss_fixed_btn_img {
    width: 25px;
    flex-shrink: 0;
    margin-right: 5px;
  }
}
@media screen and (max-width: 768px) {
  .cgss_fixed_btn_img img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .cgss_fixed_btn_img._01 {
    width: 25px;
  }
}
@media screen and (max-width: 768px) {
  .cgss_fixed_btn_img._02 {
    width: 25px;
  }
}
@media screen and (max-width: 768px) {
  .cgss_fixed_btn_img._03 {
    width: 25px;
  }
}
.cgss_fixed_btn_img._tel {
  margin-right: 5px;
}
@media screen and (max-width: 768px) {
  .cgss_fixed_btn_img._tel {
    width: 25px;
  }
}
.cgss_fixed_btn_txt {
  font-size: 20px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .cgss_fixed_btn_txt {
    font-size: 18px;
    line-height: 1.2;
  }
}
.cgss_fixed_btn_txt._tel {
  font-size: 17px;
  margin-bottom: 6px;
  font-feature-settings: "palt";
  letter-spacing: 0.001em;
}
@media screen and (max-width: 768px) {
  .cgss_fixed_btn_txt._tel {
    font-size: 18px;
    margin-bottom: 0;
  }
}
.cgss_fixed_btn_tel {
  font-size: 28px;
}
@media screen and (max-width: 768px) {
  .cgss_fixed_btn_tel {
    display: none;
  }
}
.cgss_fixed.hide {
  opacity: 0;
}
.cgss_fixed.show {
  opacity: 1;
}
