*,
html,
body {
  margin: 0;
  padding: 0;
}
*:focus {
  outline: none;
}
*,
:after,
:before {
    background-repeat: no-repeat;
    box-sizing: inherit;
}
:after,
:before {
    text-decoration: inherit;
    vertical-align: inherit;
}
/*
html {
scroll-behavior: smooth;
}*/
/**
  * Render the `main` element consistently in IE.
  */
main {
  display: block;
  width: 100%;
}
/**
  * 1. Add the correct box sizing in Firefox.
  * 2. Show the overflow in Edge and IE.
  */
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
/**
  * 1. Correct the inheritance and scaling of font size in all browsers.
  * 2. Correct the odd `em` font sizing in all browsers.
  */
pre {
  font-size: 1em;
}
/**
  * Remove the gray background on active links in IE 10.
  */
a {
  background-color: transparent;
}
/**
  * 1. Remove the bottom border in Chrome 57-
  * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
  */
abbr[title] {
  border-bottom: none;
}
/**
  * Add the correct font weight in Chrome, Edge, and Safari.
  */
b,
strong {
  font-weight: bold;
}
/**
  * 1. Correct the inheritance and scaling of font size in all browsers.
  * 2. Correct the odd `em` font sizing in all browsers.
  */
code,
kbd,
samp {
  font-size: 1em;
}
/**
  * Add the correct font size in all browsers.
  */
small {
  font-size: 80%;
}
/**
  * Prevent `sub` and `sup` elements from affecting the line height in
  * all browsers.
  */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/**
  * Remove the border on images inside links in IE 10.
  */
img {
  border-style: none;
}
/**
  * Correct the padding in Firefox.
  */
fieldset {
  border: none;
}
/**
  * 1. Correct the text wrapping in Edge and IE.
  * 2. Correct the color inheritance from `fieldset` elements in IE.
  * 3. Remove the padding so developers are not caught out when they zero out
  *		`fieldset` elements in all browsers.
  */
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
/**
  * Add the correct vertical alignment in Chrome, Firefox, and Opera.
  */
progress {
  vertical-align: baseline;
}
/**
  * Remove the default vertical scrollbar in IE 10+.
  */
textarea {
  overflow: auto;
}
/*
  * Add the correct display in Edge, IE 10+, and Firefox.
  */
details {
  display: block;
}
/*
  * Add the correct display in all browsers.
  */
summary {
  display: list-item;
}
/**
  * Add the correct display in IE 10+.
  */
template {
  display: none;
}
/**
  * Add the correct display in IE 10.
  */
[hidden] {
  display: none;
}
/* Box sizing
--------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: inherit;
}
html {
  box-sizing: border-box;
}
 html {
  box-sizing: border-box;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
}
/* header and text
--------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}
dfn,
cite,
em,
i {
  font-style: inherit;
}
blockquote {
  margin: 0;
}  
address {
  margin: 0;
  font-style: normal;
}  
pre {
  line-height: 1.5;
  max-width: 100%;
  overflow: auto;
}
abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}
mark,
ins {
  text-decoration: none;
}
mark {
  background: #FEE400;
}
big {
  font-size: 125%;
}
hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
  /* list
--------------------------------------------- */
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
blockquote, q {
  quotes: none;
}
dl,
dt,
dd {
  width:100%;
  margin: 0;
  padding: 0;
  margin-inline-start: 0;
}
/* Make sure embeds and iframe fit their containers.
--------------------------------------------- */
embed,
iframe,
object {
  max-width: 100%;
}
img {
  height: auto;
  max-width: 100%;
}
figure {
  margin:0;
}
/* Links
--------------------------------------------- */
a {
  text-decoration: none;
}
a:focus {
  outline: 0;
}
a:hover,
a:active {
  outline: 0;
}
a[href^="tel"],
a[href^="mailto"] {
  color: inherit; 
  text-decoration: none;
}
a[x-apple-data-detectors] {
  color: inherit !important;
  text-decoration: none !important;
  font-size: inherit !important;
  font-family: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
}
/*--------------------------------------------------------------
# Basics
--------------------------------------------------------------*/
/* base color
--------------------------------------------- */
:root {
  --font-color: #1b1b1b;
  --white:#FFFFFF;
}
/* base font family
--------------------------------------------- */
:root {
  --maru-gothic:"Zen Maru Gothic", serif;
}
/* Elements
--------------------------------------------- */
html {
  -ms-touch-action: manipulation;	
  touch-action: manipulation;	
}
body {
  font-family:var(--maru-gothic);
  font-size: 15px;
  font-weight:400;
  color: var(--font-color);
  background:#fefce7;
  line-height: 25.5px;
  overflow-x: hidden;
}
/*
br tag
------------------------------*/
@media screen and (max-width:1024px){ 
  .pc-only {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .tb-only,.lg-only {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .sp-only{
    display: none;
  }
}
@media screen and (min-width:1025px) {
  .sp-only,.tb-only,.md-only{
    display: none;
  }
}
/* header
--------------------------------------------- */
@media screen and (max-width:767px) {
	.site-header {
		position: relative;
		display: block;
		width: 100%;
	}
	.site-logo {
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		z-index: 3;
		display: block;
		max-width: 320px;
		width: 60%;
		margin-top: 10px;
		z-index: 5;
	}
	.site-logo > picture {
		display: block;
		width: 100%;
	}
	.site-logo > picture > img {
		display: block;
		width: 100%;
		object-fit: cover;
	}
	.site-mv {
		position: relative;
		z-index: 2;
		display: block;
		width: 100%;
	}
	.site-mv > img.mv-pc {
		display: none;
	}
	.site-mv > img.mv-sp {
		display: block;
		width: 100%;
		object-fit: cover;
	}
}
@media screen and (min-width:768px) {
	.site-header {
		position: relative;
		display: block;
		width: 100%;
	}
	.site-header::after {
		content: "";
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		max-width: 1000px;
		width: calc(100% - 30px);
		height: 50%;
		background-color: #ecf7fc;
	}
	.site-logo {
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		z-index: 3;
		display: block;
		/*width: 338px;*/
		max-width: 600px;
		width: calc(600/1500 * 100%);
		margin-top: 40px;
		z-index: 5;
	}
	.site-logo > picture {
		display: block;
		width: 100%;
	}
	.site-logo > picture > img {
		display: block;
		width: 100%;
		object-fit: cover;
	}
	.site-mv {
		position: relative;
		z-index: 2;
		display: block;
		width: 100%;
	}
	.site-mv > img.mv-sp {
		display: none;
	}
	.site-mv > img.mv-pc {
		display: block;
		width: 100%;
		object-fit: cover;
	}
}
@media screen and  (min-width:768px) and (max-width:999px) {
	.site-header::after {
		content: "";
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		width: 727px;
		height: 50%;
		background-color: #ecf7fc;
	}
}
/* container
--------------------------------------------- */
@media screen and (max-width:767px) {
	.container {
		display: block;
		width: 100%;
		margin: 0 auto;
	}
}
@media screen and (min-width:767px) and (max-width:999px) {
	.container {
		display: block;
		width: 767px;
		margin: 0 auto;
		padding: 0 20px;
	}
}
@media screen and (min-width:1000px) {
	.container {
		display: block;
		max-width: 1040px;
		margin: 0 auto;
		padding: 0 20px;
	}
}
/* btn
--------------------------------------------- */
@media screen and  (max-width:767px) {
	.cta-btn {
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		max-width: 300px;
		width: 100%;
		height: 70px;
		border-radius: 35px;
		background-color: #17a0e5;
		box-shadow: 2px 5px 0 #f4e37e;
	}
	.cta-btn::after {
		content: "";
		position: absolute;
		top: 50%;
		right: 20px;
		transform: translateY(-50%);
		display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 0 7px 14px;
    border-color: transparent transparent transparent var(--white);
	}
	.cta-btn > span {
		color: var(--white);
		font-size: 20px;
		font-weight: 700;
		line-height: 1;
		letter-spacing: -0.05rem;
	}
	.cta-btn:hover {
		transition: opacity 0.3s ease;
		opacity: 0.7;
	}
}
@media screen and  (min-width:768px) {
	.cta-btn {
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		max-width: 750px;
		width: calc(100% - 60px);
		height: 140px;
		border-radius: 70px;
		background-color: #17a0e5;
		box-shadow: 2px 10px 0 #f4e37e;
	}
	.cta-btn::after {
		content: "";
		position: absolute;
		top: 50%;
		right: 50px;
		transform: translateY(-50%);
		display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent var(--white);
	}
	.cta-btn > span {
		color: var(--white);
		font-size: 50px;
		font-weight: 700;
		line-height: 1;
		letter-spacing: -0.05rem;
	}
	.cta-btn:hover {
		transition: opacity 0.3s ease;
		opacity: 0.7;
	}
}
@media screen and (min-width:768px) and (max-width:999px) {
	.cta-btn {
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		max-width: 750px;
		width: calc(100% - 80px);
		height: 120px;
		border-radius: 70px;
		background-color: #17a0e5;
		box-shadow: 2px 10px 0 #f4e37e;
	}
	.cta-btn > span {	
		font-size: 44px;
	}
}
/* sec1
--------------------------------------------- */
@media screen and  (max-width:767px) {
	.sec1 {
		display: block;
		width: 100%;
		margin-top: -2px;
	}
	.sec1__body {
		display: block;
		width: 100%;
		margin: 0 auto 0 auto;
		background-color: #ecf7fc;
		background-image: url(../../img/yumespo/bg1.png);
		background-repeat: no-repeat;
		background-position: top center;
		background-size: 100% auto;
		padding: 30px 15px 50px 15px;
	}	
	.sec1-title {
		display: block;
		width: calc(900/1000 * 100%);
		margin: 0 auto 0 auto;
	}
	.sec1-title > picture {
		display: block;
		width: 100%;
	}
	.sec1-title > picture > img {
		display: block;
		width: 100%;
		object-fit: cover;
	}
	.sec1-txt {
		display: block;
		width: 100%;
		margin: 20px auto 0 auto;
		font-size: 15px;
		line-height: 2;
		font-weight: 700;
		text-align: center;
		letter-spacing: -0.05rem;
	}
	.sec1-txt > span {
		text-underline-offset: -5px;
		text-decoration-line: underline;
		text-decoration-style: solid;
		text-decoration-color: rgba(252,207,0,50%);
		text-decoration-thickness: 10px;
	}
	.sec1-figure {
		display: block;
		width: 100%;
		margin: 30px auto 0 auto;
	}
	.sec1-btns {
		display: flex;
		justify-content: center;
		width: 100%;
		margin-top: 30px;
	}
}
@media screen and (max-width:374px) {
	.sec1-txt {	
		font-size: 14px;
	}
}
@media screen and (max-width:359px) {
	.sec1-txt {	
		font-size: 12px;
	}
}
@media screen and  (min-width:768px) {
	.sec1 {
		display: block;		
		width: 100%;	
	}	
	.sec1__body {
		display: block;
		max-width: 1000px;
		width: 100%;
		margin: 0 auto 0 auto;
		background-image: url(../../img/yumespo/bg1.png);
		background-repeat: no-repeat;
		background-position: top center;
		background-size: cover;
		padding-bottom: 80px;
	}
	.sec1-title {
		display: block;
		max-width: 775px;
		width: calc(775/1000 * 100%);
		margin: 0 auto 0 auto;
	}
	.sec1-title > picture {
		display: block;
		width: 100%;
	}
	.sec1-title > picture > img {
		display: block;
		width: 100%;
		object-fit: cover;
	}
	.sec1-txt {
		display: block;
		width: calc(900/1000 * 100%);
		margin: 30px auto 0 auto;
		font-size: 26px;
		line-height: 50px;
		font-weight: 700;
		letter-spacing: -0.05rem;
		text-align: center;
		word-break: keep-all;
	}
	.sec1-txt > span {
		text-underline-offset: -10px;
		text-decoration-line: underline;
		text-decoration-style: solid;
		text-decoration-color: rgba(252,207,0,50%);
		text-decoration-thickness: 20px;
	}
	.sec1-figure {
		display: block;
		width: 95%;
		margin: 50px auto 0 auto;
	}
	.sec1-btns {
		display: flex;
		justify-content: center;
		width: 100%;
		margin-top: 50px;
	}
}
@media screen and (min-width:768px) and (max-width:999px) {
	.sec1-txt {
		font-size: 26px;
		line-height: 36px;
	}
	.sec1-txt > span {
		text-underline-offset: -8px;
		text-decoration-line: underline;
		text-decoration-style: solid;
		text-decoration-color: rgba(252,207,0,50%);
		text-decoration-thickness: 16px;
	}
}
/* sec2
--------------------------------------------- */
@media screen and (max-width:767px) {
	.sec2 {
		display: block;
		width: 100%;
	}	
	.sec2__body {
		display: block;
		width: 100%;
		margin: 0 auto 0 auto;
		background-image: url(../../img/yumespo/bg2.png);
		background-repeat: no-repeat;
		background-position: top center;
		background-size: cover;
		padding: 40px 10px;
	}	
	.sec2-title {
		display: block;
		width: calc(930/1000 * 100%);
		margin: 0 auto 0 auto;
	}
	.sec2-title > picture {
		display: block;
		width: 100%;
	}
	.sec2-title > picture > img {
		display: block;
		width: 100%;
		object-fit: cover;
	}
	.sec2-figure {
		display: block;
		width: calc(930/1000 * 100%);
		margin: 20px auto 0 auto;
	}
	.sec2-figure > img {
		display: block;
		width: 100%;
		object-fit: cover;
	}
}
@media screen and (min-width:768px) {
	.sec2 {
		display: block;
		width: 100%;
	}	
	.sec2__body {
		display: block;
		max-width: 1000px;
		width: 100%;
		margin: 0 auto 0 auto;
		background-image: url(../../img/yumespo/bg2.png);
		background-repeat: no-repeat;
		background-position: top center;
		background-size: cover;
		padding: 80px 0;
	}	
	.sec2-title {
		display: block;
		width: calc(930/1000 * 100%);
		margin: 0 auto 0 auto;
	}
	.sec2-title > picture {
		display: block;
		width: 100%;
	}
	.sec2-title > picture > img {
		display: block;
		width: 100%;
		object-fit: cover;
	}
	.sec2-figure {
		display: block;
		width: calc(930/1000 * 100%);
		margin: 20px auto 0 auto;
	}
	.sec2-figure > img {
		display: block;
		width: 100%;
		object-fit: cover;
	}
}
/*sec2 box1*/
@media screen and (max-width:767px) {
	.sec2-box1 {
		position: relative;
		display: block;
		max-width: 315px;
		width: calc(100% - 20px);
		background-color: #ecf7fc;
		border-radius: 15px;
		margin: 80px auto 0 auto;
		padding: 40px 25px 25px 25px;
	}
	.sec2-box-title {
		position: absolute;
		top: -20px;
		left: 50%;
		transform: translateX(-50%);
		width: 165px;
	}
	.sec2-box-title > img {
		display: block;
		width: 100%;
		object-fit: cover;
	}
	.sec2-box1-icon {
		position: absolute;
		top: -50px;
		right: -10px;
		width: calc(173/830 * 100%);
	}
	.sec2-box1-txt {
		display: block;
		width: 100%;
		font-size: 16px;
		font-weight: 700;
		line-height: 30px;
	}
}
@media screen and  (max-width:359px) {
	.sec2-box1-txt {		
		font-size: 15px;
	}
}
@media screen and (min-width:768px) {
	.sec2-box1 {
		position: relative;
		display: block;
		width: calc(830/1000 * 100%);
		background-color: #ecf7fc;
		border-radius: 30px;
		margin: 240px auto 0 auto;
		padding: calc(100/830 * 100%) calc(80/830 * 100%) calc(60/830 * 100%) calc(80/830 * 100%);
	}
	.sec2-box-title {
		position: absolute;
		top: -60px;
		left: 50%;
		transform: translateX(-50%);
		width: calc(430/830 * 100%);
	}
	.sec2-box-title > img {
		display: block;
		width: 100%;
		object-fit: cover;
	}
	.sec2-box1-icon {
		position: absolute;
		top: -130px;
		right: -20px;
		width: calc(173/830 * 100%);
	}
	.sec2-box1-txt {
		display: block;
		width: 100%;
		font-size: 40px;
		font-weight: 700;
		line-height: 60px;
	}
	
}
@media screen and (min-width:768px) and (max-width:999px) {
	.sec2-box-title {
		top: -40px;	
	}
	.sec2-box1-txt {		
		font-size: 29px;
		line-height: 50px;
	}
}
/*sec2-box2*/
@media screen and (max-width:767px) {
	.sec2-box2 {
		position: relative;
		display: block;
		max-width: 315px;
		width: calc(100% - 20px);
		background-color: #ecf7fc;
		border-radius: 15px;
		margin: 80px auto 0 auto;
		padding: 40px 15px 15px 15px;
	}	
	.sec2-r1 {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
	}
	.sec2-box-fig {
		display: block;
		width: 100%;
		margin-top: 10px;
	}
	.sec2-box-fig > img {
		display: block;
		width: 100%;
		object-fit: cover;
	}
	.sec2-r1 > p:nth-child(1) {
		display: flex;
		justify-content: center;
		font-size: 20px;
		line-height: 1;
		font-weight: 700;
		margin-top: 10px;
	}
	.sec2-r1 > p:nth-child(2) {
		display: flex;
		justify-content: center;
		align-items: baseline;
		font-size: 22px;
		line-height: 1;
		font-weight: 700;
	}
	.sec2-r1 > p:nth-child(2) > em {
		color: #e84c77;
		font-size: 30px;
	}
	.sec2-r1 > p:nth-child(2) > span {
		color: #e84c77;
		letter-spacing: 0.2rem;
	}
	.sec2-r1 > ul {
		display: block;
		width: 100%;
		margin-top: 10px;
	}
	.sec2-r1 > ul > li {
		display: block;
		width: 100%;
	}
	.sec2-r1 > ul > li:nth-child(n+2){
		margin-top: 5px;
	}
	.sec2-r1 > ul > li > dl {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
	}
	.sec2-r1 > ul > li > dl > dt {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 90px;
		height: 30px;
		color: var(--white);
		font-size: 14px;
		font-weight: 700;
		line-height: 1;
		background-color: #17a0e5;
	}
	.sec2-r1 > ul > li > dl > dd {
		display: block;
		width: calc(100% - 90px);
		font-size: 14px;
		line-height: 1;
		padding-left: 5px;
		font-weight: 700;
	}
	.sec2-r1 > ul > li > dl > dd > span {
		font-size: 15px;
	}
	.sec2-r1 > ul > li > dl > dd > span > em {
		color: #e84c77;
	}
	.sec2-r2 {
		display: block;
		width: 100%;
		margin-top: 50px;
		border: 2px solid var(--font-color);
	}
	.sec2-r2 > li {
		position: relative;
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 20px 20px;
		background-color: var(--white);
	}
	.sec2-r2 > li:nth-child(1) {
		padding-bottom: 40px;
	}
	.sec2-r2 > li::before {
		content: "";
		position: absolute;
		top: -20px;
		left: -25px;
		display: block;
		width: 50px;
		height: 50px;
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
	.sec2-r2 > li:nth-child(n+2) {
		border-top: 2px solid var(--font-color);
	}
	.sec2-r2 > li:nth-child(1)::before {
		background-image: url(../../img/yumespo/sec2-icon1.png);
	}
	.sec2-r2 > li:nth-child(2)::before {
		background-image: url(../../img/yumespo/sec2-icon2.png);
	}
	.sec2-r2 > li:nth-child(3)::before {
		background-image: url(../../img/yumespo/sec2-icon3.png);
	}
	.sec2-r2 .title {
		display: flex;
		justify-content: center;
		align-items: baseline;
		width: 100%;
		font-size: 24px;
		font-weight: 700;
		color: #17a0e5;
		line-height: 1;
		letter-spacing: -0.05rem;
		word-break: keep-all;
	}
	.sec2-r2 .title > small {
		font-size: 15px;
	}
	.sec2-r2 .title > em {
		color: #e84c77;
		padding-left: 10px;
	}
	.sec2-r2 .subtitle {
		font-size: 16px;
		font-weight: 500;
		line-height: 30px;
		margin-top: 5px;
	}
	.sec2-r2 .subtitle > em {
		color: #e84c77;
	}
	.sec2-r2 .txt {
		display: block;
		width: 100%;
		font-size: 16px;
		font-weight: 500;
		line-height: 24px;
		text-align: justify;
		word-break: break-all;
		margin-top: 10px;
	}
	.sec2-r3 {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
		margin-top: 30px;
	}
	.sec2-r3 > .badge {
		display: flex;
		justify-content: center;
		align-items: center;
		width: auto;
		height: 30px;
		padding: 0 15px;
		font-size: 16px;
		line-height: 1;
		color: #fce632;
		font-weight: 700;
		background-color: #17a0e5;
		letter-spacing: -0.05rem;
	}
	.sec2-r3__list {
		position: relative;
		display: block;
		width: calc(100% - 20px);
		margin-top: 20px;
	}
	.sec2-r3__list::before {
		content: "";
		position: absolute;
		top: -5px;
		left: -55px;
		display: block;
		width: 90px;
		height: 109px;
		background-image: url(../../img/yumespo/sec2-illust.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: contain;
	}
	.sec2-r3__list > li {
		display: block;
		width: 100%;
		font-size: 14px;
		text-align: center;
		font-weight: 500;
		line-height: 26px;
		letter-spacing: -0.05rem;
		padding-left: 20px;
	}
	.sec2-r3__list > li:nth-child(1) {
		padding-bottom: 10px;
	}
	.sec2-r3__list > li:nth-child(2) {
		padding-top: 10px;
		border-top: 1px dashed var(--font-color);
	}
}
@media screen and (max-width:359px) {
	.sec2-r2 .title {
		font-size: 19px;
	}
	.sec2-r3__list > li {
		font-size: 12px;
		line-height: 20px;
	}
}
@media screen and (min-width:768px) {
	.sec2-box2 {
		position: relative;
		display: block;
		width: calc(830/1000 * 100%);
		background-color: #ecf7fc;
		border-radius: 30px;
		margin: 135px auto 0 auto;
		padding: calc(100/830 * 100%) 40px 40px 40px;
	}	
	.sec2-r1 {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
	}
	.sec2-box-fig {
		display: block;
		width: 100%;
	}
	.sec2-box-fig > img {
		display: block;
		width: 100%;
		object-fit: cover;
	}
	.sec2-r1 > p:nth-child(1) {
		display: flex;
		justify-content: center;
		font-size: 40px;
		line-height: 1;
		font-weight: 700;
	}
	.sec2-r1 > p:nth-child(2) {
		display: flex;
		justify-content: center;
		align-items: baseline;
		font-size: 50px;
		line-height: 1;
		font-weight: 700;
	}
	.sec2-r1 > p:nth-child(2) > em {
		color: #e84c77;
		font-size: 66px;
	}
	.sec2-r1 > p:nth-child(2) > span {
		color: #e84c77;
		letter-spacing: 0.2rem;
	}
	.sec2-r1 > ul {
		display: block;
		width: 100%;
		margin-top: 20px;
	}
	.sec2-r1 > ul > li {
		display: block;
		width: 100%;
	}
	.sec2-r1 > ul > li:nth-child(n+2){
		margin-top: 10px;
	}
	.sec2-r1 > ul > li > dl {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
	}
	.sec2-r1 > ul > li > dl > dt {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 300px;
		height: 60px;
		color: var(--white);
		font-size: 32px;
		font-weight: 700;
		line-height: 1;
		background-color: #17a0e5;
	}
	.sec2-r1 > ul > li > dl > dd {
		display: block;
		width: calc(100% - 300px);
		font-size: 30px;
		line-height: 1;
		padding-left: 10px;
		font-weight: 700;
	}
	.sec2-r1 > ul > li > dl > dd > span {
		font-size: 45px;
	}
	.sec2-r1 > ul > li > dl > dd > span > em {
		color: #e84c77;
	}
	.sec2-r2 {
		display: block;
		width: 100%;
		margin-top: 100px;
		border: 3px solid var(--font-color);
	}
	.sec2-r2 > li {
		position: relative;
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 30px 40px;
		background-color: var(--white);
	}
	.sec2-r2 > li:nth-child(1) {
		padding-bottom: 60px;
	}
	.sec2-r2 > li::before {
		content: "";
		position: absolute;
		top: -50px;
		left: -30px;
		display: block;
		width: 100px;
		height: 100px;
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
	.sec2-r2 > li:nth-child(n+2) {
		border-top: 3px solid var(--font-color);
	}
	.sec2-r2 > li:nth-child(1)::before {
		background-image: url(../../img/yumespo/sec2-icon1.png);
	}
	.sec2-r2 > li:nth-child(2)::before {
		background-image: url(../../img/yumespo/sec2-icon2.png);
	}
	.sec2-r2 > li:nth-child(3)::before {
		background-image: url(../../img/yumespo/sec2-icon3.png);
	}
	.sec2-r2 .title {
		display: flex;
		justify-content: center;
		align-items: baseline;
		width: 100%;
		font-size: 50px;
		font-weight: 700;
		color: #17a0e5;
		line-height: 1;
		letter-spacing: -0.05rem;
	}
	.sec2-r2 .title > small {
		font-size: 30px;
	}
	.sec2-r2 .title > em {
		color: #e84c77;
		padding-left: 20px;
	}
	.sec2-r2 .subtitle {
		font-size: 30px;
		font-weight: 500;
		line-height: 40px;
		margin-top: 10px;
	}
	.sec2-r2 .subtitle > em {
		color: #e84c77;
	}
	.sec2-r2 .txt {
		display: block;
		width: 100%;
		font-size: 30px;
		font-weight: 500;
		line-height: 40px;
		text-align: justify;
		word-break: break-all;
		margin-top: 20px;
	}
	.sec2-r3 {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
		margin-top: 40px;
	}
	.sec2-r3 > .badge {
		display: flex;
		justify-content: center;
		align-items: center;
		width: auto;
		height: 60px;
		padding: 0 20px;
		font-size: 33px;
		line-height: 1;
		color: #fce632;
		font-weight: 700;
		background-color: #17a0e5;
		letter-spacing: -0.05rem;
	}
	.sec2-r3__list {
		position: relative;
		display: block;
		width: calc(100% - 40px);
		margin-top: 20px;
	}
	.sec2-r3__list::before {
		content: "";
		position: absolute;
		top: -30px;
		left: -140px;
		display: block;
		width: 240px;
		height: 292px;
		background-image: url(../../img/yumespo/sec2-illust.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: contain;
	}
	.sec2-r3__list > li {
		display: block;
		width: 100%;
		font-size: 31px;
		text-align: center;
		font-weight: 500;
		line-height: 46px;
		letter-spacing: -0.05rem;
	}
	.sec2-r3__list > li:nth-child(1) {
		padding-bottom: 30px;
	}
	.sec2-r3__list > li:nth-child(2) {
		padding-top: 30px;
		border-top: 3px dashed var(--font-color);
	}
}
@media screen and (min-width:768px) and (max-width:999px) {
	.sec2-r1 > p:nth-child(2) {	
		font-size: 44px;
	}
	.sec2-r1 > p:nth-child(2) > em {
		font-size: 54px;
	}
	.sec2-r1 > ul > li > dl > dt {		
		width: 200px;
		height: 50px;
		font-size: 22px;
	}
	.sec2-r1 > ul > li > dl > dd {
		width: calc(100% - 200px);
		font-size: 22px;
	}
	.sec2-r1 > ul > li > dl > dd > span {
		font-size: 36px;
	}
	.sec2-r2 > li::before {
		content: "";
		position: absolute;
		top: -40px;
		left: -30px;
		display: block;
		width: 80px;
		height: 80px;
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
	.sec2-r2 .title {		
		font-size: 36px;
	}
	.sec2-r2 .title > small {
		font-size: 24px;
	}
	.sec2-r2 .subtitle {
		font-size: 24px;
		line-height: 32px;
	}
	.sec2-r2 .txt {	
		font-size: 22px;
		line-height: 32px;
		margin-top: 20px;
		letter-spacing: -0.05rem;
	}
	.sec2-r3__list::before {		
		top: -20px;
		left: -120px;	
		width: 185px;
		height: 225px;
	}
	.sec2-r3__list > li {	
		font-size: 22px;
		line-height: 36px;
	}
}
/*sec2-cta*/
@media screen and (max-width:767px) {
	.sec2-btns {
		display: flex;
		justify-content: center;
		width: 100%;
		margin-top: 40px;
	}
}
@media screen and (min-width:768px) {
	.sec2-btns {
		display: flex;
		justify-content: center;
		width: 100%;
		margin-top: 80px;
	}
}
/* sec3
--------------------------------------------- */
@media screen and (max-width:767px) {
	.sec3 {
		display: block;
		width: 100%;
	}
	.sec3__body {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
		margin: 0 auto 0 auto;
		background-color: #ecf7fc;
		background-image: url(../../img/yumespo/sec3-bg.jpg);
		background-repeat: no-repeat;
		background-position: top center;
		background-size: cover;
		padding: 50px 0 70px 0;
	}	
	.sec3__title {
		display: block;
		width: calc(931/1200 * 100%);
		margin: 0 auto 0 auto;
	}
	.sec3__title > picture {
		display: block;
		width: 100%;
	}
	.sec3__title > picture > img {
		display: block;
		width: 100%;
		object-fit: cover;
	}
	.sec3__fig {
		display: block;
		width: calc(100% - 50px);
		margin: 20px auto 0 auto; 
	}
	.sec3__fig > img {
		display: block;
		width: 100%;
		object-fit: cover;
	}
	.sec3__list {
		display: block;
		width: calc(100% - 50px);
		margin: 20px auto 0 auto;
		background-color: var(--white);
		border-radius: 15px;
		padding: 10px;
	}
	.sec3__list > li {
		display: block;
		width: 100%;
	}
	.sec3__list > li:not(:last-child) {
		border-bottom: 2px solid #50b7eb;
	}
	.ec3__list-row {
		display: flex;
		justify-content: space-between;
		width: 100%;
	}
	.ec3__list-row > dt {
		display: block;
		width: 70px;
		font-size: 20px;
		line-height: 30px;
		font-weight: 700;
		border-right: 2px dashed #50b7eb;
		padding: 10px 0;
	}
	.ec3__list-row > dd {
		display: block;
		width: calc(100% - 70px);
		font-size: 20px;
		line-height: 30px;
		font-weight: 700;
		padding: 10px 10px 10px 10px;
		text-align: justify;
		word-break: break-all;
	}
	.ec3__list-row > dd > span {
		font-size: 18px;
		line-height: 26px;
	}
}
@media screen and (min-width:768px) {
	.sec3 {
		display: block;
		width: 100%;
	}
	.sec3__body {
		display: flex;
		flex-direction: column;
		align-items: center;
		max-width: 1000px;
		width: 100%;
		margin: 0 auto 0 auto;
		background-image: url(../../img/yumespo/sec3-bg.jpg);
		background-repeat: no-repeat;
		background-position: top center;
		background-size: cover;
		padding: 80px 0 115px 0;
	}	
	.sec3__title {
		display: block;
		width: calc(775/1000 * 100%);
		margin: 0 auto 0 auto;
	}
	.sec3__title > picture {
		display: block;
		width: 100%;
	}
	.sec3__title > picture > img {
		display: block;
		width: 100%;
		object-fit: cover;
	}
	.sec3__fig {
		display: block;
		width: calc(833.33/1000 * 100%);
		margin: 0 auto;
	}
	.sec3__fig > img {
		display: block;
		width: 100%;
		object-fit: cover;
	}
	.sec3__list {
		display: block;
		width: calc(833.33/1000 * 100%);
		margin: 20px auto 0 auto;
		background-color: var(--white);
		border-radius: 15px;
		padding: 10px;
	}
	.sec3__list > li {
		display: block;
		width: 100%;
		padding: 0 30px 0 10px;
	}
	.sec3__list > li:not(:last-child) {
		border-bottom: 2px solid #50b7eb;
	}
	.ec3__list-row {
		display: flex;
		justify-content: space-between;
		width: 100%;
	}
	.ec3__list-row > dt {
		display: block;
		width: 130px;
		font-size: 32px;
		line-height: 40px;
		font-weight: 700;
		border-right: 2px dashed #50b7eb;
		padding: 10px 0;
	}
	.ec3__list-row > dd {
		display: block;
		width: calc(100% - 130px);
		font-size: 32px;
		line-height: 40px;
		font-weight: 700;
		padding: 10px 0 10px 20px;
	}
	.ec3__list-row > dd > span {
		font-size: 30px;
		line-height: 36px;
	}
}
@media screen and (min-width:768px) and (max-width:999px) {
	.ec3__list-row > dt {	
		font-size: 28px;
		line-height: 36px;
	}
	.ec3__list-row > dd {	
		font-size: 28px;
		line-height: 36px;
	}
	.ec3__list-row > dd > span {
		font-size: 26px;
		line-height: 32px;
	}
}
/* sec4
--------------------------------------------- */
@media screen and (max-width:767px) {
	.sec4 {
		display: block;
		width: 100%;
	}
	.sec4__body {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
		margin: 0 auto 0 auto;
		background-color: var(--white);
		background-image: url(../../img/yumespo/sec4-bg.jpg);
		background-repeat: no-repeat;
		background-position: top center;
		background-size: 100% auto;
		padding: 60px 0 60px 0;
	}	
	.sec4__title {
		display: block;
		width: calc(931/1200 * 100%);
		margin: 0 auto 0 auto;
	}
	.sec4__title > picture {
		display: block;
		width: 100%;
	}
	.sec4__title > picture > img {
		display: block;
		width: 100%;
		object-fit: cover;
	}
	/*point*/
	.sec4-point__wrap {
		display: block;
		width: calc(100% - 40px);
		margin-top: 20px;
	}
	.sec4-point {
		position: relative;
		display: flex;
		flex-direction: column;
		width: 100%;
		border: 5px solid #17a0e5;
		border-radius: 10px;
	}
	.sec4-point::before {
		content: "";
		position: absolute;
		top: -20px;
		left: 5px;
		display: block;
		width: 49px;
		height: 61px;
		background-repeat: no-repeat;
		background-position: center;
		background-size: contain;
	}
	.sec4-point:nth-child(1):before {
		background-image: url(../../img/yumespo/sec4-icon1.png);
	}
	.sec4-point:nth-child(2):before {
		background-image: url(../../img/yumespo/sec4-icon2.png);
	}
	.sec4-point:nth-child(3):before {
		background-image: url(../../img/yumespo/sec4-icon3.png);
	}
	.sec4-point:nth-child(4):before {
		background-image: url(../../img/yumespo/sec4-icon4.png);
	}
	.sec4-point:nth-child(n+2){
		margin-top: 30px;
	}
	.sec4-point__title {
		display: block;
		width: 100%;
		font-size: 18px;
		line-height: 24px;
		color: var(--white);
		font-weight: 500;
		background-color: #17a0e5;
		letter-spacing: -0.05rem;
		padding: 10px 5px 10px 60px;
	}
	.sec4-point__txt {
		display: block;
		width: 100%;
		font-size: 16px;
		line-height: 24px;
		padding: 10px;
		background-color: #eaf6fc;
		text-align: justify;
		word-break: break-all;
		font-weight: 500;
	}
	.sec4-point__txt > span {
		font-weight: 700;
		text-underline-offset: -6px;
		text-decoration-line: underline;
		text-decoration-style: solid;
		text-decoration-color: rgba(252,207,0,50%);
		text-decoration-thickness: 10px;
	}
	.sec4-point__slogan {
		display: block;
		width: calc(100% - 40px);
		margin-top: 50px;
		font-size: 16px;
		line-height: 30px;
		font-weight: 500;
		text-align: center;
	}
	.sec4-point__slogan > span {
		font-weight: 700;
		text-underline-offset: -6px;
		text-decoration-line: underline;
		text-decoration-style: solid;
		text-decoration-color: rgba(252,207,0,50%);
		text-decoration-thickness: 10px;
	}
	.sec4-point__figure {
		display: block;
		width: 100%;
		padding: 0 20px;
		margin-top: 40px;
	}
	.sec4-point__figure > img {
		display: block;
		width: 100%;
		object-fit: cover;
	}
}
@media screen and (min-width:768px) {
	.sec4 {
		display: block;
		width: 100%;
	}
	.sec4__body {
		display: flex;
		flex-direction: column;
		align-items: center;
		max-width: 1000px;
		width: 100%;
		margin: 0 auto 0 auto;
		background-image: url(../../img/yumespo/sec4-bg.jpg);
		background-repeat: no-repeat;
		background-position: top center;
		background-size: cover;
		padding: 100px 0 100px 0;
	}	
	.sec4__title {
		display: block;
		width: calc(775/1000 * 100%);
		margin: 0 auto 0 auto;
	}
	.sec4__title > picture {
		display: block;
		width: 100%;
	}
	.sec4__title > picture > img {
		display: block;
		width: 100%;
		object-fit: cover;
	}
	/*point*/
	.sec4-point__wrap {
		display: block;
		width: calc(833.33/1000 * 100%);
		margin-top: 20px;
	}
	.sec4-point {
		position: relative;
		display: flex;
		flex-direction: column;
		width: 100%;
		border: 9px solid #17a0e5;
		border-radius: 10px;
	}
	.sec4-point::before {
		content: "";
		position: absolute;
		top: -40px;
		left: 20px;
		display: block;
		width: 82px;
		height: 102px;
		background-repeat: no-repeat;
		background-position: center;
		background-size: contain;
	}
	.sec4-point:nth-child(1):before {
		background-image: url(../../img/yumespo/sec4-icon1.png);
	}
	.sec4-point:nth-child(2):before {
		background-image: url(../../img/yumespo/sec4-icon2.png);
	}
	.sec4-point:nth-child(3):before {
		background-image: url(../../img/yumespo/sec4-icon3.png);
	}
	.sec4-point:nth-child(4):before {
		background-image: url(../../img/yumespo/sec4-icon4.png);
	}
	.sec4-point:nth-child(n+2){
		margin-top: 50px;
	}
	.sec4-point__title {
		display: block;
		width: 100%;
		font-size: 40px;
		line-height: 50px;
		color: var(--white);
		font-weight: 500;
		background-color: #17a0e5;
		letter-spacing: -0.05rem;
		padding: 20px 10px 20px 115px;
	}
	.sec4-point__txt {
		display: block;
		width: 100%;
		font-size: 30px;
		line-height: 40px;
		padding: 20px;
		background-color: #eaf6fc;
		text-align: justify;
		word-break: break-all;
		font-weight: 500;
	}
	.sec4-point__txt > span {
		font-weight: 700;
		text-underline-offset: -10px;
		text-decoration-line: underline;
		text-decoration-style: solid;
		text-decoration-color: rgba(252,207,0,50%);
		text-decoration-thickness: 20px;
	}
	.sec4-point__slogan {
		display: block;
		width: calc(860/1000 * 100%);
		margin-top: 50px;
		font-size: 33px;
		line-height: 66px;
		font-weight: 500;
		text-align: center;
	}
	.sec4-point__slogan > span {
		font-weight: 700;
		text-underline-offset: -10px;
		text-decoration-line: underline;
		text-decoration-style: solid;
		text-decoration-color: rgba(252,207,0,50%);
		text-decoration-thickness: 20px;
	}
	.sec4-point__figure {
		display: block;
		width: 100%;
		padding: 0 20px;
		margin-top: 40px;
	}
	.sec4-point__figure > img {
		display: block;
		width: 100%;
		object-fit: cover;
	}
}
@media screen and (min-width:768px) and  (max-width:999px) {
	.sec4-point__title {		
		font-size: 30px;
		line-height: 40px;
		padding: 15px 10px 15px 110px;
	}
	.sec4-point__txt {	
		font-size: 20px;
		line-height: 30px;
		padding: 15px;
	}
	.sec4-point__txt > span {
		font-weight: 700;
		text-underline-offset: -6px;
		text-decoration-line: underline;
		text-decoration-style: solid;
		text-decoration-color: rgba(252,207,0,50%);
		text-decoration-thickness: 12px;
	}
	.sec4-point__slogan {		
		font-size: 26px;
		line-height: 50px;
	}
	.sec4-point__slogan > span {
		font-weight: 700;
		text-underline-offset: -6px;
		text-decoration-line: underline;
		text-decoration-style: solid;
		text-decoration-color: rgba(252,207,0,50%);
		text-decoration-thickness: 12px;
	}
}
/* sec5
--------------------------------------------- */
@media screen and (max-width:767px) {
	.sec5 {
		display: block;
		width: 100%;
	}
	.sec5__body {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
		margin: 0 auto 0 auto;
		background-color: #ecf7fc;
		background-image: url(../../img/yumespo/sec5-bg.jpg);
		background-repeat: no-repeat;
		background-position: 100% auto;
		background-size: cover;
		padding: 50px 0 50px 0;
	}	
	.sec5__title {
		display: block;
		width: calc(931/1200 * 100%);
		margin: 0 auto 0 auto;
	}
	.sec5__title > picture {
		display: block;
		width: 100%;
	}
	.sec5__title > picture > img {
		display: block;
		width: 100%;
		object-fit: cover;
	}
	/*message*/
	.sec5__message {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: calc(100% - 50px);
		background-color: var(--white);
		border-radius: 15px;
		padding: 20px;
		margin-top: 20px;
	}
	.sec5__logo {
		display: block;
		max-width: 200px;
		width: calc(100% - 20px);
		margin-top: 10px;
	}
	.sec5__logo > img {
		display: block;
		width: 100%;
		object-fit: cover;
	}
	.sec5__message-txt {
		display: block;
		width: 100%;
		font-size: 16px;
		line-height: 30px;
		text-align: justify;
		word-break: break-all;
		margin-top: 30px;
		font-weight: 500;
	}
	.sec5__figure {
		display: block;
		width: calc(900/1000 * 100%);
		margin-top: 30px;
	}
	.sec5__figure > img {
		display: block;
		width: 100%;
		object-fit: cover;
	}
}
@media screen and (min-width:768px) {
	.sec5 {
		display: block;
		width: 100%;
	}
	.sec5__body {
		display: flex;
		flex-direction: column;
		align-items: center;
		max-width: 1000px;
		width: 100%;
		margin: 0 auto 0 auto;
		background-image: url(../../img/yumespo/sec5-bg.jpg);
		background-repeat: no-repeat;
		background-position: top center;
		background-size: cover;
		padding: 80px 0 60px 0;
	}	
	.sec5__title {
		display: block;
		width: calc(775/1000 * 100%);
		margin: 0 auto 0 auto;
	}
	.sec5__title > picture {
		display: block;
		width: 100%;
	}
	.sec5__title > picture > img {
		display: block;
		width: 100%;
		object-fit: cover;
	}
	/*message*/
	.sec5__message {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: calc(833.33/1000 * 100%);
		background-color: var(--white);
		border-radius: 20px;
		padding: 30px;
		margin-top: 20px;
	}
	.sec5__logo {
		display: block;
		max-width: 277px;
		width: 100%;
		margin-top: 10px;
	}
	.sec5__logo > img {
		display: block;
		width: 100%;
		object-fit: cover;
	}
	.sec5__message-txt {
		display: block;
		width: 100%;
		font-size: 20px;
		line-height: 40px;
		text-align: justify;
		word-break: break-all;
		margin-top: 30px;
		font-weight: 500;
	}
	.sec5__figure {
		display: block;
		width: calc(900/1000 * 100%);
		margin-top: 60px;
	}
	.sec5__figure > img {
		display: block;
		width: 100%;
		object-fit: cover;
	}
}
@media screen and (min-width:768px) and (max-width:999px) {
	.sec5__message-txt {
		font-size: 18px;
		line-height: 36px;
	}
}
/* sec6
--------------------------------------------- */
@media screen and (max-width:767px) {
	.sec6 {
		display: block;
		width: 100%;
	}
	.sec6__body {
		display: flex;
		flex-direction: column;
		align-items: center;
		max-width: 1000px;
		width: 100%;
		margin: 0 auto 0 auto;
		background-color: var(--white);
		background-image: url(../../img/yumespo/sec6-bg.jpg);
		background-repeat: no-repeat;
		background-position: top center;
		background-size: 100% auto;
		padding: 40px 0 40px 0;
	}	
	.sec6__title {
		display: block;
		width: calc(931/1200 * 100%);
		margin: 0 auto 0 auto;
	}
	.sec6__title > picture {
		display: block;
		width: 100%;
	}
	.sec6__title > picture > img {
		display: block;
		width: 100%;
		object-fit: cover;
	}
	.sec6__name {
		display: block;
		width: calc(100% - 50px);
		font-size: 18px;
		line-height: 30px;
		font-weight: 500;
		text-align: center;
		margin-top: 20px;
		letter-spacing: -0.05rem;
	}
	.sec6__address {
		display: block;
		width: calc(100% - 50px);
		font-size: 18px;
		line-height: 30px;
		font-weight: 400;
		text-align: center;
		margin-top: 10px;
		letter-spacing: -0.05rem;
	}
	.sec6__link {
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 250px;
		height: 40px;
		background-color: #17a0e5;
		border-radius: 20px;
		margin-top: 20px;
		font-size: 18px;
		color: var(--white);
		line-height: 1;
		font-weight: 500;
		padding-right: 30px;
		letter-spacing: -0.05rem;
	}
	.sec6__link::after {
		content: "";
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 30px;
		display: block;
		width: 18px;
		height: 18px;
		background-image: url(../../img/yumespo/btn-icon.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: contain;
	}
	.sec6__map {
		display: block;
		width: calc(100% - 50px);
		height: 300px;
		padding: 5px;
		border: 1px solid #CCCCCC;
		border-radius: 5px;
		margin-top: 20px;
		background-color: var(--white);
	}
	.sec6__map > iframe {
		width: 100%;
		height: 100%;
	}
	.sec6__slogan {
		display: block;
		width: calc(100% - 50px);
		font-size: 20px;
		line-height: 30px;
		font-weight: 400;
		text-align: center;
		color: #17a0e5;
		font-weight: 700;
		margin-top: 30px;
		letter-spacing: -0.05rem;
	}
	.sec6__btns {
		display: flex;
		justify-content: center;
		width: calc(833.33/1000 * 100%);
		margin-top: 30px;
	}
	.sec6__ft-txt {
		display: block;
		width: 100%;
		font-size: 18px;
		line-height: 30px;
		text-align: center;
		font-weight: 500;
		letter-spacing: -0.05rem;
		margin-top: 20px;
	}
}
@media screen and (min-width:768px) {
	.sec6 {
		display: block;
		width: 100%;
	}
	.sec6__body {
		display: flex;
		flex-direction: column;
		align-items: center;
		max-width: 1000px;
		width: 100%;
		margin: 0 auto 0 auto;
		background-color: var(--white);
		background-image: url(../../img/yumespo/sec6-bg.jpg);
		background-repeat: no-repeat;
		background-position: top center;
		background-size: cover;
		padding: 80px 0 60px 0;
	}	
	.sec6__title {
		display: block;
		width: calc(775/1000 * 100%);
		margin: 0 auto 0 auto;
	}
	.sec6__title > picture {
		display: block;
		width: 100%;
	}
	.sec6__title > picture > img {
		display: block;
		width: 100%;
		object-fit: cover;
	}
	.sec6__name {
		display: block;
		width: calc(833.33/1000 * 100%);
		font-size: 33.33px;
		line-height: 40px;
		font-weight: 500;
		text-align: center;
		margin-top: 20px;
		letter-spacing: -0.05rem;
	}
	.sec6__address {
		display: block;
		width: calc(833.33/1000 * 100%);
		font-size: 33.33px;
		line-height: 40px;
		font-weight: 400;
		text-align: center;
		margin-top: 20px;
		letter-spacing: -0.05rem;
	}
	.sec6__link {
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 420px;
		height: 60px;
		background-color: #17a0e5;
		border-radius: 30px;
		margin-top: 20px;
		font-size: 33px;
		color: var(--white);
		line-height: 1;
		font-weight: 500;
		padding-right: 30px;
		letter-spacing: -0.05rem;
	}
	.sec6__link::after {
		content: "";
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 30px;
		display: block;
		width: 29px;
		height: 29px;
		background-image: url(../../img/yumespo/btn-icon.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: contain;
	}
	.sec6__link:hover {
		transition: opacity 0.3s ease;
		opacity: 0.7;
	}
	.sec6__map {
		display: block;
		width: calc(817/1000 * 100%);
		height: 530px;
		padding: 10px;
		border: 1px solid #CCCCCC;
		border-radius: 10px;
		margin-top: 20px;
	}
	.sec6__map > iframe {
		width: 100%;
		height: 100%;
	}
	.sec6__slogan {
		display: block;
		width: calc(833.33/1000 * 100%);
		font-size: 41px;
		line-height: 66px;
		font-weight: 400;
		text-align: center;
		color: #17a0e5;
		font-weight: 700;
		margin-top: 60px;
		letter-spacing: -0.05rem;
	}
	.sec6__btns {
		display: flex;
		justify-content: center;
		width: calc(833.33/1000 * 100%);
		margin-top: 30px;
	}
	.sec6__ft-txt {
		display: block;
		width: 100%;
		font-size: 33px;
		line-height: 60px;
		text-align: center;
		font-weight: 500;
		letter-spacing: -0.05rem;
		margin-top: 20px;
	}
}
@media screen and (min-width:768px) and (max-width:999px) {
	.sec6__slogan {
		font-size: 32px;
		line-height: 55px;
	}
}
/* sec7
--------------------------------------------- */
@media screen and (max-width:767px) {
	.sec7 {
		display: block;
		width: 100%;
	}
	.sec7__body {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
		margin: 0 auto 0 auto;
		background-color: #ecf7fc;
		padding: 30px 0 30px 0;
	}	
	.sec7__title {
		display: block;
		width: calc(986/1200 * 100%);
		margin: 0 auto 0 auto;
	}
	.sec7__title > picture {
		display: block;
		width: 100%;
	}
	.sec7__title > picture > img {
		display: block;
		width: 100%;
		object-fit: cover;
	}
	.sec7__name {
		display: block;
		width: calc(100% - 40px);
		font-size: 18px;
		line-height: 30px;
		font-weight: 500;
		text-align: center;
		margin-top: 20px;
		letter-spacing: -0.05rem;
	}
	.sec7__txt {
		display: block;
		width: calc(100% - 40px);
		font-size: 18px;
		line-height: 30px;
		font-weight: 400;
		text-align: center;
		margin-top: 10px;
		letter-spacing: -0.075rem;
	}
	.sec7__txt > a {
		letter-spacing: 0.05rem;
		padding-right: 10px;
		text-decoration: underline;
	}	
	.sec7__url {
		display: block;
		width: auto;
		font-size: 18px;
		line-height: 30px;
		font-weight: 400;
		text-align: center;
		margin-top: 10px;
		letter-spacing: -0.01rem;
		color: var(--font-color);
		padding-bottom: 6px;
		text-underline-offset: 6px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-color: var(--font-color);
    text-decoration-thickness: 1px;
	}
	.sec7__url:hover {
		transition: opacity 0.3s ease;
		opacity: 0.7;
	}
}
@media screen and (min-width:768px) {
	.sec7 {
		display: block;
		width: 100%;
	}
	.sec7__body {
		display: flex;
		flex-direction: column;
		align-items: center;
		max-width: 1000px;
		width: 100%;
		margin: 0 auto 0 auto;
		background-color: #ecf7fc;
		padding: 60px 0 60px 0;
	}	
	.sec7__title {
		display: block;
		width: calc(882/1000 * 100%);
		margin: 0 auto 0 auto;
	}
	.sec7__title > picture {
		display: block;
		width: 100%;
	}
	.sec7__title > picture > img {
		display: block;
		width: 100%;
		object-fit: cover;
	}
	.sec7__name {
		display: block;
		width: calc(833.33/1000 * 100%);
		font-size: 33px;
		line-height: 50px;
		font-weight: 500;
		text-align: center;
		margin-top: 20px;
		letter-spacing: -0.05rem;
	}
	.sec7__txt {
		display: block;
		width: calc(833.33/1000 * 100%);
		font-size: 33px;
		line-height: 50px;
		font-weight: 400;
		text-align: center;
		margin-top: 10px;
		letter-spacing: -0.075rem;
	}
	.sec7__txt > a {
		letter-spacing: 0.05rem;
		padding-right: 10px;
		text-decoration: underline;
	}
	.sec7__txt > a:hover {
		transition: opacity 0.3s ease;
		opacity: 0.7;
	}
	.sec7__url {
		display: block;
		width: auto;
		font-size: 33px;
		line-height: 50px;
		font-weight: 400;
		text-align: center;
		margin-top: 10px;
		letter-spacing: -0.01rem;
		color: var(--font-color);
		padding-bottom: 8px;
		text-underline-offset: 8px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-color: var(--font-color);
    text-decoration-thickness: 1px;
	}
	.sec7__url:hover {
		transition: opacity 0.3s ease;
		opacity: 0.7;
	}
}
@media screen and (min-width:768px) and (max-width:999px) {
	.sec7__name {	
		font-size: 24px;
		line-height: 40px;
	}
	.sec7__txt {
		font-size: 24px;
		line-height: 40px;
	}
	.sec7__url {
		font-size: 24px;
		line-height: 40px;
	}
}
/* footer
--------------------------------------------- */
@media screen and (max-width:767px) {
	.site-footer {
		display: block;
		width: 100%;
		padding: 30px 0 20px 0;
		background-color: var(--white);
	}
	.site-footer__body {
		display: flex;
		flex-direction: column;
		align-items: center;
		max-width: 500px;
		width: 100%;
		padding: 0 20px;
		margin: 0 auto;
	}
	.site-footer__title {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100px;
		height: 30px;
		background-color: var(--font-color);
		font-size: 20px;
		line-height: 1;
		color: var(--white);
		font-weight: 500;
		letter-spacing: -0.05rem;
	}
	.site-footer__logos {
		display: block;
		width: 100%;
		margin-bottom: 10px;
	}
	.site-footer__logos > img {
		display: block;
		width: 100%;
		object-fit: cover;
	}
	.site-footer__body > p {
		display: flex;
		justify-content: center;
		width: 100%;
		font-size: 16px;
		line-height: 22px;
		font-weight: 400;
		letter-spacing: -0.05rem;
	}
	.site-footer__tel > a {
		padding-left: 15px;
		letter-spacing: 0.05rem;
	}
	.site-footer__tel > a:hover {
		transition: opacity 0.3s ease;
		opacity: 0.7;
	}
}
@media screen and (min-width:768px) {
	.site-footer {
		display: block;
		width: 100%;
		padding: 30px 0 20px 0;
		background-color: var(--white);
	}
	.site-footer__body {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
		padding: 0 20px;
		margin: 0 auto;
	}
	.site-footer__title {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 140px;
		height: 43px;
		background-color: var(--font-color);
		font-size: 29px;
		line-height: 1;
		color: var(--white);
		font-weight: 500;
		letter-spacing: -0.05rem;
	}
	.site-footer__logos {
		display: block;
		max-width: 1260px;
		width: 100%;
	}
	.site-footer__logos > img {
		display: block;
		width: 100%;
		object-fit: cover;
	}
	.site-footer__body > p {
		display: flex;
		justify-content: center;
		width: 100%;
		font-size: 29px;
		line-height: 41px;
		font-weight: 400;
		letter-spacing: -0.05rem;
	}
	.site-footer__tel > a {
		padding-left: 15px;
		letter-spacing: 0.05rem;
	}
	.site-footer__tel > a:hover {
		transition: opacity 0.3s ease;
		opacity: 0.7;
	}
}