@charset "utf-8";
/* CSS Document */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* -----------------------------------------------------------
	グローバルCSS
----------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');

:root {
	--color-main: #efbe39;
	--color-green: #6caa6a;
	--color-orange: #f36a3d;
	--font-mincho: "Noto Serif JP", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", sans-serif;
}

body {
	font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", sans-serif;
	letter-spacing: 1px;
	color: #383838;
	line-height: 1.7;
	margin: 0;
	padding: 0;
	-webkit-text-size-adjust: 100%;
	overflow-x: clip;
}

img {
	max-width: 100%;
	height: auto;
}

a:hover {
	opacity: 0.7;
}

/* -----------------------------------------------------------
	ヘッダー
----------------------------------------------------------- */

header {
	padding: 15px 0;
	background-image: url("../images/common/bg_main.jpg");
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
}

body.top header {
	padding-bottom: 0;
}

header .header_erea {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 15px;
}

.logo_wrap a {
	display: inline-block;
	mix-blend-mode: multiply;
}

header .header_erea .gnav_wrap {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

header .header_erea .gnav_wrap nav ul {
	display: flex;
	justify-content: flex-end;
}

header .header_erea .gnav_wrap nav ul li {
	margin-right: 30px;
}

nav ul li a {
	display: inline-block;
	position: relative;
	padding-left: 13px;
	white-space: nowrap;
}

nav ul li a::before {
	content: "";
	display: block;
	width: 9px;
	height: 9px;
	background-image: url("../images/common/btn_arrow.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 9px;
	left: 0;
}

.tel_wrap {
	text-align: center;
}

.tel_wrap a {
	display: block;
}

header .header_erea .gnav_wrap .tel_wrap a {
	margin-bottom: 2px;
}

.tel_wrap p {
	font-size: 13px;
	padding-left: 10px;
	white-space: nowrap;
}

/*----- ハンバーガーメニュー ------*/

.hum_nav {
	position: relative;
    z-index: 9999;
}

#g-nav{
    position:fixed;
	z-index: -1;
	opacity: 0;
	top: 0;
	width:100%;
    height: 100vh;
	background:#fff;
	transition: all 0.3s;
	display: none;
	text-align: center;
}

#g-nav.panelactive{
	opacity: 1;
	z-index:999;
	display: block;
}

#g-nav.panelactive #g-nav-list{
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#g-nav .contents_wrap{
    display: none;
	position: absolute;
    z-index: 9999;
    top:110px;
    left:50%;
	transform: translateX(-50%);
	padding-top: 30px;
}

#g-nav.panelactive .contents_wrap {
	display: block;
	width: 100%;
    max-width: 330px;
	padding: 0 15px;
}

#g-nav nav {
	margin-bottom: 20px;
}

#g-nav nav ul li:not(:last-child) {
	margin-bottom: 10px;
}

/*========= ボタンのためのCSS ===============*/

.head_btn {
	position:fixed;
	top:15px;
	right: 15px;
	z-index: 9998;
}

.openbtn {
	z-index: 9998;
	cursor: pointer;
    width: 60px;
    height: 60px;
	background-color: var(--color-main);
	position: relative;
	border-radius: 4px;
	border: 1px solid #3d3b39;
	display: none;
}

.openbtn:hover {
	opacity: 0.7;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 0;
	right: 0;
	margin: 0 auto;
    height: 2px;
    border-radius: 2px;
	background-color: #3d3b39;
  	width: 30%;
  }

.openbtn span:nth-of-type(1) {
	top: 12px;	
}

.openbtn span:nth-of-type(2) {
	top: 20px;
}

.openbtn span:nth-of-type(3) {
	top: 28px;
}

.openbtn.active span:nth-of-type(1) {
    top: 12px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 24px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
.openbtn::after {
	content:"MENU";
	position: absolute;
	bottom: 5px;
	left: 0;
	right: 0;
	color: #3d3b39;
	font-size: 11px;
	text-transform: uppercase;
	margin: 0 auto;
	text-align: center;
}

@media screen and (min-width: 769px) and (max-width: 959px) {
	
}

@media screen and (min-width: 561px) and (max-width: 768px) {
	header .header_erea .gnav_wrap {
		display: none;
	}
	
	.openbtn {
		display: block;
	}
}

@media screen and (max-width: 560px) {
	.logo_wrap {
		width: 70%;
		max-width: 280px;
	}
	
	header .header_erea .gnav_wrap {
		display: none;
	}
	
	.openbtn {
		display: block;
	}
}

/* -----------------------------------------------------------
	共通CSS
----------------------------------------------------------- */

.text_center {
	text-align: center;
}

.text_center p {
	display: inline-block;
	text-align: left;
}

.mb_1 {
	margin-bottom: 1em;
}

.imgcut {
	position: relative;
}

.imgcut::before {
	content:"";
	display: block;
	padding-bottom: 66.6%;
}

.imgcut img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

/* -----------------------------------------------------------
	トップページ
----------------------------------------------------------- */

.mainvisual {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 10px;
}

.mainvisual .catchcopy {
	padding: 0 30px;
	width: 20%;
	max-width: 200px;
}

.mainvisual .catchcopy h1 {
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	font-size: 40px;
	font-family: var(--font-mincho);
}

.mainvisual .main_slider {
	flex: 1;
}

.mainvisual .main_slider .imgcut::before {
	padding-bottom: 55%;
}

/* ベース */
.parallax{
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: grid;
  place-items: center;
  isolation: isolate;
}

/* 背景レイヤー（これを動かす） */
.parallax__bg{
  position: absolute;
  inset: -10vh 0 -10vh 0;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
  transform: translate3d(0,0,0);
  z-index: -1;
}

/* 表示コンテンツ */
.parallax__content{
  text-align:center;
  padding: 6rem 1rem;
  text-shadow:0 2px 8px rgba(0,0,0,.35);
}


/* 動きを好まない設定のユーザー配慮 */
@media (prefers-reduced-motion: reduce){
  .parallax__bg{ transform: none !important; }
}

.contents_wrap {
	max-width: 1130px;
	margin: 0 auto;
	padding: 0 15px;
}

.flex_wrap {
	display: flex;
	justify-content: space-between;
}

.flex_left, .flex_right {
	width: 48%;
}

.bg_main {
	padding: 40px 0;
	background-image: url("../images/common/bg_main.jpg");
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
}

.bg_gray {
	padding: 40px 0;
	background-image: url("../images/common/bg_gray.jpg");
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	margin-bottom: 50px;
}

.mb_none {
	margin-bottom: 0;
}

.top_erea_wrap .flex_wrap {
	align-items: center;
}

.top_erea_wrap .flex_left p {
	font-size: 18px;
}

.mb_1 {
	margin-bottom: 15px;
}

.btn_flex {
	display: flex;
	justify-content: space-between;
}

.btn_flex .btn_wrap {
	width: 48%;
}

.btn_wrap {
	text-align: center;
}

.btn_wrap a {
	background-color: var(--color-main);
	border: 1px solid #3d3b39;
	color: #3d3b39;
	display: inline-block;
	padding: 12px 30px;
	position: relative;
	border-radius: 4px;
	width: 100%;
	max-width: 200px;
}

.btn_wrap a:hover {
	opacity: 1;
}

.btn_wrap a::after {
	content: "";
	display: block;
	width: 10px;
	height: 13px;
	background-image: url("../images/common/btn_arrow2.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	transition: 0.3s;
}

.btn_wrap a:hover::after {
	right: 10px;
}

.top_erea_wrap ul {
	position: relative;
}

.top_erea_wrap ul li {
	opacity: 0;
}

.fadeUp {
	animation-name:fadeUpAnime;
	animation-duration:1.4s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(5px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}

.top_erea_wrap ul li.illust_2 {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
} 

.top_erea_wrap ul li.illust_3 {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}

/*----- お悩みエリア -----*/

.introduction_wrap {
	max-width: 900px;
	text-align: center;
}

.introduction_wrap h2 {
	max-width: 480px;
	margin: 0 auto 30px;
}

.introduction_wrap .flex_wrap {
	align-items: stretch;
	margin-bottom: 30px;
}

.introduction_wrap .flex_wrap .flex_left, .introduction_wrap .flex_wrap .flex_right {
	display: flex;
	flex-direction: column;
}

.introduction_wrap h3 {
	width: 80%;
	max-width: 300px;
	margin: 0 auto;
	font-weight: bold;
	background-color: var(--color-green);
	color: #fff;
	border-radius: 5px 5px 0 0;
	padding: 10px 15px 8px;
	font-size: 24px;
}

.introduction_wrap .flex_right h3 {
	background-color: var(--color-orange);
}

.introduction_wrap ul {
	border: 2px solid var(--color-green);
	border-radius: 5px;
	padding: 20px 15px;
	height: 100%;
}

.introduction_wrap .flex_right ul {
	border: 2px solid var(--color-orange);
}

.introduction_wrap ul li {
	text-align: left;
	padding: 0 5px 0 30px;
	position: relative;
}

.introduction_wrap ul li::before {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	background-image: url("../images/common/icon_check.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 3px;
	left: 5px;
}

.introduction_wrap ul li:not(:last-child) {
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px dashed #666;
}

.arrow {
	margin-bottom: 30px;
}

.answer_wrap h4 {
	font-size: 28px;
	color: var(--color-orange);
	font-weight: 500;
	margin: 0 auto 15px;
	display: inline-block;
	text-align: left;
}

.answer_wrap p {
	text-align: left;
	display: inline-block;
	max-width: 600px;
}

@media screen and (min-width: 769px) and (max-width: 960px) {
	.mainvisual .catchcopy {
		padding: 0 15px;
		width: 20%;
		max-width: 200px;
		display: flex;
        justify-content: center;
	}
	
	.mainvisual .catchcopy h1 {
		font-size: 26px;
	}
}

@media screen and (min-width: 561px) and (max-width: 768px) {
	.mainvisual .catchcopy {
		padding: 0 15px;
		width: 20%;
		max-width: 200px;
		display: flex;
        justify-content: center;
	}
	
	.mainvisual .catchcopy h1 {
		font-size: 26px;
	}
	
	.flex_wrap {
		display: block;
	}
	
	.flex_wrap .flex_left {
		width: 100%;
		margin-bottom: 15px;
	}
	
	.flex_wrap .flex_right {
		width: 100%;
	}
	
	.top_erea_wrap ul {
		max-width: 70%;
		margin: 0 auto;
	}
	
}

@media screen and (max-width: 560px) {
	.mainvisual {
		flex-direction: column;
	}
	
	.mainvisual .catchcopy {
		order: 1;
		padding: 0 15px;
		width: 100%;
		max-width: inherit;
	}
	
	.mainvisual .catchcopy h1 {
		-ms-writing-mode: unset;
		writing-mode: unset;
		font-size: 26px;
	}
	
	.mainvisual .catchcopy h1 br {
		display: none;
	}
	
	.mainvisual .main_slider {
		margin-bottom: 20px;
		width: 100%;
	}
	
	.flex_wrap {
		display: block;
	}
	
	.flex_wrap .flex_left {
		width: 100%;
		margin-bottom: 15px;
	}
	
	.flex_wrap .flex_right {
		width: 100%;
	}
	
	.top .bg_main {
		padding-top: 10px;
	}
	
	.top_erea_wrap ul {
		max-width: 90%;
		margin: 0 auto;
	}
}

/* -----------------------------------------------------------
	フッター
----------------------------------------------------------- */

footer {
	background-color: #f7f1e6;
	padding: 40px 0;
}

footer .info_wrap {
	margin-bottom: 30px;
}

footer .info_wrap .info_left {
	width: 40%;
}

footer .info_wrap .logo_wrap {
	margin-bottom: 8px;
}

footer .info_wrap .logo_wrap a {
	display: inline-block;
}

footer .info_wrap address {
	padding-left: 30px;
}

footer .info_wrap .info_right {
	width: 55%;
	text-align: center;
}

footer .info_wrap .info_right .flex_wrap {
	margin-bottom: 10px;
}

footer .info_wrap .info_right p {
	margin-bottom: 15px;
	display: inline-block;
	text-align: left;
}

footer .info_wrap .info_right p.ftr_uke {
	font-size: 14px;
	padding-left: 10px;
	white-space: nowrap;
}

.ftr_nav {
	margin-bottom: 30px;
}

.ftr_nav ul {
	display: flex;
	justify-content: center;
}

.ftr_nav ul li:not(:last-child) {
	margin-right: 30px;
}

.bnr_wrap {
	text-align: center;
	margin-bottom: 30px;
}

.bnr_wrap a {
	display: inline-block;
}

.copyright {
	text-align: center;
}

#page_top {
    position: fixed;
    bottom: 15px;
    right: 15px;
	z-index: 50;
}

@media screen and (min-width: 561px) and (max-width: 768px) {
	footer .info_wrap {
		text-align: center;
	}
	
	footer .info_wrap .info_left {
		width: 100%;
	}
	
	footer .info_wrap address {
		padding-left: 0;
	}
	
	footer .info_wrap .info_right {
		width: 100%;
		max-width: 400px;
		margin: 0 auto;
	}
	
	footer .info_wrap .info_right .flex_wrap {
		max-width: 300px;
		margin: 0 auto 10px;
	}
}

@media screen and (max-width: 560px) {
	footer .info_wrap {
		text-align: center;
	}
	
	footer .info_wrap .info_left {
		width: 100%;
	}
	
	footer .info_wrap address {
		padding-left: 0;
	}
	
	footer .info_wrap .info_right {
		width: 100%;
		max-width: 400px;
		margin: 0 auto;
	}
	
	footer .info_wrap .info_right .flex_wrap {
		max-width: 300px;
		margin: 0 auto 10px;
	}
}

/* -----------------------------------------------------------
	会社案内
----------------------------------------------------------- */

.page_header {
	display: flex;
}

.page_header .page_main {
	width: 80%;
}

.page_header .page_main .imgcut::before {
	padding-bottom: 40%;
}

.page_header .page_title {
	display: flex;
	justify-content: center;
	width: 20%;
	padding-top: 5%;
}

.page_header .page_title h1 {
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	font-size: 40px;
	font-family: var(--font-mincho);
	order: 2;
}

.page_header .page_title p {
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	font-size: 13px;
	max-height: 320px;
}

.contents_flex .maincontents {
	padding: 50px 0;
}

.contents_flex .maincontents.pb_none {
	padding-bottom: 0;
}

.contents_flex .maincontents .contents_wrap{
	width: 90%;
	max-width: 1130px;
	margin-bottom: 50px;
}

.greeting_wrap {
	align-items: center;
}

.greeting_wrap .flex_left {
	width: 60%;
}

.greeting_wrap .flex_right {
	text-align: center;
	width: 35%;
}

.greeting_wrap .flex_right .swiper-img {
	border: 4px solid #ccc;
    border-radius: 4px;
}


.greeting_wrap .flex_right p {
	display: inline-block;
	text-align: left;
	font-family: var(--font-mincho);
	padding-top: 5px;
}

.greeting_wrap .flex_right p strong {
	font-size: 1.2em;
	margin-left: 15px;
}

h2.contents_title {
	font-size: 2.0rem;
    font-weight: 500;
    position: relative;
	font-family: var(--font-mincho);
	text-align: center;
	margin-bottom: 25px;
  position: relative;
	padding-bottom: 10px;
}
h2.contents_title::after {
  position: absolute;
  bottom: 0;
  left: calc(50% - 30px);
  width: 60px;
  height: 4px;
  content: '';
  border-radius: 2px;
  background: var(--color-orange);
}
.dl_flex dl {
	display: flex;
	margin: 0;
	padding: 0;
	width: 100%;
}

.dl_flex dl dt {
	width: 25%;
	min-width: 200px;
    border-top: 1px solid #777;
    padding: 30px 0 30px 5px;
    font-weight: bold;
	line-height: 1.7;
}

.dl_flex dl:last-child dt {
	border-bottom: 1px solid #777;
}

.dl_flex dl dd {
	width: 75%;
    border-top: 1px solid #d0d0d0;
    padding: 30px 0 30px 5px;
	margin: 0;
	line-height: 1.7;
}

.dl_flex dl:last-child dd {
	border-bottom: 1px solid #d0d0d0;
}

.ggmap {
	position: relative;
	height: 100%;
	overflow: hidden;
}
 
.ggmap iframe,
.ggmap object,
.ggmap embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

ul.gallery_wrap {
	text-align: center;
}

.history_wrap {
	text-align: center;
	margin-bottom: 40px;
}

.history_wrap ul {
	position: relative;
	padding-left: 90px;
	display: inline-block;
	text-align: left;
}

.history_wrap ul::before {
	content: "";
	display: block;
	width: 5px;
	height: 100%;
	background-color: #ddd;
	position: absolute;
	top: 0;
	left: 0;
}

.history_wrap ul li {
	position: relative;
	margin-bottom: 25px;
	background-color: #fff;
	padding: 20px;
	border-radius: 5px;
	display: flex;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.history_wrap ul li:last-child {
	margin-bottom: 0;
}

.history_wrap ul li::before {
	content: "";
	display: block;
	width: 15px;
	height: 15px;
	background-color: var(--color-main);
	border-radius: 20%;
	position: absolute;
	top: 40px;
	left: -95px;
	transform: rotate(40deg);
}

.history_wrap ul li::after {
	content: "";
	display: block;
	width: 80px;
	height: 1px;
	background-color: var(--color-main);
	position: absolute;
	top: 47px;
	left: -70px;
}

.history_wrap ul li .nengetsu {
	text-align: center;
	margin-right: 30px;
}

.history_wrap ul li .nengetsu p.history_year {
	font-size: 50px;
	font-weight: 700;
	color: #ccc;
	font-family: var(--font-mincho);
	line-height: 1;
	white-space: nowrap;
	line-height: 1;
}

.history_wrap ul li .history_detail p.history_wareki {
	color: #777;
}

.mb_block {
	margin-bottom: 30px;
}

#safety .flex_wrap {
	align-items: center;
}

@media screen and (min-width: 769px) and (max-width: 960px) {	
	.page_header .page_title p {
		max-height: 200px;
	}
}

@media screen and (min-width: 561px) and (max-width: 768px) {
	.page_header {
		display: block;
	}
	
	.page_header .page_main {
		width: 100%;
	}
	
	.page_header .page_title {
		width: 100%;
		display: block;
		padding: 0 15px;
		margin-bottom: 15px;
		text-align: center;
	}
	
	.page_header .page_title h1 {
		-ms-writing-mode: unset;
		writing-mode: unset;
		font-size: 26px;
	}
	
	.page_header .page_title p {
		-ms-writing-mode: unset;
		writing-mode: unset;
		padding-top: 10px;
		font-size: 14px;
	}
	
	.greeting_wrap .flex_left {
		width: 100%;
	}
	
	.greeting_wrap .flex_right {
		width: 80%;
		max-width: 300px;
		margin: 0 auto;
	}
}

@media screen and (max-width: 560px) {
	.page_header {
		display: block;
	}
	
	.page_header .page_main {
		width: 100%;
	}
	
	.page_header .page_title {
		width: 100%;
		display: block;
		padding: 0 15px;
		margin-bottom: 15px;
        text-align: center;
	}
	
	.page_header .page_title h1 {
		-ms-writing-mode: unset;
		writing-mode: unset;
		font-size: 26px;
	}
	
	.page_header .page_title p {
		-ms-writing-mode: unset;
		writing-mode: unset;
		padding-top: 10px;
		font-size: 14px;
	}
	
	.contents_flex .maincontents {
		width: 100%;
		padding: 30px 0;
	}
	
	.contents_flex .maincontents .contents_wrap {
		width: 100%;
	}
	
	.greeting_wrap .flex_left {
		width: 100%;
	}
	
	.greeting_wrap .flex_right {
		width: 80%;
		max-width: 300px;
		margin: 0 auto;
	}
	
	.dl_flex dl {
		display: block;
	}
	
	.dl_flex dl dt {
		width: 100%;
		padding: 15px 5px 0 5px;
		border-bottom: none;
	}
	
	.dl_flex dl dd {
		width: 100%;
		border-top: none;
		padding: 5px 5px 15px 5px;
	}
	
	.dl_flex dl:last-child dt {
		border-bottom: none;
	}
	
	.dl_flex dl:last-child dd {
		border-bottom: 1px solid #777;
	}
	
	.history_wrap ul {
		padding-left: 30px;
	}
	
	.history_wrap ul li::before {
		left: -35px;
	}
	
	.history_wrap ul li::after {
		width: 25px;
		left: -15px;
	}
	
	.history_wrap ul li {
		display: block;
	}
	
	.history_wrap ul li .nengetsu {
		margin-right: 0;
		display: flex;
		align-items: center;
		margin-bottom: 5px;
	}
	
	.history_wrap ul li .nengetsu p.history_year {
		margin-bottom: 0;
	}
	
	.history_wrap ul li .nengetsu p.history_month {
		margin-left: 5px;
		font-size: 18px;
	}
	
	.ggmap {
		height: 400px;
	}
}

/* -----------------------------------------------------------
	事業案内
----------------------------------------------------------- */

.sidemenu h3 {
	padding-left: 10px;
	margin-bottom: 5px;
	font-size: 18px;
	font-family: var(--font-mincho);
}

body#business .contents_flex .maincontents {
	padding-top: 0;
}

.contents_flex .maincontents section.bg_main .contents_wrap {
	margin-bottom: 0;
}

ul.clm3 {
	flex-wrap: wrap;
}

ul.clm3::after {
	content: "";
	display: block;
	width: 31%;
}

ul.clm3 li {
	width: 32%;
}

#buy .text_center {
	max-width: 800px;
	margin: 0 auto 30px;
}

#buy .text_center h2 {
	font-size: 1.6em;
	font-weight: bold;
	margin-bottom: 10px;
	font-family: var(--font-mincho);
	display: inline-block;
	text-align: left;
}

#buy .text_center p {
	font-size: 16px;
}

ul.tokucho_wrap li {
	background-color: #fff;
	padding: 15px;
	border-radius: 10px;
	text-align: center;
}

ul.tokucho_wrap li .icon_tokucho {
	max-width: 115px;
	width: 50%;
	margin: 0 auto 10px;
}

ul.tokucho_wrap li h3 {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 2px;
}

ul.tokucho_wrap li p {
	text-align: justify;
	font-size: 14px;
}

#buyFlow .contents_wrap {
	max-width: 1000px;
	margin-bottom: 0;
}

#buyFlow ul li {
	display: flex;
	padding: 15px;
	background-color: #fff;
	border-radius: 5px;
	position: relative;
}

#buyFlow ul li:not(:last-child) {
	margin-bottom: 90px;
}

#buyFlow ul li:not(:last-child)::after {
	content: "";
	display: block;
	width: 50px;
	height: 50px;
	background-image: url("../images/common/arrow.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	margin: 0 auto;
	position: absolute;
	right: 0;
	bottom: -70px;
	left: 0;
}

#buyFlow ul li .flow_num {
	width: 75px;
	height: 75px;
	padding: 10px;
	background-color: var(--color-main);
	text-align: center;
	margin-right: 30px;
	box-shadow: 5px 5px 0px 0px rgba(183, 141, 57, 1);
}

#buyFlow ul li .flow_num p {
	font-size: 14px;
}

#buyFlow ul li .flow_num p strong {
	display: block;
	font-size: 30px;
	line-height: 1;
}

#buyFlow ul li .flow_text {
	flex: 1;
}

#buyFlow ul li .flow_text h3 {
	font-weight: bold;
	font-size: 20px;
	border-bottom: 1px dashed #ccc;
	padding-bottom: 5px;
	margin-bottom: 5px;
}

.accordion-area{
    list-style: none;
    margin:0 auto;
}

.accordion-area li{
    margin: 0 0 15px;
}

.accordion-area section {
	border: 1px solid #ccc;
	border-radius: 5px;
	background-color: #fff;
}

.ac_title {
    position: relative;
    cursor: pointer;
    font-size:1rem;
    font-weight: normal;
    padding: 25px 40px 25px 15px;
    transition: all .5s ease;
	font-weight: bold;
}

.accordion-area section .ac_title::before,
.accordion-area section .ac_title::after{
    position: absolute;
    content:"";
    width: 15px;
    height: 2px;
    background-color: #d66765;
	transition: 0.3s;
}

.accordion-area section .ac_title::after {
	border-bottom: none;
}

.ac_title::before{
    top:48%;
    right: 15px;
    transform: rotate(0deg);
    
}
.ac_title::after{    
    top:48%;
    right: 15px;
    transform: rotate(90deg);

}


.ac_title.ac_close::before{
	transform: rotate(45deg);
}

.ac_title.ac_close::after{
	transform: rotate(-45deg);
}

.ac_title span.faq_q {
	position: relative;
	padding-left: 35px;
	display: block;
}

.ac_title span.faq_q::before {
	content: "Q";
	font-size: 30px;
	font-family: var(--font-en);
	position: absolute;
	top: -5px;
	left: 0;
	width: 25px;
	text-align: center;
	line-height: 1;
	color: #d66765;
	font-weight: normal;
}

.accordion-area .box {
    display: none;
	margin: 0 15px;
    padding: 25px 40px 25px 35px;
	position: relative;
	border-top: 2px dashed #ccc;
}

.accordion-area .box::before {
	content: "A";
	font-size: 30px;
	font-family: var(--font-en);
	position: absolute;
	top: 23px;
	left: 0;
	color: #aaa;
	width: 25px;
	text-align: center;
	line-height: 1;
}

.retailer_wrap .text_center {
	max-width: 800px;
	margin: 0 auto 30px;
}

.retailer_wrap .text_center h2 {
	font-size: 1.6em;
	font-weight: bold;
	margin-bottom: 10px;
	font-family: var(--font-mincho);
	display: inline-block;
	text-align: left;
}

.retailer_wrap .text_center p {
	font-size: 16px;
}

.retailer_wrap h3 {
	font-weight: bold;
	text-align: center;
	margin-bottom: 5px;
}

.retailer_wrap ul.rice_list {
	background-color: rgba(255,255,255,0.7);
	border: 1px solid #ccc;
	padding: 15px;
	border-radius: 5px;
	flex-wrap: wrap;
	margin-bottom: 5px;
}

.retailer_wrap ul.rice_list li {
	width: 48%;
	padding-left: 15px;
	position: relative;
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px dashed #ccc;
}

.retailer_wrap ul.rice_list li:nth-child(7), .retailer_wrap ul.rice_list li:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
	border: none;
}

.retailer_wrap ul.rice_list li::before {
	content: "";
	background-color: var(--color-main);
	border-radius: 60% 60% 50% 50%;
	border: 1px solid #777;
	width: 8px;
	height: 12px;
	position: absolute;
	top: 8px;
	left: 0;
	display: block;
}

p.aten {
	font-size: 14px;
	padding-left: 1em;
	text-indent: -1em;
}

.retailer_wrap .text_center p.aten {
	font-size: 14px;
}


ul.page_btn_wrap li a:hover::after {
	top: 55px;
	right: 0;
	transition: 0.3s;
}

.bg-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  clip-path: inset(0);
	-webkit-clip-path: inset(0);
}

.bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.main_slider .swiper-img {
	transform: scale(1.15);
}

@keyframes zoomUp {
  0% {
	  transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
.main_slider .swiper-slide-active .swiper-img,
.main_slider .swiper-slide-duplicate-active .swiper-img,
.main_slider .swiper-slide-prev .swiper-img {
  animation: zoomUp 7s linear 0s normal both;
}
.swiper-slide img {
  height: auto;
  width: 100%;
}

.flex_flow {
	display: flex;
	justify-content: space-between;
}

.flex_flow .flow_left {
	width: 48%;
}

.flex_flow .flow_right {
	width: 48%;
}

.slick-initialized .slick-slide {
	height: auto;
}

@media screen and (min-width: 561px) and (max-width: 768px) {
	ul.page_btn_wrap {
		display: flex;
	}
	
	ul.clm3 li {
		width: 100%;
		margin-bottom: 15px;
	}
	
	ul.clm3 li:last-child {
		margin-bottom: 0;
	}
	
	.retailer_wrap ul.rice_list {
		display: flex;
	}
}

@media screen and (max-width: 560px) {
	ul.page_btn_wrap {
		display: flex;
	}
	
	ul.page_btn_wrap li a {
		padding: 15px 15px 30px;
		white-space: nowrap;
	}
	
	ul.clm3 li {
		width: 100%;
		margin-bottom: 15px;
	}
	
	ul.clm3 li:last-child {
		margin-bottom: 0;
	}
	
	.retailer_wrap ul.rice_list {
		display: flex;
	}
	
	
	.flex_flow {
		display: block;
	}
	
	.flex_flow .flow_left {
		width: 100%;
		margin-bottom: 15px;
	}
	
	.flex_flow .flow_right {
		width: 100%;
	}
}

.cd-fixed-bg {
    position: relative;
    min-height: 100%;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 2;
	height: 80vh;
}

@media screen and (max-width: 736px) {
	.cd-fixed-bg {
		background-size: cover;
		background-attachment: scroll;
		height: 400px;
	}
}

@media screen and (max-width: 560px) {
	.cd-fixed-bg {
        background-position: center center !important;
        background-attachment: scroll;
        height: 230px;
	}
}