@charset "UTF-8";
/* reset
----------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

html {
  height: 100%;
}

body {
  line-height: 1;
}

/*ol, ul {
  list-style: none;
}
*/
blockquote, q {
  quotes: none;
}

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

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

h1,h2{
	text-align: center;
}

/* fonts */

.f_red2{
	color: #e75d49;
}

.f_green{
	color: #3ab196;
}

.fw_9{
	font-weight: 900;
}


.ht1{
	background-color: #c08d2c;
	color: #fff;
}

.ht2{
	color: #e75d49;
}

.ht4{
	color: #e75d49;
	padding-left: 15px;
}

.marker{
	background-color: #C9FF00;
}

.prt{
	border-bottom : 2px solid #e75d49;
	margin-bottom: 15px;
}

.adpr1{
	text-align: right;
	font-size: 65%;
}


/* カレンダー */
.calendar{
	margin: 10px 0 10px 35px;
}


.prl a{
	text-decoration: underline;
	text-decoration-color: #0000C8;
	color: #0000C8;
}


/* 目次 */
.radius1 {
 background-color: #FFFFFF;
 border: 2px solid #9D7E50;
 border-radius: 10px;
 margin-right: 10px;
 width: 100%;
 padding: 10px;
 display: inline-block;
  line-height: 2.2;
}



#mokuji{
	list-style: none;
	font-size: 90%;
	padding-left: 20px;
}

#mokuji a{
	text-decoration: underline;
	text-decoration-color: #0000C8;
	color: #0000C8;
	
}

#mokuji .li30{
	padding-left: 10px;
}




/* clearfix */
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: inline-block;
}

/* Hides from IE-Mac \*/
*html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

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

img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

html {
  font-size: 80%;
}

body {
  /*font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;*/
  background-color: #faf7e9;
  color: #000000;
  font-size: 1.6rem;
  line-height: 1.6;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

main {
  position: relative;
  display: block;
}

@media (max-width: 768px) {
  main {
    padding-top: 0;
  }
}

#is-home main {
}

@media (max-width: 768px) {
  #is-home main {
    padding-top: 0;
  }
}

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

a:not([class]) {
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}

a:not([class]):hover, a:not([class]):active, a:not([class]):focus {
  opacity: 0.85;
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}

.f80{
	font-size: 80%;
}


/*******************************
* common   
********************************/
/* コンテンツ幅 */
.inner {
  margin: 0 auto;
  width: 900px;
}

@media (max-width: 768px) {
  .inner {
    padding: 0 4%;
    width: 100%;
    max-width: 100%;
  }
}

/* flex wrapper */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

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

.flex-between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex-between-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex-between-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-between-center-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-center-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  .flex-sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .flex-sp-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .flex-sp-between {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .flex-sp-between-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .flex-sp-between-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .flex-sp-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .flex-sp-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .flex-sp-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .flex-sp-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.u-keycolor {
  color: #014ea0;
}

.u-subcolor {
  color: #83a4cd;
}

.u-bg-gray {
  background-color: #f2f2f2;
}

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

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

.u-fwb {
  font-weight: bold;
}

.u-requier {
  color: #ff0000;
}

.u-link-underline:hover, .u-link-underline:focus, .u-link-underline:active {
  text-decoration: underline;
  text-underline-offset: 0.5em;
}

.sec-top .c-sec-ttl01 {
  margin-bottom: 10px;
}

.sec-top .c-sec-ttl02 {
  margin-bottom: 10px;
}

.c-sec-ttl01 {
  margin-bottom: 1em;
  position: relative;
  font-size: 3.3rem;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.15em;
  color: #014ea0;
}

@media (max-width: 768px) {
  .c-sec-ttl01 {
    margin-bottom: 10px;
    font-size: 1.6rem;
  }
}

.c-sec-ttl02 {
  color: #014ea0;
  margin-bottom: 1em;
  position: relative;
  font-size: 3.6rem;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.15em;
}

@media (max-width: 768px) {
  .c-sec-ttl02 {
    margin-bottom: 10px;
    font-size: 1.8rem;
  }
}

.c-subttl01 {
  margin-bottom: 1em;
  font-size: 2.4rem;
}

@media (max-width: 768px) {
  .c-subttl01 {
    font-size: 1.2rem;
  }
}

.c-subttl01[data-type="type01"] {
  color: #014ea0;
  font-weight: bold;
}

.c-subttl02 {
  padding-bottom: 0.2em;
  font-size: 3.6rem;
  color: #014ea0;
}

@media (max-width: 768px) {
  .c-subttl02 {
    font-size: 1.8rem;
  }
}

.c-subttl03 {
  margin-bottom: 40px;
  font-size: 3.0rem;
}

@media (max-width: 768px) {
  .c-subttl03 {
    margin-bottom: 1em;
    font-size: 1.5rem;
  }
}

.c-txt-caution {
  font-size: 2.4rem;
}

@media (max-width: 768px) {
  .c-txt-caution {
    font-size: 1.2rem;
  }
}

.c-txt01 {
  font-size: 2.1rem;
  line-height: 1.71;
}

@media (max-width: 768px) {
  .c-txt01 {
    /*font-size: 1.0rem;*/
  }
}

.c-txt01 + .c-txt01 {
  margin-top: 2.0em;
}

.c-txt02 {
  font-size: 2.4rem;
  line-height: 1.66;
}

@media (max-width: 768px) {
  .c-txt02 {
    font-size: 1.2rem;
  }
}

.c-figure01 {
  width: 346px;
}

@media (max-width: 768px) {
  .c-figure01 {
    margin: 0 auto;
    padding-bottom: 60px;
    max-width: 245px;
    width: 100%;
  }
}

.c-figure01 figcaption {
  margin-top: .5em;
  text-align: center;
  font-size: 1.6rem;
  line-height: 2.12;
}

@media (max-width: 768px) {
  .c-figure01 figcaption {
    font-size: 1.1rem;
  }
}

.c-figure02 {
  width: 520px;
}

.c-figure02 figcaption {
  margin-top: 0.2em;
  padding-bottom: 0.7em;
  text-align: center;
  font-size: 3.0rem;
}

@media (max-width: 768px) {
  .c-figure02 {
    width: 100%;
  }
  .c-figure02 figcaption {
    font-size: 2.0rem;
  }
}

.c-form01 {
  margin-top: 50px;
  width: 100%;
  font-size: 1.8rem;
}

.c-form01 tr {
  padding: 1em 0;
}

.c-form01 tr:nth-child(odd) {
  background-color: #e1f2ff;
  padding: 8px 0;
}

.c-form01 th {
  padding: 1em 0;
  padding-left: 54px;
  text-align: left;
  width: calc(100% - 778px);
}

.c-form01 td {
  padding: 1em 0;
  padding-right: 54px;
  width: 600px;
}

.c-form01 input[type="text"],
.c-form01 select {
  width: 100%;
  max-width: 580px;
}

@media (max-width: 768px) {
  .c-form01 {
    width: 108%;
    margin: 50px -4%;
  }
  .c-form01 th,
  .c-form01 td {
    display: block;
    text-align: left;
    width: 100%;
  }
  .c-form01 th {
    padding-left: 4%;
    padding-right: 4%;
    font-size: 1.0rem;
  }
  .c-form01 td {
    padding-top: 0;
    padding-left: 4%;
    padding-right: 4%;
    font-size: 1.0rem;
  }
}

.form01-upload-td {
  position: relative;
}

.form01-caution-pc {
  position: absolute;
  right: 50px;
  display: inline-block;
}

.form01-caution-sp {
  display: none;
}

@media (max-width: 768px) {
  .form01-caution-pc {
    display: none;
  }
  .form01-caution-sp {
    display: inline-block;
  }
}

.c-btn-submit button {
  margin: 72px auto 0;
  padding: 0.5em 0;
  -webkit-appearance: none;
  border-radius: 0;
  display: block;
  width: 242px;
  font-size: 2.1rem;
  border: 1px solid;
  background-color: #39b54a;
  color: #000;
  text-align: center;
}

.c-btn-submit button:hover, .c-btn-submit button:focus, .c-btn-submit button:active {
  background-color: #014ea0;
  color: #fff;
  opacity: 1;
}

/******************************
* ぱんくず
**********************************/
.breadcrumb {
  font-size: 1.3rem;
  color: #808080;
}

@media (max-width: 768px) {
  .breadcrumb {
    display: none;
  }
}

.breadcrumb-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  width: 1136px;
  overflow: hidden;
  list-style: none;
}

.breadcrumb-list li {
  position: relative;
  padding: 0.5em 0.5em;
}

.breadcrumb-list li a:hover {
  text-decoration: underline;
}

.breadcrumb-list li:first-child {
  padding-left: 0;
}

.breadcrumb-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 8px;
  height: 8px;
  color: inherit;
  border-top: solid 1px currentColor;
  border-right: solid 1px currentColor;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  opacity: .8;
}

/*******************************
* header
********************************/
.header {
  /*position: fixed;*/
}

@media (max-width: 768px) {
  .header {
    padding-bottom: 15px;
    /*position: static;
    border-bottom: none;
    height: auto;*/
  }
}

.header .inner {
/*  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin: 0 auto;
  padding: 0;
  height: 100%;*/
}

@media (min-width: 769px) and (max-width: 1199px) {
/*  .header .inner {
    padding: 0 4%;
  }*/
}

@media (max-width: 768px) {
  .header .inner {
    display: block;
    padding: 0 4%;
    max-width: 100%;
  }
}

.header .c-logo {
  margin: 10px 0;
  width: 200px;
}

@media (max-width: 768px) {
  .header .c-logo {
    margin: 0;
    height: auto;
    width: 164px;
  }
}

.header .c-logo a {
  display: block;
}

.header .c-logo img {
  vertical-align: middle;
}

.header .contact-list-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 0.8rem;
  width: 398px;
}

@media (max-width: 768px) {
  .header .contact-list-wrap {
    margin-top: 15px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
    height: auto;
  }
}

.header .contact-list {
  padding-top: 36px;
  width: 130px;
  height: 100%;
  color: #fff;
  background-color: #014ea0;
}

@media (max-width: 768px) {
  .header .contact-list {
    padding-top: 0;
    width: calc(33.3% - 4px);
  }
}

.header .contact-list a {
  display: block;
  text-align: center;
  color: #fff;
}

.c-menu-pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  padding-left: 30px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .c-menu-pc {
    display: none;
  }
}

.c-menu-pc .menu-list {
  margin-right: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.c-menu-pc .menu-list a {
  display: block;
  padding: 0.5em 1.0em 0;
  color: #000000;
  font-size: 1.6rem;
  font-weight: bold;
}

@media (min-width: 769px) and (max-width: 1199px) {
  .c-menu-pc .menu-list a {
    font-size: 1.27vw;
    white-space: nowrap;
  }
}

.c-menu-pc .menu-list a span {
  position: relative;
}

.c-menu-pc .menu-list a:hover span::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 2px;
  background: #014ea0;
  position: absolute;
  bottom: -4px;
  left: 0;
}

/* カレントページのフォーカス　*/
#is-home .c-menu-pc .menu-list li:nth-child(1) span::before,
#is-maintenance .c-menu-pc .menu-list li:nth-child(4) span::before,
#is-contact .c-menu-pc .menu-list li:nth-child(5) span::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 2px;
  background: #014ea0;
  position: absolute;
  bottom: -4px;
  left: 0;
}

/* スマホメニュー */
.c-menu-sp {
  display: none;
}

@media (max-width: 768px) {
  .c-menu-pc {
    display: none;
  }
  .c-menu-sp {
    position: fixed;
    top: -120%;
    right: 0;
    display: block;
    background-color: #9D7E50;
    color: #fff;
    text-align: center;
    width: 100%;
    height: auto;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    -webkit-transition-property: top;
    transition-property: top;
    z-index: 100;
  }
  html.is-menuopen .c-menu-sp {
    opacity: 1;
    top: 0;
  }
  .c-menu-sp .menu-list {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    background-color: #9D7E50;
    width: 100%;
    padding: 0;
  }
  .c-menu-sp .menu-list li {
    width: 100%;
  }
  .c-menu-sp .menu-list a {
    position: relative;
    display: block;
    color: #fff;
    text-align: center;
    padding: 1em 0;
    font-size: 1rem;
  }
  .c-menu-sp .menu-list a::before {
    content: "";
    display: inline-block;
    width: 76.5%;
    height: 1px;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .nav-toggle {
    position: absolute;
    display: block;
    margin: 0;
    padding: 0;
    width: 35px;
    height: 35px;
    top: 30px;
    right: 4%;
    background-color: transparent;
    border-color: transparent;
    -webkit-appearance: none;
    border-radius: 0;
  }
}

@media (orientation: landscape) and (max-width: 768px) {
  .c-menu-sp {
    height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .c-menu-sp .menu-list {
    padding-bottom: 50px;
  }
}

@media (max-width: 768px) {
  .close-menu {
    position: relative;
    padding: 1em 0 1em 2em;
    -webkit-appearance: none;
    border-radius: 0;
    background-color: transparent;
    border-color: transparent;
    color: #fff;
    font-size: 1.8rem;
    width: 100%;
  }
  .close-menu span {
    position: relative;
    display: inline-block;
  }
  .close-menu span::before {
    content: '';
    position: absolute;
    display: inline-block;
    top: 50%;
    left: -1.5em;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 1.0em;
    height: 1.0em;
    background-image: url(../img/common/btn_sp_close.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
}

/******************************
* footer
*******************************/
.footer {
  margin: 20px 0 0 0;
  padding-top: 10px;
  background-color: #9D7E50;
  color: #fff;
  width: 100%;
 /* min-width: 1200px;*/
}

@media (max-width: 768px) {
  .footer {
    padding-top: 6%;
    min-width: 0;
  }
}

.footer .inner {
  width: 800px;
}

@media (max-width: 768px) {
  .footer .inner {
    padding: 0 4%;
  }
}

.footer-logo {
  width: 195px;
}

@media (max-width: 768px) {
  .footer-logo {
    margin-top: 0.3em;
    width: calc(100% * (318/750));
    max-width: 195px;
  }
}

.footer-center {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .footer-center {
    margin-top: 0;
  }
}

.footer-address {
  margin-top: 1em;
  width: 308px;
  font-size: 1.5rem;
  line-height: 1.73;
}

@media (max-width: 768px) {
  .footer-address {
    margin-top: 0;
    max-width: 174px;
    font-size: 1.0rem;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}

.footer-menu-wrap {
  width: calc(100% - 308px);
}

@media (max-width: 768px) {
  .footer-menu-wrap {
    display: none;
  }
}

.footer-menu {
  padding-bottom: 0.5em;
  width: calc(100% / 3);
}

.footer-menu li {
  margin-top: 1em;
  border-left: 3px solid #fff;
}

.footer-menu li a {
  padding: 0.5em;
  display: block;
  white-space: nowrap;
}

.footer .contact-list-wrap {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 768px) {
  .footer .contact-list-wrap {
    margin-top: 28px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.footer .contact-list {
  width: 272px;
}

@media (max-width: 768px) {
  .footer .contact-list {
    width: 100%;
  }
  .footer .contact-list:nth-child(n +2) {
    margin-top: 30px;
  }
}

.footer .contact-list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #fff;
}

.footer .contact-list-ttl {
  text-align: center;
  width: 92px;
  font-size: 1.3rem;
  line-height: 1.07;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .footer .contact-list-ttl {
    width: 118px;
    font-size: 1.6rem;
  }
}

.footer .contact-list .contact-list-number img {
  max-width: 124px;
}

@media (max-width: 768px) {
  .footer .contact-list .contact-list-number img {
    max-width: 158px;
  }
}

.footer .contact-list:last-child .contact-list-number img {
  max-width: 144px;
}

@media (max-width: 768px) {
  .footer .contact-list:last-child .contact-list-number img {
    max-width: 183px;
  }
}

.footer .contact-list-number {
  position: relative;
  padding: 0.25em 0.5em;
  width: calc(100% - 92px);
  font-size: 2.2rem;
  line-height: 1;
  font-weight: bold;
}

@media (max-width: 768px) {
  .footer .contact-list-number {
    padding: 0.5em 0.5em 0.5em 1.5em;
    width: calc(100% - 118px);
  }
}

.footer .contact-list-number span {
  margin-top: 0.5em;
  display: block;
  font-size: 1.0rem;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  font-weight: normal;
}

@media (max-width: 768px) {
  .footer .contact-list-number span {
    font-size: 1.1rem;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.footer .contact-list-number::before {
  content: '';
  /*position: absolute;*/
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  width: 1px;
  height: 40px;
  background: #83a4cd;
}

.c-copy {
  padding: 20px 0;
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .c-copy {
    padding: 30px 0;
    font-size: 1.0rem;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}

/**************************
* mv
***************************/
.mv-wrap {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 1200px;
  background-color: gray;
  background: url(../img/top/mv.jpg) no-repeat top center;
  background-size: cover;
  overflow: hidden;
}

@media (max-width: 768px) {
  .mv-wrap {
    background: url(../img/top/mv_sp.jpg) no-repeat top center;
    background-size: cover;
  }
}

.mv-wrap::before {
  content: '';
  display: block;
  padding-top: calc(100% * (320/1200));
  width: 100%;
  height: 0;
}

@media (max-width: 768px) {
  .mv-wrap {
    min-width: 0;
  }
}

.mv {
  position: absolute;
  left: calc((100% - 1136px)/2);
  top: 0;
  height: 100%;
  margin: 0 auto;
  width: 1136px;
}

@media (max-width: 768px) {
  .mv {
    left: 0;
    width: 100%;
  }
}

.mv-ttl {
  position: absolute;
  top: 17px;
  right: 7.8%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 3.1rem;
  letter-spacing: 0.15em;
  color: #fff;
  z-index: 10;
}

@media (min-width: 769px) and (max-width: 1199px) {
  .mv-ttl {
    top: 17px;
    right: 121px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .mv-ttl {
    top: 25%;
    left: auto;
    right: 2.6%;
    -webkit-transform: translateY(-50%) translateX(0);
            transform: translateY(-50%) translateX(0);
    font-size: 1.9rem;
    font-size: 5.06vw;
    width: 100%;
    text-align: right;
  }
}

.mv-txt {
  position: absolute;
  top: 62px;
  right: 2.5%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 1.6rem;
  line-height: 1.53;
  color: #fff;
  text-align: right;
  z-index: 10;
  white-space: nowrap;
}

@media (min-width: 769px) and (max-width: 1199px) {
  .mv-txt {
    top: 62px;
    right: 66px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .mv-txt {
    top: 50%;
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    font-size: 1.0rem;
    font-size: 2.26vw;
    width: 100%;
    text-align: center;
    white-space: normal;
  }
}

/********************************
* footer固定メニュー
********************************/
.sp-footer-menu {
  display: none;
}

@media (max-width: 768px) {
  .sp-footer-menu {
    padding: 8px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: rgba(26, 26, 26, 0.74);
    color: #fff;
    z-index: 150;
  }
  .sp-footer-menu a {
    width: 33.3%;
  }
  .sp-footer-menu a span:nth-child(1) {
    display: block;
    font-size: 1.3rem;
    text-align: center;
  }
  .sp-footer-menu a span:nth-child(2) {
    margin: 4px auto 0;
    display: block;
    width: 26px;
  }
  .sp-footer-menu a:not(:first-child) {
    border-left: 1px solid #fff;
  }
}

/********************************
* 装飾
********************************/

.notice{
	background-color: #FFFCC7;
	padding: 10px;
}

.fred{
	color: #FF0004;	
}

.ftt01{
font-weight: bold;
  color: #014ea0;
}

.ftt02{
  color: #014ea0;
}

.mrf30{
	margin-bottom: 30px;
}

.pdf30{
	padding-bottom: 30px;
}


