@charset "UTF-8";

/*======================================================
サイト共通の設定
======================================================*/

/*-----------------------------
フォントの設定
-----------------------------*/


html {
    font-size: 62.5%;
    /* 16px x 0.625 = 10px(=1rem) */
}

body {
    font-size: 1.6rem;
    /* 16px */
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
    -webkit-text-size-adjust: 100%;
    font-feature-settings: "palt"; /*文字詰めの設定*/  
}

/* スマホの時は13pxで */
@media(max-width:480px) {
    body {
        font-size: 1.3rem;
    }
}

/*　文字詰めの設定 */
@media screen and (-webkit-min-device-pixel-ratio:0) {

    ::i-block-chrome,
    body {
        font-feature-settings: "pkna";
    }
}

/*------------------------------------------------
スムーススクロール
------------------------------------------------*/

/* ゆっくり遷移する */
html {
	scroll-behavior: smooth;
}

/*------------------------------------------------
WordPress画像の配置
------------------------------------------------*/

/* 画像配置 左 */
img.alignleft {
    text-align: left;
}

/* 画像配置 中央 */
img.aligncenter {
    display: block;
    margin: 1px auto;
}

/* 画像配置 右 */
img.alignright {
    display: block;
    margin: 1px 1px 1px auto;
}


/*-----------------------------
共通の設定
-----------------------------*/

body {
    line-height: 1.75;
    color: #222;
}

li,
p {
    color: #222;
}

figcaption {
    font-size: 1.1rem;
}

.att {
    font-size: 1.2rem;
    line-height: 1.0em;
}

.normal{
    font-weight: normal;
}

/*clearfix*/

.cf:after {
    content: "";
    display: block;
    clear: both;
}

dl dt,
dl dd {
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
    width
    /***/
    : auto;
    vertical-align: top;
}

.resize img {
    max-width: 100vw;
}

.tel-link a:link,
.tel-link a:hover,
.tel-link a:active {
    text-decoration: none;
}

section,
article {
    margin-bottom: 60px;
}

@media(max-width:767px){
    section,
    article {
        margin-bottom: 30px;
    }
}

.sentence {
    text-indent: 1em;
}

.ta th,
.ta td {
    border: 1px solid #999;
    padding: 8px;
}

table th {
    text-align: left;
    font-weight: normal;
}

address {
    font-style: normal;
}

/*-----　　禁則処理　　-----*/

p {
    line-break: normal;
}

p {
    line-break: strict;
}

.cont-gray {
    background: #888c98;
    padding: 20px 0 40px;
}

.cont-gray p,
.cont-gray li,
.cont-gray a:link,
.cont-gray a:visited,
.cont-gray dt,
.cont-gray dd {
    color: #fff;
}

.w860 {
    max-width: 860px;
    margin: 0 auto;
    padding: 20px 2%;
}

.w1000 {
    max-width: 1000px !important;
    margin: 0 auto 60px;
}


@media(max-width:767px) {
    .w1000 {
        padding: 20px 2%;
    }

    .w860 {
        padding: 20px 2%;
    }
}


/*-----------------------------
表示に関するcss
-----------------------------*/


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

    /*スマホのときだけ表示しない設定*/
    .s-none {
        display: none !important;
    }

    /* スマホのときだけ左寄せ */
    .s-left {
        text-align: left;
    }

}

@media (min-width:769px) {

    /* パソコン以上で表示しない */
    .pc-none {
        display: none !important;
    }
}


/*-----------------------------
リンク
-----------------------------*/

a:hover img {
    opacity: 0.8;
    filter: alpha(opacity=50);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

a:link,
a:visited {
    color: #555;
    text-decoration: underline dotted;
}

a:hover {
    color: #999;
    text-decoration: underline dotted;
}

.post {
    text-indent: 1em;
    margin-bottom: 0.5em;
}


/*　この辺りにマージンだけとかフロートだけとか　*/

.mb0 {
    margin-bottom: 0 !important;
}

.mb10 {
    margin-bottom: 10px !important;
}

.mb20 {
    margin-bottom: 20px !important;
}

.mb30 {
    margin-bottom: 30px !important;
}

.mb40 {
    margin-bottom: 40px !important;
}

.mb50 {
    margin-bottom: 50px !important;
}

.mb60 {
    margin-bottom: 60px !important;
}

.mb70 {
    margin-bottom: 70px !important;
}

.mb80 {
    margin-bottom: 80px !important;
}

.mt0 {
    margin-top: 0px !important;
}

.mt10 {
    margin-top: 10px !important;
}

.mr0 {
    margin-right: 0px !important;
}

.mr10 {
    margin-right: 10px !important;
}

.mr20 {
    margin-right: 20px !important;
}

.mr30 {
    margin-right: 30px !important;
}

.ml0 {
    margin-left: 0px !important;
}

.ml10 {
    margin-left: 10px !important;
}

.ml20 {
    margin-left: 20px !important;
}

.ml30 {
    margin-left: 30px !important;
}

.p0 {
    padding: 0;
}


.indent-1 {
    text-indent: 1em;
}

.indent-2 {
    text-indent: 2em;
}

.indent-3 {
    text-indent: 3em;
}


.lh12 {
    line-height: 1.2;
}

.lh15 {
    line-height: 1.5;
}

.alignleft {
    margin-right: 80px;
    margin-bottom: 20px;
    float: left;
}

.alignright {
    margin-left: 80px;
    margin-bottom: 20px;
    float: right;
}

.left {
    text-align: left !important;
}

.right {
    text-align: right !important;
}

.center {
    text-align: center !important;
}

/*　flexbox設定　*/


.flex-c {
    display: flex;
    justify-content: center;
}

.flex-bw {
    display: flex;
    justify-content: space-between;
}

.flex-ar {
    display: flex;
    justify-content: space-around;
}

.flex-st {
    display: flex;
    justify-content: flex-start;
}

.flex-en {
    display: flex;
    justify-content: flex-end;
}

.fo-1 {
    order: 1;
}

.fo-2 {
    order: 2;
}

.fo-3 {
    order: 3;
}

.fo-4 {
    order: 4;
}

.fo-5 {
    order: 5;
}

.fo-6 {
    order: 6;
}


/*　font　*/

.font10 {
    font-size: 10px;
    font-size: 1.0rem !important;
}

.font11 {
    font-size: 11px;
    font-size: 1.1rem !important;
}

.font12 {
    font-size: 12px;
    font-size: 1.2rem !important;
}

.font13 {
    font-size: 13px;
    font-size: 1.3rem !important;
}

.font14 {
    font-size: 14px;
    font-size: 1.4rem !important;
}

.font15 {
    font-size: 15px;
    font-size: 1.5rem !important;
}

.font16 {
    font-size: 16px;
    font-size: 1.6rem !important;
}

.font17 {
    font-size: 17px;
    font-size: 1.7rem !important;
}

.font18 {
    font-size: 18px;
    font-size: 1.8rem !important;
}

.font19 {
    font-size: 19px;
    font-size: 1.9rem !important;
}

.font20 {
    font-size: 20px;
    font-size: 2.0rem !important;
}

.font21 {
    font-size: 21px;
    font-size: 2.1rem !important;
}

.font22 {
    font-size: 22px;
    font-size: 2.2rem !important;
}

.font23 {
    font-size: 23px;
    font-size: 2.3rem !important;
}

.font24 {
    font-size: 24px;
    font-size: 2.4rem !important;
}

.font25 {
    font-size: 25px;
    font-size: 2.5rem !important;
}

.font26 {
    font-size: 26px;
    font-size: 2.6rem !important;
}

.font27 {
    font-size: 27px;
    font-size: 2.7rem !important;
}

.font28 {
    font-size: 28px;
    font-size: 2.8rem !important;
}

.font29 {
    font-size: 29px;
    font-size: 2.9rem !important;
}

.font30 {
    font-size: 30px;
    font-size: 3.0rem !important;
}



/*　よく使う色　*/

.white {
    color: #fff !important;
}

.gray {
    color: #888C97 !important;
}

.yellow {
    color: #f59700 !important;
}

.pink {
    color: #F672DA !important;
}

.opange {
    color: #FFB082 !important;
}

.green {
    color: #00a73c !important;
}

.redb {
    color: #ea0404;
    font-weight: bold;
}

.red {
    color: #df0043;
}

.blue {
    color: #3485f2;
}

/* テーブル設定 */

/*======================================================
テーブル component/_c-table.scss
=====================================================*/
.c-ta, .c-ta__blue, .c-ta__beige, .c-ta__gray {
  width: 100%;
  margin-bottom: 30px;
  /* テーブル見出しが上の場合は高さを低く。見出しが左の場合は適用されない。 */
}
.c-ta,.c-ta__blue,.c-ta__beige,.c-ta__gray{
    th,td{
        padding: 1em;
        border: 1px solid #ccc;
    }
}
.c-ta__gray th {
  background-color: var(--gray-bg);
}
.c-ta__beige th {
  background: #FCF9DE;
}
.c-ta__blue th {
  background: #e5f2fa;
}
.c-ta thead,.c-ta__gray thead,.c-ta__beige thead,.c-ta__blue thead{
    th {
    padding: 0.5em;
    }
}
.c-ta,.c-ta__gray,.c-ta__beige,.c-ta__blue{
    .c-ta-line td::before{    
        color: #4d9bc1;
        font-weight: bold;
        display: inline-block;
        width: 20%;
        min-width: 4em;
}
}

/*------------------------------------------------------
テーブルレスポンシブ表示（複雑な表の場合は別途設定してください。）
------------------------------------------------------*/

:root {
  --green:#18AB96;
  --green-light:#B0D25E;
  --green-sunday:#4eacb9;
  --gray:#D9D9D9;
  --gray-dark:#666;
  --gray-light:#d6d6d6;
  --gray-bg:#f2f2f2;
  --white:#fff;
}

@media (max-width: 600px) {
  .ta-s-none {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  /* 見出しが1行目（1番上）の場合にスマホでは1列表示にする */
  .c-ta-res-line thead {
    display: none;
  }
  .c-ta-res-line th,
  .c-ta-res-line td {
    display: block;
    width: 100%;
    border-bottom: none;
  }
  .c-ta-res-line th:first-of-type {
    background: #efefef;
    font-weight: bold;
  }
  .c-ta-res-line tr:last-of-type {
    border-bottom: solid 1px #999;
  }
  /* 見出しが1列目（左）の場合にスマホでは1列表示にする */
  .c-ta-res-row th,
  .c-ta-res-row td {
    display: block;
    width: 100%;
    border-bottom: none;
  }
  .c-ta-res-row th {
    background: var(--gray-bg);
  }
  .c-ta-res-row tr:last-of-type td:last-of-type {
    border-bottom: 1px solid #999;
  }
  /* スマホの場合、はみ出た部分をスクロールさせる */
  .c-ta-res-wrapper {
    width: 100%;
    overflow: scroll;
  }
  .c-ta-res-scroll {
    width: 1200px;
  }
  .c-ta-res-scroll td:first-of-type,
  .c-ta-res-scroll th:first-of-type {
    position: sticky;
    left: 0;
    background: #fff;
  }
  .c-ta-res-scroll td:first-of-type:before,
  .c-ta-res-scroll th:first-of-type:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gray-bg);
    z-index: -1;
  }
}
/* スマホの場合、１列目（左）を見出しにして、１行目（1番上）の見出しをセルの中に太字で表示させる
     その際、２列目以降の<td>には、data-label="１行目の見出し"を入れる。
     色等細かい設定は個別に・・・  */
@media screen and (max-width: 767px) {
  .c-ta-res-line-title thead {
    display: none;
  }
  .c-ta-res-line-title tr {
    width: 100%;
  }
  .c-ta-res-line-title td {
    display: block;
    width: 100%;
    border-top: none;
  }
  .c-ta-res-line-title td::before {
    content: attr(data-label);
    display: block;
    font-weight: bold;
    margin-bottom: 0.2em;
  }
  .c-ta-res-line-title td:first-child {
    background: #fef6e2;
    font-weight: bold;
  }
}

/*------------------------------------------------------
アイコン
------------------------------------------------------*/

/* リンクマーク */
.c-ico-link-af, .c-ico-link-be {
  text-decoration: none !important;
}
.c-ico-link-be::before, .c-ico-link-af::after {
  display: inline-block;
  font: var(--fa-font-regular);
  content: "\f35d";
  color: #21937D;
  font-size:1.2rem;
}
.c-ico-link-be::before {
  margin-right: 0.5em;
}
.c-ico-link-af::after {
  margin-left: 0.5em;
}

/* ファイルマーク */
.c-ico-file-af, .c-ico-file-be {
  text-decoration: none !important;
}
.c-ico-filebe::before, .c-ico-fileaf::after {
  display: inline-block;
  font: var(--fa-font-regular);
  content: "\f15c";
  color: #E68B8B;
}
.c-ico-file-be::before {
  margin-right: 0.5em;
}
.c-ico-file-af::after {
  margin-left: 0.5em;
}

/*------------------------------------------------------
ダウンロード系
------------------------------------------------------*/
/* ダウンロードアイコン */
.c-ico-dl-af, .c-ico-dl-be {
  text-decoration: none !important;
}
.c-ico-dl-be::before, .c-ico-dl-af::after {
  display: inline-block;
  font: var(--fa-font-regular);
  content: "\f56d";
  color:rgb(255, 152, 92);
}
.c-ico-dl-be::before {
  margin-right: 0.5em;
}
.c-ico-dl-af::after {
  margin-left: 0.5em;
}

/*------------------------------------------------------
メールアイコン
------------------------------------------------------*/

.c-ico-mail-af, .c-ico-mail-be {
  text-decoration: none !important;
}
.c-ico-mail-be::before, .c-ico-mail-af::after {
  display: inline-block;
  font: var(--fa-font-solid);
  content: "\f0e0";
  color:rgb(255, 152, 92);
}
.c-ico-mail-be::before {
  margin-right: 0.5em;
}
.c-ico-mail-af::after {
  margin-left: 0.5em;
}

/*------------------------------------------------------
●印　こちらは-beforeのみ
------------------------------------------------------*/
.c-ico-circle-be {
  text-decoration: none !important;
  position: relative;
  padding-left: 20px;
}
.c-ico-circle-be::before {
  display: inline-block;
  font: var(--fa-font-solid);
  content: "\f111";
  color: #f00;
  font-size: 80%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/*======================================================
リストスタイル設定 
======================================================*/
/*------------------------------------------------------
リストスタイル　●印
------------------------------------------------------*/
.c-list-circle li {
  text-decoration: none !important;
  padding-left: 0;
  margin-bottom: 1em;
  @media print, screen and (min-width: 768px) {
    margin-left: 1em;
    padding-left: 1em;
    text-indent: -0.6em;
    }
}

.c-list-circle li::before {
  display: inline-block;
  font: var(--fa-font-solid);
  content: "\f111";
  color: #d9d9d9;
  margin-right: 0.5em;
  font-size: 1.4rem;
}

/*-----------------------------
ボタンを念の為リセット
-----------------------------*/
button {
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none;
}