@charset "UTF-8";
/*---------------------------
全体のレイアウト
---------------------------- */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  /*font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;*/
  /*font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;*/
  color: var(--col-main);
  background: var(--bac-main);
  line-height: 1.5;
  font-size: 1.6rem;
  position: relative;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin-right: auto;
  margin-left: auto;
  display: block;
}

.l-contents {
  width: 100%;
  max-width: 1160px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 24px;
  display: block;
}
.l-contents img {
  width: 100%;
}

@media screen and (max-width: 1023px) {
  .pc {
    display: none !important;
  }
}
@media not screen and (max-width: 1023px) {
  .sp {
    display: none !important;
  }
}

main{
  min-height: calc(100vh - 300px);
  margin-bottom: min( 100vw / 750 * 80 , 80px);
}
/*------------------------------
文字
-------------------------------*/
span {
  display: inline-block;
}

small {
  font-size: 0.8em;
}

a{
  color: var(--col-accent);
}

/*-------------------------------
画像
---------------------------------*/
img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-right: auto;
  /* margin-left: auto; */
}

/*---------------------------
アコーディオン
-----------------------------*/
dt:after {
  content: "＋";
  font-weight: bold;
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

dt.active:after {
  content: "－";
}

dd {
  display: none;
}

/*-------------------------
テーブル
---------------------------*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*==========================
// header
============================*/
header {
  position: sticky;
  background:var(--bac-main);
  top: 0;
  z-index: 2;
  padding: min( 100vw / 750 * 16 , 16px);
}
header .container {
  display: flex;
  align-items: center;
  gap: min( 100vw / 750 * 24 , 24px);
}

/*---------------------
// ナビ
-----------------------*/

header ul.header__nav{
  display:flex;
  gap: min( 100vw / 750 * 20 , 20px);
  height:100%;
  align-items: center;
}

/*---------------------
// ロゴ
-----------------------*/
header .container .header__logo{
  flex-grow: 1;
}
header .container .header__logo a{
  display:inline-block;
}
header .container .header__logo a img{
  /* メニュー追加に伴う修正 ロゴの大きさを変更2024/4/17 */
  /* width: 50%;
  height: 50%; */
  width: 100%;
  height: 100%;
  max-width: 216px;
}
/* メニュー追加に伴う修正 ハンバーガーメニューの大きさを小さくする2024/4/17 */
header .container dt {
  width: min(14.9333333333vw, 48px);
  height: min(14.9333333333vw, 48px);
  margin: 0 0 0 auto;
  padding-top: min(3.2vw, 4px);
}
header .container dt hr {
  width: min(8.5333333333vw, 40px);
  margin: 0 auto min(1.3333333333vw, 6px) auto;
  height: min(0.8vw, 4px);
  background: var(--col-main);
}
header .container dt:after {
  content: "MENU";
  position: relative;
  width: 100%;
  -webkit-transform: unset;
          transform: unset;
  text-align: center;
  top: unset;
  right: unset;
  display: block;
  font-size: min(2.9333333333vw, 14px);
  margin-top: min(-0.8vw, -6px);
}
header .container dt.active:after {
  content: "CLOSE";
  color: var(--col-accent);
}
header .container dd {
  position: absolute;
  top: min(14.9333333333vw, 81px);
  left: 0px;
  width: 100vw;
  background: var(--bac-accent);
  color: #fff;
  padding: min(2.1333333333vw, 16px);
}
/* メニュー追加に伴う修正2024/4/17 END */
header .container dd a {
  display: block;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
  padding: min(2.1333333333vw, 16px);
  text-align: center;
  font-size: clamp(13px, 2.1333333333vw, 16px);
}

/*---------------------
// CTA
-----------------------*/
header .container .header__cta a{
  display:inline-block;
  background:var(--bac-button);
  color:var(--col-button);
  padding: min( 100vw / 750 * 8 , 8px) min( 100vw / 750 * 16 , 16px);
}

/*---------------------
// FV
-----------------------*/
.fv img{
  object-fit: cover;
  width:100%;
  height: min( 100vw / 750 * 340 , 340px);
}
.fv .sp img{
  height: auto;
}
/*---------------------
// YouTube
-----------------------*/
@media screen and (max-width:750px) {
  .l-video {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .l-video iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
}
.l-video {
  max-width: 800px;
  margin: 56px auto;
}
.p-caution__video {
  max-width: 832px;
  padding: 0 16px;
  margin-top: -32px;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
}
.p-caution__video p {
  width: 100%;
  padding: 16px;
  border: 1px solid #cf2e2e;
  text-align: center;
  color: #cf2e2e;
}

/*======================
// Footer
========================*/
/*---------------------
// フッターナビ
-----------------------*/
footer{
  text-align:center;
}
footer ul.footer__nav{
  display:flex;
  gap: min( 100vw / 750 * 20 , 20px);
  height:100%;
  align-items: center;
  justify-content: center;
}

footer .footer__logo a img{
  width: 50%;
  height: 50%;
  margin-left: auto;
}
.l-btn {
  text-align: right;
  padding-right: 16px;
}
.l-btn__top {
  max-width: 1160px;
  margin: 40px auto;
}
.l-banner {
  padding: 16px;
}
.p-faq {
  padding: 40px;
  border: 1px solid var(--bor-color);
  margin-top: 80px;
  text-align: center;
}
.p-faq__top {
  max-width: 1160px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 0;
  margin-bottom: 80px;
}
@media screen and (max-width:750px) {
  .p-faq {
    padding: 40px 24px;
    margin: 40px 16px;
}
}
.p-faq__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--col-accent);
  margin-bottom: 24px;
}
.p-faq__txt {
  margin-bottom: 40px;
  font-weight: 400;
}
.l-contact {
  margin-top: 40px;
}
/* 20240414追加 */
/* サービスの特長 */
.p-service__headline {
  font-size: 32px;
  line-height: 1.4;
  font-weight: 600;
  margin: 0 0 24px;
}
@media screen and (max-width:750px) {
  .p-service__headline {
    font-size: 24px;
  }
}
.p-service__txt--lead {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}
.p-service__title {
  font-size: 24px;
  line-height: 1.4;
  text-align: left;
  border-left: 8px solid #F0830E;
  padding: 2px 0 2px 10px;
  margin: 0 0 24px;
}
@media screen and (max-width:750px) {
  .p-service__title {
    font-size: 20px;
  }
}
.p-service__number {
  margin-bottom: 0;
}
.p-service__title--feature {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.4;
}
.p-service__title--sub {
  font-size: 28px;
  line-height: 1.4;
  text-align: center;
  color: #F0830E;
  font-weight: 500;
}
.p-service__title--subMigration {
  margin: 0;
  background-color: #FBFAF6;
  padding: 16px;
}
@media screen and (max-width:750px) {
  .p-service__title--sub {
      font-size: 16px;
  }
}
.p-service__role {
  padding: 40px;
  background-color: #FBFAF6;
}
@media screen and (max-width:640px) {
  .p-service__role {
      padding: 32px 16px 24px;
      background-color: #FBFAF6;
  }
}
.p-service__title--roleContainer {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 500;
  color: #F0830E;
  margin: 0 0 24px !important;
}
@media screen and (max-width:640px) {
  .p-service__title--roleContainer {
    font-size: 22px;
    line-height: 1.4;
  }
}
.p-service__role--container {
  background-color: #fff;
  padding: 24px;
  border-radius: 8px;
}
.border__red {
  border: 1px solid #F2440F;
}
.border__green {
  border: 1px solid #01B713;
}
.border__blue {
  border: 1px solid #0E55FB;
}
.p-service__title--container {
  margin-bottom: 24px;
}
.p-service__title--role {
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
}
.p-service__title--leader {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}
.color_orange {
  color: #F0830E;
}
.color_red {
  color: #F2440F;
}
.color_green {
  color: #01B713;
}
.color_blue {
  color: #0E55FB;
}
.text__inline {
  display: inline;
}
.p-service__option--wrapper {
  background-color: #F4F4F4;
  padding: 16px 40px 40px;
  margin: 24px 0;
  border-radius: 8px;
}
@media screen and (max-width:640px) {
  .p-service__option--wrapper {
    padding: 16px;
  }
}
.p-service__option--container {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  margin-bottom: 0 !important;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.10);
}
@media screen and (max-width:640px) {
  .p-service__option--container {
    padding: 24px;
  }
}
.p-service__function {
  margin-bottom: 0 !important;
}
.table__textSize {
  font-size: 16px;
}
@media screen and (max-width:640px) {
  .table__textSize {
    font-size: 14px;
  }
}
.p-service__red {
  background-color: #F2440F;
  color: #fff;
  font-weight: 500;
  width: 24%;
}
.p-service__green {
  background-color: #01B713;
  color: #fff;
  font-weight: 500;
}
.p-service__lightgreen {
  background-color: #EBFFE7;
}
.p-service__blue {
  background-color: #0E55FB;
  color: #fff;
  font-weight: 500;
}
.p-service__lightblue {
  background-color: #E7F4FF;
}
.p-service__guide {
  padding: 10px 0;
}
.p-service__group {
  margin-bottom: 56px;
}
.p-service__txt__caution {
  font-size: 14px;
  margin-top: 8px;
}
.p-service__txt {
  font-size: 16px;
  line-height: 1.5;
}
.p-table_caution {
  font-size: 15px;
  line-height: 140%;
}
@media screen and (max-width:768px) {
  .p-table_caution {
    font-size: 12px;
    line-height: 140%;
  }
}
.p-tray {
  margin: 24px 0;
}
.p-tray .wp-block-group__inner-container {
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media screen and (max-width:768px) {
  .p-tray .wp-block-group__inner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.p-menu__arrow {
  margin: 0 0 16px 16px;
}
@media screen and (max-width:768px) {
  .p-menu__arrow {
    margin: 32px 0 16px;
    transform: rotate(90deg);
  }
}
.p-menu__tray {
  margin-left: 16px;
  width: 30%;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.10);
}
@media screen and (max-width:768px) {
  .p-menu__tray {
    margin-left: 0;
    margin-top: 16px;
    width: 100%;
  }
}
.p-menu__tray .wp-block-group__inner-container {
  display: flex;
  flex-direction: column;
}
.p-tray__wrapper {
  margin-top: 24px;
}
.p-menu__title {
  padding: 4px 8px;
  border-radius: 4px;
  background: #F0830B;
  width: 100%;
  color: #FFF;
  font-size: 16px;
  line-height: 150%;
  font-weight: 500;
}
.p-tray__wrapper {
  display: inline-flex;
  align-items: center;
  gap: 15px;
}
.p-tray__container {
  display: flex;
  align-items: center;
  gap: 24px;
}
.p-sender__wrapper > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 24px 0;
}
@media screen and (max-width:768px) {
  .p-sender__wrapper > div {
    flex-direction: column;
  }
}
.p-sender {
  flex: 1 0 0;
}
@media screen and (max-width:600px) {
  .p-sender {
    width: 100%;
  }
}
.p-sender > div {
  display: flex;
  padding: 24px;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 8px;
  background: #FFF;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.10);
}
@media screen and (max-width:600px) {
  .p-sender > div {
    display: flex;
    flex-direction: column;
  }
}
.p-sender__guide > div {
  flex-direction: column;
}
.p-sender__title--container {
  margin-bottom: 0;
  min-width: 128px;
}
@media screen and (max-width:600px) {
  .p-sender__container {
    width: 100%;
  }
}
.p-sender__container > div {
  display: flex;
  /* width: 212px; */
  padding: 16px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-radius: 6px;
  border: 1px solid #CCC8C4;
  background: #FFF;
}
.p-sender__title {
  color: #171717;
  font-size: 20px;
  font-weight: 600;
  line-height: 150%; /* 30px */
}
.p-sender__textWrapper {
  width: 100%;
  text-align: center;
}
.p-sender__textWrapper > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}
.p-sender__text {
  width: 100%;
  padding: 4px 24px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%; /* 24px */
  color: #fff;
}
.backcolor__orange {
  background-color: #F0830E;
}
.backcolor__green {
  background-color: #01B713;
}
.p-senderArrow > div {
  display: flex;
  width: 172px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
@media screen and (max-width:768px) {
  .p-senderArrow > div {
    flex-direction: row;
    width: 100%;
  }
}
.p-senderArrow__text {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
}
.p-senderArrow__wrapper > div {
  display: flex;
  padding: 0px 2px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  align-self: stretch;
}
@media screen and (max-width:768px) {
  .p-senderArrow__wrapper > div {
    padding: 0px 2px;
    flex-direction: row;
    height: 170px;
  }
}
.p-senderArrow__icon {
  margin: 0 auto;
  z-index: 3;
  position: relative;
  width: 50px;
}
.p-sender__arrowWrapper {
  position: relative;
}
.p-sender__arrow {
  position: absolute;
  left: -60px;
  top: 13px;
  width: 170px;
  height: 24px;
  stroke: #000;
  z-index: 1;
}
@media screen and (max-width:768px) {
  .p-sender__arrow {
    transform: rotate(90deg);
  }
}
figcaption.wp-element-caption {
  text-align: center;
}
.p-service__migration {
  padding: 40px;
  background-color: #FBFAF6;
}
@media screen and (max-width:640px) {
  .p-service__migration {
      padding: 24px 16px;
      background-color: #FBFAF6;
  }
}
.p-service__title--migration {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 500;
  color: #F0830E;
  margin: 0 0 24px !important;
}
@media screen and (max-width:750px) {
  .p-service__title--migration {
    font-size: 24px;
  }
}
.p-service__img--migration {
  max-width: 369px;
  margin-bottom: 0;
}
@media screen and (max-width:750px) {
  .p-service__txt--migration {
      margin-bottom: 16px;
  }
}
.p-service__txt--migration {
  margin-bottom: 24px;
  margin-top: 16px;
}
.p-service__guide a {
  padding: 8px 16px;
  border: 1px solid #F0830E;
  border-radius: 4px;
}
.p-cta__wrapper--upper,.p-cta__wrapper--lower {
  background-color: #F0830E;
  padding: 24px;
}
.p-cta__btnWrapper--upper,.p-cta__btnWrapper--lower {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
}
.p-cta__title--upper {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.5;
  color: #F0830E;
  background-color: #fff;
  text-align: center;
  margin-bottom: 4px;
}
@media screen and (max-width:750px) {
  .p-cta__title--upper {
      font-size: 24px;
  }
}
.p-cta__txt--upper {
  font-size: 17px;
  color: #fff;
  font-weight: 500;
  text-align: center;
}
.p-cta__txt--lower {
  font-size: 17px;
  color: #fff;
  font-weight: 500;
}
.p-cta__app--upper,.p-cta__web--upper,.p-cta__app--lower,.p-cta__web--lower {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 4px;
  color: #fff;
}
.p-cta__wrapper--lower {
  background-color: #F0830E;
  padding: 24px;
}
.p-cta__title--lower {
  font-size: 83px;
  text-align: center;
  line-height: 1.2;
  font-weight: 600;
  color: #fff;
  margin-bottom: 24px;
}
@media screen and (max-width:750px) {
  .p-cta__title--lower {
      font-size: 38px;
      text-align: center;
      line-height: 1.2;
      font-weight: 600;
      color: #fff;
      margin-bottom: 16px;
  }
}
.p-cta__appBtn--lower {
  margin-bottom: 0 !important;
}
.p-cta__btn {
  margin: 0;
}
.p-service__function--inner .wp-block-table td {
  border: none;
}
.p-service__function--inner td {
  border-bottom: 1px solid #CCC8C4 !important;
  padding: .8em !important;
  font-size: 16px;
  text-align: center;
  vertical-align: middle;
}
.p-service__function--inner th {
  border-bottom: 1px solid #CCC8C4 !important;
  padding: .8em !important;
  font-size: 16px;
  text-align: center;
  vertical-align: middle;
}
.p-service__white {
  background-color: #fff;
  width: 28%;
}
.p-service__orange {
  background-color: #F0830E;
  color: #fff;
  font-weight: 500;
}
.p-service__gray {
  background-color: #A0A0A0;
  color: #fff;
}
.p-service__nocolor {
  background-color: rgba(255, 255, 255, 0);
}
.p-service__lightorange {
  background-color: #FFF4E7;
}
.p-service__lightgray {
  background-color: #F3F3F3;
}
/* サービスの特長 END */
/* らくらく連絡網からの移行 */
.p-migration__container {
  width: 100%;
}
.p-migration__txt--lead {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 24px;
}
.p-migration__img {
  width: 100%;
}
.p-migration__title--sub {
  font-size: 28px;
  line-height: 1.2;
  text-align: center;
  color: #F0830E;
  font-weight: 600;
  margin: 16px 0;
}
@media screen and (max-width:750px) {
  .p-migration__title--sub {
    font-size: 16px;
  }
}
.p-migration__subtitle {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}
.p-migration__contents {
  margin: 24px 0 56px;
}
.p-migration__wrapper {
  padding: 24px;
  border: 1px solid #F0830E;
  border-radius: 8px;
}
.p-migration__subtitle {
  font-size: 20px;
  text-align: center;
  font-weight: 600;
  color: #F0830E;
}
.p-migration__content--img {
  width: 100%;
  max-width: 168px;
  margin: 16px auto;
}
.p-migration__content--txt {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 8px;
}
.p-migration__content--cap {
  text-align: center;
  font-size: 14px;
}
.p-migration__data {
  padding: 36px;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  background-color: #FF9B2F;
  margin-top: 16px;
  color: #fff;
  border-radius: 4px;
}
.p-migration__flow {
  padding: 12px;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  background-color: #FBFAF6;
  margin-top: 10px;
  border-radius: 4px;
}
.p-migration__title--feature {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.4;
}
.p-migration__title--number {
  color: #FF9B2F;
  vertical-align: middle;
}
.p-migration__dl {
  background-color: #FBFAF6;
  padding: 16px;
  border-radius: 0 0 16px 16px;
}
.p-migration__pdf {
  max-width: 846px;
  margin-left: auto;
  margin-right: auto;
}
.p-migration__container {
  background-color: #FBFAF6;
  padding: 32px;
  border-radius: 16px;
  margin-bottom: -16px !important;
}
.p-migration__container--last {
  border-radius: 16px 16px 0 0;
  margin-bottom: 0 !important;
}
@media screen and (max-width:750px) {
  .p-migration__container {
    padding: 16px;
    border-radius: 8px;
  }
}
.p-migration__arrow {
  width: 30px;
  text-align: center;
  margin: -16px auto;
}
.p-migration__arrow--flow {
  width: 24px;
  margin: 10px auto 0;
}
.p-campaign__img--sp {
  width: 100%;
}
@media screen and (min-width: 640px) {
  .p-campaign__img--sp {
    display: none;
  }
}
.p-campaign__img--pc {
  display: none;
}
@media screen and (min-width: 640px) {
  .p-campaign__img--pc {
    display: block;
  }
}
/* らくらく連絡網からの移行 END */
/* 外部送信についてページ追加 */
@media screen and (min-width: 640px) {
  .p-table__pc {
    display: block;
    margin-bottom: 40px;
    margin-top: 16px;
    overflow-x: auto;
  }
  .p-table__sp {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  .p-table__pc {
    display: none;
  }
  .p-table__sp {
    display: block;
    margin: 16px 0 40px;
  }
}
.p-table__pc table {
  width: 100%;
}
.p-table__pc th, .p-table__pc td {
  border: 1px solid #000;
  padding: .5em;
}
.p-table__header {
  background-color: #F0830E;
  text-align: center;
  vertical-align: middle;
  color: #fff;
}
.p-table__txt {
  min-width: 208px;
  text-align: center;
  vertical-align: middle;
}
.p-table__txt.p-table__txt--info {
  max-width: 300px;
}
.p-table__txt--info {
  text-align: left;
}
.p-link__policy {
  margin-bottom: 10px;
}
.p-link__policy a {
  text-decoration: underline;
}
.p-link__optout a {
  text-decoration: underline;
}
.p-table__sp--container {
  padding: 16px;
  margin-bottom: 16px;
  border: 1px solid #000;
}
.p-table__sp--wrapper {
  margin-bottom: 16px;
}
.p-table__sp--wrapper:last-child {
  margin-bottom: 0;
}
.p-table__sp--header {
  background-color: #F0830E;
  color: #fff;
  padding: 4px 8px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}
.p-table__sp--txt {
  padding: 10px 0;
  font-size: 15px;
  line-height: 1.5;
}
.p-link__sp--policy {
  margin-bottom: 10px;
}
.p-link__sp--policy a {
  text-decoration: underline;
}
.p-link__sp--optout a {
  text-decoration: underline;
}
.wp-block-table td, .wp-block-table th {
  border: 1px solid #000;
  padding: .5em;
}
/* 外部送信についてページ追加 END */
/* 団体有料版利用規約ページ追加 */
.p-table__mw {
  max-width: 640px;
}
.p-table__header--lightColor {
  background-color: #fff4e9;
  text-align: left;
  vertical-align: middle;
}
/* 団体有料版利用規約ページ追加 END */
/* ガイドページに移行操作ガイドバナーを追加 */
.p-guideBanner {
  margin: 3em auto 0;
  max-width: 750px;
}
@media screen and (max-width: 640px) {
  .p-guideBanner__img--pc {
    display: none;
  }
  .p-guideBanner__img--sp {
    display: block;
  }
}
@media screen and (min-width: 640px) {
  .p-guideBanner__img--pc {
    display: block;
  }
  .p-guideBanner__img--sp {
    display: none;
  }
}
.p-banner {
  margin-top: 2em;
  margin-left: min(100vw / 750* 16, 16px);
  margin-right: min(100vw / 750* 16, 16px);
}
.p-banner__container {
  width: 100%;
  max-width: 1160px;
  margin-right: auto;
  margin-left: auto;
  display: block;
}
.p-banner__img {
  width: 100%;
  max-width: 540px;
}
/* ガイドページに移行操作ガイドバナーを追加 END */
/* 有料版ページ */
.p-pay__fv {
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .p-pay__fv {
    margin-bottom: 40px;
  }
}
/* 画像のPCとSPの切り替え */
.p-img--sp {
  display: block;
}
.p-img--pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-img--sp {
    display: none;
  }
  .p-img--pc {
    display: block;
  }
}
/* 目次 */
.p-pay__index {
  margin: 40px 0;
  border: 1px solid #F0830E;
  max-width: 480px;
}
.p-pay__index--title {
  padding: 8px 10px;
  background-color: #F0830E;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
.p-pay__index--list {
  padding: 16px;
}
.p-pay__index--content a {
  color: #000;
  font-weight: 600;
  font-size: 16px;
}
/* セクション見出し */
.p-pay__title {
  font-size: 24px;
  line-height: 1.4;
  padding: 16px 16px;
  background-color: #F0830E;
  color: #fff;
}
.p-banner__payWrapper {
  text-align: center;
  margin: 40px 0;
}
.p-banner__pay {
  display: inline-block;
  text-align: center;
  border: 1px solid #F0830E;
  border-radius: 4px;
  padding: 10px 16px;
}
/* ボタン */
.p-btn__pay {
  width: 100%;
  text-align: center;
}
.p-btn__pay a {
  width: 100%;
  margin-top: 40px;
  padding: 16px 24px;
  background-color: #FC4056;
  font-size: 20px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-btn__pay a {
    width: auto;
    padding: 24px 48px;
    font-size: 24px;
  }
}
.p-btn__white a {
  min-width: 248px;
  padding: 16px 40px;
  background-color: #fff;
  font-size: 18px;
  font-weight: 600;
}
.p-btn__red a {
  color: #FC4056;
}
.p-btn__org a {
  color: #F0830E;
}
.p-color__red {
  color: #FC4056;
}
.p-color__org {
  color: #F0830E;
}
.p-color__gray {
  color: #737373;
}
/* 特徴の番号アイコン */
.p-icon__feature {
  width: 60px;
}
@media screen and (min-width: 768px) {
  .p-icon__feature {
    width: 64px;
  }
}
.p-pay__featureTitle {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  margin-left: 16px;
  color: #F0830E;
}
@media screen and (min-width: 768px) {
  .p-pay__featureTitle {
    font-size: 24px;
    line-height: 32px;
  }
}
/* 料金 */
.p-pay__pointSection {
  background-color: #FFF4E6;
  padding: 16px 8px 40px;
  margin-top: -24px;
}
@media screen and (min-width: 768px) {
  .p-pay__pointSection {
    padding: 40px 56px;
  }
}
.p-icon__point--img {
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
  margin-bottom: 24px;
}
.p-pay__point--lead {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 600;
}
.p-pay__point--title {
  font-size: 18px;
  font-weight: 600;
  border-left: 8px solid #F0830E;
  padding: 2px 0 2px 10px;
}
.p-pay__point--case {
  margin: 16px 0;
}
.p-pay__point--case .wp-block-group__inner-container {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-pay__point--case .wp-block-group__inner-container {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
}
.p-pay__pointContainer {
  margin-bottom: 40px;
  margin-top: 40px;
}
.p-pay__point--discount {
  padding: 4px 16px;
  background-color: #FC4056;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .p-pay__point--discount {
    font-size: 28px;
    margin-top: 0;
  }
}
.p-pay__point--discount::before {
  font-family: "Font Awesome 5 Free";
  content: "\f101";
  margin-right: 8px;
  color: #fff;
}
.p-pay__point--txt {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.0;
  color: #000;
}
@media screen and (min-width: 768px) {
  .p-pay__point--txt {
    font-size: 28px;
  }
}
.p-large {
  font-size: 26px;
  font-weight: 600;
  color: #FC4056;
}
@media screen and (min-width: 768px) {
  .p-large {
    font-size: 36px;
  }
}
/* 料金プラン */
.p-pay__priceContainer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .p-pay__priceContainer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
  }
}
.pricing-table {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  border-collapse: collapse;
}
.p-pay__open {
  display: none; /* 初期値は表示されない */
}
/* トグルボタン */
.toggle-button {
  background-color: #000;
  color: #fff;
  padding: 6px 24px;
  margin: 16px 0;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
}
.toggle-button::before {
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  margin-right: 8px;
  color: #fff;
}
.pricing-table th {
  background-color: #f18b24;
  color: #fff;
  font-size: 20px;
  padding: 10px;
  text-align: center;
}
.pricing-table td {
  padding: 10px 6px;
  border-bottom: 1px solid #CCC8C4;
}
.p-price__month {
  font-size: 14px;
  text-align: center;
  background-color: #FBE5C8;
  font-weight: 600;
}
.price {
  font-size: 20px;
  font-weight: 600;
  text-align: left;
}
.discounted {
  color: #FC4056;
}
.old-price {
  text-decoration: line-through;
  color: #000;
  font-size: 16px;
  font-weight: 600;
}
.p-price__intax {
  font-size: 14px;
}
.p-priceContainer {
  background-color: #fff;
  border: 1px solid #CCC8C4;
}
/* コンバージョン */
.p-pay__cv--container {
  background-color: #F0830E;
  padding: 20px;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-pay__cv--container {
    padding: 40px;
    margin-top: 80px;
  }
}
.p-pay__cv {
  max-width: 864px;
  margin: 0 auto;
}
.p-pay__cv--titleWrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  .p-pay__cv--titleWrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
}
.p-pay__cv--title {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  line-height: 1.0;
}
@media screen and (min-width: 768px) {
  .p-pay__cv--title {
    font-size: 38px;
  }
}
.p-pay__cv--titleLarge {
  font-size: 42px;
  font-weight: 600;
  color: #fff;
  line-height: 1.0;
}
@media screen and (min-width: 768px) {
  .p-pay__cv--titleLarge {
    font-size: 66px;
  }
}
.p-pay__cv--titleIcon {
  width: 44px;
}
@media screen and (min-width: 768px) {
  .p-pay__cv--titleIcon {
    width: 66px;
  }
}
.p-pay__cv--lead {
  font-size: 16px;
  font-weight: 500;
}
.p-pay__cv--txt {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  text-align: center;
}
.p-pay__btn {
  display: flex;
  flex-direction: column;
  margin: 24px 0;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .p-pay__btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
}
.p-pay__cv--guide {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-pay__cv--guide {
    font-size: 15px;
  }
}
.p-pay__cv--guide a {
  color: #fff;
}
.p-pay__cv--guide::after {
  font-family: "Font Awesome 5 Free";
  content: "\f0a9";
  margin-left: 8px;
  color: #fff;
}
/* お申込みの流れ */
.p-pay__entryContainer .wp-block-group__inner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-pay__entryContainer .wp-block-group__inner-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
}
.p-pay__entryWrapper {
  width: 100%;
  background-color: #FFF4E6;
  padding: 16px;
}
@media screen and (min-width: 768px) {
  .p-pay__entryWrapper {
    width: 33.333%;
    padding: 24px;
  }
}
.p-pay__entryTitle {
  font-size: 20px;
  line-height: 32px;
  font-weight: 600;
}
.p-pay__arrow--entry {
  align-content: center;
  width: 24px;
  margin: -8px;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-pay__arrow--entry {
    width: 48px;
    margin: 0 -4px;
  }
}
.p-pay__cautionWrapper {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid #F0830E;
}
@media screen and (min-width: 768px) {
  .p-pay__cautionWrapper {
    padding: 16px;
  }
}
.p-pay__caution {
  font-size: 18px;
  font-weight: 600;
  color: #F0830E;
}
.p-pay__caution::before {
  font-family: "Font Awesome 5 Free";
  content: "\f06a";
  margin-right: 8px;
  color: #F0830E;
}
.p-pay__caution--contact a {
  font-weight: 600;
  color: #FC4056;
}
/* 旧らくらく連絡網からの団体の引継ぎ方法 */
.p-icon__flow {
  width: 100%;
  max-width: 64px;
  margin-right: 16px;
}
@media screen and (min-width: 768px) {
  .p-icon__flow {
    max-width: 80px;
  }
}
.p-pay__flowContainer {
  background-color: #FFF4E6;
  padding: 24px 16px 16px;
  border-radius: 8px;
  margin-bottom: -16px !important;
}
@media screen and (min-width: 768px) {
  .p-pay__flowContainer {
    padding: 32px 64px;
    border-radius: 16px;
  }
}
.p-pay__flowWrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}
@media screen and (min-width: 768px) {
  .p-pay__flowWrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.p-pay__arrow {
  width: 30px;
  text-align: center;
  margin: -8px auto;
}
.p-pay__flowWrapper .wp-block-group__inner-container {
  display: flex;
  flex-direction: row;
  align-content: flex-start;
}
@media screen and (min-width: 768px) {
  .p-pay__flowWrapper .wp-block-group__inner-container {
    display: flex;
    flex-direction: column;
    align-content: flex-start;
  }
}
/* よくある質問 */
.accordion {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  overflow: hidden;
}
.accordion-item {
  margin-bottom: 16px;
}
.accordion-item:first-child {
  border-top: none;
}
.accordion-header {
  background-color: #fff;
  padding: 16px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #000;
  line-height: 1.5;
  transition: background-color 0.5s ease;
  margin-bottom: 0 !important;
}
.accordion-header:hover {
  background-color: #e7e7e7;
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  display: none;
}
.accordion-header.active + .accordion-content {
  max-height: 1000px;
  padding: 16px 0;
  transition: all 0.3s ease;
}
.accordion-header::after {
  font-size: 16px;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  content: "\f107";
  color: #F0830E;
}
.accordion-header.active::after {
  font-size: 16px;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  content: "\f077";
  color: #F0830E;
  transition: all 0.3s ease;
}
.accordion_title {
  margin: 0;
}
.question {
  color: #F0830E;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.5;
}
.answer {
  color: #000;
  font-size: 16px;
  line-height: 1.6;
}
.p-line--top {
  border-top: 1px solid #CCC8C4;
  margin-top: 16px;
  padding-top: 16px;
}
.p-answer__link {
  font-weight: 600;
  color: #FC4056;
}
/* よくある質問内の表 */
.p-accordion__table {
  width: 100%;
  margin: 16px 0;
  border-collapse: collapse;
  border: 1px solid #CCC8C4;
}
.p-accordion__table th, .p-accordion__table td {
  padding: 8px;
  border: 1px solid #CCC8C4;
  text-align: center;
  min-width: 96px;
}
.p-accordion__head {
  background-color: #F0830E;
  color: #fff;
}
.p-accordion__data {
  background-color: #FFF4E6;
}
.p-accordion__item {
  background-color: #fff;
}
/* 有料版ページ END */
/* 新規登録方法のPDFダウンロード枠 */
.l-entry {
  width: 100%;
  max-width: 1160px;
  margin: 24px auto 0;
}
.l-entry__guide {
  background-color: var(--bac-sub);
  max-width: 100%;
}
.l-entry .p-service__title {
  font-size: 20px;
  line-height: 1.4;
  text-align: left;
  border-left: none;
  padding: 0;
  margin: 0 0 24px;
  color: #F0830E;
}
.l-entry__guide .p-service__title {
  text-align: center;
  font-size: 24px;
}
.l-entry .l-container__entry {
  margin: 0;
  padding: 24px;
  background-color: var(--bac-sub);
  max-width: 750px;
}
.l-entry__guide .l-container__entry {
  margin: 0 auto;
  padding: 40px;
  background-color: var(--bac-sub);
  max-width: 1024px;
}
.l-startguide .wp-block-group__inner-container {
  display: flex;
  gap: 0 32px;
}
.p-startguide__img {
  margin: 0;
  padding: 0;
}
.p-startguide__container .wp-block-group__inner-container {
  flex-direction: column;
}
.p-startguide__subtitle {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
}
.p-startguide__txt {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}
.p-startguide__btn {
  width: 100%;
  margin: 24px 0 0;
}
.p-startguide__btn a {
  display: inline-block;
  background-color: var(--bac-main);
  padding: 10px;
  width: 100%;
  color: var(--col-accent);
  text-align: center;
  margin: 0;
  border: 1px solid var(--col-accent);
  border-radius: 4px;
}
@media screen and (max-width: 750px) {
  .l-entry__guide .l-container__entry {
    padding: 24px;
  }
  .l-startguide .wp-block-group__inner-container {
    flex-direction: column;
  }
  .l-entry__guide .p-service__title {
    font-size: 20px;
  }
  .p-startguide__subtitle {
    font-size: 17px;
  }
  .p-startguide__img {
    margin: 0 0 16px;
  }
  .p-startguide__btn {
    width: 100%;
    margin: 16px 0 0;
  }
}
/* 新規登録方法のPDFダウンロード枠 END */
.p-margin_0x {
  margin: 0;
}
.p-mt__1x {
  margin-top: 8px;
}
.p-mt__2x {
  margin-top: 16px;
}
.p-mt__3x {
  margin-top: 24px;
}
.p-mt__4x {
  margin-top: 32px;
}
.p-mt__5x {
  margin-top: 40px;
}
.p-mt__6x {
  margin-top: 48px;
}
.p-mt__7x {
  margin-top: 56px;
}
.p-mt__8x {
  margin-top: 64px;
}
.p-mb__1x {
  margin-bottom: 8px;
}
.p-mb__2x {
  margin-bottom: 16px;
}
.p-mb__3x {
  margin-bottom: 24px;
}
.p-mb__4x {
  margin-bottom: 32px;
}
.p-mb__5x {
  margin-bottom: 40px;
}
.p-mb__6x {
  margin-bottom: 48px;
}
.p-mb__7x {
  margin-bottom: 56px;
}
.p-mb__8x {
  margin-bottom: 64px;
}