@charset "UTF-8";

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/*==========================
original reset
==========================*/
input, textarea {
  margin: 0;
  padding: 0;
}

/* body {
  font-size: 14px;
} */

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

a {
  text-decoration: none;
}

i {
  display: inline-block;
}

address, caption, th {
  font-style: normal;
  font-weight: normal;
  text-align: left;
}

img {
  vertical-align: middle;
  border: none;
}

p {
  margin-bottom: 1em;
}

ul, ol {
  padding-left: 20px;
}

html {
  min-height: 100%;
}

.grid-wrapper {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 960px;
  margin: 0 auto;
  padding-right: 1rem;
  padding-left: 1rem;
  width: 100%;
  overflow: hidden;
}
.grid-wrapper--lg {
  max-width: 1280px;
}
.grid-wrapper--sm {
  max-width: 720px;
}
.grid-wrapper--no-gutter {
  padding-right: 0;
  padding-left: 0;
}
.grid-wrapper--full {
  padding-right: 0;
  padding-left: 0;
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
}

.row {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
  -moz-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -1rem;
  margin-left: -1rem;
}


.row-item-gutter--lg {
  margin-left: -2rem;
  margin-right: -2rem;
}
.row-item-gutter--lg > [class*=col-] {
  padding-left: 2rem;
  padding-right: 2rem;
}


.col-xs-12 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 1rem;
  padding-left: 1rem;
  -webkit-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}


.middle-xs {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}


@media only screen and (min-width: 480px) {
  .col-sm {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 1rem;
    padding-left: 1rem;
    -webkit-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  
  .col-sm-3 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 1rem;
    padding-left: 1rem;
    -webkit-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-sm-6 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 1rem;
    padding-left: 1rem;
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-sm-8 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 1rem;
    padding-left: 1rem;
    -webkit-flex-basis: 66.6666666667%;
    -ms-flex-preferred-size: 66.6666666667%;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  
  .col-sm {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -moz-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  
}
@media only screen and (min-width: 768px) {
  .col-md {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 1rem;
    padding-left: 1rem;
    -webkit-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  
  .col-md {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -moz-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-md-4 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 1rem;
    padding-left: 1rem;
    -webkit-flex-basis: 33.3333333333%;
    -ms-flex-preferred-size: 33.3333333333%;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .center-xs {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  text-align: center;
}
}


/*!
 *  Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
@font-face {
  font-family: "FontAwesome";
  src: url("//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/fonts/fontawesome-webfont.eot?v=4.2.0");
  src: url("//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/fonts/fontawesome-webfont.eot?#iefix&v=4.2.0") format("embedded-opentype"), url("//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/fonts/fontawesome-webfont.woff?v=4.2.0") format("woff"), url("//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/fonts/fontawesome-webfont.ttf?v=4.2.0") format("truetype"), url("//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/fonts/fontawesome-webfont.svg?v=4.2.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}




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

html {
  font-size: 62.5%;
}

body {
  color: #05161a;
  /* font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif; */
  font-size: 1.6rem;
  overflow-wrap: break-word;
  line-height: 1.6;
  background-color: #fff;
}

h2 {
  font-size: inherit;
  line-height: inherit;
}

hr {
  margin: 40px 0;
}

table {
  border-collapse: collapse;
  width: 100%;
}

th,
td {
  padding: 10px;
  word-break: break-all;
}
@media only screen and (min-width: 1px) and (max-width: 480px) {
  th,
  td {
    display: block;
    margin-bottom: 1px;
    text-align: left !important;
    width: 100% !important;
  }
}

tbody th {
  min-width: 150px;
}

label + label {
  margin-left: 1em;
}

input,
textarea,
select,
option {
  font-size: 1.6rem;
  padding: 0.5em;
}
@media only screen and (min-width: 1px) and (max-width: 480px) {
  input,
  textarea,
  select,
  option {
    font-size: 1.6rem;
  }
}

input[type=radio],
input[type=checkbox] {
  margin-right: 0.3em;
  vertical-align: baseline;
}

textarea {
  resize: vertical;
  width: 100%;
}
/* 
select {
  text-indent: 0.01px;
  text-overflow: "";
  padding: 0;
  min-height: 36px;
  min-width: 100px;
  max-width: 100%;
} */

button {
  background-color: transparent;
  border: 0;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

[data-structure^=b-map-in-table] table {
  border-collapse: separate;
}

.c-wrapper {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 960px;
  margin: 0 auto;
  padding-right: 2rem;
  padding-left: 2rem;
  width: 100%;
}
.c-wrapper--lg {
  max-width: 1280px;
}
.c-wrapper--sm {
  max-width: 720px;
}
.c-wrapper--xs {
  max-width: 520px;
}
.c-wrapper--min {
  max-width: 300px;
}
.c-wrapper--no-gutter {
  padding-right: 0;
  padding-left: 0;
}

.c-inner {
  padding: 20px 20px 1px;
}
.c-inner--xs {
  padding: 5px 5px 1px;
}
.c-inner--sm {
  padding: 10px 10px 1px;
}
.c-inner--lg {
  padding: 40px 40px 20px;
}
.c-inner--xl {
  padding: 60px 60px 40px;
}
.c-inner--xxl {
  padding: 80px 80px 60px;
}
.c-inner--one-elem {
  padding-bottom: 20px;
}
.c-inner--one-elem.c-inner--xs {
  padding-bottom: 5px;
}
.c-inner--one-elem.c-inner--sm {
  padding-bottom: 10px;
}
.c-inner--one-elem.c-inner--md {
  padding-bottom: 20px;
}
.c-inner--one-elem.c-inner--lg {
  padding-bottom: 40px;
}
.c-inner--one-elem.c-inner--xl {
  padding-bottom: 60px;
}
.c-inner--one-elem.c-inner--xxl {
  padding-bottom: 80px;
}
.c-inner--one-elem.c-inner--xxxl {
  padding-bottom: 100px;
}
.c-inner--vertical {
  padding-left: 0;
  padding-right: 0;
}
@media only screen and (min-width: 1px) and (max-width: 480px) {
  .c-inner {
    padding: 20px 20px 1px;
  }
  .c-inner--xs {
    padding: 5px 5px 1px;
  }
  .c-inner--sm {
    padding: 10px 10px 1px;
  }
  .c-inner.c-inner--one-elem {
    padding-bottom: 20px;
  }
  .c-inner.c-inner--one-elem.c-inner--xs {
    padding-bottom: 5px;
  }
  .c-inner.c-inner--one-elem.c-inner--sm {
    padding-bottom: 10px;
  }
  .c-inner.c-inner--vertical {
    padding-left: 0;
    padding-right: 0;
  }
}

@media only screen and (min-width: 1px) and (max-width: 480px) {
  .c-inner-sp--xs {
    padding: 5px 5px 1px;
  }
  .c-inner-sp--sm {
    padding: 10px 10px 1px;
  }
  .c-inner-sp--lg {
    padding: 40px 40px 20px;
  }
  .c-inner-sp--xl {
    padding: 60px 60px 40px;
  }
  .c-inner-sp--xxl {
    padding: 80px 80px 60px;
  }
  .c-inner--one-elem.c-inner-sp--xs {
    padding-bottom: 5px;
  }
  .c-inner--one-elem.c-inner-sp--sm {
    padding-bottom: 10px;
  }
  .c-inner--one-elem.c-inner-sp--md {
    padding-bottom: 20px;
  }
  .c-inner--one-elem.c-inner-sp--lg {
    padding-bottom: 40px;
  }
  .c-inner--one-elem.c-inner-sp--xl {
    padding-bottom: 60px;
  }
  .c-inner--one-elem.c-inner-sp--xxl {
    padding-bottom: 80px;
  }
  .c-inner--one-elem.c-inner-sp--xxxl {
    padding-bottom: 100px;
  }
}

.c-img a:hover img {
  opacity: 0.8;
}
.c-img a:hover + div[data-image-clip-viewer] {
  opacity: 0.8;
}
.c-img img {
  display: inline-block;
  vertical-align: top;
}
.c-img--responsive img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.c-img--responsive-v img {
  display: inline-block;
  max-height: 100%;
  width: auto;
}
/* .c-img--circle img,
.c-img--circle .pera1-clip-image {
  border-radius: 50%;
} */
.c-img--full img {
  display: inline-block;
  height: auto;
  width: 100%;
}

.c-img--responsive img:not([width])[src$=".svg"],
.c-img--responsive img:not([width])[src$=".svgz"] {
  width: 100%;
  max-width: 300px;
}
.c-img--responsive img:not([width])[src$="im_image_square.svg"],
.c-img--responsive img:not([width])[src$="im_image_square.svgz"] {
  max-width: 400px;
}

.c-img-frame img {
  border: 10px solid #fff;
  -webkit-box-shadow: 0 0 4px 0 #ccc;
          box-shadow: 0 0 4px 0 #ccc;
}

.c-img-icon {
  background-color: #0c5980;
  padding: 0.5em;
}
.c-img-icon--circle {
  border-radius: 50%;
}

.c-img-wraparound::after {
  content: "";
  display: block;
  clear: both;
}
.c-img-wraparound__media {
  max-width: 300px;
}
.c-img-wraparound__media--left {
  float: left;
}
.c-img-wraparound__media--right {
  float: right;
}
.c-img-wraparound__media--sm {
  max-width: 100px;
}
.c-img-wraparound__media--md {
  max-width: 300px;
}
.c-img-wraparound__media--lg {
  max-width: 400px;
}
@media only screen and (min-width: 1px) and (max-width: 480px) {
  .c-img-wraparound__media {
    float: none;
    max-width: 100%;
  }
}

.c-bg-img {
  background-position: center center;
  background-repeat: no-repeat;
}
.c-bg-img--contain {
  background-size: contain;
}
.c-bg-img--cover {
  background-size: cover;
}

.c-bg-color {
  background-color: #f7f7f7;
}

.c-embedly-object {
  position: relative;
}
.c-embedly-object--responsive {
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.c-embedly-object--responsive iframe,
.c-embedly-object--responsive object,
.c-embedly-object--responsive embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-embedly-object--ratio-wide {
  padding-bottom: 33%;
}

.c-btn a,
.c-btn input,
.c-btn .btn-customform-submit,
.c-btn button {
  background-color: #133562;
  color: #fff;
  display: inline-block;
  font-size: 1.6rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  text-align: center;
  text-shadow: none;
  border: 0;
  cursor: pointer;
  font-weight: normal;
  padding: 0.8em 1.8em;
  min-width: 30%;
  line-height: 1.2;
  font-family: inherit;
}
.c-btn a:hover,
.c-btn input:hover,
.c-btn .btn-customform-submit:hover,
.c-btn button:hover {
  opacity: 0.8;
}
.c-btn .btn-customform-submit {
  width: auto;
  height: auto;
}
.c-btn input:disabled,
.c-btn button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  text-decoration: line-through;
}
.c-btn input:disabled:hover,
.c-btn button:disabled:hover {
  opacity: 0.5;
}
.c-btn--sm a,
.c-btn--sm input,
.c-btn--sm .btn-customform-submit,
.c-btn--sm button {
  font-size: 1.4rem;
  padding: 0.8em 1.8em;
  min-width: 1%;
}
/* .c-btn--lg a,
.c-btn--lg input,
.c-btn--lg .btn-customform-submit,
.c-btn--lg button {
  font-size: 2rem;
  padding: 0.8em 1.8em;
  min-width: 47%;
} */
.c-btn--full a,
.c-btn--full input,
.c-btn--full .btn-customform-submit,
.c-btn--full button {
  padding-left: 0.4em;
  padding-right: 0.4em;
  width: 100%;
}


@media only screen and (min-width: 1px) and (max-width: 480px) {
  .c-btn a,
  .c-btn input,
  .c-btn .btn-customform-submit,
  .c-btn button {
    padding-left: 0.8em;
    padding-right: 0.8em;
  }
  .c-btn--sm a,
  .c-btn--sm input,
  .c-btn--sm button {
    font-size: 1.6rem;
    padding: 0.4em 0.8em;
  }
  
  .c-btn--full a,
  .c-btn--full input,
  .c-btn--full .btn-customform-submit,
  .c-btn--full button {
    padding-left: 0.4em;
    padding-right: 0.4em;
  }
}


.c-heading {
  font-size: 2.8rem;
  line-height: 1.3;
}

.c-heading--bdr-btm {
  padding-bottom: 0.5em;
  border-bottom: 2px solid #0c5980;
}
.c-heading--bdr-thin-btm {
  padding-bottom: 0.5em;
  border-bottom: 1px solid #28c3d4;
}
@media only screen and (min-width: 1px) and (max-width: 480px) {
  .c-heading {
    font-size: 2rem;
  }
  
}



.c-tr--bdr th,
.c-tr--bdr td {
  border-width: 1px;
  border-color: #0c5980;
  border-style: solid;
}
.c-tr--bdr-top th,
.c-tr--bdr-top td {
  border-left-style: none;
  border-right-style: none;
  border-bottom-style: none;
}
.c-tr--bdr-btm th,
.c-tr--bdr-btm td {
  border-left-style: none;
  border-right-style: none;
  border-top-style: none;
}


.c-hr-solid {
  margin: 0;
  border-top: 1px solid #0c5980;
}
/* .c-hr-solid--medium {
  border-top-width: 3px;
} */
.c-hr-solid--thick {
  border-top-width: 5px;
}



.p-heading__inner {
  padding-top: 40px;
  padding-bottom: 5px;
}
@media only screen and (min-width: 1px) and (max-width: 480px) {
  .p-heading__inner {
    padding-top: 20px;
  }
}


.p-heading-marker {
  position: relative;
  z-index: 1;
  padding-left: 0.3em;
  padding-bottom: 0.2em;
  /* padding-top: 60px; */
}
.p-heading-marker::after {
  position: absolute;
  bottom: 0.2em;
  left: 0;
  z-index: -1;
  content: "";
  width: 100%;
  height: 10px;
  background-color: #CFDDE6;
  -webkit-transform: rotate(-0.3deg);
      -ms-transform: rotate(-0.3deg);
          transform: rotate(-0.3deg);
}

.p-heading-accent {
  position: relative;
  padding-right: 1em;
  padding-left: 1.8em;
}
.p-heading-accent::before, .p-heading-accent::after {
  position: absolute;
  content: "";
  border-radius: 100%;
}
.p-heading-accent::before {
  top: 0.3em;
  left: 0.3em;
  width: 0.6em;
  height: 0.6em;
  background: #0c5980;
  z-index: 2;
}
.p-heading-accent::after {
  top: 0.7em;
  left: 0.7em;
  width: 0.4em;
  height: 0.4em;
  background: #edf3ef;
  z-index: 1;
}


.p-m_navigation {
  background-color: #fff;
}
.p-navigation {
  position: relative;
  border-color: inherit;
  background-color: inherit;
}
.p-navigation__wrapper {
  overflow: visible;
  background-color: inherit;
}
.p-navigationHeader {
  max-width: 400px;
  position: relative;
  z-index: 999;
}
.p-btn_navigationToggle {
  display: none;
  position: absolute;
  top: 15px;
  right: 1rem;
  padding: 5px 10px;
  border-radius: 3px;
  background-color: #fff;
  cursor: pointer;
  border: 1px solid #ccc;
  color: #05161a;
  /* z-index: 999; */
}
.p-btn_navigationToggle i::before {
  content: "\f0c9";
}
.p-btn_navigationToggle.is-open i::before {
  content: "\f077";
}
.p-m_navigationMenu li {
  display: inline-block;
}
.p-m_navigationMenu li + li {
  margin-left: 10px;
}
.p-m_navigationMenu a {
  display: inline-block;
  color: inherit;
  padding-left: 30px;
  text-decoration: none;
  position: relative;
}
.p-m_navigationMenu a::after {
  content: "";
  position: absolute;
  left: 40px;
  bottom: -2px; /* 文字との距離 */
  width: calc(80% - 40px);
  height: 2px;
  background-color: #133562;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease-out;
}
.p-m_navigationMenu a:hover::after {
  transform: scaleX(1);
}
@media screen and (max-width: 768px) {
  .p-m_navigationMenu a::after {
/* 	  ransform-origin: right; */
	  left: auto;
	  right: 0; 
	  width: 20%;
      
/*     right: 0; */
/* 	width: 20%;
    transform-origin: right; */
  }
}
.p-m_navigationMenu[data-separation] li + li {
  margin-left: 0;
}
.p-m_navigationMenu[data-separation] li + li::before {
  margin-left: 5px;
  margin-right: 5px;
}
.p-m_navigationMenu[data-separation=slash] li + li::before {
  content: "／";
}
.p-m_navigationMenu[data-separation=bar] li + li::before {
  content: "｜";
}
@media only screen and (min-width: 1px) and (max-width: 768px) {
  .p-navigation {
    display: block;
  }
  .p-navigationHeader {
    position: relative;
    min-height: 38px;
  }
  .p-m_navigationMenu {
    position: absolute;
    z-index: -1;
    width: 100%;
    /* display: none; */
    padding: 0;
    border-top: 2px solid #f7f7f7;
    background-color: inherit;
    text-align: left;
    max-height: 350px;
    overflow-y: scroll;
  }
  .p-m_navigationMenu li {
    display: block;
    border-bottom: 1px solid #f7f7f7;
  }
  .p-m_navigationMenu li + li {
    margin-left: 0;
  }
  .p-m_navigationMenu[data-separation] li + li::before {
    content: none;
    margin-left: 0;
    margin-right: 0;
  }
  .p-m_navigationMenu a {
    display: block;
    padding: 10px;

  }
  /* 初期状態：非表示 */
  .p-m_navigationMenu {
      position: fixed;
      top: 60px;
      right: 0;
      width: 100%;
      background: #fff;
      transform: translateY(calc(-100% - 60px));
      transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
    text-align: right;
  }
  /* 開いた状態 */
.p-m_navigationMenu.is-open {
  /* display: block; */
  
  transform: translateY(0);
}
  .p-btn_navigationToggle {
    display: block;
  }
}
/* header {
  position: relative;
  z-index: 999!important;
} */


.p-header__nav {
  background-color: #fff;
}

.p-header-main__logo > a > img,
.p-header-main__logo > img {
  max-height: 100px;
}
@media only screen and (min-width: 1px) and (max-width: 480px) {
  .p-header-main__logo > a > img,
  .p-header-main__logo > img {
    max-height: 70px;
  }
}
.p-header-main__logo img:not([width])[src$=".svg"] {
  max-width: 150px;
}
@media only screen and (min-width: 1px) and (max-width: 768px) {
  .p-header-main__nav-heading {
    padding: 4px 40px 0 0;
  }
}
@media only screen and (min-width: 1px) and (max-width: 480px) {
  .p-header__nav {
    font-size: 1.1rem;
  }
}

.p-header-main-fixed {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
  margin-top: 0 !important;
}





.p-contact-section-container__wrapper {
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 3px rgba(0, 0, 0, 0.6);
  background-color: #0c5980;
  padding: 0 10px 10px;
}
.p-contact-section-container__body {
  background-color: #fff;
}
.p-contact-section-container__col:nth-child(2) {
  position: relative;
}
.p-contact-section-container__col:nth-child(2):before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 5%;
  height: 90%;
  width: 1px;
  background-color: #ccc;
}
@media only screen and (min-width: 1px) and (max-width: 480px) {
  .p-contact-section-container__wrapper {
    width: auto;
  }
  .p-contact-section-container__col {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .p-contact-section-container__col:nth-child(2):before {
    height: 1px;
    width: 90%;
    left: 5%;
    top: 0;
  }
}



.p-header-main {
  background-color: #fff;
  -webkit-box-shadow: 0 1px 2px rgba(220, 220, 220, 0.5);
          box-shadow: 0 1px 2px rgba(220, 220, 220, 0.5);
}
.p-header-main__top {
  padding-top: 10px;
  padding-bottom: 10px;
}
.p-header-main__top-outer-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 50px;
}
.p-header-main__top-logo {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.p-header-main__top-btns {
  -webkit-box-flex: 2;
  -webkit-flex-grow: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
}
.p-header-main__top-btns-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: right;
  text-align: end;
}
.p-header-main__text-pc {
  line-height: 1.2;
}
.p-header-main__editable-btn {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.p-header-main__sp-icon-btn {
  display: none;
}
.p-header-main__sp-icon-btn img.container {
  display: none;
}
.p-header-main__bottom .removable.p-header-main__nav-heading.p-header-main__logo {
  display: none;
}
.p-header-main__bottom .removable.p-header-main__nav-heading.p-header-main__logo img.container {
  display: none;
  
}
.p-header-main__bottom .p-m_navigation {
  background-color: #fff;
}
.p-header-main__bottom .p-navigation {
  padding-top: 5px;
  padding-bottom: 5px;
}
.p-header-main__bottom .navigationHeader.p-navigationHeader {
  display: none;
}
.p-header-main .only-edit {
  margin: 5px;
  padding: 25px 5px;
  background-color: #fff8d9;
  border: 2px solid #f2c200;
  border-radius: 4px;
  color: #05161a;
}
@media only screen and (min-width: 1px) and (max-width: 768px) {
  .p-header-main__top {
    padding-top: 0;
    padding-bottom: 0;
  }
  .p-header-main__top-outer-row {
    min-height: auto;
  }
  .p-header-main__top-logo {
    display: none;
  }
  .p-header-main__top-btns {
    position: fixed;
    bottom: 0;
    left: 0;
    padding-right: 0;
    padding-left: 0;
    width: 100%;
    height: 57px;
    background-color: #fff;
    -webkit-box-shadow: 0px -1px 2px -1px rgba(0, 0, 0, 0.4);
            box-shadow: 0px -1px 2px -1px rgba(0, 0, 0, 0.4);
  }
  .p-header-main__top-btns-row {
    height: 57px;
  }
  .p-header-main__text-pc {
    display: none;
  }
  .p-header-main__text-pc .removable {
    display: none;
  }
  .p-header-main__editable-btn {
    width: calc(50% - 30px);
    height: 57px;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .p-header-main__editable-btn .c-btn--sm {
    height: 57px;
  }
  .p-header-main__editable-btn .c-btn--sm .c-btn {
    height: 57px;
  }
  .p-header-main__editable-btn .c-btn--sm a {
    width: 100%;
    height: 57px;
    line-height: 57px;
    padding: 0 0.2em;
    overflow: hidden;
  }
  .p-header-main__sp-icon-btn {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 60px;
    height: 57px;
  }
  .p-header-main__sp-icon-btn img.container {
    display: inline-block;
  }
  .p-header-main__bottom .removable.p-header-main__nav-heading.p-header-main__logo {
    display: block;
  }
  .p-header-main__bottom .removable.p-header-main__nav-heading.p-header-main__logo img.container {
    display: inline-block;
  }
  .p-header-main__bottom .p-navigation {
    padding-bottom: 0;
  }
  .p-header-main__bottom .navigationHeader.p-navigationHeader {
    display: block;
  }
}

.p-header-main--v2 .p-header-main__bottom .removable.p-header-main__nav-heading.p-header-main__logo {
  display: block;
}
.p-header-main--v2 .p-header-main__bottom .removable.p-header-main__nav-heading.p-header-main__logo img.container {
  display: block;
}
.p-header-main--v2 .p-header-main__bottom .p-navigation {
  position: static;
}
.p-header-main--v2 .p-header-main__bottom .navigationHeader.p-navigationHeader {
  display: block;
  position: absolute;
  top: 10px;
}
@media only screen and (min-width: 1px) and (max-width: 768px) {
  .p-header-main--v2 .p-header-main__top-logo {
    display: block;
  }
  .p-header-main--v2 .p-header-main__bottom .p-navigation {
    position: relative;
  }
  .p-header-main--v2 .p-header-main__bottom .p-navigation > .c-inner {
    height: 62px;
  }
  .p-header-main--v2 .p-header-main__bottom .navigationHeader.p-navigationHeader {
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .p-header-main--v2 .p-header-main__bottom .p-header-main__nav-heading {
    padding: 0;
  }
}

@media only screen and (min-width: 1px) and (max-width: 768px) {
  .edit .p-header-main__top {
    padding-left: 0;
    padding-right: 0;
  }
  .edit .p-header-main__top-btns {
    position: static;
  }
}
.edit .p-header-main--v2 .p-header-main__bottom .navigationHeader.p-navigationHeader {
  top: auto;
  bottom: 60px;
}
@media only screen and (min-width: 1px) and (max-width: 768px) {
  .edit .p-header-main--v2 .p-header-main__top {
    padding-top: 0;
    padding-bottom: 0;
  }
  .edit .p-header-main--v2 .p-header-main__bottom .navigationHeader.p-navigationHeader {
    bottom: 10px;
    top: auto;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}
@media only screen and (min-width: 1px) and (max-width: 480px) {
  .edit .p-header-main--v2 .p-header-main__top-logo {
    bottom: 10px;
  }
}




.p-footer__inner {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media only screen and (min-width: 1px) and (max-width: 480px) {
  .p-footer__inner {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}



.p-cards-2__img {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.p-cards-2__img:before { /* コンテナ要素の擬似要素(ここで比率を調整) */
  content: "";
  display: block;
  padding-top: 56.25%; /*16:9*/
}
.p-cards-2__img img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left center;
     object-position: left center;
}


.u-color-white {
  color: #fff;
}


.u-align-left {
  text-align: left;
}

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

.u-align-right {
  text-align: right;
}


@media only screen and (min-width: 1px) and (max-width: 768px) {
  .u-align-center--sp {
    text-align: center;
  }
}
/*
* SCREEN_LESS_MIDDLE（768以下）が`--sp`のmodifierクラスで定義されているため、
* 480px以下でのfont-size調整用のmodifierクラスを例外的に`--sp-sm`と命名しています。
*/
@media only screen and (min-width: 1px) and (max-width: 480px) {
  .u-align-center--sp-sm {
    text-align: center;
  }
}

.u-mt0 {
  margin-top: 0;
}

.u-mr0 {
  margin-right: 0;
}

.u-mb0 {
  margin-bottom: 0;
}

.u-ml0 {
  margin-left: 0;
}

.u-mtxs {
  margin-top: 5px;
}

.u-mrxs {
  margin-right: 5px;
}

.u-mbxs {
  margin-bottom: 5px;
}

.u-mlxs {
  margin-left: 5px;
}

.u-mtsm {
  margin-top: 10px;
}

.u-mrsm {
  margin-right: 10px;
}

.u-mbsm {
  margin-bottom: 10px;
}

.u-mlsm {
  margin-left: 10px;
}

.u-mtmd {
  margin-top: 20px;
}

.u-mrmd {
  margin-right: 20px;
}

.u-mbmd {
  margin-bottom: 20px;
}

.u-mlmd {
  margin-left: 20px;
}

.u-mtlg {
  margin-top: 40px;
}

.u-mrlg {
  margin-right: 40px;
}

.u-mblg {
  margin-bottom: 40px;
}

.u-mllg {
  margin-left: 40px;
}

.u-mtxl {
  margin-top: 60px;
}

.u-mrxl {
  margin-right: 60px;
}

.u-mbxl {
  margin-bottom: 60px;
}

.u-mlxl {
  margin-left: 60px;
}

.u-mtxxl {
  margin-top: 80px;
}

.u-mrxxl {
  margin-right: 80px;
}

.u-mbxxl {
  margin-bottom: 80px;
}

.u-mlxxl {
  margin-left: 80px;
}

.u-mtxxxl {
  margin-top: 100px;
}

.u-mrxxxl {
  margin-right: 100px;
}

.u-mbxxxl {
  margin-bottom: 100px;
}

.u-mlxxxl {
  margin-left: 100px;
}

.u-pt0 {
  padding-top: 0;
}

.u-pr0 {
  padding-right: 0;
}

.u-pb0 {
  padding-bottom: 0;
}

.u-pl0 {
  padding-left: 0;
}

.u-ptxs {
  padding-top: 5px;
}

.u-prxs {
  padding-right: 5px;
}

.u-pbxs {
  padding-bottom: 5px;
}

.u-plxs {
  padding-left: 5px;
}

.u-ptsm {
  padding-top: 10px;
}

.u-prsm {
  padding-right: 10px;
}

.u-pbsm {
  padding-bottom: 10px;
}

.u-plsm {
  padding-left: 10px;
}

.u-ptmd {
  padding-top: 20px;
}

.u-prmd {
  padding-right: 20px;
}

.u-pbmd {
  padding-bottom: 20px;
}

.u-plmd {
  padding-left: 20px;
}

.u-ptlg {
  padding-top: 40px;
}

.u-prlg {
  padding-right: 40px;
}

.u-pblg {
  padding-bottom: 40px;
}

.u-pllg {
  padding-left: 40px;
}

.u-ptxl {
  padding-top: 60px;
}

.u-prxl {
  padding-right: 60px;
}

.u-pbxl {
  padding-bottom: 60px;
}

.u-plxl {
  padding-left: 60px;
}

.u-ptxxl {
  padding-top: 80px;
}

.u-prxxl {
  padding-right: 80px;
}

.u-pbxxl {
  padding-bottom: 80px;
}

.u-plxxl {
  padding-left: 80px;
}

.u-ptxxxl {
  padding-top: 100px;
}

.u-prxxxl {
  padding-right: 100px;
}

.u-pbxxxl {
  padding-bottom: 100px;
}

.u-plxxxl {
  padding-left: 100px;
}

@media only screen and (min-width: 1px) and (max-width: 768px) {
  .u-mt0--sp {
    margin-top: 0;
  }
  .u-mr0--sp {
    margin-right: 0;
  }
  .u-mb0--sp {
    margin-bottom: 0;
  }
  .u-ml0--sp {
    margin-left: 0;
  }
  .u-mtxs--sp {
    margin-top: 5px;
  }
  .u-mrxs--sp {
    margin-right: 5px;
  }
  .u-mbxs--sp {
    margin-bottom: 5px;
  }
  .u-mlxs--sp {
    margin-left: 5px;
  }
  .u-mtsm--sp {
    margin-top: 10px;
  }
  .u-mrsm--sp {
    margin-right: 10px;
  }
  .u-mbsm--sp {
    margin-bottom: 30px;
  }
  .u-mlsm--sp {
    margin-left: 10px;
  }
  .u-mtmd--sp {
    margin-top: 20px;
  }
  .u-mrmd--sp {
    margin-right: 20px;
  }
  .u-mbmd--sp {
    margin-bottom: 20px;
  }
  .u-mlmd--sp {
    margin-left: 20px;
  }
  .u-mtlg--sp {
    margin-top: 40px;
  }
  .u-mrlg--sp {
    margin-right: 40px;
  }
  .u-mblg--sp {
    margin-bottom: 40px;
  }
  .u-mllg--sp {
    margin-left: 40px;
  }
  .u-mtxl--sp {
    margin-top: 60px;
  }
  .u-mrxl--sp {
    margin-right: 60px;
  }
  .u-mbxl--sp {
    margin-bottom: 60px;
  }
  .u-mlxl--sp {
    margin-left: 60px;
  }
  .u-mtxxl--sp {
    margin-top: 80px;
  }
  .u-mrxxl--sp {
    margin-right: 80px;
  }
  .u-mbxxl--sp {
    margin-bottom: 80px;
  }
  .u-mlxxl--sp {
    margin-left: 80px;
  }
  .u-mtxxxl--sp {
    margin-top: 100px;
  }
  .u-mrxxxl--sp {
    margin-right: 100px;
  }
  .u-mbxxxl--sp {
    margin-bottom: 100px;
  }
  .u-mlxxxl--sp {
    margin-left: 100px;
  }
}
@media only screen and (min-width: 1px) and (max-width: 768px) {
  .u-pt0--sp {
    padding-top: 0;
  }
  .u-pr0--sp {
    padding-right: 0;
  }
  .u-pb0--sp {
    padding-bottom: 0;
  }
  .u-pl0--sp {
    padding-left: 0;
  }
  .u-ptxs--sp {
    padding-top: 5px;
  }
  .u-prxs--sp {
    padding-right: 5px;
  }
  .u-pbxs--sp {
    padding-bottom: 5px;
  }
  .u-plxs--sp {
    padding-left: 5px;
  }
  .u-ptsm--sp {
    padding-top: 10px;
  }
  .u-prsm--sp {
    padding-right: 10px;
  }
  .u-pbsm--sp {
    padding-bottom: 10px;
  }
  .u-plsm--sp {
    padding-left: 10px;
  }
  .u-ptmd--sp {
    padding-top: 20px;
  }
  .u-prmd--sp {
    padding-right: 20px;
  }
  .u-pbmd--sp {
    padding-bottom: 20px;
  }
  .u-plmd--sp {
    padding-left: 20px;
  }
  .u-ptlg--sp {
    padding-top: 40px;
  }
  .u-prlg--sp {
    padding-right: 40px;
  }
  .u-pblg--sp {
    padding-bottom: 40px;
  }
  .u-pllg--sp {
    padding-left: 40px;
  }
  .u-ptxl--sp {
    padding-top: 60px;
  }
  .u-prxl--sp {
    padding-right: 60px;
  }
  .u-pbxl--sp {
    padding-bottom: 60px;
  }
  .u-plxl--sp {
    padding-left: 60px;
  }
  .u-ptxxl--sp {
    padding-top: 80px;
  }
  .u-prxxl--sp {
    padding-right: 80px;
  }
  .u-pbxxl--sp {
    padding-bottom: 80px;
  }
  .u-plxxl--sp {
    padding-left: 80px;
  }
  .u-ptxxxl--sp {
    padding-top: 100px;
  }
  .u-prxxxl--sp {
    padding-right: 100px;
  }
  .u-pbxxxl--sp {
    padding-bottom: 100px;
  }
  .u-plxxxl--sp {
    padding-left: 100px;
  }
}


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

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

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

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

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

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

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

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

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

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

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

.font-size-32px {
  font-size: 32px !important;
}

.font-size-36px {
  font-size: 36px !important;
}

.font-size-40px {
  font-size: 40px !important;
}

.font-size-48px {
  font-size: 48px !important;
}

.font-size-56px {
  font-size: 56px !important;
}

.font-size-60px {
  font-size: 60px !important;
}

@media only screen and (min-width: 1px) and (max-width: 480px) {
  .font-size-10px {
    font-size: 9px !important;
  }
  .font-size-11px {
    font-size: 10px !important;
  }
  .font-size-12px {
    font-size: 11px !important;
  }
  .font-size-13px {
    font-size: 11px !important;
  }
  .font-size-14px {
    font-size: 12px !important;
  }
  .font-size-16px {
    font-size: 14px !important;
  }
  .font-size-18px {
    font-size: 16px !important;
  }
  .font-size-20px {
    font-size: 18px !important;
  }
  .font-size-22px {
    font-size: 19px !important;
  }
  .font-size-24px {
    font-size: 21px !important;
  }
  .font-size-28px {
    font-size: 25px !important;
  }
  .font-size-32px {
    font-size: 28px !important;
  }
  .font-size-36px {
    font-size: 32px !important;
  }
  .font-size-40px {
    font-size: 35px !important;
  }
  .font-size-48px {
    font-size: 42px !important;
  }
  .font-size-56px {
    font-size: 49px !important;
  }
}

@media only screen and (min-width: 1px) and (max-width: 480px) {
  .m_navigationMenu.font-size-10px, .m_navigationMenu.font-size-11px, .m_navigationMenu.font-size-12px, .m_navigationMenu.font-size-13px, .m_navigationMenu.font-size-14px, .m_navigationMenu.font-size-16px, .m_navigationMenu.font-size-18px, .m_navigationMenu.font-size-20px, .m_navigationMenu.font-size-22px, .m_navigationMenu.font-size-24px, .m_navigationMenu.font-size-28px, .m_navigationMenu.font-size-32px, .m_navigationMenu.font-size-36px, .m_navigationMenu.font-size-40px, .m_navigationMenu.font-size-48px, .m_navigationMenu.font-size-56px {
    font-size: 18px !important;
  }
}



.customFormGroup_ttl_required::after {
  background-color: #0c5980;
  border-radius: 3px;
  content: "必須";
  color: #fff;
  font-size: 80%;
  font-weight: normal;
  margin: 0 0 0 5px;
  padding: 2px 3px;
}

