@charset "UTF-8";
/*
	Filename: common
	Version: 1.0.1
*/
/*-----------------------------------------------------
	Elements
------------------------------------------------------*/
ul li {
	list-style-type: none;
}
ol li {
	list-style-type: decimal;
}
img {
	vertical-align: bottom;
}
iframe {
	width: 100%;
}
.flex {
  display: flex;
  flex-wrap: wrap;
}
/*-----------------------------------------------------
	Link
------------------------------------------------------*/
a {
  text-decoration: none;
  color: #0088CC;
  transition: all 0.25s;
}
a img {
  transition: all 0.25s;
}
a:hover, a:hover img {
  opacity: 0.65;
}
a[href^="tel:"] {
  pointer-events: none;
}
.no_link {
  pointer-events: none;
}
/*-----------------------------------------------------
	haeder
------------------------------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 120px;
  background: rgba(255,255,255,.95);
}
.header_logo {
  position: absolute;
  top: 10px;
  left: 30px;
  z-index: 2;
}
.header_logo img {
  width: 300px;
  height: auto;
}
.header_nav {
  position: absolute;
  top: 49.5px;
  right: 0;
  z-index: 1;
  width: calc(100% - 360px);
}
.header_nav ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
.header_nav ul li {
  margin-right: 30px;
  text-align: center;
}
.header_nav ul li a {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  color: #2A2D32;
}
.header_nav ul li.header_map, .header_nav ul li.header_contact, .header_nav ul li.header_facebook {
  margin-right: 15px;
}
.header_nav ul li.header_map a {
  position: relative;
  padding-left: 17px;
  font-size: 1.4rem;
}
.header_nav ul li.header_contact a {
  position: relative;
  padding-left: 17px;
  font-size: 1.4rem;
  text-shadow:
    -1px -1px 0 white,
     1px -1px 0 white,
    -1px  1px 0 white,
     1px  1px 0 white;
}
.header_nav ul li.header_map a img, .header_nav ul li.header_contact a img {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.header_nav ul li.header_contact a img {
	top: calc(50% + 3px);
  z-index: -1;
}
@media screen and (max-width: 1360px) {
  .header_logo {
    left: 20px;
  }
  .header_logo img {
    width: 180px;
  }
  .header_nav {
    width: calc(100% - 200px);
  }
  .header_nav ul li {
    margin-right: 15px;
  }
  .header_nav ul li a {
    font-size: 1.4rem;;
  }
  .header_nav ul li.header_map a {
    font-size: 1.2rem;
  }
  .header_nav ul li.header_contact a {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1001px) {
	.fat-nav, .fat-nav ul, .fat-nav__wrapper .header_logo {
		display: none;
	}
}
@media screen and (max-width: 1000px) {
  header {
    height: 95px;
  }
  .header_logo {
    left: 20px;
  }
  .header_nav {
    display: none;
  }
	/* SPメニュー */
  .hamburger {
    width: 46px ;
    height: 46px;
    display: block;
    position: fixed;
    top: 24.5px;
    right: 30px;
    z-index: 10002;
    padding: 0;
    background: #767676;
    box-sizing: border-box;
    touch-action: manipulation;
    border-radius: 4px;
  }
  .hamburger__icon {
    position: relative;
    margin-top: 21px;
  }
  .hamburger__icon, .hamburger__icon::before, .hamburger__icon::after {
    width: 26px;
    height: 3px;
		position: absolute;
    top: 0;
		right: 10px;
    display: block;
    background-color: #fff;
    border-radius: 50px;
    transition-property: background-color, transform;
    transition-duration: 0.4s;
  }
  .hamburger__icon::before, .hamburger__icon::after {
    content: "";
    right: 0;
  }
  .hamburger__icon::before {
		width: 26px;
    top: -10px;
  }
  .hamburger__icon::after {
		width: 26px;
    top: 10px;
  }
	.hamburger.active .hamburger__icon {
    background-color: transparent;
  }
  .hamburger.active .hamburger__icon:before, .hamburger.active .hamburger__icon:after {
		width: 26px;
    height: 3px;
  }
  .hamburger.active .hamburger__icon:before {
    transform: translateY(10px) rotate(45deg);
  }
  .hamburger.active .hamburger__icon:after {
    transform: translateY(-10px) rotate(-45deg);
  }
  .fat-nav {
    top: 0;
    left: 0;
    z-index: 9999;
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .fat-nav__wrapper {
    position: relative;
    top: 0;
    left: 0;
    display: table;
    table-layout: fixed;
    width: 100%;
    height: 100%;
    padding: 130px 30px 50px;
    background: #F9F6D3;
  }
  .fat-nav li a {
    display: block;
    position: relative;
    padding-top: 30px;
    padding-bottom: 30px;
    border-bottom: 1px dotted #767676;
    font-weight: 500;
    line-height: 1.6;
    color: #2A2D32;
    text-align: left;
  }
  .fat-nav li a::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 15px;
    height: 12px;
    background: url("../img/common/arrow_black.svg") no-repeat center center;
    background-size: cover;
  }
  .fat-nav li a img {
    margin-right: 10px;
  }
}
@media screen and (max-width: 750px) {
  .hamburger {
    right: 20px;
  }
}

/*-----------------------------------------------------
	midasi
------------------------------------------------------*/
.midasi_01 {
  margin-bottom: 35px;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.6;
}
.midasi_01 span {
  display: block;
  position: relative;
  padding-left: 35px;
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
}
.midasi_01 span::before {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
  width: 26px;
  height: 1px;
  background: #707070;
}
.center {
  text-align: center;
}
@media screen and (max-width: 750px) {
  .midasi_01 {
    margin-bottom: 35px;
    font-size: 3rem;
    line-height: 1.6;
  }
  .midasi_01 span {
    padding-left: 25px;
    font-size: 1.4rem;
  }
  .midasi_01 span::before {
    width: 17px;
  }
}
/*-----------------------------------------------------
	ボタン
------------------------------------------------------*/
.link_more {
  display: inline-block;
  position: relative;
  max-width: 100%;
  background: #767676;
  border-radius: 3em;
  padding: 12px 30px 16px;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  color: #fff;
  transition: all 0.3s ease;
}
.link_more img {
  display: inline-block;
  margin-left: 3px;
  padding-bottom: 1px;
}
.link_more:hover {
  background: #5E9E45;
  opacity: 1;
  transition: all 0.3s ease;
}
.link_more:hover img {
  opacity: 1;
}
@media screen and (max-width: 750px) {
  .link_more {
    width: 255px;
    margin: 30px auto;
    padding: 20px 30px;
  }
}
/*-----------------------------------------------------
	Layout
------------------------------------------------------*/
.wrap {
  position: relative;
  width: 1160px;
  margin: 0 auto;
}
@media screen and (max-width: 1220px) {
  .wrap {
    width: calc(100% - 60px);
  }
}
@media screen and (max-width: 750px) {
  .wrap {
    width: calc(100% - 40px);
  }
}

/*-----------------------------------------------------
	#page_mv
------------------------------------------------------*/
.page_mv {
  position: relative;
  z-index: 1;
  padding-top: 120px;
  width: 100%;
  height: 330px;
  background: #F5F5F2;
}
.page_bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 121px;
  background-image: url("../img/common/page_title_bg.png");
  background-repeat: repeat-x;
}
.page_title {
  position: absolute;
  top: 150px;
  right: 30px;
  z-index: 1;
  font-family: "Montserrat", sans-serif;
  font-size: 12rem;
  font-weight: 500;
  color: rgba(118,118,118,.1);
}
.page_wrap {
  width: 1200px;
  margin: 0 auto;
}
body.page .page_wrap, body.archive .page_wrap, body.error404 .page_wrap, body.single-kamigyo-aruaru .page_wrap, body.single-message .page_wrap {
  margin-bottom: 150px;
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 50px;
  line-height: 1.4;
}
.breadcrumbs i {
  padding-top: 2px;
  font-size: 11px;
}
@media screen and (max-width: 1380px) {
  .page_wrap {
    margin-left: 30px;
  }
}
@media screen and (max-width: 1260px) {
  .page_title {
    font-size: 8rem;
  }
  .page_wrap {
    width: calc(100% - 60px);
    margin: 0 auto;
  }
}
@media screen and (max-width: 1000px) {
  .page_title {
    top: 120px;
  }
}
@media screen and (max-width: 750px) {
  .page_title {
    top: 130px;
    right: auto;
    left: 0;
    padding: 0 20px;
    font-size: 5rem;
  }
  .page_wrap {
    width: calc(100% - 40px);
  }
  body.page .page_wrap, body.archive .page_wrap, body.error404 .page_wrap, body.single-kamigyo-aruaru .page_wrap, body.single-message .page_wrap {
    margin-bottom: 80px;
  }
  .breadcrumbs {
    font-size: 1.4rem;
  }
  .page_bg {
    height: 100px;
  }
}
/*-----------------------------------------------------
	.main
------------------------------------------------------*/
/*---タイトル　タグ　日付---*/
.date_tag {
  margin-bottom: 20px;
}
.date_tag li a {
  position: relative;
  margin-right: 20px;
  line-height: 1.6;
}
.date_tag li a::before {
  content: "#";
}
.date_tag .date {
  margin-right: 50px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  line-height: 1.6;
}
.page_wrap h1 {
  margin-bottom: 60px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 750px) {
  .date_tag .date {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
    line-height: 1;
  }
  .date_tag li a {
    margin-right: 10px;
    font-size: 1.4rem;
  }
  .page_wrap h1 {
    margin-bottom: 30px;
    font-size: 2.5rem;
  }
}
/*---レイアウト---*/
.main {
  position: relative;
  margin-bottom: 100px;
  padding-top: 350px;
}
@media screen and (max-width: 1280px) {
  .main {
    padding-top: 0;
  }
}
@media screen and (max-width: 750px) {
  .main {
    margin-bottom: 60px;
  }
}
/*---サイドバー---*/
.main .side {
  position: absolute;
  top: 130px;
  right: 0;
  z-index: 1;
  width: calc((100vw - 1200px) / 2 + 385px);
}
.side_article {
  position: relative;
  z-index: 2;
  padding: 52px 71px 52px 71px;
  background: #F5F5F2;
}
.pink {
  background: #F6E5F1;
}
.white {
  padding-bottom: 0 !important;
  background: #fff;
}

.side_article_inner {
  width: 333px;
  max-width: 100%;
}
.side_article_inner h3 {
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 700;
}
.side_article_inner h3.tag_midasi {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px dashed #C7B2B2;
}
.wpp-thumbnail {
  display: block;
  float: none;
}
ul.report-list .report-item {
  margin-bottom: 30px;
}
ul.report-list .report-item:last-of-type {
  margin-bottom: 0;
}
ul.report-list .report-item a {
  color: #2A2D32;
}
.report-thumb img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-right: 0;
  border-radius: 10px 10px 0 0;
}
.report-title {
  padding: 10px;
  background: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
}
.term-list {
  gap: 20px;
}
.term-item a {
  font-size: 1.4rem;
  font-weight: 500;
  color: #2A2D32;
}
.term-item a:hover {
  color: #0088CC;
  text-decoration: underline;
  opacity: 1;
}
.term-item a::before {
  content: "#";
}

.side_link_list {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  background: #707070;
  transition: .3s;
  text-align: center;
}
.side_link_list:hover {
  background: #5E9E45;
  transition: .3s;
}
.side_link_list a {
  display: block;
  height: 100%;
  background: #FBFAED;
  border-radius: 20px;
}
.side_link_list a:hover {
  opacity: 1;
  background: #FBFAED;
}
.side_link_list h3 {
  margin-bottom: 80px;
  padding-top: 20px;
  font-family: "Shippori Mincho", serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
  color: #5E9E45;
}
.side_link_list p {
  padding: 0 20px 20px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
  color: #2A2D32;
  text-align: left;
}
.side_link_list:nth-of-type(2)::after {
  content: "";
  display: block;
  position: absolute;
	top: 30px;
	left: 50%;
	transform: translateX(-50%);
  pointer-events: none;
  width: 121px;
  height: 121px;
  background: url("../img/home/letter.svg") no-repeat center center;
  background-size: cover;
}
.side_link_list:first-of-type::after {
  content: "";
  display: block;
  position: absolute;
	top: 0;
	left: -20px;
  width: 129px;
  height: 129px;
  background: url("../img/home/aruaru.svg") no-repeat center center;
  background-size: cover;
}
.side_link_list:first-of-type:hover {
  background: #A77A13;
}
.side_link_list:first-of-type h3 {
  margin-bottom: 15px;
  padding-top: 20px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  color: #A77A13;
}
.side_link_list:first-of-type h3 span {
  display: block;
  font-size: 3.9rem;
}
.side_link_list:last-of-type {
  width: 100%;
}
.side_link_list:last-of-type:hover {
  background: #790C6C;
}
.side_link_list:last-of-type a {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #2A2D32;
}
.side_link_list:last-of-type h3 {
  margin: 0 auto;
  text-align: center;
}
.side_link_list:last-of-type h4 {
  margin-bottom: 10px;
  padding-left: 20px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
}
@media screen and (max-width: 1380px) {
  .main .side {
    width: calc(100% - 830px);
  }
  .side_article {
    padding: 52px 30px 52px 71px;
  }
}
@media screen and (max-width: 1280px) {
  .main .side {
    position: relative;
    top: 0;
    width: 100%;
    margin-top: 60px;
  }
  .side_article {
    padding: 52px 30px;
  }
  .side_article_inner {
    width: 100%;
  }
  ul.report-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }
  ul.report-list .report-item {
    width: calc((100% - 60px) / 3);
    margin-bottom: 0;
  }
  .white .side_link_list {
    width: 370px;
    margin: 0 auto 20px;
  }
}
@media screen and (max-width: 1000px) {
  .report-thumb img {
    height: 150px;
  }
}
@media screen and (max-width: 750px) {
  .side_article {
    padding: 40px 20px;
  }
  ul.report-list {
    gap: 20px;
  }
  ul.report-list .report-item {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 550px) {
  ul.report-list .report-item {
    width: 100%;
  }
  .report-thumb img {
    height: auto;
    object-fit: contain;
  }
  .white .side_link_list {
    width: 330px;
  }
}

/*---記事コンテンツ---*/
.main .contents {
  position: relative;
  z-index: 2;
  width: 830px;
  margin-left: calc((100vw - 1200px) / 2);
  padding-right: 30px;
  background: #fff;
  border-radius: 0 10px 0 0;
}
@media screen and (max-width: 1380px) {
  .main .contents {
    margin-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 1280px) {
  .main .contents {
    margin: 0 auto;
    padding-left: 30px;
  }
}
@media screen and (max-width: 890px) {
  .main .contents {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  .main .contents {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.eye {
	margin-bottom: 1em;
}
.eye img {
  width: 100%;
  height: 510px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: -350px;
}
.eye_caption {
	margin-top: .5em;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.4;
	text-align: left;
}
@media screen and (max-width: 1280px) {
  .eye img {
    margin-top: 0;
  }
}
@media screen and (max-width: 750px) {
  .eye img {
    height: auto;
    object-fit: contain;
  }
}
/*---目次---*/
#ez-toc-container {
  width: 100%;
  margin-bottom: 60px;
  padding: 20px 35px;
  background: #FFFCF1;
  border: 2px dashed #C7B2B2;
}
div#ez-toc-container .ez-toc-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 15px;
  font-size: 2.5rem;
  font-weight: 700;
}
div#ez-toc-container .ez-toc-title::after {
  content: "INDEX";
  display: inline-block;
  margin-left: 10px;
  padding-top: 3px;
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #5F5E5E;
}
div#ez-toc-container ul li {
  margin-bottom: 5px;
}
div#ez-toc-container ul li a {
  font-size: 1.8rem;
  font-weight: 500;
  color: #2A2D32;
}
div#ez-toc-container ul li a:hover {
  opacity: 1;
  text-decoration: none;
  color: #5E9E45;
}
#ez-toc-container a:visited {
  color: #2A2D32;
}
.ez-toc-counter nav ul li a::before {
  margin-right: 10px;
  color: #5E9E45;
}
@media screen and (max-width: 750px) {
  #ez-toc-container {
    margin-bottom: 30px;
    padding: 20px 30px;
  }
  div#ez-toc-container .ez-toc-title {
    font-size: 2.2rem;
  }
}
/*---記事コンテンツ---*/
.contents a {
  color: #0088CC;
  text-decoration: none;
}
.contents a:hover {
  color: #0088CC;
  text-decoration: underline;
  opacity: 1;
}
.contents a.link_more {
  color: #fff;
  text-decoration: none;
}
.contents a.link_more:hover {
  color: #fff;
  text-decoration: none;
  opacity: 1;
}
.contents hr {
  display: block;
  height: 1px;
  border: 0;   
  border-top: 1px solid #ccc;
  margin: 3em 0;
  padding: 0;
}
.contents figure {
  margin-bottom: 30px;
}
.contents figure img {
  max-width: 100%;
  height: auto;
  margin-bottom: 5px;
  border-radius: 10px;
}
.contents figure.wp-block-image.aligncenter,
.contents div.wp-block-image figure.aligncenter {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.contents figure.wp-block-image.aligncenter img,
.contents div.wp-block-image figure.aligncenter img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.contents .wp-element-caption {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4;
	text-align: left;
}
.contents h2 {
  position: relative;
  margin-top: 60px;
  margin-bottom: 30px;
  padding: 10px 20px 10px 25px;
  background: #FFFFFF;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 49%, rgba(245, 245, 242, 1) 50%);
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.4;
}
.contents h2::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10px;
  width: 5px;
  height: 5px;
  background-color: #5E9E45;
  border-radius: 50%;
  transform: translateY(-50%);
}
.contents h2:first-of-type {
  margin-top: 0;
}
.contents h3 {
  position: relative;
  margin-bottom: 30px;
  padding: 1rem 2rem;
  border-bottom: 3px solid #EAEAAE;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.8;
}
.contents h3::before {
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 30%;
  height: 3px;
  content: '';
  background: #5E9E45;
}
.contents h4 {
  margin-bottom: 30px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
  color: #5E9E45;
}
.contents h5 {
  margin-bottom: 30px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.8;
}
.contents p {
  margin-bottom: 30px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
}
.contents ul, .contents ol {
  margin-bottom: 30px;
  margin-left: 20px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
}
.contents ul li {
  list-style-type: disc;
  margin-bottom: 10px;
}
.contents ul li::marker {
  color: #5E9E45;
}
.contents ol li {
  margin-bottom: 10px;
}
.contents .small {
  font-size: 1.2rem;
}
.contents .highlight {
  background: linear-gradient(transparent 60%, #ffff66 60%);
  width: fit-content;
}
.contents .video-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.contents .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*---おたより募集---*/
.message {
  position: relative;
  padding: 50px 50px 60px;
  background: url("../img/common/message_bg.png");
  border-radius: 30px;
  font-family: "Shippori Mincho", serif;
}
.message p {
  font-size: 1.8rem;
  line-height: 2;
}
.message::after {
  content: "";
  display: block;
  position: absolute;
	bottom: 0;
	right: 10px;
  width: 121px;
  height: 121px;
  background: url(../img/home/letter.svg) no-repeat center center;
  background-size: cover;
  opacity: .5;
}
/*---今日の上京---*/
.contents ul.page_nav {
  display: flex;
	flex-direction: row;
	flex-wrap: wrap;
  align-items: stretch;
  gap: 10px;
  margin-left: 0;
}
.contents ul.page_nav li {
  display: flex;
  flex-direction: column;
  width: calc((100% - 10px * 2) / 3);
  min-height: 70px;
  margin-bottom: 0;
  margin-left: 0;
  border: 1px solid #B2BEBF;
  list-style-type: none;
  text-align: left;
}
.contents ul.page_nav li a {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 10px 35px 10px 20px;
  font-size: 14px;
  text-decoration: none;
}
.contents ul.page_nav li a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(90deg);
  width: 9px;
  height: 12px;
  background: url(../img/common/arrow_black_02.svg) no-repeat center center;
  background-size: cover;
}
.img_border {
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 10px;
}
@media screen and (max-width: 750px) {
  .contents h2 {
    font-size: 2.2rem;
  }
  .contents .order1 {
    order: 1;
  }
  .contents .order2 {
    order: 2;
  }
  .message {
    padding: 30px 30px 60px;
  }
  .message p {
    font-size: 1.6rem;
  }
  .contents ul.page_nav li {
    width: calc((100% - 10px) / 2);
  }
}
/*-----------------------------------------------------
	form
------------------------------------------------------*/
/*---reCAPTCHAバッジ非表示---*/
.grecaptcha-badge {
  display: none !important;
}
body.page-id-184 .grecaptcha-badge,
body.page-id-182 .grecaptcha-badge {
  display: block !important;
}
.form_area {
  padding: 50px 100px;
  border: 1px solid #ccc;
}
table.cform {
  width: 100%;
}
table.cform tr th {
  display: block;
  width: 100%;
  padding-top: 30px;
  text-align: left;
}
table.cform tr th p, table.cform tr td p {
  margin-bottom: 0;
}
table.cform tr td {
  display: block;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ccc;
}
.form_area span.req {
  margin-right: 10px;
  padding: 3px 10px 5px;
  background: #ff0000;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}
.form_area h3 {
  margin-bottom: 0;
}
/* Chrome */
::-webkit-input-placeholder {
  color: #d2d2d2;
}
/* Firefox */
::-moz-placeholder {
  color: #d2d2d2;
}
/* IE */
:-ms-input-placeholder {
  color: #d2d2d2;
}
.form_area input[type="text"], .form_area input[type="date"], .form_area input[type="email"] {
  width: 50%;
  padding: 15px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  transition: all .3s;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  outline: none;
  appearance: none;
}
.form_area select {
  width: 50%;
  padding: 15px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  transition: all .3s;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  outline: none;
}
.form_area textarea {
  width: 100%;
  padding: 15px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  transition: all .3s;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  outline: none;
  appearance: none;
}
.form_area input[type="text"]:focus, .form_area input[type="date"]:focus, .form_area input[type="email"]:focus, .form_area select:focus, .form_area textarea:focus {
  box-shadow: 0 0 7px #EAEAAE;
  border: 1px solid #5E9E45;
}
.form_area .confilm {
  margin-top: 30px;
  padding: 30px;
  background: rgba(245, 245, 242, 1);
  text-align: center;
}
.form_area .confilm .wpcf7-list-item {
  margin-left: 0;
}
.form_area .confilm .wpcf7-list-item label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.form_area .confilm .submit_btn {
  margin-bottom: 0;
}
.form_area .confilm .submit_btn input {
  max-width: 100%;
  width: 250px;
  outline: none;
  appearance: none;
  border: none;
  background: #767676;
  border-radius: 3em;
  padding: 12px 30px 16px;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  color: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
}
.form_area .confilm .submit_btn input:hover {
  background: #5E9E45;
  opacity: 1;
  transition: all 0.3s ease;
}
.wpcf7-spinner {
  display: none;
}
@media screen and (max-width: 1260px) {
  .form_area {
    padding: 30px;
  }
}
@media screen and (max-width: 750px) {
  .form_area {
    padding: 20px;
  }
  .form_area input[type="text"], .form_area input[type="date"], .form_area input[type="email"], .form_area select {
    width: 100%;
  }
}
/*---SNS---*/
.share-buttons {
  display: flex;
  gap: 15px;
  margin-top: 50px;
}
.share-buttons a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #eee;
  border-radius: 7px;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
}
.share-buttons a:hover {
  text-decoration: none;
}
.share-facebook {
  background-color: #3b5998;
  color: white;
}
.share-x {
  background-color: #000;
  color: white;
}

/*---レポーター---*/
.reporter {
  margin-top: 100px;
}
.reporter > h2 {
  position: relative;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  background: none;
  font-size: 2rem;
}
.reporter > h2::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  width: 61px;
  height: 61px;
  background-image: url("../img/common/pencil.svg");
  background-repeat: no-repeat;
  background-size: center center;
  background-color: transparent;
  border-radius: 0;
}
.reporter > h2 span {
  padding: 15px 25px 15px 62px;
  background: #FFFCF1;
  border-radius: 10px 10px 0 0;
}
.reporter .flex {
  margin-top: -10px;
  padding: 40px 25px 40px;
  background: #FFFCF1;
  border-radius: 10px;
}
.reporter_photo {
  width: 230px;
  text-align: center;
}
.reporter_photo img {
  max-width: 100%;
  max-height: 138px;
  width: auto;
  height: auto;
  object-fit: cover;
  margin-bottom: 10px;
}
.reporter_photo .reporter_name {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
}
.reporter_text {
  width: calc(100% - 230px);
  padding-left: 20px;
}
@media screen and (max-width: 750px) {
  .reporter {
    margin-top: 80px;
  }
  .reporter .flex {
    padding: 30px;
  }
  .reporter_photo {
    margin-bottom: 20px;
  }
  .reporter_text {
    width: 100%;
    padding-left: 0;
  }
}

/*---関連記事---*/
.yarpp-related-posts {
  position: relative;
  z-index: 0;
  margin-bottom: 100px;
  padding-top: 35px;
}
.yarpp-related-posts::after {
  content: "Related Article";
  display: block;
  position: absolute;
	top: 0;
	left: 0;
  z-index: -1;
  width: 100%;
  padding: 35px 0;
  background: #F5F5F2;
  font-size: 12rem;
  font-weight: 500;
  color: rgba(118,118,118,.03);
  text-align: right;
}
.yarpp-related-posts h2 {
  margin-bottom: 30px;
  font-size: 2rem;
  font-weight: 700;
}
.yarpp-list {
  justify-content: space-between;
}
.yarpp-list::before{
  width:24%;
  display: block;
  content:"";
  order:1;
}
.yarpp-list::after{
  width:24%;
  display: block;
  content:"";
}
.yarpp-item {
  width: 24%;
  margin-bottom: 20px;
}
.yarpp-thumbnail {
  margin-bottom: 10px;
}
.yarpp-thumbnail img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}
.yarpp-date {
  margin-bottom: 5px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: #767676;
}
.yarpp-date i {
  margin-right: 10px;
}
.yarpp-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 5px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  color: #767676;
}
.yarpp-term {
  font-size: 1.4rem;
  font-weight: 400;
  color: #767676;
}
.yarpp-term::before {
  content: "#";
}
@media screen and (max-width: 1280px) {
  .yarpp-item {
    width: 32%;
  }
  .yarpp-related-posts::after {
    font-size: 8rem;
  }
}
@media screen and (max-width: 1000px) {
  .yarpp-thumbnail img {
    height: 150px;
  }
}
@media screen and (max-width: 750px) {
  .yarpp-item {
    width: 49%;
  }
  .yarpp-thumbnail img {
    height: auto;
    object-fit: contain;
  }
}
@media screen and (max-width: 550px) {
  .yarpp-item {
    width: 100%;
  }
}
/*-----------------------------------------------------
	#archive report
------------------------------------------------------*/
.archive_list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.archive_list_child {
  width: calc((100% - 30px * 2) / 3);
  padding: 10px;
  background: rgba(118,118,118,.1);
  border-radius: 10px;
}
.archive_list_child img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 10px;
}
.archive_list_child h3 a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 5px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  color: #767676;
}
.archive_list_child h3 a:hover {
  color: #0088CC;
}
.archive_list_child .date {
  margin-bottom: 5px;
  font-family: "Montserrat", sans-serif;
  color: #767676;
}
.archive_list_child .date i {
  margin-right: 10px;
}
.archive_list_child .report_tag li {
  display: inline-block;
  margin-right: 10px;
}
.archive_list_child .report_tag li a {
  font-size: 1.4rem;
  font-weight: 400;
  color: #2A2D32;
}
.archive_list_child .report_tag li a:before {
  content: "＃";
}
.archive_list_child .report_tag li a:hover {
  color: #0088CC;
}
@media screen and (max-width: 1260px) {
  .archive_list_child img {
    height: 19.841vw;
  }
}
@media screen and (max-width: 900px) {
  .archive_list_child {
    width: calc((100% - 30px) / 2);
  }
  .archive_list_child img {
    height: 28.889vw;
  }
}
@media screen and (max-width: 600px) {
  .archive_list_child {
    width: 100%;
  }
  .archive_list_child img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}
/*-----------------------------------------------------
	#archive kaming+
------------------------------------------------------*/
.paper_list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.paper_list_child {
  width: calc((100% - 30px * 2) / 3);
  padding: 10px;
  background: rgba(118,118,118,.1);
  border-radius: 10px;
}
.paper_list_child img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}
.paper_list_child a h3  {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 5px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  color: #767676;
}
.paper_list_child a h3:hover {
  color: #767676;
}
@media screen and (max-width: 900px) {
  .paper_list_child {
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (max-width: 600px) {
  .paper_list_child {
    width: 100%;
  }
}
/*-----------------------------------------------------
	#archive movie
------------------------------------------------------*/
.movie_list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.movie_list_child {
  width: calc((100% - 30px) / 2);
  padding: 10px;
  background: rgba(118,118,118,.1);
  border-radius: 10px;
}
.movie_list .movie_list_child:first-of-type {
  width: 100%;
}
.movie_list .video-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.movie_list .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.movie_list_child h3  {
  margin-bottom: 5px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  color: #767676;
}
@media screen and (max-width: 750px) {
  .movie_list_child {
    width: 100%;
  }
}
/*-----------------------------------------------------
	ページネーション
------------------------------------------------------*/
.pagination {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
}
a.page-numbers, .pagination .current {
  display: block;
  width: 32.5px;
  height: 32.5px;
  margin: 0 5px;
	padding: 7px 5px;
  background: #fff;
	border: 1px solid #767676;
  border-radius: 3px;
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
	text-decoration: none;
  text-align: center;
  color: #2A2D32;
}
span.page-numbers.dots {
  margin-right: 10px;
  margin-left: 10px;
  font-size: 14px;
}
.pagination .current, a.page-numbers:hover {
	background: #767676;
	border: 1px solid #767676;
	color: #fff;
  opacity: 1;
}
a.page-numbers.next, a.page-numbers.prev {
  position: relative;
  width: 32px;
  height: 32px;
  margin: 0 10px;
  border: none;
}
a.page-numbers.next {
  margin-right: 0;
}
a.page-numbers.prev {
  margin-left: 0;
}
a.page-numbers.next img, 
a.page-numbers.prev img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
a.page-numbers.prev img {
  transform: translate(-50%, -50%) scaleX(-1);
  -webkit-transform: translate(-50%, -50%) scaleX(-1);
}
a.page-numbers.next:hover, a.page-numbers.prev:hover {
	background: #B2A07E;
  opacity: .6;
}
@media screen and (max-width: 750px) {
  .pagination {
    margin-top: 60px;
  }
}





/*-----------------------------------------------------
	.cv
------------------------------------------------------*/
.cv {
  padding: 100px 0;
  background: #A8DDEE;
}
.cv_inner {
  justify-content: space-between;
  position: relative;
  width: 768px;
  margin: 0 auto;
}
.cv_inner::after {
  content: "";
  display: block;
  position: absolute;
	bottom: -67px;
	left: -86px;
  width: 336px;
  height: 162px;
  background: url("../img/common/cv_img.png") no-repeat center center;
  background-size: cover;
}
.cv_l {
  width: 47.9%;
  color: #fff;
}
.cv_l h2 {
  margin-bottom: 25px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.cv_l p {
  margin-bottom: 30px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.cv_l ul {
  padding-top: 30px;
  border-top: 1px dashed #fff;
}
.cv_l ul li {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}
.cv_r {
  width: 44.2%;
}
.cv_r .sp_tel {
  display: block;
}
.cv_r .sp_web {
  display: block;
}
@media screen and (max-width: 1000px) {
  .cv_inner::after {
    left: 0;
  }
}
@media screen and (max-width: 818px) {
  .cv_inner {
    width: 100%;
    padding: 0 25px;
  }
  .cv_inner::after {
    left: 25px;
  }
  .cv_l {
    width: 50%;
  }
}
@media screen and (max-width: 750px) {
  .cv {
    padding: 60px 0 264px;
  }
  .cv_inner::after {
    bottom: -210px;
    left: 50%;
    transform: translateX(-50%);
  }
  .cv_l {
    width: 100%;
    margin-bottom: 60px;
  }
  .cv_l h2 {
    margin-bottom: 30px;
    font-size: 28px;
    line-height: 1.6;
  }
  .cv_l p {
    font-size: 18px;
    line-height: 1.6;
  }
  .cv_r {
    width: 100%;
  }
}
/*-----------------------------------------------------
	footer_access
------------------------------------------------------*/
.footer_access iframe {
  width: 100%;
  height: 575px;
}
@media screen and (max-width: 750px) {
  .footer_access iframe {
    height: 112vw;
  }
}
/*-----------------------------------------------------
	footer
------------------------------------------------------*/
footer {
  background: #767676;
  color: #fff;
}
footer .footer_img {
  width: 100%;
  height: auto;
  max-height: 423px;
  object-fit: cover;
}
footer .wrap {
  width: 1440px;
  margin: 0 auto;
  padding: 60px 30px 30px;
}
.footer_top {
  justify-content: flex-end;
  margin-bottom: 30px;
}
.footer_l {
  width: 305px;
}
.footer_l h2 {
  margin-bottom: 30px;
}
.footer_l ul li {
  margin-right: 20px;
}
.footer_r {
  justify-content: flex-end;
  gap: 100px;
  width: calc(100% - 305px);
}
.footer_r ul li {
  margin-bottom: 30px;
}
.footer_r ul li a {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
}
.footer_r ul li > ul {
  margin-top: 5px;
  margin-left: 15px;
}
.footer_bottom {
  justify-content: space-between;
  align-items: center;
  font-size: 1.3rem;
}
.footer_bottom p {
  font-weight: 400;
  line-height: 1.6;
}
.footer_bottom small {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 1500px) {
  footer .wrap {
    width: 100%;
  }
}
@media screen and (max-width: 1180px) {
  .footer_l {
    width: 205px;
  }
  .footer_r {
    gap: 50px;
    width: calc(100% - 205px);
  }
}
@media screen and (max-width: 900px) {
  footer .footer_img {
    min-height: 200px;
  }
  .footer_l {
    width: 100%;
  }
  .footer_r {
    display: none;
  }
  .footer_bottom p {
    width: 100%;
    margin-bottom: 30px;
  }
  .footer_bottom small {
    width: 100%;
    text-align: center;
  }
}
/*-----------------------------------------------------
	others
------------------------------------------------------*/
.ani {
  visibility: hidden;
}
.tb {
	display: none !important;
}
.sp {
	display: none !important;
}

/*---------------------------------------------------------------------------------------------------------------------------------------------------------------
	~750px SP
----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 750px) {
	/*-----------------------------------------------------
		Elements
	------------------------------------------------------*/	
  img {
    max-width: 100%;
    height: auto;
  }
	/*-----------------------------------------------------
		Elements
	------------------------------------------------------*/
	body {
		word-wrap: break-word;
	}
	a[href^="tel:"] {
		pointer-events: auto;
	}
	/*-----------------------------------------------------
		others
	------------------------------------------------------*/
	.tb {
		display: block !important;
	}
	.pc {
		display: none !important;
	}
}

@media screen and (max-width: 414px) {
  .tb {
		display: none !important;
	}
  .sp {
		display: block !important;
	}
}
