@charset "UTF-8";
/*#########################################################

基本設定

#########################################################*/
/* ========================================================
単位用設定
=========================================================*/
/* ========================================================
色用設定
=========================================================*/
/* ========================================================
フォント用設定
=========================================================*/
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@700&family=Noto+Sans+JP:wght@300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@300;400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@700&display=swap");
/*#########################################################

レイアウト用設定

#########################################################*/
/* ========================================================
mixin mq用の変数設定
=========================================================*/
/*
▼iOSデバイス
iPhone5: 320 × 568
iPhone 6-8: 375 × 667（1334x750）
iPhone 6-8 plus: 414 × 736（1920x1080）
iPhone X,XS,11Pro: 375 × 812（1125x2436）
iPhone XR,11: 414 × 896（828x1792）

iPad/iPad Mini: 768 × 1024
iPad Pro: 1024 × 1366
https://www.paintcodeapp.com/news/ultimate-guide-to-iphone-resolutions

▼ブートストラップ
xs： ～767px
sm： 768～991px
md： 992～1119px
lg： 1120px～
*/
/* ========================================================
メディアクエリ用Mixin
=========================================================*/
/*
ステップ1.モバイルファーストかデスクトップファーストかを選ぶ
ステップ2.該当する設定を有効化、その他をコメントアウトする。
ステップ3.選択したタイプにより、「▼モバイルファーストの例」、「▼デスクトップファーストの例」のどちらかを参考にブレイクポイントを設定する。
→実際の設定は_base.scssではなく、インポート元で行う。
*/
/*
// ステップ2：モバイルファースト用（デスクトップファーストの場合はコメントアウト）
$breakpoints: (
	// タブレット
	'md': 'screen and (min-width: ' + ($screen-sm-max + 1) + ') and (max-width: ' + ($screen-md-max) + ')',
	// デスクトップ
	'lg': 'screen and (min-width: ' + ($screen-sm-max + 1) + ')',
) !default;
*/
/*
// ステップ3：▼モバイルファーストの例
// メディアクエリのブロック外にベースになるCSSを書く。
// モバイルファーストでは小さい画面サイズから順々に指定。
main{
	// デフォルト
	background: yellow;
	// タブレット
	@include mq(md){
		background: orange;
	}
	// デスクトップ
	@include mq(lg){
		background: red;
	}
}
//------------------------------
*/
/*
// ステップ3：▼デスクトップファーストの例
// メディアクエリのブロック外にベースになるCSSを書く。
// デスクトップファーストでは大きい画面サイズから順々に指定。
main{
	// デフォルト
	background: red;
	// タブレット
	@include mq(md){
		background: orange;
	}
	// スマートフォン
	@include mq(sm){
		background: yellow;
	}
}
//------------------------------
*/
/* ========================================================
Components
=========================================================*/
/* ========================================================
トピック 一覧
=========================================================*/


.topic .topic-container h3.colum-ttl,
.faxtensou .topic-container h3.colum-ttl {
  margin-bottom: 16px;
  line-height: 0.8;
  font-size: 25px;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 20px;
}

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

  .topic .topic-container h3.colum-ttl,
  .faxtensou .topic-container h3.colum-ttl {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 1.8;
    border-bottom: 1px solid #cccccc;
    padding-bottom: 14px;
  }
}

.topic-container .inr .text-box p {
  margin-bottom: 48px;
  font-size: 16px;
}

.topic .topic-container.lower .inr ul {
  display: grid;
  grid: repeat(1, 1fr) / auto-flow;
  margin: 0 auto;
  gap: 18px;
}

@media screen and (max-width: 599px) {
  .topic .topic-container.lower .inr ul {
    grid: repeat(3, 1fr) / auto-flow;
  }
}

.topic .topic-container.lower .inr ul li {
  border: 1px solid #cccccc;
  padding: 23px 25px 28px;
  text-align: center;
  margin-bottom: 16px;
}

@media screen and (max-width: 599px) {
  .topic .topic-container.lower .inr ul li {
    padding: 20px 20px 24px 20px;
    margin-right: 0;
    margin-bottom: 20px;
    width: 100%;
  }
}

.topic .topic-container.lower .inr ul li.nomb {
  margin-bottom: 0;
}

.topic .topic-container.lower .inr ul li img {
  width: 100%;
  height: auto;
}

.topic .topic-container.lower .inr ul li p {
  font-weight: 700;
  padding: 5px 0;
}

@media screen and (max-width: 599px) {
  .topic .topic-container.lower .inr ul li p {
    padding: 9px 0 4px 0;
    margin-bottom: 8px;
  }

  .topic .topic-container.lower .inr ul li .topic-name {
    font-size: 15px;
  }
}

.topic .topic-container.lower .inr ul li a span {
  display: block;
  margin: 0;
  margin-left: auto;
  padding: 6px 0;
  width: 100%;
  height: 45px;
  line-height: 33px;
  background: #F95239;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  border-radius: 3px;
}

@media screen and (max-width: 599px) {
  .topic .topic-container.lower .inr ul li a span {
    width: 130px;
    height: 35.7px;
    line-height: 24px;
    margin: 0 auto;
    font-size: 12px;
  }
}

.topic-container .topic-list li .flex .img-box {
  margin-right: 30px;
  width: 175px;
  height: 120px;
}

@media screen and (max-width: 599px) {
  .topic-container .topic-list li .flex .img-box {
    margin: 0 auto 4vw;
    width: 70.667vw;
    height: 44vw;
  }
}

.topic-container .topic-list li .flex .img-box img {
  width: 175px;
  height: 120px;
  -o-object-fit: cover;
  object-fit: cover;
  line-height: 0;
}

@media screen and (max-width: 599px) {
  .topic-container .topic-list li .flex .img-box img {
    width: 70.667vw;
    height: 44vw;
  }
}

.topic-container .topic-list li .flex .txt-box {
  position: relative;
}

.topic-container .topic-list li .flex h4.topic-tit {
  margin: 0 0 10px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (max-width: 599px) {
  .topic-container .topic-list li .flex h4.topic-tit {
    font-size: 15px;
  }
}

.topic-container .topic-list li .flex .txt {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 10px;
}

@media screen and (max-width: 599px) {
  .topic-container .topic-list li .flex .txt {
    font-size: 14px;
  }
}

.topic-container .topic-list .txt-box .link-btn-box {
  text-align: right;
}

.topic-container .topic-list .txt-box a {
  display: inline-block;
  padding: 12px 18px;
  border: 1px solid #173756;
  border-radius: 4px;
  color: #fff;
  background: linear-gradient(to bottom, #5b9bd5 0%, #3488b1 100%);
}

.topic-container .topic-list a .flex .date {
  position: absolute;
  bottom: -20px;
  left: 0;
  font-size: 1.3rem;
}

@media screen and (max-width: 599px) {
  .topic-container .topic-list a .flex .date {
    position: relative;
  }
}

/* インターネットFAX */

.faxtensou .topic-container .inr .fax_box01 {
  margin-bottom: 48px;
}

@media screen and (max-width: 599px) {
  .faxtensou .topic-container .inr .fax_box01 .fax_box01_textarea p {
    margin-bottom: 0;
  }
}

.faxtensou .topic-container .inr .fax_box01 .fax_box01_textarea span,
.faxtensou .topic-container .inr .fax_box_notion {
  font-size: 15px;
}

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

  .faxtensou .topic-container .inr .fax_box01 .fax_box01_textarea span,
  .faxtensou .topic-container .inr .fax_box_notion {
    font-size: 13px;
  }
}

.faxtensou .topic-container .inr .fax_box02 {
  padding: 24px 30px 36px;
  background-color: #F1F1F1;
}

.faxtensou .topic-container .inr h4 {
  font-size: 19px;
  margin-bottom: 20px;
}

@media screen and (max-width: 599px) {
  .faxtensou .topic-container .inr h4 {
    font-size: 15px;
  }
}

@media screen and (max-width: 599px) {
  .faxtensou .topic-container .inr .fax_box02 ul li span {
    font-size: 15px;
  }
}

.faxtensou .topic-container .inr .fax_box02 .fax_box02_list figure {
  text-align: center;
}

.faxtensou .topic-container .inr .fax_box02 .fax_box02_list li {
  padding: 23px 25px 28px 25px;
  background-color: #fff;
  width: 100%;
  margin-bottom: 16px;
  margin-right: 0;
}

@media screen and (max-width: 599px) {
  .faxtensou .topic-container .inr .fax_box02 .fax_box02_list li {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0 0 20px 0;
  }
}

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

  .faxtensou .topic-container .inr .fax_box02 .fax_box02_list li .fax_box02_list_textarea span {
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 3px;
    padding-top: 9px;
  }
}

.faxtensou .topic-container .inr .fax_box02 ul li span {
  font-weight: bold;
  letter-spacing: 1px;
  margin: 13px 0 5px;
  display: block;
}

.faxtensou .topic-container .inr .fax_box02 ul li .fax_box02_list_textarea p {
  font-weight: 400;
  text-align: left;
  margin-bottom: 0;
}

.faxtensou .topic-container .inr .fax_box07,
.faxtensou .topic-container .inr .fax_box08,
.faxtensou .topic-container .inr .fax_box09,
.mtb {
  margin-bottom: 63px;
}

@media screen and (max-width: 599px) {
  .mtb:last-child {
    margin-bottom: 0;
  }
}

.faxtensou .topic-container .inr .fax_sec_ttl {
  margin-bottom: 14px;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 17px;
}

@media screen and (max-width: 599px) {
  .faxtensou .topic-container .inr .fax_sec_ttl {
    font-size: 15px;
    margin-bottom: 12px;
    padding-bottom: 8px;
  }
}

.faxtensou .topic-container .inr .mtb>p {
  margin-bottom: 30px;
}

.faxtensou .topic-container .inr .fax_box03 .fax_box03_textarea {
  display: flex;
  margin-bottom: 20px;
}

.faxtensou .topic-container .inr .fax_box03 .fax_box03_textarea.h150 {
  height: 150px;
}

@media screen and (max-width: 599px) {
  .faxtensou .topic-container .inr .fax_box03 .fax_box03_textarea.h150 {
    height: 300px;
  }
}

@media screen and (max-width: 599px) {
  .faxtensou .topic-container .inr .fax_box03 .fax_box03_textarea {
    flex-direction: column;
  }
}

.faxtensou .topic-container .inr .fax_box03 .fax_box03_tex {
  margin-bottom: 0;
}

@media screen and (max-width: 599px) {
  .faxtensou .topic-container .inr .fax_box03 .fax_box03_tex {
    line-height: 1.8;
  }

  .faxtensou .topic-container .inr .fax_box03 .fax_box03_tex.texta {
    margin-bottom: 4px;
  }

  .faxtensou .topic-container .inr .fax_box03 .fax_box03_tex .number {
    position: relative;
    top: 6px;
  }
}

.faxtensou .topic-container .inr .fax_box03 .fax_box03_tex:last-child {
  padding-left: 15px;
}

.faxtensou .topic-container .inr .fax_box03 .fax_box03_tex.textb {
  padding-left: 0;
}

@media screen and (max-width: 599px) {
  .faxtensou .topic-container .inr .fax_box03 .fax_box03_tex:last-child {
    padding-left: 0;
  }
}

.faxtensou .topic-container .inr .fax_box03 .fax_box03_tex.mt0 {
  margin-top: 0;
}

.faxtensou .topic-container .inr .fax_box03 .fax_box03_tex.mt1 {
  margin-top: 1px;
}

.faxtensou .topic-container .inr .fax_box03 .fax_box03_tex.mb1 {
  margin-bottom: 1px;
}

.faxtensou .topic-container .inr .fax_box03 .fax_box03_textarea .fax_box03_textarea01 {
  width: 50%;
  border: 1px solid #cccccc;
  padding: 33px 20px 35px 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

@media screen and (max-width: 599px) {
  .faxtensou .topic-container .inr .fax_box03 .fax_box03_textarea .fax_box03_textarea01 {
    width: 100%;
    height: 150px;
  }
}

.faxtensou .topic-container .inr .fax_box03 .fax_box03_textarea .fax_box03_textarea01 .fax_box03_limited {
  display: inline-block;
  border-radius: 50%;
  background: #fe6c01;
  color: #fff;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  padding-top: 15px;
  margin-top: -1px;
  margin-right: 10%;
  margin-left: -5px;
  width: 60px;
  height: 60px;
}

@media screen and (max-width: 599px) {
  .faxtensou .topic-container .inr .fax_box03 .fax_box03_textarea .fax_box03_textarea01 .fax_box03_limited {
    margin-top: 0;
  }

  .faxtensou .topic-container .inr .fax_box03 .fax_box03_textarea .fax_box03_textarea01_small {
    margin-bottom: 14px;
  }
}

.faxtensou .topic-container .inr .fax_box03 .fax_box03_textarea .number {
  vertical-align: bottom;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.6;
  margin: 0 5px;
}

.faxtensou .topic-container .inr .fax_box03 .fax_box03_textarea .fax_box03_textarea02 {
  width: 50%;
  background: #F8F8F8;
  border-top: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  padding: 33px 20px 35px 13px;
  text-align: center;
}

@media screen and (max-width: 599px) {
  .faxtensou .topic-container .inr .fax_box03 .fax_box03_textarea .fax_box03_textarea02 {
    width: 100%;
    border-left: 1px solid #cccccc;
    border-top: none;
    height: 100%;
  }

  .faxtensou .topic-container .inr .fax_box03 .fax_box03_textarea .fax_box03_textarea02 p{
    text-align: center;
  }

}

.faxtensou .topic-container .inr .table-box {
  margin-bottom: 20px;
  border-top: 1px solid #cccccc;
}

.faxtensou .topic-container .inr .table-box dl {
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #cccccc;
}

@media screen and (max-width: 599px) {
  .faxtensou .topic-container .inr .table-box dl {
    display: block;
    font-size: 1.6rem;
    padding: 22px 0 18px;
  }
}

.faxtensou .topic-container .inr .table-box dl dt {
  width: 25%;
  font-weight: 700;
  text-align: left;
  color: #777;
  padding: 8px 2rem 0;
}

.faxtensou .topic-container .inr .table-box dl dt.gyou {
  padding-top: 0;
}

.faxtensou .topic-container .inr .table-box dl dd {
  padding: 8px 20px;
  width: 79%;
  border-left: 1px solid #cccccc;
  text-align: left;
}

.faxtensou .topic-container .inr .table-box dl dt.center,
.faxtensou .topic-container .inr .table-box dl dd.center{
  margin: auto 0;
  padding-top: 20px;
  padding-bottom: 20px;
}

.faxtensou .topic-container .inr .table-box dl dd ul,
.faxtensou .topic-container .inr .table-box dl dd ul li {
  all: unset;
}

.faxtensou .topic-container .inr .table-box dl dd ul li {
  display: list-item;
  list-style: none;
}

@media screen and (max-width: 599px) {
  .faxtensou .topic-container .inr .table-box dl dt ,
  .faxtensou .topic-container .inr .table-box dl dt.center {
    margin: 0;
    text-align: left;
    width: 100%;
    padding: 0 20px;
    font-size: 14px;
    color: #03c;
  }

  .faxtensou .topic-container .inr .table-box dl dd ,
  .faxtensou .topic-container .inr .table-box dl dd.center {
    padding: 8px 20px;
    border: none;
    width: 100%;
  }
}

.faxtensou .topic-container .inr .fax_box06 a {
  text-decoration: underline;
}

.faxtensou .topic-container .inr .fax_box_notion {
  margin-top: 20px;
  margin-bottom: 0;
}

@media screen and (max-width: 599px) {
  .faxtensou .topic-container .inr .fax_box06 .fax_box06_tex {
    margin-bottom: 0;
  }
}


/* 秘書電話代行 */

@media screen and (max-width: 599px) {
  .faxtensou .topic-container .inr .fax_box p {
    font-size: 14px;
  }
}

.faxtensou .topic-container .inr .daikou .fax_box_notion.fax_box03_tex {
  padding-left: 0;
}

@media screen and (max-width: 599px) {
  .faxtensou .topic-container .inr .fax_box04 .table-box {
    overflow: auto;
    white-space: nowrap;
  }
}

.faxtensou .topic-container .inr .fax_box04 .table-box table {
  width: 100%;
  border: 1px solid #cccccc;
}

.faxtensou .topic-container .inr .fax_box04 .table-box table tbody tr:first-child {
  background: #F8F8F8;
}

.faxtensou .topic-container .inr .fax_box04 .table-box table tbody tr th {
  font-weight: normal;
  padding: 3rem 0;
  border: 1px solid #cccccc;
}

@media screen and (max-width: 599px) {
  .faxtensou .topic-container .inr .fax_box04 .table-box table tbody tr .th-top {
    font-size: 13px;
  }
}

.faxtensou .topic-container .inr .fax_box04 .table-box table tbody tr th:first-child {
  width: 200px;
}

.faxtensou .topic-container .inr .fax_box04 .table-box table tbody tr th:nth-child(2) {
  width: 150px;
}

.faxtensou .topic-container .inr .fax_box04 .table-box table tbody tr th.th-list {
  text-align-last: left;
  padding-left: 2rem;
}

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

  .faxtensou .topic-container .inr .fax_box04 .table-box table tbody tr th.th-list,
  .faxtensou .topic-container .inr .fax_box04 .table-box table tbody tr td {
    font-size: 14px;
  }

  .faxtensou .topic-container .inr .fax_box04 .table-box table tbody tr th.th-list {
    text-align: center;
    padding: 0 10px;
  }

  .faxtensou .topic-container .inr .fax_box04 .table-box table tbody tr th:nth-child(2),
  .faxtensou .topic-container .inr .fax_box04 .table-box table tbody tr th:nth-child(3) {
    padding: 30px 10px;
  }

  .faxtensou .topic-container .inr .fax_box04 .table-box table tbody tr td:nth-child(4) {
    padding-left: 10px;
  }
}

.faxtensou .topic-container .inr .fax_box04 .table-box table tbody tr td {
  padding: 1.5rem 0;
  border: 1px solid #cccccc;
  text-align: center;
}

@media screen and (max-width: 599px) {
  .faxtensou .topic-container .inr .fax_box05 .daikou dd {
    padding-left: 20px;
  }
}

.faxtensou .topic-container .inr .list_box .list-nagare {
  display: block;
  margin-top: 0;
}

.faxtensou .topic-container .inr .list_box .list-nagare li {
  width: 100%;
  margin: 0 0 30px;
  border: 5px solid #E2E2E2;
}

@media screen and (max-width: 599px) {
  .faxtensou .topic-container .inr .list_box .list-nagare li {
    padding: 0;
  }
}

.faxtensou .topic-container .inr .list_box .list-nagare li:last-of-type {
  margin-bottom: 0;
}

.faxtensou .topic-container .inr .list_box .list-nagare li dt {
  margin: 0 0 14px;
  padding: 13px 20px;
  border-bottom: 1px solid #E2E2E2;
  color: #D4BF00;
  font-size: 1.8rem;
  font-weight: 700;
  text-align-last: left;
}

.faxtensou .topic-container .inr .list_box .list-nagare li dt span {
  font-size: 15px;
}

@media screen and (max-width: 599px) {
  .faxtensou .topic-container .inr .list_box .list-nagare li dt span {
    font-size: 13px;
  }
}

@media screen and (max-width: 599px) {
  .faxtensou .topic-container .inr .list_box .list-nagare li dt {
    padding: 2.667vw 5.333vw;
    font-size: 16px;
  }
}

.faxtensou .topic-container .inr .list_box .list-nagare li dd {
  padding: 10px 20px;
  text-align-last: left;
}

@media screen and (max-width: 599px) {
  .faxtensou .topic-container .inr .list_box .list-nagare li dd {
    display: block;
    padding: 0 5.333vw 5.333vw;
  }
}

@media screen and (max-width: 599px) {
  .faxtensou .topic-container .inr .list_box .list-nagare li dd .txt-box {
    width: 100%;
  }
}

.faxtensou .topic-container .inr .list_box .list-nagare li dd .txt-box p {
  margin: 0 0 20px;
  border: none;
  font-weight: normal;
}

.faxtensou .topic-container .inr .fax_box02 ul.daikou {
  grid: repeat(2, 1fr) / auto-flow;
}

@media screen and (max-width: 599px) {
  .faxtensou .topic-container .inr .fax_box02 ul.daikou {
    grid: repeat(6, 1fr) / auto-flow;
  }
}


.faxtensou .topic-container .inr .fax_box02 .daikou li {
  margin-bottom: 0;
}

.faxtensou .topic-container .inr .list_box .list-nagare li dd .txt-box ul.daikou {
  margin-top: 0;
  display: inherit;
}

.faxtensou .topic-container .inr .list_box .list-nagare li dd .txt-box ul.daikou li {
  margin: 0 0 0 20px;
  padding-top: 0;
  padding-left: 0;
  border: none;
  list-style: disc;
}

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

  .faxtensou .topic-container .inr .list_box .list-nagare li dd .txt-box p,
  .faxtensou .topic-container .inr .list_box .list-nagare li dd .txt-box ul.daikou li {
    margin: 0 auto 17px;
    padding-right: 0;
    list-style: none;
    text-align: left;
  }
}

.faxtensou .topic-container .inr .list_box .list-nagare li dd .txt-box p span {
  font-size: 1.2rem;
}

/* ========================================================
電話番号プラン
=========================================================*/

.faxtensou .topic-container .inr .fax_box03.denwa .fax_box_notion {
  padding-left: 0;
}

.faxtensou .topic-container .inr .fax_box04 div.denwa {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.faxtensou .topic-container .inr .fax_box04 div.denwa dl {
  border: 1px solid #cccccc;
  width: 49%;
  padding: 2rem;
}

@media screen and (max-width: 599px) {
  .faxtensou .topic-container .inr .fax_box04 div.denwa dl {
    width: 100%;
  }
}

.faxtensou .topic-container .inr .fax_box04 div.denwa dt {
  margin: 0 0 14px;
  padding-right: 20px;
  border-bottom: 1px solid #cccccc;
  font-size: 1.8rem;
  font-weight: 700;
}

@media screen and (max-width: 599px) {
  .faxtensou .topic-container .inr .fax_box04 div.denwa dt {
    font-size: 14px;
  }
}

.faxtensou .topic-container .inr .fax_box09 .list-nagare li:last-of-type {
  margin-bottom: 0;
}

@media screen and (max-width: 599px) {
  .faxtensou .topic-container .inr .fax_box09 .list-nagare li dt span {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 599px) {
  .faxtensou .topic-container .inr .fax_box09 .list-nagare li dt {
    padding: 2.667vw 5.333vw;
  }
}

.faxtensou .topic-container .inr .fax_box09 .list-nagare li dd {
  padding: 10px 20px;
}

@media screen and (max-width: 599px) {
  .faxtensou .topic-container .inr .fax_box09 .list-nagare li dd {
    display: block;
    padding: 0 5.333vw 5.333vw;
  }
}

.nagare-containe.faxtensou .topic-container .inr .fax_box09 .list-nagare li dd .txt-box {
  width: 540px;
  font-size: 1.6rem;
  line-height: 2;
}

@media screen and (max-width: 599px) {
  .faxtensou .topic-container .inr .fax_box09 .list-nagare li dd .txt-box {
    width: 100%;
  }
}

.faxtensou .topic-container .inr .fax_box09 .list-nagare li dd .txt-box p {
  margin: 0 0 20px;
  border: none;
}

.faxtensou .topic-container .inr .fax_box09 .list-nagare li dd .txt-box ul.daikou li {
  margin: 0 0 20px 20px;
  border: none;
  list-style: disc;
}

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

  .faxtensou .topic-container .inr .fax_box09 .list-nagare li dd .txt-box p,
  .faxtensou .topic-container .inr .fax_box09 .list-nagare li dd .txt-box ul.daikou li {
    margin-bottom: 17px;
  }
}

.faxtensou .topic-container .inr .fax_box09 .list-nagare li dd .txt-box p span {
  font-size: 1.2rem;
}

.faxtensou .topic-container .inr .btn-box {
  width: 315px;
  margin: 0 auto;
}

.faxtensou .topic-container .inr .btn-box .btn-radius-solid {
  background: #f5f5f5;
}

/* 050プラン */

.denwa050 .topic-container .inr .fax_box03 .fax_box03_textarea.w100,
.denwa050 .topic-container .inr .fax_box03 .table-box,
.denwa050 .topic-container .inr .fax_box03 .table-box table,
.denwa050 .topic-container .inr .fax_box03 .table-box tbody {
  width: 100%;
}

.denwa050 .topic-container .inr .fax_box03 .fax_box03_textarea {
  display: block;
}

.denwa050 .topic-container .inr .fax_box03 .table-box {
  width: 100%;
  border: 1px solid #cccccc;
}

@media screen and (max-width: 599px) {
  .denwa050 .topic-container .inr .fax_box03 .table-box {
    overflow: auto;
    white-space: nowrap;
  }
}

.denwa050 .topic-container .inr .fax_box03 .table-box table tbody tr {
  width: 100%;
}

.denwa050 .topic-container .inr .fax_box03 .table-box table tbody tr th {
  background: #F8F8F8;
  font-weight: normal;
  padding: 3rem 0;
  border: 1px solid #cccccc;
}

.denwa050 .topic-container .inr .fax_box03 .table-box table tbody tr .th-top {
  font-size: 18px;
  font-weight: 700;
}

.denwa050 .topic-container .inr .fax_box03 .table-box table tbody tr .th-top:first-child {
  width: 21%;
}

.denwa050 .topic-container .inr .fax_box03 .table-box table tbody tr th span {
  font-size: 15px;
  font-weight: 400;
}

@media screen and (max-width: 599px) {
  .denwa050 .topic-container .inr .fax_box03 .table-box table tbody tr th span {
    font-size: 13px;
  }

}

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

  .denwa050 .topic-container .inr .fax_box03 .table-box table tbody tr th,
  .denwa050 .topic-container .inr .fax_box03 .table-box table tbody tr .th-top {
    font-size: 14px;
  }
}

.denwa050 .topic-container .inr .fax_box03 .table-box table tbody tr th.th-list {
  text-align: center;
  padding: 36px 0;
}

.denwa050 .topic-container .inr .fax_box03 .table-box table tbody tr th.th-list.chakushin {
  padding: 36px 10px;
}

.denwa050 .topic-container .inr .fax_box03 .table-box table tbody tr td {
  padding: 36px 0;
  border: 1px solid #cccccc;
  text-align-last: center;
  width: 38%;
}

.denwa050 .topic-container .inr .fax_box03 .table-box table tbody tr td span,
.denwa050 .topic-container .inr .fax_box03 .caution-box p {
  font-size: 15px;
  margin-bottom: 0;
}

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

  .denwa050 .topic-container .inr .fax_box03 .table-box table tbody tr td span,
  .denwa050 .topic-container .inr .fax_box03 .caution-box p {
    font-size: 13px;
  }
}

.denwa050 .topic-container .inr .fax_box03 .caution-box {
  margin-top: 16px;
}


/* ========================================================
共通
=========================================================*/


/* 簡易ページ----------- */
.colum {
  margin-bottom: 80px;
}

@media screen and (max-width: 599px) {
  .colum {
    margin-bottom: 35px;
  }
}

.colum-ttl {
  font-size: 25px;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 17px;
  margin-bottom: 32px;
  line-height: 1;
}

.colum_subttl {
  font-size: 17px;
  font-weight: 700;
  border-bottom: 1px solid #cccccc;
}

@media screen and (max-width: 599px) {
  .topic-container .inr .text-box p {
    font-size: 14px;
    margin-bottom: 35px;
  }
}

.colum_img {
  text-align: left;
  margin: 30px 0;
}

.colum_img img {
  width: 600px;
  height: 400px;
}