/* RESET */
/* Josh's Custom CSS Reset
https://www.joshwcomeau.com/css/custom-css-reset/ */
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
}
html,
body {
  height: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  line-height: 1.5;
}
img,
picture,
video,
canvas,
svg {
  display: block;
}
input,
button,
textarea,
select {
  font: inherit;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* ログイン時の空白削除 */
.admin_bar {
  margin-top: 0 !important;
}

/* DEFAULTS */
img {
  display: inherit;
}
ul {
  list-style: none;
}

a {
  color: var(--attract-color);
  text-decoration: underline 1px currentColor;
  transition: opacity 125ms linear;
}
a:hover {
  opacity: 0.8;
}
.pc {
  display: block;
}
.sp {
  display: none;
}
.mt0 {
  margin-top: 0 !important;
}
.mb0 {
  margin-bottom: 0 !important;
}

/* LAYOUTS */
.flex {
  display: flex;
}
.grid {
  display: grid;
}
.col-2-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}
.col-3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

/* ELEMENTS */
.container {
  margin: 0 auto;
  width: 100%;
  max-width: 940px;
}
.container.wide {
  max-width: 1920px;
  padding: 0;
}
.container.fullwidth {
  max-width: 100%;
  padding: 0;
}
.no-flex {
  display: block !important;
  margin-top: 0 !important;
}

/* ボタン風リンク */
.link-button,
.link-button-lg,
.wp-block-button__link {
  position: relative;
  display: inline-grid;
  place-items: center;

  padding: 0 20px;
  border-radius: 2em;
  background-color: var(--attract-color);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);

  font-weight: bold;
  color: #fff;
  text-decoration: none !important;
  text-align: center;
}
.link-button,
.wp-block-button__link {
  width: 280px;
  height: 45px;
  font-size: 13px;
  cursor: pointer;
}
.link-button-lg {
  width: 400px;
  height: 60px;
  font-size: 16px;
}

.link-button-icon,
.link-button .arrow,
.link-button-lg .arrow,
.wp-block-button__link .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.link-button-icon {
  left: 20px;
}
.link-button .arrow,
.wp-block-button__link .arrow {
  right: 15px;
}
.link-button-lg .arrow {
  right: 20px;
}

/* マーカー */
.marker-sm,
.marker-md,
.marker-lg {
  --bg-color: var(--attract-color);
  --fg-color: white;

  display: inline-grid;
  place-items: center;
  vertical-align: top;

  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--bg-color);
}
.marker-sm.white,
.marker-md.white,
.marker-lg.white {
  --bg-color: white;
  --fg-color: var(--attract-color);
}
.marker-sm {
  width: 15px;
  height: 15px;
}
.marker-md {
  width: 20px;
  height: 20px;
}
.marker-lg {
  width: 30px;
  height: 30px;
}

.arrow::before {
  content: "";
  width: 5.5px;
  height: 5.5px;

  border: solid 2px var(--fg-color);
  border-left: none;
  border-bottom: none;
}
.arrow.right::before {
  transform: rotate(45deg);
  transform-origin: 3px 2px;
}
.arrow.down::before {
  transform: rotate(135deg);
  transform-origin: 3px 2.5px;
}

/* 前・次 */
.arrow.prev::before,
.arrow.next::before {
  width: 7px;
  height: 7px;
}
.arrow.prev::before {
  transform: rotate(225deg);
  transform-origin: 4px 3.5px;
}
.arrow.next::before {
  transform: rotate(45deg);
  transform-origin: 2px 2px;
}

/* 展開 [＋] */
.expand::before,
.expand::after {
  grid-row: 1;
  grid-column: 1;
  content: "";
  display: inline-block;
  background-color: var(--fg-color);
}
.expand::before {
  width: 8px;
  height: 2px;
}
.expand::after {
  width: 2px;
  height: 8px;
}
.marker-sm.expand::before,
.marker-sm.expand::after {
  /* ズレを補正 */
  /* translate3d でFirefoxのサブピクセルレンダリングの問題を回避 */
  /* FIX: Chromeで角がぼやける */
  transform: translate3d(-0.5px, -0.5px, 1px);
}

/* リンク */
.link-md,
.link-md-compact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
}
.link-md-compact {
  gap: 5px;
}
.link-md .marker-md.arrow {
  margin-top: 2px;
}

/* 小リンク */
.link-sm::after {
  content: "";
  display: inline-block;
  margin-left: 10px;
  width: 6px;
  height: 6px;
  transform: translate(-50%, -50%) rotate(45deg);
  transform-origin: 2.5px 2px;

  border: solid var(--attract-color) 2px;
  border-left: none;
  border-bottom: none;
}

/* インラインアイコン */
.inline-icon {
  display: inline-block;
  width: 1.2em;
  height: auto;
  margin-inline: 10px;
}

/* 記事カテゴリ */
/* .category-label {
  display: flex;
  gap: 5px;
} */
.category-label {
  display: flex;
  gap: 10px;
  font-size: 11px;
  color: #fff;
  text-align: center;
  text-decoration: none;
}
.category-label a {
  padding: 2px 10px;
  border-radius: 4px;
  background-color: var(--main-color);
  min-width: 110px;
}

/* もっと見るボタン */
.readmore {
  margin-top: 30px;
}

/* 記事情報 */
.article-info {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.article-info .publish-date {
  letter-spacing: 1px;
}

/* 画像の上に要素を重ねる */
.stacked-image {
  position: relative;
  overflow: hidden;
}
.stacked-image .stacked-image-base {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stacked-image .stacked-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0187d766;
}

/* ユーティリティナビ */
.list-md li a {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 10px 3px;
  border-top: solid 1px #bbbbbb;
  font-size: 13px;
  line-height: 1;
  color: inherit;
  text-decoration: none;
}
.list-md li a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  transform-origin: 2.5px 2px;

  border: solid var(--attract-color) 2px;
  border-left: none;
  border-bottom: none;
  line-height: 1;
}
.list-lg > li {
  border-top: solid 1px #bbbbbb;
}
.list-lg > li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 25px 20px;
  font-size: 15px;
  line-height: 1;
  color: inherit;
  text-decoration: none;
}
.list-lg > li > a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  transform-origin: 2.5px 2px;

  border: solid var(--attract-color) 2px;
  border-left: none;
  border-bottom: none;
  line-height: 1;
}

/* ドロップダウンメニュー */
.dropdown .dropdown-button,
.submenu .submenu-button {
  cursor: pointer;
}
.dropdown > .dropdown-button,
.submenu > .submenu-button {
  list-style: none; /* <details>デフォルトの矢印を表示しない */
}
.dropdown > .dropdown-button::-webkit-details-marker,
.submenu > .submenu-button::-webkit-details-marker {
  display: none;
}
.dropdown-menu {
  font-weight: 500;
}
.dropdown-menu li {
  border-color: #0001;
}
.dropdown-menu li a {
  transition: background-color 125ms ease-out;
}
.dropdown-menu li a:hover {
  background-color: #0001;
}
/* マーカーアニメーション */
[class^="marker-"],
[class^="marker-"]::before {
  transition: 250ms ease-out;
  transition-property: transform, opacity;
}
/* 矢印 */
details.open > summary::after {
  transform: translateX(3px) rotate(-45deg) !important;
}
/* +（プラス）マーカー */
details.open > summary [class^="marker-"].expand {
  transform: rotate(90deg) !important;
}
details.open > summary [class^="marker-"].expand::before {
  opacity: 0 !important;
}

/* SNSリンク */
.social-links {
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.social-link-button {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
}

/* お知らせ一覧 */
.service-notices {
  margin-top: 64px;
}
.service-notices-title {
  margin-bottom: 18px;
  font-size: var(--font-heading-2-size);
}
/* .service-notices-list {} */
.service-notice {
  align-items: center;
  padding: 26px 0 24px;
  border: solid 1px var(--sub-color);
  border-left: none;
  border-right: none;
  cursor: pointer;
}
.service-notice .article-info {
  align-items: center;
  flex-direction: unset;
}
.service-notice .article-info .publish-date {
  font-size: unset;
}
/* .service-notice .category-label a {
  display: unset;
  min-width: unset;
} */
.service-notice:not(:first-child) {
  border-top: none;
}
.service-notice-body {
  flex: 1;
}
.service-notice-body.flex {
  flex-wrap: wrap;
}
.service-notice-text {
  margin: 5px 10px 0 0 !important;
  width: 100%;
}
.service-notice-text a {
  display: block;
  text-decoration: none !important;
  color: inherit !important;
}

/* GLOBAL */
/* 全ページ共通部分のスタイル */
:root {
  --main-color: #0087d7;
  --main-color-translucent: rgba(0, 135, 215, 0.97);
  --main-color-gradient: linear-gradient(
    to right,
    #009bed,
    #0187d7 50%,
    #0074d7
  );
  --attract-color: #5ab900;
  --attention-color: #ff4e00;
  --sub-color: #aaaaaa;
  --bg-color-1: #e3f6fd;
  --bg-color-2: #edf0f2;
  --bg-color-3: #54606a;

  --font-heading-1-size: 40px;
  --font-heading-2-size: 26px;
  --font-heading-3-size: 20px;
  --font-body-size: 15px;
  --font-attribute-size: 13px;

  --font-page-title-size: 30px;

  font: 500 var(--font-body-size) "Noto Sans JP", sans-serif;
  scroll-behavior: smooth;
}

html,
body {
  min-width: 360px;
}

/* ヘッダー */
.global-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10010;
  width: 100%;
  height: 80px;

  background-color: #fff;
  font-size: 16px;
}
.global-header .container {
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.global-header .logo {
  margin-left: 40px;
}
@media only screen and (max-width: 750px) {
    .global-header .logo {
        margin-left: 20px;
}
}
.global-header .logo img {
  width: 300px;
}

/* ヘッダーナビゲーション */
nav.global-navigation {
  align-items: center;
}
nav.global-navigation > ul {
  align-items: center;
  gap: 30px;
  margin: 0 40px;
}
nav.global-navigation .child {
  padding-left: 20px;
}
nav.global-navigation .nav-dropdown-item a {
  color: #000;
  text-decoration: none;
}

/* 新規加入をご検討中の方 */
.nav-contract-support {
  position: relative;
  flex-shrink: 0;
  line-height: 1.1;
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.3));
}
.nav-contract-support .dropdown-button {
  box-shadow: none;
  z-index: 1;
  font-size: 15px;
  transition: background-color 0.3s;
}
.nav-contract-support:not([open]) .dropdown-button:hover {
  background-color: #7bc733;
}
.nav-contract-support .dropdown-content {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 0;

  margin-top: -22.5px;
  padding-top: 22.5px;

  width: 100%;
  background-color: var(--attract-color);
  color: #fff;
  border-radius: 0 0 22.5px 22.5px;
}
.nav-contract-support .dropdown-menu {
  padding-left: 15px;
  padding-bottom: 5px;
}
.nav-contract-support .dropdown-menu li a {
  padding: 15px 20px 15px 5px;
  border-color: #4da812;
}
.nav-contract-support .dropdown-menu li a:hover {
  background-color: #fff2;
}
.nav-contract-support .dropdown-menu li a::after {
  border-color: #fff;
}

/* ナビゲーション */
/* [PC用] ドロップダウンメニュー項目 */
.nav-dropdown-item {
  user-select: none;
  position: relative;
  flex-shrink: 0;
}
.nav-dropdown-item .dropdown-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.3s;
  padding: 1rem 0.75rem;
  border-radius: 0.25rem;
  transition: all 0.3s;
}
.nav-dropdown-item details.open .dropdown-button {
  background-color: #aaa2;
}
.nav-dropdown-item .dropdown-button:hover {
  opacity: 0.65;
}
.nav-dropdown-item .dropdown-button::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  transform: translate(-50%, -50%) rotate(135deg);
  transform-origin: 5px 5px;

  border: solid var(--attract-color) 2px;
  border-left: none;
  border-bottom: none;
}
.nav-dropdown-item .noicon::after {
  content: none;
}

.nav-dropdown-item .dropdown-content {
  position: absolute;
  width: 300px;
  top: calc(100% + 13px);
  right: 0;
}
.nav-dropdown-item .dropdown-menu {
  background-color: rgba(246, 246, 246, 0.95);
  box-shadow: 0 0 8px #0002;
}
.nav-dropdown-item .dropdown-menu li:first-child {
  border-color: var(--attract-color);
}
.nav-dropdown-item .dropdown-menu li a {
  justify-content: flex-start;
}
.nav-dropdown-item .dropdown-menu li a::after {
  margin-left: 1rem;
}
/* サブメニュー */
.submenu .submenu-button {
  display: flex;
  align-items: stretch;
  font-size: 15px;
  line-height: 1;
  transition: background-color 125ms ease-out;
}
.submenu.open .submenu-button {
  background-color: #7771;
}
.submenu .submenu-button a {
  display: flex;
  align-items: center;
  flex: 1;
  padding: 25px 20px;
  text-decoration: none;
  color: inherit;
}
.submenu .submenu-button a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  transform-origin: 2.5px 2px;

  border: solid var(--attract-color) 2px;
  border-left: none;
  border-bottom: none;
  line-height: 1;
}
.submenu .submenu-button button {
  appearance: none;
  border: none;
  background: transparent;
}
.submenu .submenu-button button:hover {
  background-color: #0001;
}
.submenu .submenu-button button .marker-md {
  margin: auto 1rem;
}
.submenu .dropdown-content {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  max-width: 320px;
  background-color: rgba(246, 246, 246, 0.95);
  box-shadow: 0 0 8px #0002;
  overflow: hidden;
  overflow-y: scroll;
  height: 100%;
}
.submenu .dropdown-content > .list-md > li {
  border-top: solid 1px #0001;
}
.submenu .dropdown-content .list-md > li > a {
  justify-content: space-between;
  padding: 15px 25px;
}
.submenu .dropdown-content .list-md > li:first-child {
  border-top: none;
}
.submenu .dropdown-content .list-md > li > .list-md {
  margin-left: 1rem;
  border-top: solid 1px #0001;
}
.submenu .dropdown-content .list-md .list-md > li {
  border-top: none;
}
.list-md .parent {
  font-size: 14px;
  color: #0e8bd9 !important;
  padding: 10px 20px;
  font-weight: bold;
  border-top: solid 1px #bbb !important;
}
@media screen and (max-width: 740px) {
  .list-md .parent {
    padding: 10px 0;
  }
}
/* サイト内検索 */
.material-symbols-outlined {
  line-height: unset;
  color: var(--attract-color);
  background: #f3f3f3;
  border-radius: 100px;
  width: 40px;
  text-align: center;
}
.search_icon {
  cursor: pointer;
}
.search_icon:hover {
  opacity: 0.9;
}
.search_wrapper {
  background: rgb(0 0 0 / 42%);
  padding: 20px;
  position: absolute;
  right: -280px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  top: 80px;
  width: 280px;
  font-size: 13px;
  text-align: center;
}

.s-btn {
  color: #555;
  padding: 0 10px;
}

/* [TB・SP用] メニュー */
.nav-menu-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;

  transition: 0.3s ease-out;
  transition-property: visibility, opacity;
}
/* メニューを開いた時 */
.nav-menu-container.open {
  opacity: 1;
  visibility: visible;
}

.nav-menu-backdrop {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;

  background-color: rgba(237, 240, 242, 0.9);
  transition: 0.3s ease-out;
  transition-property: right;
}
.nav-menu-container.open .nav-menu-backdrop {
  right: 375px;
}

.nav-menu {
  overflow-y: auto;
  margin-left: auto;
  width: 375px;
  height: 100%;
  background-color: rgba(84, 96, 106, 0.9);

  transform: translateX(100%);
  transition: 0.3s ease-out;
  transition-property: transform;
}
.nav-menu-container.open .nav-menu {
  transform: translateX(0);
}

/* メニュー操作用ボタン */
.nav-menu-button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 80px;
  height: 80px;

  border: none;
  background: var(--main-color-gradient);

  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  color: white;
  text-decoration: none;

  user-select: none;
  cursor: pointer;
}
.nav-menu-button img {
  margin-bottom: 5px;
  width: 34px;
  height: auto;
}
.nav-menu-button.nav-home img {
  margin-top: 3px;
}
.nav-menu-button.nav-menu-close {
  flex: 1;
  flex-direction: row;
  align-items: center;
  padding: 20px;
}
.nav-menu-close img {
  margin-left: auto;
  margin-right: 12px;
  margin-bottom: 0;
  width: 24px;
}

/* ドロップダウンメニュー */
.nav-menu .dropdown {
  overflow: hidden;
}
.nav-menu .list-md li a {
  justify-content: flex-start;
}
.nav-menu .list-md li a::after {
  margin: 0 1rem;
}
/* サブメニュー */
.nav-menu .submenu .submenu-button {
  display: flex;
  align-items: stretch;
  font-size: 13px;
  line-height: 1;
  color: inherit;
  text-decoration: none;
}
.nav-menu .submenu .submenu-button > a {
  padding: 15px 20px 15px 5px;
}
.nav-menu .submenu .submenu-button > button .marker-md {
  margin: auto 1.55rem;
}
.nav-menu .submenu .dropdown-content {
  position: relative;
  width: 100%;
  max-width: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  padding-left: 1rem;
  background-color: transparent;
  box-shadow: none;
}
.nav-menu .submenu .dropdown-content .list-md > li > a {
  padding: 15px 15px 15px 5px;
  border-top-width: 1px;
  line-height: 16px;
}
.nav-menu .submenu .dropdown-content .list-md > li > .list-md {
  border-top-width: 1px;
}

/* 紹介メニュー */
.introduce-menu {
  padding: 40px 20px 35px;
}
.introduce-menu-item:not(:first-child) {
  margin-top: 10px;
}
.introduce-menu-item {
  border-radius: 10px;
  background-color: #fff;
}
.introduce-menu-item .dropdown-button {
  padding: 8px 20px 8px 15px;
}
.introduce-menu-item .dropdown-button .flex {
  align-items: center;
}
.introduce-menu-item .menu-icon {
  margin-right: 10px;
}
.introduce-menu-item .marker-md {
  margin-left: auto;
}

.introduce-menu-item .dropdown-menu {
  padding-left: 85px;
  padding-bottom: 15px;
}
.introduce-menu-item .dropdown-menu li a {
  padding: 15px 20px 15px 5px;
}
.life-with-ccs {
  padding: 8px 20px 8px 15px;
}
.life-with-ccs .flex {
  align-items: center;
}
.life-with-ccs a {
  color: #000;
  text-decoration: none;
}

/* 新規加入をご検討中の方 */
.contract-support {
  margin: 25px auto 0;
  width: 275px;

  border-radius: 10px;
  background-color: var(--attract-color);
  color: #fff;
}
.contract-support .dropdown-button .flex {
  padding: 16px 15px 16px 20px;
  align-items: center;
}
.contract-support .dropdown-menu {
  padding-left: 55px;
  padding-bottom: 15px;
}
.contract-support .dropdown-menu li {
  border-color: #4da812;
}
.contract-support .dropdown-menu li a {
  padding: 15px 20px 15px 5px;
}
.contract-support .dropdown-menu li a:hover {
  background-color: #fff2;
}
.contract-support .dropdown-menu li a::after {
  border-color: #fff;
}
.contract-support .menu-icon {
  width: 20px;
  margin-right: 15px;
}
.contract-support .marker-md {
  margin-left: auto;
}

/* 白背景 */
.subscriber-menu,
.utility-nav,
.social-links {
  background-color: #fff;
}

/* 契約中の方向けメニュー */
.subscriber-menu-item {
  border-bottom: solid 1px var(--bg-color-3);
}
.subscriber-menu-item > a {
  color: inherit;
  text-decoration: none !important;
}
.subscriber-menu-item > a:hover,
.subscriber-menu-item .dropdown-button:hover {
  background-color: #0001;
}
.subscriber-menu-item > a,
.subscriber-menu-item .dropdown-button .flex {
  padding: 18px 15px;
  align-items: center;
}
.subscriber-menu-item .dropdown-menu {
  padding-left: 55px;
  padding-bottom: 15px;
}
.subscriber-menu-item .dropdown-menu a {
  padding: 15px 20px 15px 5px;
}
.subscriber-menu-item .menu-icon {
  width: 32px;
  margin-right: 10px;
}
.subscriber-menu-item .marker-md {
  margin-left: auto;
}

/* ユーティリティナビ */
.sp-nav .utility-nav {
  border: none;
  font-weight: 500;
}
.sp-nav .utility-nav > li a {
  padding: 15px 20px;
  border-top: none;
  border-bottom: solid 1px var(--bg-color-3);
}
.sp-nav .utility-nav .inline-icon {
  margin-right: auto;
}
.sp-nav .social-links {
  padding: 30px 0 40px;
  gap: 20px;
}
.sp-nav .social-links-button img {
  width: 50px;
}

/* フローティングメニュー項目 */
.floating-menu {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 10005;
  flex-direction: column;
}
.menu-item {
  width: 90px;
  height: 80px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding-left: 2px;
  padding-bottom: 2px;
  background-color: var(--main-color-translucent);

  font-size: 12px;
  text-align: center;
  line-height: 1;
  color: #fff;
  text-decoration: none !important;

  transition: 0.3s;
  transition-property: opacity, background-color;
}
.menu-item:hover {
  opacity: 1;
  background-color: #39a2e0;
}
.menu-item img {
  width: 30px;
  height: 30px;
}
.menu-item:first-child {
  border-top-left-radius: 15px;
}
.menu-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 5px;
  bottom: 1px;
  width: 80px;
  height: 1px;
  background-color: #2f76be;
}

/* helpfeel */
.helpfeel {
  position: fixed;
  bottom: 20px;
  right: 110px;
  z-index: 10005;
  filter: drop-shadow(rgba(0, 0, 0, 0.3) 0px 0px 5px);
  cursor: pointer;
}

/* メインコンテンツ */
main {
  margin-top: 80px;
}

/* フッター */
.global-footer {
  /* DEBUG */
  /* position: fixed;
    inset: 0;
    top: unset; */

  padding: 90px 90px 10px;
  background-color: #fff;
}

.footer-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas: "company-info social-links util-nav";
  gap: 50px;
  align-items: center;
}
.footer-info > * + * {
  height: 200px;
  position: relative;
}
.footer-info > * + *::before {
  content: "";
  position: absolute;
  top: 0;
  left: -25px;
  width: 1px;
  height: 100%;
  background-color: #bbbbbb;
}

.company-info {
  grid-area: company-info;
}
.company-info > * {
  line-height: 1.75;
  font-size: 13px;
}
.company-info .name {
  margin-bottom: 10px;
  font-weight: bold;
}
.company-info .name,
.company-info .tel-number {
  font-size: 16px;
}
.company-info .safety img {
  margin-top: 5px;
  width: 35px;
}

.footer-info .social-links {
  grid-area: social-links;
}

.footer-info .utility-nav {
  grid-area: util-nav;
}
.footer-info .utility-nav li:first-child a {
  border-top: none;
  padding-top: 0;
}

.copyright {
  margin: 70px 0 0;
  text-align: center;
  font-size: var(--font-attribute-size);
  font-weight: 500;
  color: var(--bg-color-3);
}
.search_detal {
  text-align: center;
  margin: 50px 0 0;
}

@media screen and not (max-width: 1080px) {
  .sp-nav {
    display: none;
  }

  .nav-contract-support .dropdown-button br {
    display: none;
  }

  .menu-item-contact br {
    display: none;
  }

  .menu-item-procedure br {
    display: none;
  }
}
@media screen and (min-width: 740px) and (max-width: 1080px) {
  /* .sp-nav {
        display: none;
    } */
  .menu-item-contact br {
    display: none;
  }
  .menu-item-procedure br {
    display: none;
  }
  .menu-item-cloud_mail br {
    display: none;
  }

  .company-info .address br {
    display: none;
  }
}
@media screen and (max-width: 740px) {
  /* .sp-nav {
        display: none;
    } */
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }

  .pickup-title h3 br {
    display: none;
  }

  .company-info .address br {
    display: none;
  }
}

/* For tablets */
@media screen and (max-width: 1080px) {
  /* LAYOUTS */
  .col-2-grid,
  .col-3-grid {
    gap: 30px;
  }

  /* リンク */
  .link-md,
  .link-md-compact {
    font-size: 16px;
  }
  .link-md .marker-md.arrow {
    margin-right: 5px;
  }

  /* ELEMENTS */
  .container {
    max-width: 768px;
    margin: 0 auto;
    padding: 30px;
  }
  .article-info {
    gap: 10px;
    flex-wrap: wrap;
  }
  .article-info .publish-date {
    width: 75px;
  }
  /* お知らせ一覧 */
  .service-notices {
    margin-top: 100px;
  }
  .service-notices-title {
    text-align: center;
  }
  .service-notice {
    padding: 15px 0;
  }
  .service-notice-text {
    margin: 0 10px 0 20px;
  }
  .category-label {
    flex-wrap: wrap;
  }

  /* GLOBAL */
  /* 全ページ共通部分のスタイル */
  :root {
    --font-heading-1-size: 28px;
    --font-heading-2-size: 20px;
    --font-heading-3-size: 16px;
    --font-body-size: 13px;
    --font-attribute-size: 11px;

    --font-page-title-size: 20px;
  }

  /* ヘッダー */
  .global-navigation {
    flex: 1;
  }
  .global-navigation .nav-contract-support {
    margin: 0 auto;
  }

  .nav-dropdown {
    display: none;
  }

  /* フローティングメニュー項目 */
  .floating-menu {
    inset: unset;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: row;
  }
  .menu-item {
    flex: 1;
    height: 70px;
  }
  .menu-item:first-child {
    border-top-left-radius: 0;
  }
  .menu-item:not(:last-child)::after {
    content: "";
    position: absolute;
    inset: unset;
    right: 0;
    top: 4px;
    width: 1px;
    height: 62px;
    background-color: #2f76be;
  }

  /* helpfeel */
  .helpfeel {
    right: auto;
    left: 50%;
    bottom: 75px;
    translate: -50% 0;
    width: 180px;
    height: auto;
  }

  /* フッター */
  .global-footer {
    padding: 90px 30px;
    padding-bottom: 180px;
  }

  .footer-info {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, max-content);
    grid-template-areas:
      "company-info util-nav"
      "social-links util-nav";
    row-gap: 0;
  }
  .company-info > * {
    line-height: 1.5;
  }
  .company-info .safety img {
    margin: 5px auto;
  }
  .footer-info .social-links {
    margin-top: 10px;
    padding: 0;
    height: auto;
    justify-content: start;
  }
  .footer-info .social-links::before {
    display: none;
  }
  /* サイト内検索 */
  .search_wrapper {
    background: #fff;
    position: unset;
    width: auto;
  }
  .search_wrapper.pc {
    display: none;
  }
}

/* For smartphones */
@media screen and (max-width: 740px) {
  /* iframe */
  iframe {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
  }

  /* LAYOUTS */
  .col-2-grid,
  .col-3-grid {
    grid-template-columns: 1fr;
  }

  /* ELEMENTS */
  .container {
    max-width: 100%;
    padding: 0 10px;
  }

  /* もっと見るボタン */
  .readmore {
    margin-top: 20px;
  }

  /* ユーティリティナビ */
  .utility-nav {
    border: solid 1px #bbbbbb;
    border-left: none;
    border-right: none;
  }
  .utility-nav li a {
    padding: 12px 15px 12px 10px;
  }
  /* お知らせ一覧 */
  .service-notices {
    margin-top: 30px;
    padding: 0 10px;
  }
  .service-notices-title {
    margin-bottom: 15px;
    font-size: 20px;
    text-align: left;
  }
  .service-notice {
    padding: 15px 0 14px;
  }
  .service-notice-body {
    flex: 1;
    flex-direction: column;
  }
  .service-notice-text {
    margin: 0 10px 0 0;
  }

  /* GLOBAL */
  /* 全ページ共通部分のスタイル */
  :root {
    --font-heading-1-size: 28px;
    --font-heading-2-size: 20px;
    --font-heading-3-size: 16px;
    --font-body-size: 13px;
    --font-attribute-size: 11px;

    --font-page-title-size: 20px;
  }

  /* ヘッダー */
  .global-header {
    height: 64px;
  }
  .global-header .logo {
    width: 100px;
  }
  .global-header .logo img {
    width: 64px;
  }
  .global-navigation {
    flex: 1;
  }

  /* ヘッダーナビゲーション */
  nav.global-navigation .nav-contract-support {
    margin-right: 15px;
  }
  nav.global-navigation .nav-contract-support .link-button {
    width: 180px;
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
  }
  .global-navigation .link-button-icon {
    width: 20px;
    height: auto;
  }

  /* ナビゲーション */
  .nav-menu {
    width: 100%;
  }
  .nav-menu-backdrop {
    display: none;
  }
  /* メニュー操作用ボタン */
  .nav-menu-button {
    width: 70px;
    height: 70px;
  }
  .nav-menu-button img {
    width: 30px;
    height: auto;
  }

  .nav-menu .submenu .submenu-button > a {
    padding: 15px 0 15px 5px;
  }

  /* フローティングメニュー項目 */
  .menu-item {
    width: 25%;
    height: 65px;
  }

  /* フッター */
  .global-footer {
    padding: 48px 0 155px;
  }
  .global-footer .container {
    padding: 0;
  }

  .footer-info {
    grid-template-columns: 1fr;
    grid-template-areas:
      "company-info"
      "social-links"
      "util-nav";
    gap: 0;
  }
  .footer-info > * + * {
    height: auto;
  }
  .footer-info > * + *::before {
    display: none;
  }

  .footer-info .company-info {
    text-align: center;
  }
  .footer-info .social-links {
    margin-top: 20px;
    justify-content: center;
  }
  .footer-info .utility-nav {
    margin-top: 48px;
  }

  .footer-info .utility-nav li:first-child a {
    padding-top: 12px;
  }

  .copyright {
    margin-top: 20px;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
  }

  /* メインコンテンツ */
  main {
    margin-top: 70px;
  }
}

/* 展開 [＋] */
.marker-lg.expand::before {
  width: 12px;
  height: 2px;
}
.marker-lg.expand::after {
  height: 12px;
  width: 2px;
}

/* +（プラス）マーカー */
.dropdown[open] > summary [class^="marker-"].expand {
  transform: rotate(90deg);
}
.dropdown[open] > summary [class^="marker-"].expand::before {
  opacity: 0;
}

section.contact-block {
  background: linear-gradient(to right, #f7fdff, #e3f6fd);
}
section.contact-block .container {
  padding: 5rem 10px;
  text-align: center;
}
section.contact-block h2 {
  margin-bottom: 1rem;
}
section.contact-block h2 + p > span {
  display: inline-block;
}
.contact-block-buttons {
  margin-top: 2rem;
}
.contact-block-buttons > div {
  width: 100%;
}
.contact-block-buttons .link-button-lg {
  width: 100%;
  grid-template-columns: repeat(3, max-content);
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-weight: 500;
  background-color: white;
  color: inherit;
  transition: 75ms ease-out;
}
.contact-block-buttons .link-button-lg:hover,
.contact-block-buttons .link-button-lg:focus {
  filter: brightness(0.95);
}
.contact-block-buttons .link-button-lg:active {
  filter: brightness(0.85);
}
.contact-block-buttons .link-button-lg span.phone-number {
  margin-left: 0.75rem;
  font-size: larger;
  line-height: 1;
}
.contact-block-buttons .link-button-lg br.only-sp {
  display: none;
}
/* For tablets */
@media screen and (max-width: 1080px) {
  .contact-block-buttons {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, max-content);
  }
  .contact-block-buttons .link-button-lg {
    max-width: 445px;
  }
}
/* For smartphones */
@media screen and (max-width: 740px) {
  .contact-block-buttons .link-button-lg br.only-sp {
    display: block;
  }
}

/* 内部リンクのヘッダー対策 */
:target::before {
  content: "";
  display: block;
  height: 80px; /* ずらしたい高さ */
  margin-top: -80px; /* heightに対するネガティブマージン */
  visibility: hidden;
}
@media screen and (max-width: 740px) {
  :target::before {
    height: 70px;
    margin-top: -70px;
  }
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.logo-pc { display: block !important; }
.logo-sp { display: none !important; }
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
    .logo-pc { display: none !important; }
    .logo-sp { display: block !important; }
}