<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
body{
	margin:0px;
	padding:0px;
}

a:hover img{
 opacity:.5;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
 }

a:hover{text-decoration: none!important;}

p{line-height: 2!important;letter-spacing: 0.05em;font-family: 'Noto Sans JP', sans-serif!important;color:#000; }

/*==================common==================*/
.imgc{display: block; margin:0 auto!important;}
.bor{border-radius: 20px;}
ul.lidisc{padding: 0 0 0 20px;margin: 0;}
ul.lidisc li{list-style: disc;margin: 0 0 10px;font-family: 'Noto Sans JP', sans-serif!important;}
.fontg1{font-family: 'Zen Kaku Gothic New', sans-serif!important;}

.flbox{
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.flbox2{
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	flex-direction: column;
}
.bginfo{
	background-image:  url("../img/top/info_bg.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	
}

@media screen and (max-width:480px){
.bginfo {
	background-image: url("../img/top/info_bg.png");
	background-repeat: no-repeat;
	background-size:cover;
}
}

/*----------------------------------
  Back To Top
------------------------------------*/
.s-back-to-top {
	position: fixed;
	z-index: 99;
  right: 0;
  bottom: 0;
  display: block;
  width: 3rem;
  height: 3rem;
  background: #dcd6b1;
  text-align: center;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-back-to-top:before {
  display: block;
  font-size: 0.75rem;
  font-style: normal;
  font-family: themify;
	font-weight: bold;
  color: #fff!important;
  line-height: 3rem;
  content: "\e627";
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-back-to-top:hover {
  background: #B0A154;
}

.s-back-to-top:hover:before {
  color: #A28459;
}

.s-back-to-top:focus, .s-back-to-top:hover {
  text-decoration: none;
}

@media (max-width: 480px) {
.s-back-to-top {
  position: relative;
	width: 100%;
  right: 0;
  height: 100%;
	bottom: 0!important;
	opacity: 1!important;
	}
.s-back-to-top:before {
	position: absolute;
  display: block;
  font-size: 0.75rem;
  font-style: normal;
  font-family: themify;
  color: #fff;
  line-height: 0;
  content: "\e627";
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}
}

/* The button becomes visible */
.s-back-to-top.-is-visible {
  bottom: 5.125rem;
  opacity: .8;
}

.s-back-to-top.-is-visible:hover {
  opacity: 1;
}

/* If the user keeps scrolling down, the button is out of focus and becomes less visible */
.s-back-to-top.-zoom-out {
  opacity: .6;
}

/*----------------------------------
  Button
------------------------------------*/
.s-btn {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  border: none;
  white-space: nowrap;
  touch-action: manipulation;
  cursor: pointer;
  user-select: none;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-btn:focus, .s-btn:hover {
  text-decoration: none;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-btn.focus {
  text-decoration: none;
}

.s-btn:active, .s-btn.active {
  background-image: none;
  outline: 0;
}

.s-btn.disabled, .s-btn:disabled,
fieldset[disabled] .s-btn {
  cursor: not-allowed;
  opacity: .65;
}

.s-btn__element--left, .s-btn__element--right {
  display: table-cell;
  vertical-align: middle;
  text-align: left;
}

/* Sizes
------------------------------ */
.s-btn--xs {
  font-size: 0.75rem;
  font-weight: 400;
  padding: 0.5rem 1.25rem;
}

.s-btn--sm {
  font-size: 0.875rem;
  font-weight: 400;
  padding: 0.75rem 1.25rem;
}

.s-btn--md {
  font-size: 0.8125rem;
  font-weight: 400;
  padding: 0.75rem 10rem;
}

.s-btn-icon--md {
  font-size: 1rem;
  padding:10px 50px;
}

/* Styles
------------------------------ */
.s-btn--white-brd {
  color: #fff;
  background: transparent;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #fff;
}

.s-btn--white-brd:focus, .s-btn--white-brd:hover {
  color: #222324;
  background: #fff;
  border-color: #fff;
}

.s-btn--white-bg {
  color: #63b3aa;
  background: rgba(255,255,255,0.9);
	border: 1px solid #63b3aa;
}

.s-btn--white-bg:focus, .s-btn--white-bg:hover {
	color: #464646;
	border: 1px solid #8F8F8F;
	opacity: 0.5;
}

.s-btn--brown-bg {
  color: #fff;
  background: #CBC293;
	border: 1px solid #CBC293;
}

.s-btn--brown-bg:focus, .s-btn--brown-bg:hover {
	color: #fff;
	background: #CBC293;
	border: 1px solid #CBC293;
	opacity: 0.75;
}

.s-btn--dark-bg {
  color: #fff;
  background: #222324;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #222324;
}

.s-btn--dark-bg:focus, .s-btn--dark-bg:hover {
  color: #fff;
  background: #13b1cd;
  border-color: #13b1cd;
}

.s-btn--dark-brd {
  color: #222324;
  background: transparent;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #222324;
}

.s-btn--dark-brd:focus, .s-btn--dark-brd:hover {
  color: #fff;
  background: #222324;
  border-color: #222324;
}

.s-btn--primary-bg {
  color: #fff!important;
  background: #b9a665;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #b9a665;
transition-duration: 300ms;
}
.s-btn--primary-bg:focus, .s-btn--primary-bg:hover {
  color: #b9a665!important;
  background: #fff;
  border-color: #b9a665;
}

.s-btn--yellow-bg {
  color: #fff!important;
  background: #CBC14A;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #CBC14A;
	transition-duration: 300ms;
}
.s-btn--yellow-bg:focus, .s-btn--yellow-bg:hover {
  color: #7F7821!important;
  background: #fff;
  border-color: #7F7821;
}

.s-btn--green-bg {
  color: #fff!important;
  background: #95CA63;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #95CA63;
	transition-duration: 300ms;
}
.s-btn--green-bg:focus, .s-btn--green-bg:hover {
  color: #52A335!important;
  background: #fff;
  border-color: #52A335;
}

.s-btn--primary-gra {
  color: #fff;
  background-image: linear-gradient(45deg, #848CAD 0%, #1B4120 100%);
  border-width: 0.0625rem;
  border-style: solid;
	border: none;
}

.s-btn--primary-gra:focus, .s-btn--primary-gra:hover {
  color: #fff;
  background-image: linear-gradient(45deg, #AEB1BF 0%, #4E587C 100%);
	border: none;
}

.s-btn--primary-bg2 {
  color: #fff;
  background: #044288;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #044288;
}

.s-btn--primary-bg2:focus, .s-btn--primary-bg2:hover {
  color: #044288;
  background: #fff;
  border-color: #044288;
}

.s-btn--primary-bg3 {
  color: #fff;
  background: #003867;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #003867;
}

.s-btn--primary-bg3:focus, .s-btn--primary-bg3:hover {
  color: #003867;
  background: #fff;
  border-color: #003867;
}
.s-btn--primary-bg4 {
  color: #fff;
  background: #9eaacb;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #9eaacb;
}

.s-btn--primary-bg4:focus, .s-btn--primary-bg4:hover {
  color: #9eaacb;
  background: #fff;
  border-color: #9eaacb;
}

.s-btn--gold-brd {
  color: #94783d;
  background: rgba(255,255,255,0.9);
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #94783d;
}

.s-btn--gold-brd2 {
  color: #B0A154;
  background: rgba(255,255,255,0.9);
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #dcd6b1;
}

.s-btn--gold-brd:focus, .s-btn--gold-brd:hover {
  color: #fff!important;
  background: #94783d;
  border-color: #94783d;
}

.s-btn--gold-brd2:focus, .s-btn--gold-brd2:hover {
  color: #fff!important;
  background: #dcd6b1;
  border-color: #dcd6b1;
}

.s-btn-icon--white-brd {
  border-left: none;
}

.s-btn-icon--dark-brd {
  border-left: none;
}

/*==================footer==================*/

#footel{
	position: relative;
	margin:0;
	width:100%;
	font-weight:normal;
	background: #63b3aa;
	z-index: 999!important;
}
@media screen and (max-width:480px){
#footel {
	z-index: 999;
	margin:0;
	position: fixed;
    bottom:0;
	width:100%;
	padding:0;
	background-color: rgba(0,0,0,0);
}
}

header {
	margin-bottom: 0;
	width: 100%;
	position: fixed;
	height:80px;
	top: 0;
	z-index: 9999!important;
	font-weight:normal!important;
	transition: 1s;
    font-family:"Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}
#header.active{
	box-shadow: 0 2px 10px 0 rgba(45,45,45,0.36)!important;	
	transition: 1s;
	background: #fff;
}
@media screen and (max-width:1024px){
	header {
		height: 70px;
	}
}
@media screen and (max-width:480px){
p{font-size: 16px!important;}
header {
	height: 66px!important;
}
}
/*==================slide==================*/

#pic{
	position: relative;
	clear:both;
	margin:0;
	padding:0;
	width:100%;
}
#pict{
	position: absolute;
	top:-1px;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 1;
	clip-path: ellipse(150px 50px at top);
	max-width:400px; 
	padding:10px 20px;
	color: #fff;
}
#pic ul,#pic li {
	float:left;
	list-style: none;
	margin: 0;
	padding:0;
}
#pic li img{
	max-width: 600px!important;
	height: 270px!important;
}
@media only screen and (max-width: 480px) {
	#pic li img{
		max-width: 600px!important;
		height: 270px!important;
	}
}

.servfont{
	font-weight: 400;
	font-family:YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	color: #fff;
	letter-spacing: .1em;
}
@media screen and (max-width: 480px) {
	.servfont{
		letter-spacing: .1em;
	}
}
.time {
	width: 100%;
	margin: 0 auto 10px;
	font-weight: bold;
}
.time th {
	padding:10px 4px;
	word-break: break-all;
	text-align: center;
	font-weight: bold;
	font-size: 18px!important;
	color: #fff;
	letter-spacing: .2em;
	background-color: #63b3aa;
}
.time td {
	padding:10px 4px;
	word-break: break-all;
	text-align: center;
	font-size: 18px!important;
	color: #5A5959;
	font-weight: bold!important;
	background: #fff;
	border-bottom: 1px solid #dcd6b1;
}
@media screen and (max-width: 991px) {
	.time th {
		padding:10px 2px;
		font-size: 16px!important;
		letter-spacing: 0.2;
	}
	.time td {
		padding:10px 2px;
		font-size: 16px!important;
	}
}

@media screen and (max-width: 768px) {
	.time th {
		padding:10px 2px;
		font-size: 14px!important;
		letter-spacing: 0.2;
	}
	.time td {
		padding:10px 2px;
		font-size: 14px!important;
	}
}

.timew {
	width: 100%;
	margin: 0 auto 10px;
	font-weight: bold;
}
.timew th {
	padding:10px;
	word-break: break-all;
	text-align: center;
	font-weight: bold;
	font-size: 16px!important;
	color: #fff;
    border-bottom: 1px solid #fff;
}
.timew td {
	padding:10px;
	word-break: break-all;
	text-align: center;
	font-size: 16px!important;
	color: #fff;
	font-weight: bold!important;
	border-bottom: 1px solid #fff;
}

@media screen and (max-width: 768px) {
	.timew th {
		padding:10px 2px;
		font-size: 16px!important;
	}
	.timew td {
		padding:10px 2px;
		font-size: 16px!important;
	}
}

table.com{
	width:100%;
	border-collapse:collapse;
	border-spacing:0;
	background-color:#fff;
	empty-cells:show;
	border-top:solid 1px #ccc;
	border-left:solid 1px #ccc;
	font-family: 'Zen Kaku Gothic New', sans-serif!important;
}
.com th{
	font-size:16px;
	letter-spacing:1px;
	padding:0.5em 0.5em;
	border-bottom:solid 1px #ccc;
	border-right:solid 1px #ccc;
	color:#333;
	background-color: #D4EFE7;
	vertical-align: middle;
	text-align: left;
}

.com td{
	font-size:16px!important;
	color:#333;
	padding:0.5em 0.5em;
	border-bottom:solid 1px #ccc;
	border-right:solid 1px #ccc;
	vertical-align: middle;
    font-family: 'Zen Kaku Gothic New', sans-serif!important;
}
@media screen and (max-width: 480px) {
	.com td,.com th{
		width: 100%;
	  display: block;
	  padding: 10px;
	}
}

table.price{
	margin:0 auto 15px;
	width:100%;
	border-collapse:collapse;
	border-spacing:0;
	background-color:#fff;
	empty-cells:show;
	border-top:solid 1px #ccc;
	border-left:solid 1px #ccc;
	font-family: 'Zen Kaku Gothic New', sans-serif!important;
	padding: 10px;
}
.price th{
	font-size:16px;
	letter-spacing:1px;
	padding:0.5em 0.5em;
	border-bottom:solid 1px #ccc;
	border-right:solid 1px #ccc;
	color:#333;
	background-color: #D4EFE7;
	vertical-align: middle;
	text-align: center;
}
.price td{
	font-size:16px;
	color:#333;
	padding:0.5em 0.5em;
	border-bottom:solid 1px #ccc;
	border-right:solid 1px #ccc;
	vertical-align: middle;
}
@media only screen and (max-width:480px){
	table{
		border-collapse:collapse;
	}

	.price td,.price th{
		width:100%;
		display:block;
		padding:10px;
	}
}

/*==================st==================*/
.st0{
	position: relative;
	color: #fff;
	padding:0.5em 0.2em 0.5em 1.4em;
	font-weight: bold;
	background: #99c5c8;
	letter-spacing: .05em;
	line-height: inherit;
	font-family: 'Shippori Mincho', serif !important;
}
.st0::after {
	 position: absolute;
	 top: 50%;
	 left:0;
	 transform:translateY(-50%);
	 content: '';
	 width: 1em;
	 height:2px;
	 background-color:#fff;
}


.st1 {
	position: relative;
	font-size: 26px;
	text-align: center;
	font-family: Playfair Display, serif;
}
.st1::before {
	content: attr(data-number);
	display: block;
	margin-bottom: 18px;
	color: #53B3AE;
	font-size: 30px;
}
.st1::after {
	content: '';
	position: absolute;
	top: 40px;
	left: 50%;
	transform: translateX(-50%);
	width: 10px;
	height: 15px;
	background-color: #53B3AE;
}

.st2 {
	position: relative;
	padding-top: 50px;
	padding-bottom: 50px;
	font-size: 26px;
	text-align: center;
	font-family: Playfair Display, serif;
}
.st2 span {
	position: relative;
	z-index: 2;
}
.st2::before {
	content: attr(data-en);
	position: absolute;
	top: -5px;
	left: 50%;
	transform: translateX(-50%);
	color:#BBB282;
	font-size: 45px;
	font-family: 'Tangerine', cursive;
}
.st2::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 25px;
	height: 25px;
	background: #62BAAB;
	transform: rotate(45deg) skew(10deg, 10deg);
}


.st2n2 {
	position: relative;
	padding-top: 50px;
	padding-bottom: 50px;
	font-size: 28px;
	text-align: center;
	font-family: Playfair Display, serif;
}

.st2n2 span {
	position: relative;
	z-index: 2;
}
.st2n2::before {
	content: attr(data-en);
	position: absolute;
	top: -5px;
	left: 50%;
	transform: translateX(-50%);
	color:#BBB282;
	font-size: 45px;
	font-family: 'Tangerine', cursive;
}
.st2n2::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 25px;
	height: 25px;
	background: #62BAAB;
	transform: rotate(45deg) skew(10deg, 10deg);
}


@media screen and (max-width: 480px) {
.st2n2 {
	position: relative;
	padding-top: 80px;
	padding-bottom: 50px;
	font-size: 22px;
	text-align: center;
	font-family: Playfair Display, serif;
}

.st2n2 span {
	position: relative;
	z-index: 2;
}
.st2n2::before {
	content: attr(data-en);
	position: absolute;
	top: 30px;
	left: 50%;
	transform: translateX(-50%);
	color:#BBB282;
	font-size: 42px;
	font-family: 'Tangerine', cursive;
}
.st2n2::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 25px;
	height: 25px;
	background: #62BAAB;
	transform: rotate(45deg) skew(10deg, 10deg);
}
    
}



.st3{
	font-family: Playfair Display, serif;
     position: relative;
     color: white;
     padding:0.4em 0.5em 0.4em 1.4em;
	font-weight: 500;
	background: rgb(126,103,85);
background: linear-gradient(90deg, rgba(126,103,85,1) 0%, rgba(122,99,82,1) 35%, rgba(159,139,124,1) 100%);
}
.st3::after {
     position: absolute;
     top: 50%;
     left:0;
     transform:translateY(-50%);
     content: '';
     width: 1.1em;
     height:2px;
     background-color:white;
}

.st4 {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 26px;
	text-align: center;
	font-family: Playfair Display, serif;
}

.st4::before,
.st4::after {
	content: '';
	width: 70px;
	height: 1px;
	background-color: #c6b3a3;
}
.st4::before {margin-right: 20px;}
.st4::after {margin-left: 20px;}

.st5 {
	padding: .5em .65em;
	margin-bottom: .6em;
	color: #ffffff;
	background-color: #c6b3a3;
	font-family: Playfair Display, serif;
}

.st5n2 {
	padding: .5em .75em;
	margin-bottom: .6em;
	color: #ffffff;
	background-color: #CBBA74;
	font-family: Playfair Display, serif;
	letter-spacing: .1em;
}

.st6 {
	position: relative;
	font-size: 26px;
	font-family: Playfair Display, serif;
}

.st6::before {
	content: attr(data-number);
	display: inline-block;
	margin-right: 20px;
	color: #c6b3a3;
	font-size: 30px;
	border-bottom: 1px solid #c6b3a3;
}

.st7 {
    position: relative;
    padding-left: 1.4em;
    font-family: Playfair Display, serif;
    border-bottom: 1px double #B49D3B;
}
 
.st7::after {
	content: '';
	position: absolute;
	bottom: 100;
	left:0;
	transform: rotate(45deg) skew(10deg, 10deg); 
	width: 25px;
	height: 25px;;
	background: #62BAAB;
}

.st8 {
	position: relative;
	padding-top: 26px;
	padding-bottom: 10px;
	font-family: 'Zen Old Mincho', serif;
}
.st8 span {
	position: relative;
	z-index: 2;
}
.st8::before {
	content: attr(data-en);
	position: absolute;
	top: -.8em;
	left: 50%;
	transform: translateX(-50%);
	font-size: 2em;
	font-weight: normal;
	font-family: 'Tangerine', cursive;
	color: #BBB282;
}
@media screen and (max-width: 480px) {
	.st8::before {
		top: -.5em;
		font-size: 1.6em;
	}
}



.stborder {
    text-align: center;
    padding: .5em  0.7em;
    color: #9b918a;
    letter-spacing: 0.05em;
    font-weight: bold;
    border-top: 5px double #C0B05B;
    border-bottom: 5px double #C0B05B;
   font-family: 'Shippori Mincho', serif!important;
}

.stborder2 {
    text-align: center;
    padding: .5em  0.7em;
    letter-spacing: 0.05em;
    font-weight: bold;
    border-top: 5px double #63b3aa;
    border-bottom: 5px double #63b3aa;
   font-family: 'Shippori Mincho', serif!important;
}

.eqst {
  border: 3px solid #d0b67a;
    padding: 1em;
    border-radius: 8px;
}

.eqst2 {
    padding: 1em;
    border: 3px solid #89BEC3;
    border-radius: 8px;

}

.box{
	position: relative;
	top:-40px;
	z-index: 1;
	margin: 0 30px;
	border-radius: 20px;
	background-color: #fff;
	box-shadow: 0px 0px 16px -6px rgba(0,0,0,0.4);
	overflow: hidden;
}

.boxt{
	position: relative;
	z-index: 1;
	text-align: center;
	margin: 0 0 20px;
}
.boxt::after {
	content: '';
	position: absolute;
	bottom: 0;
	top: 40px;
	left: 50%;
	width: 10px;
	height: 10px;
	background: #307880;
	transform: rotate(45deg) skew(10deg, 10deg);
}
/*==================stf==================*/

.stf{
	position: relative;
	padding: .5em .75em;
	background-color: #CBBA74;
	color: #FFFFFF;
	text-align: center;
	font-family: Playfair Display, serif !important;
	line-height: inherit;
	border-radius: 10px;
}
.stf::after {
	position: absolute;
	top: 100%;
	left: 50%;
	content: '';
	width: 0;
	height: 0;
	border: 10px solid transparent;
	border-top: 10px solid #CBBA74;
}

.stf1b{
	position: relative;
	padding: .5em .75em;
	background-color: #99C5C8;
	color: #fff;
	text-align: center;
	font-family: Playfair Display, serif !important;
	line-height: inherit;
	border-radius: 10px;
}
.stf1b::after {
	position: absolute;
	top: 100%;
	left: 50%;
	content: '';
	width: 0;
	height: 0;
	border: 10px solid transparent;
	border-top: 10px solid #99C5C8;
}


.stf1bg{
	position: relative;
	padding: .5em .75em;
	background-color: #99C5C8;
	color: #fff;
	line-height: inherit;
	border-radius: 10px;
}
.stf1bg::after {
	position: absolute;
	top: 100%;
	left: 8%;
	content: '';
	width: 0;
	height: 0;
	border: 10px solid transparent;
	border-top: 10px solid #99C5C8;
}



.stf2{
  position: relative;
  padding: .5em .75em;
  background: rgb(126,103,85);
background: linear-gradient(90deg, rgba(126,103,85,1) 0%, rgba(122,99,82,1) 35%, rgba(159,139,124,1) 100%);
color: #fff;
  border-radius: 6px;
   font-family: Playfair Display, serif;
    letter-spacing:0.1em;
}
.stf2::after {
  position: absolute;
  top: 100%;
  left: 30px;
  content: '';
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-top: 10px solid #7a6352;
}

.stf3 {
     text-align: center;
     position: relative;
     padding:12px;
	background: rgb(152,126,105);
background: linear-gradient(90deg, rgba(152,126,105,1) 0%, rgba(122,99,82,1) 35%, rgba(159,139,124,1) 100%);
color: #fff;
    font-weight: bold;
    font-family: Playfair Display, serif;
letter-spacing:0.1em;
}
.stf3::before,
.stf3::after {
     position: absolute;
     top: 100%;
     left:50%;
     transform:translateX(-50%);
     content: '';
     border: 14px solid transparent;
     border-top: 10px solid #7a6352;
}

.stf4{
  position: relative;
  padding: .5em .75em;
  background-color: #fff;
  border-radius: 6px;
	color: #c9b6a7;
    font-weight: bold;
    font-family: Playfair Display, serif;
letter-spacing:0.1em;
}
.stf4::after {
  position: absolute;
  top: 100%;
  left: 30px;
  content: '';
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-top: 10px solid #fff;
}

.stf5{
  position: relative;
  padding: .5em .75em;
  background-color: #f7f3ec;
  border-radius: 6px;
	color: #333;
    font-weight: bold;
    font-family: Playfair Display, serif;
letter-spacing:0.1em;
}
.stf5::after {
  position: absolute;
  top: 100%;
  left: 30px;
  content: '';
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-top: 10px solid #f7f3ec;
}

.stf7 {
	font-weight: bold;
     text-align: center;
     position: relative;
     padding:12px;
	background-color: #f7f3ec;
	color:#333;
	font-family: Playfair Display, serif;
}
.stf7::before,
.stf7::after {
     position: absolute;
     top: 100%;
     left:50%;
     transform:translateX(-50%);
     content: '';
     border: 14px solid transparent;
     border-top: 10px solid #f7f3ec;
}


.stf8 {
	font-weight: bold;
     text-align: center;
     position: relative;
     padding:12px;
	background-color: #c6b3a3;
	color:#FFFFFF;
	font-family: Playfair Display, serif;
}
.stf8::before,
.stf8::after {
     position: absolute;
     top: 100%;
     left:50%;
     transform:translateX(-50%);
     content: '';
     border: 14px solid transparent;
     border-top: 10px solid #c6b3a3;
}



.sttip{
	position: relative;
	margin: -2.2em 0.5em 0.5em;
	background-color: #FFFFFF;
	border: 2px solid #6CA6AD;
	padding: 10px 20px 15px;
	line-height: 1.5;
	border-radius: 0 5px 20px 20px;
	font-family: 'Shippori Mincho', serif!important;
}
.sttip::before {
  position: absolute;
  content: '';
  top: -2px;
  left: -12px;
  border: none;
  border-top: solid 1.2em transparent;
  border-right: solid 10px #6CA6AD;
}
@media only screen and (max-width: 480px) {
.sttip{
	position: relative;
	margin: 0 0 0.8em -1.7em;
	background-color: #fff;
	border: 2px solid #5E9EC6;
	padding: 0.8em 0.8em 0.8em 1.2em;
	font-size: 20px;
	border-radius: 0 20px 20px 0;
}
.sttip::before {
  position: absolute;
  content: '';
  top: 100%;
  left: -0.1em;
  border: none;
  border-bottom: solid 1em transparent;
  border-right: solid 0.7em #5E9EC6;
}
}












.fc1 {
	background-color: #393631;
}
.fc1::before,
.fc1::after {
     border: 14px solid transparent;
     border-top: 10px solid #393631;
}

.fc2 {
	background-color: #63b3aa;
	
}
.fc2::before,
.fc2::after {
     border: 14px solid transparent;
     border-top: 10px solid #63b3aa;
}

.color-primary1 {color: #63b3aa !important;}

.color-primary2 {color: #dcd6b1 !important;}

.color-primary3 {color: #B0A154 !important;}


.news{
	width: 100%;
	height: 40vh;
	margin: 0;
	padding: .1em;
}

.gapk{gap: 3rem !important;}

@media screen and (max-width:480px){
	.gapk{gap: 1rem !important;}
}
.kamoku{
	width: calc(100%/4 - 3rem);
	height: 200px;
	box-sizing: border-box;
	text-align: center;
	cursor:pointer;
	transition: 1s;
	border: 1px solid #fff;
	/* 以下のFlexboxで文字を中央寄せ */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: rgba(99,179,170,0.30);
}
.kamoku:hover{
	background: #dcd6b1;
}
.kamoku a{
	padding: 1.5em 16px;
	width: 100%;
	height: 100%;
	display: block!important;
}
.kamoku a:hover{
	color: #fff;
}
@media screen and (max-width:992px){
	.kamoku{
	width: calc(100%/3 - 3rem);
	}
}
@media screen and (max-width:480px){
	.kamoku{
		width: calc(100%/2 - 1rem);
		height:160px;
		background-color: rgba(99,179,170,0.30);

	}
	.kamoku img{
		width: 60px;
	}
}
.number{
	position: relative;
	padding-left: 90px;
	padding-bottom: .2em;
}
.number::before{
	position: absolute;
	content: " ";
	width: 80px;
	height:80px;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}
@media screen and (max-width:480px){
	.number{
		padding-left: 70px;
	}
	.number::before{
		width: 60px;
		height:60px;
	}
}
.num1::before{background: url("../img/top/n1.png") no-repeat center / contain;}
.num2::before{background: url("../img/top/n2.png") no-repeat center / contain;}
.num3::before{background: url("../img/top/n3.png") no-repeat center / contain;}
.num4::before{background: url("../img/top/n4.png") no-repeat center / contain;}
.num5::before{background: url("../img/top/n5.png") no-repeat center / contain;}
.num6::before{background: url("../img/top/n6.png") no-repeat center / contain;}
.num7::before{background: url("../img/top/n7.png") no-repeat center / contain;}

.List-Item-Content {
	position: relative;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
	z-index: 0;
}
@media screen and (max-width: 540px) {
  .List-Item-Content {
    flex-wrap: wrap;
  }
}
.List-Item-Content .col-10{
	position: relative;
}
.List-Item-Content .col-10::before {
	content: "";
	position: absolute;
	bottom: 20px;
	z-index: 0;
	width: calc(100% - 20px);
	border-bottom: 1px solid #63b3aa;
}
.List-Item-Content:last-child .col-10::before {
	border-bottom:none!important;
}
.List-Item-Content .col-2{
	position: relative;
}
.List-Item-Content .col-2::before {
	content: "";
  position: absolute;
  top: 50%!important;
  left: calc(50% - 1px);
  transform: translate(-50%,-50%);
  width: 2px;
  height: 100%;
  background: #63b3aa;
	z-index: -1;
}
.List-Item-Content-Number {
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: #63b3aa;
  color: #fff;
  font-size: 30px;
}
@media screen and (max-width: 480px) {
  .List-Item-Content-Number {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 24px;
  }
}
.ap{background: linear-gradient(rgba(175,165,148,0.50) 0%,rgba(175,165,148,0.50) 100%);}

.bg-top{position: relative;background: #FFF8E5;}
.bg-top::before{
	content: "";
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
	position: absolute;
	background:url("../img/top/bgtop.png") no-repeat center bottom /cover;
}
.bg-top2{
  background: #FFF8E5;
}

@media screen and (max-width:991px){
	.bg-top{padding-bottom: 520px;}
	.bg-top::before{
		top: inherit;
		bottom: 0;
		right: 0;
		width: 100%;
		height: 550px;
		background:url("../img/top/bgtopmd.png") no-repeat center /cover;
	}
}
@media screen and (max-width:768px){
	.bg-top{padding-bottom: 460px;}
}
@media screen and (max-width:480px){
	.bg-top{padding-bottom: 280px;}
	.bg-top::before{
		top: inherit;
		bottom: 0;
		right: 0;
		width: 100%;
		height: 25%;
		background:url("../img/top/bgtopmd.png") no-repeat center /cover;
	}
}

.bg-medi{
	background-image: url("../img/top/medi_bg_l.png"),url("../img/top/medi_bg_r.png");
	background-color: #63b3aa;
	background-repeat: repeat-y;
	background-position: top left -5%,top right -5%;
	background-size: 15%,15%;
}

@media screen and (max-width:576px){
	.bg-medi{
	background-image:url("../img/top/medi_bg_r.png");
	background-color:#63B3AA;
	background-repeat: repeat-y;
	background-position: top right -120px;
	background-size: 200px;
	}
}

.bordb{border-bottom: 2px solid #dcd6b1;}
.bgpt{background: url("../img/top/pt.png") repeat center / 1%!important;}

.poinbtn a {
    display: block;
	position: relative;
	margin: 0 auto;
	padding: 10px;
	width: 300px;
	color: #fff;
    text-align: center;
	text-decoration: none;
	font-size: 16px;
	border: 1px solid #63b3aa;
	transition: 0.3s;
	background-color: #63b3aa;
}
.poinbtn a::before {
  content: '';
  position: absolute;
  bottom: -7px;
  right: -7px;
  width: 100%;
  height: 1px;
  background-color: #dcd6b1;
  transition: 0.2s ease 0s;
}
.poinbtn a::after {
  content: '';
  position: absolute;
  top: 7px;
  right: -7px;
  width: 1px;
  height: 100%;
  background-color: #dcd6b1;
  transition: 0.2s ease 0.2s;
}
.poinbtn a:hover::before {
  width: 0%;
}
.poinbtn a:hover::after {
  height: 0%;
}
.poinbtn a:hover {
  text-decoration: none;
  background-color: rgba(255,255,255,0.70);
  color: #dcd6b1;
}


.poinbtn2 a {	
display: flex;	
justify-content: space-between;	
align-items: center;	
position: relative;	
margin: 0;	
padding: 10px;	
max-width: 300px;	
color: #fff;	
text-decoration: none;	
font-size: 16px;	
border: 1px solid #CBBA74;	
transition: 0.3s;	
background-color: #CBBA74;	
}	
.poinbtn2 a::before {	
content: '';	
position: absolute;	
bottom: -7px;	
right: -7px;	
width: 100%;	
height: 1px;	
background-color: #99C5C8;	
transition: 0.2s ease 0s;	
}	
.poinbtn2 a::after {	
content: '';	
position: absolute;	
top: 7px;	
right: -7px;	
width: 1px;	
height: 100%;	
background-color: #99C5C8;	
transition: 0.2s ease 0.2s;	
}	
.poinbtn2 a:hover::before {	
width: 0%;	
}	
.poinbtn2 a:hover::after {	
height: 0%;	
}	
.poinbtn2 a:hover {	
text-decoration: none;	
background-color: rgba(255,255,255,0.70);	
color: #99C5C8;	
}	




.borderbtn{
	border: 1px solid #493F24;
	display: inline-block;
	position: relative;
	max-width: 500px;
}
.borderbtn a{
	display: block;
	padding: .5em 3.5em;
	color: #493F24;
}
.borderbtn::before,
.borderbtn::after{
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  height: 1px;
  background: #493F24;
}
.borderbtn::before{
  width: 60px;
  transform: translate(30px, 0px);
}
.borderbtn::after{
  width: 15px;
  transform-origin: right center;
  transform: translate(30px, 0px) rotate(25deg);
}
.borderbtn:hover::before,
.borderbtn:hover::after{
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	right: -15%;
	height: 1px;
	transform: 3s;  
	transition-duration: 300ms;
}
.borderbtn:hover::before{
	width: 80px;
	transform: translate(30px, 0px);
	transition-duration: 300ms;
}
.borderbtn:hover::after{
  width: 15px;
  transform-origin: right center;
  transform: translate(30px, 0px) rotate(25deg);
}
.borderbtn a:hover{
	color: #fff!important;
	background: #8F8056;
	transition: .5s;
}

.borderbtn2{
	border: 1px solid #fff;
}
.borderbtn2 a{
  color: #fff;
}
.borderbtn2::before,
.borderbtn2::after{
  background: #fff;
}
#btnc {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	z-index:1!important;
}
.gradation {
  background: linear-gradient(#ADA16B, #8F7B35 30%, #F0E7C0);
  background: -webkit-linear-gradient(#ADA16B, #8F7B35 30%, #F0E7C0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bgline{
	position: relative;
}
.bgline::after{
	content: "";
	position: absolute;
	top: 1.2em;
	left: 50%;
	transform: translateX(-50%);
	width: 280px;
	height: 18px;
	background: url("../img/top/line2.png") no-repeat center / contain;
}


.title {
	width: 100%;
	height: 260px;
	margin-top:80px;
	position: relative;
	right: 0;
}
@media screen and (max-width:768px){
	.title {
		margin-top:66px;
		height: 180px;
	}
}
.titlein{
	width: 100%;
	position: absolute;
	top: 55%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
}
@media screen and (max-width:768px){
	.titlein{
		top: 55%;
		left: 50%;
		transform: translateY(-50%) translateX(-50%);
		-webkit-transform: translateY(-50%) translateX(-50%);
	}
}

.titletxt{
    position: relative;
	color: #fff;
	line-height: 1;
	font-weight: normal;
	text-align: center;
	font-family:YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif"!important;
}
.titletxt::before {
    content: attr(data-en);
    position: absolute;
    top: -1.5em !important;
    left: 50%!important;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
    color: rgba(255,255,255,0.45);
    font-size: 30px !important;
    z-index: 1 !important ;
    font-weight: 400 !important;
}

@media screen and (max-width:768px){
	.titletxt{
		font-size: 2em;
	}
}

.titlebg{
	background-position: center!important;
	background-repeat: no-repeat;
	background-size: auto;
	background-blend-mode: multiply;
	background: rgb(99,179,170);
}
@media screen and (max-width:768px){
	.titlebg{
		background-position: center!important;
		background-size: cover;
	}
}



.title2 {
	background-image: url("../img/top/pot3.png"),url("../img/top/pot2.png");
	background-repeat: no-repeat;
	background-position: right calc(15% - 100px) center,left calc(15% - 100px) center;
	background-size: 30%,30%;
}

@media screen and (max-width:576px){
.title2 {
	background-image: url("../img/top/pot_sp.png");
	background-repeat: no-repeat;
	background-position: center bottom 10px;
	background-size: 350px;
}
}







.borderl{
	border-bottom: 1px solid #564722;
	border-image: linear-gradient(to right, #b0a154 0%, #E9E5C6 80%, rgba(255,255,255,0.00) 100%);
	border-image-slice: 1;
}

.foottx{
  display: flex;
  flex-wrap: wrap;
	margin: 0 auto 10px;
	padding: 0;
  justify-content: center;
}
.foottx a{color: #FFFFFF;}
.foottx a:hover{color: #dcd6b1;}

.foottx li {
	margin: 0!important;
	padding: 0;
	float: left;
	list-style: none;
	font-size: 14px;
	letter-spacing: 1px;
	text-align: center!important;
	color:#FFFFFF;
	font-family: 'Noto Sans JP', sans-serif!important;
}
@media screen and (max-width:480px){
.foottx li {
	    margin: 0!important;
	padding: 0;
	float: left;
	list-style: none;
	font-size: 12px;
	letter-spacing: 1px;
	text-align: center!important;
}
	
}

.pointt {
	background-image: url("../img/top/pot3.png"),url("../img/top/pot2.png");
	background-color: #63b3aa;
	background-repeat: no-repeat;
	background-position: right calc(15% - 100px) center,left calc(15% - 100px) center;
	background-size: 30%,30%;
}

@media screen and (max-width:768px){
.pointt {
	background-image: url("../img/top/pot_sp.png");
	background-repeat: no-repeat;
	background-position: center bottom 15%;
	background-size: 90%;
}
}
@media screen and (max-width:576px){
.pointt {
	background-image: url("../img/top/pot_sp.png");
	background-color: #63b3aa;
	background-repeat: no-repeat;
	background-position: center bottom 10%;
	background-size: 90%;
}
}

#back-top{
	position: fixed;
	bottom: 10vh;
	right: 3%;
	z-index: 9999;
}
#back-top a{
	width: 50px;
	height: 50px;
	background:#dcd6b1;
	display: block;
	color: #fff;
	text-align: center;
	line-height: 50px;
	border-radius: 50%;
	text-decoration: none;
}

.sidenet{
	margin:0;
	padding:0;
	opacity: 0.95;
	z-index: 999!important;
	position: relative;
}
.net1 {
	right:0;
	position: fixed;
	z-index: 9999!important;
	top: 180px;
}
.net2 {
	right:0;
	position: fixed;
	z-index: 9999!important;
	top: 270px;
}
.net3 {
	right:0;
	position: fixed;
	z-index: 9999!important;
	top: 360px;
}
@media screen and (max-width:480px){
	.sidenet,.net1,.net2,.net3{display: none;}
}

.conceptbg {
	background-image:url("../img/top/concept_bg.png"),url("../img/top/topbg.png"),linear-gradient(90deg, rgba(2,0,36,0) 80%, rgba(99,179,170,1) 80%, rgba(99,179,170,1) 100%);
	background-repeat: no-repeat;
	background-position:left,right 19vw bottom,center;
	background-size:50%,contain,auto; 
}


@media screen and (max-width:991px){
.conceptbg {
	background-image: url("../img/top/concept_bg.png"),url("../img/top/topbg_sp.png");
	background-repeat: no-repeat;
	background-position: center,bottom right;
	background-size: 100%,contain;
	background-attachment: fixed,scroll;
}
}

.mainimg {
	position: relative;
	z-index: 1;
}
.mainimg::after {
	content: "";
	position: absolute;
	width: 400px;
	height: 400px;
	bottom: 0px;
	right: 5%;
	z-index: -1;
	background-image: url("../img/top/s1_pc2.png");
	background-size: contain;
}
@media screen and (max-width:1800px){
.mainimg::after {
	z-index: 1;
}
}
@media screen and (max-width:1200px){
.mainimg::after {
	z-index: -1;
	bottom: 200px;
	width: 350px;
	height: 350px;
}
}
@media screen and (max-width:991px){
.mainimg::after {
	display: none;
}
}

#message{
    position: relative;
    padding:100px 30px 0px 30px;
    
}





ul.flowrec{	
display: flex;	
margin: 0!important;	
padding: 0!important;	
list-style: none;	
justify-content: space-between;	
}	
.flowrec li{	
width: calc(25% - 20px);	
background: #fff;	
box-sizing: border-box;	
position: relative;	
font-size: 1rem;	
line-height: 1.5;	
letter-spacing: 0.02em;	
font-family: 'Noto Sans JP', sans-serif	
}	
.flowrec li::before {	
content: "";	
position: absolute;	
top: 50%;	
right: -24px;	
margin-top: -12px;	
border: 12px solid transparent;	
border-left: 12px solid #fff;	
z-index: 2;	
}	
.flowrec li:last-child::before {	
display: none;	
}	
@media screen and (max-width: 1200px) {	
ul.flowrec{	
flex-direction: column;	
}	
.flowrec li{	
width: 100%;	
margin-bottom: 2.5em;	
}	
.flowrec li::before {	
top: auto;	
right: auto;	
margin-top: auto;	
bottom: -22px;	
left: 50%;	
margin-left: -15px;	
border: 10px solid transparent;	
border-top: 12px solid #FFF;	
}	
}	
.step{	
display: block;	
font-weight: bold!important;	
background-color: #63b3aa;	
color: #fff;	
letter-spacing: .1275rem!important;	
padding: .5em .5em;	
text-align: center;	
font-family:YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";}	


ul.flowrec2{	
display: flex;	
margin: 0!important;	
padding: 0!important;	
list-style: none;	
justify-content: space-between;	
}	
.flowrec2 li{	
width: calc(50% - 20px);	
background: #fff;	
box-sizing: border-box;	
position: relative;	
font-size: 1rem;	
line-height: 1.5;	
letter-spacing: 0.02em;	
font-family: 'Noto Sans JP', sans-serif	
}	
.flowrec2 li::before {	
content: "";	
position: absolute;	
top: 50%;	
right: -24px;	
margin-top: -12px;	
border: 12px solid transparent;	
border-left: 12px solid #fff;	
z-index: 2;	
}	
.flowrec2 li:last-child::before {	
display: none;	
}	
@media screen and (max-width: 1200px) {	
ul.flowrec2{	
flex-direction: column;	
}	
.flowrec2 li{	
width: 100%;	
margin-bottom: 2.5em;	
}	
.flowrec2 li::before {	
top: auto;	
right: auto;	
margin-top: auto;	
bottom: -22px;	
left: 50%;	
margin-left: -15px;	
border: 10px solid transparent;	
border-top: 12px solid #FFF;	
}	
}




.st{	
background:#63b3aa;	
color: #fff;	
text-align: center;	
padding: .7em .2em;	
letter-spacing: .2em;	
font-weight: bold;	
}	
.staff-bg {	
background: url("../img/staff/pot2.png") no-repeat bottom 7% left/35% ,url("../img/staff/pot3.png") no-repeat bottom 7% right/35%,url("../img/staff/logo.png") no-repeat bottom 4% center/10%;	
}	
@media screen and (max-width: 990px) {	
.staff-bg {	
background: url("../img/staff/pot2.png") no-repeat bottom 3% left/40% ,url("../img/staff/pot3.png") no-repeat bottom 3% right/40%,url("../img/staff/logo.png") no-repeat bottom 1.5% center/15%;	
}	
}
@media screen and (max-width: 700px) {	
.staff-bg {	
background: url("../img/staff/pot_sp.png") no-repeat bottom center ,url("../img/staff/logo.png") no-repeat bottom 2% center/20%;	
}	
}


.bg-pre {
	
	background: url("../img/top/child_b2.png") no-repeat right/contain,url("../img/top/line_wood.png") repeat-x top,url("../img/top/line_wood.png") repeat-x bottom,url("../img/top/pre_bg.png") no-repeat top,url("../img/top/bg_wall.png");

}

@media screen and (max-width: 1450px){
.bg-pre {
	background: url("../img/top/child_b2.png") no-repeat  center right -20%/50%,
				url("../img/top/line_wood.png") repeat-x top,
				url("../img/top/line_wood.png") repeat-x bottom,
				url("../img/top/pre_bg.png") no-repeat top,url("../img/top/bg_wall.png");
	}
}

@media screen and (max-width: 982px){
.bg-pre {
	background: url("../img/top/line_wood_sp.png") repeat-x top,url("../img/top/line_wood_sp.png") repeat-x bottom,
		url("../img/top/pre_bg_sp.png") no-repeat top/contain,url("../img/top/bg_wall.png");
	}
}



.supt{
  position: relative;
  display: inline-block;
  padding: 0 45px;
	color: #553817;
	font-weight: 700;
}
.supt:before, .supt:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 44px;
  height: 2px;
  background-color: #553817;
}
.supt:before {
  left:0;
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
}
.supt:after {
  right: 0;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}

.tit{
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	position: relative;
}
.tit::before,.tit::after{
	content: "";
	width: 436px;
	height: 60px;
}
.tit::before {
	margin-right: 40px;
}
.tit::after {
	margin-left: 40px;
}

.tita::before,.tita::after{
	background: url("../img/top/tita.png") no-repeat center / contain;
}
.titr::before,.titr::after{
	background: url("../img/top/tita.png") no-repeat center / contain;
}
@media screen and (max-width:1391px){.tit::before,.tit::after{width: 30%;}}
@media screen and (max-width:1299px){
	.tit::before,.tit::after{width: 24%;}
	.tit::before {margin-right: 20px;}
	.tit::after {margin-left: 20px;}
}
@media screen and (max-width:754px){
	.tit{
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
		position: relative;
		flex-direction: column;
	}
	.tit::after{
		content: "";
		width: 50%;
		height: 68px;
		margin-left: inherit;
	}
	.tit::before {
		margin-right: inherit;
		width: inherit;
		height: inherit;
		background: none;
	}
}
@media screen and (max-width:480px){
	.tit::after{
		content: "";
		width: 70%;
		height: 68px;
	}
}


.currit{
    color: #FFD764;
    text-shadow: 2px 1px 0 #BDB765,
    2px 2px 0 #BDB765,
    2px 3px 0 #BDB765,
    2px 4px 0 #BDB765;
	letter-spacing: 0.1em;
}

.boxbg{
    position: relative;
    padding: 0 4% 30px;
    box-sizing: border-box;
}
.boxbg::before{
    position: absolute;
    display: block;
    content: "";
    background: #E9F1F0;
    background-size: 100% auto;
    width: 100%;
    height: calc(100% - 2rem);
    bottom: 0;
    left: 0;
    z-index: -3;
}

.supt4{
  position: relative;
  display: inline-block;
  padding: 0 45px;
	color: #71bca8;
	font-weight: 700;
}
.supt4:before, .supt4:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 44px;
  height: 2px;
  background-color: #71bca8;
}
.supt4:before {
  left:0;
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
}
.supt4:after {
  right: 0;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}

.pedit {
	position: relative;
	z-index: 1;
	color: #fff;
	letter-spacing: 0.41em!important;
	margin-right: .2em;
}
.pedit::before{
	text-align: center;
	white-space: pre;
	content: "●●●●●●●";
	color: #CBBA74;
	position: absolute;
	left: -.25em;
	width: 100%;
	z-index: -1;
	font-size: 2.125em;
	letter-spacing: -0.34em;
	line-height: .7;
}

@media screen and (min-width:768px){
	.bg-mouth{
		background-image: url("../img/ortho/p1pc.png");
		background-repeat: no-repeat;
		background-position: center;
		background-size: auto;
	}
}
</pre></body></html>