@charset "utf-8";
/**
 * @package    WCF
 * @version    6.1

 * @subpackage wcl.class
 * OUTLINE:	クラス指定により単発のスタイルを適用するスタイルシート
 */
/************************************************************************************************************************************
 font-family
 ************************************************************************************************************************************/
/************************************************************************************************************************************
 ページ枠組み系
 ************************************************************************************************************************************/
.inner_box {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.is_index .inner_box {
  max-width: 1120px;
}
.is_lower .inner_box {
  max-width: 1120px;
}
.is_lower #main_content .inner_box {
  max-width: 1120px;
}
.section {
  margin-bottom: 50px;
}
.section:last-child {
  margin-bottom: 0px;
}
.inner_section {
  margin-bottom: 55px;
}
.inner_section .inner_section:not(:last-child) {
  margin-bottom: 55px;
}
.inner_section.mg2 {
  margin-bottom: 70px;
}
.inner_section:last-child, .inner_section.mg2:last-child {
  margin-bottom: 0px;
}
.lower_box {
  position: relative;
  padding: 32px 29px;
  border: solid 1px #e5e7eb;
  box-shadow: 10px 10px 0px 0px #00183d;
}
.nest {
  padding-left: 55px;
  padding-right: 55px;
}
@media print, screen and (min-width: 761px) {
  .inner_box.sp-only {
    max-width: 100%;
  }
}
@media print, screen and (min-width: 761px) and (max-width: 1140px) {}
@media screen and (max-width: 760px) {
  .section:last-child {
    margin-bottom: 0px;
  }
  .inner_section {
    margin-bottom: 50px;
  }
  .inner_box {
    width: 100%;
    width: calc(100% - 30px);
    max-width: none;
    max-width: auto;
    max-width: inherit;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .nest {
    padding-left: 0px;
    padding-right: 0px;
  }
  .nest > .nest {
    padding-left: 10px;
    padding-right: 10px;
  }
  .lower_box {
    padding: 32px 15px;
  }
}
/************************************************************************************************************************************
 Googleマップ埋め込みタグをレスポンシブ対応にする
 ************************************************************************************************************************************/
.gmap_wrapper {
  position: relative;
  margin: 0 auto 0;
  width: 50%;
}
.gmap_wrapper iframe {
  position: absolute;
  left: 0;
  width: 100%;
}
.gmap_wrapper.gmap_01 {
  height: 400px;
}
.gmap_wrapper.gmap_01 iframe {
  height: 400px;
}
@media screen and (max-width: 760px) {
  .gmap_wrapper {
    width: 100%;
  }
  .gmap_wrapper {
    height: 350px !important;
  }
  .gmap_wrapper iframe {
    position: static;
    height: 350px !important;
  }
}
@media screen and (max-width: 330px) {}
@media screen and (max-width: 800px) and (orientation: landscape) {
  .gmap_wrapper {
    height: 280px !important;
  }
  .gmap_wrapper iframe {
    height: 280px !important;
  }
}
/************************************************************************************************************************************
 .clearfix
 ************************************************************************************************************************************/
/*for IE 5.5-7*/
.clr {
  zoom: 1;
  display: inline-table;
}
/*for modern browser*/
.clr:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  font-size: 0;
  line-height: 0;
}
* html .clr {
  height: 1%;
  display: inline-table;
  /*\*/
  display: block; /**/
}
/* Hides from IE-mac \*/
* html .clr {
  height: 1%;
}
.clr {
  display: block;
}
/************************************************************************************************************************************
 ディスプレイ系
 ************************************************************************************************************************************/
/** flex *****************************************************************/
.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  /* 以下初期値 **************************************/
  /* 行制御　自動改行 */
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  /* 表示方向　昇順 */
  -webkit-flex-direction: row;
  flex-direction: row;
}
/* 行制御　flex-wrap
 **************************************/
/* 改行なし */
.wrap-nowrap {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
/* 自動改行 */
.wrap-wrap {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
/* 自動改行＋行方向の逆方向へ折り返し */
.wrap-reverse {
  -webkit-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}
/* 表示方向　flex-direction
 **************************************/
/* 昇順 */
.direction-row {
  -webkit-flex-direction: row;
  flex-direction: row;
}
/* 降順 */
.direction-row-reverse {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
/* 文字方向準 */
.direction-column {
  -webkit-flex-direction: column;
  flex-direction: column;
}
/* 文字方弱向準 */
.direction-column-reverse {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
/* 横位置　justify-content
 **************************************/
/* 左寄せ */
.justify-fstart {
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
/* 右寄せ */
.justify-fend {
  -webkit-box-pack: flex-end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
/* 中央寄せ */
.justify-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
/* 両端均等配置 */
.justify-between {
  -webkit-box-pack: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
/* 中央均等配置 */
.justify-around {
  -webkit-box-pack: space-around;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
/* 縦位置　align-items
 **************************************/
/* 上揃え */
.align-fstart {
  -webkit-box-align: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
/* 下揃え */
.align-fend {
  -webkit-box-align: flex-end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
/* 中央寄せ */
.align-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
/* 最初のflexアイテムのbaseline揃え */
.align-baseline {
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
}
/* コンテナの高さにflexアイテムが揃う */
.align-stretch {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
@media print, screen and (min-width: 761px) {
  .pc-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    /* 以下初期値 **************************************/
    /* 行制御　自動改行 */
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    /* 表示方向　昇順 */
    -webkit-flex-direction: row;
    flex-direction: row;
  }
  /* 行制御　flex-wrap
	 **************************************/
  /* 改行なし */
  .pc-wrap-nowrap {
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  /* 自動改行 */
  .pc-wrap-wrap {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  /* 自動改行＋行方向の逆方向へ折り返し */
  .pc-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
  /* 表示方向　flex-direction
	 **************************************/
  /* 昇順 */
  .pc-direction-row {
    -webkit-flex-direction: row;
    flex-direction: row;
  }
  /* 降順 */
  .pc-direction-row-reverse {
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  /* 文字方向準 */
  .pc-direction-column {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  /* 文字方弱向準 */
  .pc-direction-column-reverse {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  /* 横位置　justify-content
	 **************************************/
  /* 左寄せ */
  .pc-justify-fstart {
    -webkit-box-pack: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  /* 右寄せ */
  .pc-justify-fend {
    -webkit-box-pack: flex-end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
  /* 中央寄せ */
  .pc-justify-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  /* 両端均等配置 */
  .pc-justify-between {
    -webkit-box-pack: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  /* 中央均等配置 */
  .pc-justify-around {
    -webkit-box-pack: space-around;
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  /* 縦位置　align-items
	 **************************************/
  /* 上揃え */
  .pc-align-fstart {
    -webkit-box-align: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  /* 下揃え */
  .pc-align-fend {
    -webkit-box-align: flex-end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
  }
  /* 中央寄せ */
  .pc-align-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
  /* 最初のflexアイテムのbaseline揃え */
  .pc-align-baseline {
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    align-items: baseline;
  }
  /* コンテナの高さにflexアイテムが揃う */
  .pc-align-stretch {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    align-items: stretch;
  }
}
@media screen and (max-width: 760px) {
  .sp-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    /* 以下初期値 **************************************/
    /* 行制御　自動改行 */
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    /* 表示方向　昇順 */
    -webkit-flex-direction: row;
    flex-direction: row;
  }
  /* 行制御　flex-wrap
	 **************************************/
  /* 改行なし */
  .sp-wrap-nowrap {
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  /* 自動改行 */
  .sp-wrap-wrap {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  /* 自動改行＋行方向の逆方向へ折り返し */
  .sp-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
  /* 表示方向　flex-direction
	 **************************************/
  /* 昇順 */
  .sp-direction-row {
    -webkit-flex-direction: row;
    flex-direction: row;
  }
  /* 降順 */
  .sp-direction-row-reverse {
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  /* 文字方向準 */
  .sp-direction-column {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  /* 文字方弱向準 */
  .sp-direction-column-reverse {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  /* 横位置　justify-content
	 **************************************/
  /* 左寄せ */
  .sp-justify-fstart {
    -webkit-box-pack: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  /* 右寄せ */
  .sp-justify-fend {
    -webkit-box-pack: flex-end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
  /* 中央寄せ */
  .sp-justify-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  /* 両端均等配置 */
  .sp-justify-between {
    -webkit-box-pack: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  /* 中央均等配置 */
  .sp-justify-around {
    -webkit-box-pack: space-around;
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  /* 縦位置　align-items
	 **************************************/
  /* 上揃え */
  .sp-align-fstart {
    -webkit-box-align: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  /* 下揃え */
  .sp-align-fend {
    -webkit-box-align: flex-end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
  }
  /* 中央寄せ */
  .sp-align-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
  /* 最初のflexアイテムのbaseline揃え */
  .sp-align-baseline {
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    align-items: baseline;
  }
  /* コンテナの高さにflexアイテムが揃う */
  .sp-align-stretch {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    align-items: stretch;
  }
}
/** displayの強制指定 *****************************************************************/
.tb-show {
  display: none !important;
}
br.tb-show {
  display: none !important;
}
span.tb-show {
  display: none !important;
}
.sp-show {
  display: none !important;
}
br.sp-show {
  display: none !important;
}
span.sp-show {
  display: none !important;
}
.sp_min-show {
  display: none !important;
}
br.sp_min-show {
  display: none !important;
}
span.sp_min-show {
  display: none !important;
}
@media print, screen and (max-width: 1024px) {
  .tb-hide {
    display: none !important;
  }
  .tb-show {
    display: block !important;
  }
  br.tb-show {
    display: inline !important;
  }
  span.tb-show {
    display: inline !important;
  }
}
@media screen and (max-width: 760px) {
  .sp-hide, br.sp-hide {
    display: none !important;
  }
  .sp-show {
    display: block !important;
  }
  br.sp-show {
    display: inline !important;
  }
  span.sp-show {
    display: inline !important;
  }
}
@media print, screen and (max-width: 360px) {
  .sp_min-hide, br.sp_min-hide {
    display: none !important;
  }
  .sp_min-show {
    display: block !important;
  }
  br.sp_min-show {
    display: inline !important;
  }
  span.sp_min-show {
    display: inline !important;
  }
}
/************************************************************************************************************************************
 余白系
 ************************************************************************************************************************************/
/** margin-bottomの強制指定 5px単位/最大60pxまで *****************************************************************/
.mg-b-05 {
  margin-bottom: 5px !important;
}
.mg-b-10 {
  margin-bottom: 10px !important;
}
.mg-b-15 {
  margin-bottom: 15px !important;
}
.mg-b-20 {
  margin-bottom: 20px !important;
}
.mg-b-25 {
  margin-bottom: 25px !important;
}
.mg-b-30 {
  margin-bottom: 30px !important;
}
.mg-b-35 {
  margin-bottom: 35px !important;
}
.mg-b-40 {
  margin-bottom: 40px !important;
}
.mg-b-45 {
  margin-bottom: 45px !important;
}
.mg-b-50 {
  margin-bottom: 50px !important;
}
.mg-b-55 {
  margin-bottom: 55px !important;
}
.mg-b-60 {
  margin-bottom: 60px !important;
}
@media print, screen and (min-width: 761px) {
  .mg-b-05-pc {
    margin-bottom: 5px !important;
  }
  .mg-b-10-pc {
    margin-bottom: 10px !important;
  }
  .mg-b-15-pc {
    margin-bottom: 15px !important;
  }
  .mg-b-20-pc {
    margin-bottom: 20px !important;
  }
  .mg-b-25-pc {
    margin-bottom: 25px !important;
  }
  .mg-b-30-pc {
    margin-bottom: 30px !important;
  }
  .mg-b-35-pc {
    margin-bottom: 35px !important;
  }
  .mg-b-40-pc {
    margin-bottom: 40px !important;
  }
  .mg-b-45-pc {
    margin-bottom: 45px !important;
  }
  .mg-b-50-pc {
    margin-bottom: 50px !important;
  }
  .mg-b-55-pc {
    margin-bottom: 55px !important;
  }
  .mg-b-60-pc {
    margin-bottom: 60px !important;
  }
}
@media screen and (max-width: 760px) {
  .mg-b-05-sp {
    margin-bottom: 5px !important;
  }
  .mg-b-10-sp {
    margin-bottom: 10px !important;
  }
  .mg-b-15-sp {
    margin-bottom: 15px !important;
  }
  .mg-b-20-sp {
    margin-bottom: 20px !important;
  }
  .mg-b-25-sp {
    margin-bottom: 25px !important;
  }
  .mg-b-30-sp {
    margin-bottom: 30px !important;
  }
  .mg-b-35-sp {
    margin-bottom: 35px !important;
  }
  .mg-b-40-sp {
    margin-bottom: 40px !important;
  }
  .mg-b-45-sp {
    margin-bottom: 45px !important;
  }
  .mg-b-50-sp {
    margin-bottom: 50px !important;
  }
  .mg-b-55-sp {
    margin-bottom: 55px !important;
  }
  .mg-b-60-sp {
    margin-bottom: 60px !important;
  }
}
/** paddingの強制指定 5px単位/最大-横35px-縦35pxまで *****************************************************************/
/* 縦 */
.c_pad.v_05 {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}
.c_pad.v_10 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
.c_pad.v_15 {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}
.c_pad.v_20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}
.c_pad.v_25 {
  padding-top: 25px !important;
  padding-bottom: 25px !important;
}
.c_pad.v_30 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}
.c_pad.v_35 {
  padding-top: 35px !important;
  padding-bottom: 35px !important;
}
@media print, screen and (min-width: 761px) {
  /* 横 */
  .c_pad.h_05 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  .c_pad.h_10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .c_pad.h_15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .c_pad.h_20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .c_pad.h_25 {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
  .c_pad.h_30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .c_pad.h_35 {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
}
@media screen and (max-width: 760px) {
  .c_pad {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .c_pad.v_30 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
  .c_pad.v_35 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
}
/************************************************************************************************************************************
 共通背景・ボーダー
 ************************************************************************************************************************************/
/** common background *****************************************************************/
.bg_white {
  background-color: #FFF;
}
.bg_cream {
  background-color: #fef7ea;
}
.bg_cream_img {
  padding: 85px 0 75px;
  background-image: url('../img/results/bg_01.png'), url('../img/results/bg_02.png');
  background-size: 147px 135px, 134px 229px;
  background-position: left bottom, right top 9px;
  background-repeat: no-repeat, no-repeat;
}
.bg_radius {
  border-radius: 10px;
}
@media print, screen and (min-width: 761px) {}
@media screen and (max-width: 760px) {}
/** .c_border *****************************************************************/
.c_border_white {
  border: solid 1px #ffffff;
}
.c_border_green {
  border: solid 2px #77b943;
}
.c_border_brown {
  border: solid 3px #5f3d27;
}
/** .c_shadow *****************************************************************/
.c_shadow {
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.15);
}
/** .c_bgicon *****************************************************************/
.c_bgicon {
  display: inline-block;
  color: #FFF;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  vertical-align: 14b7ca;
  text-indent: 0;
  height: 20px;
  padding: 0 11px;
  margin-right: 14px;
  background-color: #14b7ca;
}
/** .c_text *****************************************************************/
.c_text {
  color: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.25px;
}
.c_text.in-b, .c_text .in-b {
  display: inline-block;
}
.c_text.center {
  text-align: center;
}
.c_text.right {
  text-align: right;
}
.c_text.white, .c_text .white {
  color: #FFF;
}
.c_text.green, .c_text .green {
  color: #006933;
}
/* サイズ */
.c_text.large, .c_text .large {
  font-size: 18px;
}
.c_text.larger, .c_text .larger {
  font-size: 20px;
}
.c_text.largest, .c_text .largest {
  font-size: 26px;
}
.c_text.small, .c_text .small {
  font-size: 14px;
}
/* 重量 */
.c_text.black, .c_text .black {
  font-weight: 900;
}
.c_text.bold, .c_text .bold {
  font-weight: 700;
}
.c_text.medium, .c_text .medium {
  font-weight: 500;
}
.c_text.light, .c_text .light {
  font-weight: 300;
}
/* スタイル */
.c_text.italic, .c_text .italic {
  font-style: italic;
}
/* 文字間 */
.c_text.narrow, .c_text .narrow {
  letter-spacing: -1px;
}
.c_text.wide, .c_text .wide {
  letter-spacing: 1px;
}
.c_text.wide2, .c_text .wide2 {
  letter-spacing: 2px;
}
/* 行間 */
.c_text.lh_narrow, .c_text .lh_narrow {
  line-height: 1.2;
}
.c_text.lh_wide, .c_text .lh_wide {
  line-height: 2.2222222222222222222222222222222;
}
.c_text.serif, .c_text .serif {
  font-family: 'Noto Serif JP', serif;
}
.c_text.indent, .c_text .indent {
  display: block;
  margin-top: 2px;
  margin-bottom: 0;
}
.c_text.indent:first-child, .c_text .indent:first-child {
  margin-top: 0;
}
/* "全角１" */
.c_text.indent.f1h0, .c_text .indent.f1h0 {
  text-indent: -1em;
  padding-left: 1em;
}
.c_text.indent.f1h0.narrow, .c_text .indent.f1h0.narrow {
  text-indent: calc(1px - 1em);
  padding-left: calc(1px + 1em);
}
.c_text.indent.f1h0.wide, .c_text .indent.f1h0.wide {
  text-indent: calc(-1px - 1em);
  padding-left: calc(1px + 1em);
}
/* "全角１半角１" */
.c_text.indent.f1h1, .c_text .indent.f1h1 {
  text-indent: -1.25em;
  padding-left: 1.25em;
}
.c_text.indent.f1h1.narrow, .c_text .indent.f1h1.narrow {
  text-indent: calc(2px - 1.25em);
  padding-left: calc(2px + 1.25em);
}
.c_text.indent.f1h1.wide, .c_text .indent.f1h1.wide {
  text-indent: calc(-2px - 1.25em);
  padding-left: calc(2px + 1.25em);
}
/* "全角２" */
.c_text.indent.f2h0, .c_text .indent.f2h0 {
  text-indent: -2em;
  padding-left: 2em;
}
.c_text.indent.f2h0.narrow, .c_text .indent.f2h0.narrow {
  text-indent: calc(3px - 2em);
  padding-left: calc(3px + 2em);
}
.c_text.indent.f2h0.wide, .c_text .indent.f2h0.wide {
  text-indent: calc(-3px - 2em);
  padding-left: calc(3px + 2em);
}
/* "全角２半角１" */
.c_text.indent.f2h1, .c_text .indent.f2h1 {
  text-indent: -2.55em;
  padding-left: 2.55em;
}
.c_text.indent.f2h1.narrow, .c_text .indent.f2h1.narrow {
  text-indent: calc(3px - 2.55em);
  padding-left: calc(3px + 2.55em);
}
.c_text.indent.f2h1.wide, .c_text .indent.f2h1.wide {
  text-indent: calc(-3px - 2.55em);
  padding-left: calc(3px + 2.55em);
}
/* "半角3" */
.c_text.indent.f0h3, .c_text .indent.f0h3 {
  text-indent: -1.15em;
  padding-left: 1.15em;
}
.c_text.indent.f0h3.narrow, .c_text .indent.f0h3.narrow {
  text-indent: calc(3px - 1.25em);
  padding-left: calc(3px + 1.25em);
}
.c_text.indent.f0h3.wide, .c_text .indent.f0h3.wide {
  text-indent: calc(-3px - 1.25em);
  padding-left: calc(3px + 1.25em);
}
/* "半角4" */
.c_text.indent.f0h4, .c_text .indent.f0h4 {
  text-indent: -1.5em;
  padding-left: 1.5em;
}
.c_text.indent.f0h4.narrow, .c_text .indent.f0h4.narrow {
  text-indent: calc(4px - 1.5em);
  padding-left: calc(4px + 1.5em);
}
.c_text.indent.f0h4.wide, .c_text .indent.f0h4.wide {
  text-indent: calc(-4px - 1.5em);
  padding-left: calc(4px + 1.5em);
}
@media print, screen and (min-width: 761px) {}
@media screen and (max-width: 760px) {
  .c_text {
    font-size: 14px;
  }
  .c_text.large, .c_text .large {
    font-size: 16px;
  }
  .c_text.larger, .c_text .larger {
    font-size: 16px;
  }
  .c_text.largest, .c_text .largest {
    font-size: 18px;
  }
  .c_text.small, .c_text .small {
    font-size: 12px;
  }
}
@media screen and (max-width: 330px) {
  .c_text.large, .c_text .large {
    font-size: 14px;
  }
  .c_text.larger, .c_text .larger {
    font-size: 16px;
  }
  .c_text.largest, .c_text .largest {
    font-size: 16px;
  }
}
.company-img {
  display: block;
  margin-bottom: 30px;
}