@charset "UTF-8";
/*---------------------------------
  Basic
---------------------------------*/
body {
	color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
	line-height: 1.8em;
	margin: 0;
	padding: 0;
  position: relative;
}

h1,h2,h3,h4,h5 {
  letter-spacing: 0.1em;
	margin: 0;
	padding: 0;
}

img {
	width: 100%;
	border: 0;
	vertical-align: bottom;
  display: block;
}

p,ul,li,dl,dt,dd,th,td {
	margin: 0;
	padding: 0;
}

ol,ul,li {
	list-style: none;
}

i {
	vertical-align: middle;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

::selection {
	background: #dfe1e5;
}

::-moz-selection {
	background: #dfe1e5;
}

@media screen and (max-width: 896px) {	
	body {
		min-width: 300px;
	}
}

/*---------------------------------
  ScrollTrigger
---------------------------------*/
.invisible {
  transition: all 1s ease;
  opacity: 0.0;
}

.visible {
  transition: all 1s ease;
  opacity: 1.0;
}

/*---------------------------------
  Link
---------------------------------*/
a:link, a:visited, a:hover, a:active {
	color: #333;
	text-decoration: none;
}

.btn {
	max-width: 300px;
	height: 60px;
	line-height: 60px;
	color: #fff !important;
	font-weight: 700;
	text-align: center;
	letter-spacing: 0.1em;
	border-radius: 3px;
	padding: 0 2em;
	display: block;
	position: relative;
}

.btn_forward:after {
	content: "\f105";
	font-family: 'Font Awesome 5 Free';
	position: absolute;
	right: 1.5em;
}

.btn_forward:hover:after {
	right: 1.3em;
	opacity: 0.8;
	transition: 0.3s;
}

.btn_back:after {
	content: "\f104";
	font-family: 'Font Awesome 5 Free';
	position: absolute;
	left: 1.5em;
}

.btn_back:hover:after {
	left: 1.3em;
	opacity: 0.8;
	transition: 0.3s;
}

/*---------------------------------
  Common
---------------------------------*/
.contents_wrap {
  margin-top: 7em;
}

.background_wrap {
  padding: 5em 0;
}

.wrapper {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 1em;
}

.noto_serif {
  font-family: "Noto Serif JP", serif;
}

.common_wrap h2 {
  font-size: clamp(21px, 3vw, 28px);
  text-align: center;
  margin-bottom: 1em;
  position: relative;
}

.common_wrap h2 span {
  color: #6b8e23;
  font-size: clamp(12px, 2vw, 14px);
  font-weight: 500;
  display: block;
  margin-top: 1em;
}

.common_wrap h2 span:before,
.common_wrap h2 span:after {
  content: '';
  width: 30px;
  height: 1px;
  background: #6b8e23;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.5em;
}

.page_title h2 {
  color: #fff;
  font-size: clamp(21px, 3vw, 28px);
  text-align: center;
  /*background: #8e1919;*/
  background: url("images/top/bg_title.jpg") no-repeat;
  background-position: top center;
  background-size: cover;
  padding: 2em 4%;
}

.text_box p:nth-child(n+2) {
  margin-top: 1em;
}

.fish_decoration {
  width:  200px;
  height: 90px;
  position: absolute;
  top: -1em;
  right: 4%;
  animation-name: fish_decoration;animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
}

@keyframes fish_decoration {
  0%{
  transform: translateY(0);
  }
  100%{
  transform: translateY(20px);
  }
}

@media print, screen and (max-width: 896px) {
  .contents_wrap {
    margin-top: 3em;
  }
  
  .background_wrap {
    padding: 3em 0;
  }
  
  .wrapper {
    padding: 0 4%;
  }
  
  .fish_decoration {
    width:  150px;
    height: 68px;
  }
}

@media print, screen and (max-width: 480px) {
  .fish_decoration {
    width:  100px;
    height: 45px;
  }
}

/*---------------------------------
  Header
---------------------------------*/
header {
  padding: 1em 4%;
}

.header_content {
  position: relative;
}

.header_content h1 {
  width: 180px;
  position: absolute;
  top: 0.5em;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1;
}

.header_content h1 a:hover {
  opacity: 0.8;
  transition: 0.3s;
}

.header_content,
.header_left_box,
.header_left_box nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.header_left_box {
  font-weight: 600;
  margin-right: auto;
}

.icon_nav {
  display: flex;
  flex-wrap: wrap;
}

.icon_nav li {
  text-align: center;
}

.header_left_box nav li:nth-of-type(n+2) {
  margin-left: 1.5em;
}

.header_left_box nav li a {
  display: block;
}

.header_left_box nav li a:after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: #8e1919;
  margin: 0.5em auto 0 auto;
  transition: width 0.3s ease;
}

.header_left_box nav li a:hover:after {
  width: 100%;
}

.icon_nav li a {
  padding: 0.5em;
  display: block;
}

.icon_nav li a i {
  color: #4a4a4a;
}

.icon_nav li a span {
  font-size: 12px;
  display: block;
}

.icon_nav li a:hover,
.icon_nav li a:hover i {
  color: #6b8e23;
  transition: 0.3s;
}

@media print, screen and (max-width: 956px) {
  .header_content {
    padding-top: 3em;
  }
  
  .header_left_box,
  .header_right_box {
    display: none;
  }
  
  .header_content h1 {
    width: 120px;
    top: 0.5em;
  }
}

/*---------------------------------
  Burger
---------------------------------*/
.burger_area {
	position: absolute;
	top: 0;
	right: 0;
}

.btn_burger {
	display: flex;
	justify-content: flex-end;
}

.btn_burger a {
  z-index: 20;
  position: relative;
  width: 30px;
  height: 26px;
	display: block;
  cursor: pointer;
	margin: 15px;
}

.btn_burger a,
.btn_burger a span {
	display: inline-block;
  transition: all 0.3s;
  box-sizing: border-box;
}

.btn_burger a span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background: #333;
  border-radius: 4px;
}

.btn_burger a span:nth-of-type(1) {
  top: 0;
}

.btn_burger a span:nth-of-type(2) {
  top: 11px;
}

.btn_burger a span:nth-of-type(3) {
  bottom: 0;
}

.btn_burger a.active span:nth-of-type(1) {
  background: #fff;
  -webkit-transform: translateY(11px) rotate(-45deg);
  transform: translateY(11px) rotate(-45deg);
}

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

.btn_burger a.active span:nth-of-type(3) {
  background: #fff;
  -webkit-transform: translateY(-11px) rotate(45deg);
  transform: translateY(-11px) rotate(45deg);
}

.burger {
  width: 100%;
  height: 100%;
  background: rgba(51,51,51,0.9);
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  z-index: 10;
}

.burger.open {
	display: block;
}

.burger.close {
	display: none;
}

.burger_menu {
	height: 100%;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
}

.burger_menu li {
	font-weight: 600;
  display: block;
  margin: 2em;
}
	
.burger_menu li:before {
	color: #fff;
	content: "\f105";
	font-family: "Font Awesome 5 Free";
	vertical-align: middle;
	margin-right: 1em;
}

.burger_menu li a {
  color: #fff !important;
}

@media print, screen and (min-width: 897px) {
	.burger_area {
		display: none;
	}
}
/*---------------------------------

  トップページ

---------------------------------*/
/*---------------------------------
  hero
---------------------------------*/
.hero_wrap {
  position: relative;
}

.hero_content {
  overflow: hidden;
}

.hero_box {
  width: 100%; /* 準備中用 */
	/*max-width: 900px;*/
	margin: 0 auto;
}

.hero_wrap .slick-list {
	overflow: visible !important;
}

.hero_box .slick-slide {
  opacity: 0.5;
  transition: opacity 0.5s ease;
  padding: 0 1em;
}

.hero_box .slick-slide img {
  max-height: 650px; /* 準備中用 */
  object-fit: cover; /* 準備中用 */
  border-radius: 0.5em;
}

.hero_box .slick-center {
  opacity: 1 !important;
}

.slick-arrow {
	z-index: 5;
}

.slick-prev:before,
.slick-next:before {
	font-family: "Font Awesome 5 Free" !important;
	font-size: 21px !important;
  font-weight: 600;
	opacity: 1 !important;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  color: #2b2b8c;
}

.slick-prev {
	left: 0 !important;
}

.slick-prev:before {
  content: "\f104" !important;
}

.slick-next {
  right: 0 !important;
}

.slick-next:before {
  content: "\f105" !important;
}

.slick-dotted.slick-slider {
  margin-bottom: 3em !important;
}

.slick-dots {
  bottom: -3em !important;
  z-index: 99;
}

.slick-dots li {
  margin: 0 0.5em;
}

.slick-dots li button:before {
  content: '\f578' !important;
	font-family: "Font Awesome 5 Free" !important;
  color: #e2e2f6 !important;
  font-size: 18px !important;
  font-weight: 600;
  line-height: 20px;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li button:hover:before {
  color: #2b2b8c !important;
  opacity: 0.8;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  color: #2b2b8c !important;
}

@media print, screen and (max-width: 480px) {
  .hero_box .slick-slide {
    padding: 0;
  }
}

/*---------------------------------
  公開前
---------------------------------*/
.preparation_content {
  outline: 3px solid #8e1919;
  outline-offset: 5px;
  border: solid 1px #8e1919;
  padding: 1.5em;
}

.preparation_content p {
  color: #8e1919;
  font-size: clamp(16px, 2.5vw, 21px);
  font-weight: 600;
  text-align: center;
  line-height: 1.8em;
}

@media print, screen and (max-width: 480px) {
  .preparation_content p {
    text-align: left;
  }
}

/*---------------------------------
  Catch
---------------------------------*/
.catch_thumb:after {
  content: '';
  width: 300px;
  height: 135px;
  background: url("images/top/catch_wave.png") no-repeat;
  background-size: cover;
  position: absolute;
  left: -40%;
  bottom: 2em;
}

.catch_wrap .wrapper {
  max-width: 900px;
}

.catch_content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}

.catch_thumb {
  width: 45vh;
  height: 45vh;
  background: url("images/top/catch_thumb.jpg") no-repeat;
  background-size: cover;
  background-position: center center;
  animation: fluidrotate 30s ease 0s infinite;
  padding: 1em;
  position: relative;
}

@keyframes fluidrotate {
  0%, 100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}

.catch_box {
  font-weight: 600;
  writing-mode: vertical-rl;
  padding: 1em;
  position: relative;
  z-index: 2;
}

.catch_box h2 {
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 2em;
}

.catch_box p {
  color: #4a4a4a;
  font-size: clamp(14px, 2vw, 18px);
  line-height: 2em;
  letter-spacing: 0.1em;
  margin-right: 1em;
  padding-top: 1.5em;
}

@media print, screen and (max-width: 896px) {
  .catch_thumb:after {
    width: 200px;
    height: 90px;
    left: -20%;
  }
}

@media print, screen and (max-width: 480px) {
  .catch_thumb:after {
    width: 150px;
    height: 68px;
    left: -30%;
  }
  
  .catch_thumb {
    width: 30vh;
    height: 30vh;
  }
  
  .catch_box {
    margin-top: 2em;
  }
}

/*---------------------------------
  おすすめ商品
---------------------------------*/
.recommend_wrap {
  background: linear-gradient(180deg, #f5f5f5 0%, #f5f5f5 60%, #fff 60%, #fff 100%);
  padding-top: 5em;
  position: relative;
}

.recommend_box {
  display: flex;
  flex-wrap: wrap;
}

.recommend_inner {
  width: calc(100% / 3 - 2em);
  font-size: 16px;
  text-align: center;
  margin: 1em;
  cursor: pointer;
}

.recommend_inner h3 {
  font-size: 16px;
  margin: 1em 0 0.3em 0;
}

.recommend_inner p {
  color: #8e1919;
}

.recommend_inner .zoom_thumb {
  overflow: hidden;
}

.recommend_inner:hover .zoom_thumb img {
	transform: scale(1.1);
	opacity: 0.7;
	transition: 0.3s;
}

@media print, screen and (max-width: 896px) {
  .recommend_wrap {
    background: linear-gradient(180deg, #f5f5f5 0%, #f5f5f5 40%, #fff 40%, #fff 100%);
  }
  
  .recommend_inner {
    width: calc(100% / 2 - 2em);
  }
}

@media print, screen and (max-width: 480px) {
  .recommend_wrap {
    background: linear-gradient(180deg, #f5f5f5 0%, #f5f5f5 25%, #fff 25%, #fff 100%);
  }
  
  .recommend_inner {
    width: 100%;
  }
}

/*---------------------------------
  地域から探す
---------------------------------*/
.wave_wrap {
  position: relative;
  height: 150px;
}

.wave_wrap canvas {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.search_area_wrap {
  background: linear-gradient(180deg, #008DBD 0%, #008DBD 30%, #fff 30%, #fff 100%);
  position: relative;
  margin-top: -0.5em;
  padding-top: 0.5em;
}

.search_area_wrap .fish_decoration {
  left: 4%;
  right: inherit;
}

.search_area_content h2,
.search_area_content h2 span {
  color: #fff;
}

.search_area_content h2 span:before,
.search_area_content h2 span:after {
  background: #fff;
}

.search_area_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.search_area_inner {
  width: 20%;
  margin: 1em 2.5%;
  position: relative;
  cursor: pointer;
}

.search_area_inner:nth-of-type(n+5) {
  margin-top: 5em;
}

.search_area_inner h3 a {
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(16px, 2vw, 18px);
  background: #4a4a4a;
  letter-spacing: 0.2em;
  writing-mode: vertical-lr;
  box-shadow: 3px 3px 0 #d4af37;
  padding: 1em 5px;
  position: absolute;
  top: 0;
  left: 0;
}

.search_area_inner .zoom_thumb {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.search_area_inner:hover .zoom_thumb img {
	transform: scale(1.1);
	opacity: 0.7;
	transition: 0.3s;
}

.search_area_inner ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.5em;
}

.search_area_inner ul li:nth-of-type(n+2):before {
  content: '／';
}

@media print, screen and (max-width: 1201px) {
  .wave_wrap {
    height: 100px;
  }
}

@media print, screen and (max-width: 896px) {
  .wave_wrap {
    height: 150px;
  }
  
  .search_area_wrap {
    background: linear-gradient(180deg, #008DBD 0%, #008DBD 15%, #fff 15%, #fff 100%);
  }
  
  .search_area_inner {
    width: 45%;
    margin: 1em 2.5%;
  }
  
  .search_area_inner:nth-of-type(n+3) {
    margin-top: 2em;
  }
}

/*---------------------------------

  運営会社

---------------------------------*/
/*---------------------------------
  会社概要
---------------------------------*/
.about_box dl {
  display: flex;
  flex-wrap: wrap;
}

.about_box dl dt,
.about_box dl dd {
  border-bottom: solid 1px #dfe1e5;
  padding: 1.5em 1em;
}

.about_box dl dt {
  width: 18%;
  font-weight: 600;
}

.about_box dl dd {
  width: 82%;
}

.about_box dl dd ul {
  display: flex;
  flex-wrap: wrap;
}

.about_box dl dd ul li {
  width: calc(100% / 3);
  list-style: disc inside;
}

.transaction_inner {
  margin-top: 1.5em;
}

.transaction_inner h4 {
  background: #fbf8ed;
  margin-bottom: 0.5em;
  padding: 0.2em 1em;
}

@media print, screen and (max-width: 896px) {
  .about_box dl {
    flex-direction: column;
  }
  
  .about_box dl dt,
  .about_box dl dd {
    width: 100%;
  }
  
  .about_box dl dt {
    border-bottom: none;
    padding-bottom: 0;
  }
  
  .about_box dl dd {
    padding-top: 0.5em;
  }
  
  .about_box dl dd ul li {
    width: calc(100% / 2);
  }
}

@media print, screen and (max-width: 570px) {
  .about_box dl dd ul li {
    width: 100%;
  }
}

/*---------------------------------
  会社沿革
---------------------------------*/
.history_box {
	padding: 2em 0;
	position: relative;
}

.history_box:before {
	content: '';
	width: 2px;
	height: 100%;
	background: #dfe1e5;
	display: block;
	position: absolute;
	top: 0;
	left: 13px;
}

.history_box dl {
	display: flex;
	flex-wrap: wrap;
}

.history_box dl dt,
.history_box dl dd {
	padding: 1em 0.5em;
}

.history_box dl dt {
	width: 150px;
}

.history_box dl dt:before {
  content: '\f111';
  font-family: "Font Awesome 5 Free";
	color: #6b8e23;
	font-weight: 600;
	margin-right: 1.5em;
	position: relative;
	z-index: 1;
}

.history_box dl dd {
	width: calc(100% - 150px);
}

@media print, screen and (max-width: 896px) {
	.history_box dl {
		flex-direction: column;
	}
	
	.history_box dl dt,
	.history_box dl dd {
		width: 100%;
	}
	
	.history_box dl dt {
		font-weight: 600;
		padding-bottom: 0;
	}
	
	.history_box dl dd {
		padding: 0 0 0 40px;
	}
}

/*---------------------------------

  ご利用ガイド

---------------------------------*/
.guide_wrap {
  margin-top: 4em;
}

.guide_inner h3 {
  font-size: 16px;
  border-bottom: solid 1px #333;
  margin-bottom: 1em;
  padding-bottom: 0.2em;
}

.guide_inner h3 i {
  color: #d4af37;
  vertical-align: baseline;
  padding: 0 0.5em;
}

.guide_inner h4 {
  font-size: 14px;
  border-left: solid 3px #333;
  margin: 2em 0 1em 0;
  padding: 0 0.5em;
}

.payment_credit {
  display: flex;
  flex-wrap: wrap;
}

.payment_credit li {
  border-radius: 3px;
  background: #fff;
  margin: 3px;
  padding: 5px;
}

.footer_payment_credit li img {
  width: auto;
  height: 35px;
}

/*---------------------------------

  プライバシーポリシー

---------------------------------*/
.privacy_inner h4 {
  font-size: 16px;
  border-bottom: solid 1px #333;
  margin-bottom: 1em;
  padding-bottom: 0.2em;
}

.privacy_inner:nth-of-type(n+2) {
  margin-top: 3em;
}

.privacy_inner ul {
  margin-top: 1em;
}

.privacy_inner ul li {
  list-style: disc inside;
  text-indent: -1.4em;
  padding-left: 1.4em;
}

/*---------------------------------
  Thanks
---------------------------------*/
.thanks_content .text_box p:nth-last-child(2)	{
	font-size: 21px;
	font-weight: 600;
  letter-spacing: 0.1em;
}

.thanks_content .text_box p:nth-last-child(2):before {
  content: "\f095";
	font-family: 'Font Awesome 5 Free';
  font-size: 21px;
  font-weight: 600;
  display: inline-block;
	vertical-align: middle;
	margin-right: 0.5em;
}

.thanks_content .btn {
  background: #8e1919;
  margin: 5em auto 0 auto;
}

@media print, screen and (max-width: 896px) {
  .thanks_content .text_box p:nth-last-child(2)	{
    font-size: 18px;
  }
  
  .thanks_content .text_box p:nth-last-child(2):before {
    font-size: 16px;
  }
}

/*---------------------------------
  Footer
---------------------------------*/
footer {
  margin-top: 7em;
}

.footer_guide_wrap {
  background: url("images/top/bg_footer_guide.jpg") no-repeat;
  background-size: cover;
  background-position: center bottom;
  padding: 5em 0;
  position: relative;
}

.footer_guide_column {
  display: flex;
  flex-wrap: wrap;
}

.footer_guide_box {
  width: calc(100% / 3);
}

.footer_guide_inner {
  margin: 1em;
  padding: 1em;
}

.footer_guide_inner h3 {
  font-size: 16px;
  border-bottom: solid 1px #333;
  margin-bottom: 1em;
  padding-bottom: 0.2em;
}

.footer_guide_inner h3 i {
  color: #d4af37;
  vertical-align: baseline;
  padding: 0 0.5em;
}

.footer_guide_inner h4 {
  font-size: 14px;
  border-left: solid 3px #333;
  margin: 2em 0 1em 0;
  padding: 0 0.5em;
}

.footer_payment_credit {
  display: flex;
  flex-wrap: wrap;
}

.footer_payment_credit li {
  border-radius: 3px;
  background: #fff;
  margin: 3px;
  padding: 5px;
}

.footer_payment_credit li img {
  width: auto;
  height: 35px;
}

.btn_footer_guide {
  color: #fff !important;
  font-size: 13px;
  letter-spacing: 0.1em;
  border-radius: 3px;
  background: #4a4a4a;
  display: inline-block;
  margin-top: 1em;
  padding: 0.2em 1.5em;
}

.btn_footer_guide:hover {
  opacity: 0.8;
  transition: 0.3s;
}

.footer_wrap {
  color: #fff;
  background: #8e1919;
  padding: 5em 0;
}

.footer_content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.footer_about_box {
  width: 30%;
  border-right: solid 1px #fff;
  margin-right: auto;
  padding: 1em;
}

.footer_about_box h2 {
  width: 130px;
  color: #fff;
  font-size: 14px;
  margin-bottom: 1em;
}

.footer_about_box ul li:first-of-type {
  font-size: 16px;
}

.footer_about_box ul li:nth-of-type(3) {
  font-size: clamp(16px, 2vw, 21px);
  letter-spacing: 0.1em;
  margin-top: 0.5em;
}

.footer_about_box ul li:nth-of-type(3):before {
	content: "\f095";
	font-family: "Font Awesome 5 Free";
  font-size: 90%;
  font-weight: 600;
  vertical-align: middle;
  margin-right: 0.5em;
}

.footer_about_box ul li:nth-of-type(3) a {
  color: #fff !important;
}

.footer_about_box ul li:last-of-type {
  font-size: 12px;
}

.sitemap_box {
  width: 70%;
  display: flex;
  flex-wrap: wrap;
  font-size: clamp(12px, 1.5vw, 14px);
  justify-content: space-around;
}

.sitemap_box dl {
  padding: 1em;
}

.sitemap_box dl a:hover {
  text-decoration: underline;
}

.sitemap_box dl dt:nth-of-type(n+2) {
  margin-top: 1em;
}

.sitemap_box dl dd {
  margin-top: 0.5em;
}

.sitemap_box dl dt a,
.sitemap_box dl dd a {
  color: #f9e0e0;
  display: block;
}

.sitemap_box dl dd a:before {
  content: '';
  width: 10px;
  height: 2px;
  background: #f9e0e0;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.5em 0 1em;
}

address {
	font-size: 0.7em;
	font-style: normal;
  margin-top: 2em;
}

@media print, screen and (max-width: 896px) {
  .footer_guide_box {
    width: 100%;
  }
  
  .footer_content {
    flex-direction: column-reverse;
  }
  
  .footer_about_box h2 {
    width: 120px;
  }
  
  .footer_about_box {
    width: 100%;
    text-align: center;
    border-top: solid 1px #fff;
    border-right: none;
    margin-left: auto;
    margin-top: 2em;
    padding-top: 2em;
  }
  
  .footer_about_box h2 {
    margin: 0 auto 1em auto;
  }
  
  .sitemap_box {
    width: 100%;
    justify-content: space-between;
  }
}

@media print, screen and (max-width: 480px) {
  .sitemap_box dl {
    width: 50%;
  }
  
  .sitemap_box dl:last-of-type {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  
  .sitemap_box dl:last-of-type dt {
    width: 50%;
  }
  
  .sitemap_box dl:last-of-type dt:nth-of-type(n+2) {
    margin-top: 0;
  }
  
  .sitemap_box dl:last-of-type dt:nth-of-type(n+3) {
    margin-top: 1em;
  }
}

/*---------------------------------
  PageTop
---------------------------------*/
.pagetop {
	width: 60px;
	height: 60px;
	line-height: 55px;
	border-radius: 50%;
	color: #fff !important;
	font-size: 18px;
	text-align: center;
	background: rgba(107, 142, 35, 0.9);
	display: block;
	position: fixed;
	right: 40px;
	bottom: 40px;
	z-index: 1000;
}

.pagetop:hover {
	opacity: 0.8;
	transition: 0.3s;
}

@media screen and (max-width: 896px) {
	.pagetop {
		width: 50px;
		height: 50px;
		line-height: 45px;
		font-size: 14px;
		right: 10px;
		bottom: 10px;
	}
}

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