@charset "UTF-8";

/* CSS Document */

/* http://meyerweb.com/eric/tools/css/reset/
  v2.0 | 20110126
  License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}
body {
  line-height: 1;
  background: #F9F2F1;
  color: #33272A;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  /* border-collapse: collapse; */ /* border-spacing: 0; */
}

/* アニメーション
-------------------------------------*/
/* ScrollTrigger マーカーを強制的に非表示にする */
.gsap-marker-scroller-end,
.gsap-marker-start,
.gsap-marker-end,
.gsap-marker-scroller-start {
  display: none !important;
}

/*fadein*/
.animated__fadeIn {
  opacity: 0;
  translate: 0 40px;
  transition: opacity 0.8s ease, translate 0.8s ease;
}

.animated__fadeIn.js-show {
  opacity: 1;
  translate: 0 0;
}

/*片側から出現*/
.animated__clipView {
  clip-path: inset(0 100% 0 0); /*before (出現前)*/
  transition: clip-path 0.8s ease;
}

/*after (出現後)*/
.animated__clipView.js-show {
  clip-path: inset(0 0 0 0);
}

/*左からスライドするアニメーション*/
.animated__slideIn--left {
  opacity: 0; /*before (出現前)*/
  transition: opacity 0.5s ease, translate 0.5s ease;
  translate: -1000px;
}

.animated__slideIn--left.js-show {
  opacity: 1;
  translate: 0;
}

/*右からスライドするアニメーション*/
.animated__slideIn--right {
  opacity: 0; /*before (出現前)*/
  transition: opacity 0.5s ease, translate 0.5s ease;
  translate: 1000px;
}

.animated__slideIn--right.js-show {
  opacity: 1; /*before (出現前)*/
  translate: 0;
}

main {
  width: min(100%,1920px);
  margin-inline: auto;
}

/* ========================================
  @media screen and (min-width: 768px),print 
======================================== */
@media screen and (min-width: 768px), print {
/* base
-------------------------------------*/
body {
  font-size: 16px;
  overflow-x: hidden;
  line-height: 1.6;
  letter-spacing: 0.8px;
}

body#index {
  background: #FFFFFE;
}

/*pc・タブレットcss*/
/*pc_defaultset*/
.pc {
  display: block !important;
}
/*pcのみ表示ブロック*/
.pc2 {
  display: inline-block !important;
}
/*pcのみ表示ブロック*/
.sp,
.sp2 {
  display: none !important;
}
/*スマホのみ表示ブロック*/
.h_menu {
  display: none;
}
/*スマホ用ヘッダ*/
.sp-header {
  display: none;
}
/*スマホ用メニュー*/
#sp-global-nav {
  display: none;
}
/*スマホ用メニュー*/
.sp-fix-list {
  display: none;
}
/* Antialiasing ※任意　*/

/* header
-------------------------------------*/
header {
  max-width: 1920px;
  width: 100%;
  margin-inline: auto;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

#index header.l-header {
	background: #F9F2F1;
}

.l-header.js-active {
  height: 125px;
  background: #FFFFFE;
}

.l-header .l-inner.l-header {
	padding-inline: 0 32px;
}

.l-header.l-header.js-active .l-inner.l-header {
  background: #FFFFFE;
}

.l-header .l-header__contents {
	display: flex;
}

.l-header.js-active .l-header__contents {
  align-items: center;
  justify-content: center;
}

.l-header .l-header__contents-left {
	background: url(../images/common/h_logo_bg.svg) no-repeat left top/contain;
	margin-right: 14px;
}

.l-header.js-active .l-header__contents-left {
  background: url(../images/common/logo_active.png) no-repeat center center / contain;
  width: 193px;
  height: 125px;
  margin-right: 50px;
}

.l-header.js-active .l-header__contents-left a {
  padding-block: 0px;
  padding-inline: 0px 0; 
  width: 193px;
  height: 125px;
  display: block;
}

.l-header.js-active .l-header__contents-left a img {
  display: none;
}

.l-header .l-header__contents-left a {
	display: block;
	padding-block: 32px 77px;
	padding-inline: 32px 80px;
	position: relative;
}

.l-header .l-header__contents-center {
	padding-block: 41px 0;
}

.l-header.js-active .l-header__contents-center {
  padding-block: 0;
}

.l-header .l-header__contents-center .top {
	display: flex;
	gap: 0 12px;
	margin-bottom: 38px;
}

.l-header.js-active .l-header .l-header__contents-center .top {
  display: none;
}

.l-header .l-header__contents-center .top p {
	background: #ECC3C4;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 400;
	height: -moz-fit-content;
	height: fit-content;
	letter-spacing: 0.03em;
	line-height: 1;
	padding-block: 8px 8px;
	padding-inline: 16px 17px;
}

.l-header .l-header__contents-center .top p span {
	font-weight: 700;
	font-size: 20px;
}

.l-header .l-header__contents-center .link a {
	display: block;
}

.l-header .l-header__contents-center .top .link a img {
  width: 34px;
  width: clamp(0.875rem, 0.042rem + 1.74vw, 2.125rem);
  height: auto;
  vertical-align: top;
}

.l-header .l-header__contents-center .bottom .lists {
	align-items: center;
	display: flex;
	gap: 0 24px;
}

.l-header .l-header__contents-center .bottom .lists li:last-child a {
	border: none;
}

.l-header .l-header__contents-center .bottom .lists li a {
	display: block;
	font-size: 16px;
  font-size: clamp(0.625rem, 0.375rem + 0.52vw, 1rem);
	align-items: center;
	border-right: 1px solid #33272A;
	display: flex;
	font-weight: 700;
	gap: 0 8px;
	letter-spacing: 0.03em;
	line-height: 1;
	padding-inline: 0 23px;
}

.l-header .l-header__contents-center .bottom .lists li:last-child a {
  padding-inline: 0;
}

.l-header .l-header__contents-right {
	padding-block: 32px 0;
	position: relative;
	left: 54px;
}

.l-header.l-header.js-active .l-header__contents-right {
  padding-block: 0;
}

.l-header .l-header__contents-right .top {
	align-items: center;
	background: #FFFFFE;
	border-radius: 8px;
	display: flex;
	gap: 0 19px;
	margin-bottom: 24px;
  padding-inline: 14px 14px;
}

.l-header.js-active .l-header__contents-right .top {
  display: none;
  padding-inline: 16px;
}

.l-header .l-header__contents-right .top .tel {
	align-items: center;
	display: flex;
	gap: 0 9px;
	padding-block: 5px;
}

.l-header .l-header__contents-right .top .tel p {
	color: #E3899F;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 0.025em;
	line-height: 1.6666666667;
}

.l-header .l-header__contents-right .top .time {
	align-items: center;
	color: #594A4E;
	display: flex;
	gap: 0 6px;
}

.l-header .l-header__contents-right .top .time p {
	font-size: 14px;
  font-size: clamp(0.5rem, 0.25rem + 0.52vw, 0.875rem);
	font-weight: 700;
	letter-spacing: 0.03em;
	line-height: 1.6428571429;
}

.l-header .l-header__contents-right .top .time p span {
	background: #ECC3C4;
	border-radius: 4px;
	padding: 2px;
	font-weight: 700;
	letter-spacing: 0.035em;
	line-height: 1.9166666667;
	padding-block: 0px 0px;
	padding-inline: 3px 1px;
	height: fit-content;
	display: inline-block;
	margin-right: 4px;
	font-size: 14px;
  font-size: clamp(0.5rem, 0.25rem + 0.52vw, 0.875rem);
}

.l-header .l-header__contents-right .top .time p.txt {
	font-size: 10px;
  font-size: clamp(0.5rem, 0.417rem + 0.17vw, 0.625rem);
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.6;
	color: #E87C67;
}

.l-header .l-header__contents-right .bottom .btn {
	align-items: center;
	display: flex;
	gap: 0 16px;
}

.l-header .l-header__contents-right .bottom .btn li a {
  position: relative;
}

.l-header .l-header__contents-right .bottom .btn li a::after {
  position: absolute;
  content: "";
  background: url(../images/common/btn_arrow.svg) no-repeat center center / contain;
  width: 9.6px;
  height: 16px;
  right: 34px;
  top: 50%;
  transform: translateY(-50%);
}

.l-header .l-header__contents-right .bottom .btn li:nth-child(2) a::after {
  right: 16px;
}

.l-header .l-header__contents-right .bottom .btn li:nth-child(1) a {
  border-radius: 4px;
  border: 1px solid #33272A;
  background: var(--Linear, linear-gradient(90deg, #DDD6F3 0%, #FAACA8 100%, #FAACA8 100%));
  display: flex;
  align-items: center;
  gap: 0 8px;
  padding: 12px 24px;
  width: 314px;
}

.l-header .l-header__contents-right .bottom .btn li:nth-child(2) a {
  border-radius: 4px;
  border: 1px solid #33272A;
  background: var(--Linear, linear-gradient(90deg, #96FBC4 0%, #F9F586 100%));
  display: flex;
  align-items: center;
  gap: 0 8px;
  padding: 12px 24px;
  width: 320px;
}

.l-header .l-header__contents-right .bottom .btn li a img {
  width: 32px;
  height: auto;
}

.l-header .l-header__contents-right .bottom .btn li a p {
	font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.5px;
  font-weight: 700;
}



/* pullnavi */
#pullnavi {
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  transform: translateY(-100%);
}
#pullnavi.upMove {
  opacity: 0;
  transform: translateY(-100%);
}
#pullnavi.dwMove {
  opacity: 1;
  transform: translateY(0);
}

#pullnavi {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
#pullnavi {
  background: #fff;
  width: 100%;
  box-shadow: 0px 3px 20px #00000029;
}
#pullnavi .inbox {
  width: 100%;
  min-width: 1280px;
  height: 70px;
  margin: 0px auto 20px auto;
  padding-top: 14px;
  position: relative;
}

/* pc-menu
-------------------------------------*/
.pc-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99;
}
.pc-menu:hover {
  opacity: 0.8;
  cursor: pointer;
  cursor: hand;
}
#pc-menu-open {
  display: none;
  background: #f8f8f8;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: 100;
  overflow-y: scroll;
}
#pc-menu-open .open-close-01 {
  position: absolute;
  top: 0;
  right: 0;
}

#pc-menu-open {
  background: #ccc;
  padding: 80px 0;
  line-height: 1.6;
}
#pc-menu-open .menu-open-Box {
  width: 1100px;
  margin: 0 auto;
  font-size: 16px;
}
#pc-menu-open .f-link-Box {
  width: 770px;
  float: left;
}
#pc-menu-open .f-link-Box .f-home-link {
  margin-bottom: 40px;
}
#pc-menu-open .f-link-Box .f-home-link::before {
  content: "■ ";
}
#pc-menu-open .f-link-Box .parent {
  font-size: 14px;
  color: #fff;
}
#pc-menu-open .f-link-Box .child {
  font-size: 14px;
}
#pc-menu-open .f-link-Box .child::before {
  content: "- ";
  padding-right: 5px;
}
/*#pc-menu-open  .f-link-Box li::before{ content: "> "; }*/
#pc-menu-open .f-link-Box li {
  margin-bottom: 10px;
}
#pc-menu-open .f-link-l {
  float: left;
  width: 180px;
  margin-right: 40px;
}
#pc-menu-open .f-link-c {
  float: left;
  width: 180px;
  margin-right: 40px;
}
#pc-menu-open .f-link-r {
  float: left;
  width: 180px;
}
#pc-menu-open .menu-open-con-Box {
  width: 320px;
  float: left;
}
#pc-menu-open .menu-open-con-Box .sns-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.open-main-Box {
  width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* side-fix
-------------------------------------*/
.side-fix {
  position: fixed;
  top: 200px;
  right: 0;
  z-index: 110;
}

/* g-nav
-------------------------------------*/
#g-nav {
  width: 1100px;
  margin: 0px auto 10px auto;
  padding: 20px 0;
  text-align: center;
  font-size: 16px;
}
#g-nav li.list {
  position: relative;
  display: inline-block;
  margin-right: 2px;
}
#g-nav li.list span {
  cursor: pointer;
}
#g-nav li.list span,
#g-nav li.list a {
  border-right: 1px solid #999;
  display: block;
  text-align: center;
  padding: 10px 20px;
}
#g-nav li.list:first-child a {
  border-left: 1px solid #999;
}
#g-nav .dropmenu li.list ul.sub {
  visibility: hidden;
  opacity: 0;
  transition: 0s;
  position: absolute;
  top: 35px;
  left: 0;
  margin: 0;
  padding: 0;
  z-index: 50;
  width: 220px;
}
#g-nav .dropmenu li.list:hover ul {
  visibility: visible;
  opacity: 1;
  display: block;
}
#g-nav .dropmenu li.list ul li:last-child a {
  border-bottom: 1px solid #ccc;
}
#g-nav .dropmenu li.list ul li a {
  visibility: hidden;
  opacity: 0;
  transition: 0.9s;
  background: #fff;
  display: block;
  width: 220px;
  padding: 10px;
  color: #000;
  border: 1px solid #ccc;
  border-bottom: none;
}
#g-nav .dropmenu li.list:hover ul li a {
  visibility: visible;
  opacity: 1;
}

/* footer
-------------------------------------*/
.l-footer {
  background: #FFFFFE;
  width: min(100%,1920px);
  margin-inline: auto;
}

.l-footer .l-footer__box-inner {
	margin-inline: auto;
	padding-block: 64px;
	width: min(95%, 1617px);
}

.l-footer .l-footer__contents {
	display: flex;
	justify-content: space-between;
}

.l-footer .l-footer__contents-left {
	display: grid;
	gap: 24px 0;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	height: -moz-fit-content;
	height: fit-content;
}

.l-footer .l-footer__contents-left .logo a {
	display: block;
}

.l-footer .l-footer__contents-left .access {
	font-size: 16px;
  font-size: clamp(0.625rem, 0.375rem + 0.52vw, 1rem);
	font-weight: 400;
	letter-spacing: 0.03em;
	line-height: 1.75;
}

.l-footer .l-footer__contents-left .tel span {
	font-size: 12px;
	display: block;
	font-weight: 400;
	letter-spacing: 0.04em;
	line-height: 1.6666666667;
	text-align: left;
}

.l-footer .l-footer__contents-right {
	display: flex;
	position: relative;
	top: 8px;
	height: fit-content;
	gap: 0px 40px;
}

.l-footer .l-footer__contents-right .list li {
  margin-bottom: 16px;
}

.l-footer .l-footer__contents-right .list li:last-child {
  margin-bottom: 0;
}

.l-footer .l-footer__contents-right .list li a {
	font-size: 16px;
  font-size: clamp(0.625rem, 0.375rem + 0.52vw, 1rem);
	display: block;
	font-weight: 700;
	letter-spacing: 0.03em;
	line-height: 1.75;
	padding-inline: 24px 0;
	position: relative;
}

.l-footer .l-footer__contents-right .list li a:before {
	background: url(../images/common/f_arrow.svg) no-repeat center center/contain;
	content: "";
	height: 24px;
	left: -6px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
}

.p-con__bottom {
	background: #ECC3C4;
  width: min(100%,1920px);
  margin-inline: auto;
}

.p-con__bottom .p-con__bottom-inner {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-inline: auto;
	padding-block: 16px;
	width: min(95%, 1600px);
}

.p-con__bottom .link {
	align-items: center;
	display: flex;
	gap: 0 32px;
}

.p-con__bottom .link a {
	display: block;
}

.p-con__bottom .copyright {
	font-size: 16px;
  font-size: clamp(0.875rem, 0.792rem + 0.17vw, 1rem);
	display: block;
	font-weight: 400;
	letter-spacing: 0.03em;
	line-height: 1.75;
	white-space: nowrap;
  color: #000;
}

/* end-contact
-------------------------------------*/
.p-bnr {
  background-color: #FFFFFE; /* 背景色を指定 */
  background-image: url(../images/common/bnr_bg.png); /* 画像を指定 */
  background-position: top -300px center; /* 画像の位置を指定 */
  background-repeat: no-repeat; /* 画像を繰り返さない */
  background-size: auto; /* 画像のサイズ調整（必要に応じて変更） */
	margin-inline: auto;
	max-width: 1920px;
	width: 100%;
}

.p-bnr .l-inner.l-bnr {
	margin-inline: auto;
	padding-block: 155px 121px;
	width: min(85%, 1056px);
}

.p-bnr .p-bnr__items {
	display: grid;
	gap: 0 32px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.p-bnr .p-bnr__item a {
	display: block;
}

.p-bnr .p-bnr__item a img {
	margin-bottom: 16px;
}

.p-bnr .p-bnr__item a p {
	font-size: 16px;
  font-size: clamp(0.875rem, 0.792rem + 0.17vw, 1rem);
	font-weight: 400;
	letter-spacing: 0.03em;
	line-height: 1.75;
  color: #594A4E;
}

.p-bnr .c-sec__en {
	font-size: 16px;
	text-align: center;
}

.p-bnr .c-sec__en {
	color: #3B4E71;
	font-weight: 700;
	letter-spacing: 0.03em;
	line-height: 1.75;
	margin-bottom: 8px;
}

.p-bnr .c-sec__ttl {
	font-size: 40px;
  font-size: clamp(2rem, 1.667rem + 0.69vw, 2.5rem);
	text-align: center;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.5;
	margin-bottom: 64px;
  position: relative;
  z-index: 10;
  color: #33272A;
}

/* bnr02
-------------------------------------*/
.p-bnr02 {
	background: url(../images/common/tel_bg.png) no-repeat top center/auto;
	margin-inline: auto;
	max-width: 1920px;
	width: 100%;
}

.p-bnr02 .l-inner.l-bnr02 {
	padding-block: 191px 100px;
	position: relative;
}

.p-bnr02 .p-bnr02__icon01 {
	left: 0;
	position: absolute;
	top: -110px;
}

.p-bnr02 .p-bnr02__icon02 {
	bottom: 55px;
	left: 159px;
	position: absolute;
}

.p-bnr02 .p-bnr02__icon03 {
	bottom: 20px;
	position: absolute;
	right: 0;
}

.p-bnr02 .p-bnr02__txt {
	font-size: 26px;
	font-weight: 500;
	letter-spacing: 0.03em;
	line-height: 1.75;
	margin-bottom: 1px;
	text-align: center;
}

.p-bnr02 .p-bnr02__tel {
	margin-bottom: 0;
	text-align: center;
}

.p-bnr02 .p-bnr02__txt02 {
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 0.03em;
	line-height: 1.75;
	text-align: center;
  position: relative;
  z-index: 10;
}




/* 下層共通タイトル
-------------------------------------*/
.l-header__wrap {
	background: url(../images/common/header_bg.png) no-repeat top center/auto;
	margin-block: clamp(7.5rem, 4.375rem + 6.51vw, 12.188rem) -56px;
	margin-inline: auto;
	max-width: 1920px;
	padding-block: 64px 90px;
	position: relative;
	width: 100%;
	z-index: 10;
}

.l-header__wrap p {
	color: #3B4E71;
	font-size: 16px;
	text-align: center;
}

.l-header__wrap p {
	font-weight: 700;
	letter-spacing: 0.03em;
	line-height: 1.75;
}

.l-header__wrap h1 {
	font-size: 40px;
	text-align: center;
}

.l-header__wrap h1 {
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.5;
}


/* recaptcha
-------------------------------------*/
.grecaptcha-badge {
  z-index: 30;
}

/* common
-------------------------------------*/
.seo_bread_list {
  background: #F9F2F1;
  padding-block: 80px 0px;
}

.seo_bread_list ul {
  width: min(95%,1056px);
  margin-inline: auto;
  margin-bottom: 24px;
  color: #594A4E;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.54px;
  font-weight: 400;
  position: relative;
  z-index: 11;

}

.seo_bread_list span {
  color: #594A4E;
}

.seo_bread_list li {
  margin-right: 20px;
  float: left;
}

.seo_bread_list li::after {
  content: " >";
}

.seo_bread_list li:last-child::after {
  content: "";
}

.fit img {
  object-fit: cover;
  font-family: "object-fit: cover;";
}
html {
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: none;
  overflow-x: hidden;
}

/* chrome画質悪化の対策*/
img {
  image-rendering: -webkit-optimize-contrast;
}

/* WEB FONTs 游ゴシックかすれ予防*/
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 100;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 200;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 300;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}
@font-face {
  font-family: "Helvetica Neue";
  src: local("Helvetica Neue Regular");
  font-weight: 100;
}
@font-face {
  font-family: "Helvetica Neue";
  src: local("Helvetica Neue Regular");
  font-weight: 200;
}
.f-min {
  font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E",
    "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}

.f-min-02 {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Sawarabi Mincho",
    "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.f-gothic {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue",
    "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro",
    "Hiragino Kaku Gothic Pro", Verdana, Meiryo, Osaka, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
}
.f-gothic-02 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.f-gothic-old {
  font-family: "Zen Old Mincho", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.f-gothic-zen {
  font-family: "Zen Kaku Gothic New", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.f-gothic-maru {
  font-family: "Zen Maru Gothic", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

body {
  -webkit-text-size-adjust: 100%;
}
img {
  vertical-align: bottom;
}
a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  text-decoration: underline;
}
.nobd a:hover {
  text-decoration: none !important;
}

/* clearfix */
.clearfix {
  zoom: 1;
}
.clearfix:after {
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
  line-height: 0;
  content: ".";
}

/* リンク透明 */
a img:hover {
  -ms-filter: "alpha( opacity=80 )";
  filter: alpha(opacity=80);
  opacity: 0.8;
}
/* リンク透明にしない */
.noop a img:hover {
  -ms-filter: "alpha( opacity=100 )";
  filter: alpha(opacity=100);
  opacity: 1;
}
/*---------------------------------------- 　　外部サービス ----------------------------------------*/
/* ggmap */
/* <div class="ggmap">iframeのコピーしたコード</div> */
.ggmap {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* <div class="youtube"><iframe  src="youtubeのURL?rel=0" frameborder="0" allowfullscreen></iframe></div> */
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
/*---------------------------------------- 　　webフォント（サーバー置き）　 ----------------------------------------*/
@font-face {
  font-family: "jp-sttl01";
  /* お好きな名前にしましょう */
  src: url("../font/.eot");
  /* IE9以上用 */
  src: url("../font/bokutachi.eot?#iefix") format("embedded-opentype"),
    url("../font/NotoSansCJKjp-Medium.woff") format("woff"),
    url("../font/NotoSansCJKjp-Medium.woff") format("woff");
  /* iOS, Android用 */
  /* 念の為指定しておきます */
  font-weight: normal;
  /* 念の為指定しておきます */
  font-style: normal;
  vertical-align: top;
  margin: 0px;
  padding: 0px;
}
.myWebFontClass {
  font-family: "jp-sttl01";
}
}

/* ========================================
@media screen and (min-width:768px) and ( max-width:1919px) {
======================================== */
@media screen and (min-width:768px) and ( max-width:1919px) {
/* header
-------------------------------------*/
.l-header {
	/* background: #F9F2F1; */
}

.l-header.js-active {
  height: 6.514vw;
  background: #FFFFFE;
}

.l-header .l-inner.l-header {
	padding-inline: 0 1.668vw;
}

.l-header.l-header.js-active .l-inner.l-header {
  background: #FFFFFE;
}

.l-header .l-header__contents {
	display: flex;
}

.l-header.js-active .l-header__contents {
  align-items: center;
  justify-content: center;
}

.l-header .l-header__contents-left {
	background: url(../images/common/h_logo_bg.svg) no-repeat left top/contain;
	margin-right: 0.73vw;
}

.l-header.js-active .l-header__contents-left {
  background: url(../images/common/logo_active.png) no-repeat center center / contain;
  width: 10.057vw;
  height: 6.514vw;
  margin-right: 2.606vw;
}

.l-header.js-active .l-header__contents-left a {
  padding-block: 0px;
  padding-inline: 0px 0; 
}

.l-header .l-header__contents-left a img {
  width: 7.139vw;
  height: auto;
}

.l-header.js-active .l-header__contents-left a img {
  display: none;
}

.l-header .l-header__contents-left a {
	display: block;
	padding-block: 1.668vw 4.013vw;
	padding-inline: 1.668vw 4.169vw;
	position: relative;
}

.l-header .l-header__contents-center {
	padding-block: 2.137vw 0;
}

.l-header.js-active .l-header__contents-center {
  padding-block: 0;
}

.l-header .l-header__contents-center .top {
	display: flex;
	gap: 0 0.625vw;
	margin-bottom: 1.98vw;
}

.l-header.js-active .l-header .l-header__contents-center .top {
  display: none;
}

.l-header .l-header__contents-center .top p {
	background: #ECC3C4;
	border-radius: 0.417vw;
	font-size: 0.834vw;
	font-weight: 400;
	height: -moz-fit-content;
	height: fit-content;
	letter-spacing: 0.03em;
	line-height: 1;
	padding-block: 0.417vw 0.417vw;
	padding-inline: 0.834vw 0.886vw;
}

.l-header .l-header__contents-center .top p span {
	font-weight: 700;
	font-size: 1.042vw;
}

.l-header .l-header__contents-center .link a {
	display: block;
}

.l-header .l-header__contents-center .bottom .lists {
	align-items: center;
	display: flex;
	gap: 0 1.251vw;
  flex-wrap: wrap;
}

.l-header .l-header__contents-center .bottom .lists li:last-child a {
	border: none;
}

.l-header .l-header__contents-center .bottom .lists li a {
	display: block;
	align-items: center;
	border-right: 1px solid #33272A;
	display: flex;
	font-weight: 700;
	gap: 0 0.417vw;
	letter-spacing: 0.03em;
	line-height: 1;
	padding-inline: 0 0.5vw;
}

.l-header .l-header__contents-center .bottom .lists li:last-child a {
  padding-inline: 0;
}

.l-header .l-header__contents-right {
	padding-block: 1.668vw 0;
	position: relative;
	left: 0.5vw;
}

.l-header.l-header.js-active .l-header__contents-right {
  padding-block: 0;
}

.l-header .l-header__contents-right .top {
	align-items: center;
	background: #FFFFFE;
	border-radius: 0.417vw;
	display: flex;
	gap: 0 0.99vw;
	margin-bottom: 1.251vw;
  padding-inline: 0.8vw;
  flex-wrap: wrap;
}

.l-header.js-active .l-header__contents-right .top {
  display: none;
}

.l-header .l-header__contents-right .top .tel {
	align-items: center;
	display: flex;
	gap: 0 0.469vw;
	padding-block: 0.261vw;
}

.l-header .l-header__contents-right .top .tel p {
	color: #E3899F;
	font-size: 1.251vw;
	font-weight: 700;
	letter-spacing: 0.025em;
	line-height: 1.6666666667;
}

.l-header .l-header__contents-right .top .time {
	align-items: center;
	color: #594A4E;
	display: flex;
	gap: 0 0.313vw;
}

.l-header .l-header__contents-right .top .time p span {
	background: #ECC3C4;
	border-radius: 0.208vw;
	padding: 0.104vw;
	padding-block: 0px 0px;
	padding-inline: 0.156vw 0.052vw;
	height: fit-content;
	display: inline-block;
	margin-right: 0.208vw;
}

/* .l-header .l-header__contents-right .top .time p.txt {
	font-size: 0.521vw;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.6;
	color: #E87C67;
} */

.l-header .l-header__contents-right .bottom .btn {
	align-items: center;
	display: flex;
	gap: 0 0.5vw;
}

.l-header .l-header__contents-right .bottom .btn li a {
	display: block;
}

.l-header .l-header__contents-left {
  width: 12.976vw;
  margin-right: 0.73vw;
}

.l-header.l-header.js-active .l-header__contents-left a {
  width: 12.976vw;
  height: 100%;
  display: block;
}



}

/* ========================================
@media screen and (min-width:768px) and ( max-width:1850px) {
======================================== */
@media screen and (min-width:768px) and ( max-width:1850px) {
.p-bnr02 .p-bnr02__icon01 {
	left: 0;
	position: absolute;
	top: -5.946vw;
}

.p-bnr02 .p-bnr02__icon01 img {
  width: 13.892vw;
  height: auto;
}

.p-bnr02 .p-bnr02__icon02 {
	bottom: 2.973vw;
	left: 8.595vw;
	position: absolute;
}

.p-bnr02 .p-bnr02__icon02 img {
  width: 3.459vw;
  height: auto;
}

.p-bnr02 .p-bnr02__icon03 {
	bottom: 1.081vw;
	position: absolute;
	right: 0;
}

.p-bnr02 .p-bnr02__icon03 img {
  width: 12.811vw;
  height: auto;
}

}

/* ========================================
@media screen and (min-width:768px) and ( max-width:1550px) {
======================================== */
@media screen and (min-width:768px) and ( max-width:1550px) {
.l-header .l-header__contents-right .bottom .btn {
	align-items: center;
	display: flex;
	gap: 0 1.032vw;
}

.l-header .l-header__contents-right .bottom .btn li a {
  position: relative;
}

.l-header .l-header__contents-right .bottom .btn li a::after {
  position: absolute;
  content: "";
  background: url(../images/common/btn_arrow.svg) no-repeat center center / contain;
  width: 0.619vw;
  height: 1.032vw;
  right: 2.194vw;
  top: 50%;
  transform: translateY(-50%);
}

.l-header .l-header__contents-right .bottom .btn li:nth-child(2) a::after {
  right: 1.032vw;
}

.l-header .l-header__contents-right .bottom .btn li:nth-child(1) a {
  border-radius: 0.258vw;
  border: 1px solid #33272A;
  background: var(--Linear, linear-gradient(90deg, #DDD6F3 0%, #FAACA8 100%, #FAACA8 100%));
  display: flex;
  align-items: center;
  gap: 0 0.516vw;
  padding: 0.774vw 1.548vw;
  width: 20.258vw;
}

.l-header .l-header__contents-right .bottom .btn li:nth-child(2) a {
  border-radius: 0.258vw;
  border: 1px solid #33272A;
  background: var(--Linear, linear-gradient(90deg, #96FBC4 0%, #F9F586 100%));
  display: flex;
  align-items: center;
  gap: 0 0.516vw;
  padding: 0.774vw 1.548vw;
  width: 20.645vw;
}

.l-header .l-header__contents-right .bottom .btn li a img {
  width: 2.065vw;
  height: auto;
  vertical-align: middle;
  position: relative;
  top: -2px;
}

.l-header .l-header__contents-right .bottom .btn li a p {
	font-size: 1.29vw;
  line-height: 1.6;
  letter-spacing: 0.032vw;
  font-weight: 700;
}
}

/* ========================================
@media screen and (min-width:768px) and ( max-width:1250px) {
======================================== */
@media screen and (min-width:768px) and ( max-width:1250px) {
.p-bnr .p-bnr__item a img {
  width: 100%;
  height: auto;        
}
}


/* ========================================
  @media screen and (max-width: 1200px) 
======================================== */
@media screen and (max-width: 1200px) {
  html {
    overflow: auto;
  }
  body {
    overflow: visible;
  }
}

/* ========================================
@media screen and (min-width:768px) and ( max-width:1150px) {
======================================== */
@media screen and (min-width:768px) and ( max-width:1150px) {
.l-footer .l-footer__contents-left .logo a img {
  width: 34.6vw;
  height: auto;        
}

.l-footer .l-footer__contents {
  gap: 0 1vw;
}

.l-footer .l-footer__contents-right {
	display: flex;
	position: relative;
	top: 0.696vw;
	height: fit-content;
	gap: 0px 1.5vw;
}

}

/* ========================================
  @media screen and (max-width: 767px)
======================================== */
@media screen and (max-width: 767px) {
html {
  font-size: 62.5%;
}
body {
  overflow: hidden;
  font-size: 3.6vw;
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  line-height: 1.6;
}
#index body {
  background: #FFFFFE;
}
.pc,
.pc2 {
  display: none !important;
}
/*pcのみ表示ブロック*/
.sp {
  display: block !important;
}
/*スマホのみ表示ブロック*/
.sp2 {
  display: inline-block !important;
}
/*スマホのみ表示ブロック*/
.no-br {
  display: none;
}
/*スマホでbrを解除したい場合に使用*/
.sp_display_block {
  display: block !important;
}
/*スマホでflexboxを解除したい場合等に使用*/
.pc-menu {
  display: none;
}
.side-fix {
  display: none;
}
.fix-list {
  display: none;
}
#pc-menu-open {
  display: none;
}
#g-nav {
  display: none;
}

/* header
-------------------------------------*/
.l-header .l-header__contents-center .top p {
	font-size: 3.865vw;
}

.l-header .l-header__contents-center .bottom .lists li a {
	font-size: 3.865vw;
}

.l-header .l-header__contents-right .top .tel p {
	font-size: 5.797vw;
}

.l-header .l-header__contents-right .top .time p {
	font-size: 3.382vw;
}

.l-header .l-header__contents-right .top .time p span {
	font-size: 2.899vw;
}

.l-header .l-header__contents-right .top .time p.txt {
	font-size: 2.415vw;
}

/* sp-header
-------------------------------------*/
.sp-header {
  
}

.sp-header .h-logo img {

}

.sp-header .h-menu {
  position: fixed;
  top: 3.865vw;
  right: 3.865vw;
  z-index: 97;
}

.sp-header .h-menu img {
  width: 23.671vw;
  height: auto;
}

/* sp-header
-------------------------------------*/
.sp-header {
	background: #FFFFFE;
	padding: 3.865vw;
}

.sp-header .h-wrap {
	align-items: center;
	display: flex;
	gap: 0 1.932vw;
	margin-bottom: 1.865vw;
}

.sp-header .h-wrap .h-logo a {
	display: block;
}

.sp-header .h-wrap .h-logo a img {
	height: auto;
	width: 21.256vw;
}

.sp-header .h-wrap .tel {
	align-items: center;
	display: flex;
	gap: 0 0.966vw;
}

.sp-header .h-wrap .tel img {
	height: auto;
	width: 4.899vw;
}

.sp-header .h-wrap .tel p {
	font-size: 3.382vw;
}

.sp-header .h-wrap .tel p {
	color: #E3899F;
	font-weight: 700;
	letter-spacing: 0.03em;
	line-height: 1.6428571429;
}

.sp-header .h-txt {
	align-items: center;
	display: flex;
	gap: 0 1.932vw;
}

.sp-header .h-txt p {
	background: #ECC3C4;
	border-radius: 0.483vw;
	font-size: 2.415vw;
	width: -moz-fit-content;
	width: fit-content;
	font-weight: 400;
	line-height: 1;
	padding: 1.5vw 1vw;
	font-size: 2.415vw;
}

.sp-header .h-txt p span {
	font-size: 2.899vw;
	font-weight: 700;
	line-height: 1;
}

/* sp-global-nav
-------------------------------------*/
nav#sp-global-nav .h-logo {
  background: #fff;
}

nav#sp-global-nav .h-logo img {
  width: 27.053vw;
  height: auto;
}

nav#sp-global-nav {
  z-index: 99;
  overflow: scroll;
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  background-color: #FFFFFE;
  box-sizing: border-box;
  color: inherit;
}

nav#sp-global-nav .open-close-01 {
  position: fixed;
  top: 3.865vw;
  right: 3.865vw;
  z-index: 98;
}

nav#sp-global-nav .open-close-01 img {
  width: 23.807vw;
  height: auto;
}

#sp-global-nav .open-color-Box {
	padding-block: 16.155vw 15.459vw;
	padding-inline: 3.865vw;
}

#sp-global-nav .h-logo {
	margin-bottom: 3.729vw;
	text-align: center;
}

#sp-global-nav .h-logo a {
	display: block;
	padding: 3.865vw;
}

#sp-global-nav .h-logo a img {
	height: auto;
	width: 39.237vw;
}

#sp-global-nav .h-txt {
	display: grid;
	gap: 1.932vw 0;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	margin-bottom: 8.729vw;
	margin-inline: auto;
	width: min(99%, 92.270531401vw);
}

#sp-global-nav .h-txt p {
	font-size: 3.865vw;
}

#sp-global-nav .h-txt p {
	background: #ECC3C4;
	border-radius: 1.932vw;
	font-weight: 400;
	letter-spacing: 0.03em;
	line-height: 1;
	padding: 2.932vw 0.932vw;
	text-align: center;
}

#sp-global-nav .h-txt p span {
	font-size: 4.831vw;
}

#sp-global-nav .h-txt p span {
	font-weight: 700;
	letter-spacing: 0.025em;
	line-height: 1;
}

#sp-global-nav .list {
	display: grid;
	gap: 2.2vw 0;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	margin-bottom: 7.729vw;
}

#sp-global-nav .list li a {
	display: block;
	font-size: 3.865vw;
}

#sp-global-nav .list li a {
	border-bottom: 1px dashed #33272A;
	font-weight: 700;
	letter-spacing: 0.03em;
	line-height: 1.75;
	padding-bottom: 1.3vw;
	position: relative;
}

#sp-global-nav .list li a::after {
	background: url(../images/common/nav_arrow.svg) no-repeat center center/contain;
	content: "";
	height: 5.797vw;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 5.797vw;
}

#sp-global-nav .nav_btn {
	display: grid;
	gap: 2.932vw 0;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	margin-bottom: 7.729vw;
}

#sp-global-nav .nav_btn a {
	display: block;
}

#sp-global-nav .nav_con {
	background: #F3F5F0;
	border-radius: 1.932vw;
	margin-bottom: 7.729vw;
	padding: 3.865vw;
}

#sp-global-nav .nav_con .tel {
	margin-bottom: 0.932vw;
	text-align: center;
}

#sp-global-nav .nav_con .tel a {
  display: block;
  /* width: 192px; */
  /* margin-inline: auto; */
}

#sp-global-nav .nav_con .tel img {
	height: auto;
	width: 50.198vw;
}

#sp-global-nav .nav_con .txt {
	font-size: 2.899vw;
	text-align: center;
	font-weight: 400;
	letter-spacing: 0.0333333333em;
	line-height: 1.6666666667;
	margin-bottom: 0.415vw;
}

#sp-global-nav .nav_con .time div {
	align-items: center;
	display: flex;
	gap: 0 4.966vw;
	justify-content: center;
	margin-bottom: 2vw;
  color: #594A4E;
}

#sp-global-nav .nav_con .time div p {
	font-size: 3.865vw;
}

#sp-global-nav .nav_con .time div p {
	font-weight: 700;
	letter-spacing: 0.03em;
	line-height: 1.75;
	/* margin-bottom: 0.966vw; */
}

#sp-global-nav .nav_con .time div p span {
	font-size: 3.382vw;
}

#sp-global-nav .nav_con .time div p span {
	background: #ECC3C4;
	border-radius: 0.966vw;
	font-weight: 700;
	letter-spacing: 0.03em;
	line-height: 1.6428571429;
	padding: 1vw 1.932vw;
	margin-inline: 0 0.5vw;
}

#sp-global-nav .nav_con .time_txt {
	color: #3B4E71;
	font-size: 2.415vw;
	text-align: center;
}

#sp-global-nav .nav_con .time_txt {
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.6;
}

#sp-global-nav .h-txt02 {
	font-size: 2.899vw;
}

#sp-global-nav .h-txt02 {
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.6666666667;
	margin-bottom: 1.932vw;
	margin-inline: auto;
	padding-inline: 3.932vw;
	position: relative;
	text-align: center;
	width: -moz-fit-content;
	width: fit-content;
  color:#594A4E;
}

#sp-global-nav .h-txt02:before {
	background: url(../images/common/line.svg) no-repeat center center/contain;
	content: "";
	height: 6.039vw;
	left: -1.932vw;
	position: absolute;
	top: 0;
	width: 3.382vw;
}

#sp-global-nav .h-txt02::after {
	background: url(../images/common/line.svg) no-repeat center center/contain;
	content: "";
	height: 6.039vw;
	position: absolute;
	right: -1.932vw;
	top: 0;
	transform: scale(-1, 1);
	width: 3.382vw;
}

#sp-global-nav .h-link {
	text-align: center;
}

#sp-global-nav .h-link a {
	padding: 3.865vw;
}

#sp-global-nav .h-link a img {
	height: auto;
	width: 6.415vw;
}


  /* side-fix
-------------------------------------*/
.side-fix {
  display: none !important;
}
.sp-fix-list {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 96;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: flex-end;
}
.sp-fix-list .tel {
}
.sp-fix-list .icon {
}

/* end-contact
-------------------------------------*/
.p-bnr {
	background-color: #FFFFFE; /* 背景色を指定 */
	background-image: url(../images/common/bnr_bg_sp.png); /* 画像を指定 */
	background-position: top -100px center; /* 画像の位置を指定 */
	background-repeat: no-repeat; /* 画像を繰り返さない */
	background-size: cover; /* 画像のサイズ調整（必要に応じて変更） */
	padding-block: 0 15.459vw;
}

.p-bnr .l-inner.l-bnr {
	margin-inline: auto;
	padding-block: 23.324vw 0vw;
	width: min(95%, 92.5vw);
}

.p-bnr .c-sec__en {
	color: #3B4E71;
	font-size: 2.899vw;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.6666666667;
	margin-bottom: 0.932vw;
	text-align: center;
}

.p-bnr .c-sec__ttl {
	font-size: 5.797vw;
	font-weight: 700;
	letter-spacing: 0.025em;
	line-height: 1.6666666667;
	margin-bottom: 7vw;
	text-align: center;
  color: #33272A;
  position: static;
  padding-inline: 0;
}

.p-bnr .c-sec__ttl::before, .p-bnr .c-sec__ttl::after {
  content: none;
}

.p-bnr .p-bnr__items {
	display: grid;
	gap: 3.865vw 0;
	grid-template-columns: repeat(1, minmax(0, 1fr));
}

.p-bnr .p-bnr__item a {
	display: block;
}

.p-bnr .p-bnr__item a img {
	margin-bottom: 3.865vw;
}

.p-bnr .p-bnr__item a p {
	font-size: 3.865vw;
	font-weight: 400;
	letter-spacing: 0.03em;
	line-height: 1.75;
  color: #594A4E;
}

.p-bnr .c-sec__en {
	font-size: 3.865vw;
}

.p-bnr .c-sec__en {
	color: #3B4E71;
	font-size: 2.899vw;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.6666666667;
	margin-bottom: 0.932vw;
	text-align: center;
}

/* bnr02
-------------------------------------*/
.p-bnr02 {
	background: url(../images/common/tel_bg_sp.png) no-repeat top -44px center/cover;
	margin-inline: auto;
	width: 100%;
}

.p-bnr02 .l-inner.l-bnr02 {
	padding-block: 94px 42px;
	position: relative;
}

.p-bnr02 .p-bnr02__txt {
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 0.03em;
	line-height: 1.75;
	margin-bottom: 14px;
	text-align: center;
}

.p-bnr02 .p-bnr02__tel {
	margin-bottom: 2vw;
	text-align: center;
}

.p-bnr02 .p-bnr02__tel img {
	height: auto;
	width: 311px;
}

.p-bnr02 .p-bnr02__txt02 {
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0.03em;
	line-height: 1.75;
	text-align: center;
}


/* sp-page-top
-------------------------------------*/
.sp-page-top a {
  text-align: center;
  display: block;
  padding: 5vw 3vw;
}
.sp-page-top a img {
  width: 20vw;
  height: auto;
}

/* footer
-------------------------------------*/
.l-footer {
  background: #FFFFFE;
}

.l-footer .l-footer__box-inner {
	padding-block: 5.797vw;
	padding-inline: 3.865vw;
	width: 100%;
}

.l-footer .l-footer__contents {
	display: block;
}

.l-footer .l-footer__contents-left {
	display: grid;
	gap: 1.932vw 0;
	grid-template-columns: repeat(1, minmax(0, 1fr));
}

.l-footer .l-footer__contents-left .logo {
	text-align: center;
}

.l-footer .l-footer__contents-left .logo a {
	display: block;
}

.l-footer .l-footer__contents-left .logo a img {
	height: auto;
	margin-bottom: 1.932vw;
	width: 58.454vw;
}

.l-footer .l-footer__contents-left .access {
	font-size: 3.865vw;
}

.l-footer .l-footer__contents-left .access {
	font-size: 3.865vw;
	font-weight: 400;
	letter-spacing: 0.03em;
	line-height: 1.25;
	text-align: center;
	margin-bottom: 2vw;
}

.l-footer .l-footer__contents-left .tel {
	text-align: center;
	display: block;
	width: 49.034vw;
	margin-inline: auto;
	margin-bottom: 1.8vw;
}

.l-footer .l-footer__contents-left .tel span {
	text-align: center;
	font-size: 2.899vw;
}

.l-footer .l-footer__contents-left .tel img {
	height: auto;
	width: 48.792vw;
  margin-bottom: 2vw;
}

.l-footer .l-footer__contents-right {
	display: none;
}

.l-footer .l-footer__contents-right .list li a {
	font-size: 3.865vw;
}

.p-con__bottom {
	background: #ECC3C4;
	padding-block: 0 12.459vw;
}

.p-con__bottom .p-con__bottom-inner {
	display: grid;
	gap: 3.865vw 0;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	margin-inline: auto;
	padding-block: 3.865vw;
	width: min(95%, 77.7777777778vw);
}

.p-con__bottom .link {
	align-items: center;
	display: flex;
	gap: 0 7.729vw;
	justify-content: center;
}

.p-con__bottom .link a {
	display: block;
}

.p-con__bottom .link a img.x_icon {
	height: auto;
	max-width: 11.594vw;
}

.p-con__bottom .copyright {
	display: block;
	font-size: 2.899vw;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.6666666667;
	text-align: center;
  color: #000;
}


/* copyright
-------------------------------------*/
.copyright {

}

/* 下層共通タイトル
-------------------------------------*/
.l-header__wrap {
	background: url(../images/common/header_bg_sp.png) no-repeat top center/contain;
	margin-block: 0px -5.135vw;
	margin-inline: auto;
	padding-block: 2.899vw 3.623vw;
	position: relative;
	width: 100%;
	z-index: 10;
}

.l-header__wrap p {
	font-size: 3.865vw;
}

.l-header__wrap p {
	color: #3B4E71;
	font-size: 3.865vw;
	font-weight: 700;
	letter-spacing: 0.03em;
	line-height: 1.75;
	text-align: center;
	/* margin-bottom: 0vw; */
}

.l-header__wrap h1 {
	font-size: 9.662vw;
}

.l-header__wrap h1 {
	font-size: 5.797vw;
	font-weight: 700;
	letter-spacing: 0.0333333333em;
	line-height: 1.5;
	text-align: center;
}

/* recaptcha
-------------------------------------*/
.grecaptcha-badge {
  bottom: 22vw !important;
  z-index: 30;
}

  /* common
-------------------------------------*/
.seo_bread_list {
  width: 100%;
  padding: 7vw 2vw 3.5vw;
  margin: 0 auto;
  font-size: 3.2vw;
  color: #594A4E;
  line-height: 1.6;
  background: #F9F2F1;
}
/*.seo_bread_list{display: none;}*/
.seo_bread_list a {
  color: #594A4E;
}
.seo_bread_list li {
  margin-right: 1.5vw;
  float: left;
}
.seo_bread_list li::after {
  content: ">";
}
.seo_bread_list li:last-child::after {
  content: none;
}

.fit img {
  object-fit: cover;
}
.wysiwyg img {
  width: auto !important;
  height: auto !important;
}
html {
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: none;
  overflow-x: hidden;
}

/* chrome画質悪化の対策*/
img {
  image-rendering: -webkit-optimize-contrast;
}

/* 2カラムサイト---------------- */
#tow-cl #side {
  display: none;
}

/* WEB FONTs 游ゴシックかすれ予防*/
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 100;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 200;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 300;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}
@font-face {
  font-family: "Helvetica Neue";
  src: local("Helvetica Neue Regular");
  font-weight: 100;
}
@font-face {
  font-family: "Helvetica Neue";
  src: local("Helvetica Neue Regular");
  font-weight: 200;
}

.f-min {
  font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E",
    "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}

.f-min-02 {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Sawarabi Mincho",
    "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.f-gothic {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue",
    "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro",
    "Hiragino Kaku Gothic Pro", Verdana, Meiryo, Osaka, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
}
.f-gothic-02 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.f-gothic-old {
  font-family: "Zen Old Mincho", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.f-gothic-zen {
  font-family: "Zen Kaku Gothic New", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.f-gothic-maru {
  font-family: "Zen Maru Gothic", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

*:focus {
  outline: none !important;
}
a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

body {
  -webkit-text-size-adjust: 100%;
}
#index body {
  background: #FFFFFE;
}
img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  text-decoration: underline;
}
.nobd a:hover {
  text-decoration: none !important;
}
.clearfix {
  zoom: 1;
}
.clearfix:after {
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
  line-height: 0;
  content: ".";
}

/* img-block */
/* アンカーリンク調整 */
.hideAnchor {
  display: block;
  height: 0;
  overflow: hidden;
  text-indent: -9999px;
  margin-top: -2vw;
  padding-bottom: 2vw;
}
/* スクロール縦 */
.scroll-y {
  box-sizing: border-box;
  overflow-y: scroll;
  transform: translateZ(0);
}
/* リンク透明 */
a img:hover {
  -ms-filter: "alpha( opacity=80 )";
  filter: alpha(opacity=80);
  opacity: 0.8;
}
/* リンク透明にしない */
.noop a img:hover {
  -ms-filter: "alpha( opacity=100 )";
  filter: alpha(opacity=100);
  opacity: 1;
}
/*---------------------------------------- 　　外部サービス ----------------------------------------*/
/* ggmap */
/* <div class="ggmap">iframeのコピーしたコード</div> */
.sp-ggmap {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 5vw;
  height: 0;
  overflow: hidden;
}
.sp-ggmap iframe,
.sp-ggmap object,
.sp-ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* <div class="youtube"><iframe  src="youtubeのURL?rel=0" frameborder="0" allowfullscreen></iframe></div> */
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
/*---------------------------------------- 　　webフォント（サーバー置き）　 ----------------------------------------*/
@font-face {
  font-family: "jp-sttl01";
  /* お好きな名前にしましょう */
  src: url("../font/.eot");
  /* IE9以上用 */
  src: url("../font/bokutachi.eot?#iefix") format("embedded-opentype"),
    url("../font/NotoSansCJKjp-Medium.woff") format("woff"),
    url("../font/NotoSansCJKjp-Medium.woff") format("woff");
  /* iOS, Android用 */
  /* 念の為指定しておきます */
  font-weight: normal;
  /* 念の為指定しておきます */
  font-style: normal;
  vertical-align: top;
  margin: 0px;
  padding: 0px;
}
.myWebFontClass {
  font-family: "jp-sttl01";
}
}

/* ========================================
   @media screen and (max-height: 450px)
======================================== */
@media screen and (max-height: 450px) {
  /* 高さ450px以下の場合 andoroidのフォーム対策 ストーカーバナー用　*/
  .sp-fix-list {
    display: none;
  }
}
