@charset "UTF-8";

/*　共通　*/
.sec_titlebox {
	align-items: center;
	justify-content: space-between;
	margin-bottom: 80px;
}
.sec_flex {
	align-items: flex-end;
}
.sec_title {
	font-size: 60px;
	line-height: 1;
	color: var(--color2);
}
.sec_sub {
	font-size: 20px;
	margin-top: 20px;
}
.sec_titlebox .cms_txt {
  text-align: center;
  margin-top: 40px;
}
.sec_titlebox .txt {
  font-size: 25px;
  line-height: 1.75;
  text-align: center;
	margin-top: 40px;
}
.sec_titlebox .s_txt {
  font-size: 14px;
  line-height: 1.75;
  text-align: center;
  color: var(--color2);
  margin-top: 40px;
}
.sec_titlebox .more_btn {
	border: none;
	margin-left: 0;
}
.sec_titlebox .more_btn a {
	text-align: left;
  color: var(--color1);
	background: none;
  overflow: visible;
	padding: 0;
	padding-right: 30px;
	display: inline-block;
}
.sec_titlebox .more_btn a:hover {
	color: var(--color2);
	background: none;
}
.sec_titlebox .more_btn a::before {
  background: var(--color1);
}
.sec_titlebox .more_btn a:after {
	background: var(--color2);
}
.catnav .catname {
	padding: 0 20px;
	position: relative;
}
.catnav .catname:after {
	content: "";
	width: 1px;
	height: 20px;
	background-color: var(--color1);
	position: absolute;
  right: 0;
  top: 50%;
	display: block;
	margin-top: -10px;
}
.catnav .catname:first-child {
	padding-left: 0;
}
.catnav .catname:last-child {
	padding-right: 0;
}
.catnav .catname:last-child:after {
	content: none;
}
.catnav .catname span {
	font-size: 15px;
	line-height: 2;
	display: block;
	transition: all .3s;
	position: relative;
}
.catnav .catname span:hover {
	color: var(--color2);
}
.catnav .catname span:after {
	content: "";
	width: 100%;
	height: 1px;
	background-color: transparent;
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	transition: all .3s;
}
.catnav .catname.active span {
	color: var(--color2);
}
.catnav .catname span:hover:after {
	background-color: var(--color2);
}
.catnav .catname.active span:after {
	background-color: var(--color2);
}
.page_title_top {
  height: 200px;
  background-color: #94252a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page_title_top .title {
  font-size: 50px;
  color: #fff;
  position: relative;
  z-index: 1;
}
.page_title_top .sub {
  font-size: 20px;
  color: #fff;
  position: relative;
  z-index: 1;
}
@media screen and (max-width:768px) {
	.sec_titlebox {
		text-align: center;
		display: block;
		margin-bottom: 40px;
	}
	.sec_title {
		font-size: 40px;
	}
	.sec_sub {
		font-size: 16px;
	}
  .sec_titlebox .cms_txt {
    text-align: justify;
  }
  .sec_titlebox .txt {
    font-size: 16px;
    text-align: justify;
  }
  .sec_titlebox .s_txt {
    font-size: 12px;
  }
	.catnav {
		flex-wrap: wrap;
		margin-top: 20px;
	}
	.catnav .catname span {
		font-size: 13px;
	}
  .page_title_top {
    height: 120px;
  }
  .page_title_top .title {
    font-size: 30px;
  }
  .page_title_top .sub {
    font-size: 16px;
  }
}

/*　conversion　*/
.conversion {
  background-color: var(--color5);
  padding-top: 60px;
  padding-bottom: 70px;
}
.conversion .title {
  font-size: 25px;
  margin-bottom: 60px;
}
.conversion .title span {
  font-size: 16px;
  display: block;
  margin-top: 10px;
}
.conversion .list {
  width: 100%;
  max-width: 750px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 0 auto;
}
.conversion .item {
  width: calc((100% - 20px)/2);
	box-sizing: border-box;
  filter: drop-shadow(0 8px 0 rgba(0, 0, 0, 1));
  position: relative;
  transition: all .3s;
}
.conversion .item:hover {
  filter: drop-shadow(0 0 0 rgba(0, 0, 0, 1));
  transform: translate(0,8px);
}
.conversion .item .txt {
  width: 85%;
  line-height: 30px;
  font-size: 14px;
  color: var(--color4);
  border: solid 3px var(--color4);
  border-radius: 50vh;
  background-color: #fff;
  display: block;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.conversion .mailitem .txt {
  color: var(--color2);
  border: solid 3px var(--color2);
}
.conversion .item a {
  font-size: 25px;
  color: #fff;
  border-radius: 10px;
  background-color: var(--color4);
  align-items: center;
  justify-content: center;
  padding: 40px 10px 20px;
}
.conversion .mailitem a {
  background-color: var(--color2);
}
.conversion .item a svg {
  margin-right: 10px;
}
@media screen and (max-width:768px) {
  .conversion {
    padding-top: 40px;
    padding-bottom: 50px;
  }
  .conversion .title {
    font-size: 18px;
    margin-bottom: 50px;
  }
  .conversion .title span {
    font-size: 13px;
  }
  .conversion .list {
    gap: 50px;
  }
  .conversion .item {
    width: 100%;
  }
  .conversion .item a {
    font-size: 20px;
    padding: 35px 10px 15px;
  }
  .conversion .item .txt {
    font-size: 12px;
  }
}

/*　step　*/
.step {
  padding-bottom: 60px;
}
.step .step_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.step .step_item {
  width: calc((100% - 60px)/4);
  text-align: center;
  background-color: var(--color3);
  padding: 15px 10px;
}
.step .step_item .num {
  font-size: 18px;
  color: var(--color2);
}
.step .step_item .step_title {
  font-size: 14px;
  font-weight: bold;
  margin-top: 5px;
}
.step .step_item svg {
  font-size: 50px;
  margin-top: 2rem;
}
.step .step_item .step_txt {
  font-size: 12px;
  line-height: 1.5;
  margin-top: 2rem;
}
@media screen and (max-width:768px) {
  .step {
    padding-bottom: 40px;
  }
  .step .step_list {
    gap: 10px;
  }
  .step .step_item {
    width: calc((100% - 10px)/2);
  }
  .step .step_item .step_title {
    font-size: 13px;
  }
  .step .step_item .step_txt {
    font-size: 11px;
    text-align: justify;
  }
}

/*　ヘッダー　*/
.header {
	width: 100%;
	height: 100px;
  background-color: #fff;
	padding: 0 20px;
	align-items: center;
	justify-content: space-between;
	transition: all .3s ease;
	position: fixed;
	top: 0;
	z-index: 2;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease;
}
.header .mainlogo span {
  font-size: 13px;
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}
.header_nav {
	display: none;
}
.navlist {
	margin-left: auto;
}
.navlist .nav {
  margin-right: 1.5em;
}
.navlist .nav a {
	font-size: 11px;
	text-align: center;
	display: inline-block;
  transition: all .3s;
	position: relative;
}
.navlist .nav a:hover {
  color: var(--color2);
}
.navlist .nav a:after {
	content: "";
  width: 100%;
  height: 1px;
  background-color: var(--color2);
  display: block;
  position: absolute;
  bottom: -5px;
  transition: transform .3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.navlist .nav a:hover:after {
	transform-origin: left top;
	transform: scale(1, 1);
}
.navlist .nav a span {
  font-size: 20px;
  display: block;
  margin-bottom: 5px;
}
.hd_box {
  width: 180px;
  min-width: 180px;
}
.hd_telbox {
  margin-right: 15px;
}
.hd_box a {
  font-size: 14px;
  text-align: center;
  white-space: nowrap;
  color: #fff;
  border: solid 2px var(--color2);
  background-color: var(--color2);
  border-radius: 5px;
  padding: 20px 10px 5px;
  display: block;
  transition: all .3s;
  position: relative;
}
.hd_box a:hover {
  color: var(--color2);
  background-color: #fff;
}
.hd_telbox a {
  border: solid 2px var(--color4);
  background-color: var(--color4);
}
.hd_telbox a:hover {
  color: var(--color4);
  background-color: #fff;
}
.hd_box .hd_title {
  width: 80%;
  font-size: 11px;
  color: var(--color2);
  border: solid 2px var(--color2);
  background-color: #fff;
  border-radius: 50vh;
  display: inline-block;
  padding: 2px 5px;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.hd_telbox .hd_title {
  color: var(--color4);
  border: solid 2px var(--color4);
}
.hd_box .hd_txt svg {
  margin-right: 5px;
}
.header.header--unpinned {
  -webkit-transform: translateY(-150%);
  transform: translateY(-150%);
}
@media screen and (max-width:1280px) {
  .navlist .nav {
    margin-right: 1.2em;
  }
}
@media screen and (max-width:1200px) {
	.header {
		height: 65px;
		padding-left: 20px;
		padding-right: 0;
	}
  .header .mainlogo img {
    width: 130px;
  }
  .header .mainlogo span {
    font-size: 10px;
    margin-bottom: 0;
  }
	.navlist,
  .hd_box {
		display: none;
	}
	.nav_wrapper {
		width: 100vw;
		height: 100vh;
		position: fixed;
		top: 0;
		left: 0;
		visibility: hidden;
		opacity: 0;
		transition: opacity .5s ease, visibility .5s ease;
		background: rgba(0,0,0,0.7);
		z-index: 3;
	}
	.nav_wrapper.fade {
		opacity: 1;
		visibility: visible;
	}
	.header_nav {
		width: 100%;
		max-width: 380px;
		height: 100%;
    background-color: #fff;
    /* background-color: #fcf4ce; */
    /* background-image:
      radial-gradient(#fff 20%, transparent 20%),
      radial-gradient(#fff 20%, transparent 20%); */
    /* background-size: 40px 40px; */
    /* background-position: 0 0, 20px 20px; */
		box-sizing: border-box;
		padding: 65px 20px 200px;
		overflow-y: scroll;
		margin-left: auto;
		z-index: 2;
		display: block;
	}
	.nav_item {
		margin-bottom: 2.5rem;
	}
	.nav_item:last-child {
		margin-bottom: 0;
	}
	.nav_item a {
		font-size: 14px;
		letter-spacing: .1em;
	}
  .nav_item a span {
    font-size: 25px;
    color: var(--color2);
    margin-right: 20px;
  }
  .conversion_list {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 80px;
  }
  .conversion_list .item {
    width: 100%;
    filter: drop-shadow(0 8px 0 rgba(0, 0, 0, 1));
    box-sizing: border-box;
    position: relative;
    margin-bottom: 50px;
  }
  .conversion_list .item:last-child {
    margin-bottom: 0;
  }
  .conversion_list .item .txt {
    width: 85%;
    line-height: 30px;
    font-size: 14px;
    color: var(--color4);
    border: solid 3px var(--color4);
    border-radius: 50vh;
    background-color: #fff;
    display: block;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }
  .conversion_list .mailitem .txt {
    color: var(--color2);
    border: solid 3px var(--color2);
  }
  .conversion_list .item a {
    font-size: 20px;
    color: #fff;
    border-radius: 10px;
    background-color: var(--color4);
    align-items: center;
    justify-content: center;
    padding: 35px 10px 15px;
  }
  .conversion_list .mailitem a {
    background-color: var(--color2);
  }
  .conversion_list .item a svg {
    margin-right: 10px;
  }
}

/*　ハンバーガーボタン　*/
.burger_btn {
	display: none;
}
@media screen and (max-width:1200px) {
	.burger_btn {
    width: 65px;
		height: 65px;
		background-color: transparent;
		border: none;
    display: block;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 3;
		transition: all .3s;
	}
	.bar {
		background-color: var(--color1);
		display: block;
		height: 1px;
		left: 50%;
		position: absolute;
		transform: translateX(-50%);
		width: 35px;
		transition: all .3s;
	}
	.bar_top {
		top: 23px;
	}
	.bar_mid {
		top: 50%;
	}
	.bar_bottom {
		bottom: 21px;
	}
	.burger_btn.close .bar_top,
	.burger_btn.close .bar_bottom {
		transition: transform .3s;
	}
	.burger_btn.close .bar_top {
		transform: translate(-50%,8px) rotate(45deg);
	}
	.burger_btn.close .bar_mid {
		opacity: 0;
		transition: opacity .3s;
	}
	.burger_btn.close .bar_bottom {
		transform: translate(-50%,-12px) rotate(-45deg);
	}
	.noscroll {
		overflow: hidden;
	}
}

/*　ファーストビュー　*/
.fv {
	position: relative;
}
.fv::after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  position: absolute;
  top: 0;
  left: 0;
}
.fv .box {
  width: 90%;
	text-align: center;
	color: #fff;
	position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  z-index: 1;
}
.fv .box .maintitle {
	font-size: 50px;
}
.fv .box .maintitle span {
	opacity: 0;
}
.fv .box .subtitle {
  font-size: 30px;
}
.fv .box .subtitle span {
  opacity: 0;
}
.fv_list {
	height: calc(100vh - 100px);
	overflow: hidden;
	box-sizing: border-box;
}
.fv_list:after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.fv_item img {
	width: 100%;
	height: calc(100vh - 100px);
	object-fit: cover;
}
.add-animation {
  animation: zoomUp 20s linear 0s normal both;
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15); /* 拡大率 */
  }
}
@media screen and (max-width:1200px) {
  .fv_list,
  .fv_item img {
    height: calc(100vh - 65px);
  }
}
@media screen and (max-width:768px) {
	.fv .box .maintitle {
		font-size: 25px;
	}
  .fv .box .subtitle {
    font-size: 20px;
  }
}

/*　スクロールダウン　*/
.scrolldown {
	height:50px;
  position:absolute;
  left:50%;
  bottom:10px;
  z-index: 1;
}
.scrolldown span {
  font-size: 18px;
  letter-spacing: 0.05em;
	color: #fff;
	position: absolute;
  top: -20px;
  left: 50%;
  transform: translateY(0) translateX(-50%);
  -webkit-transform: translateY(0) translateX(-50%);
}
.scrolldown::after {
  content: "";
	width: 2px;
  height: 30px;
  background: #fff;
  animation: pathmove 1.4s ease-in-out infinite;
  opacity:0;
  position: absolute;
  top: 0;
}
@keyframes pathmove{
  0%{
    height:0;
    top:0;
    opacity: 0;
  }
  30%{
    height:30px;
    opacity: 1;
  }
  100%{
    height:0;
    top:50px;
    opacity: 0;
  }
}

/*　bnr_list01　*/
.bnr_list01 .list {
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}
.bnr_list01 .item {
	width: calc((100% - 20px)/2);
  background-image: url("../img/bnr/img_bnr01.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
	box-sizing: border-box;
  position: relative;
}
.bnr_list01 .outdoor {
  background-image: url("../img/bnr/img_bnr02.jpg");
}
.bnr_list01 .item::after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  position: absolute;
  top: 0;
  left: 0;
  transition: all .3s;
}
.bnr_list01 .item:hover::after {
  background: rgba(0,0,0,0.8);
}
.bnr_list01 .item a {
  padding: 40px;
  display: block;
  position: relative;
  z-index: 1;
}
.bnr_list01 .item .title,
.bnr_list01 .item .txt {
  color: #fff;
}
.bnr_list01 .item .title {
  font-size: 16px;
  margin-bottom: 30px;
}
.bnr_list01 .item .title span {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}
.bnr_list01 .item .txt {
  font-size: 16px;
  line-height: 1.75;
}
@media screen and (max-width:768px) {
	.bnr_list01 .list {
		gap: 20px;
	}
	.bnr_list01 .item {
		width: 100%;
	}
  .bnr_list01 .item a {
    padding: 40px 20px;
  }
  .bnr_list01 .item .title span {
    font-size: 30px;
  }
  .bnr_list01 .item .txt {
    font-size: 13px;
  }
}

/*　top_about　*/
.top_about {
  padding-top: 0;
  position: relative;
}
.top_about .cms_txt {
  font-size: 18px;
  line-height: 2;
}
.top_about .list {
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}
.top_about .item {
  width: calc((100% - 20px)/2);
  background-color: #fff;
  box-sizing: border-box;
}
@media screen and (max-width:768px) {
  .top_about .list {
    margin-bottom: 20px;
  }
  .top_about .item {
    width: 100%;
  }
  .top_about .item::after {
    font-size: 13px;
    padding: 10px;
  }
  .top_about .cms_txt {
    font-size: 13px;
  }
}

/*　item_grid　*/
.menu {
  padding-top: 100px;
  margin-top: -100px;
}
.item_grid {
  background-color: #fcf4ce;
  background-image:
    radial-gradient(#fff 20%, transparent 20%),
    radial-gradient(#fff 20%, transparent 20%);
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
  padding: 80px 0;
  position: relative;
}
.item_grid .sec_titlebox {
  margin-bottom: 40px;
}
.item_grid .list {
	flex-wrap: wrap;
	gap: 20px;
}
.item_grid .item {
	width: calc((100% - 60px)/4);
  background-color: #fff;
  padding: 10px 10px 20px;
	box-sizing: border-box;
}
.item_grid .pict {
  margin-bottom: 20px;
}
.item_grid .txt {
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width:768px) {
  .menu {
    padding-top: 65px;
    margin-top: -65px;
  }
  .item_grid .list {
    gap: 10px;
  }
	.item_grid .item {
		width: calc((100% - 10px)/2);
    padding-bottom: 15px;
	}
	.item_grid .pict {
    margin-bottom: 15px;
	}
	.item_grid .txt {
		font-size: 13px;
	}
}
@media screen and (max-width:480px) {
  .item_grid .txt {
    font-size: 11px;
  }
}

/*　course_grid　*/
.course_grid .list {
	flex-wrap: wrap;
	gap: 20px;
  margin-bottom: 60px;
}
.course_grid .list:last-of-type {
  margin-bottom: 0;
}
.course_grid .item {
	width: calc((100% - 60px)/4);
  border: solid 2px var(--color1);
  background-color: #fff;
  padding: 10px;
	box-sizing: border-box;
  position: relative;
}
.course_grid .pict {
	overflow: hidden;
  position: relative;
}
.course_grid .box {
	margin-top: 20px;
}
.course_grid .cat {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
  position: absolute;
  top: -2px;
  left: -2px;
  z-index: 1;
}
.course_grid .cat a {
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	background-color: #006934;
	border: solid 1px #006934;
	display: inline-block;
	padding: 3px 20px;
	transition: all .3s;
}
.course_grid .cat a.indoor {
  background-color: var(--color2);
	border: solid 1px var(--color2);
}
.course_grid .cat a:hover {
	color: #006934;
	background-color: #fff;
}
.course_grid .cat a.indoor:hover {
  color: var(--color2);
}
.course_grid .tag {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}
.course_grid .tag a {
  font-size: 14px;
  color: var(--color4);
  border: solid 2px var(--color4);
  border-radius: 5px;
  background-color: #fff;
  display: inline-block;
  padding: 0 10px;
  transition: all .3s;
}
.course_grid .tag a:hover {
  color: #fff;
  background-color: var(--color4);
}
.course_grid .box .txt a {
	font-size: 20px;
  line-height: 1.75;
	transition: all .3s;
}
.course_grid .box .txt a:hover {
	color: var(--color2);
}
.course_grid .box .price {
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  text-align: right;
  color: var(--color2);
  margin-top: 10px;
}
.course_grid .box span {
  font-size: 35px;
}
.course_grid .box small {
  font-size: 13px;
}
.course_grid .box .caption {
  font-size: 11px;
  text-align: right;
  color: var(--color2);
  margin-top: 10px;
}
@media screen and (max-width:768px) {
	.course_grid .list {
		gap: 15px;
    margin-bottom: 40px;
	}
	.course_grid .item {
		width: calc((100% - 15px)/2);
    padding: 5px;
	}
  .course_grid .cat a {
    font-size: 13px;
    padding: 3px 15px;
  }
	.course_grid .box {
		margin-top: 15px;
	}
  .course_grid .box .txt a {
    font-size: 16px;
  }
  .course_grid .box .price {
    font-size: 16px;
  }
  .course_grid .box span {
    font-size: 20px;
  }
  .course_grid .box small {
    font-size: 10px;
  }
  .course_grid .box .caption {
    font-size: 10px;
  }
}
@media screen and (max-width:480px) {
  .course_grid .box .txt a {
    font-size: 14px;
    letter-spacing: 0;
  }
}

/*　top_voice　*/
.top_voice {
  background-color: #f5f5f5;
  position: relative;
}
.top_voice .wrap {
  max-width: 850px;
}
.top_voice .item {
  background-color: #fff;
  padding: 20px;
  margin-bottom: 40px;
  box-sizing: border-box;
}
.top_voice .item:last-child {
  margin-bottom: 0;
}
.top_voice .title {
  font-size: 18px;
  margin-bottom: 20px;
}
@media screen and (max-width:768px) {
  .top_voice .title {
    font-size: 16px;
  }
}

/*　faq_section　*/
.faq_section .wrap {
  max-width: 850px;
}
.faq_section .item {
	padding: 20px 0;
	border-bottom: solid 1px  var(--color1);
}
.faq_section .item:first-child {
	border-top: solid 1px var(--color1);
}
.faq_section .icon {
	width: 35px;
	min-width: 35px;
	line-height: 35px;
	text-align: center;
	color: #fff;
	border-radius: 50%;
	background-color: var(--color2);
	margin-right: 20px;
}
.faq_section .a_box .icon {
	background-color: var(--color4);
}
.faq_section .q_box,
.faq_section .a_box .inn {
	align-items: flex-start;
	padding-left: 20px;
	padding-right: 50px;
}
.faq_section .a_box {
	margin-top: 20px;
}
.faq_accordion .q_box {
	cursor: pointer;
	position: relative;
}
.faq_accordion .q_box:before {
	content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 1px;
  transform: rotate(90deg);
  background: var(--color1);
  transition: all .3s ease-in-out;
}
.faq_accordion .q_box.open:before {
	transform: rotate(180deg);
}
.faq_accordion .q_box:after {
	content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 1px;
  background: var(--color1);
  transition: all .2s ease-in-out;
}
.faq_accordion .q_box.open:after {
	opacity: 0;
}
.faq_accordion .a_box {
	display: none;
}
@media screen and (max-width:768px) {
	.faq_section .icon {
		font-size: 14px;
	}
	.faq_section .q_box,
	.faq_section .a_box .inn {
		padding-right: 40px;
	}
	.faq_accordion .q_box:before,
	.faq_accordion .q_box:after {
		right: 10px;
	}
}

/*　top_gallery　*/
.top_gallery .slick-slide {
  margin: 0 10px;
}
@media screen and (max-width:768px) {
  .top_gallery .slick-slide {
    margin: 0 5px;
  }
}

/*　フッター　*/
.footer {
	padding: 30px 0;
}
.footer .databox .title {
  font-size: 14px;
  margin-bottom: 10px;
}
.footer .databox .title span {
  font-size: 18px;
}
.footer .databox .txt {
  font-size: 14px;
  line-height: 1.75;
}
.footer .databox .txt:last-child {
  margin-top: 10px;
}
.footer .databox .txt svg {
  margin-right: 5px;
}
.footer .databox .txt a {
  text-decoration: underline;
  transition: all .3s;
}
.footer .databox .txt a:hover {
  color: var(--color2);
}
.copyright {
	font-size: 11px;
  color: #fff;
  background-color: var(--color1);
	padding: 10px 0;
}
@media screen and (max-width:960px) {
  .footer {
    padding: 40px 0;
  }
  .footer .databox {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width:768px) {
  .copyright {
    margin-bottom: 62px;
  }
}
@media screen and (max-width:480px) {
  .copyright {
    font-size: 10px;
  }
}

/*　フローティングバナー　*/
.flbnr_pc {
  position: fixed;
  bottom: 20vh;
  right: 0;
  z-index: 1;
}
.flbnr_pc .item {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  margin-bottom: 20px;
}
.flbnr_pc .item:last-child {
  margin-bottom: 0;
}
.flbnr_pc .item a {
  width: 36px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}
.flbnr_pc .item:nth-child(1) a {
  border: solid 1px #006934;
  background-color: #006934;
}
.flbnr_pc .item:nth-child(1):hover a {
  color: #006934;
  background-color: #fff;
}
.flbnr_pc .item:nth-child(2) a {
  border: solid 1px var(--color2);
  background-color: var(--color2);
}
.flbnr_pc .item:nth-child(2):hover a {
  color: var(--color2);
  background-color: #fff;
}
#flbnr {
  position: fixed;
  top: 60vh;
  right: 0;
  z-index: 1;
  transition: all .3s;
}
#flbnr.hide {
  right: -55px;
}
#flbnr .item {
  margin-bottom: 15px;
}
#flbnr .item:last-child {
  margin-bottom: 0;
}
#flbnr .item a {
  font-size: 25px;
  color: #fff;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  background-color: var(--color2);
  padding: 10px 15px;
  display: block;
}
#flbnr .tel a {
  background-color: var(--color4);
}
.flbnr_sp {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
  z-index: 1;
}
.flbnr_sp.scroll {
  opacity: 1;
  visibility: visible;
}
.flbnr_sp .item {
  width: 50%;
  box-sizing: border-box;
}
.flbnr_sp .item:nth-child(1) {
  background-color: #006934;
}
.flbnr_sp .item:nth-child(2) {
  background-color: var(--color2);
}
.flbnr_sp .item a {
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 10px;
  display: block;
}
.flbnr_sp .item span {
  font-size: 16px;
  display: block;
}
@media screen and (max-width:1200px) {
  .flbnr_pc {
    display: none;
  }
}
@media screen and (min-width:769px) {
  .flbnr_sp {
    display: none;
  }
}
@media screen and (min-width:1201px) {
  #flbnr {
    display: none;
  }
}

/*　商品詳細ページ　*/
.shingle_container {
  padding-top: 30px;
}
.shingle_container .breadcrumbs {
  margin-top: 0;
  margin-bottom: 30px;
}
.shingle_container .cat {
  margin-bottom: 10px;
}
.shingle_container .cat a {
  font-size: 18px;
  color: #fff;
  border: solid 1px #006934;
  background-color: #006934;
  display: inline-block;
  padding: 0 20px;
  transition: all .3s;
}
.shingle_container .cat a.indoor {
  border: solid 1px var(--color2);
  background-color: var(--color2);
}
.shingle_container .cat a:hover {
  color: #006934;
  background-color: #fff;
}
.shingle_container .cat a.indoor:hover {
  color: var(--color2);
}
.shingle_container .product_title {
  font-size: 40px;
}
.shingle_container .inn {
  gap: 100px;
  margin-top: 30px;
}
.shingle_container .pictbox {
  width: 55%;
  box-sizing: border-box;
}
.shingle_container .databox {
  width: 45%;
  box-sizing: border-box;
}
.shingle_container .product {
	margin:0 0 10px 0;
}
.shingle_container .producty .slick-slide {
  line-height: 0;
}
.shingle_container .pictbox .choice-btn .slick-track {
	width: 100% !important;
  display: flex;
  flex-wrap: wrap;
  transform: unset !important;
}
.shingle_container .pictbox .choice-btn .slick-slide {
	width: 23.5% !important;
  line-height: 0;
  cursor: pointer;
  outline: none;
  background:#333;
	margin: 0 2% 2% 0;
	transition: all .3s;
}
.shingle_container .pictbox .choice-btn .slick-slide:nth-child(4n) {
	margin-right: 0;
}
.shingle_container .pictbox .choice-btn .slick-slide {
  opacity: .75;
}
.shingle_container .pictbox .choice-btn .slick-slide.slick-current {
 opacity: 1; 
}
.shingle_container .pictbox .choice-btn .slick-slide:hover {
  opacity: 1;
}
.shingle_container .databox .tag {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}
.shingle_container .databox .tag a {
  font-size: 14px;
  color: var(--color4);
  border: solid 2px var(--color4);
  border-radius: 5px;
  background-color: #fff;
  display: inline-block;
  padding: 0 10px;
  transition: all .3s;
}
.shingle_container .databox .tag a:hover {
  color: #fff;
  background-color: var(--color4);
}
.shingle_container .databox .pricebox {
  margin-bottom: 40px;
}
.shingle_container .databox .price {
  font-size: 30px;
  font-weight: bold;
  text-align: right;
  color: var(--color2);
}
.shingle_container .databox .caption {
  font-size: 11px;
  text-align: right;
  color: var(--color2);
}
.shingle_container .databox span {
  font-size: 50px;
}
.shingle_container .databox span::before {
  content: "料理のみ";
  font-size: 20px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  margin-right: 10px;
}
.shingle_container .databox small {
  font-size: 14px;
}
.shingle_container .databox .product_txt {
  margin-bottom: 40px;
}
.shingle_container .databox .box {
  border-bottom: dashed 2px #ccc;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.shingle_container .databox .box .icon {
  font-size: 13px;
  color: #fff;
  background-color: var(--color4);
  border-radius: 5px;
  display: inline-block;
  padding: 5px 10px;
  margin-bottom: 10px;
}
.shingle_container .databox .box .icon svg {
  margin-right: 5px;
}
.shingle_container .databox .box .drink {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: normal;
}
.product_btn {
  width: 100%;
  box-sizing: border-box;
  margin-top: 80px;
}
.product_btn a {
  font-size: 18px;
  color: #fff;
  border: solid 2px var(--color2);
  border-radius: 50vh;
  background-color: var(--color2);
  padding: 15px;
  display: block;
  transition: all .3s;
}
.product_btn a:hover {
  color: var(--color2);
  background-color: #fff;
}
.product_btn a svg {
  margin-right: 10px;
}
.connection_section {
  background-color: #fcf4ce;
  background-image:
    radial-gradient(#fff 20%, transparent 20%),
    radial-gradient(#fff 20%, transparent 20%);
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
  position: relative;
}
.connection_section .con_title {
  font-size: 40px;
  margin-bottom: 40px;
}
.connection_section .list {
	flex-wrap: wrap;
	gap: 60px 20px;
}
.connection_section .item {
	width: calc((100% - 60px)/4);
  border: solid 2px var(--color1);
  background-color: #fff;
  padding: 10px;
	box-sizing: border-box;
  position: relative;
}
.connection_section .pict {
	overflow: hidden;
  position: relative;
}
.connection_section .box {
	margin-top: 20px;
}
.connection_section .cat {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
  position: absolute;
  top: -2px;
  left: -2px;
  z-index: 1;
}
.connection_section .cat a {
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	background-color: #006934;
	border: solid 1px #006934;
	display: inline-block;
	padding: 3px 20px;
	transition: all .3s;
}
.connection_section .cat a.indoor {
  background-color: var(--color2);
	border: solid 1px var(--color2);
}
.connection_section .cat a:hover {
	color: #006934;
	background-color: #fff;
}
.connection_section .cat a.indoor:hover {
  color: var(--color2);
}
.connection_section .tag {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}
.connection_section .tag a {
  font-size: 14px;
  color: var(--color4);
  border: solid 2px var(--color4);
  border-radius: 5px;
  background-color: #fff;
  display: inline-block;
  padding: 0 10px;
  transition: all .3s;
}
.connection_section .tag a:hover {
  color: #fff;
  background-color: var(--color4);
}
.connection_section .box .txt a {
	font-size: 20px;
  line-height: 1.75;
	transition: all .3s;
}
.connection_section .box .txt a:hover {
	color: var(--color2);
}
.connection_section .box .price {
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  text-align: right;
  color: var(--color2);
  margin-top: 10px;
}
.connection_section .box span {
  font-size: 35px;
}
.connection_section .box small {
  font-size: 13px;
}
.connection_section .box .caption {
  font-size: 11px;
  text-align: right;
  color: var(--color2);
  margin-top: 10px;
}
.connection_section .list .cms_txt {
  width: 100%;
  text-align: center;
}
.shingle_container .guide_txt {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
  margin-top: 15px;
}
.shingle_container .guide_txt a {
  font-size: 14px;
  text-decoration: underline;
  transition: all .3s;
}
.shingle_container .guide_txt a:hover {
  color: var(--color2);
}
@media screen and (max-width:960px) {
  .shingle_container .inn {
    flex-wrap: wrap;
  }
  .shingle_container .pictbox,
  .shingle_container .databox {
    width: 100%;
  }
}
@media screen and (max-width:768px) {
  .shingle_container .inn {
    gap: 60px;
  }
  .shingle_container .cat a {
    font-size: 14px;
  }
  .shingle_container .product_title {
    font-size: 30px;
  }
  .shingle_container .databox .tag a {
    font-size: 12px;
  }
  .shingle_container .databox .pricebox {
    margin-bottom: 20px;
  }
  .shingle_container .databox .price {
    font-size: 20px;
  }
  .shingle_container .databox span {
    font-size: 40px;
  }
  .shingle_container .databox small {
    font-size: 12px;
  }
  .shingle_container .databox .product_txt {
    margin-bottom: 20px;
  }
  .shingle_container .databox .box .icon {
    font-size: 12px;
  }
  .shingle_container .databox .box .drink {
    font-size: 16px;
  }
  .connection_section .con_title {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .connection_section .list {
		gap: 20px 15px;
	}
	.connection_section .item {
		width: calc((100% - 15px)/2);
    padding: 5px;
	}
	.connection_section .box {
		margin-top: 15px;
	}
  .connection_section .cat a {
    font-size: 13px;
    padding: 3px 15px;
  }
  .connection_section .box .txt a {
    font-size: 16px;
  }
  .connection_section .box span {
    font-size: 20px;
  }
  .connection_section .box small {
    font-size: 10px;
  }
  .shingle_container .guide_txt a {
    font-size: 12px;
  }
}
@media screen and (max-width:480px) {
  .connection_section .box .txt a {
    font-size: 14px;
    letter-spacing: 0;
  }
}

/*　お問い合わせ　*/
.contact_container .wrap,
.form_container .wrap {
  max-width: 600px;
}
.contact_container {
  padding-bottom: 80px;
}
.form_container {
  background-color: #f6e47d;
  padding-top: 80px;
}
.form_container .box {
	margin-bottom: 30px;
}
.form_container .box .filter_box {
  position: relative;
}
.form_container .box .filter_box::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.form_container .box .form_txt {
	font-size: 16px;
  font-weight: bold;
	margin-bottom: 10px;
}
.form_container .box .comment {
	font-size: 13px;
	margin-top: 2em;
	margin-bottom: 10px;
}
.form_container .box .form_txt span.req,
.form_container .box .comment span.req {
	font-size: 13px;
	color: #FF0000;
	margin-left: 0.5em;
}
.form_container .box input[type="text"],
.form_container .box input[type="email"],
.form_container .box input[type="tel"],
.form_container .box select {
	width: 100%;
	height: 50px;
	font-size: 16px;
	box-sizing: border-box;
	background: none;
	background-color: #fff;
	border: none;
	border-radius: 5px;
	padding: 10px;
	outline: none;
}
.form_container .box input[type="text"].middle,
.form_container .box input[type="tel"] {
  width: 30%;
}
.form_container .box input[type="text"].calendar {
  width: 50%;
}
.form_container .box textarea {
	width: 100%;
	font-size: 14px;
	background: none;
	background-color: #fff;
	border: none;
	border-radius: 5px;
	padding: 10px;
	outline: none;
}
.form_container .box .filebox {
	background-color: #fff;
	border-radius: 5px;
	padding: 30px;
	margin-bottom: 10px;
}
.form_container .box .caution {
	font-size: 13px;
	line-height: 1.8;
}
.form_container .underline {
	text-decoration: underline;
}
.mwform-radio-field input {
  margin-top: 0;
  position: relative;
  top: -2px;
}
.form_btn {
	width: 100%;
	max-width: 380px;
	margin: 50px auto 0;
}
.form_btn input[type="submit"],
.form_btn button {
	width: 100%;
	line-height: 60px;
  font-size: 16px;
	font-weight: bold;
  letter-spacing: .1em;
  text-align: center;
  color: #fff;
  display: block;
  box-sizing: border-box;
  border: solid 2px var(--color2);
  background-color: var(--color2);
  border-radius: 40vh;
  padding: 0 10px;
  cursor: pointer;
}
.form_container span.mwform-checkbox-field {
	text-align: center;
	display: block;
}
.form_btn button {
	margin-top: 20px;
}
.thanks_box {
  padding-top: 0;
}
.thanks_box .cms_txt {
  text-align: center;
}
@media screen and (min-width:769px)  {
	.form_btn input[type="submit"],
	.form_btn button {
		transition: all .3s;
	}
	.form_btn input[type="submit"]:hover,
	.form_btn button:hover {
		color: var(--color2);
		background-color: #fff;
	}
}
@media screen and (max-width:768px) {
  #contact .titlebox .title {
    font-size: 20px;
  }
  #contact .titlebox .txt {
    font-size: 13px;
  }
  .form_container .box input[type="tel"] {
    width: 50%;
  }
  .form_container .box input[type="text"].calendar {
    width: 100%;
  }
	.form_btn input[type="file"],
	.form_btn input[type="submit"],
	.form_btn button {
		line-height: 50px;
		font-size: 14px;
		appearance: none;
		-webkit-appearance: none;
	}
  .thanks_box .cms_txt {
    text-align: justify;
  }
}

/*　お問い合わせステップ　*/
.form_step_box {
  display: flex;
  justify-content: center;
  position: relative;
  margin-top: 60px;
}
.form_step_box:before {
  content: "";
  width: 180px;
  height: 1px;
  background-color: #ccc;
  display: block;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateY(0) translateX(-50%);
  -webkit-transform: translateY(0) translateX(-50%);
}
.form_step {
  width: 90px;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  color: #ccc;
}
.form_step.active {
  color: var(--color2);
}
.form_step:before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #ccc;
  display: block;
  margin: 0 auto 15px;
  border-radius: 50%;
  position: relative;
}
.form_step.active:before {
  background-color: var(--color2);
}
@media screen and (max-width:768px) {
  .form_step_box {
    margin-top: 40px;
  }
}

/*　メニュー一覧　*/
.menu_container .course_navlist {
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 100px;
}
.menu_container .course_navitem {
  width: 20%;
  text-align: center;
  box-sizing: border-box;
}
.menu_container .course_navitem a {
  font-weight: bold;
  color: var(--color2);
  border: solid 2px var(--color2);
  padding: 15px;
  display: block;
  transition: all .3s;
}
.menu_container .course_navitem a:hover {
  color: #fff;
  background-color: var(--color2);
}
.menu_container .course_navitem.active a {
  color: #fff;
  background-color: var(--color2);
}
.menu_container .list {
	flex-wrap: wrap;
	gap: 60px 20px;
}
.menu_container .item {
	width: calc((100% - 60px)/4);
  border: solid 2px var(--color1);
  background-color: #fff;
  padding: 10px;
	box-sizing: border-box;
  position: relative;
}
.menu_container .pict {
	overflow: hidden;
  position: relative;
}
.menu_container .box {
	margin-top: 20px;
}
.menu_container .cat {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
  position: absolute;
  top: -2px;
  left: -2px;
  z-index: 1;
}
.menu_container .cat a {
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	background-color: #006934;
	border: solid 1px #006934;
	display: inline-block;
	padding: 3px 20px;
	transition: all .3s;
}
.menu_container .cat a.indoor {
  background-color: var(--color2);
	border: solid 1px var(--color2);
}
.menu_container .cat a:hover {
	color: #006934;
	background-color: #fff;
}
.menu_container .cat a.indoor:hover {
  color: var(--color2);
}
.menu_container .tag {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}
.menu_container .tag a {
  font-size: 14px;
  color: var(--color4);
  border: solid 2px var(--color4);
  border-radius: 5px;
  background-color: #fff;
  display: inline-block;
  padding: 0 10px;
  transition: all .3s;
}
.menu_container .tag a:hover {
  color: #fff;
  background-color: var(--color4);
}
.menu_container .box .txt a {
	font-size: 20px;
  line-height: 1.75;
	transition: all .3s;
}
.menu_container .box .txt a:hover {
	color: var(--color2);
}
.menu_container .box .price {
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  text-align: right;
  color: var(--color2);
  margin-top: 10px;
}
.menu_container .box span {
  font-size: 35px;
}
.menu_container .box small {
  font-size: 13px;
}
.menu_container .box .caption {
  font-size: 11px;
  text-align: right;
  color: var(--color2);
  margin-top: 10px;
}
@media screen and (max-width:768px) {
  .menu_container .course_navlist {
    gap: 15px;
    margin-bottom: 60px;
  }
  .menu_container .course_navitem {
    width: 100%;
  }
	.menu_container .list {
		gap: 20px 15px;
	}
	.menu_container .item {
		width: calc((100% - 15px)/2);
    padding: 5px;
	}
  .menu_container .cat a {
    font-size: 13px;
    padding: 3px 15px;
  }
	.menu_container .box {
		margin-top: 15px;
	}
  .menu_container .box .txt a {
    font-size: 16px;
  }
  .menu_container .box span {
    font-size: 20px;
  }
  .menu_container .box small {
    font-size: 10px;
  }
  .menu_container .box .caption {
    font-size: 10px;
  }
}
@media screen and (max-width:480px) {
  .menu_container .box .txt a {
    font-size: 14px;
    letter-spacing: 0;
  }
}

/* ページャー
------------------------------*/
.wp-pagenavi {
  text-align: center;
  margin-top: 80px;
}
.wp-pagenavi a,
.wp-pagenavi span.current {
  font-size: 16px;
  font-weight: bold;
  color: #ccc;
  margin: 0 2rem;
  transition: all .3s;
}
.wp-pagenavi span.current {
  color: var(--color1);
}
.wp-pagenavi a:hover {
  color: var(--color1);
}
.wp-pagenavi a.previouspostslink,
.wp-pagenavi a.nextpostslink {
  font-size: 18px;
}
.wp-pagenavi a.previouspostslink {
  margin-left: 0;
}
.wp-pagenavi a.nextpostslink {
  margin-right: 0;
}
.wp-pagenavi a.previouspostslink:hover,
.wp-pagenavi a.nextpostslink:hover {
  text-decoration: underline;
}
@media screen and (max-width:768px) {
  .wp-pagenavi a,
  .wp-pagenavi span.current {
    font-size: 13px;
    margin: 0 1rem;
  }
  .wp-pagenavi a.previouspostslink,
  .wp-pagenavi a.nextpostslink {
    font-size: 14px;
  }
}

/* 詳細ページャー
------------------------------*/
.post-navigation {
	display: flex;
  justify-content: center;
  margin-top: 150px;
}
.post-navigation .nav-previous,
.post-navigation .list,
.post-navigation .nav-next {
	max-width: 120px;
  width: 100%;
  border: solid 1px var(--color1);
}
.post-navigation .nav-previous a,
.post-navigation .list a,
.post-navigation .nav-next a {
	font-size: 13px;
  text-align: center;
  padding: 10px 0;
  display: block;
}
.post-navigation .list {
	margin: 0 1em;
}
.post-navigation .nav-previous:hover,
.post-navigation .list:hover,
.post-navigation .nav-next:hover {
	background-color: var(--color2);
	border: solid 1px var(--color2);
	transition: all .3s;
}
.post-navigation .nav-previous:hover a,
.post-navigation .list:hover a,
.post-navigation .nav-next:hover a {
	color: #fff;
}
@media screen and (max-width:768px) {
  .post-navigation {
    margin-top: 80px;
  }
}

/*　SNSボタン　*/
.sns_list {
	margin-top: 40px;
}
.sns_list a {
	text-decoration: none;
}
.sns_item {
	margin-right: 10px;
}
.sns_item:last-child {
	margin-right: 0;
}

/*　ご利用ガイド　*/
.service_container .wrap {
  max-width: 850px;
}
.service_container .guidebox {
  margin-bottom: 100px;
}
.service_container .list {
  flex-wrap: wrap;
  gap: 20px;
}
.service_container .item {
  width: calc((100% - 20px)/2);
  border: solid 1px var(--color2);
  box-sizing: border-box;
}
.service_container .item a {
  padding: 15px;
  color: var(--color2);
  display: block;
  transition: all .3s;
}
.service_container .item a:hover {
  color: #fff;
  background-color: var(--color2);
}
.service_container .ank {
  padding-top: 100px;
}
.service_container .box .title {
  font-size: 25px;
  border-left: solid 8px var(--color2);
  padding: 10px 15px;
  margin-bottom: 30px;
}
.service_container .box .inn {
  margin-bottom: 60px;
}
.service_container .box .inn:last-child {
  margin-bottom: 0;
}
.service_container .box .inn .sub {
  font-size: 18px;
  padding-left:1em;
	text-indent:-1em;
  margin-bottom: 20px;
}
.service_container .box .inn .sub::before {
  content: "●";
  color: var(--color2);
}
.service_container .box .inn .l_box {
  margin-top: 20px;
}
.service_container .box .boxlist .boxitem {
  font-size: 16px;
  line-height: 1.75;
  text-align: justify;
  padding-left:1em;
	text-indent:-1em;
}
.service_container .box .pict {
  margin-top: 15px;
}
.service_container .box .pict span {
  font-size: 11px;
  display: block;
  margin-top: 10px;
}
@media screen and (max-width:768px) {
  .service_container .guidebox {
    margin-bottom: 60px;
  }
  .service_container .list {
    gap: 10px;
  }
  .service_container .item {
    width: calc((100% - 10px)/2);
  }
  .service_container .item a {
    font-size: 13px;
    padding: 15px 5px;
  }
  .service_container .box .title {
    font-size: 20px;
    border-left: solid 5px var(--color2);
  }
  .service_container .box .inn .sub {
    font-size: 16px;
  }
  .service_container .box .boxlist .boxitem {
    font-size: 13px;
  }
}

/*　プライバシーポリシー　*/
.privacy_container .wrap {
  max-width: 850px;
}
.privacy_container .box {
  margin-bottom: 60px;
}
.privacy_container .box:last-child {
  margin-bottom: 0;
}
.privacy_container .box .sub {
  font-size: 18px;
  margin-bottom: 10px;
}
.privacy_container .box .cms_txt {
  line-height: 2;
}
@media screen and (max-width:768px) {
  .privacy_container .box {
    margin-bottom: 40px;
  }
  .privacy_container .box .sub {
    font-size: 14px;
  }
}

/* パンくず
------------------------------*/
.breadcrumbs {
  font-size: 12px;
  position: relative;
  z-index: 1;
  margin-top: 30px;
}
.breadcrumbs span:hover a {
  color: var(--color2);
  text-decoration: underline;
}
.breadcrumbs span a span:after {
  content: "\e5cc";
  font-family: 'Material Icons';
  display: inline-block;
  position: relative;
  top: 2px;
  margin: 0 5px;
  color: #1a1a1a;
}

/* ご利用規約
------------------------------*/
.terms_container .wrap {
  max-width: 850px;
}
.terms_container .box {
  margin-bottom: 60px;
}
.terms_container .box:last-child {
  margin-bottom: 0;
}
.terms_container .title {
  font-size: 22px;
  color: var(--color2);
  border-left: solid 10px var(--color2);
  padding: 10px 15px;
  margin-bottom: 20px;
}
.terms_container .childbox {
  margin-bottom: 30px;
}
.terms_container .childbox:last-child {
  margin-bottom: 0;
}
.terms_container .childtitle {
  font-size: 18px;
  margin-bottom: 10px;
}
.terms_container .list {
  margin-top: 20px;
}
.terms_container .item {
  font-size: 16px;
  line-height: 1.75;
  padding-left:1em;
	text-indent:-1em;
  margin-bottom: 5px;
}
.terms_container .item:last-child {
  margin-bottom: 0;
}
.terms_container table {
  width: 100%;
  font-size: 14px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  border: solid 1px #ccc;
  box-sizing: border-box;
}
.terms_container table th,
.terms_container table td {
  text-align: center;
  vertical-align: middle;
  padding: 10px 20px;
}
.terms_container table th {
  border-bottom: solid 1px #ccc;
  background-color: #F8E7E9;
}
.terms_container table th span {
  font-size: 12px;
  white-space: nowrap;
  display: block;
}
.terms_container table td {
  border-right: dotted 1px #ccc;
  border-bottom: dotted 1px #ccc;
}
.terms_container table tr:last-child td {
  border-bottom: none;
}
.terms_container table td.left {
  text-align: justify;
  border-right: none;
}
.terms_container table td span.nowrap {
  white-space: nowrap;
}
.terms_container table td span.num {
  font-size: 20px;
}
@media screen and (max-width:768px) {
  .terms_container .box {
    margin-bottom: 40px;
  }
  .terms_container .title {
    font-size: 18px;
    border-left: solid 8px var(--color2);
  }
  .terms_container .childtitle {
    font-size: 14px;
  }
  .terms_container .item {
    font-size: 13px;
  }
  .terms_container .tablebox {
    overflow-x: scroll;
  }
  .terms_container table {
    width: 850px;
  }
  .terms_container .comment {
    font-size: 11px;
    margin-top: 5px;
  }
}