@charset "utf-8";
/*************************************************************
 *
 * Copyright (c) 2025 ysrock Co., Ltd.	<info@ysrock.co.jp>
 * Copyright (c) 2025 Yasuo Sugano	<sugano@ysrock.co.jp>
 *
 * Version	: 1.0.3
 * Update	  : 2025.11.04
 *
 *************************************************************/

[v-cloak]{
  display: none;
}
[class^="icon-"], [class*=" icon-"]{
	margin-right:.5em;
}

body{
  background-color: #fafafa;
}
body[class*="overflowY"]{
  overflow-y: hidden;
}

h2 {
  background-color: #e4eaf1;
  line-height: 1.3em;
}
@media print, screen and (min-width: 1025px){
  h1 {
    padding: 2px 0;
    font-size: 24px;
    line-height: 36px;
  }
  h2 {
    margin: 40px 0 20px;
    padding: 10px;
    border-radius: 5px;
    font-size: 20px;
  }
  h3 {
    margin: 32px 0 16px;
    padding: 0 0 4px;
    border-bottom-width: 1px;
    font-size: 18px;
    line-height: 40px;
  }
}
@media screen and (min-width: 641px) and (max-width: 1024px){
	/* px/8.5 */

  h1{
    padding: 0.2341vw 0;
    font-size: 2.8103vw;
    line-height: 4.2154vw;
  }
  h2{
    margin: 4.6838vw 0 2.3419vw;
    padding: 1.1709vw;
    border-radius: 0.5854vw;
    font-size: 2.3419vw;
  }
  h3{
    margin: 3.747vw 0 1.8735vw;
    padding: 0 0 0.4683vw;
    border-bottom-width: 0.117vw;
    font-size: 2.1077vw;
    line-height: 4.6838vw;
  }
}
@media screen and (max-width: 640px){
	/* px/4 */

  h1{
    padding: 0.5vw 0;
    font-size: 6vw;
    line-height: 9vw;
  }
  h2{
    margin: 10vw 0 5vw;
    padding: 2.5vw;
    border-radius: 1.25vw;
    font-size: 5vw;
  }
  h3{
    margin: 8vw 0 4vw;
    padding: 0 0 1vw;
    border-bottom-width: 0.25vw;
    font-size: 4.5vw;
    line-height: 10vw;
  }
}


/**
 * テキストエリア
 */
textarea{
  border-style: solid;
  border-color: #c8cfd7;
  color: #162533;
  transition: border-color .2s;
  resize: vertical;
}
textarea:focus{
  border-color: #005bac;
  outline: none;
}
textarea::placeholder{
  color: rgba( 22, 37, 51, .2);
}
@media print, screen and (min-width: 1025px){
  /* px */

  textarea{
    min-height: 77px;
    padding: 6px;
    border-width: 1px;
    border-radius: 4px;
    box-shadow:inset 0 1px 1px rgb( 0 0 0 / 8% );
    font-size: 14px;
    line-height: 21px;
  }
}
@media screen and (min-width: 641px) and (max-width: 1024px){
	/* px/8.5 */

  textarea{
    min-height: 9.0163vw;
    padding: 0.7025vw;
    border-width: 0.117vw;
    border-radius: 0.4683vw;
    box-shadow:inset 0 0.117vw 0.117vw rgb( 0 0 0 / 8% );
    font-size: 1.6393vw;
    line-height: 2.459vw;
  }
}
@media screen and (max-width: 640px){
	/* px/4 */

  textarea{
    min-height: 19.25vw;
    padding: 1.5vw;
    border-width: 0.25vw;
    border-radius: 1vw;
    box-shadow:inset 0 0.25vw 0.25vw rgb( 0 0 0 / 8% );
    font-size: 3.5vw;
    line-height: 5.25vw;
  }
}



/**
 * テキストボックス
 */
input:not([type=checkbox]):not([type=file]){
  border-style: solid;
  border-color: #c8cfd7;
  color: #162533;
  transition: border-color .2s;
}
input:focus:not([type=checkbox]):not([type=file]){
  border-color: #005bac;
  outline: none;
}
input:not([type=checkbox]):not([type=file])::placeholder{
  color: rgba( 22, 37, 51, .2);
}
@media print, screen and (min-width: 1025px){
  /* px */
  
  input:not([type=checkbox]):not([type=radio]):not([type=file]){
    height: 36px;
    padding: 0 12px;
    border-width: 1px;
    border-radius: 4px;
    box-shadow:inset 0 1px 1px rgb( 0 0 0 / 8% );
    font-size: 14px;
    line-height: 34px;
  }
}
@media screen and (min-width: 641px) and (max-width: 1024px){
	/* px/8.5 */

  input:not([type=checkbox]):not([type=radio]):not([type=file]){
    height: 4.2154vw;
    padding: 0 1.4051vw;
    border-width: 0.117vw;
    border-radius: 0.4683vw;
    box-shadow:inset 0 0.117vw 0.117vw rgb( 0 0 0 / 8% );
    font-size: 1.6393vw;
    line-height: 3.9812vw;
  }
}
@media screen and (max-width: 640px){
	/* px/4 */

  input:not([type=checkbox]):not([type=radio]):not([type=file]){
    height: 9vw;
    padding: 0 3vw;
    border-width: 0.25vw;
    border-radius: 1vw;
    box-shadow:inset 0 0.25vw 0.25vw rgb( 0 0 0 / 8% );
    font-size: 3.5vw;
    line-height: 8.5vw;
  }
}


/**
 * チェックボックス
 */
input[type=checkbox]{
  appearance: none;
  border-style: solid;
  border-color: #c8cfd7;
  vertical-align: middle;
  cursor: pointer;
  position: relative;
}
input[type=checkbox]:checked{
  background-color: #005bac;
  border-color: #005bac;
}
input[type=checkbox]:checked::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: inline-block;
  border-left-style: solid;
  border-left-color: #fff;
  border-bottom-style: solid;
  border-bottom-color: #fff;
  transform: rotate(-45deg);
}
input[type=checkbox]:disabled{
  opacity: .3;
  cursor: default;
}
@media print, screen and (min-width: 1025px){
  /* px */
  
  input[type=checkbox]{
    width: 18px;
    height: 18px;
    border-width: 2px;
    border-radius: 2px;
  }
  input[type=checkbox]:checked::before{
    bottom: 3px;
    width: 8px;
    height: 3px;
    border-left-width: 2px;
    border-bottom-width: 2px;
  }
}
@media screen and (min-width: 641px) and (max-width: 1024px){
	/* px/8.5 */

  input[type=checkbox]{
    width: 2.1077vw;
    height: 2.1077vw;
    border-width: 0.2341vw;
    border-radius: 0.2341vw;
  }
  input[type=checkbox]:checked::before{
    bottom: 0.3512vw;
    width: 0.9367vw;
    height: 0.3512vw;
    border-left-width: 0.2341vw;
    border-bottom-width: 0.2341vw;
  }
}
@media screen and (max-width: 640px){
	/* px/4 */

  input[type=checkbox]{
    width: 4.5vw;
    height: 4.5vw;
    border-width: 0.5vw;
    border-radius: 0.5vw;
  }
  input[type=checkbox]:checked::before{
    bottom: 0.75vw;
    width: 2vw;
    height: 0.75vw;
    border-left-width: 0.5vw;
    border-bottom-width: 0.5vw;
  }
}


/**
 * チェックボックス：スイッチ
 */
label.switch{
  display: inline-block;
  position: relative;
  cursor: pointer;
  user-select: none;
}
label.switch > input[type=checkbox]{
  appearance: none;
  width: 100%;
  border-style: solid;
  border-color: #c8cfd7;
  background-color: #eee;
  cursor: pointer;
  transition: background-color .2s;
}
label.switch > input[type=checkbox]::before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  border-radius: 50%;
  border-style: solid;
  border-color: #c8cfd7;
  background-color: #fff;
  transition: left .2s;
}
label.switch > input[type=checkbox]:checked{
  background-color: #005bac;
}
label.switch > span{
  display: block;
  opacity: 1;
  transition: opacity .05s;
}
label.switch > input[type=checkbox] ~ span{
  position: absolute;
  top: 0;
  display: inline-block;
  white-space: nowrap;
  transition: opacity .2s, color .2s;
}
label.switch > input[type=checkbox] ~ span.on{
  color: #fff;
}
label.switch > input[type=checkbox] ~ span.off{
  color: #555;
}
label.switch > input[type=checkbox]:not(:checked) ~ span.on{
  opacity: 0;
}
label.switch > input[type=checkbox]:checked ~ span.off{
  opacity: 0;
}
@media print, screen and (min-width: 1025px){
  /* px */

  label.switch{
    min-width: 80px;
  }
  label.switch > input[type=checkbox]{
    min-height: 30px;
    border-width: 1px;
    border-radius: 15px;
  }
  label.switch > input[type=checkbox]::before{
    width: 24px;
    height: 24px;
    border-width: 1px;
    left: 1px;
  }
  label.switch > input[type=checkbox]:checked::before{
    left: calc( 100% - 27px );
  }
  label.switch > input[type=checkbox] ~ span{
    padding: 0 10px;
    font-size: 14px;
    line-height: 30px;
  }
  label.switch > input[type=checkbox] ~ span.on{
    left: 5px;
  }
  label.switch > input[type=checkbox] ~ span.off{
    right: 5px;
  }
}
@media screen and (min-width: 641px) and (max-width: 1024px){
	/* px/8.5 */

  label.switch{
    min-width: 9.3676vw;
  }
  label.switch > input[type=checkbox]{
    min-height: 3.5128vw;
    border-width: 0.117vw;
    border-radius: 1.7564vw;
  }
  label.switch > input[type=checkbox]::before{
    width: 2.8103vw;
    height: 2.8103vw;
    border-width: 0.117vw;
    left: 0.117vw;
  }
  label.switch > input[type=checkbox]:checked::before{
    left: calc( 100% - 3.1615vw );
  }
  label.switch > input[type=checkbox] ~ span{
    padding: 0 1.1709vw;
    font-size: 1.6393vw;
    line-height: 3.5128vw;
  }
  label.switch > input[type=checkbox] ~ span.on{
    left: 0.5854vw;
  }
  label.switch > input[type=checkbox] ~ span.off{
    right: 0.5854vw;
  }
}
@media screen and (max-width: 640px){
	/* px/4 */

  label.switch{
    min-width: 20vw;
  }
  label.switch > input[type=checkbox]{
    min-height: 7.5vw;
    border-width: 0.25vw;
    border-radius: 3.75vw;
  }
  label.switch > input[type=checkbox]::before{
    width: 6vw;
    height: 6vw;
    border-width: 0.25vw;
    left: 0.25vw;
  }
  label.switch > input[type=checkbox]:checked::before{
    left: calc( 100% - 6.75vw );
  }
  label.switch > input[type=checkbox] ~ span{
    padding: 0 2.5vw;
    font-size: 3.5vw;
    line-height: 7.5vw;
  }
  label.switch > input[type=checkbox] ~ span.on{
    left: 1.25vw;
  }
  label.switch > input[type=checkbox] ~ span.off{
    right: 1.25vw;
  }
}



/**
 * セレクトボックス
 */
 select{
  appearance: none;
  border-style: solid;
  border-color: #c8cfd7;
  background-color: #fff;
  background-image: url('/commons/imgs/select_icon.svg');
  background-repeat: no-repeat;
  cursor: pointer;
  vertical-align: middle;
  transition: border .2s;
  outline: none;
 }
 select:focus{
  border-color: #005bac;
 }
 @media print, screen and (min-width: 1025px){
  select{
    height: 36px;
    padding: 0 24px 0 12px;
    border-width: 1px;
    border-radius: 4px;
    background-position: top 9px right 6px;
    background-size: 18px;
    font-size: 14px;
  }
 }
@media screen and (min-width: 641px) and (max-width: 1024px){
	/* px/8.5 */

  select{
    height: 4.2154vw;
    padding: 0 2.8103vw 0 1.4051vw;
    border-width: 0.117vw;
    border-radius: 0.4683vw;
    background-position: top 1.0538vw right 0.7025vw;
    background-size: 2.1077vw;
    font-size: 1.6393vw;
  }
}
@media screen and (max-width: 640px){
	/* px/4 */

  select{
    height: 9vw;
    padding: 0 6vw 0 3vw;
    border-width: 0.25vw;
    border-radius: 1vw;
    background-position: top 2.25vw right 1.5vw;
    background-size: 4.5vw;
    font-size: 3.5vw;
  }
}


/**
 * ボタン：塗り
 */
button.background {
  border: none;
  cursor: pointer;
  outline: none;
}
button.background:disabled{
  background-color: #e8e8e8!important;
  color: #ccc!important;
  cursor: default!important;
}
button.background:not(:disabled){
  transition: background-color .2s,
              color .2s;
  background-color: #f0f0f0;
  font-weight: bold;
  color: #555d65;
}
button.background:not(:disabled):hover{
  background-color: #f8f8f8;
}
/* 青 */
button.background:not(.disabled).blue{
  background-color: #005bac!important;
  color: #fff!important;
}
button.background:not(.disabled).blue:hover{
  background-color: rgb(22, 111, 189)!important;
  color: #ddd!important;
}
/* 赤 */
button.background:not(:disabled).red{
  background-color: #f2994a!important;
  color: #fff!important;
}
button.background:not(:disabled).red:hover{
  background-color: #f5aa68!important
}
@media print, screen and (min-width: 1025px){
  /* px */

  button.background {
    height: 40px!important;
    padding: 0 16px!important;
    border-radius: 4px!important;
    font-size: 16px!important;
  }
  button.background.small{
    height: 28px!important;
    padding: 4px 8px!important;
    border-radius: 2px!important;
    font-size: 12px!important;
  }
  button.background.big{
    height: 49px!important;
    padding: 10px 16px!important;
    border-radius: 4px!important;
    font-size: 18px!important;
  }
}
@media screen and (min-width: 641px) and (max-width: 1024px){
	/* px/8.5 */

  button.background {
    height: 4.6838vw!important;
    padding: 0 1.8735vw!important;
    border-radius: 0.4683vw!important;
    font-size: 1.8735vw!important;
  }
  button.background.small{
    height: 3.2786vw!important;
    padding: 0.4683vw 0.9367vw!important;
    border-radius: 0.2341vw!important;
    font-size: 1.4051vw!important;
  }
  button.background.big{
    height: 5.7377vw!important;
    padding: 1.1709vw 1.8735vw!important;
    border-radius: 0.4683vw!important;
    font-size: 2.1077vw!important;
  }
}
@media screen and (max-width: 640px){
	/* px/4 */

  button.background {
    height: 10vw!important;
    padding: 0 4vw!important;
    border-radius: 1vw!important;
    font-size: 4vw!important;
  }
  button.background.small{
    height: 7vw!important;
    padding: 1vw 2vw!important;
    border-radius: 0.5vw!important;
    font-size: 3vw!important;
  }
  button.background.big{
    height: 12.25vw!important;
    padding: 2.5vw 4vw!important;
    border-radius: 1vw!important;
    font-size: 4.5vw!important;
  }
}


/**
 * ボタン：線
 */
button.border {
  display: inline-block;
  box-sizing: border-box;
  border-style: solid;
  border-color: #b5b5b5;
  background-color: #fff;
  line-height: 1.5em;
  color: #222;
  cursor: pointer;
  outline: none;
  white-space: nowrap;
  vertical-align: middle;
  transition: background-color .1s linear, color .1s linear;
}
button.border[disabled]{
  pointer-events: none;
  opacity: .4;
  cursor: default;
  box-shadow: none;
}
button.border:hover:not([disabled]){
  border-color: #888;
  color: #888;
}
button.border:active:not([disabled]){
  background-color: #bdbdbd;
  color: #fff;
}
/* 青色 */
button.border.blue {
  border-color: #0084cf;
  background-color: #fff;
  color: #0074b6;
}
button.border.blue:hover:not([disabled]){
  border-color: #0084cf;
  background-color: #e7f4fc;
  color: #0074b6;
}
button.border.blue:active:not([disabled]){
  background-color: #4c7d98;
  color: #fff;
}
/* 赤色 */
button.border.red {
  border-color: #ff881f;
  background-color: #fff;
  color: #ff881f;
}
button.border.red:hover:not([disabled]){
  border-color: #ff881f;
  background-color: #fff3ea;
  color: #ff881f;
}
button.border.red:active:not([disabled]){
  background-color: #dd781f;
  color: #fff;
}

@media print, screen and (min-width: 1025px){
  /* px */

  button.border{
    padding: 8px 12px;
    border-width: 1px;
    border-radius: 4px!important;
    font-size: 14px;
  }
  button.border.small{
    padding: 4px 8px!important;
    border-radius: 2px!important;
    font-size: 12px!important;
  }
  button.border.big{
    padding: 10px 16px!important;
    border-radius: 4px!important;
    font-size: 18px!important;
  }
}
@media screen and (min-width: 641px) and (max-width: 1024px){
	/* px/8.5 */

  button.border{
    padding: 0.9367vw 1.4051vw;
    border-width: 0.117vw;
    border-radius: 0.4683vw;
    font-size: 1.6393vw;
  }
  button.border.small{
    padding: 0.4683vw 0.9367vw!important;
    border-radius: 0.2341vw!important;
    font-size: 1.4051vw!important;
  }
  button.border.big{
    padding: 1.1709vw 1.8735vw!important;
    border-radius: 0.4683vw!important;
    font-size: 2.1077vw!important;
  }
}
@media screen and (max-width: 640px){
	/* px/4 */

  button.border{
    padding: 2vw 3vw;
    border-width: 0.25vw;
    border-radius: 1vw;
    font-size: 3.5vw;
  }
  button.border.small{
    height: 7vw!important;
    padding: 1vw 2vw!important;
    border-radius: 0.5vw!important;
    font-size: 3vw!important;
  }
  button.border.big{
    height: 12.25vw!important;
    padding: 2.5vw 4vw!important;
    border-radius: 1vw!important;
    font-size: 4.5vw!important;
  }
}


/**
 * ボタン：アイコン付き
 */
button.border[class^="icon-"],
button.border[class*=" icon-"]{
  position: relative;
}
button.border[class^="icon-"]::before,
button.border[class*=" icon-"]::before{
  position: absolute;
  left: 0;
  z-index: 2;
  color: #fff;
  text-align: center;
}
button.border[class^="icon-"]:hover:not([disabled])::before,
button.border[class*=" icon-"]:hover:not([disabled])::before{
  color: #ccc;
}
button.border[class^="icon-"]::after,
button.border[class*=" icon-"]::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  height: 100%;
  background-color: #b5b5b5;
}
button.border[class^="icon-"]:hover:not([disabled])::after,
button.border[class*=" icon-"]:hover:not([disabled])::after{
  background-color: #858585;
}
/* 青色 */
button.border.blue[class^="icon-"]::after,
button.border.blue[class*=" icon-"]::after {
  background-color: #0084cf;
}
button.border.blue[class^="icon-"]:hover:not([disabled])::after,
button.border.blue[class*=" icon-"]:hover:not([disabled])::after{
  background-color: #016ead;
}
/* 赤色 */
button.border.red[class^="icon-"]::after,
button.border.red[class*=" icon-"]::after {
  background-color: #ff881f;
}
button.border.red[class^="icon-"]:hover:not([disabled])::after,
button.border.red[class*=" icon-"]:hover:not([disabled])::after{
  background-color: #ff881f;
}

@media print, screen and (min-width: 1025px){
  /* px */

  button.border[class^="icon-"],
  button.border[class*=" icon-"]{
    padding-left: 48px!important;
  }
  button.border[class^="icon-"]::before,
  button.border[class*=" icon-"]::before{
    width: 38px;
  }
  button.border[class^="icon-"]::after,
  button.border[class*=" icon-"]::after{
    width: 38px;
  }

  button.border.small[class^="icon-"],
  button.border.small[class*=" icon-"]{
    padding-left: 36px!important;
  }
  button.border.small[class^="icon-"]::before,
  button.border.small[class*=" icon-"]::before{
    width: 26px;
  }
  button.border.small[class^="icon-"]::after,
  button.border.small[class*=" icon-"]::after{
    width: 26px;
  }

  button.border.big[class^="icon-"],
  button.border.big[class*=" icon-"]{
    padding-left: 60px!important;
  }
  button.border.big[class^="icon-"]::before,
  button.border.big[class*=" icon-"]::before{
    width: 47px;
  }
  button.border.big[class^="icon-"]::after,
  button.border.big[class*=" icon-"]::after{
    width: 47px;
  }
}
@media screen and (min-width: 641px) and (max-width: 1024px){
	/* px/8.5 */

  button.border[class^="icon-"],
  button.border[class*=" icon-"]{
    padding-left: 5.6206vw!important;
  }
  button.border[class^="icon-"]::before,
  button.border[class*=" icon-"]::before{
    width: 4.3325vw;
  }
  button.border[class^="icon-"]::after,
  button.border[class*=" icon-"]::after{
    width: 4.3325vw;
  }

  button.border.small[class^="icon-"],
  button.border.small[class*=" icon-"]{
    padding-left: 4.2154vw!important;
  }
  button.border.small[class^="icon-"]::before,
  button.border.small[class*=" icon-"]::before{
    width: 3.0444vw;
  }
  button.border.small[class^="icon-"]::after,
  button.border.small[class*=" icon-"]::after{
    width: 3.0444vw;
  }

  button.border.big[class^="icon-"],
  button.border.big[class*=" icon-"]{
    padding-left: 7.0257vw;
  }
  button.border.big[class^="icon-"]::before,
  button.border.big[class*=" icon-"]::before{
    width: 5.5035vw;
  }
  button.border.big[class^="icon-"]::after,
  button.border.big[class*=" icon-"]::after{
    width: 5.5035vw;
  }
}
@media screen and (max-width: 640px){
	/* px/4 */

  button.border[class^="icon-"],
  button.border[class*=" icon-"]{
    padding-left: 12vw;
  }
  button.border[class^="icon-"]::before,
  button.border[class*=" icon-"]::before{
    width: 9.25vw;
  }
  button.border[class^="icon-"]::after,
  button.border[class*=" icon-"]::after{
    width: 9.25vw;
  }

  button.border.small[class^="icon-"],
  button.border.small[class*=" icon-"]{
    padding-left: 9vw!important;
  }
  button.border.small[class^="icon-"]::before,
  button.border.small[class*=" icon-"]::before{
    width: 6.5vw;
  }
  button.border.small[class^="icon-"]::after,
  button.border.small[class*=" icon-"]::after{
    width: 6.5vw;
  }

  button.border.big[class^="icon-"],
  button.border.big[class*=" icon-"]{
    padding-left: 15vw;
  }
  button.border.big[class^="icon-"]::before,
  button.border.big[class*=" icon-"]::before{
    width: 11.75vw;
  }
  button.border.big[class^="icon-"]::after,
  button.border.big[class*=" icon-"]::after{
    width: 11.75vw;
  }
}


/**
 * メインメニュー
 */
#main-nav{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
  border-right-style: solid;
  border-right-color: #454a54;
  background-color: #005bac;
  overflow-x: hidden;
  overflow-y: auto;
}
#main-nav > div.wrap{
  display: flex;
  flex-direction: column;
}
#main-nav > div.wrap > a.header{
  display: inline-block;
  /* background-color: #fff; */
}
#main-nav > div.wrap > ul{
  flex: 1;
  display: flex;
  flex-direction: column;
}
#main-nav > div.wrap > ul > li{
  position: relative;
}
#main-nav > div.wrap > ul > li:last-child{
  margin-top: auto;
}
#main-nav > div.wrap > ul > li > a{
  display: block;
  color: #fff;
  text-decoration: none;
}
#main-nav > div.wrap > ul > li > a:hover{
  background-color: #136fc1;
}
#main-nav > div.wrap > ul li:not(.child-nav) > span[class^="icon-"]{
  display: none;
}
#main-nav > div.wrap > ul > li.child-nav > span[class^="icon-"] {
  color: #fff!important;
}
#main-nav > div.wrap > ul li.child-nav > span[class^="icon-"]{
  position: absolute;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  margin-right: 0;
  height: 1em;
  color: #000;
}
#main-nav > div.wrap > ul li.child-nav ul{
  display: none;
}
#main-nav > div.wrap > ul li.child-nav ul > li{
  position: relative;
  white-space: nowrap;
}
#main-nav > div.wrap > ul + a.logout{
  display: block;
  color: #fff;
  text-decoration: none;
}
#main-nav > div.wrap > ul + a.logout:hover{
  background-color: #136fc1;
}
@media print {
  body {
    padding: 0!important;
  }
  #main-nav { 
    display: none!important;
  }
}
@media print, screen and (min-width: 1025px){
  body{
    padding-left: 150px;
  }
  #main-nav{
    width: 150px;
    height: 100%;
    border-right-width: 1px;
  }
  #main-nav > div.wrap{
    width: 150px;
    height: 100%;
  }
  #main-nav > div.wrap > a.header{
    padding: 10px;
  }
  #main-nav > div.wrap > a.header > img{
    width: 130px;
    height: 34.66px;
  }
  #main-nav > div.wrap > div.header{
    display: none;
  }
  #main-nav > div.wrap > ul{
    padding: 8px 0 16px 12px;
  }
  #main-nav > div.wrap > ul > li{
    padding: 4px 0;
  }
  #main-nav > div.wrap > ul > li > a{
    padding-left: 8px;
    padding-right: 8px;
    font-size: 14px;
    line-height: 40px;
  }
  #main-nav > div.wrap > ul li.child-nav > span[class^="icon-"]{
    right: 10px;
    height: 40px!important;
    font-size: 14px;
    line-height: 40px;
  }
  #main-nav > div.wrap > ul + a.logout{
    margin-left: 12px;
    margin-bottom: 8px;
    padding-left: 8px;
    padding-right: 8px;
    font-size: 14px;
    line-height: 37px;
  }

  #main-nav > div.wrap > ul > li.child-nav.hover > ul,
  #main-nav > div.wrap > ul > li li.child-nav:hover > ul {
    position: fixed;
    left: 130px;
    display: inline-block;
    border: 1px solid #c8cfd7;
    border-radius: 4px;
    background-color: #fff;
    padding: 4px 0 6px;
  }
  #main-nav > div.wrap > ul > li.child-nav.hover > ul > li > a,
  #main-nav > div.wrap > ul > li li.child-nav:hover > ul > li > a {
    display: block;
    padding-left: 16px;
    padding-right: 32px;
    font-size: 14px;
    line-height: 32px;
    color: #000;
    text-decoration: none;
  }
  #main-nav > div.wrap > ul li.child-nav > ul > li > a:hover {
    background-color: #f5f7f9;
  }
}
@media screen and (min-width: 641px) and (max-width: 1024px){
	/* px/8.5 */

  body{
    padding-left: 17.5644vw;
  }
  #main-nav{
    width: 17.5644vw;
    height: 100vh;
    border-right-width: 0.117vw;
  }
  #main-nav > div.wrap{
    width: 17.5644vw;
    height: 100%;
  }
  #main-nav > div.wrap > a.header{
    padding: 1.1709vw;
  }
  #main-nav > div.wrap > a.header > img{
    width: 15.2224vw;
    height: 4.0585vw;
  }
  #main-nav > div.wrap > div.header{
    display: none;
  }
  #main-nav > div.wrap > ul{
    padding: 0.9367vw 0 1.8735vw 1.4051vw;
  }
  #main-nav > div.wrap > ul > li{
    padding: 0.4683vw 0;
  }
  #main-nav > div.wrap > ul > li > a{
    padding-left: 0.9367vw;
    padding-right: 0.9367vw;
    font-size: 1.6393vw;
    line-height: 4.6838vw;
  }
  #main-nav > div.wrap > ul li.child-nav > span[class^="icon-"]{
    right: 1.1709vw;
    height: 4.6838vw!important;
    font-size: 1.6393vw;
    line-height: 4.6838vw;
  }
  #main-nav > div.wrap > ul + a.logout{
    margin-left: 1.4051vw;
    margin-bottom: 0.9367vw;
    padding-left: 0.9367vw;
    padding-right: 0.9367vw;
    font-size: 1.6393vw;
    line-height: 4.3325vw;
  }

  #main-nav > div.wrap > ul > li.child-nav.hover > ul,
  #main-nav > div.wrap > ul > li li.child-nav:hover > ul {
    position: fixed;
    left: 16.3934vw;
    display: inline-block;
    border: 0.117vw solid #c8cfd7;
    border-radius: 0.4683vw;
    background-color: #fff;
    padding: 0.4683vw 0 0.7025vw;
  }
  #main-nav > div.wrap > ul > li.child-nav.hover > ul > li > a,
  #main-nav > div.wrap > ul > li li.child-nav:hover > ul > li > a {
    display: block;
    padding-left: 1.8735vw;
    padding-right: 3.747vw;
    font-size: 1.6393vw;
    line-height: 3.747vw;
    color: #000;
    text-decoration: none;
  }
  #main-nav > div.wrap > ul li.child-nav.hover > ul > li > a:hover {
    background-color: #f5f7f9;
  }
}
@media screen and (max-width: 640px){
	/* px/4 */

  #main-nav{
    width: 100vw;
    border: none;
    background-color: rgba(0, 0, 0, 0);
    overflow: hidden;
  }
  #body.overflowY_mainNav > #main-nav{
    background-color: rgba(0, 0, 0, .2);
  }
  #main-nav > div.wrap{
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    max-height: 15.625vw;
    padding-bottom: 15.625vw;
    background-color: #136fc1;
    overflow-x: hidden;
    overflow-y: auto;
  }
  #main-nav > div.wrap.open{
    max-height: 100vh;
  }
  #main-nav > div.wrap > a.header{
    display: none;
  }
  #main-nav > div.wrap > div.header{
    position: fixed;
    bottom: 0;
    z-index: 1;
    width: 100vw;
    height: 15.625vw;
    min-height: 15.625vw;
    background-color: #005bac;
  }
  #main-nav > div.wrap > div.header > span{
    position: absolute;
    top: 0;
    width: 15.625vw;
    height: 15.625vw;
  }
  #main-nav > div.wrap > div.header > span.menu{
    left: 0;
  }
  #main-nav > div.wrap > div.header > span.top{
    display: none;
    right: 0;
  }
  #main-nav > div.wrap > div.header > span::before{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate( -50%, -50% );
    font-size: 7vw;
    color: #fff;
  }
  #main-nav > div.wrap > ul{
    padding: 2vw 0 0;
  }
  #main-nav > div.wrap > ul > li{
    padding: 2vw 0;
  }
  #main-nav > div.wrap > ul > li > a{
    margin-left: 2vw;
    padding: 2vw;
    font-size: 5vw;
  }
  #main-nav > div.wrap > ul li.child-nav > span[class^="icon-"]{
    right: 5vw;
    bottom: unset!important;
    margin-top: 5vw!important;
    margin-bottom: unset!important;
    font-size: 5vw;
    color: #fff!important;
    transform: rotate( 90deg );
  }
  #main-nav > div.wrap > ul + a.logout{
    padding: 4vw 2vw 4vw 5vw;
    font-size: 5vw;
    line-height: 7.5vw;
  }

  #main-nav > div.wrap > ul li.child-nav.open{
    padding: 2vw 0 0;
  }
  #main-nav > div.wrap > ul li.child-nav.open > a{
    padding-bottom: 4vw;
  }
  #main-nav > div.wrap > ul li.child-nav.open > span[class^="icon-"]{
    transform: rotate( -90deg );
  }
  #main-nav > div.wrap > ul li.child-nav.open > ul{
    display: block;
    background-color: #207dd1;
  }
  #main-nav > div.wrap > ul li.child-nav.open > ul > li{
    padding: 2vw 0;
  }
  #main-nav > div.wrap > ul li.child-nav.open > ul > li:first-of-type{
    padding-top: 4vw;
  }
  #main-nav > div.wrap > ul li.child-nav.open > ul > li:last-of-type{
    padding-bottom: 4vw;
  }
  #main-nav > div.wrap > ul li.child-nav.open > ul > li > a{
    display: block;
    margin-left: 4vw;
    padding: 2vw;
    font-size: 5vw;
    color: #fff;
    text-decoration: none;
  }
}


/**
 * メイン
 */
@media print, screen and (min-width: 1025px){
  main{
    padding: 20px 40px;
  }
}
@media screen and (min-width: 641px) and (max-width: 1024px){
	/* px/8.5 */

  main{
    padding: 2.3419vw 4.6838vw;
  }
}
@media screen and (max-width: 640px){
	/* px/4 */

  main{
    padding: 5vw 5vw 20vw 5vw;
  }
}


/**
 * フッター
 */
main > div.footer,
main > form > div.footer{
  position: fixed;
  bottom: 0;
  z-index: 9;
  border-top-style: solid;
  border-top-color: #c7cfd7;
  background-color: #fcf2e0;
  text-align: center;
}
main > div.footer.save,
main > form > div.footer.save{
  border-top-color: #c8cfd7;
  background-color: #f5f7f9;
}
main > div.footer > button,
main > form > div.footer > button{
  border-style: solid;
  border-color: #d9e0e8;
  background-color: #fff;
  color: #555d65;
  font-weight: bold;
}
@media print, screen and (min-width: 1025px){
  /* px */

  main > div.footer,
  main > form > div.footer{
    right: 0;
    width: calc( 100% - 150px );
    border-top-width: 1px;
    padding: 20px 10px;
    font-size: 14px;
  }
  main > div.footer > button,
  main > form > div.footer > button{
    height: 32px;
    margin: 0 4px;
    padding: 0 12px;
    border-width: 1px;
    border-radius: 4px;
    font-size: 12px;
    line-height: 32px;
  }
  main > div.footer > button.large,
  main > form > div.footer > button.large{
    width: 400px;
    height: 40px;
    padding: 0 16px;
    font-size: 16px;
    line-height: 40px;
  }
}
@media screen and (min-width: 641px) and (max-width: 1024px){
	/* px/8.5 */

  main > div.footer,
  main > form div.footer{
    right: 0;
    width: calc( 100% - 17.5644vw );
    border-top-width: 0.117vw;
    padding: 2.3419vw 1.1709vw;
    font-size: 1.6393vw;
  }
  main > div.footer > button,
  main > form > div.footer > button{
    height: 3.747vw;
    margin: 0 0.4683vw;
    padding: 0 1.4051vw;
    border-width: 0.117vw;
    border-radius: 0.4683vw;
    font-size: 1.4051vw;
    line-height: 3.747vw;
  }
  main > div.footer > button.large,
  main > form > div.footer > button.large{
    width: 46.8384vw;
    height: 4.6838vw;
    padding: 0 1.8735vw;
    font-size: 1.8735vw;
    line-height: 4.6838vw;
  }
}
@media screen and (max-width: 640px){
	/* px/4 */

  main > div.footer,
  main > form > div.footer{
    bottom: 15.625vw;
    right: 0;
    width: 100vw;
    border-top-width: 0.25vw;
    padding: 3.5vw 2.5vw;
    font-size: 3.5vw;
  }
  main > div.footer > button,
  main > form > div.footer > button{
    height: 8vw;
    margin: 0 1vw;
    padding: 0 3vw;
    border-width: 0.25vw;
    border-radius: 1vw;
    font-size: 3vw;
    line-height: 8vw;
  }
  main > div.footer > button.large,
  main > form > div.footer > button.large{
    width: 75vw;
    height: 10vw;
    padding: 0 4vw;
    font-size: 4vw;
    line-height: 10vw;
  }
}
