/* WEB common styles */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&family=Zen+Maru+Gothic:wght@300;400;500&display=swap');

/* Miligram overrides */
body {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 400;
}

.body-containar {
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  /*font-family: 'Zen Maru Gothic', sans-serif;*/
  font-family: 'Noto Sans JP', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  color: #383838;
  letter-spacing: 0.3rem;
}

@media screen and (max-width: 640px) {
  h1 {
    font-size: 3rem;
    line-height: 1.2;
  }

  h2 {
    font-size: 2.6rem;
    line-height: 1.25;
  }

  h3 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  h4 {
    font-size: 1.8rem;
    letter-spacing: -.08rem;
    line-height: 1.35;
  }

  h5 {
    font-size: 1.4rem;
    letter-spacing: -.05rem;
    line-height: 1.5;
  }

  h6 {
    font-size: 0.6rem;
    letter-spacing: 0;
    line-height: 1.4;
  }
}

a {
  color:#0f4690;
  -webkit-transition:all 0.2s linear;
  transition:all 0.2s linear;
}

a:hover,
a:focus,
a:active  {
  color:#0a2f60;
  -webkit-transition:all 0.2s easeout;
  transition:all 0.2s ease-out;
}

th a,
.actions a {
  color: #383838;
  font-weight: 400;
  font-size: 1.2rem;
}

.actions a:hover,
.actions a:focus {
  color:#0a2f60;
}

/* Utility */
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

table{
  margin-bottom:0
}

table{
  border-spacing:0;
  width:100%
}
td,th {
  border-bottom:0.1rem solid #e1e1e1;
  padding:1.2rem 1.5rem;
  text-align:left
}

td:first-child,th:first-child{
  padding-left:0
}

td:last-child,th:last-child{
  padding-right:0
}

@media screen and (max-width: 640px){
  .table-list .table-head {
    display: none;
  }
  .table-list {
    width: 100%;
    border: 0.1rem solid #e1e1e1;
    border-radius: 10px;
    margin: 1rem auto;
  }
  table td {
    display: block;
    width: 100%;
    border-bottom:0.1rem solid #e1e1e1;
  }
  table.table-list td.td-no{
    display: none;
  }
  table.table-list td:nth-child(2){
    background: #a0d8ef;
  }
  table.table-list td:before{
    content: attr(data-label);
    font-size: .7rem;
    font-weight:bold;
    color: #999;
    display: block;
  }
  .table-list td:last-child{
    border-bottom:none;
  }
}

/*****Table*****/

.list-table, .view-table {
  padding: 2rem 0;
}

.list-table th, .list-table td {
}

.list-table th{
  padding: 1rem 0.5rem;
}

.list-table td, .view-table td{
  padding: 2rem 0.5rem;
}

@media screen and (max-width: 640px){
  .list-table {
    width: 100%;
  }
  .sp-tdline {
    border-top: 2px #ccc solid;
    padding: 1rem;
  }
  .list-table thead {
    display: none;
  }
  .list-table td.td-first{
    background: #a0d8ef;
    color:#fff;
    font-weight:bold;
    padding: 1rem 0.5rem;
  }
  .list-table td, .view-table td {
    font-size: 1.7rem;
  }
  .list-table td:before{
    content: attr(data-label);
    font-size: .9rem;
    font-weight:bold;
    color: #999;
    display: block;
  }
  .view-table th {
    display: none;
  }
  .view-table td {
    display: block;
    width: 100%;
  }
  .view-table td:before{
    content: attr(data-label);
    font-size: .9rem;
    font-weight:bold;
    color: #999;
    display: block;
  }
}

/* Color */
.point-color {
  color: #C24F6A;
}

.main-color {
  color: #a0d8ef;
}

.dark-color {
  color: #00437C;
}

body {
  color: #383838;
  background: #fafafa;
}

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

/*****header*****/
.header {
  /*position: relative;*/
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.2s ease;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.8);
  font-family: 'Zen Maru Gothic', sans-serif;
}

.top-nav-title a {
  padding-left: 2rem;
}

.top-nav-title a img {
  width: 200px;
}

.toggle {
  display: none;
}

.top-nav-menu {
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.14) 0px 3px 8px;
  padding: 1rem 2rem;
  border-radius: 30px;
  width: 850px;
  text-align: center;
}

.top-nav-links {
  list-style: none;
  padding-top: 1rem;
}

.top-nav-links li {
  display: inline-block;
  text-align: center;
}

.top-nav-links li a {
  margin: 0 1rem;
  letter-spacing: 0.2rem;
  font-size: 1.4rem;
}

.top-nav-links li a:hover,
.top-nav-links li a:focus,
.top-nav-links li a:active  {
  color:#a0d8ef;
  -webkit-transition:all 0.2s easeout;
  transition:all 0.2s ease-out;
}

.top-nav-links li a i{
  font-size: 1.4rem;
  padding-right: 0.5rem;
}

@media screen and (min-width: 640px) {
  /* Nav bar */
  .top-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    margin: 0 auto;
  }
  .top-nav-menu {
    background-color: transparent;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .top-nav {
    padding-top: 2.5rem;
  }
}

@media screen and (max-width: 640px) {
  .header {
    overflow: visible;
  }
  .top-nav {
    width: 100%;
    position: relative;
    height: 90px;
  }
  .top-nav-drawer{
    display: flex;
    flex-direction: row;
    align-items:flex-start;
    justify-content: space-between;
    position: relative;
    height: 90px;
    padding-top: 2.5rem;
  }
  
  .top-nav-menu{
    width: 100%;
    text-align:center;
    transition: 0.5s ease;
    -webkit-transform: translateX(-100%);/*画面より100%外へ押し出し非表示にさせる*/
    border-radius:0;
  }
  
  .top-nav-menu {
    background: rgba(0, 67, 124, 0.8);
  }
  
  .top-nav-menu.open {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);/*メニューを元の位置へ戻す*/
  }
  
  .top-nav-menu.close {
    width: 100%;
    text-align:center;
    -webkit-transform: translateX(-100%);/*画面より100%外へ押し出し非表示にさせる*/
  }
  
  .top-nav-links {
  }
  
  .top-nav-links li {
    display: block;
    text-align: left;
    padding: 2rem 0;
  }
  
  .top-nav-links li a {
    margin: 2rem 1rem;
    letter-spacing: 0.2rem;
    font-size: 2rem;
    color: #fff;
    font-weight: 500;
  }

  .top-nav-links li a i{
    font-size: 3rem;
    padding-right: 0.5rem;
  }
   /*トグルボタンのスタイルを指定*/
  .toggle {
    display: block;
    position: fixed;    /* bodyに対しての絶対位置指定 */
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 3;
    right:15px;
  }

  .toggle span {
    display: block;
    position: absolute;
    width: 40px;
    border-bottom: solid 3px #00437C;
    -webkit-transition: .35s ease-in-out;	/*変化の速度を指定*/
    -moz-transition: .35s ease-in-out;		/*変化の速度を指定*/
    transition: .35s ease-in-out;			/*変化の速度を指定*/

  }
   /*各ボーダー少しずつずらす*/
  .toggle span:nth-child(1) { top:5px; }
  .toggle span:nth-child(2) { top: 15px; }
  .toggle span:nth-child(3) { top: 26px; }
  .toggle.active span:nth-child(1) {
    top: 18px;
    /* 1番目のspanをマイナス45度に */
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  /* 2番目と3番目のspanを45度に */
  .toggle.active span:nth-child(2),
  .toggle.active span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

/* Main */

.container {
  max-width: 100%;
  min-height: calc(100vh - 300px);
  transition: all 0.2s ease;
  padding: 0;
}

.content {
  padding: 2rem;
  background: #fafafa;
  margin: 5rem 0 0;
}

.actions a {
  font-weight: 300;
  padding: 1rem;
  background: #00437C;
  color: #fff;
  letter-spacing: .3rem;
  text-align: center;
}

.actions a.btn-aten-color {
  background-color: #d1b82b;
}

th {
  white-space: nowrap;
  font-size: 1.4rem;
  font-weight: 400;
}

.font-weight{
  font-weight: 700;
}

.text_linethrough {
  text-decoration: line-through;
}


/* Main */
.main {
  padding: 100px 0 0 0;
}

@media screen and (max-width: 640px) {
  .main {
    padding: 0;
  }
}

/* View action */
.view.content .text {
    margin-top: 1.2rem;
}
.related {
    margin-top: 2rem;
}

/* Flash messages */
.message {
    padding: 1rem;

    background: #eff8ff;
    color: #2779bd;

    border-color: #6cb2eb;
    border-width: 1px;
    border-style: solid;
    border-radius: 4px;
    margin-bottom: 2rem;
}
.message.hidden {
    display: none;
}
.message.success {
    background: #e3fcec;
    color: #1f9d55;
    border-color: #51d88a;
}
.message.warning {
    background: #fffabc;
    color: #8d7b00;
    border-color: #d3b800;
}
.message.error {
    background: #fcebea;
    color: #cc1f1a;
    border-color: #ef5753;
}

/* Forms */
.input.radio,
.input.checkbox {
    margin-bottom: 2.0rem;
}
.input.radio input,
.input.checkbox input {
    margin: 0;
}
.input.radio label,
.input.checkbox label {
    margin: 0;
    display: flex;
    align-items: center;
}
.input.radio label > input,
.input.checkbox label > input {
    margin-right: 1.0rem;
}
.input.radio label:first-of-type {
    margin-bottom: 2.0rem;
}

.button,
button,
input[type='button'],
input[type='reset'],
input[type='submit'] {
  background-color: #00437C;
  border: 0.1rem solid #00437C;
  border-radius: .4rem;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  height: 3.8rem;
  letter-spacing: .1rem;
  line-height: 3.8rem;
  padding: 0 3.0rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.button-sm {
  border-radius: 1rem;
  height: 2.3rem;
  letter-spacing: .1rem;
  line-height: 2.3rem;
  font-weight: 400;
  padding: 0 1.0rem;
  margin: 0;
}

/* Paginator */
.paginator {
    text-align: right;
  margin: 3rem 0 5rem;
}
.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
  font-size: 1.4rem;
}
.pagination li {
    margin: 0 0.5rem;
}
.prev.disabled a,
.next.disabled a {
    cursor: not-allowed;
    color: #606c76;
}
.asc:after {
    content: " \2193";
}
.desc:after {
    content: " \2191";
}

.pagination-total {
  font-size: 1.2rem;
}

/* Error */
.error-container {
    align-items: center;
    display: flex;
    flex-direction: column;
    min-height: 60vh;
    justify-content: center;
}

/*****Original-Forms******/

.inputarea {
  padding: 1rem;
}

.input_subarea {
  display: flex;
}

.sub_input {
  padding: 0 1rem 0 0;
}

input[type='text'].half_input {
  width: 200px;
  margin-left: 2rem;
}

.label_text {
  font-size: 1.4rem;
  padding: 1rem 0;
  letter-spacing: 0.2rem;
  font-weight: 500;
}

.display_text {
  font-size: 1.8rem;
  padding: 1rem 0;
  letter-spacing: 0.2rem;
  font-weight: 500;
}

.input_info_text {
  padding: 2rem 0;
}

.form_text {
  color: #0062a5;
  font-size: 2rem;
  padding: 3rem 0;
  font-weight: 500;
  border-bottom: 2px solid #0062a5;
  margin-bottom: 2rem;
}

.form_text_s {
  color: #0062a5;
  font-size: 1.4rem;
  padding: 2rem 0;
  font-weight: 500;
  border-bottom: 2px solid #0062a5;
  margin-bottom: 2rem;
}

.form_text_info {
  color: #777777;
  font-size: 1.4rem;
  padding: 2rem 0;
  font-weight: 500;
  border-top: 1px dotted #777777;
  border-bottom: 1px dotted #777777;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.form_comp_text {
  color: #0062a5;
  font-size: 3rem;
  letter-spacing: 0.2rem;
  padding: 3rem 0;
  font-weight: 500;
  border-bottom: 2px solid #0062a5;
  margin-bottom: 2rem;
  text-align: center;
}

.form_compsub_text {
  font-size: 2rem;
  letter-spacing: 0.2rem;
  padding: 3rem 0;
  font-weight: 500;
  margin-bottom: 2rem;
  text-align: center;
}

.label_subtext {
  font-size: 1.2rem;
}

.help_text {
  font-size: 1rem;
}

.required {
}

.required-item {
  color: #cc1f1a;
}

.input.radio {
  display:flex;
  margin: 0;
  padding: 0;
}

.radio-small {
  padding: 0 1rem;
  margin: 0;
}

.radio-small label {
  font-size: 1.3rem;
  font-weight: 400;
}

.error-message {
  font-size: 1.2rem;
  color: #cc1f1a;
}

input[type='email'],input[type='number'],input[type='password'],input[type='search'],input[type='tel'],input[type='text'],input[type='url'],input[type='color'],input[type='date'],input[type='month'],input[type='week'],input[type='datetime'],input[type='datetime-local'],input:not([type]),textarea,select{
  margin-bottom: 0.5rem;
}

input[type='email'],input[type='number'],input[type='password'],input[type='search'],input[type='tel'],input[type='text'],input[type='date'],input[type='url'],textarea{
  font-size: 1.2rem;
}

textarea {
  height: auto;
}

select {
  font-size: 1.4rem;
}

.checkbox label {
  font-size: 1.3rem;
  font-weight: 400;
  padding-right: 2rem;
}

.form-btn-area {
  padding: 3rem;
  text-align: center;
  position: relative;
}

.form-back-btn {
  position: absolute;
  top:3rem;
  left: 0;
}

.form-comp-mes {
  font-size: 2rem;
  letter-spacing: 0.2rem;
  padding: 3rem 0;
  color: #0f4690;
}

.button19 a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 0 auto;
  padding: 1em 2em;
  width: 300px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  background-color: #0062a5;
  transition: 0.3s;
  letter-spacing: 0.2rem;
}

.button19 a::before {
  content: '';
  position: absolute;
  top: calc(50% - 2px);
  right: -2em;
  transform: translateY(calc(-50% - 2px)) rotate(30deg);
  width: 12px;
  height: 2px;
  background-color: #00437C;
  transition: 0.3s;
}

.button19 a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -2em;
  transform: translateY(-50%);
  width: 70px;
  height: 2px;
  background-color: #00437C;
  transition: 0.3s;
}

.button19 a:hover {
  text-decoration: none;
  background-color: rgba(0, 98, 165, 0.7);
}

.button19 a:hover::before,
.button19 a:hover::after {
  right: -2.5em;
}

.button01 a {
  display: block;
  position: relative;
  margin: 0.5rem 0;
  padding: 1rem 1rem 1rem 30px;
  width: 150px;
  color: #0062a5;
  font-size: 1.3rem;
  font-weight: 400;
  transition: 0.3s;
  z-index: 0;
}

.button01 a::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%) rotate(45deg);
  width: 5px;
  height: 5px;
  border-top: 2px solid #0062a5;
  border-right: 2px solid #0062a5;
}

.button01 a:hover {
  text-decoration: none;
  color: #a0d8ef;
}

.button01 a:hover::before {
  opacity: 1;
}

.button01 a:hover::after {
  border-top: 2px solid #a0d8ef;
  border-right: 2px solid #a0d8ef;
}



.button02 a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1rem;
  width: 150px;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
  background-color: #0062a5;
  transition: 0.3s;
  letter-spacing: 0.2rem;
  margin: 1rem 0;
}

.button02 a::before {
  content: '';
  position: absolute;
  top: calc(50% - 2px);
  right: -2em;
  transform: translateY(calc(-50% - 2px)) rotate(30deg);
  width: 12px;
  height: 2px;
  background-color: #00437C;
  transition: 0.3s;
}

.button02 a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -2em;
  transform: translateY(-50%);
  width: 70px;
  height: 2px;
  background-color: #00437C;
  transition: 0.3s;
}

.button02 a:hover {
  text-decoration: none;
  background-color: rgba(0, 98, 165, 0.7);
}

.button02 a:hover::before,
.button02 a:hover::after {
  right: -2.5em;
}

.button03 a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em;
  width: 350px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  background-color: #0062a5;
  transition: 0.3s;
  letter-spacing: 0.2rem;
  margin: 2rem 0;
}

.button03 a::before {
  content: '';
  position: absolute;
  top: calc(50% - 2px);
  right: -2em;
  transform: translateY(calc(-50% - 2px)) rotate(30deg);
  width: 12px;
  height: 2px;
  background-color: #00437C;
  transition: 0.3s;
}

.button03 a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -2em;
  transform: translateY(-50%);
  width: 70px;
  height: 2px;
  background-color: #00437C;
  transition: 0.3s;
}

.button03 a:hover {
  text-decoration: none;
  background-color: rgba(0, 98, 165, 0.7);
}

.button03 a:hover::before,
.button03 a:hover::after {
  right: -2.5em;
}


.button04 a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em;
  width: 250px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  background-color: #0062a5;
  transition: 0.3s;
  letter-spacing: 0.2rem;
  margin: 2rem auto;
}

.button04 a::before {
  content: '';
  position: absolute;
  top: calc(50% - 2px);
  right: -2em;
  transform: translateY(calc(-50% - 2px)) rotate(30deg);
  width: 12px;
  height: 2px;
  background-color: #00437C;
  transition: 0.3s;
}

.button04 a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -2em;
  transform: translateY(-50%);
  width: 70px;
  height: 2px;
  background-color: #00437C;
  transition: 0.3s;
}

.button04 a:hover {
  text-decoration: none;
  background-color: rgba(0, 98, 165, 0.7);
}

.button04 a:hover::before,
.button04 a:hover::after {
  right: -2.5em;
}

.back-btn {
  margin-top: 3rem;
  border-top: 2px solid #0062a5;
}

.back-btn-n {
  width: 800px;
  margin: 3rem auto;
  border-top: 1px dotted #ccc;
}

@media screen and (max-width: 640px) {
  .back-btn-n {
    width: 100%;
  }
}

.back-btn a, .back-btn-n a {
  display: block;
  position: relative;
  margin: 0.5rem 0;
  padding: 1rem 1rem 1rem 30px;
  width: 150px;
  color: #0062a5;
  font-size: 1.3rem;
  font-weight: 400;
  transition: 0.3s;
}

.back-btn a::after, .back-btn-n a::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%) rotate(-135deg);
  width: 5px;
  height: 5px;
  border-top: 2px solid #0062a5;
  border-right: 2px solid #0062a5;
}

.back-btn a:hover, .back-btn-n a:hover {
  text-decoration: none;
  color: #a0d8ef;
}

.back-btn a:hover::before , .back-btn-n a:hover::before {
  opacity: 1;
}

.back-btn a:hover::after, .back-btn-n a:hover::after {
  border-top: 2px solid #a0d8ef;
  border-right: 2px solid #a0d8ef;
}

/*ぱんくず*/
.breadcrumbs {
  list-style: none;
  font-size: 1.2rem;
  width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem 0;
}

.breadcrumbs li {
  display: inline-block;
  padding-right: 1rem;
}

@media screen and (max-width: 1200px) {
  .breadcrumbs {
    width: 100%;
  }
}

@media screen and (max-width: 640px) {
  .breadcrumbs {
    width: 100%;
  }
}

/******************************/
.footer {
  background: #0062a5;
  width: 100%;
  color: #fff;
}

.footer-container {
  padding: 3rem 5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.footer-contents {
  display: flex;
  justify-content: space-around;
}

.footer-logo {
}

.footer-logo img {
  width: 180px;
}

.footer ul {
  list-style: none;
  margin-top: 1.2rem;
}

.footer ul li a{
  color: #fff;
  padding: 2rem;
  letter-spacing: 0.2rem;
}

.footer-menu {
  display: flex;
  justify-content: space-around;
}

.footer-menu ul {
  width: 300px;
}

.footer-submenu {
  padding: 3rem 0;
}

.footer-submenu ul li {
  display: inline-block;
  font-size: 1.4rem;
}

.copyright {
  font-size: 1rem;
  padding: 0 2rem 1rem;
}

@media screen and (max-width: 640px) {
  .footer-container {
    padding: 3rem 2rem;
    width: 100%;
  }
  .footer-contents {
    flex-flow: column;
  }
  .footer-logo {
    padding-bottom: 2rem;
  }
  .footer-menu {
    display: block;
  }
  .footer-menu ul {
    width: 100%;
    padding: 0;
  }
  .footer-submenu ul {
    padding: 0;
    margin: 0;
  }
  .footer-submenu ul li {
    font-size: 1.3rem;
  }
}

/*****************************/