@charset "utf-8";
/* font
----------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap&subset=japanese");
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@700;800&display=swap&subset=japanese");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap");

/*----- base-font-family -----*/
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
========================================================================== */
/**
* 1. Correct the line height in all browsers.
* 2. Prevent adjustments of font size after orientation changes in iOS.

html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
========================================================================== */
/**
* Remove the margin in all browsers.
*/
body {
   margin: 0;
   padding: 0;
}

/**
* Render the `main` element consistently in IE.
*/
main {
  display: block;
}

/**
* Correct the font size and margin on `h1` elements within `section` and
* `article` contexts in Chrome, Firefox, and Safari.
*/
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/* Misc
========================================================================== */
/**
* Add the correct display in IE 10+.
*/
template {
  display: none;
}

/**
* Add the correct display in IE 10.
*/
[hidden] {
  display: none;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

html.-noscroll {
  overflow: hidden;
}

body {
  color: #333;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  line-height: 1.5;
  font-size: 1.6rem;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
  background-color: #fff;
  margin: 0;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

@media only screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}

::selection {
  background-color: #148ddc;
  color:#fff;
}

a {
  color: #192259;
  text-decoration: none;
}

p {
  margin: 0 0 1em;
  line-height: 1.8;
}

p:last-child {
  margin-bottom: 0;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

dl,
dl dd {
  margin: 0;
}

table {
  border-collapse: collapse;
  border: none;
  border-spacing: 0;
}

th,
td {
  vertical-align: top;
  font-weight: normal;
  text-align: left;
  line-height: 1.8;
}

caption {
  text-align: left;
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

/*heading                                  */
.c-heading {
  font-weight: 500;
  position: relative;
  font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 2.4rem;
  line-height:1.5;
}

@media only screen and (max-width: 768px) {
  .c-heading {
    font-size: 1.8rem;
  }
}

.c-heading:not(:last-child) {
  margin-bottom: 1.5em;
}

.c-heading.-blue {
  color: #3B4A9F;
}

@media (min-width: 1025px) {
  .c-heading.-pc-white {
    color: #fff;
  }

  .c-heading.-pc-white.-large::before {
    background: #fff;
  }
}

.c-heading.-white {
  color: #fff;
}

.c-heading.-white.-large::before {
  background: #fff;
}

.c-heading.-xlarge {
  font-size: 4.8rem;
}

@media only screen and (max-width: 768px) {
  .c-heading.-xlarge {
    font-size: 2.6rem;
  }
}

.c-heading.-large {
  font-size: 3.8rem;
}

.c-heading.-large::before {
  content: "";
  width: 20px;
  height: 1px;
  background: #333;
  position: absolute;
  top: 0.8em;
  left: -32px;
}

@media only screen and (max-width: 768px) {
  .c-heading.-large {
    font-size: 2.2rem;
  }

  .c-heading.-large::before {
    width: 12px;
    left: -16px;
  }
}

.c-heading.-large.-noline::before {
  display: none;
}

.c-heading.-medium {
  font-size: 2.8rem;
}

@media only screen and (max-width: 768px) {
  .c-heading.-medium {
    font-size: 2rem;
  }
}

.c-heading.-small {
  font-size: 2rem;
}

@media only screen and (max-width: 768px) {
  .c-heading.-small {
    font-size: 1.8rem;
  }
}

/* text-align
----------------------------------------------------------- */
.u-ta-c {
  text-align: center !important;
}

.u-ta-r {
  text-align: right !important;
}

.u-ta-l {
  text-align: left !important;
}

@media only screen and (min-width: 768px) {
  .u-pc-ta-l {
    text-align: left !important;
  }

  .u-pc-ta-c {
    text-align: center !important;
  }

  .u-pc-ta-r {
    text-align: right !important;
  }
}

@media only screen and (max-width: 768px) {
  .u-sp-ta-l {
    text-align: left !important;
  }

  .u-sp-ta-c {
    text-align: center !important;
  }

  .u-sp-ta-r {
    text-align: right !important;
  }
}

/* text-decoration
  ----------------------------------------------------------- */
.u-td-u {
  text-decoration: underline;
}

/* font
  ----------------------------------------------------------- */
.u-font-regular {
  font-weight: 400 !important;
}

.u-font-medium {
  font-weight: 500 !important;
}

.u-font-bold {
  font-weight: 700 !important;
}

.u-font-textblack {
  color: #333 !important;
}

.u-font-red {
  color: #E02020 !important;
}

.u-font-pink {
  color: #E62B84 !important;
}

.u-font-blue {
  color: #3B4A9F !important;
}

.u-font-green {
  color: #15883E !important;
}

.u-font-linkblue {
  color: #192259 !important;
}

.u-font-gray {
  color: #666 !important;
}

.u-font-xs {
  font-size: 1.2rem !important;
}

.u-font-s {
  font-size: 1.4rem !important;
}

.u-font-m {
  font-size: 1.6rem !important;
}

.u-font-l {
  font-size: 1.8rem !important;
}

.u-font-xl {
  font-size: 2rem !important;
}

.u-font-xxl {
  font-size: 2.2rem !important;
}

.u-font-xxxl {
  font-size: 2.4rem !important;
}

@media only screen and (max-width: 768px) {
  .u-font-xs {
    font-size: 1rem !important;
  }

  .u-font-s {
    font-size: 1.2rem !important;
  }

  .u-font-m {
    font-size: 1.4rem !important;
  }

  .u-font-l {
    font-size: 1.6rem !important;
  }

  .u-font-xl {
    font-size: 1.8rem !important;
  }

  .u-font-xxl {
    font-size: 2rem !important;
  }

  .u-font-xxxl {
    font-size: 2.2rem !important;
  }
}

@media (min-width: 1025px) {
  .u-pc-font-s {
    font-size: 1.4rem !important;
  }
}

@media only screen and (max-width: 768px) {
  .u-sp-font-xs {
    font-size: 1.1rem !important;
  }

  .u-sp-font-s {
    font-size: 1.2rem !important;
  }

  .u-sp-font-l {
    font-size: 1.6rem !important;
  }
}

/* border
  ----------------------------------------------------------- */
.u-bdr-b {
  border-bottom: 1px solid #D5D5D5 !important;
}

.u-bdr-none {
  border: none !important;
}

.u-bdr {
  border: 1px solid #D5D5D5 !important;
}

/* padding
  ----------------------------------------------------------- */
.u-pt-0 {
  padding-top: 0 !important;
}

.u-pb-0 {
  padding-bottom: 0 !important;
}

.u-pr-0 {
  padding-right: 0 !important;
}

.u-pl-0 {
  padding-left: 0 !important;
}

.u-p-0 {
  padding: 0 !important;
}

/* margin
  ----------------------------------------------------------- */
.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-mb-1em {
  margin-bottom: 1em !important;
}

.u-mb-xxxs {
  margin-bottom: 8px !important;
}

.u-mb-xxs {
  margin-bottom: 16px !important;
}

.u-mb-xs {
  margin-bottom: 24px !important;
}

.u-mb-s {
  margin-bottom: 32px !important;
}

.u-mb-m {
  margin-bottom: 40px !important;
}

.u-mb-l {
  margin-bottom: 56px !important;
}

.u-mb-xl {
  margin-bottom: 72px !important;
}

.u-mb-xxl {
  margin-bottom: 80px !important;
}

.u-mb-xxxl {
  margin-bottom: 96px !important;
}

@media only screen and (max-width: 768px) {
  .u-mb-xxxs {
    margin-bottom: 4px !important;
  }

  .u-mb-xxs {
    margin-bottom: 8px !important;
  }

  .u-mb-xs {
    margin-bottom: 16px !important;
  }

  .u-mb-s {
    margin-bottom: 24px !important;
  }

  .u-mb-m {
    margin-bottom: 32px !important;
  }

  .u-mb-l {
    margin-bottom: 40px !important;
  }

  .u-mb-xl {
    margin-bottom: 48px !important;
  }

  .u-mb-xxl {
    margin-bottom: 56px !important;
  }

  .u-mb-xxxl {
    margin-bottom: 64px !important;
  }
}

.u-mt-0 {
  margin-top: 0 !important;
}

.u-mt-xxxs {
  margin-top: 8px !important;
}

.u-mt-xxs {
  margin-top: 16px !important;
}

.u-mt-xs {
  margin-top: 24px !important;
}

.u-mt-s {
  margin-top: 32px !important;
}

.u-mt-m {
  margin-top: 40px !important;
}

.u-mt-l {
  margin-top: 56px !important;
}

.u-mt-xl {
  margin-top: 72px !important;
}

.u-mt-xxl {
  margin-top: 80px !important;
}

.u-mt-xxxl {
  margin-top: 96px !important;
}

@media only screen and (max-width: 768px) {
  .u-mt-xxxs {
    margin-top: 4px !important;
  }

  .u-mt-xxs {
    margin-top: 8px !important;
  }

  .u-mt-xs {
    margin-top: 16px !important;
  }

  .u-mt-s {
    margin-top: 24px !important;
  }

  .u-mt-m {
    margin-top: 32px !important;
  }

  .u-mt-l {
    margin-top: 40px !important;
  }

  .u-mt-xl {
    margin-top: 48px !important;
  }

  .u-mt-xxl {
    margin-top: 56px !important;
  }

  .u-mt-xxxl {
    margin-top: 64px !important;
  }
}

.u-mt-1em {
  margin-top: 1em !important;
}

.u-ml-1em {
  margin-left: 1em !important;
}

/* flex
  -------------------------------------------------- */
.u-d-f {
  display: flex !important;
}

.u-d-if {
  display: inline-flex !important;
}

.u-fxd-r {
  flex-direction: row !important;
}

.u-fxd-rr {
  flex-direction: row-reverse !important;
}

.u-fxd-c {
  flex-direction: column !important;
}

.u-fxd-cr {
  flex-direction: column-reverse !important;
}

.u-fxw-n {
  flex-wrap: nowrap !important;
}

.u-fxw-w {
  flex-wrap: wrap !important;
}

.u-fxw-wr {
  flex-wrap: wrap-reverse !important;
}

.u-jc-fs {
  justify-content: flex-start !important;
}

.u-jc-fe {
  justify-content: flex-end !important;
}

.u-jc-c {
  justify-content: center !important;
}

.u-jc-sb {
  justify-content: space-between !important;
}

.u-jc-sa {
  justify-content: space-around !important;
}

.u-ai-fs {
  align-items: flex-start !important;
}

.u-ai-fe {
  align-items: flex-end !important;
}

.u-ai-c {
  align-items: center !important;
}

.u-ai-b {
  align-items: baseline !important;
}

.u-ai-s {
  align-items: stretch !important;
}

.u-ac-fs {
  align-content: flex-start !important;
}

.u-ac-fe {
  align-content: flex-end !important;
}

.u-ac-c {
  align-content: center !important;
}

.u-ac-sb {
  align-content: space-between !important;
}

.u-ac-sa {
  align-content: space-around !important;
}

.u-ac-s {
  align-content: stretch !important;
}

.u-fx-n {
  flex: none !important;
}

.u-as-a {
  -ms-grid-row-align: auto !important;
  align-self: auto !important;
}

.u-as-fs {
  align-self: flex-start !important;
}

.u-as-fe {
  align-self: flex-end !important;
}

.u-as-c {
  -ms-grid-row-align: center !important;
  align-self: center !important;
}

.u-as-b {
  align-self: baseline !important;
}

.u-as-s {
  -ms-grid-row-align: stretch !important;
  align-self: stretch !important;
}

@media only screen and (max-width: 768px) {
  .u-sp-fxd-r {
    flex-direction: row !important;
  }

  .u-sp-fxd-rr {
    flex-direction: row-reverse !important;
  }

  .u-sp-fxd-c {
    flex-direction: column !important;
  }

  .u-sp-fxd-cr {
    flex-direction: column-reverse !important;
  }

  .u-sp-fxw-n {
    flex-wrap: nowrap !important;
  }

  .u-sp-fxw-w {
    flex-wrap: wrap !important;
  }

  .u-sp-fxw-wr {
    flex-wrap: wrap-reverse !important;
  }

  .u-sp-jc-fs {
    justify-content: flex-start !important;
  }

  .u-sp-jc-fe {
    justify-content: flex-end !important;
  }

  .u-sp-jc-c {
    justify-content: center !important;
  }

  .u-sp-jc-sb {
    justify-content: space-between !important;
  }

  .u-sp-jc-sa {
    justify-content: space-around !important;
  }

  .u-sp-ai-fs {
    align-items: flex-start !important;
  }

  .u-sp-ai-fe {
    align-items: flex-end !important;
  }

  .u-sp-ai-c {
    align-items: center !important;
  }

  .u-sp-ai-b {
    align-items: baseline !important;
  }

  .u-sp-ai-s {
    align-items: stretch !important;
  }

  .u-sp-ac-fs {
    align-content: flex-start !important;
  }

  .u-sp-ac-fe {
    align-content: flex-end !important;
  }

  .u-sp-ac-c {
    align-content: center !important;
  }

  .u-sp-ac-sb {
    align-content: space-between !important;
  }

  .u-sp-ac-sa {
    align-content: space-around !important;
  }

  .u-sp-ac-s {
    align-content: stretch !important;
  }

  .u-sp-fx-n {
    flex: none !important;
  }

  .u-sp-as-a {
    -ms-grid-row-align: auto !important;
    align-self: auto !important;
  }

  .u-sp-as-fs {
    align-self: flex-start !important;
  }

  .u-sp-as-fe {
    align-self: flex-end !important;
  }

  .u-sp-as-c {
    -ms-grid-row-align: center !important;
    align-self: center !important;
  }

  .u-sp-as-b {
    align-self: baseline !important;
  }

  .u-sp-as-s {
    -ms-grid-row-align: stretch !important;
    align-self: stretch !important;
  }
}

/* object-fit
  -------------------------------------------------- */
.object-fit {
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

/* indent
----------------------------------------------------------- */
.u-indent-m {
  padding-left: 1em;
}

.u-indent-l {
  padding-left: 2em;
}

/* display
  -------------------------------------------------- */
.u-d-b {
  display: block !important;
}

.u-d-ib {
  display: inline-block !important;
}

.u-d-n {
  display: none !important;
}

.u-d-t {
  display: table !important;
}

/* width
  -------------------------------------------------- */
.u-w50p {
  width: 50% !important;
}

.u-w60p {
  width: 60% !important;
}

.u-w70p {
  width: 70% !important;
}

.u-w80p {
  width: 80% !important;
}

@media only screen and (max-width: 768px) {
  .u-sp-w100p {
    width: 100% !important;
  }
}


/*---------------*/
.l-section.-bg-gray {
  background: #e9e9e9;
}

.l-section.-bg-lightgray {
  background: #f7f7f7;
}

.l-section.-bg-blue {
  background: #0175c0;
  color:#fff;
}

.l-section__inner {
  max-width: 1366px;
  padding: 100px 32px;
  margin: 0 auto;
}

@media only screen and (max-width: 1024px) {
  .l-section__inner {
    padding: 80px 32px;
  }
}

@media only screen and (max-width: 768px) {
  .l-section__inner {
    padding: 64px 16px;
  }
}

.l-section__inner+.l-section__inner {
  padding-top: 0 !important;
}

.l-section__inner_wide {
  max-width: 1222px;
  padding: 100px 64px;
  margin: 0 auto;
}

@media only screen and (max-width: 1024px) {
  .l-section__inner_wide {
    padding: 80px 64px;
  }
}

@media only screen and (max-width: 768px) {
  .l-section__inner_wide {
    padding: 64px 32px;
  }
}

.l-section__inner.-archives {
  max-width: 950px;
  padding: 32px;
  margin: 0 auto;
}

@media only screen and (max-width: 1024px) {
  .l-section__inner.-archives {
    padding: 64px;
  }
}

@media only screen and (max-width: 768px) {
  .l-section__inner.-archives {
    padding: 32px;
  }
}



.l-section-avobe {
  padding: 8px 16px 0;
  margin: 0 auto;
  background: #F7F7F7;
}

@media (max-width: 1260px) {
  .l-section-avobe {
    padding: 0;
  }
}

.l-section-avobe:last-child {
  padding-bottom: 120px;
}

@media (max-width: 1260px) {
  .l-section-avobe:last-child {
    padding-bottom: 0;
  }
}

.l-section-avobe__inner {
  max-width: 1616px;
  background: #fff;
}

.l-section-avobe__inner:first-child {
  margin: -178px auto 0;
}

@media (max-width: 1260px) {
  .l-section-avobe__inner:first-child {
    margin: 0 auto;
  }
}

.l-section-avobe__tab {
  max-width: 1396px;
  margin: 0 auto;
  padding: 120px 32px;
}

@media only screen and (max-width: 768px) {
  .l-section-avobe__tab {
    padding: 40px 8px;
  }
}

.c-figure {
  margin: 0 auto;
  position: relative;
}

.c-figure.-center {
  text-align: center;
}

.c-figure.-w50p {
  width: 50%;
}

.c-figure.-w50p img {
  width: 100%;
}

.c-figure.-w60p {
  width: 60%;
}

.c-figure.-w60p img {
  width: 100%;
}

.c-figure.-w70p {
  width: 70%;
}

.c-figure.-w70p img {
  width: 100%;
}

.c-figure.-w80p {
  width: 80%;
}

.c-figure.-w80p img {
  width: 100%;
}

.c-figure.-w90p {
  width: 90%;
}

.c-figure.-w90p img {
  width: 100%;
}

.c-figure.-w100p {
  width: 100%;
}

.c-figure.-w100p img {
  width: 100%;
}

.c-figure.-max560px {
  max-width: 560px;
}

.c-figure.-max560px img {
  width: 100%;
}

.c-figure.-max600px {
  max-width: 600px;
}

.c-figure.-max600px img {
  width: 100%;
}

.c-figure.-round img {
  border-radius: 20px;
}

.c-figure.-frame img {
  padding: 10px;
  border: 1px solid #D5D5D5;
  background-color: #fff;
}

@media only screen and (max-width: 768px) {
  .c-figure.-sp-w50p {
    width: 50%;
  }

  .c-figure.-sp-w50p img {
    width: 100%;
  }

  .c-figure.-sp-w60p {
    width: 60%;
  }

  .c-figure.-sp-w60p img {
    width: 100%;
  }

  .c-figure.-sp-w70p {
    width: 70%;
  }

  .c-figure.-sp-w70p img {
    width: 100%;
  }

  .c-figure.-sp-w80p {
    width: 80%;
  }

  .c-figure.-sp-w80p img {
    width: 100%;
  }

  .c-figure.-sp-w90p {
    width: 90%;
  }

  .c-figure.-sp-w90p img {
    width: 100%;
  }

  .c-figure.-sp-w100p {
    width: 100%;
  }

  .c-figure.-sp-w100p img {
    width: 100%;
  }
}

.c-figure figcaption {
  font-size: 1.4rem;
  margin-top: 0.5em;
}

@media only screen and (max-width: 768px) {
  .c-figure figcaption {
    font-size: 1.2rem;
  }
}

.c-figure__logo {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 120px;
  height: 120px;
  background: #fff;
}

@media only screen and (max-width: 768px) {
  .c-figure__logo {
    width: 80px;
    height: 80px;
  }
}

.c-figure__logo img {
  width: 100%;
}

.l-grid {
  display: flex;
  flex-wrap: wrap;
  margin: -32px -32px 0 0;
}

.l-grid+.l-grid {
  margin-top: 0 !important;
}

@media only screen and (max-width: 768px) {
  .l-grid {
    margin: -24px -16px 0 0;
  }

  .l-grid.-sp-reverse {
    flex-direction: column-reverse;
  }

  .l-grid.-wrap-reverse {
    flex-wrap: wrap-reverse;
  }

  .l-grid.-sp-mb-l {
    margin: -32px -16px 0 0;
  }

  .l-grid.-sp-mb-l .l-grid__item {
    margin: 32px 16px 0 0 !important;
  }

  .l-grid.-sp-mb-s {
    margin: -8px -16px 0 0;
  }

  .l-grid.-sp-mb-s .l-grid__item {
    margin: 8px 16px 0 0 !important;
  }
}

.l-grid__item {
  margin: 32px 32px 0 0;
}

.l-grid__item.-middle {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.l-grid__item.-col2 {
  width: calc(16.66667% - 32px);
}

.l-grid__item.-col3 {
  width: calc(25% - 32px);
}

.l-grid__item.-col4 {
  width: calc(33.33333% - 32px);
}

.l-grid__item.-col5 {
  width: calc(41.66667% - 32px);
}

.l-grid__item.-col6 {
  width: calc(50% - 32px);
}

.l-grid__item.-col7 {
  width: calc(58.33333% - 32px);
}

.l-grid__item.-col8 {
  width: calc(66.66667% - 32px);
}

.l-grid__item.-col9 {
  width: calc(75% - 32px);
}

.l-grid__item.-col10 {
  width: calc(83.33333% - 32px);
}

.l-grid__item.-col12 {
  width: calc(100% - 32px);
}

@media only screen and (max-width: 1024px) {
  .l-grid__item.-tb-col4 {
    width: calc(33.33333% - 32px);
  }

  .l-grid__item.-tb-col6 {
    width: calc(50% - 32px);
  }

  .l-grid__item.-tb-col12 {
    width: calc(100% - 32px);
  }
}

@media only screen and (max-width: 768px) {
  .l-grid__item {
    margin: 24px 16px 0 0;
  }

  .l-grid__item.-col2 {
    width: calc(16.66667% - 16px);
  }

  .l-grid__item.-col3 {
    width: calc(25% - 16px);
  }

  .l-grid__item.-col4 {
    width: calc(33.33333% - 16px);
  }

  .l-grid__item.-col5 {
    width: calc(41.66667% - 16px);
  }

  .l-grid__item.-col6 {
    width: calc(50% - 16px);
  }

  .l-grid__item.-col7 {
    width: calc(58.33333% - 16px);
  }

  .l-grid__item.-col8 {
    width: calc(66.66667% - 16px);
  }

  .l-grid__item.-col9 {
    width: calc(75% - 16px);
  }

  .l-grid__item.-col10 {
    width: calc(83.33333% - 16px);
  }

  .l-grid__item.-col12 {
    width: calc(100% - 16px);
  }

  .l-grid__item.-sp-col2 {
    width: calc(16.66667% - 16px);
  }

  .l-grid__item.-sp-col3 {
    width: calc(25% - 16px);
  }

  .l-grid__item.-sp-col4 {
    width: calc(33.33333% - 16px);
  }

  .l-grid__item.-sp-col5 {
    width: calc(41.66667% - 16px);
  }

  .l-grid__item.-sp-col6 {
    width: calc(50% - 16px);
  }

  .l-grid__item.-sp-col7 {
    width: calc(58.33333% - 16px);
  }

  .l-grid__item.-sp-col8 {
    width: calc(66.66667% - 16px);
  }

  .l-grid__item.-sp-col9 {
    width: calc(75% - 16px);
  }

  .l-grid__item.-sp-col10 {
    width: calc(83.33333% - 16px);
  }

  .l-grid__item.-sp-col12 {
    width: calc(100% - 16px);
  }
}

.l-grid.-mg-s {
  margin: -16px -16px 0 0 !important;
}

.l-grid.-mg-s .l-grid__item {
  margin: 16px 16px 0 0 !important;
}

.l-grid.-mg-s .l-grid__item.-col2 {
  width: calc(16.66667% - 16px);
}

.l-grid.-mg-s .l-grid__item.-col3 {
  width: calc(25% - 16px);
}

.l-grid.-mg-s .l-grid__item.-col4 {
  width: calc(33.33333% - 16px);
}

.l-grid.-mg-s .l-grid__item.-col5 {
  width: calc(41.66667% - 16px);
}

.l-grid.-mg-s .l-grid__item.-col6 {
  width: calc(50% - 16px);
}

.l-grid.-mg-s .l-grid__item.-col7 {
  width: calc(58.33333% - 16px);
}

.l-grid.-mg-s .l-grid__item.-col8 {
  width: calc(66.66667% - 16px);
}

.l-grid.-mg-s .l-grid__item.-col9 {
  width: calc(75% - 16px);
}

.l-grid.-mg-s .l-grid__item.-col10 {
  width: calc(83.33333% - 16px);
}

.l-grid.-mg-s .l-grid__item.-col12 {
  width: calc(100% - 16px);
}

@media only screen and (max-width: 1024px) {
  .l-grid.-mg-s .l-grid__item.-tb-col6 {
    width: calc(50% - 16px);
  }

  .l-grid.-mg-s .l-grid__item.-tb-col12 {
    width: calc(100% - 16px);
  }
}

@media only screen and (max-width: 768px) {
  .l-grid.-mg-s .l-grid__item {
    margin: 24px 16px 0 0;
  }

  .l-grid.-mg-s .l-grid__item.-col2 {
    width: calc(16.66667% - 16px);
  }

  .l-grid.-mg-s .l-grid__item.-col3 {
    width: calc(25% - 16px);
  }

  .l-grid.-mg-s .l-grid__item.-col4 {
    width: calc(33.33333% - 16px);
  }

  .l-grid.-mg-s .l-grid__item.-col5 {
    width: calc(41.66667% - 16px);
  }

  .l-grid.-mg-s .l-grid__item.-col6 {
    width: calc(50% - 16px);
  }

  .l-grid.-mg-s .l-grid__item.-col7 {
    width: calc(58.33333% - 16px);
  }

  .l-grid.-mg-s .l-grid__item.-col8 {
    width: calc(66.66667% - 16px);
  }

  .l-grid.-mg-s .l-grid__item.-col9 {
    width: calc(75% - 16px);
  }

  .l-grid.-mg-s .l-grid__item.-col10 {
    width: calc(83.33333% - 16px);
  }

  .l-grid.-mg-s .l-grid__item.-col12 {
    width: calc(100% - 16px);
  }

  .l-grid.-mg-s .l-grid__item.-sp-col6 {
    width: calc(50% - 16px);
  }

  .l-grid.-mg-s .l-grid__item.-sp-col12 {
    width: calc(100% - 16px);
  }
}

/* PC
----------------------------------------------------------- */
@media print, screen and (min-width: 768px) {
  a {
    cursor: pointer;
    transition: 0.3s all;
  }

  .sp\:view {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .pc\:view {
    display: none !important;
  }
}


/*table                                  */
.c-table {
  width: 100%;
  border-top: 1px solid #D5D5D5;
  border-left: 1px solid #D5D5D5;
}

.c-table.-layoutfixed {
  table-layout: fixed;
}

.c-table.-huge .c-table__head,
.c-table.-huge .c-table__body {
  padding: 6px 12px;
}

.c-table.-noborder,
.c-table.-noborder .c-table__head,
.c-table.-noborder .c-table__body {
  border-top: none;
  border-left:none;
  border-right: none;
  border-bottom: none;
}

.c-table__head, .c-table__body {
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 12px 24px;
}

.c-table__head.-center, .c-table__body.-center {
  text-align: center;
}

.c-table__head.-middle, .c-table__body.-middle {
  vertical-align: middle;
}

.c-table__head.-w10p, .c-table__body.-w10p {
  width: 10%;
}

.c-table__head.-w15p, .c-table__body.-w15p {
  width: 15%;
}

.c-table__head.-w20p, .c-table__body.-w20p {
  width: 20%;
}

.c-table__head.-w25p, .c-table__body.-w25p {
  width: 25%;
}

.c-table__head.-w30p, .c-table__body.-w30p {
  width: 30%;
}

.c-table__head.-w33p, .c-table__body.-w33p {
  width: 33.3%;
}

@media only screen and (max-width: 767px) {
  .c-table__head.-sp-w15p, .c-table__body.-sp-w15p {
    width: 15%;
  }
}

@media only screen and (max-width: 767px) {
  .c-table__head, .c-table__body {
    padding: 16px 8px;
  }
}

.c-table__head {
  text-align: left;
  font-weight: 700;
  background: #cccccc;
  color: #333;
  vertical-align: middle;
}

.c-table__head.-bg-gray {
  font-weight: 400;
  color: #333;
  background: #F7F7F7;
}

.c-table.-th-gray .c-table__head {
  background: #666;
}

.c-table__body {
  line-height: 1.6;
  background: #f0f0f0;
}

.c-table__body.-nobgcolor {
  background: transparent;
}


.c-table__body.-bg-gray {
  background: #F7F7F7;
}

.c-table__body.-bg-beige {
  background: #b7b19f;
}

@media only screen and (max-width: 767px) {
  .c-table.-sp-column th,
  .c-table.-sp-column td {
    display: block;
    width: 100% !important;
  }
}

/*å®šç¾©ãƒ†ãƒ¼ãƒ–ãƒ«                                  */
.c-table-define {
  width: 100%;
  border-top: 1px solid #D5D5D5;
  table-layout: fixed;
}

.c-table-define > tbody > tr {
  border-bottom: 1px solid #D5D5D5;
}

.c-table-define.-va-top .c-table-define__head {
  vertical-align: top;
}

.c-table-define__head, .c-table-define__body {
  padding: 16px 0;
}

.c-table-define__head {
  text-align: left;
  font-weight: 500;
  width: 25%;
  vertical-align: middle;
}

.c-table-define__body {
  width: 75%;
  line-height: 1.8;
  padding-left: 16px;
}

@media only screen and (max-width: 767px) {
  .c-table-define__head, .c-table-define__body {
    display: block;
    width: 100% !important;
  }
  .c-table-define__head {
    padding: 16px 0 8px 0;
  }
  .c-table-define__body {
    padding: 0 0 16px 0;
  }
}

.c-table-define {
  width: 100%;
  border-top: 1px solid #D5D5D5;
  table-layout: fixed;
}

.c-table-define > tbody > tr {
  border-bottom: 1px solid #D5D5D5;
}

.c-table-define.-bd-light {
  width: 100%;
  border-top: 1px solid #eeeeee;
  table-layout: fixed;
}

.c-table-define.-bd-light > tbody > tr {
  border-bottom: 1px solid #eeeeee;
}

.c-table-define.-bd-dark {
  width: 100%;
  border-top: 1px solid #b7b19f;
  table-layout: fixed;
}

.c-table-define.-bd-dark > tbody > tr {
  border-bottom: 1px solid #b7b19f;
}

.c-table-define.-va-top .c-table-define__head {
  vertical-align: top;
}

/*å®šç¾©ãƒ†ãƒ¼ãƒ–ãƒ«ã€€ãƒœãƒ¼ãƒ€ãƒ¼ãªã—ã€ç‹­ã„                                  */
.c-table-define_narrow {
  width: 100%;
  table-layout: fixed;
}

@media only screen and (max-width: 767px) {
.c-table-define_narrow {
  font-size:14px;
}
}

.c-table-define_narrow > tbody > tr {

}

.c-table-define_narrow.-va-top .c-table-define_narrow__head {
  vertical-align: top;
}

.c-table-define_narrow__head, .c-table-define_narrow__body {
  padding: 2px 0;
}

.c-table-define_narrow__head {
  text-align: left;
  font-weight: 700;
  width: 10%;
  vertical-align: middle;
}

.c-table-define_narrow__body {
  width: 75%;
  line-height: 1.6;
  padding-left: 16px;
}



.c-table-wrap {
  width: 100%;
}

.c-table-wrap.-nowrap {
  overflow-x: auto;
}

.c-table-wrap.-nowrap .c-table th,
.c-table-wrap.-nowrap .c-table td {
  white-space: nowrap;
}

@media only screen and (min-width: 768px) {
  .c-table-wrap__text {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .c-table-wrap {
    overflow-x: scroll;
  }
  .c-table-wrap__text {
    margin-bottom: 0.5em;
  }
  .c-table-wrap .c-table {
    width: 800px;
  }
}

table.c-tabel-layout {
  border: 0 !important;
}

table.c-tabel-layout th,
table.c-tabel-layout td {
  border: 0 !important;
}

table.c-tabel-layout:not(:last-child) {
  margin-bottom: 1em;
}

table.c-tabel-layout th {
  white-space: nowrap;
}

td.nowrap {
white-space: nowrap;
}

th.nowrap {
white-space: nowrap;
}

.c-list li {
  line-height: 1.8;
  position: relative;
}

.c-list li:not(:last-child) {
  margin-bottom: 0.5em;
}

.c-list.-dot>li {
  padding-left: 1.25em;
}

.c-list.-dot>li::before {
  content: "・";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

.c-list.-dot.-english li {
  padding-left: 0.75em;
}

/*.c-list.-dot.-english li::before {
  content: "-";
}*/

.c-list.-dot.-english>li::before {
  /*特定文字リストのとき-を表示させない*/
  content: "-";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

.c-list.-order {
  list-style-type: decimal;
  margin-left: 1.25em;
}

.c-list.-note>li {
  padding-left: 1.25em;
  font-size: 1.4rem;
}

@media only screen and (max-width: 768px) {
  .c-list.-note>li {
    font-size: 1.2rem;
  }
}

.c-list.-note>li:not(:last-child) {
  margin-bottom: 0.25em;
}

.c-list.-note>li::before {
  counter-increment: item;
  content: "※";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

.c-list.-note.-english li {
  padding-left: 0.75em;
}

.c-list.-note.-english li::before {
  content: "*";
}

.c-list.-flexible>li {
  display: flex;
}

.c-list.-flexible>li>div:first-child {
  margin-right: 0.5em;
}

.c-list.-flexible>li>div:last-child {
  flex: 1 0 0%;
}

.c-list.-footer_nav li{
  padding-bottom: 2.25em;
  font-size: 1.4rem;
}

.c-list.-footer_nav li li{
  padding-bottom: 0;
  padding-left: 1em;
}


.c-card {
  display: block;
  height: 100%;
  background: #fff;
  border: 1px solid #D5D5D5;
  color: #333;
}

.c-card.-blue {
  display: block;
  height: 100%;
  background: #0175c0;
  border: 1px solid #0175c0;
  color: #fff;
}

.c-card.-black {
  display: block;
  height: 100%;
  background: #000;
  border: 1px solid #000;
  color: #fff;
}

.c-card.-gray {
  display: block;
  height: 100%;
  background: #e9e9e9;
  border: 1px solid #e9e9e9;
  color: #fff;
}

.c-card.-darkgray {
  display: block;
  height: 100%;
  background: #666;
  border: 1px solid #666;
  color: #fff;
}

.c-card.-lightblue {
  display: block;
  height: 100%;
  background: #148ddc;
  border: 1px solid #148ddc;
  color: #fff;
}


.c-card__image {
  position: relative;
  overflow: hidden;
}

.c-card__image>img {
  width: 100%;
  transition: 0.3s all;
  height:auto;
}

.c-card__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 64px 0 24px;
}

.c-card__icon>img {
  width: 140px;
}

@media only screen and (max-width: 768px) {
  .c-card__icon {
    padding: 32px 0 16px;
  }

  .c-card__icon>img {
    width: 100px;
  }
}

.c-card__logo {
  max-width: 100px;
  width: 20%;
  position: absolute;
  top: 16px;
  left: 16px;
}

@media only screen and (max-width: 768px) {
  .c-card__logo {
    max-width: 50px;
    top: 8px;
    left: 8px;
  }
}

.c-card__text {
  padding: 24px;
}

.c-card__text.-narrow {
  padding: 12px;
}

@media only screen and (max-width: 768px) {
  .c-card__text {
    padding: 16px;
  }
  .c-card__text.-narrow {
    padding: 8px;
  }
}

.c-card.-row {
  display: flex;
}

.c-card.-row .c-card__image {
  flex: 1 0 0%;
  padding: 24px;
  padding-right: 0;
  max-width: 30%;
}

.c-card.-row .c-card__text {
  flex: 1 0 0%;
}

.c-card.-row-half {
  display: flex;
  align-items: center;
}

.c-card.-row-half .c-card__image {
  flex: 1 0 0%;
  padding: 24px;
  padding-right: 0;
  width: 50%;
}

.c-card.-row-half .c-card__text {
  flex: 1 0 0%;
  width: 50%;
}

.c-card.-row-half .c-card__title {
  font-size: 2.4rem;
}

.c-card.-nolink .c-card__title::after {
  convtent: none;
}

.c-card__title {
  color: #333;
  position: relative;
  font-size: 1.6rem;
  font-weight: 700;
}

.c-card__title.-white {
  color: #fff;

}

.c-card__title.-large {
  font-size: 2.2rem;
}

@media only screen and (max-width: 768px) {
  .c-card__title.-large {
    font-size: 1.6rem;
  }
}

@media only screen and (max-width: 768px) {
  .c-card__title {
    font-size: 1.6rem;
  }
}

.c-card__title:not(:last-child) {
  margin-bottom: 0.75em;
}

.c-card__title::after {
  content: "\f105";
  font-family: FontAwesome;
  font-weight: 400;
  margin-left: 1.0em;
}

.c-card__title.-noarrow::after {
  content: none;
}

.c-card[target="_blank"] .c-card__title::after {
  content: "\f2d2";
  font-family: FontAwesome;
  font-weight: 400;
  margin-left: 1.0em;
}

.c-card[href$=".pdf"] .c-card__title::after {
  content: "\f1c1";
  font-family: FontAwesome;
  font-weight: 400;
  margin-left: 1.0em;
  color:#e02020;
}

.c-card__lead {
  line-height: 1.8;
}

.c-card__lead:not(:last-child) {
  margin-bottom: 0.75em;
}

@media (min-width: 1025px) {
  .c-card:hover {
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.16);
  }

  .c-card:hover .c-card__image>img {
    transform: scale(1.05, 1.05);
  }

  .c-card.-nolink:hover {
    box-shadow: inherit;
  }

  .c-card.-nolink:hover .c-card__image>img {
    transform: inherit;
  }
}

.c-card-text {
  display: flex;
  align-items: center;
  width: 100%;
  height: 90px;
  background: #fff;
  border: 1px solid #D5D5D5;
  padding: 8px 40px 8px 16px;
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
}

@media only screen and (max-width: 768px) {
  .c-card-text {
    height: inherit;
    padding: 16px 40px 16px 16px;
    font-size: 1.4rem;
  }
}

.c-card-text.-current {
  pointer-events: none;
  background: #E6E6E6;
}

.c-card-text:hover {
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.16);
}

.c-card-text::after {
  content: "\e908";
  font-family: 'icomoon';
  font-weight: 400;
  position: absolute !important;
  top: 50% !important;
  right: 16px;
  transform: translateY(-50%);
}

.c-card-text[target="_blank"]::after {
  content: "\e906";
}

.c-card-text[href$=".pdf"]::after {
  display: inline !important;
  content: "\f1c1";
  font-family: FontAwesome;
  color:#e02020;
}

.c-card-text span::before {
  display: none !important;
}

.c-card-border {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #192259;
  padding-top: 24px;
  position: relative;
  transition: 0.3s all;
}

.c-card-border.-gray {
  border-top: 1px solid #D5D5D5;
}

.c-card-border::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: -16px;
  transition: 0.3s all;
  z-index: -1;
}

@media only screen and (max-width: 768px) {
  .c-card-border {
    margin: 0 auto;
  }
}

.c-card-border__title {
  font-weight: 700;
}

.c-card-border__title:not(:last-child) {
  margin-bottom: 0.5em;
}

.c-card-border__title::after {
  content: "\e908";
  font-family: 'icomoon';
  font-weight: 400;
  margin-left: 0.5em;
}

.c-card-border[target="_blank"] .c-card-border__title::after {
  content: "\e906";
}

.c-card-border__lead {
  color: #333;
  font-size: 1.4rem;
  margin-bottom: 1em;
}

.c-card-border__image {
  overflow: hidden;
}

.c-card-border__image>img {
  width: 100%;
  transition: 0.3s all;
}

.c-card-border__category {
  margin-top: 16px;
}

@media (min-width: 1025px) {
  .c-card-border:hover::before {
    background: #fff;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.16);
  }

  .c-card-border:hover .c-card-border__image>img {
    transform: scale(1.05, 1.05);
  }
}

.c-box {
  padding: 32px;
  background: #fff;
  border: 1px solid #D5D5D5;
  display: flex;
    flex-direction: column;
    height: 100%;
  
}

@media only screen and (max-width: 767px) {
  .c-box {
    padding: 16px;
  }
}

.c-box.-max1158px {
  max-width: 1158px;
  margin: 0 auto;
}

.c-box.-noborder {
  border: 0;
}

.c-box.-bdr-red {
  border: 1px solid #E02020;
}

.c-box.-bdr-blue {
  border: 2px solid #3B4A9F;
}

.c-box.-bg-gray {
  border: 0;
  background: #F7F7F7;
}

.c-box.-bg-red {
  border: 0;
  background: #FFECEB;
}

.c-box.-bg-blue {
  border: 0;
  background: #3B4A9F;
}

.c-box.-large {
  padding: 56px 5%;
}

@media only screen and (max-width: 767px) {
  .c-box.-large {
    padding: 40px 8%;
  }
}

.c-box.-pd-s {
  padding: 24px;
}

@media only screen and (max-width: 767px) {
  .c-box.-pd-s {
    padding: 16px;
  }
}

.c-box.-pd-l {
  padding: 40px 5%;
}

.c-box-link {
  padding: 32px;
  background: #fff;
  border: 1px solid #D5D5D5;
  display: flex;
  color: #333;
}

.c-box-link>div {
  width: 50%;
}

.c-box-link>div:first-child {
  margin-right: 32px;
}

@media only screen and (max-width: 767px) {
  .c-box-link {
    padding: 16px 16px 24px;
    flex-direction: column;
  }

  .c-box-link>div {
    width: 100%;
  }

  .c-box-link>div:first-child {
    margin: 0 0 24px 0;
  }
}

.c-box-link__image {
  position: relative;
}

.c-box-link__image>span {
  display: block;
  overflow: hidden;
}

.c-box-link__image>span>img {
  width: 100%;
  transition: 0.3s all;
}

.c-box-link__main {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.c-box-link__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #192259;
}

@media only screen and (max-width: 767px) {
  .c-box-link__title {
    font-size: 1.8rem;
  }
}

.c-box-link__lead {
  font-size: 1.4rem;
  font-weight: 700;
}

.c-box-link__logo {
  max-width: 100px;
  width: 20%;
  position: absolute;
  top: 16px;
  left: 16px;
}

@media only screen and (max-width: 767px) {
  .c-box-link__logo {
    max-width: 50px;
    top: 8px;
    left: 8px;
  }
}

.c-box-link__inner>*:not(:last-child) {
  margin-bottom: 0.75em;
}

@media (min-width: 1025px) {
  .c-box-link:hover {
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.16);
  }

  .c-box-link:hover .c-box-link__image>span>img {
    transform: scale(1.05, 1.05);
  }
}

a.c-box-link .c-box-link__title::after {
  content: "\e908";
  font-family: 'icomoon';
  font-weight: 400;
  margin-left: 0.5em;
}

a.c-box-link[target="_blank"] .c-box-link__title::after {
  content: "\f35d";
  font-family: FontAwesome;
}

.c-link {
  color: #333;
  font-weight: 700;
  position: relative;
  padding:0 5px 2px 5px;
  border-bottom:1px dashed rgba(0,0,0,0.1);
}

.c-link.-white{
  color: #fff;
  font-weight: 700;
  position: relative;
  padding:0 5px 2px 5px;
  border-bottom:1px dashed rgba(255,255,255,0.3);
}

@media (min-width: 1025px) {
  .c-link:hover {
    background-size: calc(100% - 1.5em) 1px;
    transition: 0.3s all;
    color:#0f5da1;
	border-bottom:1px dashed rgba(15,93,161,0.9);
  }
}

.c-link::after {
  content: "\f138";
  font-family: FontAwesome;
  font-weight: 400;
  margin-left: 0.5em;
}

.c-link.-text {

}

@media (min-width: 1025px) {
  .c-link.-text:hover {
    background-size: 100% 1px;
  }
}

.c-link.-text::after {
  display: none;
}

.c-link.-text[class*="-down"], .c-link.-text[target="_blank"] {
  padding-bottom: 2px;
}

@media (min-width: 1025px) {
  .c-link.-text[class*="-down"]:hover, .c-link.-text[target="_blank"]:hover {
    background-size: calc(100% - 1.5em) 1px;
  }
}

.c-link.-text[class*="-down"]::after, .c-link.-text[target="_blank"]::after {
  margin: 0 0.25em;
}

.c-link.-down::after {
  display: inline !important;
  content: "\f13a";
  font-family: FontAwesome;
}

.c-link[target="_blank"]::after {
  display: inline !important;
  content: "\f2d2";
  font-family: FontAwesome;
}

.c-link[href$=".pdf"]::after {
  display: inline !important;
  content: "\f1c1";
  font-family: FontAwesome;
  color:#e02020;;
}

.c-link[href$=".xlsx"]::after, .c-link[href$=".xls"]::after {
  display: inline !important;
  content: "\f1c3";
  font-family: FontAwesome;
}

.c-link-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: -0.5em -24px 0 0;
}

.c-link-wrap>li {
  margin: 0.5em 24px 0 0;
}

@media only screen and (max-width: 767px) {
  .c-link-wrap {
    margin: -0.5em -16px 0 0;
  }

  .c-link-wrap>li {
    margin: 0.5em 16px 0 0;
  }
}

.c-link-wrap.-column {
  flex-direction: column;
}

@media only screen and (max-width: 767px) {
  .c-link-wrap.-spcenter {
    justify-content: center;
  }
}

.c-link-wrap .searchbarinpage {
  width: 40%;
}

@media only screen and (max-width: 767px) {
  .c-link-wrap .searchbarinpage {
    width: 300px;
  }
}

@media only screen and (max-width: 767px) {
  .c-link-tel {
    color: #192259;
    font-weight: 700;
  }
}

@media (min-width: 1025px) {
  .c-link-tel a {
    pointer-events: none;
  }
}

.c-link-title {
  color: #333;
  font-size: 3.8rem;
  font-weight: 700;
  margin-bottom: 0.75em;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
}

@media only screen and (max-width: 767px) {
  .c-link-title {
    font-size: 2.2rem;
  }
}

.c-link-title::before {
  content: "";
  width: 20px;
  height: 1px;
  background: #333;
  position: absolute;
  top: 50%;
  left: -32px;
  transform: translateY(-50%);
}

.c-link-title::after {
  content: "\e908";
  font-family: 'icomoon';
  font-weight: 400;
  margin-left: 0.5em;
}


.c-btn {
  width: 100%;
  height: 56px;
  margin: 0 auto;
}

@media only screen and (min-width: 768px) {
  .c-btn.-pc-left {
    margin: 0 auto 0 0;
  }

  .c-btn.-pc-right {
    margin: 0 0 0 auto;
  }
}

.c-btn.-left {
  margin: 0 auto 0 0;
}

.c-btn.-right {
  margin: 0 0 0 auto;
}

.c-btn.-large {
  max-width: 500px;
}

.c-btn.-medium {
  max-width: 400px;
}

.c-btn.-small {
  max-width: 300px;
}

.c-btn.-ht_full {
  /*3行以上になる場合の対応*/
  height: 100%;
  min-height: 56px;
}

@media only screen and (max-width: 767px) {
  .c-btn.-large {
    max-width: 500px;
  }

  .c-btn.-medium {
    max-width: 400px;
  }

  .c-btn.-small {
    max-width: 360px;
  }
}

.c-btn__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  line-height: 1.4;
  text-align: center;
  color: #fff;
  background: #000;
  border: 1px solid #000;
  padding: 4px 32px;
  position: relative;
  font-weight: 700;
  transition: 0.3s all;
}

.c-btn__link::after {
  content: "\f101";
  font-family: FontAwesome;
  font-weight: 400;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}

.c-btn__link[target="_blank"]::after {
  display: inline !important;
  content: "\f2d2";
  font-family: FontAwesome;
}

.c-btn__link[href$=".pdf"]::after {
  display: inline !important;
  content: "\f1c1";
  font-family: FontAwesome;
  color:#e02020;
}

@media (min-width: 1025px) {
  .c-btn__link:hover {
    border: 1px solid #0075bf;
    background: #0075bf;
    border-color: #0075bf !important;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.24);
  }
}

.c-btn__link.-border {
  border: 1px solid #192259;
  color: #192259;
  background: #fff;
}

.c-btn__link.-border:hover {
  border: 1px solid #3B4A9F;
  color: #3B4A9F;
}

.c-btn__link.-white-border {
  border: 1px solid #fff;
}

.c-btn__link.-disabled, .c-btn__link:disabled {
  border: 1px solid #BEBEBE;
  background: #BEBEBE;
  pointer-events: none;
}

.c-btn__link.-previous::after {
  left: 16px;
  right: inherit;
  transform: translateY(-50%) scaleX(-1);
}

.c-btn__link.-noarrow::after {
  content: none;
}

.c-btn-more {
  max-width: 360px;
  width: 100%;
  height: 56px;
  margin: 48px auto 0;
}

@media only screen and (max-width: 767px) {
  .c-btn-more {
    margin: 32px auto 0;
  }
}

.c-btn-more__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  line-height: 1.4;
  font-size: 1.6rem;
  text-align: center;
  background: transparent;
  color: #666;
  font-weight: 700;
  position: relative;
}

.c-btn-more__link::before {
  content: "";
  width: 100%;
  height: 2px;
  background: #D5D5D5;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s all;
}

.c-btn-more__link::after {
  content: "\e910";
  font-family: 'icomoon';
  font-weight: 400;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: #707070;
}

@media (min-width: 1025px) {
  .c-btn-more__link:hover::before {
    height: 4px;
  }
}

.c-btn-more__link.-active::before {
  top: inherit;
  bottom: 0;
}

.c-btn-more__link.-active::after {
  content: "\e90f";
}


/*googlemap                                  */
iframe {
  width: 100%;
  aspect-ratio: 16/9; //アスペクト比}
  
  /*circle*/
.circle{
  display: inline-block;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: #ffffff;
  text-align:center;
  margin: 10px auto;
  padding:30px;
}

/*協調マーカー                                  */
.marker-border_green{
  background:linear-gradient(transparent 50%, #e0f9b6 0%);
}

/*slide                                  */
.slide-items {/*top*/
  width: 100%;
  height: 100%;
}

.slide-items img {
  width: 100%;
  object-fit: cover;
}

.slide-items_1col img {/*1カラム*/
    width: 100%;
    height: 30vw;
    object-fit: cover;
    max-height:500px;
}

@media only screen and (max-width: 768px) {
.slide-items_1col img {/*1カラム*/
    height: 50vw;
    min-height:300px;
}
}

.slide-items_pickup img {/*1カラム*/
    width: 100%;
    height: 40vw;
    object-fit: cover;
    max-height:400px;
    object-position: top;
}

@media only screen and (max-width: 768px) {
.slide-items_pickup img {/*1カラム*/
    height: 50vw;
    max-height:210px;
}
}

.slide-items_pickup li{
padding:0 20px;
}

@media only screen and (max-width: 480px) {
.slide-items_pickup li{
padding:0;
}
}

.pickup_items img {/*1カラム*/
    width: 100%;
    height: 30vw;
    object-fit: cover;
    max-height:210px;
    object-position:top;
}

@media only screen and (max-width: 768px) {
.pickup_items img {/*1カラム*/
    height: 50vw;
    min-height:230px;
}
}


/*slide矢印位置                                  */
.slick-prev {
  left: 10px;
  z-index: 1;
}
 
.slick-next {
  right:10px ;
}

@media only screen and (max-width: 768px) {
.slick-prev {
  left: 0;
}
 
.slick-next {
  right: 0;
}
}

/*画像                                  */
.c-img-link {
  cursor: pointer;
  overflow: hidden;
  width: 100%;
}
.c-img-link img {
  height: auto;
  transition: transform .6s ease; /* ゆっくり変化させる */
}

@media (min-width: 1025px) {
.c-img-link:hover img {
  transform: scale(1.1); /* 拡大 */
  filter: saturate(0.9) brightness(1.2);/* 明るく */
}
}

/*画像の上に文字                                  */
.c-img {/*親div*/
  position: relative;/*相対配置*/
  }

.c-img img {
  width: 100%;
  min-height:500px;
  max-height:600px;
}
  
.c-img-bg{
  position: absolute;/*絶対配置*/
  background-color: rgba(0,0,0,0.6);
  height: 500px;
}

.c-img img {
    width: 100%;
    height: 35vw;
    object-fit: cover;
    object-position: top;
}

.c-gradation {
  position: relative;
}

.c-gradation::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.70), transparent);
}

.slider_item-content {
  position: absolute;/*絶対配置*/
  color: white;/*文字は白に*/
  bottom: 0;
  left: 0;
  /*background-color: rgba(0,0,0,0.6);*/
  padding:20px;
  width:100%;
  height:30%;
  z-index:999;
  max-height:150px;
}

.slider_item-content h2{
  position: absolute;
  top:40px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 任意の行数を指定 */
}

.slider_item-content-1col {
  position: absolute;/*絶対配置*/
  color: white;/*文字は白に*/
  bottom: 0;
  background-color: rgba(0,0,0,0.3);
  padding:10px;
  width:100%;
  height:15%;
  z-index:999;
  max-height:40px;
}

.slider_item-content-pickup {
  position: absolute;/*絶対配置*/
  color: #333;
  bottom: -10px;
  padding:10px;
  width:100%;
  height:15%;
  z-index:999;
  max-height:40px;
}

.c-tag-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: -20px -8px 0 0;
}

.c-tag-wrap.-nav {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px 0 0;
}

.c-tag-wrap li {
  margin: 8px 8px 0 0;
}

.c-tag-wrap-btm {
  display: flex;
  flex-wrap: wrap;
  margin: -8px -8px 0 0;
  position: absolute;
  bottom: 0;
}


.c-tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 2px 16px;
  font-size: 1.1rem;
  background: #000;
  color: #fff;
  min-width: 88px;
}

.c-tag:hover {
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.24);
}

.c-tag.-blue {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 2px 16px;
  font-size: 1.1rem;
  background: #0175c0;
  color: #fff;
  min-width: 88px;
}


@media only screen and (max-width: 768px) {
  .c-tag {
    padding: 2px 8px;
    font-size: 1rem;
  }
}

.c-tag.-nav {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 2px 16px;
  font-size: 1.4rem;
  background: #000;
  color: #fff;
  min-width: 88px;
}


.c-tag.-important {
  background: #6D7278;
  color: #fff;
  font-weight: 700;
}

.c-tag.-new {
  color: #333;
  background: #FFFF51;
  font-weight: 700;
  min-width: inherit;
}

.c-tag.-border {
  min-width: 100px;
  color: #666;
  background: #fff;
  border: 1px solid #666;
}

.c-tag.-date {
  min-width: 80px;
  background: none;
  padding: 8px 16px 8px 0;
}

.c-tag.-font-m {
  font-size: 1.4rem;
}

.c-item-category{
  position: absolute;/*絶対配置*/
  color: white;/*文字は白に*/
  bottom: 0;
  right: 0;
  background-color: #0F70C3;/*jia blue*/
  padding:8px 16px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 100px;
  font-size: 1.5rem;
  z-index:9999;
} 

/* ハンバーガーメニュー展開時、背景を固定                                  */
body.active {
  height: 100%;
  overflow: hidden;
}

/* ハンバーガーメニューだけスクロール可能                                  */
.gnav__wrap {
  height: 100%;
  overflow: scroll;
}

.l-header.change-color {
  background: rgba(15,112,195,1.0); //スクロールしたあとのヘッダー背景色
  transition: 0.3s;
}

.gnav-style{
  display:block;
}

@media only screen and (max-width: 768px) {
.gnav-style{
  margin-top:0;
}
}


/*header                                  */
.l-header {
  position: relative;
  width: 100%;
  background: #0F70C3;/*jia blue*/
  color:#fff;
  z-index:99;
}

.l-header__inner {
  width: 100%;
  max-width:1336px;
  height: 100%;
  padding:10px;
  margin:0 auto;
}

@media only screen and (max-width: 768px) {
.l-header__inner {
  padding:8px;
}
}

.l-header__logo {
  padding:0;
  position: relative;
  z-index: 9;
}


.l-header__logo img{
  width:365px;
}

@media only screen and (max-width: 768px) {
.l-header__logo img{
  width:280px;
}
}

@media only screen and (max-width: 374px) {
.l-header__logo img{
  width:250px;
}
}

.l-header.-archives {
  position: relative;
  width: 100%;
  background: #fff;
  color:#333;
  z-index:99;
}

.l-header__inner.-archives {
  width: 100%;
  max-width:950px;
  height: 100%;
  padding:10px;
  margin:0 auto;
}

@media only screen and (max-width: 768px) {
.l-header__inner-archives {
  padding:8px;
}
}



/*ハンバーガー                                  */
.menu{
    height: 20px;
    position: absolute;
    right: 0;
    top: 15px;
    width: 30px;
    z-index: 7000;
    cursor: pointer;
    /*position: fixed;*/
}
.menu__line{
    background: #fff;
    display: block;
    height: 2px;
    position: absolute;
    transition:transform .3s;
    width: 100%;
}
.menu__line--center{
    top: 9px;
}
.menu__line--bottom{
    bottom: 0;
}
.menu__line--top.active{
    top: 8px;
    transform: rotate(45deg);
    background: #fff;
}
.menu__line--center.active{
    transform:scaleX(0);
    background: #fff;
}
.menu__line--bottom.active{
    bottom: 10px;
    transform: rotate(135deg);
    background: #fff;
}
/*gnav                                  */
.gnav{
    background: rgba(15,112,195,1.0);
    display: none;
    height: 100%;
    position: fixed;
    width: 100%;
    top:40px;
    left:0;
    pointer-events:auto;
}
.gnav__wrap{
    align-items:top;
    display: flex;
    height: 100%;
    justify-content: center;
    position: absolute;
    width: 100%;
}


.gnav__menu__item{
    margin: 40px 50px;
}
.gnav__menu__item a{
	color: #fff;
    font-size: 2rem;
    padding: 0 50px 30px 30px;
	text-decoration: none;
    transition: .5s;
    letter-spacing: 0.1em;
}

@media only screen and (max-width: 320px){
.gnav__menu__item a{
    font-size: 1.5rem;
}
}

@media only screen and (max-width: 726px){
.gnav__menu__item{
    margin: 40px 0;
}

.gnav__menu__item a{
    padding: 40px 40px 40px 0;
}
}

.gnav__menu__item a:hover{
    color: #666;
}

.gnav__menu__subitem{
    margin: 0 0 20px 0;
}

.gnav__menu__subitem span{
    font-size: 1.2rem;
}

@media only screen and (max-width: 320px){
.gnav__menu__subitem span{
    font-size: 1.0rem;
}
}

.gnav__menu__subitem a{
	color: #fff;
    font-size: 1.5rem;
    padding: 0 0 40px 0;
	text-decoration: none;
    transition: .5s;
    letter-spacing: 0.1em;
    line-height:1.5em;
}

@media only screen and (max-width: 726px){
.gnav__menu__subitem{
    margin: 40px 0 0 0;
}
.gnav__menu__subitem a{
    padding: 40px 0 0 0;
}
}

.gnav__menu__subitem a:hover{
    color: #666;
}

.sns_links{
    padding-top:40px;
}

@media only screen and (max-width: 726px){
.sns_links{
    width:150px;
}
}

.gnav_pc{
    position: relative;
}

@media only screen and (max-width: 768px){
.gnav_pc{
    display:none;
}
}

.gnav_pc ul {
		display: flex;
		margin: 0 auto;
		padding: 0 3%;
		width: 94%;
		max-width: 960px;
		list-style-type: none;
	}
		.gnav_pc ul li {
			position: relative;
			width: 20%;
		}
		.gnav_pc ul li a {
			display: block;
			padding: 0 10px;
			text-align: center;
			text-decoration: none;
		}

.gnav_pc__menu__item{
    margin: 0;
}
.gnav_pc__menu__item a{
    font-size: 1.3rem;
	text-decoration: none;
    transition: .5s;
    letter-spacing: 0.1em;
}

@media only screen and (max-width: 726px){
.gnav_pc__menu__item{
    margin: 40px 0;
}

.gnav_pc__menu__item a{
    padding: 40px 40px;
}
}

.gnav_pc__menu__item a:hover{
    color: #b7b19f;
}

/*form　メルマガ                                  */

.textfield {
    width: 100%;
    padding: 14px;
    border: 1px solid #b5b5b5;
    font-family: Theinhardt-L,Koburina Gothic W3 JIS2004,Noto Sans SC,-apple-system,BlinkMacSystemFont,sans-serif!important;
    font-weight: 300;
    font-size: 1.6rem;
    line-height: 1.6;
    letter-spacing: .06rem;
    color: #1a1a1a;
    background-color: #ccc;
}

.radiobutton span {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid #b5b5b5;
}

/*検索窓                                  */
.search_box{
  padding:16px;
  
}

.search_container{
  box-sizing: border-box;
  position: relative;
  border: 1px solid #fff;
  padding: 3px 10px;
  border-radius: 20px;
  height: 2.3em;
  display: inline-block;
  overflow: hidden;
  color:#fff;
}

.search_container input[type="text"]{
  border: none;
  height: 2.0em;
  background: rgba(15,112,195,1.0);
  color:#fff;
}
.search_container input[type="text"]:focus {
  outline: 0;
}
.search_container input[type="submit"]{
  cursor: pointer;
  font-family: FontAwesome;
  font-size: 1.3em;
  border: none;
  background: none;
  color: #fff;
  position: absolute;
  width: 2.5em;
  height: 2.5em;
  right: 0;
  top: -10px;
  outline : none;
}
::placeholder {
  color: #fff;
}


/*中央線                                  */

.center-line_pc{
  border-right: 1px solid #D5D5D5;
}

@media screen and (max-width: 768px) {
  .center-line_pc{
    border-right:none;
  }
}


/* sns-icon*/
.sns-icon{
  color:#000;
  transition: 0.3s all;
}

.sns-icon:hover{
  color:#0f5da1;
}

/*セレクトボックス                                  */
cp_ipselect {
	overflow: hidden;
	width: 90%;
	margin: 2em auto;
	text-align: center;
}
.cp_ipselect select {
	width: 100%;
	padding-right: 1em;
	cursor: pointer;
	text-indent: 0.01px;
	text-overflow: ellipsis;
	border: none;
	outline: none;
	background: transparent;
	background-image: none;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
}
.cp_ipselect select::-ms-expand {
    display: none;
}
.cp_ipselect.cp_sl01 {
	position: relative;
	border: 1px solid #D5D5D5;
	border-radius: 0;
	background: #ffffff;
}
.cp_ipselect.cp_sl01::before {
	position: absolute;
	top: 0.5em;
	right: 1.0em;
	width: 0;
	height: 0;
	padding: 0 1.0em 0 0;
	content: '';
	pointer-events: none;
	content: "\f103";
  font-family: FontAwesome;
}
.cp_ipselect.cp_sl01 select {
	padding: 1.0em 38px 1.0em 1.0em;
	color: #333;
	font-size: 1.6rem;
}

/*pagetop                                  */
#js-pagetop {
  position: fixed;
  width: 50px;
  height: 50px;
  border-radius: 0;
  color: #fff;
  bottom: 50px;
  right: 20px;
  cursor: pointer;
  letter-spacing: 1px;
  background-color: #0f5da1;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.16);
}


#js-pagetop span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1.4rem;
}

@media only screen and (max-width: 767px) {
#js-pagetop {
  width: 50px;
  height: 50px;
  bottom: 40px;
  letter-spacing: 0.1em;
}
 
#js-pagetop span {
  font-size: 1.0rem;
  font-weight:600;
}

}

/*コンタクトフォーム7  メルマガ登録解除                                 */
/*送信ボタン*/
  .wpcf7 input[type="submit"] {
    display: block;
    width: 100%;
    max-width:675px;
    height: 60px;
    line-height: 60px;
    padding: 0;
    margin: 40px auto;
    font-size: 1.6rem;
    text-align: center;
    color: #fff;
    border-radius: 0;
    box-shadow: 0 3px 0 0 rgb(0 0 0 / 6%);
    background-color: #323232;
    cursor: pointer;
    font-weight: bold;
  }
/*テキストフィールド*/
 .wpcf7 input {
    width: 100%;
    max-width:675px;
    padding: 15px 24px;
    margin: .75em 0 1em;
    font-size: 1.5rem;
    background-color: #f1efee;
    color: #323232;
    border:1px solid #ccc;
 }
@media(max-width:767px) {
    .wpcf7 input {
      padding: 15px;
      font-size: 1.4rem;
   }
 }

/*ラジオボタン*/
  .wpcf7-list-item-label {
    cursor: pointer;
    display: flex;
  }
  input[type="radio"] {
    opacity: 0;
    position: absolute;
  }
  .wpcf7-list-item-label::before {
    content: "";
    width: 25px;
    height: 25px;
    margin-right: .55em;
    background: #fff;
    border: 1px solid #d1d1d1;
    border-radius: 100%;
    transition: background-color .5s;
  }
  input[type="radio"]:checked+.wpcf7-list-item-label::before {
    background-color: #0175C0;
    box-shadow: inset 0 0 0 3px #fff;
  }

/*archives*/

.post_date{
  text-align:right;
  font-size: 12px;
  color: #999;
}

@media only screen and (max-width: 767px) {
.post_date{
  padding: 0 0 2em;
}
}

.home{
    height: 20px;
    position: absolute;
    right: 0;
    top: 15px;
    width: 30px;
    z-index: 7000;
    cursor: pointer;
}