@charset "UTF-8";
.cf {
  *zoom: 1;
}

.cf:after {
  content: "";
  display: table;
  clear: both;
}

@-webkit-keyframes svg {
  0% {
    stroke-dashoffset: 2000;
    fill: transparent;
    /*透過*/
  }
  50% {
    fill: transparent;
    /*透過*/
  }
  100% {
    stroke-dashoffset: 0;
    stroke-opacity: 0;
    fill: auto;
  }
}

@keyframes svg {
  0% {
    stroke-dashoffset: 2000;
    fill: transparent;
    /*透過*/
  }
  50% {
    fill: transparent;
    /*透過*/
  }
  100% {
    stroke-dashoffset: 0;
    stroke-opacity: 0;
    fill: auto;
  }
}

/*----------------------------
sub共通
-----------------------------*/
.h_sec {
  text-align: center;
}

.h_sec .en {
  color: #ccc;
  font-size: 48px;
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
}

@media only screen and (max-width: 768px) {
  .h_sec .en {
    font-size: 32px;
  }
}

.h_sec .ja {
  font-size: 20px;
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  display: block;
  margin-top: 14px;
}

@media only screen and (max-width: 768px) {
  .h_sec .ja {
    font-size: 16px;
    margin-top: 10px;
  }
}

/*----------------------------
sub_mv
-----------------------------*/
#sub_mv .container {
  padding-top: 120px;
  height: 530px;
  position: relative;
}

@media only screen and (max-width: 768px) {
  #sub_mv .container {
    padding: 280px 10px 0;
    height: auto;
  }
}

#sub_mv .container .color_bg {
  position: absolute;
  width: calc(50vw + 310px);
  min-width: 950px;
  height: 400px;
  left: 311px;
  top: 130px;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: top right;
          transform-origin: top right;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@media only screen and (max-width: 768px) {
  #sub_mv .container .color_bg {
    top: 70px;
    width: 100%;
    height: 200px;
    left: 10px;
  }
}

#sub_mv .container::after, #sub_mv .container:before {
  content: "";
  position: absolute;
  width: 1269px;
  height: 400px;
  left: 321px;
  top: 120px;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: top right;
          transform-origin: top right;
  z-index: 1;
}

@media only screen and (max-width: 768px) {
  #sub_mv .container::after, #sub_mv .container:before {
    width: 100%;
    height: 200px;
    top: 60px;
    left: 20px;
  }
}

#sub_mv .container::before {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

#sub_mv .container::after {
  opacity: 1;
  -webkit-transition-property: all, opacity;
  transition-property: all, opacity;
  -webkit-transition-duration: .3s, .6s;
          transition-duration: .3s, .6s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-delay: 0s, .6s;
          transition-delay: 0s, .6s;
}

#sub_mv.show .container .color_bg, #sub_mv.show .container::after, #sub_mv.show .container::before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

#sub_mv.show .container::after {
  opacity: 0;
}

#sub_mv .page_title {
  position: absolute;
  z-index: 2;
  bottom: 66px;
}

@media only screen and (max-width: 768px) {
  #sub_mv .page_title {
    position: static;
    bottom: auto;
  }
}

#sub_mv .page_title .en {
  font-size: 72px;
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
}

@media only screen and (max-width: 768px) {
  #sub_mv .page_title .en {
    font-size: 52px;
  }
}

@media screen and (max-width: 380px) {
  #sub_mv .page_title .en {
    font-size: 13vw;
  }
}

#sub_mv .page_title .ja {
  font-size: 32px;
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  display: block;
  margin-top: 24px;
}

@media only screen and (max-width: 768px) {
  #sub_mv .page_title .ja {
    font-size: 26px;
  }
}

@media screen and (max-width: 380px) {
  #sub_mv .page_title .ja {
    font-size: 6.5vw;
  }
}

#sub_mv .container .color_bg {
  background: #f1f9fe;
}

#sub_mv .container::before {
  background: url(../images/sub/other/pic_information_header.jpg) no-repeat top center/cover;
}

#sub_mv .container::after {
  background: #b8ebff;
}

#sub_mv .page_title .en {
  color: #00427b;
}

/*----------------------------
archive
-----------------------------*/
#archive .container {
  padding: 100px 0 100px 311px;
  position: relative;
}

@media only screen and (max-width: 768px) {
  #archive .container {
    padding: 40px 10px;
  }
}

#archive .container::before {
  position: absolute;
  width: calc(50vw - 310px);
  min-width: 330px;
  content: '';
  background: #f1f9fe;
  height: 100%;
  top: 0;
  right: calc(50% + 310px);
}

@media only screen and (max-width: 768px) {
  #archive .container::before {
    display: none;
  }
}

#archive .container .inner_wrap {
  background: #fff;
  border: 1px solid #eee;
  border-width: 1px 1px 1px 0;
}

@media only screen and (max-width: 768px) {
  #archive .container .inner_wrap {
    border-width: 1px;
  }
}

#archive .container .inner_wrap .no_post_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  height: 100%;
  min-height: 200px;
}

@media only screen and (max-width: 768px) {
  #archive .container .inner_wrap .no_post_wrap {
    min-height: 100px;
  }
}

#archive .container .inner_wrap .archive_list li {
  border-bottom: 1px solid #eee;
}

#archive .container .inner_wrap .archive_list li:last-child {
  border-bottom: none;
}

#archive .container .inner_wrap .archive_list a {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
          align-items: baseline;
  line-height: 1.3;
  padding: 21px 30px;
  background: #fff;
  position: relative;
  margin: auto;
  height: 63px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@media only screen and (max-width: 768px) {
  #archive .container .inner_wrap .archive_list a {
    padding: 10px 40px 10px 10px;
    display: block;
    height: 60px;
  }
}

#archive .container .inner_wrap .archive_list a::before, #archive .container .inner_wrap .archive_list a::after {
  position: absolute;
  content: "";
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

#archive .container .inner_wrap .archive_list a::after {
  height: 1px;
  width: 36px;
  top: 0;
  bottom: 0;
  right: 18px;
  margin: auto;
  background: #fff;
}

#archive .container .inner_wrap .archive_list a::before {
  height: 12px;
  width: 1px;
  right: 22px;
  top: 3px;
  bottom: 0;
  margin: auto;
  background: #fff;
  opacity: 0;
  -webkit-transform: translate(50%, -50%) rotate(-40deg);
          transform: translate(50%, -50%) rotate(-40deg);
}

#archive .container .inner_wrap .archive_list a:hover::after {
  width: 48px;
  right: 12px;
}

#archive .container .inner_wrap .archive_list a:hover::before {
  opacity: 1;
  right: 16px;
}

@media only screen and (max-width: 768px) {
  #archive .container .inner_wrap .archive_list a::after {
    width: 18px;
  }
  #archive .container .inner_wrap .archive_list a::before {
    height: 7px;
    top: 1px;
  }
  #archive .container .inner_wrap .archive_list a:hover::after {
    width: 24px;
  }
  #archive .container .inner_wrap .archive_list a:hover::before {
    right: 16px;
  }
}

#archive .container .inner_wrap .archive_list a time {
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
  font-size: 14px;
  color: #00a9eb;
  margin-right: 20px;
}

@media only screen and (max-width: 768px) {
  #archive .container .inner_wrap .archive_list a time {
    margin: 0;
  }
}

#archive .container .inner_wrap .archive_list a .info_title {
  font-weight: 400;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  padding-right: 30px;
  display: block;
  text-overflow: ellipsis;
}

@media only screen and (max-width: 768px) {
  #archive .container .inner_wrap .archive_list a .info_title {
    padding: 0;
    font-size: 16px;
  }
}

#archive .container .inner_wrap .archive_list a::after, #archive .container .inner_wrap .archive_list a::before {
  background: #fff;
}

#archive .container .inner_wrap .archive_list a:hover {
  background: #eee;
}

#archive .container .inner_wrap .archive_list a:hover::after, #archive .container .inner_wrap .archive_list a:hover::before {
  background: #00427b;
}

#archive .container .wp-pagenavi {
  margin-top: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
}

@media only screen and (max-width: 768px) {
  #archive .container .wp-pagenavi {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
  }
}

#archive .container .wp-pagenavi span,
#archive .container .wp-pagenavi a {
  display: block;
  padding: 6px 10px;
  font-size: 16px;
  width: 30px;
  height: 30px;
  text-align: center;
  border: 1px solid #eee;
  margin: 0 3px;
}

#archive .container .wp-pagenavi span:last-child,
#archive .container .wp-pagenavi a:last-child {
  margin-right: 0;
}

#archive .container .wp-pagenavi span:first-child,
#archive .container .wp-pagenavi a:first-child {
  margin-left: 0;
}

#archive .container .wp-pagenavi .current {
  color: #00427b;
  background: #b8ebff;
}

#archive .container .wp-pagenavi .page {
  background: #fff;
}

#archive .container .wp-pagenavi .page:hover {
  background: #00a9eb;
  color: #fff;
}

#archive .container .wp-pagenavi .nextpostslink,
#archive .container .wp-pagenavi .previouspostslink {
  position: relative;
  background: #00427b;
  color: #fff;
  overflow: hidden;
}

#archive .container .wp-pagenavi .nextpostslink::after, #archive .container .wp-pagenavi .nextpostslink::before,
#archive .container .wp-pagenavi .previouspostslink::after,
#archive .container .wp-pagenavi .previouspostslink::before {
  position: absolute;
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 10px;
  line-height: 30px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}

#archive .container .wp-pagenavi .nextpostslink:hover,
#archive .container .wp-pagenavi .previouspostslink:hover {
  background: #00427b;
  color: #fff;
}

#archive .container .wp-pagenavi .nextpostslink::after, #archive .container .wp-pagenavi .nextpostslink::before {
  content: "\e909";
}

#archive .container .wp-pagenavi .nextpostslink::after {
  left: -33px;
}

#archive .container .wp-pagenavi .nextpostslink:hover {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

#archive .container .wp-pagenavi .nextpostslink:hover::after, #archive .container .wp-pagenavi .nextpostslink:hover::before {
  -webkit-transition: inherit;
  transition: inherit;
}

#archive .container .wp-pagenavi .nextpostslink:hover::after {
  left: 0;
}

#archive .container .wp-pagenavi .nextpostslink:hover::before {
  right: -34px;
}

#archive .container .wp-pagenavi .previouspostslink::after, #archive .container .wp-pagenavi .previouspostslink::before {
  content: "\e908";
}

#archive .container .wp-pagenavi .previouspostslink::after {
  right: -34px;
}

#archive .container .wp-pagenavi .previouspostslink:hover {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

#archive .container .wp-pagenavi .previouspostslink:hover::after, #archive .container .wp-pagenavi .previouspostslink:hover::before {
  -webkit-transition: inherit;
  transition: inherit;
}

#archive .container .wp-pagenavi .previouspostslink:hover::after {
  right: 0;
}

#archive .container .wp-pagenavi .previouspostslink:hover::before {
  left: -34px;
}

/*--------------------------
breadcrumbs
---------------------------*/
#breadcrumbs .container {
  position: relative;
}

#breadcrumbs .container::after {
  position: absolute;
  height: 100%;
  width: calc(50vw - 310px);
  min-width: 330px;
  top: 0;
  right: calc(50% + 310px);
  content: "";
  background: #f1f9fe;
}

@media only screen and (max-width: 768px) {
  #breadcrumbs .container::after {
    display: none;
  }
}

#breadcrumbs .bread {
  width: 930px;
  margin-left: auto;
}
