@charset "UTF-8";
/*=============================================
このサイトで使い回すもの・コンポーネント
=============================================*/

/*------------------------------------------------------
カラー component/_color.scss
------------------------------------------------------*/
:root {
  --blue-main:#1961AD;
  --blue:#517EAB;
  --blue-middle:#1890AB;
  --blue-light:#a1c3e0;
  --blue-bg:#F3FAFE;
  --blue-bg-light:#eff8fe;
  --black:#333;
  --black-light:#555;
  --pink-sunday:#ee8b91;
  --pink-light:#efbdc1;
  --red:#AB231A;
  --red-light:#f00;
  --orange:#f9a824;
  --orange-font:#ff8000;
  --orange-light:#febe3e;
  --yellow:#F6F967;
  --yellow-mark:#FBFF2A;
  --yellow-bg:#f9e867;
  --yellow-light:#fcff71;
  --green:#18AB96;
  --green-light:#B0D25E;
  --green-sunday:#4eacb9;
  --gray:#D9D9D9;
  --gray-dark:#666;
  --gray-light:#d6d6d6;
  --gray-bg:#f2f2f2;
  --white:#fff;
}

/*------------------------
よく使う色
-------------------------*/
.u-font-orange {
  color: var(--orange-font);
}

.u-font-orange__bold {
  color: var(--orange-font);
  font-weight: bold;
}

.u-font-orange__large {
  color: var(--orange-font);
  font-weight: bold;
  font-size: 120%;
}

/*------------------------
ボタンの色設定
-------------------------*/
.c-btn-blue {
  --btnColor: var(--blue-main);
  --btnFontColor:#fff;
  --btnHover:1px solid var(--btnColor);
}

.c-btn-blue-solid {
  --btnColor:#fff;
  --btnFontColor:var(--blue-main);
  --btnBorder:1px solid var(--btnFontColor);
  --btnHover:none;
}

.c-btn-blue-light {
  --btnColor: #e5f2fa;
  --btnFontColor:var(--blue-main);
  --btnBorder:1px solid var(--btnFontColor);
  --btnHover:none;
}

.c-btn-blue-light-solid {
  --btnColor:#fff;
  --btnFontColor: var(--blue-middle);
  --btnBorder:1px solid var(--btnFontColor);
  --btnHover:none;
}

.c-btn-green {
  --btnColor: var(--green);
  --btnFontColor:#fff;
  --btnHover:1px solid var(--btnColor);
}

.c-btn-black {
  --btnColor:#333;
  --btnFontColor:#fff;
  --btnHover:1px solid var(--btnColor);
}

.c-btn-black-solid {
  --btnColor:#fff;
  --btnFontColor: var(--black);
  --btnBorder:1px solid var(--btnFontColor);
  --btnHover:none;
}

.c-btn-basic {
  text-align: center;
  font-size: 1.5rem;
  position: relative;
  display: block;
  background: var(--btnColor);
  color: var(--btnFosntColor);
  border: var(--btnBorder);
  min-width: 220px;
  overflow: hidden;
  z-index: 1;
}
.c-btn-basic a {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  color: var(--btnFontColor);
  padding: 1.3em 1.5em 1.3em 3em;
  position: relative;
  text-align: center;
}
.c-btn-basic a::after {
  display: inline-block;
  font: var(--fa-font-solid);
  content: "\f105";
  color: var(--btnFontColor);
  font-size: 1.1rem;
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  line-height: 1.5em;
}
.c-btn-basic a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--btnFontColor);
  border: var(--btnHover);
  color: var(--btnColor);
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: -1;
}
.c-btn-basic a:hover {
  color: var(--btnColor);
}
.c-btn-basic a:hover::after {
  color: var(--btnColor);
}
.c-btn-basic a:hover::before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.c-btn-basic-thin a {
  padding: 0.5em 1.5em;
}

/*------------------------------------------------------
小さいボタン
------------------------------------------------------*/
.c-btn-small a{
    padding:4px 10px;
}


/*------------------------------------------------------
右側が三角のボタン
------------------------------------------------------*/
.c-btn-right {
  font-size: clamp(1.3rem, 1.3636363636vw, 1.5rem);
  position: relative;
  width: 200px;
  height: 40px;
  background: var(--blue-main);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-btn-right a {
  color: #fff;
}
.c-btn-right::after {
  content: "";
  position: absolute;
  top: 0;
  right: -20px;
  width: 0;
  height: 0;
  border-left: 20px solid var(--blue-main);
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
}
.c-btn-right:hover {
  background: var(--green);
}
.c-btn-right:hover::after {
  border-left: 20px solid var(--green);
}

.c-btn-right__yellow {
  font-size: clamp(1.3rem, 1.3636363636vw, 1.5rem);
  position: relative;
  width: 200px;
  height: 40px;
  background: var(--yellow-bg);
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-btn-right__yellow a {
  color: #fff;
}
.c-btn-right__yellow::after {
  content: "";
  position: absolute;
  top: 0;
  right: -20px;
  width: 0;
  height: 0;
  border-left: 20px solid var(--yellow-bg);
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
}
.c-btn-right__yellow a {
  color: #333;
  font-weight: bold;
}
.c-btn-right__yellow:hover {
  background: #febe3e;
}
.c-btn-right__yellow:hover::after {
  border-left: 20px solid #febe3e;
}

.c-btn-radius__yellow {
  border-radius: 16px;
  padding: 2px 10px;
  text-align: center;
  color: #333;
  font-weight: bold;
  background: var(--yellow-bg);
  font-size: 1.1rem;
  margin-left: 5px;
  margin-bottom: 4px;
  border-radius: 8px;
  padding: 2px 6px;
}

a.p-btn-map {
  text-decoration: none;
}


/*-----------------------------------------
ボタンのアニメーション　画面に入ったらフェードイン
-----------------------------------------*/

.fade-btn{
    opacity:0;    
}

.fade-btn.visible {
    animation: fadeBtn .5s ease .6s forwards;
    opacity: 0;
    transform: translateY(0);
}

@keyframes fadeBtn {
    0% {
        opacity: 0;
        /* transform: translateY(40px); */
        scale:0.9;
    }
    100% {
        opacity: 1;
        /* transform: translateY(0); */
        scale:1;
    }
}

/*------------------------------------------------------
光るボタン（お問い合わせ用）
------------------------------------------------------*/
.c-btn-shine{
    a{
        color: #fff;
        font-weight: bold;
        background: linear-gradient(50deg, #749cf4, var(--blue-main));
        text-decoration: none;
        display: inline-block;
        border: 1px solid transparent;
        position: relative;
        overflow: hidden;
        display: grid;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: 100%;
        padding: 1.3em 1.5em;
        position: relative;
        text-align: center;
        &::before{
            content: "";
            animation: shine 3s cubic-bezier(0.25, 0, 0.25, 1) infinite;
            background: #fff;
            width: 140%;
            height: 100%;
            transform: skewX(-135deg);
            top: 0;
            left: 0;
            opacity: 0.5;
            position: absolute;
            }
        span:before{
            font: var(--fa-font-solid);
            content: "\f0e0";
            color: #fff;
            font-size: 2.2rem;
            margin-right:0.5em;
        }
        }
    }



/* 光の動き */
@keyframes shine{
    0% {
      left: -160%;
      opacity: 0;
    }
    70% {
      left: -160%;
      opacity: 0.5;
    }
    71% {
      left: -160%;
      opacity: 1;
    }
    100% {
      left: -20%;
      opacity: 0;
    }
  }


/*------------------------------------------------------
基本のボタンを2つ並べる時のレイアウト
------------------------------------------------------*/
.p-btn-col1 {
  text-align: center;
}
.p-btn-col1 button {
  margin: 40px auto;
  @media print, screen and (min-width: 768px) {
    min-width: 390px;
  }
}

.p-btn-col2 {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    justify-content: center;
    margin: 40px auto;
    gap: 20px;
}

/*======================================================
矢印
======================================================*/
/* 下向き矢印 */

.is-orange{
    --bgColor:var(--orange);
}

.is-pink{
    --bgColor: var(--pink-sunday);
}

.arrow-bottom-s{
  background: var(--bgColor);
  height: 28px;
  width: 40px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}


/*======================================================
アイコンの設定
======================================================*/
/*------------------------------------------------------
矢印系
------------------------------------------------------*/
/* シンプル矢印細いバージョン （ → ）*/
.c-ico-arrow-r {
  text-decoration: none !important;
}
.c-ico-arrow-r-be::before, .c-ico-arrow-r-af::after {
  display: inline-block;
  font: var(--fa-font-regular);
  content: "\f061";
}
.c-ico-arrow-r-be::before {
  margin-right: 0.5em;
}
.c-ico-arrow-r-af::after {
  margin-left: 0.5em;
}

/* 丸付き矢印・矢印細いバージョン （ ○ の中に → ）*/
.c-ico-arrow-circle-r-af, .c-ico-arrow-circle-r-be {
  text-decoration: none !important;
}
.c-ico-arrow-circle-r-be::before, .c-ico-arrow-circle-r-af::after {
  display: inline-block;
  font: var(--fa-font-regular);
  content: "\f0a9";
}
.c-ico-arrow-circle-r-be::before {
  margin-right: 0.5em;
}
.c-ico-arrow-circle-r-af::after {
  margin-left: 0.5em;
}

/* 丸付き矢印・矢印細いバージョン （ ○ の中に > ）*/
.c-ico-chevron-circle-af, .c-ico-chevron-circle-be {
  text-decoration: none !important;
}
.c-ico-chevron-circle-be::before, .c-ico-chevron-circle-af::after {
  display: inline-block;
  font: var(--fa-font-regular);
  content: "\f138";
}
.c-ico-chevron-circle-be::before {
  margin-right: 0.5em;
}
.c-ico-chevron-circle-af::after {
  margin-left: 0.5em;
}

/* 丸の中に矢印・矢印が三角（ ○ の中に ▶ ） */
.c-ico-chevron-circle {
  text-decoration: none;
}
.c-ico-chevron-circle-be::before, .c-ico-chevron-circle-af::after {
  display: inline-block;
  font: var(--fa-font-regular);
  content: "\f330";
}
.c-ico-chevron-circle-be::before {
  margin-right: 0.5em;
}
.c-ico-chevron-circle-af::after {
  margin-left: 0.5em;
}

/* 三角矢印（右向き）（ ▶︎ ） beで前、afで後ろに配置　*/
.c-ico-triangle-af, .c-ico-triangle-be {
  text-decoration: none !important;
}
.c-ico-triangle-be::before, .c-ico-triangle-af::after {
  display: inline-block;
  font: var(--fa-font-solid);
  content: "\f0da";
}
.c-ico-triangle-be::before {
  margin-right: 0.5em;
}
.c-ico-triangle-af::after {
  margin-left: 0.5em;
}

/* リンクマーク */
.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";
}
.c-ico-dl-be::before {
  margin-right: 0.5em;
}
.c-ico-dl-af::after {
  margin-left: 0.5em;
}

/*------------------------------------------------------
書類のマーク
------------------------------------------------------*/
.c-ico-doc-be {
  display: inline-block;
  font: var(--fa-font-solid);
  content: "\e178";
}
.c-ico-doc-be-af, .c-ico-doc-be-be {
  text-decoration: none !important;
}
.c-ico-doc-be-be::before, .c-ico-doc-be-af::after {
  color: #333;
}
.c-ico-doc-be-be::before {
  margin-right: 0.5em;
}
.c-ico-doc-be-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;
}

/*======================================================
カードレイアウト
======================================================*/
/*------------------------------------------------------
縦型カードレイアウト（写真入り）
------------------------------------------------------*/
.c-card-wrapper {
  display: grid;
  gap:1em;
  margin-right:1em;
  margin-left:1em;
  max-width:1000px;
  margin-inline: auto;
}

.c-card {
  background-color: var(--blue-bg);
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  justify-items: center;
  padding-top:2em;
}
@media screen and (max-width: 767px) {
  .c-card {
    margin-bottom: 20px;
  }
}
.c-card p {
  padding: 0 1em 1em;
}

.c-card figure {
  padding: 0 1em;
}
.c-card figure img:hover {
  -webkit-transition: -webkit-transform;
  transition: -webkit-transform;
  transition: transform;
  transition: transform, -webkit-transform;
    transform: scale(1.2) 0.3s;
  overflow: hidden;
}
.c-card figure figcaption {
  font-weight: bold;
  text-align: center;
  margin: 10px auto 0;
}






/*------------------------------------------------------
「new」吹き出し形式
------------------------------------------------------*/
.c-balloon-left {
  position: relative;
  display: inline-block;
  margin: 1.5em 0.5em 1.5em 0;
  padding: 0 5px;
  width: 40px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: #FFF;
  font-size: 1.1rem;
  background: #ffcc75;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

.c-balloon-left:before {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  margin-top: -6px;
  border: 6px solid transparent;
  border-left: 6px solid #ffcc75;
  z-index: 0;
}

/*======================================================
テーブル 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: #d6d6d6;
}
.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;
}
}

/*------------------------------------------------------
テーブルレスポンシブ表示（複雑な表の場合は別途設定してください。）
------------------------------------------------------*/
@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;
  }
}


/*----------------------------------------------------
四角いの細めのボーダー枠
-----------------------------------------------------*/
.u-border__gray {
  border: 1px solid #ccc;
  padding: 30px;
}
@media screen and (max-width: 767px) {
  .u-border__gray {
    padding: 10px;
  }
}

/*----------------------------------------------------
米印をつける場合
-----------------------------------------------------*/
.u-kome {
  position: relative;
}
.u-kome::after {
  content: "※";
  position: absolute;
  top: -18px;
  right: -20px;
  visibility: visible;
  font-size: 1.2rem;
  color: #333;
}

/*----------------------------------------------------
小さめの注意書き（赤）
-----------------------------------------------------*/
.u-att {
  font-size: clamp(1.1rem, 1.0909090909vw, 1.3rem);
  color: #E90F0F;
}

/*----------------------------------------------------
テキストのアニメーション　少しずつ表示
-----------------------------------------------------*/

.blur-box{
  animation-name: blur;
  animation-duration: 2s;
  animation-fill-mode:forwards;
  animation-iteration-count: forwards;
}

@keyframes blur{
  from {
    filter: blur(50px);
  }
  to {
    filter: blur(0);
  }
}

/*----------------------------------------------------
テキストのアニメーション　左から少しずつ表示
-----------------------------------------------------*/

.text-flow-anime {
  clip-path: inset(0 100% 0 0);
}

.text-flow-anime.is-loaded {
    transition: clip-path 1.0s cubic-bezier(0.77, 0, 0.175, 1) 0.5s;
    clip-path: inset(0);
}