@charset "UTF-8";
/* ----------------------------------------------

基本設定

------------------------------------------------*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1.7em;
  font-weight: normal;
  font-family: 'Noto Sans JP', sans-serif;
  color: #333;
}

#container {
  overflow: hidden;
  padding-left: 0;
  padding-right: 0;
  margin-left: auto;
  margin-right: auto;
}

p {
  text-align: justify;
}

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

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

h1.none {
  display: none;
}

h2 {
  font-family: 'Zen Old Mincho', serif;
}

.button::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: -8%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: right center 0;
          transform-origin: right center 0;
  width: 0%;
  height: 1px;
  background-color: #000;
  z-index: 1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.button::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: -15%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 15%;
  height: 1px;
  background-color: #000;
  z-index: 1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

footer .button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid #000;
  margin: 0;
  position: relative;
}

footer .button a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0.5em 2em;
  color: #000;
  background-color: none;
}

@media all and (max-width: 520px) {
  footer .button {
    margin: 0 0 1rem;
  }
}

/* ----------------------------------------------

PC設定

------------------------------------------------*/
@media all and (min-width: 768px) {
  /* ----------------------------------------------
基本設定
------------------------------------------------*/
  #container .pad_under, #container .pad_only, #container .sp_only {
    display: none;
  }
  #container .wrapper {
    margin-left: 7.14286%;
    margin-right: 7.14286%;
  }
}

@media all and (min-width: 768px) and (min-width: 1400px) {
  #container .wrapper {
    max-width: 1200px;
    padding-left: 0;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
  }
}

@media all and (min-width: 768px) {
  #container ol.breadcrumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: 100px 0 2rem 7.14286%;
  }
}

@media all and (min-width: 768px) and (min-width: 1400px) {
  #container ol.breadcrumb {
    max-width: 1200px;
    margin: 100px auto 2rem;
  }
}

@media all and (min-width: 768px) {
  #container ol.breadcrumb li {
    font-size: 16px;
    display: inline-block;
    margin-right: 1.5rem;
  }
  #container ol.breadcrumb li:not(:last-of-type)::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 10px;
    border-color: transparent transparent transparent #ccc;
    margin-left: 1.5rem;
  }
  #container a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #container a:hover {
    opacity: 0.8;
  }
  #container a.hovsca:hover figure {
    overflow: hidden;
  }
  #container a.hovsca:hover img {
    opacity: 0.8;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #container .hovunderline a:hover {
    text-decoration: underline;
  }
  #container .button a {
    z-index: 1;
  }
  #container .button a:before {
    content: '';
    /*動く背景色*/
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 104, 182, 0.8);
    /*背景色*/
    width: 100%;
    height: 100%;
    -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transition: -webkit-transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transition: transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transition: transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: right top;
            transform-origin: right top;
    z-index: -1;
  }
  #container .button:hover {
    border: 1.5px solid #000 !important;
  }
  #container .button:hover a {
    color: #fff !important;
    position: relative;
  }
  #container .button:hover a::before {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  #container .button:hover::before {
    right: -20%;
    width: 7.5%;
  }
  #container .button:hover::after {
    right: -20%;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    width: 30%;
  }
  /* ----------------------------------------------
ヘッダー
------------------------------------------------*/
  header {
    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;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    height: 70px;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
  }
  header .logo {
    width: 10%;
    max-width: 90px;
    margin-left: 5%;
  }
  header nav {
    height: 100%;
    width: 80%;
  }
  header nav .mainmenu {
    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;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    height: 100%;
    max-width: 1000px;
    margin-left: auto;
  }
  header nav .mainmenu > li {
    position: relative;
  }
  header nav .mainmenu > li > a {
    display: inline-block;
    text-align: center;
  }
  header nav .mainmenu > li > a::after {
    position: absolute;
    bottom: -4px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #333;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
  }
  header nav .mainmenu > li > a:hover::after {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  header nav .mainmenu > li > ul {
    position: absolute;
    top: 70px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    padding: 1rem 1rem 0;
    background-color: #0068b6;
    display: none;
  }
  header nav .mainmenu > li > ul li {
    white-space: nowrap;
    text-align: center;
    margin-bottom: 1rem;
  }
  header nav .mainmenu > li > ul li > a {
    display: inline-block;
    text-align: center;
    position: relative;
    color: #fff;
  }
  header nav .mainmenu > li > ul li > a::after {
    position: absolute;
    bottom: -4px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #fff;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
  }
  header nav .mainmenu > li > ul li > a:hover::after {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  header nav .mainmenu .pullmenu {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header nav .mainmenu .pullmenu::after {
    position: absolute;
    bottom: 20px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #333;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
  }
  header nav .mainmenu .pullmenu:hover::after {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  header nav .mainmenu .contact {
    margin-right: 0;
    height: 100%;
    padding: calc(2rem * 0.5) calc(2rem * 1);
    background-color: #0068b6;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  header nav .mainmenu .contact a {
    color: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  header nav .mainmenu .contact a::after {
    display: none;
  }
  header nav .mainmenu .contact:hover {
    background-color: #fff;
    border: 1px solid #0068b6;
  }
  header nav .mainmenu .contact:hover a {
    color: #0068b6;
  }
  /* ----------------------------------------------
footer
------------------------------------------------*/
  footer {
    width: 100%;
    margin-top: 90px;
    padding: 2rem 0 0;
    position: relative;
  }
  footer .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  footer .wrapper .left {
    width: 40%;
    margin-bottom: 2rem;
  }
  footer .wrapper .left figure {
    width: 30%;
    max-width: 220px;
  }
  footer .wrapper .left p.com_name {
    text-align: left;
    font-size: calc(16px * 1.125);
    font-weight: bold;
    margin-bottom: 1em;
  }
  footer .wrapper .left p.address {
    text-align: left;
    font-size: 14px;
    margin-bottom: 1em;
  }
  footer .wrapper .left div.contact_area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  footer .wrapper .left div.contact_area .tel {
    font-size: 14px;
    margin-right: 1em;
  }
  footer .wrapper .left div.contact_area .fax {
    font-size: 14px;
  }
  footer .wrapper .left p.mail {
    text-align: left;
    font-size: 14px;
    margin-bottom: 1em;
  }
  footer .wrapper .left div.button_area {
    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;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  footer .wrapper .right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 56%;
  }
  footer .wrapper .right ul > li {
    font-size: calc(16px * 1.125);
    margin-bottom: 1em;
  }
  footer .wrapper .right ul > li li {
    font-size: 16px;
    text-indent: 1rem;
    margin-bottom: 1em;
  }
  footer .wrapper .right ul > li li:nth-of-type(1) {
    margin-top: 1em;
  }
  footer .wrapper .right ul li a {
    position: relative;
  }
  footer .wrapper .right ul li a::after {
    position: absolute;
    bottom: -4px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #333;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
  }
  footer .wrapper .right ul li a:hover::after {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  footer .wrapper p.copy {
    text-align: center;
    width: 100%;
    padding: 2rem 0;
    position: relative;
  }
  footer .wrapper p.copy small {
    font-size: 11px;
  }
  footer .wrapper p.copy::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100vw;
    height: 2px;
    background-color: #000;
  }
  footer::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100vw;
    height: 2px;
    background-color: #000;
  }
  /* ----------------------------------------------
下層ページ
------------------------------------------------*/
  #container.lower_page #topImage {
    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;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    height: 200px;
    margin-bottom: 90px;
  }
  #container.lower_page #topImage h1 {
    font-size: calc(16px * 2.5);
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Zen Old Mincho', serif;
    padding: 1.5rem;
  }
  #container.lower_page #topImage h1 span {
    font-size: calc(16px * 1.25);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 1em;
    font-family: 'Zen Old Mincho', serif;
    font-weight: bold;
  }
  #container.lower_page #topImage h1 span::before, #container.lower_page #topImage h1 span::after {
    content: "";
    display: inline-block;
    width: 5%;
    height: 1.5px;
    background-color: #000;
  }
  #container.lower_page #topImage h1 span::before {
    margin-right: 1rem;
  }
  #container.lower_page #topImage h1 span::after {
    margin-left: 1rem;
  }
  #container.lower_page #topImage h1::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: url(/image/h2_bg.svg) center/100% 100% no-repeat;
    z-index: -1;
  }
  #container.lower_page #topImage div.image_area {
    width: 50%;
    height: 200px;
    -webkit-clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
    background-position: center right;
    background-size: cover;
    background-repeat: no-repeat;
  }
  #container.lower_page #contents h2.midashi {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: calc(16px * 2);
    display: inline-block;
    position: relative;
    padding: 0.8em 0 0.8em 1.5em;
    margin-bottom: calc(90px * 0.5);
  }
  #container.lower_page #contents h2.midashi::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 100%;
    background-color: rgba(0, 104, 182, 0.5);
  }
  #container.lower_page #contents h2.midashi > span {
    position: absolute;
    bottom: 0;
    right: 0;
    -webkit-transform: translateX(99%);
            transform: translateX(99%);
  }
  #container.lower_page #contents h2.midashi span {
    opacity: 0.5;
    font-size: calc(16px * 2.25);
    font-family: 'Roboto', sans-serif;
    font-style: italic;
    color: #acacac;
    line-height: 1em;
    white-space: nowrap;
  }
  #container.lower_page #contents h2.midashi span span.big {
    font-size: calc(16px * 3);
  }
}

/* ----------------------------------------------
フッター調整
------------------------------------------------*/
@media all and (max-width: 1200px) {
  /* ----------------------------------------------
footer
------------------------------------------------*/
  footer {
    width: 100%;
    margin-top: 90px;
    padding: 2rem 0 0;
    position: relative;
  }
  footer .wrapper {
    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;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .wrapper .left {
    width: 80%;
    margin-bottom: 2rem;
  }
  footer .wrapper .left figure {
    width: 80%;
    max-width: 200px;
    margin: 0 auto;
  }
  footer .wrapper .left p.com_name {
    text-align: center;
    font-size: calc(16px * 1.125);
    font-weight: bold;
    margin-bottom: 1em;
  }
  footer .wrapper .left p.address {
    text-align: center;
    font-size: 14px;
    margin-bottom: 1em;
  }
  footer .wrapper .left div.contact_area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  footer .wrapper .left div.contact_area .tel {
    font-size: 14px;
    margin-right: 1em;
  }
  footer .wrapper .left div.contact_area .fax {
    font-size: 14px;
  }
  footer .wrapper .left p.mail {
    text-align: center;
    font-size: 14px;
    margin-bottom: 1em;
  }
  footer .wrapper .left div.button_area {
    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;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  footer .wrapper .right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
  }
  footer .wrapper .right ul > li {
    font-size: calc(16px * 1.125);
    margin-bottom: 1em;
  }
  footer .wrapper .right ul > li li {
    font-size: 16px;
    text-indent: 1rem;
    margin-bottom: 1em;
  }
  footer .wrapper .right ul > li li:nth-of-type(1) {
    margin-top: 1em;
  }
  footer .wrapper p.copy {
    text-align: center;
    width: 100%;
    padding: 2rem 0;
    position: relative;
  }
  footer .wrapper p.copy small {
    font-size: 11px;
  }
  footer .wrapper p.copy::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100vw;
    height: 2px;
    background-color: #000;
  }
  footer::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100vw;
    height: 2px;
    background-color: #000;
  }
}

/* ----------------------------------------------
ハンバーガーメニューへの切り替え
------------------------------------------------*/
@media all and (max-width: 768px) {
  /* ----------------------------------------------
ヘッダー
------------------------------------------------*/
  header {
    width: 100%;
    height: 90px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: #fff;
  }
  header .wrapper {
    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;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    height: 100%;
  }
  header .wrapper figure {
    width: 20%;
    max-width: 248px;
    min-width: 200px;
  }
  header .wrapper nav {
    display: none;
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 90px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 90px);
    overflow: scroll;
  }
  header .wrapper nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border: 1px solid #999;
  }
  header .wrapper nav ul li {
    width: 100%;
    border-bottom: 1px solid #999;
    background: #fff;
    text-align: center;
    height: auto;
    margin: 0;
    padding: 1rem;
  }
  header .wrapper nav ul li.now::before {
    display: none;
  }
  header .wrapper nav ul li a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 1em 1em;
    color: #000;
    background-color: none;
  }
}

/* ----------------------------------------------

pad設定

------------------------------------------------*/
@media all and (min-width: 520px) and (max-width: 768px) {
  /* ----------------------------------------------
基本設定
------------------------------------------------*/
  #container .pc_over, #container .pc_under, #container .pcpad_only, #container .pc_only {
    display: none;
  }
  #container .wrapper {
    margin-left: 5%;
    margin-right: 5%;
  }
  #container ol.breadcrumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: 70px 0 1.5rem 7.14286%;
  }
  #container ol.breadcrumb li {
    font-size: 14px;
    display: inline-block;
    margin-right: 1.5rem;
  }
  #container ol.breadcrumb li:not(:last-of-type)::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 10px;
    border-color: transparent transparent transparent #ccc;
    margin-left: 1.5rem;
  }
  /* ----------------------------------------------
ヘッダー
------------------------------------------------*/
  header {
    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;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    height: 70px;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
  }
  header .logo {
    padding: 0.5rem 0;
    margin-left: 5%;
    height: 100%;
  }
  header .logo img {
    height: 100%;
    width: auto;
  }
  header nav {
    display: none;
  }
  /* ----------------------------------------------
footer
------------------------------------------------*/
  footer {
    width: 100%;
    margin-top: 90px;
    padding: 2rem 0 0;
    position: relative;
  }
  footer .wrapper {
    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;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .wrapper .left {
    width: 80%;
    margin-bottom: 2rem;
  }
  footer .wrapper .left figure {
    width: 80%;
    max-width: 200px;
    margin: 0 auto;
  }
  footer .wrapper .left p.com_name {
    text-align: center;
    font-size: calc(16px * 1.125);
    font-weight: bold;
    margin-bottom: 1em;
  }
  footer .wrapper .left p.address {
    text-align: center;
    font-size: 14px;
    margin-bottom: 1em;
  }
  footer .wrapper .left div.contact_area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  footer .wrapper .left div.contact_area .tel {
    font-size: 14px;
    margin-right: 1em;
  }
  footer .wrapper .left div.contact_area .fax {
    font-size: 14px;
  }
  footer .wrapper .left p.mail {
    text-align: center;
    font-size: 14px;
    margin-bottom: 1em;
  }
  footer .wrapper .left div.button_area {
    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;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  footer .wrapper .right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
  }
  footer .wrapper .right ul > li {
    font-size: calc(16px * 1.125);
    margin-bottom: 1em;
  }
  footer .wrapper .right ul > li li {
    font-size: 16px;
    text-indent: 1rem;
    margin-bottom: 1em;
  }
  footer .wrapper .right ul > li li:nth-of-type(1) {
    margin-top: 1em;
  }
  footer .wrapper p.copy {
    text-align: center;
    width: 100%;
    padding: 2rem 0;
    position: relative;
  }
  footer .wrapper p.copy small {
    font-size: 11px;
  }
  footer .wrapper p.copy::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100vw;
    height: 2px;
    background-color: #000;
  }
}

@media all and (min-width: 520px) and (max-width: 768px) and (max-width: 650px) {
  footer .wrapper .left div.button_area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .wrapper .left div.button_area .button:nth-of-type(1) {
    margin-bottom: 1rem;
  }
  footer .wrapper .right {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer .wrapper .right > ul {
    width: 50%;
  }
}

@media all and (min-width: 520px) and (max-width: 768px) {
  footer::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100vw;
    height: 2px;
    background-color: #000;
  }
  /* ----------------------------------------------
topImage(下層ページ)
------------------------------------------------*/
  #container.lower_page #topImage {
    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;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    height: 150px;
    margin-bottom: 70px;
    position: relative;
  }
  #container.lower_page #topImage h1 {
    font-size: calc(14.4px * 2.5);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Zen Old Mincho', serif;
    padding: 1.5rem;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    text-align: center;
  }
  #container.lower_page #topImage h1 span {
    font-size: calc(14.4px * 1.25);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 0.5em;
    font-family: 'Zen Old Mincho', serif;
    font-weight: bold;
  }
  #container.lower_page #topImage h1 span::before, #container.lower_page #topImage h1 span::after {
    content: "";
    display: inline-block;
    width: 5%;
    height: 1.5px;
    background-color: #000;
  }
  #container.lower_page #topImage h1 span::before {
    margin-right: 1rem;
  }
  #container.lower_page #topImage h1 span::after {
    margin-left: 1rem;
  }
  #container.lower_page #topImage h1::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: url(/image/h2_bg.svg) center/100% 100% no-repeat;
    z-index: -1;
  }
  #container.lower_page #topImage div.image_area {
    width: 100%;
    height: 150px;
    background-position: center right;
    background-size: 100%;
    background-repeat: no-repeat;
  }
  #container.lower_page #contents h2.midashi {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: calc(14.4px * 2);
    display: inline-block;
    position: relative;
    padding: 0.8em 0 0.8em 1.5em;
    margin-bottom: calc(70px * 0.5);
  }
  #container.lower_page #contents h2.midashi::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 100%;
    background-color: rgba(0, 104, 182, 0.5);
  }
  #container.lower_page #contents h2.midashi > span {
    position: absolute;
    bottom: 0;
    right: 0;
    -webkit-transform: translateX(99%);
            transform: translateX(99%);
  }
  #container.lower_page #contents h2.midashi span {
    opacity: 0.5;
    font-size: calc(14.4px * 2.25);
    font-family: 'Roboto', sans-serif;
    font-style: italic;
    color: #acacac;
    line-height: 1em;
    white-space: nowrap;
  }
  #container.lower_page #contents h2.midashi span span.big {
    font-size: calc(14.4px * 3);
  }
}

/* ----------------------------------------------

sp設定

------------------------------------------------*/
@media all and (max-width: 520px) {
  /* ----------------------------------------------
基本設定
------------------------------------------------*/
  .pc_only, .sp_pad_only, .pad_only, .sp_over {
    display: none !important;
  }
  .wrapper {
    margin-left: 5%;
    margin-right: 5%;
  }
  ol.breadcrumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: 70px 0 1rem 7.14286%;
  }
  ol.breadcrumb li {
    font-size: 14px;
    display: inline-block;
    margin-right: 1.5rem;
  }
  ol.breadcrumb li:not(:last-of-type)::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 10px;
    border-color: transparent transparent transparent #ccc;
    margin-left: 1.5rem;
  }
  /* ----------------------------------------------
ヘッダー
------------------------------------------------*/
  header {
    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;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    height: 70px;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
  }
  header .logo {
    padding: 0.5rem 0;
    margin-left: 5%;
    height: 100%;
  }
  header .logo img {
    height: 100%;
    width: auto;
  }
  header nav {
    display: none;
  }
  /* ----------------------------------------------
footer
------------------------------------------------*/
  footer {
    width: 100%;
    margin-top: 90px;
    padding: 2rem 0 0;
    position: relative;
  }
  footer .wrapper {
    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;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .wrapper .left {
    width: 100%;
    margin-bottom: 2rem;
  }
  footer .wrapper .left figure {
    width: 80%;
    margin: 0 auto;
  }
  footer .wrapper .left p.com_name {
    text-align: center;
    font-size: calc(16px * 1.125);
    font-weight: bold;
    margin-bottom: 1em;
  }
  footer .wrapper .left p.address {
    text-align: center;
    font-size: 14px;
    margin-bottom: 1em;
  }
  footer .wrapper .left div.contact_area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  footer .wrapper .left div.contact_area .tel {
    font-size: 14px;
    margin-right: 1em;
  }
  footer .wrapper .left div.contact_area .fax {
    font-size: 14px;
  }
  footer .wrapper .left p.mail {
    text-align: center;
    font-size: 14px;
    margin-bottom: 1em;
  }
  footer .wrapper .left div.button_area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: stretch;
        -ms-flex-pack: stretch;
            justify-content: stretch;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .wrapper .right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
  }
  footer .wrapper .right ul {
    width: 100%;
    text-align: center;
  }
  footer .wrapper .right ul > li {
    font-size: 18px;
    margin-bottom: 1em;
  }
  footer .wrapper .right ul > li li {
    font-size: 14px;
    text-indent: 0;
    margin-bottom: 0.5em;
  }
  footer .wrapper .right > ul {
    width: 50%;
  }
  footer .wrapper p.copy {
    text-align: center;
    width: 100%;
    padding: 2rem 0;
    position: relative;
  }
  footer .wrapper p.copy small {
    font-size: 11px;
  }
  footer .wrapper p.copy::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100vw;
    height: 2px;
    background-color: #000;
  }
  footer::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100vw;
    height: 2px;
    background-color: #000;
  }
  /* ----------------------------------------------
topImage(下層ページ)
------------------------------------------------*/
  #container.lower_page #topImage {
    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;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    height: 150px;
    margin-bottom: 70px;
    position: relative;
  }
  #container.lower_page #topImage h1 {
    font-size: calc(14.4px * 2.5);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Zen Old Mincho', serif;
    padding: 1.5rem;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    text-align: center;
  }
  #container.lower_page #topImage h1 span {
    font-size: calc(14.4px * 1.25);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 0.5em;
    font-family: 'Zen Old Mincho', serif;
    font-weight: bold;
  }
  #container.lower_page #topImage h1 span::before, #container.lower_page #topImage h1 span::after {
    content: "";
    display: inline-block;
    width: 5%;
    height: 1.5px;
    background-color: #000;
  }
  #container.lower_page #topImage h1 span::before {
    margin-right: 1rem;
  }
  #container.lower_page #topImage h1 span::after {
    margin-left: 1rem;
  }
  #container.lower_page #topImage h1::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: url(/image/h2_bg.svg) center/100% 100% no-repeat;
    z-index: -1;
  }
  #container.lower_page #topImage div.image_area {
    width: 100%;
    height: 150px;
    background-position: center right;
    background-size: 100%;
    background-repeat: no-repeat;
  }
  #container.lower_page #contents h2.midashi {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: calc(12.8px * 2);
    display: inline-block;
    position: relative;
    padding: 0.8em 0 0.8em 1.5em;
    margin-bottom: calc(45px * 0.5);
  }
  #container.lower_page #contents h2.midashi::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 100%;
    background-color: rgba(0, 104, 182, 0.5);
  }
  #container.lower_page #contents h2.midashi > span {
    position: absolute;
    bottom: 0;
    right: 0;
    -webkit-transform: translateX(99%);
            transform: translateX(99%);
  }
  #container.lower_page #contents h2.midashi span {
    opacity: 0.5;
    font-size: calc(12.8px * 2.25);
    font-family: 'Roboto', sans-serif;
    font-style: italic;
    color: #acacac;
    line-height: 1em;
    white-space: nowrap;
  }
  #container.lower_page #contents h2.midashi span span.big {
    font-size: calc(12.8px * 3);
  }
}

/*
==========================================================
JSのためのCSS
==========================================================

/*
==========================================================
ハンバーガーメニュー（解放時）
==========================================================
*/
@media all and (max-width: 768px) {
  header {
    /* ハンバーガーメニューアインコン */
  }
  header .ham_menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    margin-right: 5%;
  }
  header .ham_menu span, header .ham_menu span::before, header .ham_menu span::after {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #000;
    -webkit-transition-property: background-color, -webkit-transform;
    transition-property: background-color, -webkit-transform;
    transition-property: background-color, transform;
    transition-property: background-color, transform, -webkit-transform;
    -webkit-transition-duration: 0.4s;
            transition-duration: 0.4s;
  }
  header .ham_menu span {
    position: relative;
    margin-top: 7px;
    margin-bottom: 7px;
  }
  header .ham_menu span::before {
    position: absolute;
    content: "";
    top: -7px;
  }
  header .ham_menu span::after {
    position: absolute;
    content: "";
    top: 7px;
  }
  header .ham_menu span.open {
    background-color: #fff;
  }
  header .ham_menu span.open::before {
    top: 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  header .ham_menu span.open::after {
    top: 0;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  header nav {
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 70px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 90px);
    overflow: scroll;
  }
  header nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border: 1px solid #999;
  }
  header nav ul li {
    width: 100%;
    border-bottom: 1px solid #999;
    background: #fff;
    text-align: center;
    height: auto;
    margin: 0;
    padding: 0;
  }
  header nav ul li a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 1em 1em;
    color: #000;
    background-color: none;
  }
  header nav ul li.pullmenu span {
    display: none;
  }
  header nav ul li.pullmenu ul {
    border: none;
  }
  header nav ul li.pullmenu ul li:last-of-type {
    border-bottom: none;
  }
}