@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;500;700&family=Yuji+Syuku&display=swap");
@import url("./default.css");
@import url("./delay_anim.css");
body {
  background: url(../img/cmn/bg01.jpg);
  background-size: 5rem 5rem;
  color: #0f5186;
  font-size: .14rem;
  font-weight: 500;
  font-family: 'Noto Serif JP', serif;
  position: relative;
  letter-spacing: .06em;
}

@media screen and (max-width: 767px) {
  body {
    background-size: 2.5rem 2.5rem;
  }
}

.wrapper {
  overflow: hidden;
}

a {
  color: #815b55;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
}

strong, .txt_bld {
  font-weight: 700;
}

.txt_ul {
  text-decoration: underline;
}

.container {
  width: 12rem;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .container {
    width: 100%;
    padding: 0 .2rem;
  }
}

@media screen and (max-width: 767px) {
  .pconly {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .sponly {
    display: none !important;
  }
}

.objectfit {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.objectfit.position_top {
  -o-object-position: top center;
     object-position: top center;
}

.txt_cnt {
  text-align: center;
}

.txt_s {
  font-size: .86em;
}

.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.flex_sb {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex_cnt {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex_aic {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.cmn_header {
  position: absolute;
  top: calc(100vh - .8rem);
  left: 0;
  background: #815b55;
  width: 100%;
  height: .8rem;
  padding: 0 .2rem;
  z-index: 999;
  color: #fff;
}

.cmn_header.fixed {
  position: fixed;
  top: 0;
}

.cmn_header a {
  color: #fff;
}

.cmn_header .logo {
  font-family: 'Yuji Syuku', serif;
  font-size: .24rem;
  font-weight: normal;
}

@media screen and (max-width: 767px) {
  .cmn_header {
    position: fixed;
    top: 0;
    left: 0;
    height: .4rem;
  }
  .cmn_header .logo {
    font-size: .12rem;
  }
}

.tgl_menu {
  position: absolute;
  top: 50%;
  right: .2rem;
  width: 24px;
  height: 17px;
  z-index: 10000;
  margin-top: -8px;
}

.tgl_menu span {
  display: block;
  position: absolute;
  left: 0;
  background: #fff;
  width: 100%;
  height: 1px;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.tgl_menu span:nth-of-type(1) {
  top: 0;
  -webkit-animation: menu_bar01 .75s forwards;
  animation: menu_bar01 .75s forwards;
}

.tgl_menu span:nth-of-type(2) {
  top: 8px;
}

.tgl_menu span:nth-of-type(3) {
  bottom: 0;
  -webkit-animation: menu_bar02 .75s forwards;
  animation: menu_bar02 .75s forwards;
}

.tgl_menu.active span:nth-of-type(1) {
  -webkit-animation: menu_bar_active01 .75s forwards;
  animation: menu_bar_active01 .75s forwards;
}

.tgl_menu.active span:nth-of-type(2) {
  opacity: 0;
}

.tgl_menu.active span:nth-of-type(3) {
  -webkit-animation: menu_bar_active02 .75s forwards;
  animation: menu_bar_active02 .75s forwards;
}

@media screen and (max-width: 767px) {
  .tgl_menu {
    margin-left: 0;
  }
}

@-webkit-keyframes menu_bar01 {
  0% {
    -webkit-transform: translateY(8px) rotate(45deg);
            transform: translateY(8px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(8px) rotate(0);
            transform: translateY(8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}

@keyframes menu_bar01 {
  0% {
    -webkit-transform: translateY(8px) rotate(45deg);
            transform: translateY(8px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(8px) rotate(0);
            transform: translateY(8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}

@-webkit-keyframes menu_bar02 {
  0% {
    -webkit-transform: translateY(-8px) rotate(-45deg);
            transform: translateY(-8px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-8px) rotate(0);
            transform: translateY(-8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}

@keyframes menu_bar02 {
  0% {
    -webkit-transform: translateY(-8px) rotate(-45deg);
            transform: translateY(-8px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-8px) rotate(0);
            transform: translateY(-8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}

@-webkit-keyframes menu_bar_active01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(8px) rotate(0);
            transform: translateY(8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(8px) rotate(45deg);
            transform: translateY(8px) rotate(45deg);
  }
}

@keyframes menu_bar_active01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(8px) rotate(0);
            transform: translateY(8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(8px) rotate(45deg);
            transform: translateY(8px) rotate(45deg);
  }
}

@-webkit-keyframes menu_bar_active02 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-8px) rotate(0);
            transform: translateY(-8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-8px) rotate(-45deg);
            transform: translateY(-8px) rotate(-45deg);
  }
}

@keyframes menu_bar_active02 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-8px) rotate(0);
            transform: translateY(-8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-8px) rotate(-45deg);
            transform: translateY(-8px) rotate(-45deg);
  }
}

.cmn_globalnav li {
  margin-left: .3rem;
}

.cmn_globalnav .outline a {
  display: block;
  width: 1.4rem;
  height: .4rem;
  border: 1px solid #fff;
  line-height: calc(.4rem - 2px);
  letter-spacing: .1em;
  text-align: center;
}

@media screen and (min-width: 1280px) {
  .cmn_globalnav .outline a {
    -webkit-transition: background-color .4s ease, color .4s ease;
    transition: background-color .4s ease, color .4s ease;
  }
  .cmn_globalnav .outline a:hover {
    opacity: 1;
    background-color: #fff;
    color: #815b55;
  }
}

@media screen and (min-width: 768px) {
  .cmn_globalnav {
    display: block !important;
  }
}

@media screen and (max-width: 767px) {
  .cmn_globalnav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #815b55;
    width: 100%;
    height: calc(100vh - .4rem);
  }
  .cmn_globalnav ul {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .cmn_globalnav li {
    width: 100%;
    margin: .1rem 0;
    text-align: center;
    font-size: .16rem;
  }
  .cmn_globalnav .outline {
    margin-top: .3rem;
  }
  .cmn_globalnav .outline a {
    width: 3rem;
    height: .5rem;
    line-height: calc(.5rem - 2px);
    margin: 0 auto;
  }
}

/*
.cmn_globalnav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0,0,0,.85);
  width: 100%;
  height: 100vh;
  //height: calc(var(--vh, 1vh) * 100);
  z-index: 9999;
  backdrop-filter: blur(.06rem);
  -webkit-backdrop-filter: blur(.06rem);
  //transition: height .2s ease;
  .inner {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    li {
      text-align: center;
      font-size: .26rem;
      letter-spacing: .2em;
      & ~ li {
        margin-top: .4rem;
      }
      a {
        transition: letter-spacing .4s ease-in-out;
        &:hover {
          @include mq(pc) {
            opacity: 1;
            letter-spacing: .4em;
          }
        }
      }
    }
  }
  @include mq(sp) {
    .inner {
      > li {
        font-size: .18rem;
        & ~ li {
          margin-top: .2rem;
        }
        ul {
          padding-top: .2rem;
          li {
            width: .26rem;
            margin: 0 .1rem;
          }
        }
      }
    }
  }
}

*/
.cmn_footer {
  background: #815b55;
  margin-top: 1.6rem;
  padding: .6rem 0;
  color: #fff;
  text-align: center;
}

.cmn_footer .item ~ .item {
  margin-top: .6rem;
}

.cmn_footer .item.project {
  text-align: left;
}

.cmn_footer .item.project a {
  color: #fff;
}

.cmn_footer .item.project a .logo {
  margin-right: .2rem;
}

.cmn_footer .item.project a .logo img {
  width: .8rem;
}

.cmn_footer .item.project a .desc {
  line-height: 1.4;
  font-weight: 400;
}

.cmn_footer .item.project a .desc span {
  display: block;
}

.cmn_footer .item.project a .desc .lrg {
  font-size: .18rem;
}

.cmn_footer .item.nep img {
  width: auto;
  height: .3rem;
}

.cmn_footer .item.copyright {
  margin-top: .8rem;
}

.cmn_footer .item.copyright small {
  font-size: .12rem;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .cmn_footer {
    margin-top: .6rem;
    padding: .6rem .2rem;
  }
  .cmn_footer .flex {
    display: block;
  }
  .cmn_footer .item ~ .item {
    margin-top: .4rem;
  }
  .cmn_footer .item.project {
    text-align: center;
  }
  .cmn_footer .item.project a .logo {
    margin-right: 0;
  }
  .cmn_footer .item.project a .logo img {
    width: .8rem;
  }
  .cmn_footer .item.project a .desc .sml {
    margin-top: .15rem;
    font-size: .12rem;
  }
  .cmn_footer .item.project a .desc .lrg {
    font-size: .16rem;
  }
  .cmn_footer .item.copyright {
    margin-top: .6rem;
  }
  .cmn_footer .item.copyright small {
    font-size: .1rem;
  }
}

.mod_layout01 {
  padding: 1rem 0 1.4rem;
}

@media screen and (max-width: 767px) {
  .mod_layout01 {
    padding: .6rem 0 1rem;
  }
}

.mod_layout01 .video {
  margin-bottom: .8rem;
  text-align: center;
}

.mod_layout01 .video .tit {
  margin-bottom: .2rem;
  font-size: .24rem;
  font-weight: 700;
  color: #815b55;
  line-height: 1.3;
}

.mod_layout01 .video iframe {
  width: 8rem;
  height: 4.5rem;
}

@media screen and (max-width: 767px) {
  .mod_layout01 .video {
    margin-bottom: .6rem;
    padding: 0 .2rem;
  }
  .mod_layout01 .video .tit {
    margin-bottom: 0.1rem;
    font-size: .15rem;
    text-align: left;
  }
  .mod_layout01 .video iframe {
    width: 100%;
    height: 1.88rem;
  }
}

.mod_tit01 {
  margin-bottom: .6rem;
  font-size: .32rem;
  font-weight: bold;
  text-align: center;
}

.mod_tit01::after {
  content: "";
  display: block;
  background: #815b55;
  width: .4rem;
  height: 1px;
  margin: .2rem auto 0;
}

.mod_tit01.use_bg {
  background: url(../img/top/bg01.jpg);
  background-size: 5rem 5rem;
  margin: 0;
  padding: .7rem 0 .6rem;
}

.mod_tit01.c_w {
  color: #fff;
}

.mod_tit01.c_w::after {
  background: #fff;
}

@media screen and (max-width: 767px) {
  .mod_tit01 {
    margin-bottom: .4rem;
    font-size: .2rem;
  }
  .mod_tit01::after {
    width: .3rem;
  }
  .mod_tit01.use_bg {
    background-size: 2.5rem 2.5rem;
    padding: .45rem 0 .4rem;
  }
}

.mod_btn01 {
  position: relative;
  display: block;
  background: #fff;
  width: 3rem;
  height: .5rem;
  border: 1px solid #815b55;
  line-height: calc(.5rem - 2px);
  text-align: center;
  font-size: .16rem;
}

.mod_btn01::before, .mod_btn01::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #815b55;
}

.mod_btn01::before {
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  -webkit-transition: width .4s ease-in-out;
  transition: width .4s ease-in-out;
}

.mod_btn01::after {
  top: 50%;
  right: 0;
  width: .4rem;
  height: 1px;
  z-index: 1;
  -webkit-transition: background-color .4s ease;
  transition: background-color .4s ease;
}

.mod_btn01.disable {
  pointer-events: none;
  background: #ccc;
  border-color: #aaa;
  color: #666;
}

.mod_btn01.disable::after {
  background: #aaa;
}

.mod_btn01 span {
  position: relative;
  z-index: 1;
  -webkit-transition: color .4s ease;
  transition: color .4s ease;
}

@media screen and (min-width: 1280px) {
  .mod_btn01:hover {
    opacity: 1;
  }
  .mod_btn01:hover::before {
    width: 100%;
  }
  .mod_btn01:hover::after {
    background-color: #fff;
  }
  .mod_btn01:hover span {
    color: #fff;
  }
}

@media screen and (max-width: 767px) {
  .mod_btn01 {
    margin: 0 auto;
  }
}

.mod_article_list_item {
  margin-top: .8rem;
}

.mod_article_list_item .img {
  width: 50%;
  height: 4rem;
}

.mod_article_list_item .img.add {
  height: 5.5rem;
}

.mod_article_list_item .txt {
  width: 5.4rem;
}

.mod_article_list_item .txt .tit {
  font-size: .24rem;
  font-weight: bold;
  color: #815b55;
}

.mod_article_list_item .txt .excerpt {
  margin-top: .4rem;
  line-height: 2;
}

.mod_article_list_item .txt .excerpt p ~ p {
  margin-top: 1em;
}

.mod_article_list_item .txt .btn {
  margin-top: .6rem;
}

.mod_article_list_item:nth-child(odd) .txt {
  margin-left: .6rem;
}

.mod_article_list_item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.mod_article_list_item:nth-child(even) .txt {
  margin: 0 0.6rem 0 calc((100% - 12rem) / 2);
}

@media screen and (max-width: 767px) {
  .mod_article_list_item {
    margin-top: .5rem;
  }
  .mod_article_list_item .img {
    width: 100%;
    height: auto;
  }
  .mod_article_list_item .img.add {
    height: auto;
  }
  .mod_article_list_item .img .objectfit {
    height: auto;
  }
  .mod_article_list_item .txt {
    width: 100%;
    padding: 0 .2rem;
  }
  .mod_article_list_item .txt .tit {
    font-size: .16rem;
    margin-top: .3rem;
  }
  .mod_article_list_item .txt .excerpt {
    margin-top: .2rem;
  }
  .mod_article_list_item .txt .btn {
    margin-top: .3rem;
  }
  .mod_article_list_item:nth-child(odd) .txt {
    margin-left: 0;
  }
  .mod_article_list_item:nth-child(even) .txt {
    margin: 0;
  }
}

.top_succession .mod_article_list_item .img {
  height: 5rem;
}

@media screen and (max-width: 767px) {
  .top_succession .mod_article_list_item .img {
    height: auto;
  }
}

.mod_layout02 .item .img, .mod_layout02 .item .txt {
  width: 50%;
}

.mod_layout02 .item .img {
  height: 6rem;
}

.mod_layout02 .item .txt {
  background: #815b55;
  color: #fff;
  line-height: 2;
}

.mod_layout02 .item .txt .inner {
  width: 75%;
}

.mod_layout02 .item .txt p ~ p {
  margin-top: 1em;
}

@media screen and (max-width: 767px) {
  .mod_layout02 .item .img, .mod_layout02 .item .txt {
    width: 100%;
  }
  .mod_layout02 .item .img {
    height: auto;
  }
  .mod_layout02 .item .img .objectfit {
    height: auto;
  }
  .mod_layout02 .item .txt {
    padding: .4rem .2rem;
  }
  .mod_layout02 .item .txt .inner {
    width: 100%;
  }
}

.mod_layout02_wrap .mod_layout02:nth-of-type(even) .item {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.top_mv {
  position: relative;
  width: 100%;
  height: calc(100vh - .8rem);
  margin-bottom: .8rem;
  overflow: hidden;
}

.top_mv .swiper-container {
  width: 100%;
  height: 100%;
}

.top_mv::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.32);
  width: 100%;
  height: 100%;
  z-index: 1;
}

.top_mv .logo, .top_mv .title_en {
  position: absolute;
  z-index: 2;
}

.top_mv .logo {
  width: 5rem;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.top_mv .logo img {
  -webkit-filter: drop-shadow(0.02rem 0.03rem 0.06rem rgba(0, 0, 0, 0.66));
          filter: drop-shadow(0.02rem 0.03rem 0.06rem rgba(0, 0, 0, 0.66));
}

.top_mv .title_en {
  bottom: 10%;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: .4rem;
  font-weight: 300;
  letter-spacing: .1em;
  color: #fff;
  text-shadow: 0 0.03rem 0.06rem rgba(0, 0, 0, 0.8);
}

@media screen and (max-width: 767px) {
  .top_mv {
    height: 100vw;
    margin: .4rem 0 0;
  }
  .top_mv .logo {
    width: 2.5rem;
  }
  .top_mv .title_en {
    bottom: .3rem;
    font-size: .2rem;
  }
}

@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}

@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}

.swiper-slide-active .top_mv_img,
.swiper-slide-duplicate-active .top_mv_img,
.swiper-slide-prev .top_mv_img {
  -webkit-animation: zoomUp 10s linear 0s 1 normal both;
          animation: zoomUp 10s linear 0s 1 normal both;
}

.top_about .intro {
  width: 10rem;
  margin: 0 auto;
  font-size: .16rem;
  line-height: 2;
}

.top_about .intro p ~ p {
  margin-top: 1em;
}

@media screen and (max-width: 767px) {
  .top_about .intro {
    width: 100%;
    padding-right: .2rem;
    padding-left: .2rem;
    font-size: .14rem;
  }
}

.top_succession {
  background: url(../img/top/bg02.jpg);
  background-size: 5rem 5rem;
}

@media screen and (max-width: 767px) {
  .top_succession {
    background-size: 2.5rem 2.5rem;
  }
}

.top_article_bnr {
  background: url(../img/top/bg01.jpg);
  background-size: 5rem 5rem;
  padding: .6rem 0;
  text-align: center;
}

.top_article_bnr .item {
  display: block;
  width: 3.6rem;
  margin: .2rem .1rem;
}

.top_article_bnr .item .objectfit {
  height: 1.8rem;
}

.top_article_bnr .item figcaption {
  display: inline-block;
  background: url(../img/top/arrow.svg) no-repeat;
  background-size: .3rem .3rem;
  min-height: .3rem;
  margin: .15rem 0 0 -.15rem;
  padding: .2em 0 0 .3rem;
  font-size: .18rem;
  font-weight: bold;
  color: #0f5186;
}

@media screen and (max-width: 767px) {
  .top_article_bnr {
    background-size: 2.5rem 2.5rem;
    padding: .4rem 0;
  }
  .top_article_bnr .flex_cnt {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .top_article_bnr li:nth-child(n+3) {
    margin-top: .2rem;
  }
  .top_article_bnr .item {
    display: block;
    width: 1.58rem;
    margin: 0;
  }
  .top_article_bnr .item .objectfit {
    height: .79rem;
  }
  .top_article_bnr .item figcaption {
    background-size: .15rem .15rem;
    min-height: .15rem;
    margin: .1rem 0 0 -.075rem;
    padding: .2em 0 0 .15rem;
    font-size: .12rem;
  }
}

.top_outline {
  position: relative;
  overflow: hidden;
}

.top_outline::before, .top_outline::after {
  position: absolute;
  top: -.1rem;
  left: -.1rem;
  right: -.1rem;
  bottom: -.1rem;
  content: "";
}

.top_outline::before {
  -webkit-filter: blur(0.1rem);
          filter: blur(0.1rem);
  background: url(../img/top/outline.jpg) no-repeat center center/cover;
}

.top_outline::after {
  background: rgba(0, 0, 0, 0.3);
}

.top_outline .mod_tit01 {
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .top_outline {
    padding-right: .2rem;
    padding-left: .2rem;
  }
}

.top_outline_layout {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.9);
  padding: .6rem 2rem;
}

.top_outline_layout ~ .top_outline_layout {
  margin-top: .8rem;
}

.top_outline_layout .tit {
  margin-bottom: .4rem;
  font-size: .24rem;
  font-weight: 700;
  color: #815b55;
  text-align: center;
}

.top_outline_layout .list {
  border-top: 1px solid #ccc;
}

.top_outline_layout .list dt, .top_outline_layout .list dd {
  padding: .3rem;
  border-bottom: 1px solid #ccc;
  line-height: 1.428;
}

.top_outline_layout .list dt {
  width: 1.2rem;
}

.top_outline_layout .list dt.nodd {
  width: 100%;
}

.top_outline_layout .list dd {
  width: 6.8rem;
  padding-left: 0;
}

.top_outline_layout .map iframe {
  width: 100%;
  height: 4rem;
}

.top_outline_layout .child {
  margin-top: .4rem;
  padding: 0 .3rem;
}

.top_outline_layout .child_tit {
  font-size: .18rem;
  font-weight: 700;
}

.top_outline_layout .child_txt {
  margin-top: .2rem;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .top_outline_layout {
    padding: .3rem .2rem .4rem;
  }
  .top_outline_layout ~ .top_outline_layout {
    margin-top: .4rem;
  }
  .top_outline_layout .tit {
    margin-bottom: .3rem;
    font-size: .18rem;
  }
  .top_outline_layout .list dt, .top_outline_layout .list dd {
    width: 100%;
  }
  .top_outline_layout .list dt {
    font-weight: 700;
  }
  .top_outline_layout .list dt:not(.nodd) {
    padding: .2rem 0 .05rem;
    border-bottom: none;
  }
  .top_outline_layout .list dt.nodd {
    padding: .2rem 0;
  }
  .top_outline_layout .list dd {
    width: 100%;
    padding: 0 0 .2rem;
  }
  .top_outline_layout .map iframe {
    height: 2.21rem;
  }
  .top_outline_layout .child {
    margin-top: .2rem;
    padding: 0;
  }
  .top_outline_layout .child_tit {
    font-size: .14rem;
  }
  .top_outline_layout .child_txt {
    margin-top: .05rem;
    line-height: 1.5;
  }
}

.top_sns {
  margin-top: .6rem;
}

.top_sns .item {
  width: 5rem;
  margin: .4rem .2rem 0;
  overflow: hidden;
}

.top_sns .item iframe {
  width: 100% !important;
}

.top_sns .item.s1x1 iframe, .top_sns .item.s1x1 .fb-page span {
  height: 5rem !important;
}

.top_sns .item.s16x9 iframe, .top_sns .item.s16x9 .fb-page span {
  height: 2.81rem !important;
}

.top_sns .btn {
  margin-top: .6rem;
}

.top_sns .btn .mod_btn01 {
  margin: 0 auto;
}

.top_sns .btn .mod_btn01 svg {
  position: relative;
  top: .25em;
  width: .2rem;
  height: .2rem;
  margin-right: .1rem;
}

@media screen and (min-width: 1280px) {
  .top_sns .btn .mod_btn01 path, .top_sns .btn .mod_btn01 circle {
    -webkit-transition: fill .4s ease;
    transition: fill .4s ease;
  }
  .top_sns .btn .mod_btn01:hover path, .top_sns .btn .mod_btn01:hover circle {
    fill: #fff;
  }
}

@media screen and (max-width: 767px) {
  .top_sns {
    margin-top: .4rem;
  }
  .top_sns .item {
    width: 100%;
    margin: .3rem auto 0;
  }
  .top_sns .item.s1x1 iframe, .top_sns .item.s1x1 .fb-page span {
    height: 3.35rem !important;
  }
  .top_sns .item.s16x9 iframe, .top_sns .item.s16x9 .fb-page span {
    height: 1.88rem !important;
  }
  .top_sns .btn {
    margin-top: .3rem;
  }
  .top_sns .btn .mod_btn01 {
    width: 100%;
  }
}

.top_sponsor {
  margin-top: .85rem;
}

.top_sponsor li {
  margin: .15rem .15rem 0;
  font-size: .18rem;
  font-weight: 700;
}

.top_sponsor li a {
  color: #0f5186;
}

.top_sponsor .img {
  max-width: 2rem;
}

@media screen and (max-width: 767px) {
  .top_sponsor {
    margin-top: .5rem;
  }
  .top_sponsor li {
    margin: .1rem .1rem 0;
    font-size: .12rem;
  }
  .top_sponsor .img {
    max-width: 1.5rem;
  }
}

.mod_videos {
  padding: 1rem 0 .8rem;
  text-align: center;
}

.mod_videos .videos_tit,
.mod_videos .video_tit {
  width: 100%;
  color: #45890f;
  font-size: .24rem;
  font-weight: 700;
  margin-bottom: .2rem;
  line-height: 1.3;
}

.mod_videos .video_item {
  width: 8rem;
  margin: 0 auto;
}

.video_item_link {
  font-size: 1.5em;
  margin-top: 1em;
  margin-bottom: 1.5em;
  text-align: center;
}

.mod_videos .video_item ~ .video_item {
  margin-top: .4rem;
}

.mod_videos .video_item iframe {
  width: 100%;
  height: 4.5rem;
}

@media screen and (min-width: 1280px) {
  .mod_videos.col2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .mod_videos.col2 .video_item {
    width: 49%;
  }
  .mod_videos.col2 .video_item ~ .video_item {
    margin-top: 0;
  }
  .mod_videos.col2 .video_item iframe {
    height: 3.31rem;
  }
}

@media screen and (max-width: 767px) {
  .mod_videos {
    text-align: left;
    padding: .6rem .2rem .6rem;
  }
  .mod_videos .videos_tit,
  .mod_videos .video_tit {
    font-size: .16rem;
    margin-bottom: .1rem;
  }
  .mod_videos .video_item {
    width: 100%;
  }
  .video_item_link {
    font-size: 1.25em;
  }
  .mod_videos .video_item ~ .video_item {
    margin-top: .2rem;
  }
  .mod_videos .video_item iframe {
    height: 1.88rem;
  }
}

/*========= モーダル表示のためのCSS ===============*/
/*動画表示のモーダルの余白を変更したい場合*/
.modaal-video .modaal-inner-wrapper {
  padding: 0;
}

/*モーダルのボタンの色を変更したい場合*/
.modaal-close:after,
.modaal-close:before {
  background: #ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666;
}

.article_inner {
  width: 10rem;
  margin: 1.2rem auto 0;
}

@media screen and (max-width: 767px) {
  .article_inner {
    width: 100%;
    margin-top: .5rem;
    padding: 0 .2rem;
  }
}

.breadcrumb {
  color: #815b55;
  font-size: .12rem;
  line-height: 1.2;
}

.breadcrumb li {
  display: inline;
}

.breadcrumb li ~ li {
  margin-left: .15em;
}

.breadcrumb li ~ li::before {
  content: ">";
  margin-right: .15em;
}

@media screen and (max-width: 767px) {
  .breadcrumb {
    font-size: .1rem;
    padding-bottom: 1em;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
  }
}

.article_mv {
  margin-top: .2rem;
}

@media screen and (max-width: 767px) {
  .article_mv {
    width: calc(100% + .4rem);
    margin: 0 -.2rem;
  }
}

.article_body {
  width: 8rem;
  margin: .5rem auto 0;
}

.article_body p {
  line-height: 2;
}

.article_body a {
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .article_body {
    width: 100%;
    margin-top: .2rem;
  }
}

.article_tit {
  font-size: .4rem;
  font-weight: 700;
  line-height: 1.3;
}

@media screen and (max-width: 767px) {
  .article_tit {
    font-size: .2rem;
  }
}

.article_time {
  margin-top: .2rem;
  font-size: .12rem;
  color: #815b55;
}

@media screen and (max-width: 767px) {
  .article_time {
    margin-top: .05rem;
  }
}

.article_summary {
  margin-top: .6rem;
}

@media screen and (max-width: 767px) {
  .article_summary {
    margin-top: .35rem;
  }
}

.article_content {
  margin-top: .6rem;
}

.article_content > * {
  margin-top: .35rem;
}

.article_content h2 {
  margin-top: .6rem;
  padding-bottom: .15rem;
  border-bottom: 4px solid #815b55;
  line-height: 1.3;
  font-size: .32rem;
  font-weight: 700;
}

.article_content figcaption {
  margin-top: .15rem;
  font-size: .12rem;
  color: #815b55;
  line-height: 1.3;
}

.article_content blockquote {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #ddd;
  padding: .5rem;
}

.article_content blockquote::before {
  content: "“";
  position: absolute;
  top: .05rem;
  left: .15rem;
  font-size: .7rem;
  color: #ddd;
}

.article_content blockquote::after {
  content: "”";
  position: absolute;
  bottom: -.25rem;
  right: .15rem;
  font-size: .7rem;
  color: #ddd;
}

.article_content blockquote p ~ p {
  margin-top: 1.5em;
}

.article_content .profile::after {
  display: block;
  content: "";
  clear: both;
}

.article_content .profile .img {
  float: left;
  width: 48%;
  margin: 0 4% 2% 0;
}

.article_content .profile .txt .name {
  font-size: .16rem;
  font-weight: 700;
}

.article_content .profile .txt p ~ p {
  margin-top: 1em;
}

@media screen and (max-width: 767px) {
  .article_content > * {
    margin-top: .2rem;
  }
  .article_content h2 {
    margin-top: .4rem;
    border-bottom-width: 2px;
    font-size: .18rem;
  }
  .article_content figcaption {
    margin-top: .05rem;
    font-size: .1rem;
  }
  .article_content blockquote {
    padding: .5rem .2rem;
  }
  .article_content .profile .txt .name {
    font-size: .14rem;
    font-weight: 700;
  }
  .article_content .profile .txt p {
    font-size: .12rem;
  }
  .article_content .profile .txt p ~ p {
    margin-top: .5em;
  }
}
/*# sourceMappingURL=style.css.map */