@charset "UTF-8";
/*=============================================
【リセットCSS__A Modern CSS Reset】
==============================================*/
*****,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  font-size: 1em;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*=============================================
【リセットCSS__ここから追記部分】
==============================================*/
ul,
ol {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: unset;
}

button {
  all: unset;
}

input {
  margin: 0;
}

/*=====================================
【共通_base】
======================================*/
body {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #333;
  font-size: 16px;
  line-height: 1.7;
  background: #FFF7F9;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*=====================================
【リスト_コンポーネント_01】
======================================*/
.c-list-01 {
  padding-left: 0.5em;
}
.c-list-01-item {
  text-indent: -1.5em;
  padding-left: 1.5em;
  margin-top: 12px;
}
.c-list-01-item.double-digit {
  padding-left: 1.5em;
  text-indent: -2em;
}
.c-list-01-item-prefix {
  margin-right: 8px;
}
.c-list-01-item--annotation {
  padding-left: 1em;
  text-indent: -1em;
  margin-top: 6px;
}

/*=====================================
【リスト_コンポーネント_02】
======================================*/
.c-list-02 {
  margin-top: 12px;
}
.c-list-02-item {
  padding-left: 1em;
  text-indent: -1em;
  margin-top: 6px;
}
.c-list-02-item-B {
  margin-top: 8px;
}
.c-list-02-item-B:first-child {
  margin-top: 0;
}
.c-list-02-item-B--ttl {
  display: inline-block;
  width: 80px;
  text-align: center;
  background-color: #e5e5e5;
  margin-right: 8px;
}

/*=====================================
【リスト_コンポーネント_03】
======================================*/
.c-list-03 {
  margin-top: 12px;
}
.c-list-03-item {
  margin-top: 6px;
  position: relative;
  margin-left: 16px;
}
.c-list-03-item::before {
  content: "";
  position: absolute;
  top: 8px;
  left: -16px;
  width: 8px;
  height: 8px;
  background-color: #0A4C9D;
  border-radius: 50%;
}
.c-list-03-item--annotation {
  padding-left: 1em;
  text-indent: -1em;
  margin: 8px 0px 0px 16px;
}

/*=====================================
【リスト_コンポーネント_04】
======================================*/
.c-list-04 {
  margin-top: 16px;
}
.c-list-04-item {
  border-bottom: 1px solid #707070;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-list-04-item:first-child {
  border-top: 1px solid #707070;
}
.c-list-04-item-num--double-digit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  background: #d95978;
  padding: 4px 10.5px;
  margin-right: 10px;
}
.c-list-04-item-num--a-digit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  background: #d95978;
  padding: 4px 15px;
  margin-right: 10px;
}

/*=====================================
【リスト_コンポーネント_05】
======================================*/
.c-list-05 {
  margin-top: 12px;
  margin-left: 20px;
}
.c-list-05-item {
  position: relative;
}
.c-list-05-item::after {
  content: "";
  position: absolute;
  top: 3px;
  left: -20px;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
          clip-path: polygon(0 0, 0 100%, 100% 50%);
  width: 13px;
  height: 15px;
  background-color: #d95978;
}
.c-list-05-link {
  font-weight: bold;
  color: #666;
  border-bottom: 1px dotted #707070;
}
.c-list-05-link:hover {
  opacity: 0.5;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  cursor: pointer;
}

/*=====================================
【リスト_コンポーネント_06】
======================================*/
.c-list-06 {
  margin-top: 12px;
}
.c-list-06-item {
  margin-top: 8px;
}

/*=====================================
【リスト_コンポーネント_07】
======================================*/
.c-list-07 {
  margin-top: 12px;
}
.c-list-07-item {
  margin-top: 2px;
}

/*=====================================
【リスト_コンポーネント_08】
======================================*/
.c-list-08-sec {
  margin-top: 32px;
}
.c-list-08-ttl {
  color: #d95978;
  background-color: #efe9cd;
  font-weight: bold;
  padding: 8px;
  font-size: 18px;
}
.c-list-08-deadline {
  margin-top: 16px;
}
.c-list-08-btn {
  display: block;
  font-size: 16px;
  color: #fff;
  padding: 20px 20px 20px 37px;
  background-color: #167dad;
  border-radius: 5px;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  padding: 16px 0px;
  width: 216px;
  margin-top: 6px;
}
.c-list-08-btn:before {
  content: "";
  position: absolute;
  top: 47%;
  -webkit-transform: translateY(-47%);
          transform: translateY(-47%);
  left: 14px;
  width: 14px;
  height: 14px;
  background-color: #fff;
  -webkit-clip-path: polygon(0 0, 0 100%, 90% 50%);
          clip-path: polygon(0 0, 0 100%, 90% 50%);
}
.c-list-08-btn:hover {
  opacity: 0.5;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  cursor: pointer;
}
.c-list-08-btn::before {
  left: 60px;
}
@media screen and (min-width: 767px) {
  .c-list-08 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .c-list-08-sec {
    width: 48%;
  }
  .c-list-08-ttl {
    font-size: 16px;
    padding: 0 4px;
  }
  .c-list-08-deadline {
    font-size: 13px;
  }
}
@media screen and (min-width: 940px) {
  .c-list-08-sec {
    width: 47%;
  }
  .c-list-08-ttl {
    font-size: 18px;
    padding: 0 8px;
  }
  .c-list-08-deadline {
    font-size: 15px;
  }
}

/*=====================================
【リスト_コンポーネント_09】
======================================*/
.c-list-09 {
  margin-top: 16px;
}
.c-list-09-ttl {
  font-size: 16px;
  font-weight: bold;
  color: #d95978;
  border-bottom: 1px solid #d95978;
  line-height: 1.3;
}
.c-list-09-dl-list {
  margin-top: 16px;
}
.c-list-09-dl-list-ttl {
  font-weight: bold;
  margin-top: 8px;
}
.c-list-09-dl-list-txt {
  margin-top: 8px;
}

/*=====================================
【リスト_コンポーネント_10】
======================================*/
.c-list-10 {
  margin-top: 16px;
}
.c-list-10-item {
  position: relative;
  margin-bottom: 10px;
  border-bottom: 1px solid #707070;
  padding-bottom: 10px;
}
.c-list-10-item-link {
  margin-left: 20px;
  color: #d95978;
  border-bottom: 2px dotted #d95978;
  padding-bottom: 3px;
}
.c-list-10-item-link::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #d95978;
  top: 5.5px;
  left: -20px;
  margin-left: 20px;
}
.c-list-10-item-link:hover {
  opacity: 0.5;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  cursor: pointer;
}

/*=====================================
【リスト_コンポーネント_11】
======================================*/
.c-list-11-ttl {
  color: #d95978;
  background-color: #efe9cd;
  font-weight: bold;
  padding: 8px;
  font-size: 18px;
  background-color: #EDEDE4;
  margin-top: 24px;
  margin-bottom: 12px;
}

/*=====================================
【リスト_コンポーネント_12】
======================================*/
.c-list-12-item {
  text-indent: -1.5em;
  padding-left: 1.5em;
  margin-top: 12px;
}
.c-list-12-item.double-digit {
  padding-left: 1.5em;
  text-indent: -2em;
}
.c-list-12-item-prefix {
  margin-right: 8px;
}
.c-list-12-item--annotation {
  padding-left: 1em;
  text-indent: -1em;
  margin-top: 6px;
}

/*=====================================
【リスト_コンポーネント_13】
======================================*/
.c-list-13-item {
  margin-top: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #888;
}
@media screen and (min-width: 767px) {
  .c-list-13-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .c-list-13-date {
    margin-right: 10px;
  }
}

/*=====================================
【リスト_コンポーネント_14】
======================================*/
.c-list-14__item {
  margin-top: 12px;
}
.c-list-14__item:first-of-type {
  margin-top: 0;
}
.c-list-14__item--ttl {
  line-height: 1.4;
  font-weight: bold;
  border-bottom: 1px solid #D95978;
}
.c-list-14__item--txt {
  margin-top: 6px;
}

/*=====================================
【ボタン_コンポーネント_01】
======================================*/
.c-btn-01 {
  display: block;
  font-size: 16px;
  color: #fff;
  padding: 20px 20px 20px 37px;
  background-color: #167dad;
  border-radius: 5px;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin: 16px auto 0px;
}
.c-btn-01:before {
  content: "";
  position: absolute;
  top: 47%;
  -webkit-transform: translateY(-47%);
          transform: translateY(-47%);
  left: 14px;
  width: 14px;
  height: 14px;
  background-color: #fff;
  -webkit-clip-path: polygon(0 0, 0 100%, 90% 50%);
          clip-path: polygon(0 0, 0 100%, 90% 50%);
}
.c-btn-01:hover {
  opacity: 0.5;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  cursor: pointer;
}

/*=====================================
【ボタン_コンポーネント_02】
======================================*/
.c-btn-02 {
  display: block;
  font-size: 16px;
  color: #fff;
  padding: 20px 20px 20px 37px;
  background-color: #167dad;
  border-radius: 5px;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin: 16px 0px;
}
.c-btn-02:before {
  content: "";
  position: absolute;
  top: 47%;
  -webkit-transform: translateY(-47%);
          transform: translateY(-47%);
  left: 14px;
  width: 14px;
  height: 14px;
  background-color: #fff;
  -webkit-clip-path: polygon(0 0, 0 100%, 90% 50%);
          clip-path: polygon(0 0, 0 100%, 90% 50%);
}
.c-btn-02:hover {
  opacity: 0.5;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  cursor: pointer;
}

/*=====================================
【ボタン_コンポーネント_03】
======================================*/
.c-btn-03 {
  display: block;
  font-size: 16px;
  color: #fff;
  padding: 20px 20px 20px 37px;
  background-color: #167dad;
  border-radius: 5px;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  padding: 16px 0px;
  width: 216px;
  margin-top: 32px;
}
.c-btn-03:before {
  content: "";
  position: absolute;
  top: 47%;
  -webkit-transform: translateY(-47%);
          transform: translateY(-47%);
  left: 14px;
  width: 14px;
  height: 14px;
  background-color: #fff;
  -webkit-clip-path: polygon(0 0, 0 100%, 90% 50%);
          clip-path: polygon(0 0, 0 100%, 90% 50%);
}
.c-btn-03:hover {
  opacity: 0.5;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  cursor: pointer;
}
.c-btn-03::before {
  left: 60px;
}

/*=====================================
【ボタン_コンポーネント_04】
======================================*/
.c-btn-04 {
  display: block;
  background-color: #0A4C9D;
  border-radius: 5px;
  padding: 20px 0;
}
.c-btn-04__item {
  display: block;
  font-size: 16px;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  line-height: 1;
  position: relative;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.c-btn-04__item:before {
  content: "";
  position: absolute;
  top: 0;
  left: -20px;
  width: 14px;
  height: 14px;
  background-color: #fff;
  -webkit-clip-path: polygon(0 0, 0 100%, 90% 50%);
          clip-path: polygon(0 0, 0 100%, 90% 50%);
}
.c-btn-04:hover {
  opacity: 0.5;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  cursor: pointer;
}

/*=====================================
【ボタン_コンポーネント_05】
======================================*/
.c-btn-05 {
  display: block;
  background-color: #D5D5D5;
  border-radius: 5px;
  padding: 24px 4px;
}
.c-btn-05__item {
  display: block;
  font-size: 16px;
  font-weight: bold;
  color: #888;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  line-height: 1;
  position: relative;
}
.c-btn-05__item:before {
  content: "";
  position: absolute;
  top: 0;
  left: -20px;
  width: 14px;
  height: 14px;
  background-color: #888;
  -webkit-clip-path: polygon(0 0, 0 100%, 90% 50%);
          clip-path: polygon(0 0, 0 100%, 90% 50%);
}
.c-btn-05:hover {
  opacity: 0.5;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  cursor: pointer;
}

/*=====================================
【タイトル_コンポーネント_01】
======================================*/
.c-ttl-01 {
  font-size: 21px;
  font-weight: bold;
  color: #d95978;
  border-bottom: 4px solid #d95978;
  line-height: 1.3;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

/*=====================================
【タイトル_コンポーネント_02】
======================================*/
.c-ttl-02 {
  color: #d95978;
  background-color: #EDEDE4;
  font-weight: bold;
  padding: 8px;
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: -0.1px;
}

/*=====================================
【タイトル_コンポーネント_03】
======================================*/
.c-ttl-03 {
  font-size: 16px;
  font-weight: bold;
  color: #d95978;
  border-bottom: 1px solid #d95978;
  margin-top: 12px;
}

/*=====================================
【タイトル_コンポーネント_04】
======================================*/
.c-ttl-04 {
  font-size: 18px;
  border-left: 5px solid #efe9cd;
  padding-left: 8px;
  margin-top: 12px;
}

/*=====================================
【テキスト_コンポーネント_01】
======================================*/
.c-txt-01 {
  margin-top: 12px;
}
.c-txt-01--annotation {
  padding-left: 1em;
  text-indent: -1em;
  margin-top: 4px;
}

/*=====================================
【ブロック_コンポーネント_01 (ヘッダー)】
======================================*/
.c-block-01 {
  background: #d95978;
  text-align: center;
}
.c-block-01__inner {
  padding: 4px 0;
}
.c-block-01__ttl {
  font-size: 21px;
  font-weight: bold;
  color: #fff;
}
@media screen and (min-width: 767px) {
  .c-block-01__ttl {
    font-size: 48px;
  }
}

/*=====================================
【ブロック_コンポーネント_02】
======================================*/
.c-block-02 {
  max-width: 300px;
  margin: 24px auto 0px;
}
.c-block-02-img-pc {
  display: none;
}
.c-block-02-img-sp {
  width: 200px;
  margin: auto;
}
.c-block-02-desc {
  margin-top: 16px;
  text-align: center;
}
.c-block-02-desc-txt {
  font-size: 14px;
}
.c-block-02-desc-ttl {
  font-weight: bold;
  color: #d95978;
}
.c-block-02-desc-name {
  font-weight: bold;
  margin-top: 4px;
}
@media screen and (min-width: 767px) {
  .c-block-02 {
    padding: 0;
    max-width: 590px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .c-block-02-img-sp {
    display: none;
  }
  .c-block-02-img-pc {
    display: block;
    width: 140px;
    margin-right: 16px;
  }
  .c-block-02-desc {
    width: 300px;
    text-align: left;
  }
}

/*=====================================
【ブロック_コンポーネント_03 (サイドバー)】
======================================*/
.c-block-03__inner {
  padding: 5px 20px 20px;
}
.c-block-03__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-block-03__list-item {
  width: 48%;
  margin-top: 15px;
}
.c-block-03__list-item-link {
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  border-top: 2px solid #d95978;
  border-right: 2px solid #d95978;
  border-bottom: 2px solid #d95978;
  border-left: 2px solid #d95978;
  color: #d95978;
  background-color: #fff;
  padding: 12px;
}
.c-block-03__list-item-link:hover {
  color: #fff;
  background-color: #d95978;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.c-block-03__list-item-link--close {
  font-weight: bold;
  color: #888;
  background: #d5d5d5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 12px;
}
.c-block-03__list-item-link--close:hover {
  color: #888;
  background: #d5d5d5;
  cursor: text;
}
.c-block-03__list-item-link.icon::after {
  font-family: "Material Icons";
  content: "\e89e";
  vertical-align: top;
  margin-left: 2px;
}
.c-block-03__postar {
  margin-top: 15px;
  text-align: center;
}
.c-block-03__postar-img {
  display: none;
}
.c-block-03__postar-link {
  display: inline-block;
  position: relative;
}
.c-block-03__postar-link::before {
  content: "";
  position: absolute;
  top: 6px;
  left: -20px;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
          clip-path: polygon(0 0, 0 100%, 100% 50%);
  width: 14px;
  height: 14px;
  background-color: #333;
}
.c-block-03__postar-link:hover {
  opacity: 0.5;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  cursor: pointer;
}
.c-block-03__bnr {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto 0;
}
.c-block-03__bnr:hover {
  opacity: 0.5;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  cursor: pointer;
}
.c-block-03-is-active {
  color: #fff;
  background-color: #d95978;
}
.c-block-03-not-active {
  color: #d95978;
  background-color: #fff;
}
@media screen and (min-width: 767px) {
  .c-block-03 {
    width: 25.5%;
    margin-right: 20px;
  }
  .c-block-03__inner {
    padding: 0px;
  }
  .c-block-03__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-block-03__list-item {
    width: 100%;
    margin-top: 0;
  }
  .c-block-03__list-item-link {
    border-right: none;
    border-bottom: none;
    border-left: none;
    border-top: 1px solid #d95978;
  }
  .c-block-03__list-item-link--close {
    border-top: 1px solid #d95978;
  }
  .c-block-03__list-item-link--close.last {
    border-bottom: 1px solid #d95978;
  }
  .c-block-03__list-item-link.last {
    border-bottom: 1px solid #d95978;
  }
  .c-block-03__postar {
    text-align: center;
    margin: 30px auto 0;
    width: 180px;
  }
  .c-block-03__postar-img {
    display: block;
  }
  .c-block-03__postar-img:hover {
    opacity: 0.5;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
    cursor: pointer;
  }
  .c-block-03__postar-link {
    margin: 8px 0px 0px 16px;
    font-size: 14px;
  }
  .c-block-03__postar-link::before {
    top: 4px;
  }
}

/*=====================================
【ブロック_コンポーネント_04】
======================================*/
@media screen and (min-width: 767px) {
  .c-block-04 {
    width: 650px;
  }
}

/*=====================================
【ブロック_コンポーネント_05】
======================================*/
.c-block-05 {
  max-width: 500px;
  margin: 20px auto 0;
}
.c-block-05__media-img {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2列の等間隔レイアウト */
}
.c-block-05__media-desc-ttl {
  display: block;
  color: #333;
  font-weight: bold;
  position: relative;
  margin: 20px 0px 0px 20px;
}
.c-block-05__media-desc-ttl::before {
  content: "";
  position: absolute;
  top: 5px;
  left: -20px;
  width: 14px;
  height: 14px;
  background-color: #144a73;
}
.c-block-05__media-desc-ttl-02 {
  color: #144a73;
  font-weight: bold;
  margin-top: 16px;
}
.c-block-05__media-desc-ttl-03 {
  margin-top: 16px;
}
.c-block-05__media-desc-ttl-04 {
  margin-top: 16px;
  background-color: #e3f5c9;
  border-left: 4px solid #005e3c;
  padding: 2px 8px;
  color: #333;
}
.c-block-05__media-desc-txt {
  margin-top: 8px;
}
.c-block-05__media-desc-list {
  margin-top: 4px;
}
.c-block-05__media-desc-list-item {
  position: relative;
  margin-left: 12px;
}
.c-block-05__media-desc-list-item::before {
  content: "";
  position: absolute;
  top: 10px;
  left: -12px;
  width: 6px;
  height: 6px;
  background-color: #144a73;
  border-radius: 50%;
}
.c-block-05__media-desc-img {
  margin-top: 20px;
  width: 100%;
}
.c-block-05__media-desc-link {
  margin-top: 8px;
}
.c-block-05__media-desc-link-item {
  font-weight: bold;
  color: #888;
  font-size: 18px;
  border-bottom: 1px dotted #888;
}
.c-block-05__media-desc-link-item:hover {
  opacity: 0.5;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  cursor: pointer;
}
.c-block-05__media-desc-move {
  width: 100%;
  height: auto;
}
.c-block-05__media-desc-tel {
  font-weight: bold;
  color: #888;
  font-size: 18px;
  position: relative;
  margin-left: 20px;
}
.c-block-05__media-desc-tel::before {
  font-family: "Material Icons";
  content: "call";
  position: absolute;
  top: 0px;
  left: -20px;
  width: 14px;
  height: 14px;
}
@media screen and (min-width: 767px) {
  .c-block-05__media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .c-block-05__media-img {
    display: block;
    width: 30%;
    margin-right: 16px;
  }
  .c-block-05__media-img-item {
    width: 100%;
  }
  .c-block-05__media-desc {
    width: 70%;
  }
  .c-block-05__media-desc-ttl {
    margin-top: 0;
  }
}

/*=====================================
【ブロック_コンポーネント_06】
======================================*/
.c-block-06 {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2列の等間隔レイアウト */
  grid-gap: 20px; /* アイテム間の隙間 */
  justify-items: center; /* アイテムを中央寄せ */
  margin-top: 20px;
}
.c-block-06-item__txt {
  margin-bottom: 10px;
  position: relative;
  margin-left: 13px;
  font-size: 12px;
}
.c-block-06-item__txt::after {
  content: "";
  position: absolute;
  top: 6px;
  left: -13px;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  width: 12px;
  height: 12px;
  background-color: #333;
}
.c-block-06-item__img {
  border: solid 1px #707070;
}
@media screen and (min-width: 767px) {
  .c-block-06-item {
    margin-bottom: 10px;
  }
  .c-block-06-item__txt {
    font-size: 14px;
  }
}
@media screen and (min-width: 940px) {
  .c-block-06 {
    grid-template-columns: repeat(3, 1fr); /* 3列の等間隔レイアウト */
  }
  .c-block-06-item:hover {
    opacity: 0.5;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
}

/*=====================================
【ブロック_コンポーネント_07】
======================================*/
.c-block-07 {
  background-color: #fff;
  padding: 40px 20px 30px;
}

/*=====================================
【ブロック_コンポーネント_08】
======================================*/
.c-block-08 {
  background: #fff;
  padding: 30px;
}
@media screen and (min-width: 767px) {
  .c-block-08 {
    width: 650px;
  }
}

/*=====================================
【ブロック_コンポーネント_09 (フッター)】
======================================*/
.c-block-09 {
  background: #D95978;
  color: #fff;
}
.c-block-09__inner {
  padding: 30px 20px;
}
.c-block-09__ttl {
  border: 1px solid #fff;
  padding: 0 4px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-block-09__list {
  margin-top: 4px;
}
@media screen and (min-width: 767px) {
  .c-block-09__inner {
    max-width: 900px;
    margin: 30px auto 0;
  }
  .c-block-09__list-item-tel {
    margin-right: 10px;
  }
}
@media screen and (min-width: 940px) {
  .c-block-09__inner {
    padding: 20px 0;
  }
}

/*=====================================
【ブロック_コンポーネント_10】
======================================*/
.c-block-10 {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2列の等間隔レイアウト */
  grid-gap: 20px; /* アイテム間の隙間 */
  justify-items: center; /* アイテムを中央寄せ */
  margin-top: 20px;
}
.c-block-10-item__txt {
  margin-bottom: 10px;
  position: relative;
  margin-left: 13px;
  font-size: 12px;
}
.c-block-10-item__txt::after {
  content: "";
  position: absolute;
  top: 6px;
  left: -13px;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  width: 12px;
  height: 12px;
  background-color: #333;
}
.c-block-10-item__img {
  border: solid 1px #707070;
}
@media screen and (min-width: 767px) {
  .c-block-10-item {
    margin-bottom: 10px;
  }
  .c-block-10-item__txt {
    font-size: 14px;
  }
}
@media screen and (min-width: 940px) {
  .c-block-10 {
    grid-template-columns: repeat(3, 1fr); /* 3列の等間隔レイアウト */
  }
  .c-block-10-item:hover {
    opacity: 0.5;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
}

/*=====================================
【イベントブロック】
======================================*/
.event {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 767px) {
  .event {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.event__img {
  border: 1px solid #333;
  width: 100%;
  height: auto;
  max-width: 280px;
  margin-top: 20px;
}
.event__img:hover {
  opacity: 0.5;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  cursor: pointer;
}
.event__date {
  max-width: 100%;
}

/*=====================================
【テンプレート_コンポーネント_01】
======================================*/
@media screen and (min-width: 767px) {
  .c-template-01 {
    max-width: 900px;
    margin: auto;
    padding: 30px 20px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 940px) {
  .c-template-01 {
    padding: 30px 0px 0px;
  }
}

/*=====================================
【共通_スタイル】
======================================*/
.footer-mail-link-txt {
  color: #fff;
  border-bottom: 2px dotted #fff;
}
.footer-mail-link-txt:hover {
  opacity: 0.5;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  cursor: pointer;
}

.link-txt {
  color: #888;
  border-bottom: 1px dotted #0a4c9d;
}
.link-txt:hover {
  opacity: 0.5;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  cursor: pointer;
}

.txt-annotation {
  font-size: 14px;
  color: #333;
  margin-left: 10px;
  font-weight: normal;
}

.modify-link-txt-01 {
  color: #0a4c9d;
  font-weight: bold;
  border-bottom: 1px dotted #0a4c9d;
  line-height: 1;
  display: inline-block;
}
.modify-link-txt-01:hover {
  opacity: 0.5;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  cursor: pointer;
}

.modify-link-txt-02 {
  color: #888;
  font-weight: bold;
  border-bottom: 1px dotted #0a4c9d;
  line-height: 1;
  display: inline-block;
}
.modify-link-txt-02:hover {
  opacity: 0.5;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  cursor: pointer;
}

.color-333 {
  color: #333;
}

.bg-c-0A4C9D {
  background-color: #0a4c9d;
}

.txt-indent {
  padding-left: 1em;
  text-indent: -1em;
}

.txt-delate {
  text-decoration: line-through;
}

.txt-red {
  color: #bf3737;
}

.txt-center {
  text-align: center;
}

.w-238 {
  width: 238px;
}

.w-320 {
  width: 320px;
}

.w-full {
  width: 100%;
}

.mx-auto {
  margin: 0 auto;
}

/*=====================================
【modify.scss__margin】
======================================*/
.mgT0 {
  margin-top: 0px;
}

.mgT5 {
  margin-top: 5px;
}

.mgT10 {
  margin-top: 10px;
}

.mgT15 {
  margin-top: 15px;
}

.mgT20 {
  margin-top: 20px;
}

.mgT25 {
  margin-top: 25px;
}

.mgT30 {
  margin-top: 30px;
}

.mgT35 {
  margin-top: 35px;
}

.mgT40 {
  margin-top: 40px;
}

.mgT45 {
  margin-top: 45px;
}

.mgT50 {
  margin-top: 50px;
}

.mgR0 {
  margin-right: 0px;
}

.mgR5 {
  margin-right: 5px;
}

.mgR10 {
  margin-right: 10px;
}

.mgR15 {
  margin-right: 15px;
}

.mgR20 {
  margin-right: 20px;
}

.mgR25 {
  margin-right: 25px;
}

.mgR30 {
  margin-right: 30px;
}

.mgR35 {
  margin-right: 35px;
}

.mgR40 {
  margin-right: 40px;
}

.mgR45 {
  margin-right: 45px;
}

.mgR50 {
  margin-right: 50px;
}

.mgB0 {
  margin-bottom: 0px;
}

.mgB5 {
  margin-bottom: 5px;
}

.mgB10 {
  margin-bottom: 10px;
}

.mgB15 {
  margin-bottom: 15px;
}

.mgB20 {
  margin-bottom: 20px;
}

.mgB25 {
  margin-bottom: 25px;
}

.mgB30 {
  margin-bottom: 30px;
}

.mgB35 {
  margin-bottom: 35px;
}

.mgB40 {
  margin-bottom: 40px;
}

.mgB45 {
  margin-bottom: 45px;
}

.mgB50 {
  margin-bottom: 50px;
}

.mgL0 {
  margin-left: 0px;
}

.mgL5 {
  margin-left: 5px;
}

.mgL10 {
  margin-left: 10px;
}

.mgL15 {
  margin-left: 15px;
}

.mgL20 {
  margin-left: 20px;
}

.mgL25 {
  margin-left: 25px;
}

.mgL30 {
  margin-left: 30px;
}

.mgL35 {
  margin-left: 35px;
}

.mgL40 {
  margin-left: 40px;
}

.mgL45 {
  margin-left: 45px;
}

.mgL50 {
  margin-left: 50px;
}

.mgL60 {
  margin-left: 60px;
}

.mgL60 {
  margin-left: 60px;
}

.mgL70 {
  margin-left: 70px;
}

.mgL80 {
  margin-left: 80px;
}

.mgL90 {
  margin-left: 90px;
}

.mgL100 {
  margin-left: 100px;
}

.mgRL10 {
  margin-left: 10px;
  margin-right: 10px;
}

.pdT0 {
  padding-top: 0px;
}

.pdT10 {
  padding-top: 10px;
}

.pdT20 {
  padding-top: 20px;
}

.pdT30 {
  padding-top: 30px;
}

.pdR10 {
  padding-right: 10px;
}

.pdR20 {
  padding-right: 20px;
}

.pdR30 {
  padding-right: 30px;
}

.pdB10 {
  padding-bottom: 10px;
}

.pdB20 {
  padding-bottom: 20px;
}

.pdB30 {
  padding-bottom: 30px;
}

.pdL10 {
  padding-left: 10px;
}

.pdL20 {
  padding-left: 20px;
}

.pdL30 {
  padding-left: 30px;
}

.fwb {
  font-weight: bold;
}

.fsz-18 {
  font-size: 18px;
}

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 767px) {
  .r-sp {
    display: none;
  }
}

.r-tab {
  display: none;
}
@media screen and (min-width: 767px) {
  .r-tab {
    display: block;
  }
}

.r-pc {
  display: none;
}
@media screen and (min-width: 940px) {
  .r-pc {
    display: block;
  }
}

@media screen and (min-width: 767px) {
  .r-tab-d-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
/*# sourceMappingURL=style.css.map */