@charset "utf-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  color: #333; /* RGB */
  font-family: 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
  margin-top: 60px;
}
section h2 {
  font-size: 2.4rem;
}
a:hover {
  opacity: 0.5;
}
.none {
  display: none;
}
*, *:before, *:after {
  box-sizing: border-box;
}
.header {
  height: 60px;
  width: 100%;
  background-color: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.header .narralabo_logo {
  position: absolute;
  width: 120px;
  margin: 0px 24px;
}
.header .narralabo_logo img {
  height: 60px;
  width: 120px;
}
.header .instagram_logo {
  position: absolute;
  right: 90px;
  padding: 8px 0;
}
.header .instagram_logo img {
  height: 44px;
  width: 44px;
}
/* ハンバーガーアイコン */
@media (max-width:1160px) {
  #nav-drawer {
    padding: 20px 24px 0 0;
    right: 0;
    position: absolute;
  }
  #nav-open {
    display: inline-block;
    vertical-align: middle;
    width: 40px;
    height: 30px;
  }
  #nav-open span, #nav-open span:before, #nav-open span:after {
    position: absolute;
    height: 3px;
    width: 35px;
    background-color: #1a6b87;
    display: block;
    content: "";
  }
  #nav-open span:before {
    bottom: -10px;
  }
  #nav-open span:after {
    bottom: -20px;
  }
  #nav-close {
    z-index: 99999;
    position: fixed;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: transparent;
    /* 半透明にする場合用 
		  opacity: 0.5;
		  */
  }
  #nav-content {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 760px;
    /* ナビメニューの背景色を白色にする場合用 
		  background-color: #FFF;
		  */
    background-image: url("../images/common/footer_background.png");
    background-size: cover;
    text-align: left;
    padding: 0px 0 0 24px;
    transform: translateX(-105%);
    transition: 0.3s ease-in-out;
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.25);
  }
  .nav-drawer__title-wrapper {
    display: flex;
    justify-content: space-between;
  }
  /* Close Button */ /* Close Button */ /* Close Button */
  .batsu_btn {
    display: block;
    position: relative;
    width: 40px;
    height: 40px;
    margin: 12px 24px 0 0;
    background: transparent; /* ボタンの背景色を透明に */
  }
  .batsu_btn::before, .batsu_btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3px; /* 棒の幅（太さ） */
    height: 44px; /* 棒の高さ */
    background: #fff; /* バツ印の色 */
  }
  .batsu_btn::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .batsu_btn::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  /* Close Button ここまで*/ /* Close Button ここまで*/
  .nav-drawer__logo {
    display: block;
    width: 120px;
    margin-bottom: 46px;
  }
  #nav-content ul {
    margin-top: 20px;
  }
  #nav-content ul li {
    margin-bottom: 20px;
  }
  #nav-content ul li a {
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
  }
  #nav-content ul li a:link, #nav-content ul li a:visited {
    text-decoration: none;
    color: #fff;
  }
  #nav-input:checked ~ #nav-close {
    display: block;
  }
  #nav-input:checked ~ #nav-content {
    display: block;
    transform: translateX(0%);
  }
  .header nav ul .none {
    display: block;
  }
}
.header nav {
  display: none;
}
.header__top-wrapper {
  display: none;
}
.header__line-section {
  padding-right: 24px;
  padding-bottom: 10px;
}
.header__line-section h1 {
  margin-bottom: 10px;
  padding-top: 10px;
  text-align: left;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
}
.header__line-section p {
  margin-bottom:0;
  text-align: left;
  font-size: 1.6rem;
  color: #fff;
}
.header__line-section img {
  margin: 0 auto;
  width: 240px;
  height: 60px;
}
/* ナビメニューの中のLINEセクション　ここまで */
@media(min-width: 1160px) {
  .header {
    height: 120px;
  }
  .header-content-wrapper {
    height: 120px;
    max-width: 1160px;
    margin: 0 auto;
    position: relative;
  }
  .header .narralabo_logo {
    position: absolute;
    width: 240px;
    margin-left: 24px;
  }
  .header .narralabo_logo img {
    height: 120px;
    width: 240px;
  }
  .header__rightside-wrapper {
    display: flex;
    flex-flow: column;

  }
  .header__top-wrapper {
    display: flex;
    justify-content: flex-end;
    padding-top: 10px;
  }
  .header__top-wrapper .header_searchbox-wrapper {
    height: 60px;
    width: 300px;
  }
  .header__top-wrapper .line-button, .dgmk-button img {
    width: 240px;
    height: 60px;
    margin-left: 20px;
  }
  .header__bottom-wrapper {
    display: flex;
    justify-content: flex-end;
  }
  .header nav {
    display: block;
    text-align: right;
    margin-right: 80px;
  }
  .header nav ul {
    display: flex;
    justify-content: flex-end;
  }
  .header nav li a {
    display: block;
    padding: 15px 24px 0;
    color: #333;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 600;
    height: 83px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
  }
  .header .instagram_logo {
    position: absolute;
    right: 0;
    padding: 3px 0;
  }
}
/* PCのheader設定はここまで */ /* PCのheader設定はここまで */
.main {
  background-color: #FFF;
}

/* HEROセクション */ /* HEROセクション */ /* HEROセクション */ /* HEROセクション */ 
/* HEROセクション */ /* HEROセクション */ /* HEROセクション */ /* HEROセクション */ 
/* HEROセクション */ /* HEROセクション */ /* HEROセクション */ /* HEROセクション */ 
/* HEROセクション */ /* HEROセクション */ /* HEROセクション */ /* HEROセクション */ 
/* HEROセクション */ /* HEROセクション */ /* HEROセクション */ /* HEROセクション */ 

.section-hero {
  margin-bottom: 40px;
}
.section-hero__image {
  background-image: url("../images/kaji/1200_900_roundtalk.jpg");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
  padding-top: 75%;
}
img {
  width: 100%;
}
/* パンくずリスト */ /* パンくずリスト */ /* パンくずリスト */
.topicpath {
  background-color: #1a6b87;
  color: #FFF;
  font-size: 1.4rem;
  padding: 10px 24px 20px 24px;
  display: flex;
  vertical-align: middle;
  text-align: left;
}
.topicpath__homeicon {
  display: block;
  margin: 2px 5px 0 5px;
  width: 16px;
  height: 16px;
  padding-top: 3px;
}
.topicpath a:link, .topicpath a:visited {
  text-decoration: none;
  color: #FFF;
}
/* HEROタイトル */ /* HEROタイトル */ /* HEROタイトル */
.section-hero__title-wrapper {
  width: 100%;
  height: 238px;
  padding: 0 24px 40px;
  background-color: #1a6b87;
}
.section-hero__category-wrapper {
  display: flex;
}
.category-icon {
  width: 60px;
  height: 60px;
  margin-right: 12px;
}
.category-icon img {
  width: 100%;
}
.section-hero__title-wrapper h2 {
  box-sizing: border-box;
  margin: 16px 0 12px;
  height: 60px;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 600;
  color: #FFF;
  text-align: left;
}
.section-hero__category-banner-wrapper {
  display: none;
}
.section-hero__title-wrapper-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.section-hero__title-wrapper-date {
  display: flex;
  align-items: center;
}
.calendar-icon {
  width: 14px;
  height: 14px;
}
.section-hero__title-wrapper time {
  padding-left: 5px;
  font-size: 1.4rem;
  color: #FFF;
}
.section-hero__title-wrapper-person {
  display: flex;
  align-items: flex-end;
}
.title-name {
  padding-right: 10px;
  text-align: right;
  font-size: 1.4rem;
  color: #FFF;
}
.title-photo {
  width: 50px;
  height: 50px;
}
@media (min-width: 1160px) {
  .section-hero {
    max-width: 1160px;
    margin: 0 auto 60px;
    padding-top: 60px;
  }
  .topicpath {
    background-color: #1a6b87;
    color: #FFF;
    font-size: 1.4rem;
    padding: 10px 24px 20px 30px;
  }
  .section-hero__title-wrapper {
    width: 100%;
    height: 236px;
    padding: 0 30px 40px;
    background-color: #1a6b87;
  }
  .section-hero__category-wrapper {
    display: none;
  }
  .section-hero__title-wrapper h2 {
    box-sizing: border-box;
    margin: 0px 0 12px;
    padding-top: 15px;
    height: 60px;
    width: 100%;
    font-size: 4.8rem;
    font-weight: 600;
    color: #FFF;
    text-align: left;
  }
  .section-hero__category-banner-wrapper {
    display: flex;
  }
  .category-banner {
    width: 300px;
    height: 60px;
    margin-right: 20px;
  }
  .category-banner img {
    width: 100%;
  }
  .calendar-icon {
    width: 16px;
    height: 16px;
  }
  .section-hero__title-wrapper time {
    padding-left: 5px;
    font-size: 1.6rem;
    color: #FFF;
  }
  .section-hero__title-wrapper-person {
    display: flex;
    align-items: flex-end;
  }
  .title-name {
    padding-right: 10px;
    text-align: right;
    font-size: 1.6rem;
    color: #FFF;
  }
  .title-photo {
    width: 80px;
    height: 80px;
  }
}
/* wide-limited-wrapper（画像以外） */ /* wide-limited-wrapper（画像以外） */
.wide-limited-wrapper {
  margin: 0 auto;
  max-width: 800px;
}
/* Summaryセクション */ /* Summaryセクション */ /* Summaryセクション */
.section-summary {
  margin: 0 24px 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #333;
  text-align: left;
}
.summary__text {
  font-size: 1.6rem;
  line-height: 2.6rem;
}
.summary__text__small {
  font-size: 1.4rem;
  line-height: 2.2rem;
}
/* Contentsセクション */ /* Contentsセクション */ /* Contentsセクション */
.section-contents {
  margin: 0 24px 60px;
}
.section-contents h2 {
  font-size: 1.8rem;
  font-weight: 600;
  text-align: left;
  padding-bottom: 30px;
}
.section-contents__item_wrapper {
  display: flex;
  text-align: left;
  padding-bottom: 30px;
}
.section-contents__item {
  padding-left: 10px;
  line-height: 2.6rem;
  font-weight: 600;
}
.section-contents__item a:link, .section-contents__item a:visited {
  text-decoration: none;
  color: #333;
}
.section-contents__image-wrapper {
  margin: 40px auto 0;
  width: calc(100vw - 48px);
  max-width: 752px; /* 実際には752＋48px＝800pxまで広がる */
}

.section-contents__image {
  background-image: url("../images/kaji/800_600_exposky.jpg");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
  padding-top: 75%;
}

.image__quote {
  padding-top: 10px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 1.4rem;
  line-height: 2.2rem;
}
.image__quote-small {
  margin: 0 auto;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.8rem;
  word-break: break-all;
}


/* googlemap */ /* googlemap */ /* googlemap */ /* 
.section-map {
  margin: 0 auto 60px;
  width: 100%;
  position: relative;
  padding-top: 75%;
  max-width: 752px;
}
.section-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
googlemap */

/* Talkセクション */ /* Talkセクション */ /* Talkセクション */
.section-talk {
  margin: 0 24px 60px;
}
.section-talk-content {
  margin-bottom: 60px;
}
.section-talk__title {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 2.8rem;
  text-align: left;
  padding-bottom: 30px;
  border-bottom: 2px solid #333;
  margin-bottom: 40px;
}
.section-talk__question_wrapper {
  display: flex;
  text-align: left;
  font-weight: 600;
  line-height: 2.6rem;
  padding-bottom: 40px;
}
.section-talk__question__keisen {
  padding-right: 10px;
}
.section-talk__title__answer {
  text-align: left;
  line-height: 2.6rem;
  padding-bottom: 40px;
}
/* 以下はnwreportで「ち：」を前出しするために設定 */
.section-talk__title__answer_wrapper {
  display: flex;
  text-align: left;
  line-height: 2.6rem;
  padding-bottom: 40px;
}
.section-talk__answer__maedashi {
  padding-right: 0px;
}
/* reference */ /* reference */ /* reference */
.reference-info-wrapper {
  width: 100%;
  border: 1px solid #333;
  padding: 40px 24px;
  margin-bottom: 40px;/* reference */
}
.reference__image__quote {
  padding-top: 10px;
  margin: 0 auto;/* 上下とのすきまなし */
  text-align: center;
  font-size: 1.4rem;
  line-height: 2.2rem;
}
/* reference　（参考）だけ前出し */
.reference-info__title-wrapper {
  display: flex;
  text-align: left;
  line-height: 2.6rem;
  padding-bottom: 30px;
}
.reference-info__title-ref {
  min-width: 80px;
}
.reference-info__title-text {
  text-align: left;
  line-height: 2.6rem;
}
/* reference　（参考）だけ前出し　ここまで */
/* 出典だけ前出し */
.reference-info__quote-wrapper {
  display: flex;
  text-align: left;
  font-size: 14px;
  line-height: 2.4rem;
  padding-top: 60px;
}
.reference-info__quote-ref {
  font-size: 14px;
  min-width: 45px;
}
.reference-info__quote-text {
  text-align: left;
  font-size: 14px;
  line-height: 2.4rem;
}
/* 出典だけ前出し（ここまで）*/
.reference-info__title-text {
  text-align: left;
  line-height: 2.6rem;
}
.reference-info__title {
  text-align: left;
  font-weight: 600;
  line-height: 2.6rem;
  margin-bottom: 40px;
}
.reference-info__text {
  text-align: left;
  line-height: 2.6rem;
}
.reference__image-wrapper {
  margin: 30px auto 0;
  width: calc(100vw - 96px);
  max-width: 704px; /* 実際には704＋48px＝752pxまで広がる */
}
.section-talk__image-wrapper {
  margin: 0 auto 0;
  width: calc(100vw - 48px);
  max-width: 752px; /* 実際には752＋48px＝800pxまで広がる */
}
.section-talk__image-wrapper__100_100 {
  margin: 0 auto 0;
  width: 80px;
  max-width: 80px; /* 100pxだと大きかったので常時80px幅 */
}
.section-talk__image-wrapper__560_850 {
  margin: 0px auto 0;
  width: calc(100vw - 48px);
  max-width: 472px; /* 実際には472＋48px＝520pxまで広がる */
}
.section-talk__image-wrapper__540_790 {
  margin: 0px auto 0;
  width: calc(100vw - 48px);
  max-width: 492px; /* 実際には492＋48px＝540pxまで広がる */
}
.section-talk__image-wrapper__600_400 {
  margin: 0px auto 0;
  width: calc(100vw - 48px);
  max-width: 552px; /* 実際には552＋48px＝600pxまで広がる */
}

/* ここから写真 */ /* ここから写真 */ /* ここから写真 */ /* ここから写真 */
/* ここから写真 */ /* ここから写真 */ /* ここから写真 */ /* ここから写真 */
/* ここから写真 */ /* ここから写真 */ /* ここから写真 */ /* ここから写真 */

.section-talk__image-800_600_narashindan {
  background-image: url("../images/kaji/800_600_narashindan.jpg");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
  padding-top: 75%;
  margin-bottom: 60px;/* 写真キャプションなし */
	
}.section-talk__image-1600_1200_kakucho {
  background-image: url("../images/kaji/1600_1200_kakucho.jpg");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
  padding-top: 75%;
  margin-bottom: 0px;/* 写真キャプションあり */
}

.section-talk__image-800_600_koryoexpo {
  background-image: url("../images/kaji/800_600_koryoexpo.jpg");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
  padding-top: 75%;
  margin-bottom: 0px;/* 写真キャプションあり */
}

.section-talk__image-800_600_papers {
  background-image: url("../images/kaji/800_600_papers.jpg");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
  padding-top: 75%;
  margin-bottom: 60px;/* 写真キャプションなし */
}

.section-talk__image-800_600_workshop {
  background-image: url("../images/kaji/800_600_workshop.jpg");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
  padding-top: 75%;
  margin-bottom: 0px;/* 写真キャプションあり */
}

.section-talk__image-540_790_kajibook {
  background-image: url("../images/kaji/540_790_kajibook.jpg");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
  padding-top: 146%;
  margin-bottom: 60px;/* 写真キャプションなし */
}

/* Peopleセクション */ /* Peopleセクション */ /* Peopleセクション */
.section-people {
  padding-bottom: 10px;
  margin: 20px 24px 40px;
  background-color: #e3e3e3;
}
.section-people-wrapper {
  padding: 24px 0 20px 24px;
  display: flex;
  align-items: flex-end;
}
.people-photo {
  width: 50px;
  height: 50px;
}
.people-name {
  padding-left: 20px;
  text-align: left;
  font-size: 1.8rem;
  font-weight: 600;
}
.people-about {
  padding: 0 24px;
  text-align: left;
  line-height: 2.6rem;
}
.people-links {
  padding: 30px 24px 40px;
  text-align: left;
  font-size: 1.4rem;
  line-height: 2.4rem;
  word-break: break-all;
}
.people-links a {
	font-size: 1.4rem;
}
.people-links a:link, .people-links a:visited {
  color: #333;
}
.image__quote-small a:link, .image__quote-small a:visited {
  color: #333;
}
.people-links span {
  display: block;
  padding-left: 1em;
}

/* SNSセクション */ /* SNSセクション */ /* SNSセクション */ 
.section-SNS {
  margin: 0 auto;
}
.sns-button-wrapper {
  margin-bottom: 40px;
}
.sns-button-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}
.sns-button-list li {
  width: 153px;
}
.sns-button-list img {
  width: 140px;
  height: 40px;
  object-fit: cover;
  object-position: 50% 50%;
  margin: 0 auto 20px;
}
/* LINEセクション */ /* LINEセクション */ /* LINEセクション */
.section-line {
  margin: 0px 24px;
  padding-bottom: 80px;
}
.section-line h1 {
  margin-bottom: 10px;
  padding-top: 20px;
  text-align: left;
  font-size: 2.4rem;
  font-weight: 600;
}
.section-line p {
  margin-bottom: 10px;
  text-align: left;
  font-size: 1.6rem;
}
.section-line .line-button img {
  margin: 0 auto;
  width: 240px;
  height: 60px;
}
/* footer */ /* footer */ /* footer */ /* footer */
.footer {
  background-image: url("../images/common/footer_background.png");
  background-size: auto 100%;
  background-position: center center;
  background-repeat: repeat;
  padding-bottom: 80px;
}
.footer-content-wrapper {
  max-width: 1160px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  height: 60px;
  width: 100%;
}
.footer-top .narralabo_logo {
  width: 120px;
  margin: 6px 24px 0;
}
.footer-top .narralabo_logo img {
  width: 120px;
}
.footer-top .instagram_logo {
  right: 24px;
}
.footer-top .instagram_logo img {
  margin: 12px 24px 0 0;
  height: 44px;
  width: 44px;
}
.footer .about {
  padding: 40px 24px 60px;
  color: #fff;
  text-align: left;
  font-size: 1.6rem;
}
.site-map {
  text-align: left;
  padding-left: 24px;
  margin-bottom: 90px;
}
.site-map__links li {
  padding-bottom: 30px;
  font-size: 1.8rem;
  font-weight: 600;
}
.site-map__links li a:link, .site-map__links li a:visited {
  text-decoration: none;
  color: #FFF;
}
.footer small {
  color: #FFF;
  font-size: 1.4rem;
  display: block;
  text-align: center;
}
@media(min-width: 1160px) {
  .footer {
    height: 560px;
  }
  .footer-content-wrapper {
    max-width: 1160px;
    margin: 0 auto;
    position: relative;
  }
  .footer-top {
    position: relative;
    height: 120px;
    width: 100%;
  }
  .footer .narralabo_logo {
    position: absolute;
    width: 240px;
    margin-left: 24px;
  }
  .footer .narralabo_logo img {
    height: 120px;
    width: 240px;
  }
  .footer .instagram_logo {
    position: absolute;
    right: 0;
    padding: 10px 0;
  }
  .footer .about {
    padding: 40px 0 60px;
    color: #fff;
    text-align: left;
    font-size: 1.6rem;
  }
  .site-map {
    text-align: left;
    padding-left: 0;
    margin-bottom: 60px;
  }
  .site-map ul {
    display: flex;
  }
  .site-map__links li {
    padding: 0 80px 0 0;
    font-size: 1.8rem;
    font-weight: 600;
  }
}
#scroll-top {
  background-color: #eee;
  opacity: 0.6;
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 18px 15px 0px;
  font-size: 30px;
  font-weight: 600;
}
#scroll-top a {
  text-decoration: none;
  color: #333;
}