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

    common css

    ※※※※※ブラウザ対応※※※※※

    safari:9以上
    chrome:63以上
    firefox:43以上
    opera:43以上
    edge:12以上
    IE:10以上


    ※※※※※ベンダープレフィックスを付けるプロパティ※※※※※

    -moz-transform
    -webkit-transform
    transform

    -moz-transition
    -webkit-transition
    transition
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;

    -moz-animation
    -webkit-animation
    animation

    display: -webkit-flex;
    display: flex;
    

==============================================================================================*/

/*==============================================================================================

	body要素

==============================================================================================*/

body {
  position: relative;
  overflow-x: hidden;
  opacity: 0;
  transition: opacity 0.5s ease;
}

/*==============================================================================================

	共通要素

==============================================================================================*/
.contents_contain {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

main {
  padding: 40px 0;
  min-height: calc(100vh - 608px);
}

.guide_tips{
  width: 100%;
  font-size: 32px;
  font-weight: bold;
  border-bottom: 2px solid #d9f6ff;
  margin-bottom: 30px;
}

/*==========================================================
  media query
==========================================================*/
@media screen and (max-width: 767px) {
  .contents_contain {
    max-width: 400px;
  }

  main {
    padding: 20px 0;
  }

  .guide_tips{
    font-size: 24px;
    margin-bottom: 20px;
  }
}

/*==============================================================================================

	header要素

==============================================================================================*/
#header_contents {
  background: url(../images/common/header-img.jpg) center center;
  background-size: cover;
  padding: 20px 0;
}

#header_contents .contents_contain {
  height: 200px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}

.header_yd-logo {
  width: 120px;
  position: absolute;
  top: 0px;
  left: 20px;
}

.guide_tittle {
  font-weight: bold;
  font-size: 40px;
  letter-spacing: 3px;
  color: #02a2d1;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}

.guide_tittle img {
  width: 30px;
  margin-right: 20px;
}

/*==========================================================
  ショートヘッダー
==========================================================*/
.scroll-head {
  background: url(../images/common/header-img.jpg) center center;
  background-size: cover;
  padding: 10px 0;
  position: fixed;
  top: -80px;
  left: 0;
  width: 100%;
  z-index: 10;
  -moz-transition: top 0.2s ease;
  -webkit-transition: top 0.2s ease;
  transition: top 0.2s ease;
}

.scroll-head.scroll-in {
  top: 0;
}

.scroll-head .contents_contain {
  height: 200px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}

.scroll-head .contents_contain {
  height: 60px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}

.scroll-head .header_yd-logo {
  width: 80px;
}

.scroll-head .guide_tittle {
  padding-top: 20px;
  font-size: 22px;
}

.scroll-head .guide_tittle img {
  width: 20px;
  margin-right: 12px;
}

/*==========================================================
  スクロール表示用
==========================================================*/

#header_contents.subordinate {
  padding: 10px 0;
}

#header_contents.subordinate .contents_contain {
  height: 60px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}

.subordinate .header_yd-logo {
  width: 80px;
}

.subordinate .guide_tittle {
  padding-top: 20px;
  font-size: 22px;
}

.subordinate .guide_tittle img {
  width: 20px;
  margin-right: 12px;
}

/*==========================================================
  media query
==========================================================*/
@media screen and (max-width: 767px) {
  #header_contents .contents_contain {
    height: 160px;
  }

  .guide_tittle {
    font-size: 32px;
  }

  .guide_tittle img {
    width: 24px;
    margin-right: 15px;
}
}
/*==============================================================================================

	keywords要素

==============================================================================================*/
#keywords_section {
  padding: 10px 0;
}

.keywords_contain {
  width: 50%;
  margin-left: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  right: 20px;
}

.keywords_contain input[type="text"] {
  background: #fff;
  width: calc(100% - 70px);
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 12px;
  border: 1px solid #d6d6d6;
  -moz-transition: border 0.2s ease;
  -webkit-transition: border 0.2s ease;
  transition: border 0.2s ease;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.keywords_contain input[type="text"]:focus {
  border: 1px solid #027b9e;
}

.keywords_contain input[type="submit"] {
  width: 60px;
  height: 30px;
  background: #02a2d1;
  color: #ffffff;
  font-size: 10px;
  border-radius: 5px;
  -moz-transition: background-color 0.2s ease;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.keywords_contain input[type="submit"]:hover {
  background: #027b9e;
}

/*==========================================================
  media query
==========================================================*/
@media screen and (max-width: 767px) {
  .scroll-head .keywords_contain {
    width: 40%;
  }

  .scroll-head .keywords_contain input[type="submit"] {
    width: 40px;
  }

  .scroll-head .keywords_contain input[type="text"] {
    width: calc(100% - 50px);
    font-size: 10px;
  }
}

/*==============================================================================================

	breadcrumb要素

==============================================================================================*/
#breadcrumb_section {
  padding: 20px 0;
}

.breadcrumb_contain {
  font-size: 10px;
  font-weight: bold;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}

.breadcrumb_contain a {
  color: #005999;
  -moz-transition: opacity 0.2s ease;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.breadcrumb_contain a:hover {
  opacity: 0.6;
}

/*==============================================================================================

	accordion 要素

==============================================================================================*/

.acc_head {
  position: relative;
}

.acc_head_icon {
  position: absolute;
  top: 50%;
  right: 10px;
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -moz-transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}

.acc_open .acc_head_icon {
  -ms-transform: translateY(-50%) rotate(90deg);
  -moz-transform: translateY(-50%) rotate(90deg);
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}

/*==============================================================================================

	side nav要素

==============================================================================================*/
.nav-comprise {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

#side-nav {
  width: 240px;
}

.side-nav_sp-head{
  display: none;
}

.side-nav_wrap {
  position: sticky;
  top: 100px;
  left: 0;
  border: 1px solid #02a2d1;
}

.side-nav_title {
  background: #02a2d1;
  padding: 10px 20px;
  color: #ffffff;
  font-size: 12px;
  border: 1px solid #02a2d1;
  position: relative;
}

.side-nav_title:nth-child(n+2) {
  border-top: 1px solid #FFFFFF;
}


.side-nav_title:before{
  content: '';
  display: block;
  width: 2px;
  height: 16px;
  background: #ffffff;
  position: absolute;
  top: 50%;
  right: 20px;
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -moz-transition: transform 0.2s ease;
  -webkit-transition: transform 0.2s ease;
  transition: transform 0.2s ease;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.side-nav_title:after{
  content: '';
  display: block;
  width: 2px;
  height: 16px;
  background: #ffffff;
  position: absolute;
  top: 50%;
  right: 20px;
  -ms-transform: translateY(-50%) rotate(90deg);
  -moz-transform: translateY(-50%) rotate(90deg);
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}

.acc_open.side-nav_title:before{
  -ms-transform: translateY(-50%) rotate(90deg);
  -moz-transform: translateY(-50%) rotate(90deg);
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}


.side-nav_inner {
  border: 1px solid #02a2d1;
  padding: 10px 20px;
}

.side-nav_inner a {
  font-size: 12px;
  padding: 10px 0;
  position: relative;
  -moz-transition: opacity 0.2s ease;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.side-nav_inner a:after {
  content: "";
  width: 0%;
  height: 1px;
  background: #02a2d1;
  position: absolute;
  bottom: 10px;
  left: 0;
  -moz-transition: width 0.2s ease;
  -webkit-transition: width 0.2s ease;
  transition: width 0.2s ease;
}
.side-nav_inner a:hover {
  opacity: 0.6;
}
.side-nav_inner a:hover:after {
  width: 100%;
}

.side-nav_acc > a {
  font-size: 12px;
  padding: 10px 20px;
  border: 1px solid #02a2d1;
}

.contents_wrap h1{
  margin-bottom: 40px;
}

.contents_wrap h2{
  margin-bottom: 20px;
}

table{
  border: 1px solid #9B9A9A;
  border-bottom: none;
}

thead{
  border-bottom: 1px solid #9A9A9A;
}

tr{
  border-bottom: 1px solid #9B9A9A;
}

.wp-block-table.is-style-stripes td, .wp-block-table.is-style-stripes th{
  border-color: #9A9A9A;
}

th,
td{
  border-color: #9A9A9A;
  padding: 10px;
}

th + th,
td + td{
  border-left: 1px solid #9A9A9A;
}

/*==========================================================
  media query
==========================================================*/
@media screen and (max-width: 767px) {
  .nav-comprise {
    display: block;
  }

  .side-nav_sp-head{
    display: block;
  }
  
  #side-nav {
    padding-top: 60px;
    width: 100%;
  }
  
  .side-nav_wrap {
    position: inherit;
    top: auto;
    left: 0;
  }
}

/*==============================================================================================

	contents 要素

==============================================================================================*/
.contents_wrap {
  width: calc(100% - 280px);
}

/*==========================================================
  media query
==========================================================*/
@media screen and (max-width: 767px) {
  .contents_wrap {
    width: 100%;
  }
}

/*==============================================================================================

	footer要素

==============================================================================================*/
#footer_contents {
  margin-top: 100px;
  background: #02a2d1;
  padding: 60px 0;
  text-align: center;
  color: #ffffff;
  letter-spacing: 2px;
}

/*==========================================================
  media query
==========================================================*/
@media screen and (max-width: 767px) {
  #footer_contents {
    padding: 40px 0;
  }
}
