@charset "utf-8";
/* safariリセット */
input[type="button"],input[type="text"],input[type="submit"],textarea,select{
   -webkit-appearance: none;
   border-radius: 0;
   border: none;
   font-size: 16px;
   color: #000;
   background: #fff;
}
input[type="text"],
textarea{
	display: block;
	width: 100%;
	border: 1px solid #ddd;
	border-radius: 5px;
}
input[name="zip_1"]{
	width: 85px;
}
input[name="zip_2"],
input[name="pref"]{
	width: 100px;
}
label{
	cursor: pointer;
	user-select: none;
}
select{
	cursor: pointer;
	display: block;
	width: 100%;
	height: 100%;
}
#mainarea{
	margin-bottom: var(--GENERALSEC);
}
h1.g-heading{
	padding: 0;
	text-align: center;
	line-height: 1;
  margin-top: clamp(40px, 8vw, 100px);
	margin-bottom: clamp(40px, 8vw, 100px);
	color: #503A26;
	text-shadow: 3px 3px 4px #ffffff80;
}
.sec-ttl{
	text-align: center;
}
.contact-table *{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
.contact-table{
	border-collapse: collapse;
}
.contact-table th,
.contact-table td{
	display: block;
}
.contact-table .post-code{
	display: flex;
	align-items: center;
	gap: 10px;
}
.confirm-table td{
	background: #fff;
}
.contact-table th{
	text-align: left;
	font-weight: normal;
	font-family: var(--FF_MINCHO);
}
.contact-table th .must::after{
	content: '*';
	color: #ff0000;
	margin-left: 3px;
	position: relative;
	top: -2px;
}
.contact-table td p{
	width: 100%;
}
textarea#option{
	height: 130px;
}
textarea#comment{
	height: 250px;
}
.choice-area{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
  gap: 10px 0;
  margin-top: 15px;
}
.choice-area li{
	display: inline-block;
  font-size: 13px;
}
@media screen and (min-width: 768px){
	.choice-area li{
    width: 50%;
	}
}
@media screen and (max-width: 767px){
	.choice-area li{
		width: 100%;
	}
}
.choice-area li:not(:last-child){
	margin-bottom: 3px;
}
.check-label > input{
	margin-right: 5px;
	position: relative;
	top: 1px;
}
.select-area-td{
	justify-content: flex-start;
}
.select-area{
	width: 50%;
	margin: 0 auto 0 0;
	min-width: 220px;
	position: relative;
}
.select-area::after{
	content: "";
	display: inline-block;
	background: url(/contact/images/arrow.svg) no-repeat;
	background-size: contain;
	width: 12px;
	height: 12px;
	position: absolute;
	right: 8px;
	top: 12px;
	z-index: 3;
}
.select-area select{
	padding: 10px;
	border: 1px solid #ddd;
	position: relative;
	background-color: rgba(0, 0, 0, 0);
	z-index: 2;
	border-radius: 5px;
}
.to-top,
.sendbutton{
	margin: 0 auto;
	width: 90%;
	max-width: 300px;
}
.to-top a,
.sendbutton input{
	width: 100%;
	display: block;
	text-align: center;
	padding: 15px 0;
	background: #88A48B url(/images/overlay.png);
	border-radius: 10px;
	color: #fff;
	cursor: pointer;
	transition: .5s all;
}
.bac{
	text-align: center;
	margin-top: 10px;
}
.bac a{
	text-decoration: underline;
	color: #333;
	transition: .5s all;
}
.complete_p{
	text-align: center;
}
.confirm-table td{
	border: 1px solid #ddd;
	padding: 10px;
	min-height: 40.5px;
}
.contact-table td.harf{
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 10px;
}
.check-label[for="check-pp"]{
	display: block;
	width: fit-content;
	margin: 0 auto 10px;
}
@media screen and (min-width: 768px){
	.contact-form{
		width: 720px;
		margin: 0 auto;
	}
	.contact-table{
		width: 600px;
		margin: 0 auto 50px;
	}
	.contact-table th{
		margin-bottom: 5px;
		font-size: 14px;
	}
	.contact-table td{
		margin-bottom: 25px;
	}
	.contact-table input,
	.contact-table textarea{
		padding: 10px;
	}
	.to-top a:hover,
	.sendbutton input:hover{
		background: #978980;
	}
	.bac a:hover{
		opacity: 0.7;
	}
	.complete_p{
		margin-bottom: 40px;
	}
}
@media screen and (max-width: 767px){
	#mainarea{
		margin-top: 40px;
	}
	.contact-form{
		width: var(--INNER_WIDTH);
		margin: 0 auto;
		padding: 20px 0;
	}
	.contact-table{
		width: 100%;
		margin: 0 auto 30px;
	}
	.contact-table th,
	.contact-table td{
		width: 100%;
	}
	.contact-table tr{
		padding: 15px 15px 15px 15px;
	}
	.contact-table th{
		font-size: 14px;
		text-align: left;
		margin-bottom: 5px;
	}
	.contact-table td{
		margin-bottom: 18px;
	}
	.confirm-table td{
		min-height: 44px;
	}
	.contact-table input,
	.contact-table textarea{
		padding: 7px;
	}
	.complete_p{
		margin-bottom: 30px;
	}
}

/* 入力欄のエラー表示 */
.error-field {
	border: 1px solid #dc3b3b !important;
}
.error-message {
	color: #dc3b3b;
	font-size: 12px;
	margin-top: 5px;
  display: inline;
}
@media screen and (max-width: 768px) {
  br.pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  br.sp {
    display: none;
  }
}
/* ヘッダー */
/* Nav */
#nav {
  position: absolute;
  display: flex;
  top: 2.5em;
  left: 0;
  width: 100%;
  text-align: center;
	justify-content: space-between;
	vertical-align: middle;
	
}

#nav .logo{
		margin:auto 0;
}

#nav .logo img{
	width:50%;
}
#nav .menu-list {
  display: inline-block;
  border-radius: 0.35em;
  box-shadow: inset 0px 0px 1px 1px #89a48b;
  padding: 0 1.5em 0 1.5em;
	margin:0 1em;
	background: #ffffff94;
}
#nav .menu-list  > li {
  display: inline-block;
  text-align: center;
  padding: 0 1em;
}
#nav .menu-list  > li > ul {
  display: none;
}
#nav .menu-list  > li > a, #nav .menu-list  > li > span {
  display: block;
  color: #657967;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.7em;
  letter-spacing: 0.25em;
  height: 5em;
  line-height: 5em;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  -ms-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
  outline: 0;
}
#nav .menu-list  > li:hover > a {
  opacity: 0.5;
}
#nav .menu-list  > li.active > a, #nav .menu-list  > li.active > span {
  opacity: 0.5;
}
.dropotron {
  background: #222835 url("./images/overlay.png");
  background-color: rgb(255 255 255 / 23%);
  padding: 1.25em 1em 1.25em 1em;
  border-radius: 0.35em;
  box-shadow: inset 0px 0px 1px 1px rgba(255, 255, 255, 0.25);
  min-width: 12em;
  text-align: left;
  margin-top: -1.25em;
  margin-left: -1px;
  list-style: none;
}
.dropotron.level-0 {
  margin-top: -1px;
  margin-left: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.dropotron a, .dropotron span {
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
  -ms-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
  display: block;
  color: #eee;
  color: #435845c4;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.7em;
  letter-spacing: 0.25em;
  border-top: solid 1px rgba(255, 255, 255, 0.15);
  line-height: 3em;
}
.dropotron li {
  padding-left: 0;
}
.dropotron li:first-child a, .dropotron li:first-child span {
  border-top: 0;
}
.dropotron li:hover > a, .dropotron li:hover > span {
  color: #fff;
}

/* Menu */
#nav .menu-list{
	display:flex;
}
/* ヘッダー */
.nav-wrap{
	/* background-color: #88A48B; */
	height: 10vh;
}
body {
	margin: 0;
}
.logo li{
	list-style: none;
}
/* フッター */

/* Footer */
#footer {
  background: #88A48B url("images/overlay.png");
  color: rgba(255, 255, 255);
	margin:0;
	padding:3em 8em 0 8em;
}

#footer .row{
	margin-top:0;
}


#footer .row.aln-center{
	align-items: center;
}

#footer .logo{
	text-align: center;
}

#footer .logo img{
	width:50%;
}

#footer .row > .col-4{
	justify-items:center;
	padding:0;
}

#footer h1, #footer h2, #footer h3, #footer h4, #footer h5, #footer h6, #footer strong, #footer b, #footer a {
  color: #fff;
	text-decoration: none;
}
#footer hr {
  border-top-color: #333;
  border-top-color: rgba(255, 255, 255, 0.05);
}
#footer form input[type="text"], #footer form input[type="email"], #footer form input[type="password"], #footer form select, #footer form textarea {
  background: #ccc;
  box-shadow: none;
}
#footer form input[type="text"]:focus, #footer form input[type="email"]:focus, #footer form input[type="password"]:focus, #footer form select:focus, #footer form textarea:focus {
  background: #fff;
}
#footer input[type="button"], #footer input[type="submit"], #footer input[type="reset"], #footer button, #footer .button {
  color: #fff;
  box-shadow: inset 0px 0px 2px 0px rgba(255, 255, 255, 0.5);
}
#footer input[type="button"]:hover, #footer input[type="submit"]:hover, #footer input[type="reset"]:hover, #footer button:hover, #footer .button:hover {
  color: #fff;
  box-shadow: inset 0px 0px 2px 0px rgba(255, 255, 255, 0.65);
}
#footer input[type="button"]:active, #footer input[type="submit"]:active, #footer input[type="reset"]:active, #footer button:active, #footer .button:active {
  box-shadow: inset 0px 0px 2px 0px rgba(255, 255, 255, 0.75);
}
#footer input[type="button"].style2:active, #footer input[type="submit"].style2:active, #footer input[type="reset"].style2:active, #footer button.style2:active, #footer .button.style2:active {
  box-shadow: inset 0px 0px 2px 0px rgba(255, 255, 255, 0.75);
}
#footer .title {
  background: #282b34 url("images/overlay.png");
  color: #eee;
}
#footer header.style1 {
  padding-bottom: 6em;
  margin-bottom: 6em;
  border-bottom: solid 1px rgba(255, 255, 255, 0.05);
}
#footer header.style1 h2 {
  color: #fff;
}
#footer header.style1 .p {
  color: inherit;
}
#footer .feature-list {
  max-width: 100%;
}
#footer .feature-list section {
  border-top-color: rgba(255, 255, 255, 0.05);
}
#footer .feature-list h3:before {
  background: #3d4249 url("images/overlay.png");
}

#footer h4{
	margin-bottom:20px;
}

/* footer-レスポンシブデザイン */
@media screen and (max-width: 450px) {
	#footer{
		padding:3em;
	}
	#footer h4{
		text-align: center;
	}
}


/* Copyright */
#copyright {
  text-align: center;
  margin-top: 5em;
}
#copyright ul {
  display: inline-block;
  border-radius: 0.35em;
  color: rgba(255, 255, 255);
  padding: 0.75em 2em;
  font-size: 0.9em;
}
#copyright ul li {
  display: inline-block;
  margin-left: 1em;
  padding-left: 1em;
  border-left: solid 1px #333;
  border-left-color: rgba(255, 255, 255, 0.05);
}
#copyright ul li:first-child {
  border-left: 0;
  margin-left: 0;
  padding-left: 0;
}
#copyright a {
  color: inherit;
}
#copyright a:hover {
  color: #fff;
}
/* XLarge */
@media screen and (max-width: 1680px) {
  /* Basic */
  body, input, textarea, select {
    font-size: 12pt;
  }
}
/* Large */
@media screen and (max-width: 1280px) {
  /* Basic */
  body, input, select, textarea {
    font-size: 11pt;
    line-height: 1.5em;
    letter-spacing: 0.015em;
  }
  /* Wrapper */
  .wrapper {
    padding: 4em 0 7em 0;
  }
  /* Logo */
  #logo {
    margin-top: -0.5em !important;
  }
  #logo h1 {
    font-size: 1.75em;
  }
  /* Intro */
  #intro {
    padding-bottom: 7em;
  }
  #intro p.style1 {
    font-size: 1.25em;
  }
  #intro p.style2 {
    font-size: 2.25em;
  }
  /* Footer */
  #footer {
    padding-bottom: 4em;
  }
  #footer header.style1 {
    padding-bottom: 4em;
    margin-bottom: 4em;
    border-bottom: solid 1px rgba(255, 255, 255, 0.05);
  }
  /* Copyright */
  #copyright {
    padding-top: 4em;
    margin-top: 4em;
  }
}
/* Medium */
#navPanel, #titleBar {
  display: none;
}
@media screen and (max-width: 980px) {
  /* Section/Article */
  header br {
    display: none;
  }
  /* Form */
  form ul.actions {
    text-align: center;
  }
  /* Feature List */
  .feature-list {
    max-width: 40em;
  }
  .feature-list section {
    padding-top: 4em;
  }
  .feature-list > .row > :first-child > section {
    border-top: 0;
    padding-top: 0;
  }
  /* Nav */
  #nav {
    display: none;
  }
  /* Logo */
  #logo {
    top: 0;
  }
  /* Intro */
  #intro p.style3 {
    width: auto;
  }
  /* Highlights */
  #highlights .highlight {
    max-width: 40em;
    margin-left: auto;
    margin-right: auto;
  }
  /* Footer */
  #footer .feature-list {
    border-top: solid 1px rgba(255, 255, 255, 0.05);
    padding-top: 4em;
  }
}
@media screen and (max-width: 980px) and (min-width: 737px) {
  #footer .feature-list > .row > :nth-child(2) > section {
    border-top: 0;
    padding-top: 0;
  }
}
@media screen and (max-width: 980px) {
  /* Nav */
  #page-wrapper {
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-transition: -moz-transform 0.5s ease;
    -webkit-transition: -webkit-transform 0.5s ease;
    -ms-transition: -ms-transform 0.5s ease;
    transition: transform 0.5s ease;
    padding-bottom: 1px;
  }
  #titleBar {
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-transition: -moz-transform 0.5s ease;
    -webkit-transition: -webkit-transform 0.5s ease;
    -ms-transition: -ms-transform 0.5s ease;
    transition: transform 0.5s ease;
    display: block;
    height: 44px;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10001;
    background: none;
  }
  #titleBar .title {
    display: none;
  }
  #titleBar .toggle {
    text-decoration: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 44px;
  }
  #titleBar .toggle:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    text-transform: none !important;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
  }
	#titleBar .toggle:before {
    -moz-transition: all .15s ease-in-out;
    -webkit-transition: all .15s ease-in-out;
    -ms-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
    text-decoration: none;
    content: '\f0c9';
    font-size: 14px;
    position: absolute;
    top: 6px;
    left: 6px;
    display: block;
    width: 54px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    color: rgba(255, 255, 255, 0.75);
    background-color: rgba(92, 95, 103, 0.5);
    border-radius: 0.25em;
  }
  #titleBar .toggle:active:before {
    background-color: rgba(92, 95, 103, 0.75);
  }
  #navPanel {
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-transform: translateX(-275px);
    -webkit-transform: translateX(-275px);
    -ms-transform: translateX(-275px);
    transform: translateX(-275px);
    -moz-transition: -moz-transform 0.5s ease;
    -webkit-transition: -webkit-transform 0.5s ease;
    -ms-transition: -ms-transform 0.5s ease;
    transition: transform 0.5s ease;
    display: block;
    height: 100%;
    left: 0;
    overflow-y: auto;
    position: fixed;
    top: 0;
    width: 275px;
    z-index: 10002;
    background: #242730 url("images/overlay.png");
    box-shadow: inset -3px 0px 4px 0px rgba(0, 0, 0, 0.1);
  }
  #navPanel .link {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.85em;
    letter-spacing: 0.15em;
    text-decoration: none;
    height: 44px;
    line-height: 44px;
    border-top: solid 1px rgba(255, 255, 255, 0.05);
    margin: 0 15px 0 15px;
  }
  #navPanel .link:first-child {
    border-top: 0;
  }
  #navPanel .indent-1 {
    display: inline-block;
    width: 1em;
  }
	#navPanel .indent-2 {
    display: inline-block;
    width: 2em;
  }
  #navPanel .indent-3 {
    display: inline-block;
    width: 3em;
  }
  #navPanel .indent-4 {
    display: inline-block;
    width: 4em;
  }
  #navPanel .indent-5 {
    display: inline-block;
    width: 5em;
  }
  #navPanel .depth-0 {
    color: #fff;
  }
  body.navPanel-visible #page-wrapper {
    -moz-transform: translateX(275px);
    -webkit-transform: translateX(275px);
    -ms-transform: translateX(275px);
    transform: translateX(275px);
  }
  body.navPanel-visible #titleBar {
    -moz-transform: translateX(275px);
    -webkit-transform: translateX(275px);
    -ms-transform: translateX(275px);
    transform: translateX(275px);
  }
  body.navPanel-visible #navPanel {
    -moz-transform: translateX(0);
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
/* Small */
@media screen and (max-width: 736px) {
  /* Basic */
  body, input, select, textarea {
    line-height: 1.5em;
    font-size: 10.5pt;
    letter-spacing: 0;
  }
  h2, h3, h4, h5, h6 {
    font-size: 1.2em;
    letter-spacing: 0.05em;
    margin: 0 0 1em 0;
  }
  hr {
    margin: 1em 0 1em 0;
  }
  /* Section/Article */
  section, article {
    clear: both;
  }
  header br {
    display: none;
  }
  header.style1 {
    padding: 0 0 1em 0;
  }
  header.style1 h2 {
    font-size: 1.5em;
    letter-spacing: 0.075em;
    line-height: 1.25em;
  }
  header.style1 p {
    font-size: 1em;
    letter-spacing: 0;
    display: block;
    margin: 0;
  }
  /* Button */
  input[type="button"], input[type="submit"], input[type="reset"], button, .button {
    display: block;
    width: 100%;
    font-size: 1em;
    max-width: 30em;
    margin: 0 auto;
  }
	
	.button.large{
		min-width: 9em;
	}
	
	@media screen and (max-width: 980px){
		
		
	}
	
	
	@media screen and (max-width: 450px){
	 input[type="button"], input[type="submit"], input[type="reset"], button, .button {
		 display:inline;
		}
	} 
	 /* Actions */
	 ul.actions {
    margin: 2em 0 0 0;
  }
  ul.actions li {
    margin: 15px 0 0 0;
    display: block;
  }
  ul.actions li:first-child {
    margin-top: 0;
  }
  /* Feature List */
  .feature-list section {
    padding-top: 2em;
    padding-left: 4em;
  }
  .feature-list h3:before {
    font-size: 0.9em;
  }
  /* Box */
  .box.post-excerpt .image.left {
    position: relative;
    top: 0.25em;
    width: 25%;
    margin: 0;
  }
  .box.post-excerpt h3, .box.post-excerpt p {
    margin-left: 32.5%;
  }
  /* Wrapper */
  .wrapper {
    padding: 3em 0 6em 0;
  }
  .wrapper .title {
    font-size: 1.2em;
    width: 18em;
    height: 2.5em;
    top: -2.25em;
    line-height: 2.3em;
    margin-bottom: -2.5em;
    margin-left: -9em;
    padding-top: 0.5em;
  }
  .wrapper .title:before, .wrapper .title:after {
    height: 15px;
    bottom: -15px;
    background-size: 100% 100%;
  }
  /* Header */
  #header {
    height: 17em;
  }
  .homepage #header {
    height: 20em;
  }
  /* Logo */
  #logo {
    text-align: center;
    padding-left: 2em;
    padding-right: 2em;
  }
  #logo h1 {
    font-size: 1.5em;
    letter-spacing: 0.2em;
  }
	#logo p {
    margin: 1.25em 0 0 0;
    display: block;
    letter-spacing: 0.2em;
    font-size: 0.9em;
  }
  /* Intro */
  #intro {
    text-align: center;
    padding-right: 2em;
    padding-left: 2em;
    padding-bottom: 5em;
    margin: 0 auto;
  }
	#intro .style2{
		width:100%;
	}
	
	#intro .style2 p{
		line-height:1.3;
	}
	
  #intro p.style1 {
    margin-bottom: 1.5em;
  }
  #intro p.style2 {
    font-size: 1.5em;
    letter-spacing: 0.05em;
    line-height: 1.25em;
    padding: 1.25em;
  }
  /* Features Babycarrier*/
  #features header.style1 {
    padding-bottom: 4em;
  }
  #features ul.actions {
    margin-top: 4em;
  }
	/* アイテムリスト*/
	.wrapper.style3 .item-list{
		width:50%;
	}
	
	/* Features2 2カラム*/
	#features2{
		padding:50px 20px;
	}

	.features2-wrapper{
		margin:0;
	}
	/* Content */
  #content {
    padding: 0 0 2em 0;
  }
  #content header.style1 {
    padding-bottom: 2.5em;
  }
  /* Footer */
  #footer {
    padding-bottom: 0;
  }
  #footer header.style1 {
    padding-bottom: 0;
    margin-bottom: 2em;
    border-bottom: 0;
  }
  #footer .feature-list {
    border-top: 0;
    padding-top: 0;
  }
	
	#footer .row > .col-4{
		margin-bottom:30px;
	}
	
		#footer .col-4:last-child {
		margin-bottom:0;
	}

  /* Copyright */
  #copyright {
    padding-top: 0;
    margin-top: 4em;
    border-top: 0;
  }
  #copyright ul {
    padding: 1em 2em;
  }
  #copyright ul li {
    display: block;
    margin: 0.5em 0 0 0;
    border-left: 0;
    padding: 0;
  }
  #copyright ul li:first-child {
    margin-top: 0;
  }
}
/* 2025.2.4 追記 */
/* .row > .col-4 {
  width: 33.33%;
  box-sizing: border-box;
  text-align: center;
}
.row > .col-4:nth-child(-n+2) {
  display: flex;
  justify-content: center;
} */
 /* .row.aln-center .col-4 .highlight >p{
  font-size: 15px;
 } */
 .row {
	display: flex;
	flex-wrap: wrap;
	box-sizing: border-box;
	align-items: stretch;
	justify-content: center;
	align-items: center;
}
.row > .col-4 {
	width: 33.33333%;
}
.highlight ul li{
	list-style: none;
	line-height: 1.8;
	font-size: clamp(14px, 1.5vw, 16px);
}
ul {
	list-style: disc;
	padding-left: 1em;
}
body{
	font-family: 'Source Sans Pro', sans-serif;
	background: #E8E2DC url(/images/overlay.png);
}
.contact-inner{
	width: 92%;
	margin: 0 auto;
}
.select-area select{
	background-color: #fff;
}
.g-heading .g-heading__ja{
	font-size: 0.5em;
}
.fs-c-breadcrumb__list li{
	list-style: none;
	display: inline;
}
.fs-c-breadcrumb__list li:first-child:after{
	content: " > ";
	font-size: 1em;
}
.fs-c-breadcrumb ol.fs-c-breadcrumb__list{
	padding-inline-start: 0;
}
.form-confirm-btnarea{
	margin-bottom: clamp(40px, 8vw, 100px);
}

/* ■■■■■■■■■■　privacy　■■■■■■■■■■ */
/* ------------------ pri-contents__section -------------------- */
.pri-contents__container{
  background-color: #fff;
  border-radius: 15px;
}
.pri-contents__container :is(p,dd){
  font-size: clamp(14px, 1.5vw, 16px);
  margin-bottom: 3em;
}
.pri-txt{
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 2;
  margin-bottom: 2em;
}
.pri-contents__data dt{
  color: #88A48B;
  font-weight: bold;
  border-left: 6px solid #88A48B;
  padding-left: .6em;
  line-height: 1.4;
  font-size: clamp(18px,2.2vw,22px);
  margin-bottom: 1em;
}
@media screen and (min-width: 768px){
  .pri-contents__section{
    --pdt:0;
    --pdb:200px;
  }
  .pri-contents__container{
    padding: 3em;
  }
}
@media screen and (max-width: 767px){
  .pri-contents__section{
    --pdt:0;
    --pdb:120px;
  }
  .pri-contents__container{
    padding: 1.5em;
  }
}
.p-wrapper {
  max-width: 1000px;
  width: 90%;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: clamp(40px, 8vw, 100px);
}
.pri-contents__data dd{
  margin-left: 0;
}