@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');

/* ==============================
   RESET
   based on destyle.css / normalize.css (簡易版)
   ============================== */

html {
	box-sizing: border-box;
	font-size: 62.5%; /* 1rem = 10px */
}
*, *::before, *::after {
	box-sizing: inherit;
	margin: 0;
	padding: 0;
}
body {
	font-family: "Zen Kaku Gothic New", sans-serif;
	line-height: 1.6;
	font-size: 1.6rem;
	color: #555555;
	background-color: #fff;
	-webkit-text-size-adjust: 100%;
}
img, video {
	max-width: 100%;
	height: auto;
	display: block;
}
ul, ol {
	padding: 0;
	list-style: none;
}
button, input, select, textarea {
	font-family: inherit;
	font-size: 1em;
	color: inherit;
	border: none;
	background: transparent;
	outline: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
strong {
	font-weight: 600;
}


/* ==============================
   BASE
   ============================== */

html {
	scroll-behavior: smooth;
	scroll-padding-top: 50px;
}
body {
	font-family: "Outfit", "Zen Kaku Gothic New", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-optical-sizing: auto;
	color: #4C4948;
	background-color: #fff;
	line-height: 1.75;
}
main {
	display: block;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: 600;
	line-height: 1.4;
}
img,svg {
	vertical-align: middle;
}
a {
	display: inline-block;
	color: inherit;
	text-decoration: none;
	transition: opacity 0.3s ease,transform 0.3s ease;
	cursor: pointer;
}
a:hover {
	color: inherit;
/*	opacity: 0.8;*/
	transform: scale(1.05);
}
p {
	text-align: justify;
}
section {
	overflow: hidden;
}
.inner {
	margin: 0 auto;
	width: 100%;
	max-width: 440px;
	padding: 0 20px;
}
.inner--normal {
	margin: 0 auto;
	width: 100%;
	max-width: 440px;
	padding: 0 20px;
}
.inner--full {
	margin: 0 auto;
	width: 100%;
	max-width: 440px;
	padding: 0 20px;
}
@media screen and (min-width:768px){
	.inner {
		max-width: 480px;
		padding: 0 40px;
	}
	.inner--normal {
		max-width: 480px;
		padding: 0 40px;
	}
	.inner--full {
		max-width: 480px;
		padding: 0 40px;
	}
}
@media screen and (min-width:1024px){
	.inner {
		max-width: 1120px;
		padding: 0 60px;
	}
	.inner--normal {
		max-width: 800px;
	}
	.inner--full {
		max-width: none;
		padding: 0 60px;
	}
}
@media screen and (min-width:1440px){
	.inner--normal {
		max-width: 1100px;
		padding: 0 50px;
	}
	.inner--full {
		padding: 0 90px;
	}
}

.outfit {
  font-family: "Outfit", sans-serif;
}

/* ==============================
   HEADER
   ============================== */

body {
	margin-top: 50px;
}
.header {
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	width: 100%;
	height: 50px;
	padding: 0 10px;
	background-color: #fff;
/*	box-shadow: 0 2px 6px -2px rgba(0,0,0,0.1);*/
	z-index: 1000;
}
.header__logo {
	position: relative;
	width: 110px;
	line-height: 1;
	z-index: 101;
}
.header__logo-link {
	display: block;
}
.header__nav {
	display: flex;
	flex-direction: column;
/*	justify-content: space-between;*/
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	padding: 60px 20px 30px;
	background: #fff;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .4s ease, visibility .4s ease;
	will-change: opacity;
	overflow-y: scroll;
	scrollbar-width: none;
}
.header__nav::-webkit-scrollbar {
	display: none; /* Chrome, Safari, Edge */
}
.header__nav.is-show {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
.header__nav.is-show::after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 50px;
	background: #fff;
	z-index: 1;
}
.header__menu {
	width: 100%;
	max-width: 400px;
	margin: 0 auto;
}
.header__menu-item {
}
.header__menu-link,
.header__sub-menu-link {
	position: relative;
	display: block;
	width: 100%;
	padding: 24px 42px 24px 0;
	font-size: 1.5rem;
	font-weight: 500;
	text-align: left;
}
.header__sub-menu-link {
	padding: 20px 42px 20px 0;
}
button.header__menu-link {
	background: none;
	appearance: none;
	cursor: pointer;
}
.header__menu-link::after,
.header__sub-menu-link::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 12px;
	height: 12px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.header__menu-link::after,
.header__sub-menu-link::after {
	background-image: url("../img/common/arrow-orange.svg");
}
/*
.header__menu-item--has-sub .header__menu-link::after {
	background-image: url("../img/common/icon-plus.svg");
}
*/
.header__menu-item--has-sub.is-open .header__menu-link::after {
	background-image: url("../img/common/icon-minus.svg");
}
.header__menu-item--has-sub {
	position: relative;
  display: none;
}
.header__sub-menu {
	display: none;
	padding: 15px;
}

/*追記ここから*/
.header__right {
  display: flex;
}
.header__menu-button {
  display: flex;
  gap: 0 5px;
  position: relative;
}
.header__menu-button-link {
  font-size: 11px;
  font-weight: bold;
  color: #FFFFFF;
  background: #FF7E28;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  width: 90px;
  max-height: 40px;
}
.header__menu-button-link:hover {
  color: #FFFFFF;
}
.header__menu-button-link--subcolor {
  background: #53C1CB;
}
.header-tel {
  color: #53C1CB;
  background: #FFFFFF;
  border: solid 2px #53C1CB;
  border-radius: 3em;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 400px;
  margin: 40px auto 0;
}
.header-tel--pc {
  display: none;
  margin: 0;
}
.header-tel:hover,
.header-tel--pc:hover {
  color: #53C1CB;
}
@media screen and (min-width:1140px){
	body {
		margin-top: 49px;
	}
	.header {
		height: auto;
		padding: 0 20px;
	}
	.header__logo {
		width: 135px;
	}
	.header__nav {
		flex-direction: row;
		justify-content: flex-end;
		align-items: center;
		position: relative;
		width: auto;
		height: auto;
		padding: 0;
		background: #fff;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		overflow: visible;
	}
	.header__nav.is-show::after {
		content: none;
	}
	.header__menu {
		display: flex;
		justify-content: flex-end;
		align-items: center;
		gap: 20px;
		max-width: none;
		margin: 0;
	}
	.header__menu-link,
	.header__sub-menu-link {
		display: inline-block;
		width: auto;
		padding: 14px 0 12px;
		font-size: 1.2rem;
		border-bottom: none;
	}
	.header__menu-link {
		border-top: 1px solid transparent;
		border-bottom: 1px solid transparent;
	}
  .header__menu-item--has-sub {
    display: block;
  }
	.header__menu-item--has-sub.is-open .header__menu-link {
		border-bottom: 1px solid #EF8125;
	}
	.header__menu-link::after,
	.header__sub-menu-link::after {
		content: none;
		right: 0;
		width: 9px;
		height: 9px;
	}
	.header__menu-item--has-sub .header__menu-link::after,
	.header__menu-item--has-sub.is-open .header__menu-link::after {
		content: '';
	}
	.header__menu-item--has-sub .header__menu-link::after {
		display: none;
	}
	.header__menu-item--has-sub.is-open .header__menu-link::after {
		background-image: url("../img/common/icon-minus.svg");
	}
	.header__sub-menu {
		padding: 15px;
		position: absolute;
		top: 102%;
		left: 0;
		z-index: 102;
		background: #fff;
		box-shadow: 0 2px 6px -2px rgba(0,0,0,0.1);
	}
	.header__sub-menu-item {
		margin-bottom: 10px;
	}
	.header__sub-menu-item:last-child {
		margin-bottom: 0;
	}
	.header__sub-menu-link {
		padding: 0;
		white-space: nowrap;
	}

.header__left {
  display: flex;
  align-items: center;
  gap: 0 15px;
}
.header__menu-item--sp {
  display: none;
}
.header__menu-button {
  gap: 0 7px;
}
.header__menu-button-link {
  font-size: 13px;
  width: 106px;
}
.header-tel {
  display: none;
}
.header-tel--pc {
  display: flex;
  width: auto;
  padding: 0 15px;
}
}

@media screen and (min-width:1230px){
	body {
		margin-top: 52px;
	}
	.header__logo {
		width: 135px;
	}
	.header__menu {
		gap: 30px;
	}
	.header__menu-link,
	.header__sub-menu-link {
		font-size: 1.3rem;
	}
}

/* --- ハンバーガー --- */
.hamburger {
	position: relative;
	width: 40px;
	height: 40px;
	cursor: pointer;
	z-index: 101;
	user-select: none;
	caret-color: transparent;
}
.hamburger__line {
	display: block;
	position: absolute;
	left: 14px;
	width: 18px;
	height: 2px;
	background: #FF7E28;
  border-radius: 1px;
	transition: all 0.4s ease;
}
.hamburger__line:nth-child(1) { top: 12px; }
.hamburger__line:nth-child(2) { top: 19px; }
.hamburger__line:nth-child(3) { bottom: 12px; }

/* --- 開いた状態 --- */
.hamburger.is-open {
}
.hamburger.is-open .hamburger__line {
	width: 18px;
	height: 2px;
}
.hamburger.is-open .hamburger__line:nth-child(1) {
	transform: translate(0px,7px) rotate(35deg);
}
.hamburger.is-open .hamburger__line:nth-child(2) {
	display: none;
}
.hamburger.is-open .hamburger__line:nth-child(3) {
	transform: translate(0px,-7px) rotate(-35deg);
}

/* SP */
@media screen and (max-width: 1139.98px) {
  .header__nav {
    transition: none; /* ←ここが重要（ブレイクポイント切替で消えない） */
  }

  .header__nav.is-show {
    transition: opacity .4s ease, visibility .4s ease; /* 開く時だけアニメ */
  }
}

/* ==============================
   PC表示
   ============================== */
@media (min-width: 1140px) {
	.hamburger {
		display: none;
	}
  .header__nav.is-open,
  .header__nav {
    transition: none !important;
  }
}


/* ==============================
   FOOTER
   ============================== */

.footer {
	position: relative;
	background-color: #F7F7F7;
  padding: 30px 0 0;
}
.footer__inner {
  padding: 0 20px 30px;
}
.footer__nav {
	padding: 0;
  border-bottom: solid 1px rgba(85,85,85,0.20);
}
.footer__menu {
	margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer__menu-item {
  width: calc((100% - 10px) / 2);
}
.footer__menu-link,
.footer__sub-menu-link {
  font-size: 1.4rem;
}

.footer__menu-item--has-sub {
	position: relative;
}
.footer__sub-menu {
	display: none;
	padding: 15px;
}
.footer__sub-menu-item {
}

/* ---------- Footer Logo ---------- */

.footer__logo {
	margin-bottom: 30px;
  text-align: center;
}

.footer__logo-link {
  width: 100%;
  max-width: 200px;
}

.footer__logo-img {
	width: 100%;
}

/* ---------- Utility Links ---------- */
.footer__utility {
  margin-top: 30px;
  padding-bottom: 100px;
  position: relative;
}
.footer__cp-logo {
  margin-bottom: 20px;
}
.footer__utility .footer__logo-link {
  max-width: 330px;
}
.utility-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 20px;
}
.utility-link__item {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .03em;
  color: #A3A3A3;
}
.footer__pmark {
  width: 50px;
  position: absolute;
  right: 0;
  bottom: 0;
}

/* ---------- Copyright ---------- */

.footer__copyright {
  width: 100%;
	font-size: 1.1rem;
  background: #FF7E28;
  color: #FFFFFF;
  text-align: center;
  padding-bottom: 40px;
}

.footer__menu-pc {
	display: none;
}

@media screen and (min-width:1024px){
	.footer {
		padding: 50px 0 0;
	}
	.footer__inner {
		position: relative;
		padding-bottom: 80px;
    max-width: 1142px;
    margin: 0 auto;
	}
  .footer__logo {
    width: 200px;
    margin-bottom: 16px;
  }
	.footer__nav {
	}
	.footer__menu {
		margin-bottom: 30px;
    flex-direction: row;
    gap: 10px 30px;
	}
	.footer__menu-item {
    width: auto;
	}
	.footer__menu-item--has-sub {
		display: none;
	}
	.footer__menu-link,
	.footer__sub-menu-link {
		position: relative;
		display: inline-block;
		width: auto;
		padding: 0;
		font-size: 1.6rem;
		font-weight: 500;
		text-align: left;
		border-bottom: none;
	}
	.footer__sub-menu-link::after {
		content: none;
	}
	.footer__utility {
		margin-bottom: 0;
    display: flex;
    align-items: baseline;
    gap: 0 60px;
    padding-bottom: 0;
	}
	.footer__utility .footer__logo-link {
		vertical-align: bottom;
	}
  .footer__cp-logo {
    margin: 0;
  }
	.footer__copyright {
		position: absolute;
		bottom: 0;
    padding-bottom: 0;
	}
	.footer__menu-pc {
		display: block;
	}
	.footer__menu-heading {
		display: inline-block;
		margin-bottom: 6px;
		font-size: 1.2rem;
		font-weight: 700;
		text-align: left;
	}
  
}
@media screen and (min-width:1440px){
	.footer__inner {
		gap: 80px;
	}
	.footer__nav {
		gap: 60px;
	}
	.footer__left-pc {
		max-width: 260px;
	}
	.footer__copyright {
	}
}


.breadcrumb {
	margin: 0;
	padding: 0 20px;
}

.breadcrumb__inner {
  background: #F7F7F7;
  border-radius: 13px;
}

.breadcrumb__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 2px 12px;
	margin: 0;
	padding: 6px 0;
}

.breadcrumb__item {
	position: relative;
	line-height: 1.5;
}
.breadcrumb__item:not(:first-child) {
	padding-left: 18px;
}
.breadcrumb__item:not(:first-child)::after {
	content: "/";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(calc(-50% + 1px));
  color: #BEBEBE;
  font-weight: 100;
}

.breadcrumb__link {
	color: #EF8125;
	font-size: 1.2rem;
}

.breadcrumb__link.is-current {
	pointer-events: none;
	color: #9F9D9D;
}


.page-heading {
	padding: 12px 20px;
}
.page-heading__bg {
  max-width: 440px;
  margin: 0 auto;
  aspect-ratio: 335 / 197;
  color: #FFFFFF;
}
.page-heading__inner {
	display: flex;
	flex-direction: column;
  padding: 40px 20px 10px
}
.page-heading__title-category {
  font-family: "Outfit", sans-serif;
  font-size: 3.6rem;
  font-weight: bold;
  letter-spacing: .01em;
  line-height: 1.25;
}
.page-heading__title-main {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0;
}
@media screen and (min-width:768px){
  .page-heading__bg {
    max-width: 480px;
  }
}
@media screen and (min-width:1024px){
	.page-heading {
		padding: 12px 20px;
	}
  .page-heading__bg {
    aspect-ratio: 1326 / 248;
    max-width: 100%;
  }
	.page-heading__inner {
    height: 100%;
    margin: 0 auto;
    padding: 0 60px;
    flex-direction: row;
    align-items: center;
    gap: 5px 25px;
	}
  .page-heading__title-main {
    transform: translate(0px, 7px);
  }
}

.btn_area {
  padding: 20px 0;
}
.btn_area .btn_set {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px 0;
}
.btn_set_item {
  width: auto;
  height: auto;
}
@media screen and (min-width:1024px) {
  .btn_area {
    padding: 40px 0;
  }
  .btn_area .btn_set {
    flex-direction: row;
    gap: 0 3%;
  }
  .btn_set_item {
    width: 31%
  }
}

.footer_contact_area {
  background: url("../img/common/footer_contact_area_sp.jpg") no-repeat center/cover;
  padding: 40px 0 30px;
}
.footer_contact_area .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}
.footer_contact_area p {
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: .04em;
  line-height: 1.8;
  color: #fff;
  text-align: center;
}
.btn_row {
  gap: 14px;
}
@media screen and (min-width:1024px) {
.footer_contact_area {
  background: url("../img/common/footer_contact_area_pc.jpg") no-repeat center/cover;
  padding: 0;
  height: 400px;
  display: flex;
}
  .footer_contact_area .inner {
    gap: 40px;
  }
  .footer_contact_area p {
    font-size: 3.2rem;
  }
  .btn_row {
    justify-content: center;
    gap: 28px;
  }
}










