html,
body {
height:100%;
}
body::before {
    position:fixed;
    top:0;
    left:0;
    z-index:-1;
    width:100vw;
    height:100vh;
    background:url("../img/bg01.png") no-repeat;
    -webkit-background-size:contain;
    background-size:contain;
    content:"";
}

html {
  overflow-y: scroll;
}

body {
  box-sizing: border-box;
  min-width: 320px;
  font-size: 16px;
  color: #333;
  background-color: #fff;
}
a:hover {opacity:0.5;}
.logo_home {
  width: 200px;
  height: 80px;
  background: url('/img/logo_home.png');
  background-size: cover;
}
img.res{
max-width: 100%;
height: auto;
width /***/:auto;　
}

@media (min-width: 950px) {
 div#pagetop{
  width: 100%;	
 }
 div#pagetop a{
  position: fixed;
  bottom: 75px;
  right: 0;
 }
}
@media (max-width: 949px) {
 div#pagetop{
  display:none
 }
 div#pagetop a{
  display:none
 }
}

img {
  vertical-align: bottom;
}

.navigation {
  position: relative;
  z-index: 2;
}

@media (max-width: 949px) {
  .navigation::before {
    display: block;
    height: 86px;
    content: "";
  }
}

.navigation_bar {
  background-color: rgba(255, 255, 255, 0.7);
  border-top: 2px solid #d16989;
}
.navigation_bar::before {
  display: block;
  content: "";
  border-top: 4px solid #d67ebe;
}
@media (max-width: 949px) {
  .navigation_bar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    width: 100%;
    background-color: rgba(248, 248, 248, 1.0);
  }
}

.navigation_bar_inner {
  display: flex;
  justify-content: space-between;
  max-width: 950px;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 949px) {
  .navigation_bar_inner {
    align-items: center;
    height: 80px;
  }
}

@media (min-width: 950px) {
  .navigation_bar_inner {
    align-items: flex-end;
    padding-top: 16px;
    padding-bottom: 10px;
  }
}

.navigation_root {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 16px;
  font-size: 18px;
  font-weight: normal;
  line-height: 24px;
  color: #000000;
  text-align: center;
}

.navigation_root a {
  display: block;
  padding-left: 0.26em;
  color: inherit;
  text-decoration: none;
}

.navigation_root span {
  display: block;
}

.navigation_root span:nth-of-type(1) {
  margin-bottom: 5px;
  font-size: 12px;
  line-height: 16px;
  text-indent: -0.26em;
  letter-spacing: 0.26em;
}

.navigation_root span:nth-of-type(2) {
  font-size: 35px;
  font-weight: bold;
  line-height: 38px;
  letter-spacing: 0.26em;
}

@media (min-width: 950px) {
  .navigation_button {
    display: none;
  }
}

.navigation_button a,
.navigation_button a span {
  box-sizing: border-box;
  display: inline-block;
}

.navigation_button a {
  position: relative;
  display: block;
  width: 80px;
  height: 80px;
  background-color: #2e2e2e;
  border: 15px solid transparent;
}

.navigation_button a::after {
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  height: 11px;
  color: #fff;
  content: "";
  background-image: url(../img/drawer.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 49px 11px;
}

.navigation_button a span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #fff;
}

.navigation_button a span:nth-of-type(1) {
  top: 0;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

body.showMenu .navigation_button a span:nth-of-type(1) {
  -webkit-transform: translateY(12px) rotate(-315deg);
          transform: translateY(12px) rotate(-315deg);
}

.navigation_button a span:nth-of-type(2) {
  top: 12px;
  transition: opacity 0.3s;
}

body.showMenu .navigation_button a span:nth-of-type(2) {
  opacity: 0;
}

.navigation_button a span:nth-of-type(3) {
  top: 24px;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

body.showMenu .navigation_button a span:nth-of-type(3) {
  -webkit-transform: translateY(-12px) rotate(315deg);
          transform: translateY(-12px) rotate(315deg);
}

@media (max-width: 949px) {
  .navigation_menu_list {
    position: fixed;
    top: 86px;
    left: 0;
    z-index: 100;
    width: 100%;
    height: calc(100% - 86px);
    overflow-y: scroll;
    color: #4c4948;
    pointer-events: none;
    visibility: hidden;
    background-color: #fff;
    opacity: 0;
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  body.useTransition .navigation_menu_list {
    transition: visibility 0.5s linear, opacity 0.5s cubic-bezier(0.65, 0.05, 0.36, 1), -webkit-transform 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
    transition: visibility 0.5s linear, transform 0.5s cubic-bezier(0.65, 0.05, 0.36, 1), opacity 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
    transition: visibility 0.5s linear, transform 0.5s cubic-bezier(0.65, 0.05, 0.36, 1), opacity 0.5s cubic-bezier(0.65, 0.05, 0.36, 1), -webkit-transform 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
  }
  body:not(.useTransition) .navigation_menu_list {
    transition: none;
  }
  body.showMenu .navigation_menu_list {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .navigation_menu_list_inner {
    position: relative;
    z-index: 500;
    max-width: 380px;
    margin: 0 auto 0;
  }
  .navigation_menu_list_inner ul {
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    letter-spacing: 0.1em;
    list-style-type: none;
  }
  .navigation_menu_list_inner > ul {
    width: 100%;
  }
  .navigation_menu_list_inner > ul > li {
    padding-right: 7px;
    padding-left: 20px;
    border-bottom: 1px solid #b2b2b2;
  }
  .navigation_menu_list_inner > ul > li:first-child {
    border-top: 1px solid #b2b2b2;
  }
  .navigation_menu_list_inner > ul > li a {
    display: inline-block;
    line-height: 42px;
    color: inherit;
    text-decoration: none;
    vertical-align: top;
  }
  .navigation_menu_list_inner > ul > li div {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 13px;
    padding-bottom: 13px;
    font-size: 18px;
    line-height: 24px;
  }
  .navigation_menu_list_inner > ul > li div a + span {
    position: relative;
    display: block;
    width: 44px;
    height: 44px;
    cursor: pointer;
  }
  .navigation_menu_list_inner > ul > li div a + span::before, .navigation_menu_list_inner > ul > li div a + span::after {
    position: absolute;
    top: calc(50% - 1px);
    left: calc(50% - 8px);
    width: 16px;
    height: 2px;
    content: "";
    background-color: #000;
  }
  .navigation_menu_list_inner > ul > li div a + span::after {
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .navigation_menu_list_inner > ul > li div:not(.-open) a + span::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .navigation_menu_list_inner > ul > li div + ul {
    padding-bottom: 15px;
    padding-left: 20px;
    font-size: 16px;
    line-height: 24px;
  }
}

@media (max-width: 949px) and (max-width: 366px) {
  .navigation_menu_list_inner > ul > li div + ul {
    font-size: 4.375vw;
  }
}

@media (max-width: 949px) and (max-width: 320px) {
  .navigation_menu_list_inner > ul > li div + ul {
    font-size: 14px;
  }
}

@media (max-width: 949px) {
  .navigation_menu_list_inner > ul > li div + ul li {
    padding-top: 7px;
    padding-bottom: 7px;
  }
  .navigation_menu_list_inner > ul > li div:not(.-open) + ul {
    display: none;
  }
}

@media (min-width: 950px) {
  .navigation_menu_list {
    margin-bottom: 10px;
  }
  .navigation_menu_list .parent {
    display: flex;
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 24px;
    list-style-type: none;
  }
  .navigation_menu_list .parent > li + li {
    margin-left: 0px;
  }
  .navigation_menu_list .parent a {
    color: inherit;
    text-decoration: none;

    display: inline-block;
    padding:15px 20px;
    margin-right:1px;
  }
  .navigation_menu_list .parent a:hover {
    text-decoration: underline;
    background: #f7f7f7;
  }
  .navigation_menu_list .child {
    display: none;
  }
}

.content {
  margin-bottom: 64px;
}
.content .stit {
  font-weight:normal;
  color:#bbc591;
  text-align: center;
}
@media (max-width: 949px) {
  .content .stit {
    margin-top: 30px;
    font-size: 35px;
    line-height: 40px;
  }
}
@media (min-width: 950px) {
  .content .stit {
    margin-top: 85px;
    padding-top:30px;
    font-size: 45px;
    line-height: 72.38px;
    background-image:url(/saiyo/img/secret.png);
    background-repeat:no-repeat;
    height:80px;
    text-shadow: 1px 1px 2px silver; 
  }
}
.content .stit2 {
  font-weight:normal;
  color:#bbc591;
  text-align: center;
}
@media (max-width: 949px) {
  .content .stit2 {
    margin-top: 30px;
    font-size: 35px;
    line-height: 40px;
  }
}
@media (min-width: 950px) {
  .content .stit2 {
    margin-top: 85px;
    padding-top:30px;
    font-size: 45px;
    line-height: 72.38px;
    background-image:url(/saiyo/img/secret.png);
    background-repeat:no-repeat;
    height:80px;
    text-shadow: 1px 1px 2px silver; 
  }
}
@media (max-width: 949px) {
  .content {
    margin-right: 5px;
    margin-left: 5px;
  }
}

@media (min-width: 950px) {
  .content {
    width: 950px;
    margin-right: auto;
    margin-left: auto;
  }
}

.content-header {
  position: relative;
  width: 100vw;
  height: 500px;
}

@media (max-width: 949px) {
  .content-header {
    height: 46.3vw;
    margin-bottom: 40px;
  }
}

@media (min-width: 950px) {
  .content-header {
    margin-top: -112px;
    margin-bottom: 16px;
    margin-left: calc(50% - 50vw);
  }
}

.content-header h1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 60px;
  font-weight: normal;
  text-shadow: 1px 1px 2px black;
  color: #fff;
  letter-spacing: 0.1em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (max-width: 949px) {
  .content-header h1 {
    font-size: 35px;
  }
}

@supports ((-webkit-font-feature-settings: "palt") or (font-feature-settings: "palt")) {
  .content-header h1 {
    letter-spacing: 0.05em;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
}

.content-header h1 span {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

@media (min-width: 950px) {
  .content-header h1 span {
    padding-top: 112px;
  }
}

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

@media (min-width: 950px) {
  .content .breadcrumb {
    width: auto;
    padding-left: 24px;
    margin-top: 0;
    margin-bottom: 56px;
    font-size: 16px;
    line-height: 24px;
    color: #4c4948;
    letter-spacing: 0.16em;
    list-style-type: none;
  }
  .content .breadcrumb::after {
    display: block;
    clear: both;
    content: "";
  }
  .content .breadcrumb li {
    float: left;
  }
  .content .breadcrumb li + li::before {
    display: inline-block;
    margin-right: 0.5em;
    margin-left: 0.5em;
    content: "/";
  }
  .content .breadcrumb a {
    color: inherit;
    text-decoration: none;
  }
  .content .breadcrumb a:hover {
    text-decoration: underline;
  }
}

.content h2 {
  color:#bbc591;
  text-shadow: 1px 2px 3px #aab189;
  padding-top: 85px;
  padding-bottom: 40px;
  font-size: 55px;
  font-weight:normal;
  line-height: 72.38px;
  text-align: left;
  /*background: url(../img/bg02.png) no-repeat 0% 0%;*/
}
.content h2::after {
  display: block;
  margin-top: 14px;
  content: "";
}

.content h3 {
  color:#a5af79;
  padding-top: 20px;
  padding-bottom: 15px;
  font-size:24px;
  font-weight:normal;
  line-height: 42.38px;
  text-align: left;
  border-left: 7px solid #dcdbbb;
  padding-left: 15px;
  background: #fff url(../img/bg03.png) no-repeat 0% 0%;
}

.content h4 {
  margin-top: 32px;
  margin-bottom: 32px;
  font-size: 21px;
  font-weight:normal;
  line-height: 34px;
  text-align: left;
  border-left: 7px solid #e0e0e0;
  padding-left: 7px;
}

@media (max-width: 949px) {
  .content h2 {
    font-size: 34px;
    line-height: 40px;
    text-align:center;
  }
  .content h3 {
    font-size:20px;
    font-weight:Bold;
  }
  .content h4 {
    font-size:18px;
    font-weight:Bold;
  }
}



.content > ol,
.content > ul {
  margin-top: 48px;
  margin-bottom: 48px;
  font-size: 14px;
  line-height: 28.38px;
}

@media (max-width: 949px) {
  .content > ol,
  .content > ul {
    margin-right: 16px;
    margin-left: 16px;
  }
}

@media (min-width: 950px) {
  .content > ol,
  .content > ul {
    width: 770px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 949px) {
  .content .body {
    margin-right: 11px;
    margin-left: 11px;
  }
}

@media (min-width: 950px) {
  .content .body {
    margin-right: 90px;
    margin-left: 90px;
  }
}

.content .text {
  margin-top: 32px;
  margin-bottom: 32px;
  font-size: 18px;
  line-height: 40.38px;
  text-align: justify;
  text-justify: inter-ideograph;
}

@media (min-width: 950px) {
  .content .text p {
    margin-left: 30px;
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media (max-width: 949px) {
 .content .text {
   font-size: 16px;
  line-height: 30px;
 }
  .content .text p {
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 0;
    margin-bottom: 0;
 }
}

.content .image {
  margin-top: 32px;
  margin-bottom: 32px;
}

.content .image img {
  width: 100%;
  height: auto;
}

.content .borderTable,
.content .borderTable-02,
.content .noneBorderTable {
  margin-top: 20px;
  margin-bottom: 20px;
}

.content .borderTable h3,
.content .noneBorderTable h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-weight: bold;
  border-bottom: none;
}

.content .borderTable h3 + table,
.content .noneBorderTable h3 + table {
  margin-top: 0;
}

.content .borderTable table {
  width: calc(100% - 20px);
  margin: 32px 10px;
  font-size: 14px;
  line-height: 24.38px;
  border-spacing: 1px;
  border-collapse: separate;
}

.content .borderTable table th {
  padding: 15px;
  text-align: left;
  background-color: #FFF;
  border-bottom: solid 2px #999;
}
.content .borderTable table td {
  padding: 15px;
  background-color: #FFF;
  border-bottom: solid 2px #ccc;
}

.content .borderTable-02 table {
  width:100%;
  margin: 32px 10px;
  font-size: 14px;
  line-height: 24.38px;
  border-spacing: 10px;
  border-collapse: separate;
}

.content .borderTable-02 table th {
  padding: 20px;
  font-weight: normal;
  color: #fff;
  text-align: left;
  background-color: #b2b2b2;
}

.content .borderTable-02 table td {
  padding: 20px;
  background-color: #f1f1f1;
}

.content .noneBorderTable table {
  margin: 32px 20px;
  font-size: 16px;
  line-height: 38.38px;
  border-spacing: 0;
  border-collapse: collapse;
}

.content .noneBorderTable table th {
  text-align: left;
  white-space: nowrap;
}

@media (max-width: 949px) {
  .content .noneBorderTable table {
    font-size: 14px;
  }
  .content .noneBorderTable table th {
    width: 50%;
  }
}

@media (min-width: 950px) {
  .content .noneBorderTable table th {
    width: 230px;
  }
}

@media (min-width: 950px) {
  .content .column {
    display: flex;
    justify-content: space-between;
  }
}

@media (max-width: 949px) {
  .content .column .columnItem .body {
  }
  .content .column .columnItem {
    margin: 0 10px;
  }
}

@media (min-width: 950px) {
  .content .column .columnItem .body {
    margin-right: 5px;
    margin-left: 5px;
  }
}

.content .column .columnItem .noneBorderTable {
  margin-top: 32px;
  margin-bottom: 32px;
}

.content .column .columnItem .noneBorderTable table {
  margin: 0;
}

.content .column .columnItem .noneBorderTable table th {
  width: auto;
  padding-right: 24px;
}

@media (min-width: 950px) {
  .content .column.row2 .columnItem {
    width: calc(50% - 25px);
  }
}

@media (max-width: 949px) {
  .content .linkBlock {
    width: 295px;
    margin: 64px auto;
  }
}

@media (min-width: 950px) {
  .content .linkBlock {
    display: flex;
    justify-content: space-between;
    padding-right: 8px;
    padding-left: 8px;
    margin-top: 64px;
    margin-bottom: 64px;
  }
}

.content .linkBlock .linkBlockItem a {
  display: block;
  color: #333;
  text-decoration: none;
}

@media (min-width: 950px) {
  .content .linkBlock .linkBlockItem a:hover {
    text-decoration: underline;
  }
}

.content .linkBlock .linkBlockItem dl {
  margin-top: 0;
  margin-bottom: 0;
}

.content .linkBlock .linkBlockItem dl dt {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight:Bold;
  line-height: 21px;
  text-align: left;
}
.content .linkBlock .linkBlockItem dl a dt {
  background:url(/img/mark_img.png) no-repeat;
  background-position: right;
  margin-right:2px;
}

.content .linkBlock .linkBlockItem dl dd {
  margin-left: 0;
  font-size: 14px;
  line-height: 28.38px;
  text-align: justify;
  text-justify: inter-ideograph;
}

.content .linkBlock .linkBlockItem dl dd.image {
  margin-top: 0;
  margin-bottom: 14px;
  overflow: hidden;
  border-radius: 0px;
  display: inline-block;
}
.content .linkBlock .linkBlockItem dl a dd.image {
  box-shadow: 0px 0px 7px -1px rgba(0, 0, 0, 0.8);
}

.content .linkBlock .linkBlockItem dl dd.image img {
  width: calc(100% + 2px);
  height: auto;
  margin: -1px;
}

@media (max-width: 949px) {
  .content .linkBlock .linkBlockItem + .linkBlockItem {
    margin-top: 32px;
  }
}

@media (min-width: 950px) {
  .content .linkBlock.row3 .linkBlockItem {
    width: 295px;
    margin-right: 8px;
    margin-left: 8px;
  }
}

.content .imageLayout {
  margin-top: 32px;
  margin-bottom: 32px;
}

@media (min-width: 950px) {
  .content .imageLayout {
    width: 770px;
    margin: 32px auto;
  }
}

.content .imageLayout h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-weight: bold;
  border-bottom: none;
}

.content .imageLayout .image {
  margin-top: 8px;
  margin-bottom: 8px;
}

.content .imageLayout .row2 {
  display: flex;
  justify-content: space-between;
}

.content .imageLayout .row2 .image {
  width: calc(50% - 8px);
}

.footer {
  border-bottom: 4px solid #ffd8e1;
}

.footer::after {
  display: block;
  content: "";
  border-top: 7px solid #d67ebe;
}

.footer .banner {
  padding-left: 0;
  margin-top: 0;
  list-style-type: none;
}

@media (max-width: 949px) {
  .footer .banner {
    text-align: center;
  }
}

@media (min-width: 950px) {
  .footer .banner {
    display: flex;
    justify-content: center;
    margin-bottom: 45px;
  }
}

@media (max-width: 949px) {
  .footer .banner.type1 {
    margin-bottom: 53px;
  }
}

@media (min-width: 950px) {
  .footer .banner.type1 {
    margin-bottom: 45px;
  }
}

@media (min-width: 950px) {
  .footer .banner.type1 li {
    margin-right: 12px;
    margin-left: 12px;
  }
}

@media (max-width: 949px) {
  .footer .banner.type1 li + li {
    margin-top: 30px;
  }
}

.footer .banner.type2 {
  margin-bottom: 0;
  background-color: #ffecf3;
}

@media (max-width: 949px) {
  .footer .banner.type2 {
    padding-top: 27px;
    padding-bottom: 36px;
  }
}

@media (min-width: 950px) {
  .footer .banner.type2 {
    padding-top: 31px;
    padding-bottom: 31px;
  }
}

@media (min-width: 950px) {
  .footer .banner.type2 li {
    margin-right: 11px;
    margin-left: 11px;
  }
}

@media (max-width: 949px) {
  .footer .banner.type2 li + li {
    margin-top: 21px;
  }
}

.footer .block {
  padding-top: 48px;
  padding-bottom: 64px;
  background-color: #eae9d9;
}

@media (max-width: 949px) {
  .footer .block .inner {
    text-align: center;
  }
}

@media (min-width: 950px) {
  .footer .block .inner {
    width: 950px;
    margin-right: auto;
    margin-left: auto;
  }
}

.footer .block .corporation {
  color: #4c4948;
  letter-spacing: 0.26em;
}

@media (max-width: 949px) {
  .footer .block .corporation {
    margin-bottom: 16px;
  }
}

@media (min-width: 950px) {
  .footer .block .corporation {
    margin-bottom: 36px;
    margin-left: 22px;
  }
}

.footer .block .corporation span:nth-of-type(1) {
  margin-right: 16px;
  font-size: 12px;
  line-height: 21px;
}

.footer .block .corporation span:nth-of-type(2) {
  font-size: 35px;
  font-weight: bold;
  line-height: 38px;
}

@media (max-width: 949px) {
  .footer .block .column {
    margin-bottom: 64px;
  }
}

@media (min-width: 950px) {
  .footer .block .column {
    display: flex;
    margin-bottom: 64px;
  }
}

.footer .block .column address {
  font-size: 12px;
  font-style: normal;
  line-height: 21px;
  color: #4c4948;
  letter-spacing: 0.26em;
}

@media (max-width: 949px) {
  .footer .block .column address {
    margin-bottom: 28px;
  }
}

@media (min-width: 950px) {
  .footer .block .column address {
    box-sizing: border-box;
    width: 270px;
    padding-left: 22px;
  }
}

.footer .block .column ul {
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 46.38px;
  letter-spacing: 0.08em;
  list-style-type: none;
}

.footer .block .column ul a {
  color: #333;
  text-decoration: none;
}

@media (min-width: 950px) {
  .footer .block .column ul a:hover {
    text-decoration: underline;
  }
}

@media (min-width: 950px) {
  .footer .block .column ul + ul {
    margin-left: 44px;
  }
}

.footer .block .copyright {
  font-size: 10px;
  line-height: 16px;
  color: #333;
  text-align: center;
}


/*--スマホ非表示--*/

@media (max-width: 949px) {
  .hidden { display:none; }
}

/*--テーブル割合--*/

table.v64 th {width:60%;;color:#b96e6e;font-weight:Bold;}
table.v64 td {width:40%;}

table.v28 th {width:20%;;color:#b96e6e;font-weight:Bold;}
table.v28 td {width:80%;}

table.v226 th {width:20%;color:#b96e6e;font-weight:Bold;}
table.v226 td {width:60%;}

/*--文字--*/

.red {color:#F00;font-weight:Bold;}
.mokuhyou {color:#3399CC;font-size:1.2em;}
.stxt {font-size:0.6em;}

/*--位置--*/

.pdx {padding-left:20px;}
.vtop td,.vtop th {vertical-align:top;}

/*--ボタン--*/

a.btn-square-shadow {
  display: inline-block;
  padding: 20px 0;
  height:20px;
  width:70%;
  text-align:center;
  vertical-align:middle;
  text-decoration: none;
  background: #a5af79;/*ボタン色*/
  font-size:18px;
  color: #FFF;
  border-bottom: solid 4px #627295;
  border-radius: 5px;
}
a.btn-square-shadow:active {
  /*ボタンを押したとき*/
  -webkit-transform: translateY(4px);
  transform: translateY(4px);/*下に動く*/
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);/*影を小さく*/
  border-bottom: none;
}

.btn-square {
  display: inline-block;
  padding: 0.5em 1em;
  text-decoration: none;
  background: #668ad8;/*ボタン色*/
  color: #FFF;
  border-bottom: solid 4px #627295;
  border-radius: 3px;
}
.btn-square:active {
  /*ボタンを押したとき*/
  -webkit-transform: translateY(4px);
  transform: translateY(4px);/*下に動く*/
  border-bottom: none;/*線を消す*/
}

/*--春風会について about-navi--*/

.content .about-navi {
  margin-top: 60px;
  margin-bottom: 48px;
}

@media (min-width: 950px) {
  .content .about-navi {
    width:100%;
    display: flex;
    justify-content: space-around;
  }
}

.content .about-navi ul {
  padding-left:30px;
  margin-bottom: 0;
  list-style-type: none;
  width:100%;
}
.content .about-navi ul li {
  list-style-image:url("/img/mark_link.png");
  margin-left:5px;
}
.content .about-navi ul li a {
  box-sizing: border-box;
  display:block;
  width: 300px;
  height: 50px;
  padding-right: 10px;
  padding-left: 10px;
  font-size: 18px;
  line-height: 50px;
  color: #000;
  text-decoration: none;
  border-radius: 0px;
}
.content .about-navi li a i {
  height: 50px;
  font-size: 17px;
  line-height: 50px;
}
@media (max-width: 949px) {
  .content .about-navi ul {
    margin-top: 26px;
  }
}

@media (min-width: 950px) {
  .content .about-navi ul {
    margin-top: 0;
  }
}
.content .about-navi li:not(:first-child) {
  margin-top: 26px;
}

@media (max-width: 949px) {
  .content .about-navi li a {
    margin-right: auto;
    margin-left: auto;
  }
}

/*--サービス一覧 service-navi--*/

.content .service-navi {
  margin-top: 48px;
  margin-bottom: 48px;
}

@media (min-width: 950px) {
  .content .service-navi {
    width:100%;
    display: flex;
    justify-content: space-around;
  }
}

.content .service-navi ul {
  padding-left:30px;
  margin-bottom: 0;
  list-style-type: none;
  width:100%;
}
.content .service-navi ul li {
  list-style-image:url("/img/mark_link.png");
  margin-left:5px;
}
.content .service-navi ul li a {
  box-sizing: border-box;
  display:block;
  width: 300px;
  height: 50px;
  padding-right: 10px;
  padding-left: 10px;
  font-size: 18px;
  line-height: 50px;
  color: #000;
  text-decoration: none;
  border-radius: 0px;
}

@media (max-width: 949px) {
  .content .service-navi {
    width:90%;
  }
  .content .service-navi ul {
  }
  .content .service-navi ul li {
    width:100%;
  }
}

@media (min-width: 950px) {
  .content .service-navi ul {
    margin-top: 0;
  }
  .content .service-navi ul li {
    float:left;
  }
}


@media (max-width: 949px) {
  .content .service-navi li a {
    height: 50px;
  }
}


/*--お問合せ--*/

section table.items {width:95%;}
section table.items th {background: #f6f6f6;font-weight:bold;padding-top:20px;}
@media only screen and (min-width:769px){
 section table.items th {vertical-align:top;}
}
@media only screen and (max-width:768px){
 section table.items th {background: #b0dcfa;}
}
section table.items td {line-height:1.6em;}
section table.items th, section table.items td {padding:10px;border-bottom:1px solid #f6f6f6;}
@media only screen and (max-width:768px){
 section table.items th, section table.items td {border-bottom:0px solid #f6f6f6;}
}
section table.items th {text-align:left;width:25%;}
table.items tr:first-child th {border-top:1px solid #f6f6f6;}
@media only screen and (max-width:768px){
 section table.items th, section table.items td{width:100%;display: block;border-top: none;}
}
section table.items td li {list-style-type: none;}
section table.items td div {font-size:0.85em;padding:5px;color:#999;}


section table.mess {width:100%;}
section table.mess td {padding:10px;}
@media only screen and (max-width:700px){
 section table.mess td {width:100%;display: block;}
}
section table.mess td span {color:#F00;font-size:0.9em;}

section h4 {text-align:center;padding-top:30px;font-size:1.6em;}
section p {text-align:center;padding:30px;}

.copyright {font-size:0.6em;height:50px;vertical-align:bottom;}
.btn {margin-top:20px;}

mark.req {font-size:10px;font-weight:normal;color:#FFF;margin-right:6px;padding:0 3px;background:#0099d9;}
mark.opt {font-size:10px;font-weight:normal;color:#FFF;margin-right:6px;padding:0 3px;background:#b6b6b6;}

@media only screen and (max-width:700px){
 label.inp {display:block;}
 label.inp input{width:95%;}
}
label.rad, label.chk {width:100px;height:25px;display:block;float:left;}
@media only screen and (max-width:700px){
 label.rad, label.chk {height:40px;padding-top:5px;}
}

input.ds-input {color:#000;}
input.ds-input::-webkit-input-placeholder {color: #999;}
input.ds-input:-ms-input-placeholder {color: #999;}
input.ds-input::-moz-placeholder {color: #999;}

.ds-input {
ime-mode: disabled;
border:0;
padding:7px;
font-size:1.0em;
color:#aaa;
border:solid 1px #ccc;
}
.w95{width:95%;}

.ds-submit {
border:solid 1px #ccc;
padding:10px 70px;
font-size:1.2em;
font-weight:bold;
color:#000;
cursor:pointer;
border-radius:5px;
}
.lightgray {
color:#999;
}
.ds-rad,.ds-chk {transform:scale(1.2);}
select,select option {width:95%;height:38px;padding: 7px 0 10px 10px;}

dt.shisetsu {background-color:#dcdbbb;height:30px;padding-top:7px;padding-left:5px;}


/*--情報公開--*/
.content .disclosure {
  margin-top: 48px;
  margin-bottom: 48px;
  border-top: 1px solid #b2b2b2;
  border-bottom: 1px solid #b2b2b2;
}

@media (min-width: 950px) {
  .content .disclosure-list {
    display: flex;
    justify-content: center;
  }
}

.content .disclosure-item {
  width: 252px;
  height: 252px;
  border-right: 1px solid #b2b2b2;
}

@media (max-width: 949px) {
  .content .disclosure-item {
    margin-right: auto;
    margin-left: auto;
    border-left: 1px solid #b2b2b2;
  }
}

@media (min-width: 950px) {
  .content .disclosure-item:first-child {
    border-left: 1px solid #b2b2b2;
  }
}

@media (max-width: 949px) {
  .content .disclosure-item:not(:first-child) {
    border-top: 1px solid #b2b2b2;
  }
}

.content .disclosure-item:nth-of-type(1) {
  background-image: url(/img/disclosure1.jpg);
}

.content .disclosure-item:nth-of-type(2) {
  background-image: url(/img/disclosure2.jpg);
}

.content .disclosure-item:nth-of-type(3) {
  background-image: url(/img/disclosure3.jpg);
}
.content .disclosure-item:nth-of-type(4) {
  background-image: url(/img/disclosure4.jpg);
}

.content .disclosure-anchor {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.content .disclosure-name {
  margin-top: 0;
  margin-bottom: 26px;
  font-size: 18px;
  font-weight: bold;
  line-height: 24px;
  color: #333;
  letter-spacing: 0.1em;
  border-bottom: none;
}

.content .disclosure-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 186px;
  height: 34px;
  font-size: 16px;
  font-weight: bold;
  line-height: 18px;
  color: #fff;
  letter-spacing: 0.1em;
  background-color: rgba(0, 0, 0, 0.5);
}

.chairman {display:block;float:right;}
@media (min-width: 750px) {
.chairman img {width:250px;float:right;padding-left:50px;}
}

@media (max-width: 749px) {
.chairman img {width:150px;float:right;padding-left:20px;}
}
