@charset "UTF-8";

@font-face {
font-family: NotoSans;
font-display: swap;
src: url("../fonts/NotoSansJP.ttf") format("truetype");
}

/*====================================
/*
/* root
/*
/*===================================*/
:root {
  --font: 'NotoSans',sans-serif;
  --color-primary: #005BAC;
  --color-secondary: #11A84E;
  --color-accent: #E2377D;
  --color-highlight: #FCFF00;
  --color-text: #101114;
  --color-white: #FFFFFF;
  --color-blue: #E5F1FB;
  --color-light-blue: #F5F9FC;
  --color-gray: #BCBCBC;
  --color-light-gray: #F4F4F4;
  --color-dark-gray: #6D6D6D;
  --pattern-light: url(../images/bg_light_blue_dot.png) repeat 0 0;
  --pattern-dark: url(../images/bg_blue_dot.png) repeat 0 0;
  --width-container: 1024px;
  --weight-normal: 500;
  --weight-bold: 600;
  --weight-black: 900;
}

/*====================================
/*
/* BASE
/*
/*===================================*/
html{
  height: 100%;
  font-size: 62.5%; /*-- ベースのフォントサイズを10pxに指定 各要素のフォントサイズ指定はremで --*/
}

body{
  width: 100%;
  min-width: 1024px;
  height: 100%;
  background: #FFF;
  color: var(--color-text);
  font-weight: var(--weight-normal);
  font-size: 1.4em;
  font-family: var(--font);
  -webkit-text-size-adjust: 100%;/*-- iOSのSafariで意図せずフォントサイズが大きくなるのを防ぐための記述 --*/
  overflow-x: hidden;
}

body > footer {
  position: sticky;
  top: 100vh;
}


/*====================================:
/*
/* HEADER
/*
/*===================================*/
header {
  background: var(--pattern-light);
  border-bottom: solid 1px var(--color-blue);
}

header > .container {
  width: var(--width-container);
  margin: 0 auto;
  font-weight: var(--weight-bold);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 0;
}

.lead {
  font-size: 2.0rem;
}

.logo {
  width: 176px;
}

.logo img {
  width: 100%;
  height: auto;
}

/*====================================:
/*
/* FOOTER
/*
/*===================================*/
footer {
  width: 100%;
  background: var(--color-primary);
}

footer .inner {
  width: 1024px;
  height: 60px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.copyright {
  font-size: 1.1rem;
  color: #FFF;
}

/*=====================================
/*
/* main
/*
/*===================================*/

/*====================================
/* common
/*===================================*/
.container {
  width: 1024px;
  margin: 0 auto;
  padding: 70px 0;
}

.section_title {
  font-size: 4.2rem;
  line-height: 1.4em;
  font-weight: var(--weight-bold);
  text-align: center;
}

.section_subtitle {
  font-size: 2.0rem;
  line-height: 1.6em;
  margin: 30px 0 0;
  text-align: center;
}

.section_title br,
.section_subtitle br {
  display: none;
}


/*====================================
/* ヒーロー
/*===================================*/
.hero .container {
  position: relative;
}

/*--------------
キャッチタイトル
---------------*/
.catch_title {
  width: 100%;
  display: flex;
  gap: 0 1em;
  align-items: end;
}

.catch_copy {
  display: flex;
  flex-direction: column;
  order: 2;
  margin: 0 0 1.5em;
}

.eye_catch {
  width: 297px;
  order: 1;
}

.eye_catch img {
  width: 100%;
  height: auto;
}

.main_phrase {
  display: block;
  font-size: 3.8rem;
  font-weight: var(--weight-black);
  letter-spacing: -.1em;
}

.main_phrase strong {
  color: var(--color-accent);
  font-weight: var(--weight-black);
  font-size: 5.8rem;
}

.sub_phrase {
  display: block;
  font-size: 8.2rem;
  font-weight: var(--weight-black);
  letter-spacing: -.05em;
  margin: .15em 0 0;
}

/*--------------
吹き出し
---------------*/
.highlight_label {
  display: block;
  position: relative;
  height: 92px;
}

.balloon,
.balloon_shadow {
  width: 480px;
  height: 72px;
  position: absolute;
  display: inline-block;
  border-radius: 2em;
  text-align: center;
  font-size: 2.4rem;
  font-weight: var(--weight-black);
  line-height: 62px;
  color: var(--color-text);
}

.balloon::before,
.balloon_shadow::before,
.balloon::after,
.balloon_shadow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 30%;
  border-style: solid;
  transform: translate(-50%, 100%);
}

.balloon::before,
.balloon_shadow::before {
  border-width: 15px 9px 0 9px;
}

.balloon::after,
.balloon_shadow::after {
  border-width: 9.2px 5.5px 0 5.5px;
}

.balloon {
  border: 3px solid var(--color-text);
  background-color: var(--color-highlight);
  z-index: 2;
}

.balloon::before {
  border-color: var(--color-text) transparent transparent;
}

.balloon::after {
  border-color: var(--color-highlight) transparent transparent;
}

.balloon_shadow {
  border: 3px solid #101114;
  border-radius: 2em;
  background-color: var(--color-dark-gray);
  top: 6px;
  left: 1px;
  z-index: 1;
}

.balloon_shadow::before {
  border-color: var(--color-text) transparent transparent;
}

.balloon_shadow::after {
  border-color: var(--color-dark-gray) transparent transparent;
}

.balloon strong {
  font-size: 3.2rem;
  font-weight: var(--weight-black);
}

/*--------------
ハイライト
---------------*/
.hero_highlight {
  text-align: center;
  margin: 28px 0 0;
}

.hero_highlight p {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 1em;
  font-size: 2.4rem;
  font-weight: var(--weight-normal);
  color: var(--color-highlight);
}

.hero_highlight p::before {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: -1;
  transform: skewX(-15deg);
  background-color: var(--color-primary);
  content: "";
}


/*--------------
実績
---------------*/
.hero_stats {
  display: flex;
  justify-content: center;
  gap: 0 1em;
  margin: 40px 0 0;
}

.stat {
  width: 227px;
}

.stat img {
  width: 100%;
  height: auto;
}

/*--------------
イラスト
---------------*/
.hero_illustration {
  width: 230px;
  position: absolute;
  bottom: 40px;
  right: 10px;
  z-index: 3;
}

.hero_illustration img {
  width: 100%;
  height: auto;
}

/*====================================
/* CTA
/*===================================*/
.cta_section {
  background: var(--color-blue);
  text-align: center;
}

/*--------------
ボタン
---------------*/
.button {
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  position: relative;
  text-decoration: none;
  color: #FFF;
  background: var(--color-secondary);
  font-size: 3.4rem;
  width: 620px;
  height: 102px;
  margin: 0 auto;
  border-radius: 2em;
  box-shadow: 0 8px #075d2a;
  transition: top .2s ease-in-out,  box-shadow .2s ease-in-out;
}

.button:hover,
.button:active {
  box-shadow: 0 0 #075d2a;
  top: 8px;
}

/*====================================
/* お悩み
/*===================================*/
.trouble_section {
  background: var(--pattern-light);
}

.trouble_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 30px;
  margin: 40px 0 0;
}

.trouble_item {
  width: calc((100% - 30px *2 )/3);
}

.trouble_item img {
  width: 100%;
  height: auto;
}


/*====================================
/* まるっとおまかせ・コミコミ
/*===================================*/
.campaign_summary {
  background: var(--color-primary);
  color: var(--color-white);
}

.section_headline {
  text-align: center;
  font-size: 4.2rem;
  line-height: 1.4em;
}

.headline_main {
  display: flex;
  font-size: 4.6rem;
  font-weight: var(--weight-bold);
  color: var(--color-highlight);
}

.headline_main br {
  display: none;
}

.headline_main::before {
  content: "";
  display: block;
  width: 69px;
  height: 69px;
  background: url(../images/icon_megaphone.png) no-repeat;
  background-size: contain;
  position: relative;
  top: .2em;
}

.asterisk {
  font-size: .3em;
  vertical-align: top;
  position: relative;
  top: -1em;
}

.headline_note {
  font-size: 2.0rem;
  text-align: center;
  margin: 10px 0 0;
}

.headline_note br {
  display: none;
}

.summary_boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 52px  0 0;
}

.summary_box {
  width: calc(( 100% - 24px ) / 2);
  border-radius: 40px;
  padding: 14px 30px 30px;
  color: var(--color-text);
}

.summary_box.summary_omakase {
  background: var(--color-white) url(../images/bg_summary_omakase.png) no-repeat;
  background-size: 110px 152px;
  background-position:  bottom 24px right 24px;
}

.summary_box.summary_komikomi {
  background: var(--color-white) url(../images/bg_summary_komikomi.png) no-repeat;
  background-size: 138px 152px;
  background-position:  bottom 24px right 24px;
}

.summary_title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  font-size: 6.6rem;
  font-weight: var(--weight-black);
}

.summary_title::before {
  display: block;
  content: "";
  width: 164px;
  height: 164px;
  background: url(../images/icon_highlight.png) no-repeat;
  background-size: contain;
  position: relative;
  top: .28em;
}

.summary_text {
  font-size: 1.8rem;
  line-height: 1.6em;
  padding: 0 1em;
  margin: 1em auto 0;
}

.summary_features {
  display: flex;
  gap: 0 15px;
  margin: 30px 0 0;
}

.summary_feature_item {
  width: 138px;
}

.summary_feature_item img {
  width: 100%;
  height: auto;
}

.summary_attention {
  text-align: right;
  margin: 24px 0 0;
  font-size: 1.2rem;
}

/*====================================
/* ウォーキングキャンペーンとは
/*===================================*/
.about_campaign {
}

.about_title_box {
  text-align: center;
  margin: 40px 0 0;
}
  
.about_title {
  display: inline-block;
  position: relative;
  padding: .3em 0;
  margin: 0 0 .3em;
  border-bottom: 4px solid var(--color-accent);
  font-weight: var(--weight-bold);
  font-size: 3.2rem;
  text-align: center;
}

.about_title:before,
.about_title:after {
  position: absolute;
  top: 100%;
  left: 50%;
  content: "";
  height: 0;
  width: 0;
}

.about_title:before {
  border: 15px solid;
  border-color: transparent;
  border-top-color: var(--color-accent);
  margin-left: -15px;
}

.about_title:after {
  border: 10px solid;
  border-color: transparent;
  border-top-color: white;
  margin-left: -10px;
}

.campaign_examples {
  width: 100%;
  font-size: 1.8rem;
  line-height: 1.6em;
  margin: 30px 0 0;
  border-bottom: solid 2px var(--color-gray);
}

.example_row {
  border-top: solid 2px var(--color-gray);
}

.example_head {
  width: 198px;
  background: var(--color-light-gray);
  padding: 1em 0;
  position: relative;
  font-weight: var(--weight-normal);
}

.example_head::before,
.example_head::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  position: absolute;
}

.example_head::before {
  top: 0;
  left: 0;
}

.example_head::after {
  bottom: 0;
  left: 0;
}

.example_data {
  padding: 1.5em;
}

.campaign_features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  border: solid 1px var(--color-gray);
  border-radius: 20px;
  padding: 20px;
  margin: 20px 0 0;
}

.campaign_feature_item {
  width: calc(( 100% - 24px ) / 2);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.campaign_feature_title {
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 10px;
  font-size: 2.0rem;
  padding: 1em 0;
  margin: 0 0 1em;
}

.campaign_feature_image {
  margin: auto auto 0;
}

.manager .campaign_feature_image {
  width: 115px;
  height: 134px;
}

.user .campaign_feature_image {
  width: 195px;
  height: 138px;
}

.campaign_feature_image img {
  width: 100%;
  height: auto;
}

.campaign_feature_list {
  background: var(--color-light-blue);
  padding: 1em 1em 1.8em 1.8em;
  border-radius: 10px;
}

.campaign_feature_list_item {
  font-size: 1.8rem;
  line-height: 1.4em;
  display: flex;
  gap: 0 .5em;
  margin: .5em 0 0;
}

.campaign_feature_list_item::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background: var(--color-primary);
  position: relative;
  top: .7em;
}

/*====================================
/* 機能
/*===================================*/
.campaign_function {
  background: var(--color-light-gray);
}

.function_list {
  display: flex;
  gap: 62px;
  flex-wrap: wrap;
  margin: 40px 0 0;
}

.function_item {
  width: calc((100% - 62px * 2) / 3);
  text-align: center;
}

.function_item img {
  width: 100%;
  height: auto;
}

.function_name {
  font-size: 2.4rem;
  margin: .8em 0 0;
}

.function_caption {
  font-size: 1.3rem;
  line-height: 1.6em;
  text-align: left;
  padding: 0 1em;
  margin: 1em 0 0;
}

/*====================================
/* 採用企業
/*===================================*/
.cases {
  display: flex;
  flex-wrap: wrap;
  gap: 0 56px;
  margin: 40px 0 0;
}

.case_item {
  width: calc(( 100% - 56px ) / 2);
  background: var(--color-white);
  border: solid 4px var(--color-primary);
  border-radius: 40px;
  padding: 26px;
  position: relative;
}

.case_item::before,
.case_item::after {
  content: "";
  display: block;
  width: 10%;
  height: 4px;
  background: var(--color-white);
  position: absolute;
}

.case_item::before {
  top: -4px;
  left: 13%;
}

.case_item::after {
  bottom: -4px;
  right: 13%;
}

.case_image {
  width: 360px;
  margin: 0 auto;
}

.case_image img {
  width: 100%;
  height: auto;
}

.case_caption {
  font-size: 1.8rem;
  line-height: 1.4em;
  margin: 1em 0 0;
}


/*====================================
/* 料金プラン
/*===================================*/
/*--------------
 セクション全体 
---------------*/
.pricing {
  background: var(--color-light-gray);
}

/*--------------
 テーブル全体 
---------------*/
.plan_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 30px 0 0;
}

/*--------------
 テーブルヘッダー 
---------------*/
.plan_price_header,
.plan_desc_header,
.plan_type {
  vertical-align: middle;
  color: var(--color-white);
  font-size: 2.4rem;
  font-weight: var(--weight-bold);
  padding: 0.8em 0;
}

.plan_type_header {
  width: 260px;
}

.plan_price_header {
  width: 260px;
  background: var(--color-gray);
  border-radius: 20px 0 0 0;
  border-bottom: solid 10px var(--color-light-gray);
  border-right: solid 10px var(--color-light-gray);
}

.plan_desc_header {
  background: var(--color-gray);
  border-radius: 0 20px 0 0;
  border-bottom: solid 10px var(--color-light-gray);
}

/*--------------
 各プラン行 
---------------*/
.plan_row:last-child .plan_type,
.plan_row:last-child .plan_price,
.plan_row:last-child .plan_desc {
  border-bottom: 0;
}

.plan_row:last-child .plan_desc {
  border-radius: 0 0 20px 0;
}

/*--------------
 プラン名セル 
---------------*/
.plan_type {
  width: 260px;
  border-bottom: solid 10px var(--color-light-gray);
  border-right: solid 10px var(--color-light-gray);
}

/*--------------
 プラン名ごとの色
---------------*/
.min_plan {
  background-color: var(--color-secondary);
  border-radius: 20px 0 0 0;
}

.light_plan {
  background-color: var(--color-primary);
}

.custom_plan {
  background-color:  var(--color-accent);
  border-radius: 0 0 0 20px;
}

/*--------------
 料金セル 
---------------*/
.plan_price {
  background: var(--color-white);
  font-size: 2.4rem;
  text-align: center;
  vertical-align: middle;
  border-right: solid 10px var(--color-light-gray);
  border-bottom: solid 10px var(--color-light-gray);
}

.plan_price span {
  display: inline-block;
  margin: 0 0.1em 0 0;
  font-size: 3.6rem;
}

/*--------------
 概要セル 
---------------*/
.plan_desc {
  background: var(--color-white);
  text-align: left;
  vertical-align: middle;
  padding: 2em;
  font-size: 1.8rem;
  line-height: 1.6em;
  border-bottom: solid 10px var(--color-light-gray);
}

/*--------------
 備考 
---------------*/
.pricing_note {
  margin: 30px 0 0;
}

/*--------------
 アクセシビリティ対応（視覚的に非表示） 
---------------*/
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/*====================================
/* ご担当者様の声・参加者の声
/*===================================*/

/*--------------
  共通
---------------*/
.voice_item {
  display: flex;
  gap: 10px;
  align-items: start;
  margin: 30px 0 0;
}

.voice_icon {
  width: 90px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.voice_icon img {
  width: 100%;
  height: auto;
}

.voice_text {
  width: 100%;
}

.voice_text strong {
  font-weight: var(--weight-normal);
  font-style: normal;
  background: linear-gradient(transparent 50%, var(--color-highlight) 50%);
}

.text_left .voice_icon {
  order: 2;
}

.text_left .voice_text {
  order: 1;
}

/*--------------
  ご担当者様の声
---------------*/
.voice_manager {
}

/*--------------
  参加者の声
---------------*/
.voice_user {
  background: var(--color-light-blue);
}

/*--------------
  吹き出し・共通
---------------*/
/* 吹き出しベース */
.text_left .voice_text,
.text_right .voice_text {
  position: relative;
  display: block;
  padding: 1.5em;
  border-radius: 20px;
  font-size: 1.6rem;
  line-height: 1.6;
}

/* 左右マージン調整 */
.text_left .voice_text {
  margin-right: 20px;
}

.text_right .voice_text {
  margin-left: 20px;
}

/* 吹き出しの矢印（共通） */
.text_left .voice_text::after,
.text_right .voice_text::after {
  content: "";
  position: absolute;
  top: 24px;
  border-style: solid;
  translate: 100%;
}

/* 左側の矢印 */
.text_left .voice_text::after {
  right: 0;
  border-width: 11.5px 0 11.5px 20px;
}

/* 右側の矢印 */
.text_right .voice_text::after {
  left: -40px;
  border-width: 11.5px 20px 11.5px 0;
}

/*--------------
  吹き出し・ご担当者様の声
---------------*/
.voice_manager .text_left .voice_text,
.voice_manager .text_right .voice_text {
  background-color: var(--color-light-gray);
}

.voice_manager .text_left .voice_text::after {
  border-color: transparent transparent transparent var(--color-light-gray);
}

.voice_manager .text_right .voice_text::after {
  border-color: transparent var(--color-light-gray) transparent transparent;
}

/*--------------
  吹き出し・参加者の声
---------------*/
.voice_user .text_left .voice_text,
.voice_user .text_right .voice_text {
  background-color: var(--color-white);
}

.voice_user .text_left .voice_text::after {
  border-color: transparent transparent transparent var(--color-white);
}

.voice_user .text_right .voice_text::after {
  border-color: transparent var(--color-white) transparent transparent;
}


/*====================================
/* よくある質問
/*===================================*/
.faq {
  background: var(--color-blue);
}

.qa_box {
  display: flex;
  flex-direction: column;
  gap: .2em;
  margin: 40px 0 0;
}

.qa_box + .qa_box {
  margin: 1em 0 0;
}

.q_item {
  position: relative;
  cursor: pointer;
  padding: 1.5em 3.5em 1.5em 1.3em;
  background: var(--color-white);
}

.a_item {
  display: none;
  padding: 1.5em 1.5em 1.5em 1.3em;
  background: var(--color-white);
}

.q_item span,
.a_item span {
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: 0 1.3em;
  position: relative;
  font-size: 1.6rem;
  line-height: 1.4em;
}

.q_item span::before,
.a_item span::before {
  display: block;
  width: 30px;
  height: 30px;
  color: var(--color-white);
  font-size: 1.8rem;
  line-height: 28px;
  text-align: center;
  border-radius: 50% 50% 0 50%;
  margin: -.3em 0 0;
  flex-shrink: 0;
}

/*--------------
Qアイコン
---------------*/
.q_item span::before {
  content: "Q";
  background: var(--color-primary);
}

/*--------------
Aアイコン
---------------*/
.a_item span::before {
  content: "A";
  background: var(--color-secondary);
}

/*--------------
+/- ボタン
---------------*/
.q_item::before,
.q_item::after {
  content: "";
  display: block;
  width: 22px;
  height: 4px;
  background: var(--color-primary);
  position: absolute;
  right: 1.5em;
  top: 50%;
  transform: translateY(-50%);
  transition: .5s;
}

.q_item.active::after {
  transform: translateY(-50%) rotate(0);
}

.q_item::after {
  transform: translateY(-50%) rotate(-90deg);
}


/*====================================
/* サービス紹介
/*===================================*/
.services_header {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
}

.services_header::before {
content: "";
display: block;
width: calc( 100% - 90px );
height: 12px;
background: var(--color-primary);
position: absolute;
bottom: 1px;
left: 90px;
}

.services_header .label {
  width: 180px;
  position: relative;
  bottom: 0;
  left: 0;
  flex-shrink: 0;
}

.services_header .label img {
  width: 100%;
  height: auto;
}

.main_title {
  font-size: 3.8rem;
  line-height: 1.3em;
}

.services_list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0 0;
}

.service_item {
  width: calc(( 100% - 24px )/2);
  border: solid 1px var(--color-gray);
}

.service_item a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 20px;
}

.service_item a,
.service_item a:link,
.service_item a:visited,
.service_item a:hover,
.service_item a:active {
  text-decoration: none;
  color: var(--color-text);
  transition: opacity ease .5s;
}

.service_item a:hover,
.service_item a:active {
  opacity: .8;
}

.service_title {
  font-size: 2.8rem;
  color: var(--color-white);
  text-align: center;
  padding: .3em 0 .4em;
}

.my_health_up .service_title {
  background: #ED7D31;
}

.healthy_family .service_title {
  background: #92D050;
}

.service_content {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 20px 0 0;
}

.service_image {
  width: 123px;
  flex-shrink: 0;
}

.service_image img {
  width: 100%;
  height: auto;
}

.service_text {
  font-size: 1.6rem;
  line-height: 1.4em;
}


/*====================================
/* 運営会社
/*===================================*/
.company_section_logo {
  width: 300px;
  margin: 40px auto 0;
}

.company_section_logo img {
  width: 100%;
  height: auto;
}

.company_section_text {
  width: 850px;
  font-size: 1.6rem;
  line-height: 1.6em;
  margin: 40px auto 0;
}

.company_section_link {
  display: block;
  margin: 30px 0 0;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.4em;
}

.company_section_link,
.company_section_link:link,
.company_section_link:visited,
.company_section_link:hover,
.company_section_link:active {
  color: #4272BA;
}


.company_section_link,
.company_section_link:link,
.company_section_link:visited {
  text-decoration: underline;
}

.company_section_link:hover,
.company_section_link:active {
  text-decoration: none;
}


@media screen and (max-width: 780px) {
/*-- max-width: 780px //--*/

body{
  min-width: 100%;
}


/*====================================:
/* HEADER
/*===================================*/
header .container {
  width: 90%;
  max-width: 390px;
  padding: .8em 0;
}

.lead {
  font-size: 1.2rem;
}

.logo {
  width: 120px;
}

/*====================================:
/* FOOTER
/*===================================*/
footer .inner {
  width: 90%;
  max-width: 390px;
}

/*====================================
/* common
/*===================================*/
.container {
  width: 90%;
  max-width: 390px;
  padding: 30px 0;
}

.section_title {
  font-size: 1.8rem;
}

.section_subtitle {
  font-size: 1.4rem;
  margin: 10px 0 0;
}

.section_title br,
.section_subtitle br {
  display: block;
}

/*====================================
/* ヒーロー
/*===================================*/

/*--------------
キャッチタイトル
---------------*/
.catch_title_box {
  display: flex;
  justify-content: center;
}

.catch_title {
  align-items: center;
  gap: .5em;
}

.eye_catch {
  width: 100px;
  flex-shrink: 0;
}

.catch_copy {
  margin: 0;
}

.phrase {
}

.main_phrase {
  display: inline;
  font-size: 1.6rem;
  line-height: 1.2em;
}

.main_phrase strong {
  font-size: 2.0rem;
}

.sub_phrase {
  display: inline;
  font-size: 2.0rem;
}

/*--------------
吹き出し
---------------*/
.highlight_label {
  height: 42px;
}

.balloon,
.balloon_shadow {
  width: 100%;
  max-width: 220px;
  height: 34px;
  font-size: 1.3rem;
  line-height: 28px;
}

.balloon::before,
.balloon_shadow::before {
  border-width: 10px 9px 0 9px;
}

.balloon::after,
.balloon_shadow::after {
  border-width: 6.2px 5.5px 0 5.5px;
}

.balloon_shadow {
  top: 3px;
}

.balloon strong {
  font-size: 1.3rem;
}

/*--------------
ハイライト
---------------*/
.hero_highlight {
  margin: 10px 0 0;
}

.hero_highlight p {
  padding: .5em 1em;
  font-size: 1.4rem;
  line-height: 1.4em;
}

/*--------------
実績
---------------*/
.hero_stats {
  margin: 20px 0 0;
  justify-content: start;
  gap: .5em;
}

.stat {
  width: 120px;
}

/*--------------
イラスト
---------------*/
.hero_illustration {
  width: 120px;
  bottom: 30px;
  right: 0;
}

/*====================================
/* CTA
/*===================================*/

/*--------------
ボタン
---------------*/
.button {
  font-size: 1.6rem;
  width: 100%;
  max-width: 100%;
  height: 60px;
  border-radius: 3em;
  box-shadow: 0 6px #075d2a;
}

/*====================================
/* お悩み
/*===================================*/
.trouble_list {
  gap: 20px;
  margin: 20px 0 0;
}

.trouble_item {
  width: 180px;
}


/*====================================
/* まるっとおまかせ・コミコミ
/*===================================*/
.section_headline {
  font-size: 1.6rem;
}

.headline_main {
  font-size: 1.8rem;
  margin: 10px 0 0;
}

.headline_main::before {
  width: 42px;
  height: 42px;
}

.headline_main br,
.headline_note br {
  display: block;
}

.asterisk {
  top: 2.5em;
}

.headline_note {
  font-size: 1.4rem;
  line-height: 1.4em;
  margin: 10px 0 0;
}

.summary_boxes {
  gap: 24px;
  margin: 20px  0 0;
}

.summary_box {
  width: 100%;
  border-radius: 20px;
  padding: 5px 15px 15px;
}

.summary_box.summary_omakase {
  background-size: 72px 100px;
  background-position:  bottom 15px right 15px;
}

.summary_box.summary_komikomi {
  background-size: 91px 100px;
  background-position:  bottom 15px right 15px;
}

.summary_title {
  justify-content: center;
  align-items: end;
  gap: 10px;
  font-size: 3.6rem;
}

.summary_title::before {
  width: 80px;
  height: 80px;
}

.summary_text {
  font-size: 1.4rem;
  line-height: 1.4em;
}

.summary_features {
  gap: 0 10px;
  margin: 20px 0 0;
}

.summary_feature_item {
  width: 90px;
}

.summary_attention {
  margin: 14px 0 0;
  font-size: 1.1rem;
}

/*====================================
/* ウォーキングキャンペーンとは
/*===================================*/
.about_title_box {
  margin: 20px 0 0;
}
  
.about_title {
  padding: .3em 0;
  margin: 0 0 .3em;
  border-bottom: 3px solid var(--color-accent);
  font-size: 1.6rem;
}

.about_title:before {
  border: 10px solid;
  border-color: transparent;
  border-top-color: var(--color-accent);
  margin-left: -10px;
}

.about_title:after {
  border: 6px solid;
  border-color: transparent;
  border-top-color: var(--color-white);
  margin-left: -6px;
}

.campaign_examples {
  font-size: 1.4rem;
  margin: 15px 0 0;
}

.example_head {
  width: 98px;
  background: var(--color-light-gray);
  padding: .8em 0;
}

.example_data {
  padding: 1em;
}

.campaign_features {
  gap: 24px;
  border-radius: 10px;
  padding: 10px;
  margin: 15px 0 0;
}

.campaign_feature_item {
  width: 100%;
}

.campaign_feature_title {
  border-radius: 8px;
  font-size: 1.6rem;
  padding: .8em 0;
  margin: 0 0 .8em;
}

.manager .campaign_feature_image {
  width: 90px;
  height: 105px;
}

.user .campaign_feature_image {
  width: 148px;
  height: 105px;
}

.campaign_feature_list {
  padding: .8em 1.5em .8em;
  border-radius: 8px;
}

.campaign_feature_list_item {
  font-size: 1.4rem;
}


/*====================================
/* 機能
/*===================================*/
.function_list {
  gap: 30px 20px;
  margin: 20px 0 0;
}

.function_item {
  width: calc((100% - 20px) / 2);
}

.function_name {
  font-size: 1.6rem;
  margin: .5em 0 0;
}

.function_caption {
  font-size: 1.2rem;
  padding: 0;
  margin: .5em 0 0;
}

/*====================================
/* 採用企業
/*===================================*/
.cases {
  gap: 30px 0;
  margin: 20px 0 0;
}

.case_item {
  width: 100%;
  border-radius: 20px;
  padding: 20px;
}

.case_item::before,
.case_item::after {
  height: 6px;
}

.case_item::before {
  top: -5px;
}

.case_item::after {
  bottom: -5px;
}

.case_image {
  width: 240px;
}

.case_caption {
  font-size: 1.4rem;
  margin: .8em 0 0;
}


/*====================================
/* 料金プラン
/*===================================*/
/*--------------
 テーブル全体 
---------------*/
.plan_table {
  margin: 15px 0 0;
}

/*--------------
 テーブルヘッダー 
---------------*/
.plan_price_header,
.plan_desc_header,
.plan_type {
  font-size: 1.6rem;
  padding: 0.8em 0;
}

.header_row {
  display: none;
}


/*--------------
 各プラン行 
---------------*/
.plan_row:last-child .plan_type,
.plan_row:last-child .plan_price,
.plan_row:last-child .plan_desc {
  border-bottom: 0;
}

.plan_row:last-child .plan_desc {
  border-radius: 0 0 10px 10px;
}

/*--------------
 プラン名セル 
---------------*/
.plan_type {
  width: 100%;
  display: block;
  border-bottom: 0;
  border-right: 0;
  margin: 30px 0 0;
}

.plan_row:first-child .plan_type {
    margin: 0;
}

/*--------------
 プラン名ごとの色
---------------*/
.min_plan {
  border-radius: 10px 10px 0 0;
}

.light_plan {
  border-radius: 10px 10px 0 0;
}

.custom_plan {
  border-radius: 10px 10px 0 0;
}

/*--------------
 料金セル 
---------------*/
.plan_price {
  width: 100%;
  display: block;
  font-size: 1.6rem;
  border-right: 0;
  border-bottom: 0;
  border-top: solid 5px var(--color-light-gray);
  padding: 1em;
}

.plan_price span {
  font-size: 2.8rem;
}

/*--------------
 概要セル 
---------------*/
.plan_desc {
  width: 100%;
  display: block;
  padding: 1em;
  font-size: 1.4rem;
  border-bottom: 0;
  border-top: solid 5px var(--color-light-gray);
  border-radius: 0 0 10px 10px;
}

/*--------------
 備考 
---------------*/
.pricing_note {
  margin: 10px 0 0;
  line-height: 1.4em;
  font-size: 1.2rem;
}


/*====================================
/* ご担当者様の声・参加者の声
/*===================================*/

/*--------------
  共通
---------------*/
.voice_item {
  gap: 8px;
  margin: 20px 0 0;
}

.voice_icon {
  width: 68px;
  gap: 8px;
  font-size: 1.2rem;
}

/*--------------
  吹き出し・共通
---------------*/
/* 吹き出しベース */
.text_left .voice_text,
.text_right .voice_text {
  padding: 1.2em;
  border-radius: 10px;
  font-size: 1.4rem;
}

/* 左右マージン調整 */
.text_left .voice_text {
  margin-right: 16px;
}

.text_right .voice_text {
  margin-left: 16px;
}

/* 吹き出しの矢印（共通） */
.text_left .voice_text::after,
.text_right .voice_text::after {
  top: 24px;
}

/* 左側の矢印 */
.text_left .voice_text::after {
  border-width: 10px 0 10px 16px;
}

/* 右側の矢印 */
.text_right .voice_text::after {
  left: -32px;
  border-width: 10px 16px 10px 0;
}


/*====================================
/* よくある質問
/*===================================*/
.qa_box {
  gap: .2em;
  margin: 20px 0 0;
}

.q_item {
  padding: 1.2em 2.6em 1em 1em;
  background: var(--color-white);
}

.a_item {
  padding: 1.5em 1.5em 1.5em 1.3em;
}

.q_item span,
.a_item span {
  gap: 0 1em;
  font-size: 1.4rem;
}

.q_item span::before,
.a_item span::before {
  width: 26px;
  height: 26px;
  font-size: 1.6rem;
  line-height: 22px;
}

/*--------------
+/- ボタン
---------------*/
.q_item::before,
.q_item::after {
  width: 18px;
  height: 3px;
  right: 1em;
}


/*====================================
/* サービス紹介
/*===================================*/
.services_header {
  gap: 10px;
}

.services_header::before {
width: calc( 100% - 35px );
height: 5px;
bottom: 1px;
left: 35px;
}

.services_header .label {
  width: 70px;
}

.main_title {
  font-size: 1.4rem;
  line-height: 1.3em;
}

.main_title br {
  display: none;
}

.services_list {
  margin: 20px 0 0;
}

.service_item {
  width: 100%;
}

.service_item a {
  padding: 16px;
}

.service_title {
  font-size: 1.5rem;
}

.service_content {
  gap: 18px;
  margin: 16px 0 0;
}

.service_image {
  width: 80px;
}

.service_text {
  font-size: 1.3rem;
}


/*====================================
/* 運営会社
/*===================================*/
.company_section_logo {
  width: 200px;
  margin: 20px auto 0;
}

.company_section_text {
  width: 90%;
  font-size: 1.4rem;
  margin: 30px auto 0;
}

.company_section_link {
  margin: 20px 0 0;
  font-size: 1.4rem;
}

/*--// max-width: 780px //--*/
}