@charset "utf-8";
/* CSS Document */
@import url("flexbox.css");
/* Google Font 読み込み */
  @import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap');

/*
font-family: 'M PLUS Rounded 1c', sans-serif;
font-family: 'Noto Sans JP', sans-serif;
font-family: 'Noto Serif JP', serif;
*/


/* ----- フェードインエフェクトに関するcss ----- */
body {
  animation: fadeIn 3s ease 0s 1 normal;
  -webkit-animation: fadeIn 3s ease 0s 1 normal;
}
@keyframes fadeIn {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}
.fadein {
  opacity: 0.01;
  transform: translate(0px, 100px);
  transition: all 1000ms;
}
.fadein.scrollin {
  opacity: 1;
  transform: translate(0px, 0px);
}
#effect2 .fadein:nth-of-type(2) {
  -moz-transition-delay: 200ms;
  -webkit-transition-delay: 200ms;
  -o-transition-delay: 200ms;
  -ms-transition-delay: 200ms;
}
#effect2 .fadein:nth-of-type(3) {
  -moz-transition-delay: 400ms;
  -webkit-transition-delay: 400ms;
  -o-transition-delay: 400ms;
  -ms-transition-delay: 400ms;
}
#effect2 .fadein:nth-of-type(4) {
  -moz-transition-delay: 500ms;
  -webkit-transition-delay: 500ms;
  -o-transition-delay: 500ms;
  -ms-transition-delay: 500ms;
}
#effect2 .fadein:nth-of-type(5) {
  -moz-transition-delay: 700ms;
  -webkit-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
}
#effect2 .fadein:nth-of-type(6) {
  -moz-transition-delay: 900ms;
  -webkit-transition-delay: 900ms;
  -o-transition-delay: 900ms;
  -ms-transition-delay: 900ms;
}

html {
  font-size: 62.5%;
}
html, body {
  /*height: 100%;
	font-family: "Yu Gothic", "Meiryo", "Hiragino Kaku Gothic Pro", sans-serif;
	font-weight: 500;*/
  font-family: 'Noto Sans JP', sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.6;
}
/* 基本パーツ
-------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
}
ul {
  list-style: none;
}
img { /* Fluid-img */
  max-width: 100%;
  margin: 0 auto 0 auto;
  vertical-align: middle;
}
td img {
  vertical-align: baseline;
}
.rounded img {
  border-radius: 35px;
}
strong {
  font-weight: 600;
  font-size: 110%;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
p {
  margin: 0 0 0 0px;
  padding: 0 0 0 0;
  line-height: 1.7;
  word-break: break-all /*行末で改行 （単語の途中であっても改行させる）*/
}
blockquote {
  margin: 0 30px 0 30px;
}
a {
  color: #333;
  text-decoration: none;
}
a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
  transition: all 0.5s;
}
a:hover {
  text-decoration: none;
  color: #f25b27;
  transition: all 0.3s;
}
.br-sp {
  display: block;
}
.br-pc {
  display: none;
}
.em-markerline {
	display: inline;
	font-size: 100%;
	font-weight: 500;
	margin: 0 0 0px 0;
	padding: 0 0px 0 0px;
	/*letter-spacing: 0.1em;*/
	background: linear-gradient(transparent 40%, #faffa8 20%);
}
.text-round {
	font-family: 'M PLUS Rounded 1c', sans-serif;
}
.font-s {
	font-size: 80%;
}
.font-ss {
	font-size: 60%;
}
.font-l {
	font-size: 120%;
}
/*--- clearfix --- */
.clearfix:after {
  content: "."; /* 新しい要素を作る */
  display: block; /* ブロックレベル要素に */
  clear: both;
  height: 0;
  visibility: hidden;
}
.clearfix {
  display: inline-block;
}
/* Hides from IE-mac \*/
* html .clearfix {
  height: 1%;
}
.clearfix {
  display: block;
}
/* End hide from IE-mac */
/* floatをクリア */
.clear {
  clear: both;
}
span.main-step {
  white-space: nowrap; /* スマホの時だけ改行させる */
}
/* paddingの部分はみ出し防止 */
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}
a.ex-link {
  color: blue;
}
a.ex-link:hover {
  color: cornflowerblue;
}
a.ex-link:after {
  content: url("../../images/common/ico-link.png");
  margin-left: 5px;
}
form input, form select, form textarea {
  padding: 5px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
}
form input, form textarea {
	border-radius: 4px;
	border: 2px solid #333;
	font-size: 1.6rem;
	margin: 5px 0 5px 0;
}
form input:focus, form textarea:focus {
	background: #fffee6;
}
form input {
	width: 80%;
	height: 40px;
}
form input[type=checkbox], form label[type=checkbox] form label[type=checkbox] {
  margin: 5px 0 5px 0;
}
form label[type=checkbox] {
  margin: 5px 0 5px 0;
}
form textarea {
  width: 100%;
	height: 150px;
  margin: 0 auto 0 auto;
}

/* 共通レイアウト
-------------------------------------------- */
body {}
/* SP時 */
.pc {
  display: none;
}
.sp {
  display: inline;
}
/*--- body背景 --- */
.pale-ye-wrap {
  overflow: hidden;
  background: #fff;
  margin: 0 0 20px 0;
}
.pale-ye-bg {
  background: #FFFEE6;
  border-bottom-left-radius: 1000px 400px;
  border-bottom-right-radius: 1000px 400px;
  margin-left: -100px;
  margin-right: -100px;
  padding-left: 100px;
  padding-right: 100px;
  padding-bottom: 300px;
  position: relative;
}
.ye-wrap {
  overflow: hidden;
  background: #f5ee43;
}
.ye-wrap-bg {
  background: #fff;
  border-bottom-left-radius: 1000px 400px;
  border-bottom-right-radius: 1000px 400px;
  height: 150px;
  margin-left: -100px;
  margin-right: -100px;
  padding-left: 100px;
  padding-right: 100px;
  margin-top: -100px;
}
.pale-ora-wrap {
  overflow: hidden;
  background: #FFFEE6;
margin: 0 0 0 0;
	padding: 0 0 0 0;
 }
.pale-ora-bg {
  position: relative;
  /*background: #fff3e6;*/
  background: #f7e958;
  border-bottom-left-radius: 4200px 1500px;
  border-bottom-right-radius: 4200px 1500px;
  margin-left: -100px;
  margin-right: -100px;
  padding-left: 100px;
  padding-right: 100px;
  padding-bottom: 50px;
  margin-bottom: 0px;
  height: 65vh;
}
.pale-ye2-wrap {
  overflow: hidden;
  background: #fff;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}
.pale-ye2-bg {
  background: #FFFEE6;
  border-bottom-left-radius: 4200px 1500px;
  border-bottom-right-radius: 4200px 1500px;
  margin-left: -100px;
  margin-right: -100px;
  padding-left: 100px;
  padding-right: 100px;
  padding-bottom: 50px;
  margin-bottom: 30px;
  height: auto;
}
.pale-grey-wrap {
  overflow: hidden;
  background: #fff;
}
.pale-grey-bg {
  background: #f7f5f2;
  border-bottom-left-radius: 4200px 1500px;
  border-bottom-right-radius: 4200px 1500px;
  margin-left: -100px;
  margin-right: -100px;
  padding-left: 100px;
  padding-right: 100px;
  padding-bottom: 50px;
  margin-bottom: 30px;
  height: 400px;
}
/*--- contents　body背景 --- */
.contents-ye-bg {
  background: #FFFEE6;
  border-bottom-left-radius: 1000px 400px;
  border-bottom-right-radius: 1000px 400px;
  margin-left: -100px;
  margin-right: -100px;
  padding-left: 100px;
  padding-right: 100px;
  padding-bottom: 10px;
}
.sora-wrap {
  background: url("../../images/common/sora-bg.jpg") right top no-repeat;
  margin: 50px 0;
  padding: 60px 0;
}
.sora-wrap-bg {
  /*background: url("../../images/common/sora-bg.jpg");*/
  background:#fff;
  border-bottom-left-radius: 4200px 800px;
  border-bottom-right-radius: 4200px 800px;
  background-size: cover;
  margin-left: -100px;
  margin-right: -100px;
  padding: 80px 100px 40px 100px;
  margin-top: -40px;
}
.arrow-bg {
  background: url("../../images/common/arrow-bg.png") center center no-repeat;
	background-size: contain;
  height: auto;
  padding: 0px 0;
  margin: 0 0 20px 0;
}
.arrow-bg02 {
  background: url("../../images/common/arrow-bg02.png") center center no-repeat;
	background-size: contain;
  height: 307px;
  padding: 10px 0;
  margin: 0 0 20px 0;
}
/* 半円背景
-------------------------------------------- */
article {
  background-image: /* 1枚目の背景画像のパス */ url("../../images/common/half-circle01.png"), /* 2枚目の背景画像のパス */ url("../../images/common/half-circle02.png");
  background-position: /* 1枚目の背景画像の表示位置 */ left top 120px, /* 2枚目20pxの背景画像の表示位置 */ right bottom 90px;
  background-repeat: /* 1枚目の背景画像の設定 */ no-repeat, /* 2枚目の背景画像の設定 */ no-repeat;
  background-size: /* 1、2枚目の背景画像の共通サイズ */ auto;
}
/*　固定ヘッダー
-------------------------- */
#header-frame {
  z-index: 100000;
  position: fixed;
  top: 0px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 8px 0;
}
.fixed-header {
  -webkit-justify-content: space-between; /*左右中央寄せ*/
  justify-content: space-between; /*左右中央寄せ*/
  display: -webkit-box; /* Android4.3以前ブラウザ用 */
  display: -webkit-flex; /* iOS8以前Safari用 */
  display: flex;
  -webkit-align-items: center; /*上下中央寄せ*/
  align-items: center; /*上下中央寄せ*/
  margin: 0 auto 5px auto;
}
.header-logo {
  width: 80%;
  margin: 0 0 0 10px;
}
/*--- 固定ヘッダー内メニュー --- */
.fixed-menu {
  display: none;
}
/*--- スマホ用 検索・電話番号 --- */
.sp-tools {
  display: block;
  width: 94%;
  margin: 0 auto 10px auto;
}
.sp-search {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  border: 1px solid #898989;
  background: #fff;
  width: 48%;
}
.sp-search img {
  margin: 0;
  padding: 0;
}
.sp-tel {
  font-size: 112.5%;
  font-weight: 600;
}
/*--- スマホ用メニュー --- */
div.sp-drawer {
  display: block;
}
/*--- 見出し --- */
h2 {
  font-size: 3.6rem;
  margin: 0;
  font-weight: 500;
}
h2.heading05, h2.heading06 {
  position: relative;
  padding-bottom: 20px;
  text-align: center;
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: 0.05em;
  color: #3A3A3A;
}
h2.heading05 {
  font-size: 3.0rem;
}
h2.heading06 {
  font-size: 4.0rem;
}
h2.heading05::before, h2.heading06::before {
  content: attr(data-en);
  display: block;
  font-size: 2.0rem;
  font-weight: 300;
}
h2.catch-xl, h2.catch-l, h2.catch-m {
  /*font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";*/
  font-family: 'Noto Serif JP', serif;
  text-align: center;
  font-weight: 600;
	letter-spacing: 0.03em;
}
h2.catch-xl {
  font-size: 3.0rem;
  margin: 0 0 10px 0;
  line-height: 1.5em;
}
h2.catch-l {
  font-size: 2.0rem;
  margin: 0 0 10px 0;
}
h2.catch-m {
  font-size: 2.5rem;
  margin: 0 0 10px 0;
}
.heading-line {
  margin: 10px auto 10px auto;
  padding: 0 0 10px ;
  background-image: repeating-linear-gradient(-45deg, #e5c046 0px, #e5c046 2px, rgba(0 0 0 / 0) 0%, rgba(0 0 0 / 0) 50%);
  background-size: 8px 8px;
  background-repeat: repeat-x;
  background-position: center bottom;
}
.heading-line2 {
  padding-bottom: 29px;
  width: 100%;
  font-size: 26px;
  text-align: left;
  background-image: linear-gradient(90deg, #c7c7c7 0%, #c7c7c7 45%, #e5c046 45%, #e5c046 55%, #c7c7c7 55%, #c7c7c7 100%);
  background-size: 100% 5px;
  background-repeat: no-repeat;
  background-position: center bottom;
}
h3 {
  font-size: 3.6rem;
  margin: 0;
  font-weight: 500;
}
/*--- 共通 テキスト装飾 --- */
.text-l {
  font-size: 1.8rem;
}
.text-xl {
  font-size: 4.0rem;
  font-weight: 300;
}
.wgt_bold {
  font-weight: 500;
}
/*--- 共通 リンクボタン --- */
.link-but, .link-but2 {
  background: url("../../images/common/link-arrow.png") right 15px center no-repeat #f25b27;
  border-radius: 28px;
  font-size: 1.8rem;
  text-align: center;
  margin: 20px 0 0 0;
}
.link-but2 {
	width: 100%;
	margin: 10px auto 10px auto;
}
.link-but a, .link-but2 a{
  display: block;
  padding: 12px 50px 12px 10px;
  color: #fff;
}
.link-but:hover, .link-but2:hover {
background: url("../../images/common/link-arrow.png") right 15px center no-repeat #ffcc66;
  color: #333;
  transition: all 0.3s;
}
.link-but a:hover, .link-but2 a:hover {
	color: #f25b27;
	transition: all 0.3s;
}
.button {
  width: 95%;
  margin: 10px 0px;
  display: block;
}
.button a {
  display: block;
  text-align: center;
  width: 100%;
  background: #fff;
  border: 5px solid #ccc;
  border-radius: 20px;
  padding: 20px 30px 20px 30px;
  line-height: 0;
  font-weight: 500;
  font-size: 2.2rem;
  vertical-align: middle;
}
.button a:hover {
  border: 5px solid #444;
  transition: all 0.7s;
}
/*== ボタン共通設定 */
.btn {
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  border: 1px solid #555; /* ボーダーの色と太さ */
  padding: 10px 30px;
  text-align: center;
  outline: none;
  /*アニメーションの指定*/
  transition: ease .2s;
}
/*ボタン内spanの形状*/
.btn span {
  position: relative;
  z-index: 3; /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #333;
}
.btn:hover span {
  color: #333;
}
/*== 背景が流れる（左から右） */
.bgleft:before {
  content: '';
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #f8ea58; /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
/*hoverした際の形状*/
.bgleft:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
/*--- 共通 背景・幅 --- */
section {
  width: 100%;
  margin: 20px auto 20px auto;
}
.contents-wrap {
  width: 92%;
  margin: 0 auto;
  padding: 0px;
  font-size: 1.6rem;
}
/*--- フッター --- */
footer {
  width: 100%;
  margin: 0 auto;
  padding: 24px 0 80px 0;
  background: #f5ee43;
}
.footer-flame {
  width: 92%;
  margin: 0 auto;
  padding: 0px;
}
.footer-l {
  width: 100%;
  font-size: 1.6rem;
}
.f-ad {
  background: url("../../images/common/f-ad.png") left top 5px no-repeat;
  padding: 0 0 0 30px;
}
.f-tel {
  background: url("../../images/common/f-tel.png") left top 5px no-repeat;
  padding: 0 0 0 35px;
  line-height: 1.0em;
  font-size: 3.8rem;
}
.f-fax {
  padding: 0 0 0 40px;
  font-size: 1.6rem;
}
.footer-r {
  width: 100%;
}
ul.footer-menu {
  width: 48%;
  margin: 0 0 15px 0;
  padding: 0px;
}
ul.footer-menu li {
  margin: 0 0px 5px 0;
  padding: 0px 5px;
  font-weight: 500;
  font-size: 1.6rem;
}
ul.footer-menu li.f-bold, .f-bold {
  font-size: 1.8rem;
  font-weight: 600;
}
.copyright {
  text-align: center;
  width: 92%;
  padding: 10px 0;
  margin: 0px auto;
  font-size: 1.2rem;
}
/*　UIパーツ
-------------------------- */
#to-top {
  display: none;
}
.fixed-icon {
  display: none;
}
.order-site {
  position: fixed;
  right: 10px;
  bottom: 0px;
  z-index: 100;
  width: 250px;
}
.order-site img {
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
}
/*20230720追加*/
.link-menu:after {
  content: "∨";
  margin: 0 0 0 3px;
  font-weight: 600;
  font-size: 90%;
  color: #f75e34;
}
/*20230720追加*/
.header-wrap {
  width: 92%;
  margin: 0 auto 0 auto;
  padding: 0px;
  font-size: 1.6rem;
}
.contents-b {
  padding: 50px 0 0 0;
}
/*--- パンくずメニュー --- */
div.pankuzu-body {
  width: 100%;
  margin: 0px auto 10px auto;
}
ul.pankuzu {
  padding: 10px 0 30px 0;
}
ul.pankuzu li {
  float: left;
  color: #161616;
  font-size: 80%;
  font-weight: 500;
}
ul.pankuzu li a {
  color: #161616;
  margin-right: 15px;
}
ul.pankuzu li a:hover {
  color:#f25b27;
    transition: all 0.2s;
}
ul.pankuzu li:before {
  content: url(../../images/common/bg-pankuzu.png);
  margin-right: 1px;
}
ul.pankuzu li.home:before {
  content: url(../../images/common/pankuzu-home.png);
  margin-right: 5px;
}
/*20230726追加*/
.marudeli-top {
	width: 98%;
	margin: auto;
	border-radius: 20px;
	background: #f5ee43;
	padding: 20px;
}
.merit {
	width:140px;
}
/* flexbox子要素
-------------------------------------------- */
.box-img {
  width: 100%;
  margin: 0 0 10px 0;
}
.box-text {
  width: 100%;
  margin: 0 0px 30px 0;
}
.futan {
  width: 49%;
  margin: 0 0 20px 0;
}
/* まるデリ一覧
-------------------------------------------- */
.service-name-sb {
  font-weight: 400;
}
.service-box{
	width: 100%;
	margin: 0 0 20px 0;
}
.service-img img{
	border-radius: 0 35px 0 0;
}
.target {
	margin: 0;
	padding: 15px 0 15px 0;
	text-align: center;
	font-weight: 600;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-size: 100%;
	background: #fffee6;
}
.service-body {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 10px 20px 20px 20px ;
    background: #f8ea58;
    border-radius: 0 0 0 35px; 
	color: #000;
font-size: 90%;
}

.service-body:hover {
	color: #f75e34;
	transition: all 0.3s;
}
.service-body > h3 {
    font-size: 2.2rem;
    text-align: center;
    margin: 0px 0 0 0;
    padding: 0px 0 0 0 ;
    font-weight: 600;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-size: 130%;
	border-bottom: 1px solid #777;
}
.service-name{
	font-size: 4.0rem;
	line-height: 1.0em;
	position: relative;
	padding: 20px 80px 0 0px;
	text-align: center;
	letter-spacing: 0.05em;
	font-weight: 500;
	color: #3A3A3A;
}
.service-name::after {
  content: url( "../../images/common/link02-arrow.png");
	position: absolute;
  top: 28px;
  right: 60px;
}
.service-name-sb{
	font-size: 3.0rem;
	font-weight: 300;
}
.service-name-s{
	font-size: 3.0rem;
	font-weight: 500;
}
.news-shop {
	text-align: center;
	padding-top: 20px;
	margin: 0px auto 0 auto ;
	width: 95%;
}
.news-shop img{
	border-radius: 20px;
}
/* == */
@media print, screen and (min-width : 768px) {
  /* 共通レイアウト
-------------------------------------------- */
  body {
    font-size: 2.0rem;
  }
  .br-sp {
    display: none;
  }
  .br-pc {
    display: block;
  }
  /*--- body背景 --- */
  .pale-ye-wrap {
    overflow: hidden;
    background: #fff;
  }
  .pale-ye-bg {
    background: #FFFEE6;
    border-bottom-left-radius: 4200px 1500px;
    border-bottom-right-radius: 4200px 1500px;
    margin-left: -100px;
    margin-right: -100px;
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 180px;
    height: 100vh;
  }
  .ye-wrap {
    overflow: hidden;
    background: #f5ee43;
  }
  .ye-wrap-bg {
    background: #fff;
    border-bottom-left-radius: 4200px 600px;
    border-bottom-right-radius: 4200px 600px;
    height: 120px;
    margin-left: -100px;
    margin-right: -100px;
    padding-left: 100px;
    padding-right: 100px;
    margin-top: -40px;
  }
  .pale-ora-wrap {
    overflow: hidden;
    background: #FFFEE6;
  }
  .pale-ora-bg {
    position: relative;
    /*background: #fff3e6;*/
    border-bottom-left-radius: 4200px 1500px;
    border-bottom-right-radius: 4200px 1500px;
    margin-left: -100px;
    margin-right: -100px;
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 50px;
    margin-bottom: 0px;
    height: 95vh;
  }
  .pale-ye2-wrap {
    overflow: hidden;
    background: #fff;
  }
  .pale-ye2-bg {
    background: #FFFEE6;
    border-bottom-left-radius: 4200px 1500px;
    border-bottom-right-radius: 4200px 1500px;
    margin-left: -100px;
    margin-right: -100px;
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 50px;
    margin-bottom: 30px;
    height: auto;
  }
  .pale-grey-wrap {
    overflow: hidden;
    background: #fff;
  }
  .pale-grey-bg {
    background: #f7f5f2;
    border-bottom-left-radius: 4200px 1500px;
    border-bottom-right-radius: 4200px 1500px;
    margin-left: -100px;
    margin-right: -100px;
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 50px;
    margin-bottom: 30px;
    height: 400px;
  }
  /*--- contents　body背景 --- */
  .contents-ye-bg {
    background: #FFFEE6;
    border-bottom-left-radius: 4200px 1000px;
    border-bottom-right-radius: 4200px 1000px;
    margin-left: -100px;
    margin-right: -100px;
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 30px;
  }
  .sora-wrap {
    overflow: hidden;
    background: url("../../images/common/sora-bg.jpg");
  }
  .sora-wrap-bg {
    /*background: url("../../images/common/sora-bg.jpg");*/
    background:#fff;
    border-bottom-left-radius: 4200px 800px;
    border-bottom-right-radius: 4200px 800px;
    background-size: cover;
    margin-left: -100px;
    margin-right: -100px;
    padding: 40px 100px;
    margin-top: -40px;
  }
  /*　固定ヘッダー
-------------------------- */
  #header-frame {
    z-index: 100000;
    position: fixed;
    top: 0px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px 0;
  }
  .fixed-header {
    -webkit-justify-content: space-between; /*左右中央寄せ*/
    justify-content: space-between; /*左右中央寄せ*/
    display: -webkit-box; /* Android4.3以前ブラウザ用 */
    display: -webkit-flex; /* iOS8以前Safari用 */
    display: flex;
    -webkit-align-items: center; /*上下中央寄せ*/
    align-items: center; /*上下中央寄せ*/
    width: 98%;
    margin: 0 auto 5px auto;
  }
  .header-logo {
    width: 500px;
  }
  .modal-menu a {
    position: relative;
  }
  .modal-menu a:hover {
    color: #f25b27;
    transition: all 100ms;
  }
  .modal-menu a::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: -5px;
    left: 0%;
    /*線の形状*/
    width: 100%;
    height: 3px;
    background: #f25b27;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 1); /*X方向0、Y方向1*/
    transform-origin: left top; /*左上基点*/
  }
  /*現在地とhoverの設定*/
  .modal-menu.current a::after, .modal-menu a:hover::after {
    transform: scale(1, 1); /*X方向にスケール拡大*/
  }
  /*--- 固定ヘッダー内メニュー --- */
  .fixed-menu {
    display: block;
    -webkit-justify-content: flex-start; /*左右中央寄せ*/
    justify-content: flex-start; /*左右中央寄せ*/
    display: -webkit-box; /* Android4.3以前ブラウザ用 */
    display: -webkit-flex; /* iOS8以前Safari用 */
    display: flex;
    -webkit-align-items: center; /*上下中央寄せ*/
    align-items: center; /*上下中央寄せ*/
    -webkit-flex-wrap: wrap; /*折り返し(mac safari用)*/
    flex-wrap: wrap; /*折り返し*/
  }
  .fixed-menu li {
    margin: 0 0 0 30px;
    font-size: 2.2rem;
    font-weight: 500;
  }
  .fixed-menu li a {
    position: relative;
  }
  .fixed-menu li a:hover {
    color: #c43401;
    transition: all 400ms;
  }
  .fixed-menu li a::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: -5px;
    left: 0%;
    /*線の形状*/
    width: 100%;
    height: 3px;
    background: #c43401;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 1); /*X方向0、Y方向1*/
    transform-origin: left top; /*左上基点*/
  }
  /*現在地とhoverの設定*/
  .fixed-menu li.current a::after, .fixed-menu li a:hover::after {
    transform: scale(1, 1); /*X方向にスケール拡大*/
  }
  /*--- スマホ用 検索・電話番号 --- */
  .sp-tools {
    display: none;
  }
  /*--- 見出し --- */
  h2 {
    font-size: 4rem;
    margin: 0 0 10px 0;
  }
  h2.heading05 {
    position: relative;
    padding-bottom: 50px;
    font-size: 4.8rem;
    text-align: center;
    font-weight: 400;
    line-height: 1.0em;
    letter-spacing: 0.05em;
  }
  h2.heading05::before {
    content: attr(data-en);
    display: block;
    font-size: 2.4rem;
    font-weight: 300;
  }
  h2.catch-l {
    font-size: 3rem;
    margin: 0 0 20px 0;
  }
  h2.catch-m {
    font-size: 2.5rem;
    margin: 0 0 10px 0;
  }
  h3 {
    font-size: 3.6rem;
    margin: 0;
    font-weight: 500;
  }

  /*--- 共通 リンクボタン --- */
  .link-but, .link-but2 {
    background: url("../../images/common/link-arrow.png") right 15px center no-repeat #f25b27;
    border-radius: 28px;
    font-size: 2.2rem;
    max-width: 498px;
    margin: 20px auto;
    text-align: center;
  }
.link-but2 {
	width: 48%;
	max-width: 48%;
	margin: 20px auto 20px auto;
}
  .link-but a, .link-but2 a {
    display: block;
    padding: 15px 50px 15px 20px;
    color: #fff;
  }
  .button {
    width: 350px;
    margin: 30px 30px 30px 30px;
	font-size: 2.6rem;
  }
  /*--- 共通 背景・幅 --- */
  section {
    width: 100%;
    margin: 30px auto 30px auto;
  }
  .contents-wrap {
    width: 90%;
    margin: 0px auto 0 auto;
    padding: 20px 0px 0 0;
  }
  /*--- スマホ用メニュー --- */
  div.sp-drawer {
    display: none;
  }
  /*--- フッター --- */
  footer {
    width: 100%;
    margin: 0 auto;
    padding: 20px 0 30px 0;
  }
  .footer-flame {
    width: 94%;
    margin: 0 auto;
    padding: 0px;
  }
  div.footer-l {
    width: 43%;
    font-size: 1.4rem;
  }
  .f-ad {
    padding: 0 0 0 40px;
    margin: 10px 0 0 0;
  }
  .f-tel {
    font-size: 3.5rem;
    letter-spacing: 0.05em;
  }
  div.footer-r {
    width: 100%;
    margin: 0px 0 0 0;
  }
  ul.footer-menu {
    width: 30%;
    margin: 0 0px 0px 0;
    padding: 0px 0;
  }
  ul.footer-menu li {
    margin: 0 0px 0px 0;
    padding: 2px 0;
    font-size: 1.4rem;
  }
  ul.footer-menu li.f-bold, .f-bold {
    font-size: 1.5rem;
  }
  .copyright {
    text-align: center;
    font-size: 1.5rem;
    margin: 25px auto 0px auto;
    padding: 0 0 30px 0;
  }
  /*　UIパーツ
-------------------------- */
  #to-top {
    position: fixed;
    right: 0%;
    top: 205px;
    z-index: 100;
  }
  .fixed-top {
    background-color: rgba(255, 248, 225, 0.8);
    border-radius: 24px 0px 0px 24px;
  }
  .fixed-icon {
    display: block;
    padding: 30px 25px;
  }
  .fixed-icon li {
    margin: 16px 0;
  }
  .order-site {
    position: fixed;
    right: 20px;
    bottom: -1px;
    z-index: 100;
    width: 200px;
  }
  .header-wrap {
    width: 90%;
    margin: 0 auto;
    padding: 20px 0px 0 0;
  }
  .contents-b {
    padding: 200px 0 0 0;
    margin: 200px 0 0 0;
  }
/*20230726追加*/
.marudeli-top {
	width: 900px;
	border-radius: 20px;
	background: #f5ee43;
	padding: 20px;
	margin: 0 auto 0 auto; 
}
.merit {
	width:200px;
}
  /* flexbox子要素
-------------------------------------------- */
  .box-img {
    width: 45%;
    margin: 0 0 30px 0;
  }
  .box-text {
    width: 48%;
    margin: 0 0px 60px 0;
  }
  .futan {
    width: auto;
    margin: 0 40px 40px 40px;
  }
  /* 文字装飾
-------------------------------------------- */
  .service-name {
    font-size: 3.0rem;
    position: relative;
    padding: 0px;
    margin: 0 0 20px 0;
    letter-spacing: 0.05em;
    font-weight: 500;
  }
  .service-name::after {
    content: url("../../images/common/link02-arrow-sp.png");
    position: absolute;
    top: 5px;
    margin: 0 0 0 20px;
  }
  .service-name-sb {
    font-weight: 400;
  }
/*スクロールしたら指定のサイズまで画像を縮小する方法*/
.Header-Logo2{
  margin-left: 0;
  margin-right: auto;
  width: 500px;
  display: block;
  transition: all 0.4s ease;
}
.Header-Logo2.isSmall{
  width: 350px!important;
}
.Header-Logo2 img{
  width: 100%;
  height: auto;
  display: block;
}
/*まるデリ一覧*/
.service-box{
	width: 25%;
	margin: 0 20px 20px 20px;
}
.service-img img{
	border-radius: 35px 0 0 0;
}
.target {
	margin: 0;
	padding: 15px 0 15px 0;
	text-align: center;
	font-weight: 600;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-size: 120%;
	background: #fffee6;
}
.service-body {
    margin: 0;
    border-radius: 0 0 35px 0; 
}
.service-name{
	font-size: 3.0rem;
	line-height: 1.0em;
	position: relative;
	padding: 20px 80px 0 0px;
	text-align: center;
	letter-spacing: 0.05em;
}
.service-name::after {
	position: absolute;
  top: 20px;
  right: 10px;
}
.service-name-sb{
	font-size: 2.0rem;
}
	.service-name-s{
	font-size: 2.0rem;
}
.arrow-bg {
  background: url("../../images/common/arrow-bg.png") center center no-repeat;
	background-size: contain;
  height: auto;
  padding: 20px 0;
  margin: 20px 0 40px 0;
}
}
@media print, screen and (min-width : 1200px) {
  /* 共通レイアウト
-------------------------------------------- */
  /*--- body背景 --- */
  .pale-ye-wrap {
    overflow: hidden;
    background: #fff;
  }
  .pale-ye-bg {
    background: #FFFEE6;
    border-bottom-left-radius: 4200px 1500px;
    border-bottom-right-radius: 4200px 1500px;
    margin-left: -100px;
    margin-right: -100px;
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 50px;
    margin-bottom: 30px;
    height: 100vh;
  }
  .pale-ora-wrap {
    overflow: hidden;
    background: #FFFEE6;
  }
  .pale-ora-bg {
    position: relative;
    /*background: #fff3e6;*/
    border-bottom-left-radius: 4200px 1500px;
    border-bottom-right-radius: 4200px 1500px;
    margin-left: -100px;
    margin-right: -100px;
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 50px;
    margin-bottom: 0px;
    height: 98vh;
  }
  .pale-ye2-wrap {
    overflow: hidden;
    background: #fff;
  }
  .pale-ye2-bg {
    background: #FFFEE6;
    border-bottom-left-radius: 4200px 1500px;
    border-bottom-right-radius: 4200px 1500px;
    margin-left: -100px;
    margin-right: -100px;
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 50px;
    margin-bottom: 30px;
    height: auto;
  }
  .pale-grey-wrap {
    overflow: hidden;
    background: #fff;
  }
  .pale-grey-bg {
    background: #f7f5f2;
    border-bottom-left-radius: 4200px 1500px;
    border-bottom-right-radius: 4200px 1500px;
    margin-left: -100px;
    margin-right: -100px;
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 50px;
    margin-bottom: 30px;
    height: 400px;
  }
  /*--- contents　body背景 --- */
  .contents-ye-bg {
    background: #FFFEE6;
    border-bottom-left-radius: 1000px 400px;
    border-bottom-right-radius: 1000px 400px;
    margin-left: -100px;
    margin-right: -100px;
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 50px;
  }
  /* PC時 */
  .pc {
    display: inline;
  }
  .sp {
    display: none;
  }
  /*　固定ヘッダー
-------------------------- */
  #header-frame {
    padding: 14px 0;
  }
  /*--- 共通 背景・幅 --- */
  section {
    width: 100%;
    margin: 30px auto 30px auto;
  }
  .contents-wrap {
    width: 1243px;
    margin: 0px auto 0 auto;
    padding: 20px 0px 0 0;
    font-size: 2.0rem;
  }
  .sora-wrap {
    margin: 50px 0;
    padding: 110px 0;
  }
  /*--- 見出し --- */
  h2 {
    font-size: 4rem;
    margin: 0 0 10px 0;
  }
 /* h2.heading05 {
    position: relative;
    padding-bottom: 50px;
    font-size: 6.0rem;
    text-align: center;
  }
  h2.heading05::before {
    content: attr(data-en);
    display: block;
    font-size: 3.0rem;
  }*/
  h2.heading06 {
    position: relative;
    padding-bottom: 50px;
    font-size: 4.5rem;
    text-align: center;
  }
  h2.heading06::before {
    content: attr(data-en);
    display: block;
    font-size: 3.0rem;
  }
  h2.catch-xl {
    font-size: 6.0rem;
    margin: 0 0 5px 0;
  }
  h2.catch-l {
    font-size: 5.0rem;
    margin: 0 0 20px 0;
  }
  h2.catch-m {
    font-size: 4.0rem;
    margin: 0 0 10px 0;
  }

  h3.size-s {
    font-size: 3rem;
    margin: 0 0 10px 0;
  }
  /*--- 共通 テキスト装飾 --- */
  .text-xl {
    font-size: 6.0rem;
    font-weight: 300;
  }
  /*--- 共通 リンクボタン --- */
  .button {
    width: 350px;
    margin: 40px auto 30px auto;
	font-size: 2.6rem;
  }
  /*--- footer --- */
  .footer-flame {
    width: 1243px;
    margin: 0 auto;
    padding: 0px;
  }
  div.footer-l {
    width: 50%;
    font-size: 1.6rem;
  }
  div.footer-r {
    width: 50%;
    margin: 0px 0 0 0;
  }
  ul.footer-menu li {
    font-size: 1.6rem;
  }
  ul.footer-menu li.f-bold, .f-bold {
    font-size: 1.8rem;
  }
  /*　UIパーツ
-------------------------- */
  .order-site {
    position: fixed;
    right: 20px;
    bottom: -1px;
    z-index: 100;
    width: auto;
  }
  .header-wrap {
    width: 1243px;
    margin: 0 auto;
    padding: 0px 0px 0 0;
    font-size: 2.0rem;
  }
  /* flexbox子要素
-------------------------------------------- */
  .box-img {
    width: 50%;
    margin: 0 0 130px 0;
  }
  .box-text {
    width: 40%;
    margin: 0 30px
  }
  .futan {
    margin: 0 10px 40px 10px;
  }
  /* 文字装飾
-------------------------------------------- */
  .service-name {
    font-size: 4.0rem;
    position: relative;
    padding: 0px;
    margin: 0 0 20px 0;
    letter-spacing: 0.05em;
    font-weight: 500;
  }
  .service-name::after {
    content: url("../../images/common/link02-arrow.png");
    position: absolute;
    top: 5px;
    margin: 0 0 0 20px;
  }
}
@media print, screen and (min-width : 1600px) {
  /* 共通レイアウト
-------------------------------------------- */
  /*--- body背景 --- */
  .pale-ye-wrap {
    overflow: hidden;
    background: #fff;
    margin-bottom: 0;
  }
  .pale-ye-bg {
    background: #FFFEE6;
    border-bottom-left-radius: 4200px 1500px;
    border-bottom-right-radius: 4200px 1500px;
    margin-left: -100px;
    margin-right: -100px;
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 50px;
    margin-bottom: 0px;
    height: 100vh;
  }
  .pale-ora-wrap {
    overflow: hidden;
    background: #FFFEE6;
	  margin: 0 0 0 0;
	padding: 0 0 0 0;
  }
  .pale-ora-bg {
    /*background: #fff3e6;*/
    border-bottom-left-radius: 4200px 1500px;
    border-bottom-right-radius: 4200px 1500px;
    margin-left: -100px;
    margin-right: -100px;
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 50px;
    margin-bottom: 0px;
    height: 100vh;
  }
  .pale-ye2-wrap {
    overflow: hidden;
    background: #fff;
	  margin: 0 0 0 0;
	padding: 0 0 0 0;
  }
  .pale-ye2-bg {
    background: #FFFEE6;
    border-bottom-left-radius: 4200px 1500px;
    border-bottom-right-radius: 4200px 1500px;
    margin-left: -100px;
    margin-right: -100px;
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 50px;
    margin-bottom: 30px;
    height: auto;
  }
  .pale-grey-wrap {
    overflow: hidden;
    background: #fff;
  }
  .pale-grey-bg {
    background: #f7f5f2;
    border-bottom-left-radius: 4200px 1500px;
    border-bottom-right-radius: 4200px 1500px;
    margin-left: -100px;
    margin-right: -100px;
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 50px;
    margin-bottom: 30px;
    height: 400px;
  }
  /*--- contents　body背景 --- */
  .contents-ye-bg {
    background: #FFFEE6;
    border-bottom-left-radius: 1000px 400px;
    border-bottom-right-radius: 1000px 400px;
    margin-left: -100px;
    margin-right: -100px;
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 50px;
    position: relative;
  }
  /*　固定ヘッダー
-------------------------- */
  .fixed-header {
    width: 1770px;
    margin: 0 auto 5px auto;
  }
  .header-logo {
    width: 500px;
  }
  /*--- 固定ヘッダー内メニュー --- */
  .fixed-menu li {
    margin: 0 0 0 40px;
    font-size: 2.2rem;
  }
  /*--- 共通 背景・幅 --- */
  .contents-wrap {
    width: 1243px;
    margin: 0px auto 0 auto;
    padding: 20px 0px 0 0;
  }
  /*--- 共通 リンクボタン --- */
  .link-but, .link-but {
    font-size: 2.7rem;
  }
  .link-but a, .link-but a {
    display: block;
    padding: 15px 50px 15px 20px;
  }
  /*--- スマホ用メニュー --- */
  div.sp-drawer {
    display: none;
  }
  /*--- フッター --- */
  footer {
    width: 100%;
    margin: 0 auto;
    padding: 20px 0 0 0;
  }
  .f-tel {
    font-size: 3.5rem;
  }
}
@media print {
  body {
    width: 1200px;
  }
  #sb-header-frame {
    display: none;
  }
  nav.nav-fixed {
    display: none;
  }
  .fixed-header {
    display: none;
  }
  .fixed-header-btn {
    display: none;
  }
.news-shop {
	text-align: center;
	padding-top: 0px;
	margin: 0px auto 0 auto ;
	width: 900px;
}
}