@charset "utf-8";

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
main {
  display: block;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
a {
  background-color: transparent;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type='button']:-moz-focusring,
[type='reset']:-moz-focusring,
[type='submit']:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type='checkbox'],
[type='radio'] {
  box-sizing: border-box;
  padding: 0;
}
[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto;
}
[type='search'] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
details {
  display: block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none;
}

/*===============================

	reset,base

================================*/
html {
  font-family: -apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic ProN, 'ヒラギノ角ゴ ProN W3',
    'Helvetica Neue', Arial, 'メイリオ', Meiryo, YuGothic, sans-serif;
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

input,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: -apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic ProN, 'ヒラギノ角ゴ ProN W3',
    'Helvetica Neue', Arial, 'メイリオ', Meiryo, YuGothic, sans-serif;
  font-size: 1.6rem;
}

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

body {
  width: 100%;
  height: 100%;
  color: #222222;
}
a {
  color: #222222;
  text-decoration: none;
}

/* .sp a:hover {
  opacity: 1;
} */

*,
*:after,
*:before {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
dl,
li,
dt,
dd,
figure,
p {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

ol {
  padding-left: 1em;
}

button {
  background: none;
  border: none;
  outline: none;
}

@media screen and (min-width: 1080px) {
  body {
    overflow-x: hidden;
    min-width: 1080px;
  }
  a,
  button {
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
  }
  a:hover,
  button:hover {
    opacity: 0.7;
  }
}

/*===============================

	module

================================*/
/*見出し*/
.ttl-page-main {
  margin-bottom: 50px;
  font-weight: bold;
  font-size: 30px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row nowrap;
  position: relative;
}

.ttl-page-main::before,
.ttl-page-main::after {
  content: '';
  display: block;
  width: 24px;
  margin-right: 10px;
  border-bottom: 1px solid #222222;
  flex-grow: 0;
  flex-shrink: 0;
}

.ttl-page-main::after {
  margin-left: 10px;
  margin-right: 0;
}

.ttl-page-main.sp-smaller {
  font-size: 2rem;
}

.ttl-deco {
  position: relative;
}

.ttl-deco h3.ttl-block-sub {
    margin: 0; 
}


.ttl-deco::before,
.ttl-deco::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -16px;
  left: 50%;
  margin-left: -16px;
  width: 16px;
  height: 3px;
  background: #42b860;
}

.ttl-deco::after {
  margin-left: 0;
  background: #cecece;
}

.ttl-page-sub {
  margin: 48px auto 14px;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: normal;
}

/*お知らせ*/
.confirm {
  padding: 24px 16px;
  background: #ffecec;
  font-size: 1.6rem;
  line-height: 1.8;
  border-radius: 4px;
}

.notice {
  color: #f15343;
  font-size: 1.6rem;
  line-height: 1.8;
}
/*ボタンwrap*/
.btn-group {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row wrap;
}

.page-inner .btn-group:last-of-type {
  margin-top: 40px;
}

.btn-group a + *,
.btn-group button + * {
  margin-top: 24px;
}
/*デフォルトのボタン*/
.btn-default {
  width: calc(100% - 6px);
  max-width: 500px;
  height: 60px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row nowrap;
  border-radius: 6px;
  background: #e61e0a;
  border: 2px solid #e61e0a;
  position: relative;
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.06);
  cursor: pointer;
}

.btn-default::after {
  content: '';
  width: 9px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%) rotate(180deg);
  background: url(../svg/icon_arrows_fff.svg) center center / 100% auto no-repeat;
}

.btn-default__back {
  background: #fff;
  color: #e61e0a;
  border-color: #e61e0a;
}

.btn-default__back::after {
  top: 50%;
  right: auto;
  left: 16px;
  background: url(../svg/icon_arrows_e61e0a.svg) center center / 100% auto
    no-repeat;
  transform: translateY(-50%) rotate(0);
}
/*ctaボタン*/
.btn-document,
.btn-inquiry {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row nowrap;
  border-radius: 3px;
}

.btn-document span {
  color: #42b860;
}

.btn-inquiry span {
  color: #fff;
}

.btn-document {
  border: 1px solid #42b860;
  background: #fff;
}

.btn-inquiry {
  border: 1px solid #42b860;
  background: #42b860;
}
/*topへ*/
.btn-totop {
  position: fixed;
  bottom: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row nowrap;
  z-index: 98;
}

.btn-totop span {
  width: 6px;
  height: 11px;
  transform: rotate(90deg);
}

.btn-totop span img {
  width: 100%;
  height: auto;
}

/*利用規約的な定義テーブル*/
.table-definition {
  margin: 2.4rem 0;
  font-size: 1.6rem;
  line-height: 1.8;
}

.table-definition tr {
  display: flex;
  flex-direction: column;
}

.table-definition th {
  padding: 13px 16px 10px;
}
.table-definition thead th {
  color: #fff;
  background: #f15343;
}
.table-definition tbody th {
  background: #ffecec;
}

.table-definition td {
  padding: 13px 16px 10px;
  background: #fff;
}

.table-definition.privacy-table-definition th {
  width: 100%;
  text-align: left;
}
.table-definition.privacy-table-definition thead {
  display: none;
}

.c-agreement__sign {
    text-align: right;
}

/*利用規約的な定義リスト*/
.list-definition {
  margin: 24px auto;
  line-height: 1.8;
}

.list-definition dt {
  font-size: 2rem;
}

.list-definition dt + dd {
  font-size: 1.6rem;
}

.list-definition dd + dt {
  margin-top: 3.2rem;
}

.list-definition dt + dd {
  margin-top: 2.4rem;
}

/*黒丸のリスト*/
ul.disc {
  margin: 1em auto;
}
ul.disc li{
  margin-left: 1em;
}

ul.disc li::before{
  content: '・';
  display: inline-block;
  margin-left: -1em;
}

/*約款や掲載基準用*/
.ordered-list {
  font-size: 1.6rem;
  list-style-position: inside;
  padding-left: 0;
}

.list-definition.terms-list-definition dt{
  font-size: 1.6rem;
  margin-left: 2.5em;
  text-indent: -2.5em;
}

.list-definition.terms-list-definition dd + dt{
  margin-top: 2.4rem;
}

.list-definition.terms-list-definition dd ul:not(.disc) li {
  margin-left: 1.5em;
  text-indent: -1.5em;
}

.list-definition.terms-list-definition dd ul:not(.disc) li:nth-child(9) ~ li{
  margin-left: 2em;
  text-indent: -2em;
}

.list-definition.terms-list-definition dd ul li + li {
  margin-top: 2px;
}

.list-definition.terms-list-definition dt + dt{
  margin-top: 2.4rem;
}

/**/

.list-definition.privacy-list-definition dt{
  font-size: 1.6rem;
  margin-left: 2.5em;
  text-indent: -2.5em;
}

.list-definition.privacy-list-disc dt{
  font-size: 1.6rem;
  margin-left: 1em;
  text-indent: -1em;
}

.ul-list .text {
  margin: 1em auto;
}

.list-definition.privacy-list-definition dd + dt,
.list-definition.privacy-list-disc dd + dt{
  margin-top: 2.4rem;
}

.list-definition.privacy-list-definition dt + dt,
.list-definition.privacy-list-disc dt + dt{
  margin-top: 2.4rem;
}

.privacy-list-definition a,
.privacy-list-disc a {
  color: #077BD4;
  word-wrap: break-word;
  word-break: break-all;
}


/**/

.ul-list {
  margin: 1em auto;
}

.ul-list > li + li {
  margin-top: 1em;
  margin-bottom: 1em;
}

.ul-list.num-parentheses-list li {
  margin-left: 2.5em;
  text-indent: -2.5em;
}

/**/
.inline-block {
  display: inline-block;
}

.aligncenter,
.align-center {
  text-align: center;
}

.align-right {
  text-align: right;
}

.text-bold {
  font-weight: bold;
}

.text {
  font-size: 1.6rem;
  line-height: 1.8;
}

* + .text {
  margin-top: 24px;
  margin-bottom: 24px;
}

.flex-center-center {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row nowrap;
}

.flex-center-start {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-flow: row nowrap;
}

.is-pc {
  display: none !important;
}
.is-sp {
  display: block !important;
}

.pc-block {
  display: inline;
}

.text a,
.list-definition a {
  text-decoration: underline;
}

.text-block a {
  color: #077bd4;
}

.notice a {
  color: #f15343;
}

  /*約款改定お知らせ*/
  .information {
      margin-top: 40px;
  }
  .information .text {
      margin-top: 0px;
  }
  .information h3 {
      margin-bottom: 15px;
      font-size: 1.6rem;
  }
  /**/

/*ケロのnew 親要素にrelative*/
.new-article {
	display: block;
	width: 76px;
	height: 26px;
	background: url("../gif/new_icon.gif") no-repeat center;
	background-size: 76px 26px;
	position: absolute;
	top: -26px;
	left: 0;
	}
/**/

@media screen and (min-width: 1080px), print {
  .ttl-page-main {
    margin-bottom: 80px;
    font-size: 48px;
  }
  .ttl-page-main.sp-smaller {
    font-size: 48px;
  }
  .ttl-page-main::before,
  .ttl-page-main::after {
    width: 64px;
    margin-right: 20px;
  }
  .ttl-page-main::after {
    margin-right: 0;
    margin-left: 20px;
  }
  .confirm {
    margin-bottom: 24px;
  }
  * + .text {
    margin-top: 30px;
  }
  .table-definition {
    margin: 24px auto;
  }
  .table-definition tr {
    display: table-row;
  }
  .table-definition th {
    padding: 32px;
  }
  .table-definition td {
    padding: 32px;
  }
  .table-definition.privacy-table-definition th {
    width: 40%;
    text-align: left;
  }
  .table-definition.privacy-table-definition thead {
    display: table-row-group;
  }

  .list-definition {
    margin: 24px auto;
  }
  .list-definition dt {
    font-size: 3rem;
  }
.list-definition.privacy-list-definition dd + dt,
.list-definition.privacy-list-disc dd + dt{
  margin-top: 2.4rem;
}

  .list-definition.privacy-list-definition dd .disc,
  .list-definition.privacy-list-disc dd .disc,
  .list-definition.privacy-list-definition dd .text,
  .list-definition.privacy-list-disc dd .text {
    padding-left: 2.5em;
  }

  .ordered-list {
    list-style-position: outside;
    padding-left: 1em;
  }

  /**/
  .ul-list ul.disc{
    padding-left: 2em;
  }

  .ul-list .text {
    padding-left: 2em;
  }
  /**/
  
  /*約款お知らせ*/
  .information {
      margin-top: 80px;
  }
  /**/

  .page-inner .btn-group:last-of-type {
    margin-top: 80px;
  }

  .btn-group.btn-group__reverse {
    flex-direction: row-reverse;
  }

  .btn-default {
    width: 300px;
  }

  .btn-default.btn__100-16__340 {
    width: 340px;
  }

  .btn-group > a,
  .btn-group > button {
    margin: 0 12px;
  }

  .btn-totop {
    bottom: 38px;
    right: 38px;
    width: 64px;
    height: 64px;
  }

  .btn-totop span {
    width: 12px;
    height: 22px;
  }

  .ttl-deco::before,
  .ttl-deco::after {
    width: 32px;
    height: 6px;
  }

  .ttl-deco::before {
    left: 0;
    margin-left: 0;
  }

  .ttl-deco::after {
    left: 32px;
  }

  .ttl-page-sub {
    font-size: 3rem;
    margin:77px auto 17px;
  }
  /*約款で使用*/
  .ttl-page-sub + .text {
      margin-top: 0;
  }
  /**/

  .is-pc {
    display: block !important;
  }
  .is-sp {
    display: none !important;
  }

  .pc-block {
    display: block;
  }
}

/*===============================

	パンくず

================================*/
.breadcrumbs {
  margin: 0 auto;
  display: block;
  position: relative;
  z-index: 2;
}

.l-section .breadcrumbs {
  padding: 16px 16px 0;
}

.l-section-inner .breadcrumbs {
  color: #fff;
}

.breadcrumbs li {
  position: relative;
  display: inline;
  padding: 0 5px 0 0;
  vertical-align: middle;
  font-size: 13px;
  line-height: 1.4;
}
.breadcrumbs li:first-child{
  text-transform: uppercase;
}
.breadcrumbs li:last-child {
  padding: 0;
  display: inline-block;
}
.breadcrumbs li a {
  display: inline;
  font-size: 13px;
  line-height: 1.4;
  color: #077bd4;
  word-break: break-all;
}

@media screen and (min-width:768px), print {
  .breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .l-section .breadcrumbs {
    width: 1044px;
    padding: 40px 12px 0;
  }
}


/*===============================

	layout

================================*/
.l-wrapper {
  width: 100%;
  min-height: 100%;
  padding-top: 45px;
  position: relative;
  background: #fcf8f8;
  z-index: 0;
}

.l-main {
  width: 100%;
  background: #fcf8f8;
}

.l-section {
  width: 100%;
}

.l-section-inner {
  width: 100%;
  position: relative;
}

.l-section-inner.page-inner {
  padding: 48px 16px;
}

.l-section-inner.page-inner-b {
  padding: 48px 16px 120px;
}

.l-section-inner.page-inner-inquiry {
  padding: 24px 16px 64px;
}

@media screen and (min-width: 1080px), print {
  .l-wrapper {
    min-height: 100%;
    padding-top: 120px;
  }
  .l-section-inner {
    width: 1080px;
    margin: 0 auto;
    padding: 0;
    clear: both;
  }
  .l-section-inner.page-inner {
    padding: 90px 96px 120px;
  }
  .l-section-inner.page-inner-b {
    padding: 90px 0 160px;
  }
  .l-section-inner.page-inner-inquiry {
    padding: 8px 0 128px;
  }
}

/*
	header
================================*/

.l-header {
  width: 100%;
  height: 45px;
  background: rgba(255, 255, 255, 0.95);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

.l-header-inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.l-header a {
  color: #222222;
}

.l-header-inner img {
  display: block;
}

.header-logo {
  width: 98px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  /*aがないものがあるため指定*/
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row nowrap;
}

.header-logo a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row nowrap;
}

.header-logo img {
  width: 100%;
  height: auto;
}

.menu-group {
  display: none;
  width: 100%;
  height: calc(100% - 45px);
  padding: 24px 24px 60px;
  position: fixed;
  top: 45px;
  left: 0;
  z-index: 100;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.95);
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid #dfe1e5;
}

.menu-list {
  font-size: 0;
}

.menu-list > li {
  font-size: 1.4rem;
  font-weight: bold;
}

.menu-list > li + li {
  margin-top: 24px;
}

.menu-list a {
  display: block;
}

.menu-list > li > a {
  margin-bottom: 10px;
}

.menu-btn-wrap ul {
  width: 100%;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row nowrap;
  overflow: hidden;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.menu-btn-wrap ul > li {
  width: 33.33%;
  height: 100%;
}

.menu-icon-btn a {
  width: 100%;
  height: 100%;
  padding-top: 8px;
  padding-bottom: 8px;
  position: relative;
  /* background: #fff url(/biz/assets/common/images/icon_about.svg) top 10px center / 50px auto
    no-repeat; */
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-flow: column nowrap;
}

/* .menu-icon-btn > a > span {
  display: block;
  width: 100%;
  height: 30px;
  padding-top: 3px;
  position: absolute;
  bottom: 0;
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
} */

.menu-icon-btn .menu-text {
  display: block;
  width: 100%;
  /* height: 30px; */
  min-height: calc(2em * 1.2);
  padding-top: 3px;
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row nowrap;
}
.menu-icon-btn span.icon {
  display: block;
  width: 40px;
  height:40px;
  margin: 0 auto;
}

.menu-icon-btn span.icon svg,
.menu-icon-btn span.icon use{
  display: block;
  width: 100%;
  height: 100%;
}
.menu-icon-btn span.icon {
  color: #363636;
}
.menu-icon-btn svg{
  stroke: currentColor;
}

.menu-icon-btn svg .icon-fill{
  fill: currentColor;
}

.menu-btn-wrap ul > li + li a {
  border-left: 1px solid #ddd;
}

.menu-plan .menu-icon-btn {
  width: 33%;
}
.menu-plan .menu-icon-btn:nth-child(odd) {
  width: 34%;
}

.menu-plan > div,.menu-useful > div {
  margin-bottom: 0.5em;
}

.menu-list > .menu-case,
.menu-list > .menu-news {
  width: 100%;
  height: 48px;
  display: block;
}
.menu-list .menu-news a,
.menu-list .menu-case a {
  width: 100%;
  height: 100%;
  border: 1px solid #ddd;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row nowrap;
  font-size: 1.4rem;
  pointer-events: auto;
  border-radius: 4px;
}

.menu-list .menu-cta a {
  width: 100%;
  height: 48px;
  border: 1px solid #ddd;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row nowrap;
  font-size: 1.4rem;
  pointer-events: auto;
  border-radius: 4px;
  pointer-events: auto;
  cursor: pointer;
}

.menu-list .menu-plan a {
  border-right: none;
  border-radius: 4px 0 0 4px;
}

.menu-list .menu-cta a span{
  color: revert;
}


/*google カスタム検索ボタン*/

.gcs-block {
  display: none;
  width: 100%;
  height: auto;
  /*border-top: 1px solid #dfe1e5;*/
  position: fixed;
  top: 45px;
  left: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 10;
}
.gcs-close {
  /*position: fixed;
  top: 45px;
  left: 0;*/
  width: 100%;
  height: calc(100% - 45px);
  background: transparent;
  z-index: -1;
}

/*メニューボタン*/
.nav-btn {
  width: 44px;
  height: 100%;
  padding: 12px 10px 13px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column nowrap;
  position: absolute;
  right: 0;
  top: 0;
}

.nav-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #e61e0a;
  border-radius: 1px;
  position: absolute;
}

.nav-btn span:first-child {
  top: 12px;
  transition: 0.2s transform 0s ease-in;
}

.nav-btn span:nth-child(2) {
  top: 21px;
  transition: 0.1s opacity 0s ease-in;
}

.nav-btn span:last-child {
  bottom: 13px;
  transition: 0.2s transform 0s ease-in;
}

.nav-btn.is-active span:first-child {
  transform: translateY(9px) rotate(-45deg);
}
.nav-btn.is-active span:nth-child(2) {
  opacity: 0;
}
.nav-btn.is-active span:last-child {
  transform: translateY(-9px) rotate(45deg);
}

.nav-btn.is-active ~ .menu-group {
  display: block;
}

@media screen and (min-width: 1080px), print {
  .l-header {
    height: auto;
    background-color: rgba(255, 255, 255, 1);
  }

  .l-header-inner {
    width: 1080px;
    min-width: 1080px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-flow: row nowrap;
  }
  .header-logo {
    width: 100px;
    height: 22px;
    margin: 0;
    padding: 29px 16px 29px 16px;
    position: relative;
    top: 0;
    left: 0;
    transform: translateX(0);
    flex-shrink: 0;
    flex-grow: 0;
    box-sizing: content-box;
  }
  .header-logo a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: row nowrap;
  }

  .menu-group {
    display: block;
    height: 100%;
    padding: 0;
    position: static;
    background: none;
    border-top: none;
  }

  .menu-group.is-pc {
    display: none;
    width: 100%;
    height: auto;
    position: fixed;
    top: 80px;
    left: 0;
    overflow: hidden;
  }
  .menu-group.is-pc.is-active {
    display: block;
    height: 100px;
  }

  .menu-list {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-flow: row nowrap;
    position: relative;
  }

  .menu-list > li {
    height: 100%;
    position: relative;
    flex-grow: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: row nowrap;
    margin: 0;
  }
  .menu-plan {
    width: auto;
  }
  .menu-case {
    width: auto;
  }
  .menu-news {
    width: auto;
  }
  .menu-list .menu-cta {
    width: auto;
    height: 80px;
    padding: 0;
    margin-left: auto;
    order: 7;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-flow: row nowrap;
  }
  /*.menu-list .menu-cta a[class^='btn-'] {*/
  .menu-list .menu-cta > a[class^='btn-'] {
    width: 160px;
    height: 40px;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: row nowrap;
    position: relative;
    border-radius: 100px;
    border: 2px solid#363636;
    box-shadow: 0 4px 0 #363636;
  }
  /*.menu-list .menu-cta .btn-document {*/
  .menu-list .menu-cta > .btn-inquiry {
    border: 1px solid #363636;
    margin-left: 0.5em;
    background: #3BAF58;
    font-weight: 500;
    pointer-events: auto;
    cursor: pointer;
  }
  .menu-list .menu-cta > .btn-document {
    background-color: #FFFFFF;
  }
  .menu-list .menu-cta > .btn-document.is-active {
    opacity: 0.7;
  }
  .menu-list .menu-cta .btn-document span,
  .menu-list .menu-cta .btn-inquiry span {
    /* position: absolute;
    left: 0;
    bottom: 16px;
    width: 100%; */
    text-align: center;
    padding-left: 30px;
    position: relative;
  }
  .menu-list .menu-cta .btn-document span {
    color: #363636;
  }
  .menu-list .menu-cta .btn-inquiry span {
    color: #fff;
  }
  .menu-list .menu-cta span {
    color: #363636;
  }
  .menu-list .menu-cta .btn-document span::before, 
  .menu-list .menu-cta .btn-inquiry span::before {
    content: "";
    display: block;
    width: 24px;
    height: 28px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  .menu-list .menu-cta .btn-document span::before {
    background: url(../svg/icon_note_363636.svg) no-repeat center center;
    background-size: 100% auto;
  }
  .menu-list .menu-cta .btn-inquiry span::before {
    background: url(../svg/icon_mail_fff.svg) no-repeat center center;
    background-size: 100% auto;
  }
  .menu-list .menu-cta img {
    width: 26px;
    height: auto;
    margin-right: 0.5em;
  }

  .menu-list .menu-cta > a[class^='btn-']:where(:hover,:focus),
  .menu-list .menu-cta > a[class^='btn-']:is(.is-active) {
    box-shadow: none;
    opacity: 1;
    transform: translateY(4px);
  }

  .menu-icon-btn a:where(:hover,:focus) span.icon{
    color: #E3332A
  }

  .menu-icon-btn span.icon {
    width: 60px;
    height:60px;
  }

  .menu-icon-btn a {
    padding-top: 2px;
    padding-bottom: 2px;
  }
 
  .gcs-close {
    display: none;
    /*
    top: 80px;
    height: calc(100% - 80px);
    */
  }
  .menu-list .menu-cta a:where(:hover,:focus) {
    opacity: 0.7;
  }
  .menu-list > li > a {
    margin-bottom: 0;
  }
  .menu-list > li > a:not([class^='btn-']),
  .menu-list > li > div {
    margin: 0;
    pointer-events: auto;
    cursor: default;
    border: none;
    font-size: 1.5rem;
    line-height: 1.8rem;
    /* background: none; */
  }
  .menu-list > .menu-news a,
  .menu-list > .menu-case a {
    background: none;
  }

  .menu-list > .menu-news > div:nth-child(1),
  .menu-list > .menu-useful > div:nth-child(1),
  .menu-list > .menu-plan > div:nth-child(1){
    margin-bottom: 0;
  }
  .menu-list > li > a:not([class^='btn-']){
    cursor: pointer;
  }

  .menu-list > li.is-active {
    background: rgba(255, 240, 240, 0.95);
  }
  .menu-list > li:where(:hover,:focus) a,
  .menu-list > li.is-active a{
    opacity: 1;
    /* color: #F54432; */
  }
  .menu-list > li.is-active a{
    color: #222222;
  }

  .menu-list > li:where(:hover,:focus) > a + .menu-btn-wrap {
    display: block;
    border-top: 1px solid #cfcfcf;
    z-index: 2;
  }

  .menu-list > li.menu-plan:where(:hover,:focus) > a + .menu-btn-wrap ul {
    width: 496px;
    height: 100%;
    left: 50%;
    margin-left: -263px;
  }

  .menu-list > li.menu-news:where(:hover,:focus) > a + .menu-btn-wrap ul {
    width: 232px;
    height: 100%;
    left: 50%;
    margin-left: 11px;
  }

  .menu-list > li.menu-useful:where(:hover,:focus) > a + .menu-btn-wrap ul {
    width: 505px;
    height: 100%;
    left: 50%;
    margin-left: 16px;
  }

  .menu-list > li {
  }

  .menu-list > li + li {
    margin: 0;
    padding: 31px 10px 31px;
  }

  .menu-list > li + li::after {
    content: "";
    width: 0;
    height: 15px;
    display: block;
    border-right: 1px solid #D5D5D5;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -8px;
  }

  .menu-list > .menu-plan,
  .menu-list > .menu-case,
  .menu-list > .menu-news {
    display: flex;
    width: auto;
    height: 100%;
  }

  .menu-list > .menu-plan a,
  .menu-list > .menu-case a {
    width: auto;
    height: auto;
    border: none;
    display: block;
    border-radius: 0;
  }

  .menu-plan a,
  .menu-case a {
    border-radius: 0;
  }

  .menu-btn-wrap {
    display: none;
    width: 100%;
    height: 100px;
    position: fixed;
    top: 80px;
    left: 0;
    background: rgba(255, 240, 240, 1);
    z-index: 20;
  }

  .menu-btn-wrap ul {
    width: auto;
    position: absolute;
    top: 0;
    left: 0;
    border: none;
    justify-content: space-between;
  }

  .menu-btn-wrap ul > li + li a {
    border-left: none;
  }

  .menu-btn-wrap ul > li {
    width: 140px !important;
    position: relative;
  }
  .menu-btn-wrap ul > li::after {
    content: "";
    width: 0;
    height: 100px;
    display: block;
    border-right: 1px solid #ffdada;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -50px;
  }
  .menu-btn-wrap ul > li:first-child::before {
    content: "";
    width: 0;
    height: 100px;
    display: block;
    border-right: 1px solid #ffdada;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -50px;
  }

  .menu-btn-wrap ul > li + li {
  }

  .menu-btn-wrap ul > li:where(:hover,:focus) a {
    color: #ff5241;
  }

  .menu-btn-wrap ul > .menu-download {
    width: 163px!important;
  }



  .menu-icon-btn a {
    background-color: inherit;
    /* background-size: 60px auto;
    background-position: top 12px center; */
    transition: none;
    width: 100%;
    height: 100%;
    padding-top: 2px;
    display: flex;
  }

  .menu-icon-btn a:where(:hover,:focus) {
    opacity: 1;
  }

  .menu-icon-btn a:where(:hover,:focus) .menu-text{
    color: #E3332A;
  }

  /* .menu-icon-btn a span {
    padding-top: 0px;
    font-size: 1.2rem;
  } */
  .menu-icon-btn .menu-text {
    width: 100%;
    min-height: calc(2em * 1.2);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: row nowrap;
    line-height: 1.1;
  }
  .gcs-btn-sp {
    display: none;
  }
  .nav-btn {
    display: none;
  }

  /*pc・タブレット用下層メニュー*/
  .menu-group.is-sp .menu-btn-wrap {
    display: none;
  }

  .menu-group.is-pc > div[class*='menu-'].is-active .menu-btn-wrap {
    /*border-top: 1px solid #cfcfcf;*/
  }

  .menu-plan.is-active .menu-btn-wrap,
  .menu-case.is-active .menu-btn-wrap,
  .menu-news.is-active .menu-btn-wrap,
  .menu-useful.is-active .menu-btn-wrap {
    display: block;
  }

  .menu-plan.is-active .menu-btn-wrap ul {
    height: 100%;
    left: 50%;
    margin-left: -409px;
  }
  .menu-case.is-active .menu-btn-wrap ul {
    height: 100%;
    left: 50%;
    margin-left: -345px;
  }

  .menu-news.is-active .menu-btn-wrap ul {
    height: 100%;
    left: 50%;
    margin-left: -264px;
  }

  .menu-useful.is-active .menu-btn-wrap ul {
    height: 100%;
    left: 50%;
    margin-left: -352px;
  }
}

@media screen and (min-width: 1080px), print {
}



/*
	コンテンツ部のお問い合わせ
================================*/

.section-cta {
  width: 100%;
  background: url(../png/bg_cnarea_sp.png) center center / cover no-repeat;
}

.l-section.section-cta .l-section-inner {
  max-width: 500px;
  margin: 0 auto;
  padding: 42px 32px 40px;
}

.section-cta .ttl-cta {
  margin-bottom: 44px;
  text-align: center;
  line-height: 1.3;
  font-size: 2.4rem;
  font-weight: bold;
  color: #fff;
}

.btn-group.btn-cta {
  text-align: center;
}

.btn-cta .btn-document,
.btn-cta .btn-inquiry {
  width: 100%;
  height: 120px;
  font-size: 2rem;
  font-weight: bold;
  border-radius: 4px;
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.16);
}

.btn-cta .btn-document {
  border: 2px solid #42b860;
}

.btn-cta .btn-inquiry {
  border: none;
}

.btn-cta .btn-document::after,
.btn-cta .btn-inquiry::after {
  content: '';
  width: 12px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%) rotate(180deg);
  background: url(../svg/icon_arrows_fff.svg) center center / 100% auto no-repeat;
}

.btn-cta .btn-document::after {
  background-image: url(../svg/icon_arrows_green.svg);
}

@media screen and (min-width: 1080px), print {
  .section-cta {
    width: 100%;
    height: 412px;
    background: url(../png/bg_cnarea_pc.png) center center / cover no-repeat;
  }
  .l-section.section-cta .l-section-inner {
    max-width: none;
    margin: 0 auto;
    padding: 83px 0px 113px;
  }
  .section-cta .ttl-cta {
    margin-bottom: 44px;
    font-size: 4rem;
  }

  .btn-cta .btn-document,
  .btn-cta .btn-inquiry {
    width: 400px;
    margin: 0 27px;
    font-size: 2.4rem;
    border-radius: 6px;
  }

  .btn-cta .btn-inquiry > span > span {
    line-height: 1.3;
  }

  .btn-cta .btn-inquiry > span > span {
    font-size: 3rem;
  }
}

/*
	footer
================================*/
.l-footer {
  width: 100%;
  background: #efefef;
}

.l-footer a {
  color: #222222;
}

.l-footer-inner {
  width: 100%;
  padding: 20px 0 40px;
}

.l-footer-inner .copyright-group:only-child {
  margin-top: 0;
}

.footer-menu a.link-window span {
  padding-right: 16px;
  background: url(../png/icon_open_win.png) right center/12px auto no-repeat;
}

.copyright-group {
  margin-top: 40px;
}

.logo-onecompath-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row nowrap;
}

.copyright-group a {
  display: inline-block;
}

.logo-onecompath,
.logo-onecompath-wrap > img {
  width: 180px;
}

.logo-onecompath > img {
  width: 100%;
  height: auto;
}

.mark-pmark {
  width: 80px;
  margin-left: 16px;
}

.mark-pmark img {
  width: 100%;
  height: auto;
}

.copy-onecompath {
  margin-top: 10px;
  font-size: 1.2rem;
  text-align: center;
}


@media screen and (max-width: 1079px){

  .footer-menu-item {
    margin-top: 20px;
  }
  .footer-menu-item:nth-child(1) {
    margin-top: 0;
  }

  .footer-menu-item h4 {
    padding: 15px 20px;
    color: #aaaaaa;
    font-weight: bold;
    font-size: 1.6rem;
  }

  .footer-menu-item li {
   padding-left: 5px;
  }

  .footer-menu-item li a {
    width: 100%;
    padding: 15px 48px 15px 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-flow: row nowrap;
    border-bottom: 1px solid #efefef;;
    font-size: 1.6rem;
    font-weight: bold;
    background: #ffffff;
  }

  .footer-menu-item li a::after {
    content: '';
    width: 8px;
    height: 100%;
    background: url(../svg/icon_arrows_aaa.svg) center center/100% auto no-repeat;
    position: absolute;
    right: 16px;
    top: 0;
    transform: rotate(180deg);
  }

  .footer-menu-item li:last-child a {
    border-bottom: none;
  }
}
@media screen and (min-width: 1080px), print {
  .l-footer-inner {
    width: 1080px;
    margin: 0 auto;
    padding: 40px 0 20px;
  }

  .footer-menu {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-flow: row nowrap;
  }

  .footer-menu-item {
    margin: 0 32px;
  }

  .footer-menu-item h4 {
    color: #aaaaaa;
    font-weight: bold;
    font-size: 1.6rem;
  }

  .footer-menu-item ul {
    margin-top: 10px;
  }

  .footer-menu-item li a {
    width: 100%;
    font-size: 1.4rem;
    line-height: 1.6;
  }

  .copyright-group {
    margin-top: 20px;
  }

  .copyright-group a {
    display: inline-block;
  }

  .logo-onecompath,
  .logo-onecompath-wrap > img {
    width: 180px;
  }

  .mark-pmark {
    width: 100px;
    margin-left: 24px;
  }

}

