@charset "utf-8";

* {
	box-sizing: border-box;
}

/*============================================================================
　base
*============================================================================*/
html {
	font-size: 62.5%;
	height: 100%;
}
body {
	min-width: 1130px;
	height: 100%;
	background-color: #fff;
}
@media screen and (max-width: 767px) {
	body {
		min-width: auto;
	}
	body.is-fixed {
		overflow: hidden;
	}
}

/*============================================================================
 レスポンシブ調整：PC版・SP版表示調整
*============================================================================*/
/* display */
@media screen and (min-width: 768px) {
  .view-pc {
    display: block;
  }
  .view-pci {
    display: inline-block;
  }
  .view-sp,
  .view-spi {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .view-pc,
  .view-pci {
    display: none;
  }
  .view-sp {
    display: block;
  }
  .view-spi {
    display: inline-block;
  }
}


/* link */
a {
	color: #000;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
button {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;	
}
@media screen and (min-width: 768px) {
	a:hover,
	button:hover {
		opacity: .8;
	}
}
@media screen and (max-width: 767px) {
  *:focus {
    outline: none;
  }
}


/* placeholder */
::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #000000;
}
:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #000000;
}
::-moz-placeholder {
  /* Others */
  color: #000000;
}
::-ms-input-placeholder {
  /* Others */
  color: #000000;
}
::placeholder {
  /* Others */
  color: #000000;
}

/*============================================================================
　ヘッダー
*============================================================================*/
.l-header {
	height: 120px;
}
.l-header__container {
	position: fixed;
	top: 0;
	display: flex;
	width: 100%;
	height: 120px;
	padding: 0 40px 0 50px;
  -webkit-transition: all .1s ease;
  transition: all .1s ease;
	z-index: 15;
}
.l-header__inner {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
}
.l-header__info {
	display: flex;
	align-items: center;
	margin-right: 15px;
}
.l-header__logo {
	width: 200px;
	margin: 10px 20px 10px 0;
}
.l-header__logout a {
	display: block;
	padding: 10px 25px;
	font-weight: bold;
	text-decoration: none;
}
.l-header__contents {
	display: flex;
	align-content: center;
	margin-left: auto;
}
.sns-list {
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
}
.sns-list li {
	width: 30px;
	margin: 0 7px;
}
.sns-list a {
	display: block;
	line-height: 1;
}
.header-menu-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border: none;
	background-color: transparent;
	cursor: pointer;
	padding: 0;
	margin-left: 5px;
	z-index: 10;
}
.l-nav__button_icon {
	position: relative;
	width: 18px;
	height: 14px;
}
.header-menu-btn span {
	position: absolute;
	display: block;
	width: 18px;
	height: 2px;
	border-radius: 2px;
	background-color: #000;
	transition: .3s ease-in-out;
}
.header-menu-btn span:nth-child(1) {
	top: 0;
}
.header-menu-btn span:nth-child(2) {
	top: 6px;
}
.header-menu-btn span:nth-child(3) {
	bottom: 0;
}
.header-menu-btn.is-open span:nth-child(1) {
	top: 5px;
	transform: translateY(0px) rotate(-45deg);
}
.header-menu-btn.is-open span:nth-child(2) {
	opacity: 0;
}
.header-menu-btn.is-open span:nth-child(3) {
	top: 10px;
	bottom: auto;
	transform: translateY(-5px) rotate(45deg);
}
.main-navigation {
	position: absolute;
	top: 119px;
	right: -40px;
	opacity: 0;
	display: block;
	width: 300px;
	border: 1px solid #C8C8C8;
	background-color: #fff;
	overflow: auto;
	pointer-events: none;
	transition: opacity .3s ease, visibility .3s ease;
}
.main-navigation.is-open {
	opacity: 1;
	pointer-events: auto;
}
.nav-menu {
	display: block;
	margin: 0;
	border-bottom: none;
}
.menu-item {
	border-bottom: 1px solid #C8C8C8;
}
.menu-item a {
	display: block;
	padding: 10px 25px;
	font-weight: bold;
	text-decoration: none;
}
@media screen and (min-width: 768px) {
	.header-menu-btn:hover {
		opacity: .8;
	}		
}
@media screen and (max-width: 767px) {
	.l-header {
		height: 60px;
	}
	.l-header__container {
		display: block;
		min-width: auto;
		height: 60px;
		padding: 0;
	}
	.l-header__inner {
		padding: 5px 20px 0 25px;
	}
	.l-header__info {
		height: auto;
		margin-right: 0;
	}
	.l-header__logo {
		width: 33vw;
		max-width: 150px;
		margin: 0;
	}
	.main-navigation {
		top: 60px;
		right: auto;
		left: 0;
		width: 100%;
	}
	.nav-menu {
		border: none;
	}
	.nav-menu li {
		text-align: center;
	}
	.l-header__logout {
		text-align: center;
	}
	body.is-fixed .l-header__container {
		height: 100%;
	}
}

/*============================================================================
　フッター
*============================================================================*/
.l-footer {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 60px;
	padding: 5px;
	background-color: #000;
	color: #fff;
}
.pagetop {
	position: absolute;
	right: 50px;
	top: -20px;
	width: 40px;
	height: 40px;
	-webkit-transition: all .3s ease;
  transition: all .3s ease;
	cursor: pointer;
}
.l-footer__copylight {
	font-size: 1.0rem;
}
@media screen and (min-width: 768px) {
	.pagetop:hover {
		opacity: .8;
	}
}
@media screen and (max-width: 767px) {
	.l-footer {
		height: auto;
	}
}

/*============================================================================
　common、utility
*============================================================================*/

/* layout */
#page {
	display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
  min-height: 100vh;
}
.home #page,
.register #page,
.register_check #page,
.register_mail #page,
.register_confirm #page,
.register_password #page,
.register_complete #page,
.contact #page,
.page-template-page-contact-template #page {
  grid-template-rows: 1fr auto;
}
.archive #page,
.post-type-archive #page,
.single #page {
	grid-template-rows: auto auto 1fr auto;
}

.container {
	max-width: 1100px;
	margin: 0 auto;
}
@media screen and (max-width: 767px) {
	.container {
		width: 100%;
		min-width: auto;
	}
}
.l-main {
	padding: 80px 20px 100px;
	background-color: #fff;
}
@media screen and (max-width: 767px) {
	.l-main {
		padding-top: 40px;
		padding-bottom: 60px;
	}
}
.text-block {
	margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
	.text-block {
		margin-bottom: 30px;
	}
}
.l-page-bottom.border-top {
	padding-top: 55px;
	border-top: 1px solid #DBDBDB;
}
.l-page-bottom .btn-wrapper {
	width: 400px;
	margin: 0 auto 60px auto;
}
@media screen and (max-width: 767px) {
	.l-page-bottom.border-top {
		margin: 0 -20px;
		padding-top: 40px;
	}
	.l-page-bottom .btn-wrapper {
		width: 100%;
	}
}
.l-page-bottom .link-wrapper {
	text-align: center;
}

.link-text.icon-arrow-l {
	padding-left: 25px;
	background-image: url(../img/common/icon_arrow_left-bl.png);
	background-position: left center;
	background-size: 14px auto;
	background-repeat: no-repeat;
}
.link-text.icon-arrow-r {
	padding-left: 25px;
	background-image: url(../img/common/icon_arrow_right-bl.png);
	background-position: left center;
	background-size: 14px auto;
	background-repeat: no-repeat;
}
.link-text.icon-arrow-r_wht {
	padding-left: 25px;
	background-image: url(../img/common/icon_arrow_right-wht.png);
	background-position: left center;
	background-size: 14px auto;
	background-repeat: no-repeat;
}
.link-text span {
	position: relative;
}
.link-text span::before {
	content: "";
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #033884;
}

/* l-page-catch */
.l-page-catch {
	padding: 10px;
	height: 160px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.l-page-catch__heading {
	position: relative;
	display: flex;
	align-items: center;
	font-size: 3.4rem;
	font-weight: bold;
	letter-spacing: 3px;
}
.l-page-catch__heading::before {
	flex-shrink: 0;
	display: block;
	content: "";
	width: 50px;
	height: 50px;
	margin-right: 45px;
	background-size: 50px auto;
}
@media screen and (max-width: 767px) {
	.l-page-catch {
		padding: 20px;
	}
	.l-page-catch__heading {
		font-size: 2.0rem;
	}
	.l-page-catch__heading::before {
		width: 40px;
		height: 40px;
		margin-right: 20px;
		background-size: 40px auto;
	}
}

/* title */
.entry-content .cmn-title {
	margin: 0 0 30px;
	padding: 5px 10px;
	background-color: #231815;
	border-radius: 5px;
	font-weight: bold;
	font-size: 2.6rem;
	color: #fff;
	text-align: center;
}
@media screen and (max-width: 767px) {
	.entry-content .cmn-title {
		margin: 0 -20px 30px;
		border-radius: 0;
	}
}

/* blog theme color */
.has-theme-1-color {
	color: #00a9dd;
}
.has-theme-2-color {
	color: #43d4a4;
}
.has-theme-3-color {
	color: #FFD25F;
}
.has-theme-4-color {
	color: #E4748D;
}
.has-theme-5-color {
	color: #efefef;
}
.has-theme-1-background-color {
	background-color: #00a9dd;
}
.has-theme-2-background-color {
	background-color: #43d4a4;
}
.has-theme-3-background-color {
	background-color: #FFD25F;
}
.has-theme-4-background-color {
	background-color: #E4748D;
}
.has-theme-5-background-color {
	background-color: #efefef;
}

/* btn */
.btn01 {
	display: inline-block;
	padding: 7px 15px;
	background-color: #000;
	text-decoration: none;
	color: #fff;
	border-radius: 40px;
	line-height: 1.2;
}
.btn01.btn-thick {
	font-size: 2.4rem;
	line-height: 1.3;
}
.btn01.icon-arrow_l {
	position: relative;
	padding: 5px 13px 5px 43px;
	text-align: center;
}
button.btn01.icon-arrow_l {
	line-height: 1.3;
}
.btn01.icon-arrow_l svg {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 5px;
	width: 30px;
}
.btn.btn-thick {
	position: relative;
	padding: 40px 50px;
	box-shadow: 0px 10px 0px #023e5c;
	border-radius: 10px;
}
.btn.btn-thick.icon-arrow::after {
	position: absolute;
	top: 50%;
	right: 20px;
	content: "";
	width: 24px;
	height: 24px;
	margin-top: -12px;
	background-image: url(../img/common/icon_arrow_right-wht.png);
	background-position: right center;
	background-size: 24px auto;
	background-repeat: no-repeat;		
}
.btn.btn-thick span {
	position: relative;
}
.btn.btn-thick span::before {
	position: absolute;
	bottom: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 2px;
	background-color: #fff;
}
.btn span {
	display: inline-block;
}
.btn.icon-arrow_r span {
	padding-left: 25px;
	background-image: url(../img/common/icon_arrow_right-wht.png);
	background-position: 0 center;
	background-size: 14px auto;
	background-repeat: no-repeat;		
}
.btn-wrapper.btn-center {
	text-align: center;
}
.fill_arrow {
	fill: none;
	stroke: #000;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2.27px;
}
.fill_circle {
	fill: #ccc;
	stroke-width: 0px;
}
@media screen and (min-width: 768px) {
	.btn:hover,
	.btn01:hover {
		opacity: .8;
	}
	.input-wrapper .btn01:hover {
		opacity: 1;

	}
	.btn01.icon-arrow_l:hover {
		opacity: .8;
	}
}
@media screen and (max-width: 767px) {
	.btn {
		display: block;
		padding: 15px 10px;
	}
	.btn.icon-mail {
		padding-right: 10px;
		padding-left: 10px;
	}
	.btn01 {
		font-size: 1.4rem;
	}
	.btn01.btn-thick {
		font-size: 1.6rem;
	}
	.btn01.icon-arrow_l {
		padding: 7px 10px 7px 35px;
		background-size: 25px auto;
	}
	.btn01.icon-arrow_l svg {
		width: 26px;
	}
}

/* scroll-hint-icon */
.scroll-hint-icon-white {
  letter-spacing: 0;
  height: 85px !important;
}

/*============================================================================
　page
*============================================================================*/
/*-------------------------------
  home
-------------------------------*/
.home .l-header {
	height: 150px;
}
.home .l-header__inner {
	justify-content: center;
}
.home .l-header__logo {
	width: 300px;
	margin: 0;
}
@media screen and (max-width: 767px) {
	.home .l-header {
		height: 80px;
	}
	.home .l-header__logo {
		display: flex;
		width: 158px;
		margin: 0 auto;
	}
}

/*-------------------------------
  index、register
-------------------------------*/
.home .l-main {
	padding: 80px 20px;
}
.member-form .w120 {
	width: 120px;
}
.member-form .w300 {
	width: 300px;
}
.member-form .w700 {
	width: 700px;
}
.member-form .w100p {
	width: 100%;
}
.member-form .btn01 {
	min-width: 150px;
}
.entry-content .member-form__logo {
	width: 225px;
	margin:  0 auto 40px;
	border: none;
}
.member-form__title {
	margin: 0 0 30px;
	padding: 5px 10px;
	background-color: #231815;
	border-radius: 5px;
	font-weight: bold;
	font-size: 2.6rem;
	color: #fff;
	text-align: center;
}
.member-login__inner {
	display: flex;
	justify-content: center;
}
.member-login__box {
	width: 50%;
	padding: 0 60px;
}
.member-login__box + .member-login__box {
	border-left: dotted 3px #000;
}
.member-login__box .btn-wrapper {
	margin: 20px 0 35px;
}
.member-login__box .btn01 {
	line-height: 2;
}
.member-login-box {
	margin-bottom: 20px;
	background-color: #fff;
	box-shadow: 0px 0px 10px #0000001A;
	border-radius: 10px;
}
.member-login-box__title {
	padding: 10px;
	background-color: #033884;
	font-size: 2.0rem;
	font-weight: bold;
	line-height: 1.8;
	color: #fff;
	text-align: center;
	border-radius: 10px 10px 0 0;
}
.member-login-box__title span {
	padding-left: 45px;
	background-image: url(../img/common/icon_login.png);
	background-position: center;
	background-size: 24px auto;
	background-position: 0 center;
	background-repeat: no-repeat;
}
.member-login-box__inner {
	padding: 30px 40px 35px;
}
.member-entry__form-list {
	margin-bottom: 40px;
	border-top: 3px dotted #000;
}
.member-entry__form-list dl {
	display: flex;
	align-items: baseline;
	padding: 20px 0;
	border-bottom: 3px dotted #000;
}
.member-entry__form-list dl.item-content {
	align-items: flex-start;
}
.contact .member-entry__form-list dl.item-content dt {
	margin-top: 15px;
}
.member-entry__form-list dt {
	width: 140px;
	min-width: 140px;
	margin-right: 20px;
}
.member-entry__form-list dd {
	flex: 1;
}
.member-entry__form-list dd p {
	margin: 10px 0 0;
	font-size: 0.86em;
}
.home .member-form__form-list {
	width: 400px;
	margin-left: auto;
}
.member-form__form dl {
	display: flex;
	align-items: baseline;
}
.member-form__form dl:not(:last-of-type) {
	margin-bottom: 20px;
}
.member-form__form dt {
	display: flex;
	align-items: center;
	width: 125px;
	min-width: 125px;
	margin-right: 10px;
	font-weight: bold;
}
.home .member-form__form dt {
	width: 5.5em;
	min-width: 5.5em;
}
.member-form__form dd {
	flex: 1;
}
.member-form__form dd p {
	margin: 5px 0 0;
	font-size: 0.86em;
}
.member-form input,
.member-form button,
.member-form textarea,
.member-form select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	vertical-align: middle;
	letter-spacing: 0.85px;
	cursor: pointer;
	border: none;
}
.member-form input[type="text"],
.member-form input[type="email"],
.member-form input[type="password"],
.member-form select {
	padding: 0 20px;
	background-color: #fff;
	border: 2px solid #000;
	cursor: auto;
	line-height: 60px;
	border-radius: 5px;
	font-size: 100%;
}
.member-form textarea {
	padding: 15px;
	background-color: #fff;
	border: 2px solid #000;
	cursor: auto;
	border-radius: 10px;
	font-size: 100%;
}
.member-form select {
	padding-right: 35px;
}
.form-select {
	position: relative;
}
.form-select select {
	cursor: pointer;
}
.form-select + label {
	margin-left: 10px;
}
.member-form .form-select::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 20px;
	display: inline-block;
	width: 8px;
	height: 8px;
	margin: -6px 0 0;
	border-bottom: 2px solid #000;
	border-right: 2px solid #000;
	transform: rotate(45deg);
}
.flex-container {
	display: flex;
	flex-wrap: wrap;
}
.flex-container__item {
	display: flex;
	align-items: center;
}
.flex-container__item:not(:last-of-type) {
	margin-right: 20px;
}
.member-form {
	position: relative;
}
.member-form__notes {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 50%;
	padding-left: 60px;
}
.member-form__notes a {
	display: inline-block;
	padding-left: 25px;
	background-image: url(../img/common/icon_check.svg);
	background-size: 16px auto;
	background-position: 0 0.6em;
	background-repeat: no-repeat;
}
.member-entry__inner {
	display: flex;
}
.member-entry__box:first-of-type {
	width: 890px;
	padding-right: 60px;
	border-right: dotted 3px #000;
}
.member-entry__box + .member-entry__box {
	padding-left: 60px;
}
.register-complete__lead {
	margin-bottom: 40px;
	padding-bottom: 25px;
	border-bottom: 3px dotted #000;
}
.register_check .btn-wrapper,
.register_password .btn-wrapper,
.register_confirm .btn-wrapper,
.register-complete .btn-wrapper {
	text-align: center;
}
.feature-title {
	font-size:60px;
}
@media screen and (max-width: 767px) {
	.member-form {
		width: 100%;
	}
	.member-form__title {
		font-size: 2.0rem;
	}
	.member-login-box__inner {
		padding: 20px 30px 35px;
	}
	.member-login__inner {
		display: block;
	}
	.member-login__box {
		width: 100%;
		padding: 0;
	}
	.member-login__box + .member-login__box {
		border: none;
	}
	.home	.member-form__form-list {
		width: 100%;
	}
	.member-form__form dl {
		display: block;
	}
	.member-form__form dt,
	.home .member-form__form dt {
		display: block;
		width: 100%;
		min-width: auto;
		margin-right: 0;
	}
	.member-form__form .btn-wrapper {
		margin: 40px 0 35px;
	}
	.member-form__notes {
		position: static;
		width: 100%;
		padding-left: 0;
	}
	.flex-container__item {
		margin: 10px 0;
	}
	.member-entry__form-list dl {
		display: block;
	}
	.member-entry__form-list dt {
		width: 100%;
		margin: 0 0 10px;
	}
	.member-form .w120,
	.member-form .w300,
	.member-form .w700 {
		width: 100%;
	}
	.feature-title {
	font-size:40px !important;
}
}

/*-------------------------------
  member
-------------------------------*/
.member,
.member .l-main {
	padding: 0;
}
.member .l-main {
	background-color: transparent;
}
.member .container {
	max-width: none;
}
.member .entry-content {
	margin: 0;
}
.top-feature {
	max-width: 1130px;
	margin: 0 auto;
	padding: 0 15px;
	padding: 30px 15px 130px;
	text-align: center;
}
.entry-content .top-feature__ttl {
	margin: 0 0 35px;
	padding: 0;
	line-height: 1;
}
.top-feature__ttl .subttl {
	display: block;
	margin-bottom: 20px;
}
.top-feature__ttl .subttl img {
	width: 260px;
}
.top-feature__ttl .ttl {
	width: 425px;
}
.top-feature__content {
	margin-bottom: 60px;
}
.top-feature__img {
	margin-bottom: 15px;
}
.entry-content .top-feature__lead {
	margin: 0 0 30px;
}
.top-feature__slide {
	padding: 0 50px;
}
.slider-feature {
	position: relative;
}
.slick-slide .slider-item {
	padding: 0 10px;
}

/* arrow */
.slide-prev-btn,
.slide-next-btn {
  position: absolute;
  top: 50%;
  bottom: 50%;
  margin: auto 0;
  width: 15px;
  height: 30px;
	background-repeat: no-repeat;
  z-index: 10;
	-webkit-transition: all .3s ease;
  transition: all .3s ease;
	cursor: pointer;
}
.slide-prev-btn {
	background-image: url(../img/common/icon_arrow-l.svg);
}
.slide-next-btn {
	background-image: url(../img/common/icon_arrow-r.svg);
}
.slide-controls .slide-prev-btn {
  left: -50px;
}
.slide-controls .slide-next-btn {
  right: -50px;
}
.slide-controls .slide-prev-btn:hover,
.slide-controls .slide-next-btn:hover {
  opacity: .8;
}
.section-news {
	position: relative;
	padding: 100px 0 150px;
	background-image: url(../img/top/bg_wave-top.svg), url(../img/top/bg_wave-bottom.svg) ;
	background-position: top, bottom;
	background-size: 100% auto;
	background-repeat: no-repeat;
	overflow: hidden;
}
.top-news__contents-wrapper {
	background-color: #fff;
}
.top-news__inner {
	position: relative;
	max-width: 1130px;
	margin: 0 auto;
	padding: 0 15px;
}
.entry-content .top-news__ttl {
	margin: 0 0 35px;
	padding: 0;
	color: #000;
	font-size: 3.5rem;
	font-weight: bold;
	text-align: center;
	letter-spacing: 3px;
}
.entry-content .news-list {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -25px;
	list-style: none;
}
.news-list > li {
	display: flex;
	flex-direction: column;
	width: calc((100% - 150px) / 3);
	margin: 55px 25px 0;
}
.news-list > li:nth-child(-n+3) {
	margin-top: 0;
}
.news-list li a {
	display: block;
	text-decoration: none;
	color: #000;
}
.entry-content .news-list__figure {
	margin: 0 0 1em;
	border-radius: 15px;
	overflow: hidden;
}
.news-list__content {
	display: flex;
	align-items: center;
	margin-bottom: 5px;
}
.news-list__content img {
	width: 55px;
}
.entry-content .news-list__ttl {
	margin: 0 0 0 10px;
	font-size: 1.9rem;
	line-height: 1.5;
}
.news-list__meta {
	display: flex;
	font-weight: bold;
	font-size: 1.1rem;
}
.entry-content .post-categories {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0 10px 0 0;
	max-width: calc(100% - 6em);
	border-right: 2px solid #000;
}
.entry-content .post-categories li {
	margin-right: 10px;
}
.content-bottom {
	background-color: #E6E6E6;
	text-align: center;
}
.content-bottom__inner {
	padding: 80px 20px 95px;
}
.content-bottom__lead {
	margin: 0 0 30px;
}
.content-bottom__lead span {
	padding-bottom: 2px;
	border-bottom: 3px dotted #000;
}
.content-bottom .btn-wrapper {
	margin-bottom: 70px;
}
.content-bottom .btn01 {
	font-size: 1.4rem;
	color: #fff !important;
}
.content-bottom__bnr {
	width: 715px;
	margin: 0 auto;
}
.top-mv {
	max-width: 1100px;
	margin: 0 auto;
}
.top-mv__img {
	max-width: 1100px;
	margin: 0 auto 20px;
}
.top-mv__img img {
	border-radius: 25px;
}
.btn-scroll {
	text-align: center;
}
.btn-scroll a {
	position: relative;
	display: block;
	width: 20px;
	height: 50px;
	padding-top: 50px;
	margin: 0 auto;
	background-image: url(../img/top/txt_scroll.svg);
	background-position: center 100%;
	background-size: 100%;
	background-repeat: no-repeat;
	text-decoration: none;
}
.btn-scroll span {
	position: absolute;
	top: 0;
	right: calc(50% - 10px);
	bottom: 25px;
	left: calc(50% - 10px);
	width: 20px;
	height: 30px;
	border: 1px solid #000;
	border-radius: 16px;
}
.btn-scroll span::before {
  opacity: 0;
  position: absolute;
  top: 6px;
  right: calc(50% - 2px);
  left: calc(50% - 2px);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #000;
  content: '';
  animation: down 1.2s linear infinite;
}
@keyframes down {
  0% {
    opacity: 0;
    top: 6px;
  }
  5% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    top: 20px;
  }
}
@media screen and (min-width: 3500px) {
	.top-news__contents-wrapper {
		background-color: transparent;
	}
}
@media screen and (max-width: 767px) {
	.top-feature {
		padding: 15px 25px 20px;
	}
	.entry-content .top-feature__ttl {
		margin: 0 0 25px;
	}
	.top-feature__ttl .subttl {
		margin-bottom: 15px;
	}
	.top-feature__ttl .subttl img {
		width: 29vw;
		max-width: 300px;
	}
	.top-feature__ttl .ttl {
		width: 56vw;
		max-width: 500px;
	}
	.top-feature__content {
		margin-bottom: 30px;
	}
	.top-feature__img {
		margin-bottom: 10px;
	}
	.entry-content .top-feature__lead {
		margin: 0 0 20px;
		text-align: left;
	}
	.section-news {
		padding: 50px 0 80px;
		background-image: url(../img/top/bg_wave-top-sp.png), url(../img/top/bg_wave-bottom-sp.png) ;
	}
	.top-news__inner {
		padding: 0 25px;
	}
	.entry-content .top-news__ttl {
		margin: 0 0 25px;
		font-size: 2.0rem;
	}
	.entry-content .news-list {
		display: block;
		margin: 0;
	}
	.news-list > li {
		display: block;
		width: 100%;
		margin: 20px 0 0;
	}
	.news-list > li:nth-child(-n+3) {
		margin-top: 20px;
	}
	.news-list li a {
		display: flex;
		align-items: flex-start;
	}
	.entry-content .news-list__figure {
		flex-shrink: 0;
		width: 35vw;
		max-width: 300px;
		margin: 0 10px 0 0;
		border-radius: 5px;
	}
	.news-list__content {
		display: block;
		margin-bottom: 0;
	}
	.news-list__content img {
		width: 30px;
	}
	.entry-content .news-list__ttl {
		margin: 5px 0;
		font-size: 1.4rem;
		line-height: 1.3;
	}
	.news-list__meta {
		font-size: 1.0rem;
		line-height: 1.7;
	}
	.content-bottom__inner {
		padding: 40px 20px 40px;
	}
	.content-bottom .btn-wrapper {
		margin-bottom: 40px;
	}
	.content-bottom__bnr {
		width: 100%;
		max-width: 500px;
	}
	.top-mv {
		margin-bottom: 0;
		padding: 0 25px;
	}
	.top-mv__img {
		margin-top: 10px;
		margin-bottom: 0;
		border-radius: 15px;
	}
}

/*-------------------------------
  backnumber
-------------------------------*/
.backnumber .l-main {
	padding-top: 0;
}
.entry-content .backnumber-list {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0 -24px;
}
.backnumber-list li {
	width: calc((100% - 192px) / 4);
	margin: 35px 24px 0;
	text-align: center;
}
.backnumber-list li a {
	display: block;
}
.entry-content .backnumber-list__figure {
	margin: 0 0 10px;
}
.backnumber-list li .icon_pdf {
	display: flex;
	align-items: center;
	justify-content: center;
}
.backnumber-list li .icon_pdf::before {
	flex-shrink: 0;
	content: "";
	width: 16px;
	height: 20px;
	margin-right: 10px;
	background-image: url(../img/backnumber/icon_pdf.svg);
	background-repeat: no-repeat;
}
.pdf-list {
	border-top: 1px dotted #000;
	margin-top: 60px !important;
	padding-top: 60px !important;
}
@media screen and (min-width: 768px) {
	.backnumber-list li:nth-child(-n+4) {
		margin-top: 0;
	}
}
@media screen and (max-width: 767px) {
	.entry-content .backnumber-list {
		margin: 0 -10px;
	}
	.backnumber-list li {
		width: calc((100% - 40px) / 2);
		margin: 25px 10px 0;
	}
	.backnumber-list li:nth-child(-n+2) {
		margin-top: 0;
	}
}

/*-------------------------------
  archives
-------------------------------*/
.entry-content .post-types-list {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	margin: -10px -10px 80px;
}
.post-types-list li {
	min-width: 200px;
	margin: 10px;
	list-style: none;
}
.post-types-list a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	padding: 20px 15px;
	border: 1px solid #000;
	text-decoration: none;
	font-weight: bold;
	color: #000;
	border-radius: 10px;
	overflow: hidden;
}

/*-------------------------------
  post single
-------------------------------*/
.entry-header {
	margin-bottom: 30px;
}
.entry-meta .posted-on {
	font-size: 1.3rem;
}
.entry-content {
	margin-bottom: 60px;
}
.entry-content {
	text-align: left;
}
.entry-title,
.entry-content h1 {
	position: relative;
	border-bottom: 2px solid #000;
	font-size: 3.0rem;
	font-weight: bold;
}
.entry-title::before,
.entry-content h1::before {
	position: absolute;
	bottom: -2px;
	left: 0;
	content: "";
	width: 50px;
	height: 2px;
}
.entry-content h2 {
	padding: 5px 25px;
	font-size: 2.6rem;
	font-weight: bold;
	border-radius: 5px;
}
.entry-content h3 {
	font-size: 2.6rem;
	font-weight: bold;
}
.entry-content h4 {
	border-bottom: 2px dotted #000;
	font-size: 2.0rem;
	font-weight: bold;
}
.entry-content h5 {
	padding: 5px 25px;
	font-size: 1.6rem;
	font-weight: bold;
	border-radius: 5px;
}
.entry-content h6 {
	font-size: 1.6rem;
	font-weight: bold;
}
ul.wp-block-list {
	list-style: none;
}
ul.wp-block-list li {
	padding-left: 27px;
	background-image: url(../img/common/icon_check.svg);
	background-size: 16px auto;
	background-position: 0 0.6em;
	background-repeat: no-repeat;
}
ol.wp-block-list {
  list-style: none;
  counter-reset: ol_li; /* ol_li カウンタをセットする(値もリセット) */
}
ol.wp-block-list li {
	display: flex;
}
ol.wp-block-list li:before {
	width: 25px;
	margin-right: 2px;
  counter-increment: ol_li; /* ol_li カウンタの値に1加える */
  content: counter(ol_li)'.'; /* before擬似要素のcontentで出力 */
	font-weight: bold;
  color: #ddd; /* 色を変更 */
}
.wp-block-quote {
	padding-left: 25px;
	border-left: 2px solid #ddd;
}
.entry-content .wp-block-table thead {
	border: 1px solid #000;
	color: #fff;
}
.entry-content .wp-block-table td,
.entry-content .wp-block-table th {
	border: 1px solid #000;
}
.entry-content .wp-block-table.is-style-stripes {
	border-bottom: none;
}
.entry-content .wp-block-table.is-style-stripes table {
	border: 1px solid #000;
}
.entry-content .wp-block-table.is-style-stripes td,
.entry-content .wp-block-table.is-style-stripes th {
	border-color: #000;
}
.entry-content .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
	background-color: #EFEFEF;
}
.wp-block-image {
	margin: 1.5em 0;
}
.wp-block-image :where(figcaption) {
	font-size: 80%;
}
.entry-bottom {
	display: flex;
	border-top: 3px dotted #C8C8C8;
	margin-top: 50px;
	padding-top: 50px;
}

/* like */
.wp-like {
	margin-left: auto;
}
.wpulike {
	width: 72px;
	height: 104px;
	padding: 0 !important;
}
.wpulike-heart .wp_ulike_general_class {
	width: 100% !important;
	height: 100% !important;
	box-shadow: none !important;
	padding: 0 !important;
}
.wpulike button.wp_ulike_btn {
	width: 100% !important;
	height: 100% !important;
}
.wpulike-heart button.wp_ulike_btn {
	width: 100% !important;
	height: 100% !important;
	padding: 0 !important;
}
.wpulike-heart .wp_ulike_put_image:after {
	width: 100% !important;
	height: 100% !important;
}
.wpulike-heart .wp_ulike_put_image.wp_ulike_btn_is_active:after {
	filter: none !important;
}
.wp_ulike_btn.wp_ulike_put_image:after {
	background-image: url(../img/post/icon_unlike.png) !important;
}
.entry-content h1 {
	margin: 0.67em 0;
}
.entry-content h2 {
	margin: 1.3em 0 0.83em
}
.entry-content h3 {
	margin: 0.3em 0;
}
.entry-content h4 {
	margin: .7em 0;
}
.entry-content h5 {
	margin: 1.5em 0 1em;
}
.entry-content h6 {
	margin: 1.5em 0 0.7em
}
.entry-content p {
	margin: 0.5em 0 1.2em;
}
.entry-content p.feature-title {
	margin: 0 0 50px;
}
.entry-content ul,
.entry-content ol {
	margin: 0 0 1.5em 0;
	padding: 0;
}
.entry-content figure {
	margin: 1em 0;
}
.entry-content table {
	margin: 0 0 1.5em;
}
@media screen and (max-width: 767px) {
	.entry-content .post-types-list {
		justify-content: flex-start;
		flex-wrap: wrap;	
		margin: -10px -10px 50px;
	}
	.post-types-list li {
		min-width: auto;
		width: calc((100% - 40px) / 2);
	}
	.entry-content p.feature-title {
	margin: 0 0 30px;
}
}

/*-------------------------------
  contact
-------------------------------*/
.contact .l-main,
.contact_confirm .l-main,
.contact_complete .l-main {
	background-color: transparent;
}
.contact .btn-wrapper,
.contact_confirm .btn-wrapper {
	position: relative;
	text-align: center;
}
.member-form .member-entry__form-list dt p {
	margin: 0;
}
.member-form .member-entry__form-list dd p {
	margin: 0;
	font-size: 1.6rem;
}
.input-wrapper {
	position: relative;
	display: inline-block;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
.input-wrapper p {
	margin: 0;
}
.input-wrapper svg {
	position: absolute;
	top: 5px;
	left: 5px;
	width: 30px;
	z-index: 1;
}
input[type="submit"].btn01 {
	display: inline-block;
	padding: 5px 10px 5px 40px;
	background-color: #000;
	border: none;
	text-decoration: none;
	border-radius: 40px;
	line-height: 1.3;
	font-size: 2.4rem;
	color: #ccc;
}
.member-form .btn-wrapper .page-back {
	position: absolute;
	top: 5px;
	left: 0;
	border: none;
	margin-top: 0;
	padding: 0 0 0 20px;
	background-color: transparent;
	background-image: url(../img/common/icon_arrow-l.svg);
	background-position: left 50%;
	background-size: 10px auto;
	background-repeat: no-repeat;
	text-decoration: none;
	font-size: 100%;
	box-shadow: none;
	cursor: pointer;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
.btn-wrapper p {
	margin: 0;
}
.contact .btn-wrapper {
	display: block;
	margin: 20px auto 0;
}
div.wpcf7 .wpcf7-spinner {
	display: block;
	margin: 20px auto 0;
}
@media screen and (min-width: 768px) {
	.member-form .btn-wrapper .input-wrapper:hover,
  .member-form .btn-wrapper .page-back:hover,
	.member-form .btn-wrapper .page-back:hover {
    opacity: .7;
  }
}
@media screen and (max-width: 767px) {
	.contact .btn-wrapper,
	.contact_confirm .btn-wrapper {
		position: relative;
		padding-top: 70px;
	}
	.member-form .btn-wrapper .page-back {
    position: absolute;
    top: 0;
    left: 0;
	}
	.input-wrapper svg {
		width: 26px;
		top: 4px;
	}
	input[type="submit"].btn01 {
		padding: 7px 10px 7px 36px;
		font-size: 1.6rem;
	}
}

/*-------------------------------
  notfound 404
-------------------------------*/
.section-notfound {
	text-align: center;
}
.notfound-message {
	margin-bottom: 3em;
}
.notfound-message p:not(:last-of-type) {
	margin-bottom: 2.5em;
}
