@charset "utf-8";
/* ===================== reset ==== */
html,
body,
div,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
img,
small,
dl,
dt,
dd,
ol,
ul,
li,
form,
label,
table,
tr,
th,
td,
article,
footer,
header,
nav,
section,
figure,
address,
label {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-style: normal;
}
input,
textarea {
  margin: 0;
  resize: none;
  font-size: 16px;
  padding: 6px;
  box-sizing: border-box;
}
ol,
ul,
li {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  text-decoration: none;
  /* color: inherit; */
}
a:focus {
  outline: none;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
html {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
body {
  font-feature-settings: "palt" 1;
}

/* ===========================================
  base
============================================== */
html {
  font-size: 62.5%;
}
body {
  font-family: 'Noto Sans JP', Helvetica , Arial , 'Hiragino Kaku Gothic ProN' , 'メイリオ' , Meiryo , sans-serif;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #333;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
a:link,
a:visited,
a:active {
  text-decoration: none;
  color: inherit;
}
a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
main {
  display: block;
}
input,
textarea {
  -webkit-appearance: none;
  appearance: none;
}
.pc_only {
  display: none !important;
}

/* ▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲
            header
▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲ */
.headerPC {
  display: none !important;
}
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  transition: linear 0.2s;
  z-index: 10;
}
.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: calc(100% - 64px);
  padding-left: 20px;
  border-bottom: solid 4px #56a523;
  background-color: #fff;
}
.headerItem {
  display: flex;
  height: 64px;
}
/* ==== ハンバーガーメニュー ==== */
.hamBtn {
  width: 64px;
  height: 64px;
  position: fixed;
  top: 0;
  right: 0;
  background-color: #fff;
  cursor: pointer;
  border: none;
  z-index: 10;
  border-bottom: solid 4px #56a523;
}
.hamBtn .border {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  display: block;
  height: 2px;
  width: 32px;
  background-color: #333333;
  transition: all 0.2s;
}
.hamBtn .border:nth-of-type(1) {
  top: 16px;
}
.hamBtn .border:nth-of-type(2) {
  top: 24px;
}
.hamBtn .border:nth-of-type(3) {
  top: 32px;
}
.hamBtn .js-hamText {
  position: absolute;
  top: 37px;
  left: 50%;
  transform: translate(-50%, 0);
  font-weight: bold;
  color: #333;
}
.hamBtn.active .border:nth-of-type(1) {
  transform: translate(-50%, 0) rotate(-43deg);
  top: 23px;
}
.hamBtn.active .border:nth-of-type(2) {
  left: 55%;
  opacity: 0;
  visibility: hidden;
}
.hamBtn.active .border:nth-of-type(3) {
  transform: translate(-50%, 0) rotate(43deg);
  top: 23px;
}
/* headerLsit */
.headerLsit {
  max-height: 90vh;
  overflow: auto;
  background-color: #fff;
  box-shadow: 0 3px 6px 0 #666;
  padding-bottom: 2px;
}
/* mainList */
.item_mainList {
  position: relative;
  font-size: 1.6rem;
  font-weight: bold;
  border-bottom: 1px solid #eaeaea;
}
.item_mainList::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 24px;
  background: url(../img/header/icon-arrow-gray.svg) center no-repeat;
  background-size: contain;
  width: 8px;
  height: 12px;
}
.item_mainList:nth-child(1) {
  border-top: 1px solid #eaeaea;
}
.item_mainList a {
  display: block;
  padding: 20px 0 20px 40px;
}
/* serviceList */
.item_serviceList {
  position: relative;
  font-size: 1.8rem;
  font-weight: bold;
  border-bottom: 1px solid #eaeaea;
}
.item_serviceList::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 24px;
  background: url(../img/header/icon-arrow-white.svg) center no-repeat;
  background-size: contain;
  width: 8px;
  height: 12px;
}
.item_serviceList a {
  padding: 20px 0 20px 40px;
  display: block;
}
.item_serviceList.item--sis {
  background-color: #56a523;
  color: #fff;
}
.item_serviceList.item--hikari {
  background-color: #f9be2c;
  color: #fff;
}
.item_serviceList.item--docomo {
  background-color: #cf0f31;
  color: #fff;
}
.item_serviceList .linkText_desc {
  font-size: 1.6rem;
  font-weight: normal;
}
/* subList */
.c-subList {
  position: relative;
  font-size: 1.4rem;
  font-weight: 500;
  background-color: #eaeaea;
  border-bottom: solid 1px #fff;
}
.c-subList::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 17px;
  right: 24px;
  background: url(../img/Icon-headerListArrow.svg) center no-repeat;
  background-size: contain;
  width: 8px;
  height: 12px;
}
.c-subList a {
  padding: 10px 0 10px 40px;
}

/* === アニメーション設定 === */
#js-SPheaderItem {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
}
#js-SPheaderItem.active {
  position: relative;
  opacity: 1;
  visibility: visible;
}
#js-LogoItem {
  transition: all 0.2s;
}
#js-LogoItem.fade {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
}
#js-LogoItem.fade.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼
            footer
▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼ */
footer {
  background-color: #F8F8F8;
}
.u-mgtFooter {
  margin-top: 80px;
}
.Copy {
  text-align: center;
  padding: 16px 0;
}
.Copy small {
  font-size: 1rem;
}

/* ▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼
            パンくず
▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼ */
.breadcrumb {
  margin-top: 60px;
  width: 100%;
  background-color: #e9e9e9;
  padding: 6px 20px 6px;
}
.breadcrumbItem {
  position: relative;
  display: inline-block;
  font-size: 1.4rem;
  padding-right: 17px;
  margin-right: 8px;
}
.breadcrumbItem::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  display: inline-block;
  background: url(../img/Arrow-breadcrumb.svg) center no-repeat;
  background-size: contain;
  width: 5px;
  height: 8px;
}
.breadcrumbItem:last-child::after {
  display: none;
}
.breadcrumbItem a {
  color: #56a520;
  border-bottom: 1px solid #56a520;
}

/* ▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼
            ▼main
▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼ */
/* === タイトル左右につくIcon ===  */
.c-TitleIcon {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 48px;
}
.TitleIcon-en {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: #44831C;
}
.TitleIcon-en::before {
  content: "";
  display: inline-block;
  margin-right: 16px;
  width: 23px;
  height: 12px;
  background: url(../img/icon-title_left.svg) left center no-repeat;
}
.TitleIcon-en::after {
  content: "";
  display: inline-block;
  margin-left: 16px;
  width: 23px;
  height: 12px;
  background: url(../img/icon-title_right.svg) right center no-repeat;
}
.TitleIcon-ja {
  display: block;
  font-weight: 700;
  font-size: 3.2rem;
}

/* === too_phone ===  */
.c-too_phone {
  position: relative;
  text-align: center;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  width: 92%;
  background-color: #F4F8F9;
  padding: 24px;
  border-radius: 16px;
}
.c-too_phone:after {
  content: "";
  position: absolute;
  bottom: -70px;
  right: -10px;
  background: url(../img/zuumo/zuumo01-sp.png) no-repeat center / contain;
  width: 76px;
  height: 104px;
}
.c-too_phone .telnum {
  display: inline-block;
  margin-bottom: 4px;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: normal;
  color: #56A520;
  margin: 14px 0 10px;
}
.c-too_phone .telnum::before {
  content: "";
  display: inline-block;
  margin-right: 10px;
  background: url(../img/icon-call.svg) no-repeat center / contain;
  width: 24px;
  height: 24px;
}

/* === Step ===  */
.c-contactStep {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.itemContactStep {
  text-align: center;
  display: flex;
  justify-content: end;
  flex-direction: column;
  width: 168px;
  border-bottom: 4px solid #cce4bc;
  padding-bottom: 15px;
}
.contactStep_step {
  font-weight: 700;
  font-size: 1.4rem;
}
.contactStep_step_number {
  font-weight: 700;
  font-size: 1.8rem;
}
.contactStep_name {
  font-weight: 700;
  display: block;
  color: #CCE4BC;
}
.itemContactStep.current {
  position: relative;
  border-bottom: 4px solid #448319;
}
.itemContactStep.current .contactStep_name {
  color: #333;
}
.itemContactStep.current::after {
  content: "";
  position: absolute;
  bottom: -11px;
  right: -2px;
  display: inline-block;
  background: url(../img/Icon-step_arrow.svg) no-repeat center / contain;
  width: 11px;
  height: 18px;
}

/* === heading_bottomLine ===  */
.c-heading_bottomLine {
  font-size: 2.4rem;
  font-weight: 700;
  padding-bottom: 8px;
  margin-top: 56px;
  margin-bottom: 24px;
  border-bottom: 1px #448319 solid;

}

/* === 必須/任意 icon ===  */
/* 必須 */
.c-required {
  background-color: #CF0F31;
  border-radius: 2px;
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0;
  padding: 2px 6px 3px;
  margin: 3px 12px 0 0;
}
/* 任意 */
.c-free {
  background-color: #ccc;
  border-radius: 2px;
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0;
  padding: 2px 6px 3px;
  margin: 4px 12px 0 0;
}

/* === form ===  */
/* contact_item */
.c-contact_item {
  padding-bottom: 24px;
  margin-top: 24px;
  border-bottom: 1px dashed #D2D2D2;
}
.contact_team {
  width: 100%;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
}
.contact_desc {
  width: 100%;
  max-width: 540px;
  display: inline-block;
  vertical-align: top;
}

/* wrap_inputArea */
.wrap_inputArea {
  position: relative;
}
.wrap_inputArea:not(:first-child) {
  margin-top: 16px;
}

/* inputArea */
.inputArea {
  background-color: #eee;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  padding: 10px 16px;
  width: 100%;
  font-weight: 500;
}
.inputArea::placeholder {
  color: #CCC;
}
input[type=radio],
input[type=checkbox]{
  display: none;
}
input[type=radio] + .inputArea,
input[type=checkbox] + .inputArea {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  padding: 6px 30px 6px 34px;
  min-height: 40px;
  width: 100%;
}
input[type=radio] + .inputArea::before{
  content: '';
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  display: block;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #fff;
}
input[type=radio]:checked + .inputArea::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #448319;
}
input[type=checkbox] + .inputArea::before{
  content: '';
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: #fff;
}
input[type=checkbox]:checked + .inputArea::after {
  content: '';
  left:11px;
  position: absolute;
  top: 60%;
  transform: translateY(-50%) rotate(45deg);
  display: block;
  margin-top: -10px;
  width: 8px;
  height: 16px;
  border-right: 3px solid #448319;
  border-bottom: 3px solid #448319;
}
textarea.inputArea {
  font-family: "Noto Sans JP", sans-serif;
  width: 100%;
}
.inputArea.inputType_radio {
  font-size: 1.8rem;
  font-weight: 700;
}
.clump_inputArea {
  margin-left: 8px;
  padding: 0 0 4px 8px;
  border-left: 1px solid #eaeaea;
}

/* 郵便番号から住所検索ボタン */
.c-zip {
  margin-top: 8px;
  padding: 6px 8px;
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  border-radius: 24px;
  border: 2px solid #CF0F31;
  background-color: #fff;
  color: #CF0F31;
  transition: all .15s;
}
.c-zip:active{
  background-color: #CF0F31;
  color: #fff;
}

/* ===== error ==== */
.error {
  color: #FF0000;
  font-size: 1.4rem;
  margin-top: 8px;
}

/* ===== ボタン ==== */
.c-btn {
  display: block;
}
.c-btn .button {
  cursor: pointer;
  position: relative;
  font-size: 1.6rem;
  font-weight: bold;
  display: block;
  text-align: center;
  max-width: 360px;
  width: 100%;
  padding: 14px 0;
  border-radius: 40px;
  transition: all 0.2s;
  margin: 0 auto;
  border: none;
}
.c-btn .button::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 6px;
  height: 10px;
  transition: all 0.2s;
  top: 20px;
}

/* 進む */
.c-btn .button.button-nomal {
  color: #fff;
  background-color: #56a523;
  box-shadow: 0px 4px #448319;
}
.c-btn .button.button-nomal.u-font18 {
  font-size: 1.8rem;
}
.c-btn .button.button-nomal::before {
  background: url(../img/Arrow-cBtn.svg) no-repeat center / contain;
  right: 28px;
}
.c-btn .button.button-nomal:hover {
  transform: translateY(4px);
  box-shadow: none;
  background-color: #448319;
}
.c-btn .button.button-nomal:hover::before {
  right: 20px;
}

/* 戻る */
.c-btn .button.button-reverse {
  background-color: #fff;
  color: #56A523;
  border: solid 2px #56a520;
  box-shadow: 0px 4px #448319;
}
.c-btn .button.button-reverse::before {
  background: url(../img/icon-Arrow-rev.svg) center no-repeat;
  left: 40px;
}
.c-btn .button.button-reverse:hover {
  transform: translateY(4px);
  box-shadow: none;
}
.c-btn .button.button-reverse:hover::before {
  left: 32px;
}

/* 送信 */
.c-btn .button.button-submit {
  background-color: #F89829;
  border: solid 2px #F89829;
  box-shadow: 0px 4px #C47B26;
  color: #fff;
}
.c-btn .button.button-submit::before {
  background: url(../img/Arrow-cBtn.svg) no-repeat center / contain;
  right: 28px;
}
.c-btn .button.button-submit:hover {
  transform: translateY(4px);
  box-shadow: none;
}
.c-btn .button.button-submit:hover::before {
  right: 20px;
}

/* 2col */
.c-btn-2col {
  display: flex;
  flex-direction: column-reverse;
}
.c-btn-2col .button:first-of-type{
  margin-top: 24px;
}

/* ===== テキストリンク ==== */
.c-link {
  position: relative;
  display: inline-block;
  padding-right: 24px;
  margin-left: 4px;
  margin-right: 2px;
}
.c-link::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 2px;
  right: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
}
.c-link .text {
  color: #56a520;
  font-weight: bold;
  border-bottom: 1px solid #56a520;
}
/* brank */
.c-link--brank::before {
  background: url(../img/icon-brank.svg);
}
/* pdf */
.c-link--pdf::before {
  background: url(../img/icon-pdf.svg);
}
/* hover */
.c-link:hover {
  opacity: .7;
}
.c-link:hover .text{
  border-bottom: none;
}

/* === image_zuumo === */
.image_zuumo02 {
  text-align: center;
  margin: 40px auto 0;
  width: 148px;
  height: 113px;
  background-image: url(../img/zuumo/zuumo02.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.image_zuumo03 {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 101px;
  height: 185px;
  background-image: url(../img/zuumo/zuumo03.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

/*==========
Utility
========== */
/* text-align */
.u-textCenter {
  text-align: center;
}
.u-textleft {
  text-align: left;
}

/* font weight*/
.u-fontBold {
  font-weight: 700;
}
.strong_nomal {
  font-weight: normal;
}

/* font size */
.u-font24 {
  font-size: 2.4rem;
}
.u-font18 {
  font-size: 1.8rem;
}

/* margin */
.u-mgt8{
  margin-top: 8px;
}
.u-mgt16{
  margin-top: 16px;
}
.u-mgt24{
  margin-top: 24px;
}
.u-mgt40{
  margin-top: 40px;
}
.u-mgt48{
  margin-top: 48px;
}
.u-mgt80 {
  margin-top: 80px;
}
.u-mgt120 {
  margin-top: 120px;
}
.u-mgt220-sp {
  margin-top: 220px;
}

/* line-height */
.u-lh18{
  line-height: 1.8;
}

/* width */
.l-width_nomal {
  max-width: 760px;
  padding-left: 20px;
  padding-right: 20px;
  margin-right: auto;
  margin-left: auto;
}
.l-width_nomal.position {
  position: relative;
}

.u-textCenter .u-mgt16{
  display: block;
}

/* =======
style Header TOP
======= */
/* ======= マイページ ======= */
.MyPageLink a {
  text-align: center;
  padding: 8px 3px;
  width: 110px;
  border-radius: 0px 0px 16px 16px;
  color: #fff;
  background-color: #56a520;
}
.MyPageLink a span {
  position: relative;
  display: inline-block;
  padding: 0 20px 0 22px;
  line-height: 1.5;
  text-align: left;
  font-size: 1.4rem;
}
.MyPageLink a span::before,
.MyPageLink a span::after {
  content: "";
  display: inline-block;
  position: absolute;
}
.MyPageLink a span::before {
  top: 9px;
  left: 0;
  width: 15px;
  height: 18px;
  background: url(../img/icon-mypage01.svg) no-repeat center / contain;
}
.MyPageLink a span::after {
  top: 14px;
  right: 0;
  width: 14px;
  height: 14px;
  background: url(../img/icon-mypage02.svg) no-repeat center / contain;
}

/* ======= page style ======= */
.list-OtherLink--top {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 40;
}

/* =======
style Header Under
======= */
/* ======= スタッフブログ ======= */
.StaffLink a {
  padding: 11px 8px 11px 11px;
  width: 90px;
  border-radius: 0px 0px 16px 16px;
  line-height: 1.4;
  font-size: 14px;
  color: #fff;
  background-color: #6e7d93;
}
.StaffLink a span {
  position: relative;
  display: inline-block;
}
.StaffLink a span::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 14px;
  right: -19px;
  width: 14px;
  height: 14px;
  background: url(../img/icon-mypage02.svg) no-repeat center / contain;
}
/* ======= サポート ======= */
.SupportLink a {
  padding: 11px 8px 11px 11px;
  width: 90px;
  border-radius: 0px 0px 16px 16px;
  line-height: 1.4;
  font-size: 14px;
  color: #fff;
  background-color: #4179af;
}
.SupportLink a span {
  position: relative;
  display: inline-block;
}
.SupportLink a span::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 18px;
  right: -12px;
  width: 18px;
  height: 16px;
  background: url(../img/icon-support.svg) no-repeat center / contain;
}
.MyPageLink a,
.StaffLink a,
.SupportLink a {
  height: 60px;
}

/* =======
style SpMenu
======= */
/* ======= style BTN スタッフブログ & IT用語解説======= */
.otherbtn_01,
.otherbtn_02,.otherbtn_03 {
    position: relative;
    display: block;
    font-weight: bold;
    text-align: center;
    max-width: 280px;
    padding: 16px 8px;
	margin: 0 auto 20px;
    border-radius: 40px;
    font-size: 1.4rem;
    color: #fff;
}
.otherbtn_02::after,
.otherbtn_03::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 16px;
    width: 14px;
    height: 14px;
    background: url(../img/icon-mypage02.svg) no-repeat center / contain;
}
.otherbtn_01{
	background-color: #297BB4;
}
.otherbtn_02{
    background-color: #56a520;
}
.otherbtn_03{
    background-color: #6A7E95;
}
.otherbtn_03::before{
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 24px;
  width: 18px;
  height: 21px;
  background: url(/assets/common/img/icon-mypage01.svg) no-repeat center / contain;
}

/* ======= style page ======= */
.list-OtherLink_spMenu{
  margin-top: 32px;
}
