/* ///////////////////////////////////////////////////////////

色設定追加

//////////////////////////////////////////////////////////// */
:root {
  --main-orange: #f78d43;
  --line-green: #2DB212;
  --grad-orange: linear-gradient(91.82deg, #fbad76 9.8%, #fa9b58 88.43%);
  --grad-green: linear-gradient(91.82deg, #63db4b 9.8%, #3acb1c 88.43%);
}

/* ///////////////////////////////////////////////////////////

header

//////////////////////////////////////////////////////////// */
.global_nav_upper{
  column-gap: 10px;
}
.global_nav_upper .global_nav_tel,
.global_nav_upper .global_nav_diag,
  .global_nav_upper .global_nav_inquiry{
    font-size: 16px;
    /* max-width: 280px;
    width: 40%; */
    padding: 0 40px;
    justify-content: center;
        flex: 1;
    min-width: 0;
  }
  .global_nav_upper .global_nav_tel{
border-radius: 5px;
border: 2px solid var(--main-blue);
line-height: 1.1;
height: 100%;
}
  .global_nav_tel span {
  white-space: nowrap;
}
.global_nav_upper .global_nav_tel span:nth-of-type(1) {
    font-size: 22px;
}
.global_nav_upper .global_nav_diag {
  color: var(--main-white);
  font-weight: 700;
  background: var(--main-orange);
  /* font-size: 20px; */
  height: 100%;
  display: flex;
  align-items: center;
  border-radius: 5px;
  z-index: 1;
  position: relative;
}

.global_nav_upper .global_nav_diag::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--grad-orange);
  transition: opacity .4s ease;
  opacity: 0;
  z-index: -1;
  border-radius: 5px;
}
.global_nav_diag span {
  white-space: nowrap;
}
.global_nav_upper .global_nav_diag span::before {
  display: inline-block;
  margin-right: 5px;
  content: "";
  width: 22px;
  height: 22px;
  background: url(../img/icon_diag.png) no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-bottom: 2px;
}

@media (any-hover: hover) {
  .global_nav_upper .global_nav_diag:hover::before {
    opacity: 1;
  }
}

@media screen and (max-width:1100px) {
  .global_nav_upper .global_nav_tel,
   .global_nav_upper .global_nav_diag,
  .global_nav_upper .global_nav_inquiry{
    padding: 0 2.8vw;
  }
    .global_nav_upper .global_nav_tel span:nth-of-type(1) {
    font-size: 2vw;
}
  .global_nav_upper .global_nav_diag,
  .global_nav_upper .global_nav_inquiry {
    font-size: 1.4vw;
  }
}

/* ///////////////////////////////////////////////////////////

learning/intetestlimit

//////////////////////////////////////////////////////////// */
/* 202604追記  FV下のCTA */
.cta_fv_area {
  overflow: hidden;
}

.cta_fv {
  background-color: var(--main-blue);
  background-image: radial-gradient(circle, #0a59cc 21%, transparent 22%);
  background-size: 12px 12px;
}

.cta_fv_wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
}

.cta_fv_info {
  padding: 50px 0;
  font-weight: 700;
  color: var(--main-white);
  font-size: 20px;
  text-align: center;
}

.cta_fv_catch {
  font-size: 32px;
  margin-bottom: 5px;
  line-height: 1.2;
}

.cta_fv_catch p {
  margin-top: 0;
}

.cta_fv_catch .bg::before,
.cta_fv_catch .bg::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1.2em;
  background-color: #fff;
  vertical-align: middle;
}

.cta_fv_catch .bg::before {
  transform: rotate(-20deg);
  margin-right: 0.5em;
}

.cta_fv_catch .bg::after {
  transform: rotate(20deg);
  margin-left: 0.5em;
}

.cta_fv_catch .sml {
  font-size: 20px;
}

.cta_fv_link_wrap {
  max-width: 90%;
  margin: auto;
}

.cta_fv_link_top {
  margin-top: 40px;
  margin-bottom: 30px;
}

.cta_fv_link_bottom {
  display: flex;
  gap: 20px;
}

.cta_fv_link {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
  height: 100px;
  background: var(--main-white);
  color: var(--main-blue) !important;
  padding: 1.4rem 0;
  border-radius: 5px;
  position: relative;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  overflow: hidden;
  transition: all .4s ease;
  z-index: 1;
}

.cta_fv_link.diag {
  background-color: var(--main-orange);
  color: #fff !important;
}

.cta_fv_link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--grad-blue);
  transition: opacity .4s ease;
  opacity: 0;
  z-index: -1;
}

.cta_fv_link.diag::before {
  background: var(--grad-orange);
}

.cta_fv_link::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 7%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: 0 0;
  box-shadow: 2px -2px 0 0 var(--main-blue);
  z-index: 2;
  transition: border-color .4s ease;
}

.cta_fv_link.diag::after {
  box-shadow: 2px -2px 0 0 #fff;
}

.cta_fv_link .txt::before {
  display: inline-block;
  margin-right: 5px;
  content: "";
  width: 22px;
  height: 22px;
  vertical-align: middle;
  margin-bottom: 2px;
}

.cta_fv_link.diag .txt::before {
  background: url(../img/icon_diag.png) no-repeat;
  background-size: contain;
}

.cta_fv_link.mail .txt::before {
  background: url(../img/icon_mail-blue.png) no-repeat;
  background-size: contain;
}

.cta_fv_link.tel .txt::before {
  background: url(../img/icon_call.webp) no-repeat;
  background-size: contain;
}

.cta_fv_link .txt .sml {
  font-size: 16px;
}

@media (any-hover: hover) {
  .cta_fv_link:hover {
    color: var(--main-white) !important;
  }

  .cta_fv_link:hover::before {
    opacity: 1
  }

  .cta_fv_link:hover::after {
    background: 0 0;
    box-shadow: 2px -2px 0 0 var(--main-white);
  }
}

@media screen and (max-width:768px) {
  .cta_fv_catch {
    font-size: 28px;
  }

  .cta_fv_link {
    font-size: 20px;
  }
}

@media screen and (max-width:600px) {
  .cta_fv_catch {
    font-size: 20px;
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  .cta_fv_catch .sml {
    font-size: 16px;
  }

  .cta_fv_link_top {
    margin-top: 30px;
    margin-bottom: 0;
  }

  .cta_fv_link_bottom {
    flex-direction: column;
    gap: 0;
  }

  .cta_fv_link::after {
    right: 5%;
  }

  .cta_fv_link_bottom .cta_fv_link {
    margin-top: 20px;
  }
}

/* ///////////////////////////////////////////////////////////

プライバシーポリシーページ

//////////////////////////////////////////////////////////// */
/* .privacy table ol.count li::before {
  font-weight: 400;
} */
 .privacy .bluesmall{
  font-weight: 700;
    color: var(--main-blue);
    font-size: 20px;
    margin-top: 2em;
 }
 .privacy .mt{
  margin-top: 2rem;
 }
.privacy table.two_column th .small{
  font-size: 0.8em;
  font-weight: 600;
}
.privacy table.two_column2 {
    table-layout: fixed;
    width: 100%;
}
.privacy table.two_column2 td, table.two_column2 th {
    padding: 1rem;
    vertical-align: middle;
    text-align: center;
}
.privacy table.two_column2 tr th{
      width: 18%;
    color: var(--main-blue);
    background: var(--light-blue);
    text-align: center;
    vertical-align: middle;
}
.privacy table.two_column2 tr td {
    background: var(--light-gray);
    text-align: center;
    border-bottom: 1px solid var(--light-blue);
    padding: 1rem 2rem;
    text-align: left;
}
@media screen and (max-width:960px) {
  .privacy .bluesmall{
    font-size: 18px;
 }
    .privacy table.two_column2 tr th{
      width: 160px;
    }
    .privacy table.two_column2 tr td{
      width: 600px;
    }
}

/* ///////////////////////////////////////////////////////////

footer上部のCTA

//////////////////////////////////////////////////////////// */
/* 202604追記  FV下のCTA */
.cta_info {
  width: 60%;
}

.cta_link_top {
  margin-top: 40px;
  margin-bottom: 10px;
}

.cta_link_bottom {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  width: 75%;
  margin: auto;
}

.cta_link {
  margin: auto;
  line-height: 1;
}

.cta_link_bottom .cta_link {
  width: 50%;
}

.cta_link.diag {
  background-color: var(--main-orange);
  color: #fff !important;
}

.cta_link.diag::before {
  background: var(--grad-orange);
}

.cta_link.diag::after {
  box-shadow: 2px -2px 0 0 #fff;
}

.cta_link.line {
  background-color: var(--line-green);
  color: #fff !important;
}

.cta_link.line::before {
  background: var(--grad-green);
}

.cta_link.line::after {
  box-shadow: 2px -2px 0 0 #fff;
}

.cta_link .txt::before {
  display: inline-block;
  margin-right: 5px;
  content: "";
  width: 22px;
  height: 22px;
  vertical-align: middle;
  margin-bottom: 2px;
}

.cta_link.diag .txt::before {
  background: url(../img/icon_diag.png) no-repeat;
  background-size: contain;
}

.cta_link.mail .txt::before {
  background: url(../img/icon_mail-blue.png) no-repeat;
  background-size: contain;
  transition: .4s ease;
}

.cta_link.line .txt::before {
  background: url(../img/icon_line.png) no-repeat;
  background-size: contain;
}

.cta_navigator img {
  width: 510px;
}

@media (any-hover: hover) {
  .cta_link.mail:hover .txt::before {
    background: url(../img/icon_mail.webp) no-repeat;
    background-size: contain;
  }
}

@media screen and (max-width:768px) {
  .cta_link_top {
    margin-top: 30px;
    margin-bottom: 0;
  }

  .cta_link_bottom {
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  .cta_link_top .cta_link,
  .cta_link_bottom .cta_link {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .cta_info {
    width: 100%;
    padding: 1.5rem 0 2rem;
  }

  .cta_link {
    width: 75%;
  }

  .cta_link::after {
    right: 5%;
  }

  .cta_link .txt::before {
    margin-right: 2px;
    width: 16px;
    height: 16px;
  }
}