@charset "UTF-8";
/* CSS Document */

:root {
	--themecolor: #463730;
	--textcolor: #463730;
	--subcolor: #fff3b8;
	--subcolor02: #c3d825;
	--subcolor03: #c5d05c;
	--linecolor: #06c755;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	overflow-x: hidden;
}
body {
	overscroll-behavior: auto;
	max-width: 100%;
	margin: 0 auto;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 400;
	text-rendering: optimizeLegibility;
	position: relative;
}
p,li,dt,dd {
	color: var(--themecolor);
	font-size: clamp(16px, 1.736vw, 20px);
	line-height: 2;
	text-align: justify;
}
img {
	width: 100%;
	height: auto;
}
a:hover {
	opacity: 0.7;
	transition: 1s;
}
main {
	width: 100%;
	background-color: var(--subcolor);
	overflow: hidden;
}
.sp {
	display: none;
}

#header {
	width: 100%;
	height: 88px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 2;
}
#header .header_logo {
	width: 10%;
	max-width: 120px;
	padding: 16px;
	background-color: #fff;
	display: flex;
	justify-content: center;
	align-content: center;
	border-radius: 0 0 20px 0;
}
#header input[type="checkbox"] {
	opacity: 0;
	visibility: hidden;
	position: absolute;
}
.hamburger {
	width: 80px;
	height: 80px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	z-index: 999;
	background-color: #fff;
	border-radius: 0 0 0 20px;
}
.hamburger span,
.hamburger span::before,
.hamburger span::after {
	position: absolute;
	display: block;
	content: "";
	width: 28px;
	height: 4px;
	border-radius: 4px;
	margin: 0 auto;
	background-color: var(--themecolor);
	transition: all 0.5s;
}
.hamburger span::before {
	top: -10px;
}
.hamburger span::after {
	bottom: -10px;
}

#header input[type="checkbox"]:checked + .hamburger span {
	background-color: transparent;
}
#header input[type="checkbox"]:checked + .hamburger span::before {
	top: 0;
	transform: rotate(45deg);
	background-color: var(--themecolor);
}
#header input[type="checkbox"]:checked + .hamburger span::after {
	bottom: 0;
	transform: rotate(-45deg);
	background-color: var(--themecolor);
}
input[type="checkbox"]:checked ~ .header_inner {
	right: 0;
}
.header_inner {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	right: -120%;
	background-color: var(--themecolor);
	color: #fff;
	padding: 50px 0;
	transition: all 0.5s;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	overflow-y: scroll;
	scrollbar-width: none;
}
.header_inner .header_nav {
	width: 100%;
}
.header_inner .header_nav ul {
	width: 90%;
	max-width: 640px;
	margin: 0 auto;
	padding: 40px 0;
	display: flex;
	flex-wrap: wrap;
}
.header_inner .header_nav ul li {
	width: 100%;
	padding: 20px 0;
	border-top: 1px solid #fff;
	text-align: center;
}
.header_inner .header_nav ul li:last-child {
	border-bottom: 1px solid #fff;
}
.header_inner .header_nav ul li a{
	display: inline-block;
	font-size: 20px;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	position: relative;
	color: #fff;
}
.header_inner .corporate_items .footer_logo {
	width: 40%;
	margin: 0 auto 20px;
}
.header_inner .corporate_items .corporate_item .corporate_name {
	text-align: center;
}
.header_inner .corporate_items .corporate_item .corporate_address {
	text-align: center;
	color: #fff;
}


#fix_bnr {
	position: fixed;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	text-align: center;
	z-index: 999;
}
#fix_bnr a {
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	color: var(--linecolor);
	font-size: clamp(16px, 1.736vw, 20px);
	font-weight: bold;
	display: inline-block;
	position: relative;
	padding: 72px 24px 24px 24px;
	background-color: #fff;
	border-radius: 20px 0 0 20px;
}
#fix_bnr a:before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 40px;
	background: url("../images/common/line_icon.svg")  center center / cover no-repeat;
}
#fix_bnr a:hover {
	opacity: 0.8;
	transition: 1s;
}

#mainVisual {
	width: 96%;
	max-width: 1728px;
	margin: 0 auto;
	height: 80vh;
	background: #ddd;
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
	padding-bottom: 80px;
	position: relative;
	overflow: hidden;
	z-index: 0;
	border-radius: 0 0 40px 40px;
}
.mainVisual_image01, .mainVisual_image02, .mainVisual_image03, .mainVisual_image04, .mainVisual_image05 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;	
}
.mainVisual_image01{
   background-image: url('../images/index/mainVisual_image01.jpg');
   animation: slide-animation-01 40s infinite;
}
.mainVisual_image02{
   background-image: url('../images/index/mainVisual_image02.jpg');
   animation: slide-animation-02 40s infinite;
}
.mainVisual_image03{
   background-image: url('../images/index/mainVisual_image03.jpg');
   animation: slide-animation-03 40s infinite;
}
.mainVisual_image04{
   background-image: url('../images/index/mainVisual_image04.jpg');
   animation: slide-animation-04 40s infinite;
}
.mainVisual_image05{
   background-image: url('../images/index/mainVisual_image05.jpg');
   animation: slide-animation-05 40s infinite;
}
@keyframes slide-animation-01 {
	0% {opacity: 1; transform: scale(1.0);}
	10% {opacity: 1;}
	20% {opacity: 0; transform: scale(1.1);}
	30% {opacity: 0;}
	40% {opacity: 0;}
	50% {opacity: 0;}
	60% {opacity: 0;}
	70% {opacity: 0;}
	80% {opacity: 0;}
	90% {opacity: 0;}
	100% {opacity: 1; transform: scale(1.0);}
}
@keyframes slide-animation-02 {
	0% {opacity: 0;}
	10% {opacity: 0;}
	20% {opacity: 1; transform: scale(1.1);}
	30% {opacity: 1;}
	40% {opacity: 0; transform: scale(1.0);}
	50% {opacity: 0;}
	60% {opacity: 0;}
	70% {opacity: 0;}
	80% {opacity: 0;}
	90% {opacity: 0;}
	100% {opacity: 0;}
}
@keyframes slide-animation-03 {
	0% {opacity: 0;}
	10% {opacity: 0;}
	20% {opacity: 0;}
	30% {opacity: 0;}
	40% {opacity: 1; transform: scale(1.0);}
	50% {opacity: 1;}
	60% {opacity: 0; transform: scale(1.1);}
	70% {opacity: 0;}
	80% {opacity: 0;}
	90% {opacity: 0;}
	100% {opacity: 0;}
}
@keyframes slide-animation-04 {
	0% {opacity: 0;}
	10% {opacity: 0;}
	20% {opacity: 0;}
	30% {opacity: 0;}
	40% {opacity: 0;}
	50% {opacity: 0;}
	60% {opacity: 1; transform: scale(1.1);}
	70% {opacity: 1;}
	80% {opacity: 0; transform: scale(1.0);}
	90% {opacity: 0;}
	100% {opacity: 0;}
}
@keyframes slide-animation-05 {
	0% {opacity: 0;}
	10% {opacity: 0;}
	20% {opacity: 0;}
	30% {opacity: 0;}
	40% {opacity: 0;}
	50% {opacity: 0;}
	60% {opacity: 0;}
	70% {opacity: 0;}
	80% {opacity: 1; transform: scale(1.0);}
	90% {opacity: 1;}
	100% {opacity: 0; transform: scale(1.1);}
}

#mainVisual .mainVisual_title {
	margin-left: 0;
	z-index: 1;
}
#mainVisual .mainVisual_title .title_head {
	color: var(--themecolor);
	font-size: clamp(32px, 3.125vw, 48px);
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.1em;
}
#mainVisual .mainVisual_title .title_head span {
	display: inline-flex;
	background: rgba(255,255,255,0.8);
	padding: 8px 0 8px 24px;
	border-radius: 0 20px 20px 0;
	margin-bottom: 24px;
}

section {
	padding: 120px 0;
}
.container {
	width: 90%;
	max-width: 1152px;
	margin: 0 auto;
}
.sec_title .title_sub {
	font-size: clamp(24px, 1.25vw, 28px);
	font-weight: bold;
	line-height: 1;
	color: var(--textcolor);
}
.sec_title .title_head {
	font-size: clamp(36px, 5.625vw, 40px);
	font-weight: bold;
	color: var(--textcolor);
}
.link_item {
	position: relative;
    display: inline-block;
    color: var(--textcolor);
	font-size: clamp(16px, 1.736vw, 20px);
	font-weight: bold;
    padding-left: 96px;
	padding-right: 28px;
	z-index: 1;
}
.link_item:hover {
    color: #fff;
	z-index: 1;
	opacity: 1;
}
.link_item::before {
	content: "";
    position: absolute;
    top: calc(50% - 12px);
    left: 24px;
    display: block;
    width: 30px;
    height: 24px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("../images/common/link_arrow.svg");
}
.link_item::after {
	content: "";
    position: absolute;
    top: calc(50% - 40px);
    left: 0;
    display: block;
    width: 80px;
    height: 80px;
    background-color: var(--subcolor02);
    border-radius: 50px;
    transition: all 0.4s ease-out;
	z-index: -1;
}
.link_item:hover::after {
	width: 100%;
}

#gNavi {
	padding: 0;
}
#gNavi nav {
	width: 96%;
	max-width: 1728px;
	margin: 0 auto;
}
#gNavi nav ul {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	padding: 24px 0;
}
#gNavi nav ul li {
	width: 20%;
	border-right: 1px solid var(--themecolor);
}
#gNavi nav ul li:last-child {
	border-right: none;
}
#gNavi nav ul li a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-end;
}
#gNavi nav ul li a img {
	width: 64px;
}
#gNavi nav ul li a p {
	width: 100%;
	text-align: center;
	font-size: clamp(14px, 1.736vw, 16px);
	font-weight: 600;
	margin-top: 8px;
}

#concept .container {
	background-color: #fff;
	padding: 80px 0;
	border-radius: 40px;
	text-align: center;
	height: auto;
	background-image: url("../images/index/concept_bg.png");
	background-position: top 20px center;
	background-size: 90%;
	background-repeat: no-repeat;
}
#concept .sec_title .title_sub {
	text-align: center;
	display: inline-block;
    position: relative;
	color: var(--textcolor);
}
#concept .sec_title .title_sub:before {
    content: '';
    display: inline-block;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
	border-radius: 2px;
    background-color: var(--subcolor02);
}
#concept .sec_title .title_head {
	margin-top: 32px;
	color: var(--textcolor);
}
#concept .sec_item .sec_text .sec_head {
	margin-top: 40px;
	font-size: clamp(40px, 5.625vw, 48px);
	font-weight: bold;
	color: var(--textcolor);
	letter-spacing: 0.05em;
}
#concept .sec_item .sec_text .sec_head span {
	font-weight: 100;
}
#concept .sec_item .sec_text .sec_read {
	margin-top: 40px;
	text-align: center;
}
#about {
	background-image: url("../images/index/about_bg.png");
	background-position: bottom center;
	background-size: 100%;
	background-repeat: no-repeat;
	padding-bottom: 160px;
}
#about .sec_item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
}
#about .sec_title .title_sub {
	text-align: center;
	display: inline-block;
    position: relative;
	color: var(--textcolor);
}
#about .sec_title .title_sub:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: -52px;
    left: 0;
    width: 40px;
	height: 40px;
    background: url("../images/common/h_about.svg") center center / cover no-repeat;;
}
#about .sec_title .title_sub:before {
    content: '';
    display: inline-block;
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 40px;
    height: 4px;
	border-radius: 2px;
    background-color: var(--subcolor02);
}
#about .sec_title .title_head {
	margin-top: 32px;
	color: var(--textcolor);
}
#about .sec_read {
	margin-top: 40px;
}
#about .link_item {
	margin-top: 64px;
}
#about .sec_photo {
	width: calc((100% - 100px)/2);
	/*margin-right: calc(50% - 50vw);*/
}
#about .sec_photo img {
	border-radius: 40px;
}

#service {
	background-color: #fff;
}
#service .sec_title .title_sub {
	text-align: center;
	display: inline-block;
    position: relative;
	color: var(--textcolor);
}
#service .sec_title .title_sub:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: -52px;
    left: 0;
    width: 42px;
	height: 40px;
    background: url("../images/common/h_service.svg") center center / cover no-repeat;;
}
#service .sec_title .title_sub:before {
    content: '';
    display: inline-block;
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 40px;
    height: 4px;
	border-radius: 2px;
    background-color: var(--subcolor02);
}
#service .sec_title .title_head {
	margin-top: 32px;
	color: var(--textcolor);
}
#service .sec_read {
	margin-top: 40px;
}
#service .sec_item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
	margin-top: 40px;
}
#service .sec_item .link_photo {
	width: calc((100% - 40px) / 2);
	aspect-ratio: 560 / 420;
	border-radius: 24px;
	position: relative;
}
#service .sec_item .link_photo01 {
	background: url("../images/index/service_photo01.jpg") center center / cover no-repeat;
}
#service .sec_item .link_photo02 {
	background: url("../images/index/service_photo02.jpg") center center / cover no-repeat;
}
#service .sec_item .link_photo h3 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
    color: var(--textcolor);
	font-size: clamp(16px, 1.736vw, 20px);
	font-weight: 600;
	padding: 8px 20px;
	background-color: #fff;
	border-radius: 20px;
	white-space: nowrap;
}
#service .sec_item .link_photo button::after {
	content: "";
    position: absolute;
    bottom: 52px;
    right: 49px;
    display: block;
    width: 30px;
    height: 24px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("../images/common/link_arrow.svg");
}
#service .sec_item .link_photo button::before {
	content: "";
    position: absolute;
    bottom: 24px;
    right: 24px;
    display: block;
    width: 80px;
    height: 80px;
    background-color: var(--subcolor02);
    border-radius: 50px;
}
#guide {
	background-color: var(--subcolor02);
}
#guide .sec_item {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
#guide .sec_item .sec_text {
	width: 70%;
}
#guide .sec_title .title_sub {
	text-align: center;
	display: inline-block;
    position: relative;
	color: var(--textcolor);
}
#guide .sec_title .title_sub:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: -52px;
    left: 0;
    width: 44px;
	height: 37px;
    background: url("../images/common/h_guide.svg") center center / cover no-repeat;;
}
#guide .sec_title .title_sub:before {
    content: '';
    display: inline-block;
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 40px;
    height: 4px;
	border-radius: 2px;
    background-color: #fff;
}
#guide .sec_title .title_head {
	margin-top: 32px;
	color: var(--textcolor);
}
#guide .sec_read {
	margin-top: 40px;
}
#guide .link_item {
	position: relative;
    display: inline-block;
    color: var(--textcolor);
	font-size: clamp(16px, 1.736vw, 20px);
	z-index: 1;
}
#guide .link_item:hover {
    color: var(--subcolor02);
	z-index: 1;
	opacity: 1;
}
#guide .link_item::before {
	content: "";
    position: absolute;
    display: block;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("../images/common/link_arrow02.svg");
}
#guide .link_item::after {
	content: "";
    position: absolute;
    display: block;
    background-color: #fff;
    border-radius: 50px;
    transition: all 0.4s ease-out;
	z-index: -1;
}
#guide .link_item:hover::after {
	width: 100%;
}

#news {
	background-color: var(--subcolor02);
	padding-top: 80px;
}
#news .container {
	background-color: #fff;
	padding: 80px;
	border-radius: 40px;
	text-align: center;
}
#news .sec_title .title_sub {
	text-align: center;
	display: inline-block;
    position: relative;
	color: var(--textcolor);
}
#news .sec_title .title_sub:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: -52px;
    left: 0;
    width: 43px;
	height: 36px;
    background: url("../images/common/h_news.svg") center center / cover no-repeat;;
}
#news .sec_title .title_sub:before {
    content: '';
    display: inline-block;
    position: absolute;
    bottom: -20px;
    left: 50%;
	transform: translateX(-50%);
    width: 40px;
    height: 4px;
	border-radius: 2px;
    background-color: var(--subcolor02);
}
#news .sec_title .title_head {
	margin-top: 32px;
	color: var(--textcolor);
}
#news .news_item {
	margin-top: 40px;
}
#news .news_item .news_list {
	width: 100%;
	margin: 0 auto;
}
#news .news_item .news_list li {
	border-top: 1px solid var(--themecolor);
	padding: 16px 0;
}
#news .news_item .news_list li:last-child {
	border-bottom: 1px solid var(--themecolor);
}
#news .news_item .news_list li a {
	display: flex; 
	justify-content: flex-start;
	align-items: center;
	gap: 40px;
}
#news .link_item {
	margin-top: 80px;
}
#recruit {
	background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url("../images/common/recruit_bg.jpg") center center / cover no-repeat;
}
#recruit .sec_item {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 20px;
}
#recruit .sec_item .sec_text {
	width: 70%;
}
#recruit .sec_title .title_sub {
	text-align: center;
	display: inline-block;
    position: relative;
	color: #fff;
}
#recruit .sec_title .title_sub:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: -52px;
    left: 0;
    width: 44px;
	height: 37px;
    background: url("../images/common/h_recruit_w.svg") center center / cover no-repeat;;
}
#recruit .sec_title .title_sub:before {
    content: '';
    display: inline-block;
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 40px;
    height: 4px;
	border-radius: 2px;
    background-color: #fff;
}
#recruit .sec_title .title_head {
	margin-top: 32px;
	color: #fff;
}
#recruit .sec_read {
	margin-top: 40px;
	color: #fff;
}
#recruit .link_item {
	position: relative;
    display: inline-block;
    color: #fff;
	font-size: clamp(16px, 1.736vw, 20px);
	z-index: 1;
	width: 28%;
	padding-right: 0;
}


#contact {

}
#contact:after {

}
#contact .sec_title {
	text-align: center;
}
#contact .sec_title .title_sub {
	text-align: center;
	display: inline-block;
    position: relative;
	color: var(--textcolor);
}
#contact .sec_title .title_sub:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: -52px;
    left: 50%;
	transform: translateX(-50%);
    width: 42px;
	height: 40px;
    background: url("../images/common/h_contact.svg") center center / cover no-repeat;;
}
#contact .sec_title .title_sub:before {
    content: '';
    display: inline-block;
    position: absolute;
    bottom: -20px;
    left: 50%;
	transform: translateX(-50%);
    width: 40px;
    height: 4px;
	border-radius: 2px;
    background-color: var(--subcolor02);
}
#contact .sec_title .title_head {
	margin-top: 32px;
	color: var(--textcolor);
}
#contact .sec_read {
	margin-top: 40px;
	text-align: center;
}
#contact .item_list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
	grid-auto-rows: min-content;
	grid-column-gap: 40px;
	grid-row-gap: 40px;
	margin-top: 40px;
}
#contact .item_list .item_line {
	grid-area: 1 / 1 / 3 / 2;
}
#contact .item_list .item_line a {
	width: 100%;
	height: 100%;
    background-color: #fff;
    border-radius: clamp(16px, 1.875vw, 24px);
    display: flex;
    padding: 1.6125vw;
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
#contact .item_list .item_line a:hover {
	opacity: 0.8;
	transition: 1s;
}
#contact .item_list .item_line a .read {
	text-align: center;
	color: var(--linecolor);
	line-height: 1.5;
}
#contact .item_list .item_line a .head {
	font-size: clamp(20px, 2.1875vw, 28px);
	font-weight: bold;
	color: var(--linecolor);
	padding-left: 56px;
	position: relative;
	display: inline-block;
}
#contact .item_list .item_line a .head:before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	background: url("../images/common/line_icon.svg")  center center / cover no-repeat;
}
#contact .item_list .item_mail {
	grid-area: 1 / 2 / 2 / 3;
}
#contact .item_list .item_mail a {
	width: 100%;
	background-color: #fff;
	border-radius: clamp(16px, 1.875vw, 24px);
	display: block;
	padding: 16px;
	text-align: center;
}
#contact.item_list .item_mail a:hover {
	opacity: 0.8;
	transition: 1s;
}
#contact .item_list .item_mail a .head {
	font-size: clamp(20px, 2.1875vw, 28px);
	font-weight: bold;
	color: var(--themecolor);
	padding-left: 56px;
	position: relative;
	display: inline-block;
}
#contact .item_list .item_mail a .head:before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	background: url("../images/common/mail_icon.svg")  center center / cover no-repeat;
}
#contact .item_list .item_tel {
	grid-area: 2 / 2 / 3 / 3;
}
#contact .item_list .item_tel a {
	width: 100%;
	border-radius: clamp(16px, 1.875vw, 24px);
	background-color: #fff;
	display: block;
	padding: 16px;
	text-align: center;
}
#contact .item_list .item_tel a:hover {
	opacity: 0.8;
	transition: 1s;
}
#contact .item_list .item_tel a .head {
	font-size: clamp(20px, 2.1875vw, 28px);
	font-weight: bold;
	color: var(--themecolor);
	padding-left: 56px;
	position: relative;
	display: inline-block;
}
#contact .item_list .item_tel a .head:before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	background: url("../images/common/tel_icon.svg")  center center / cover no-repeat;
}

#footer{
	background-image: url("../images/common/footer_bg.png");
	background-position: top center;
	background-size: 100%;
	background-repeat: no-repeat;
	background-color: var(--themecolor);
	padding-top: 120px;
}
#footer .footer_inner {
	text-align: center;
}
#footer .footer_inner .corporate_items {

}
#footer .footer_inner .corporate_items .footer_logo {
	width: 160px;
    height: 160px;
    margin: 0 auto;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#footer .footer_inner .corporate_items .footer_logo img {
	width: 72%;
}
#footer .footer_inner .corporate_items .corporate_item {
	margin-top: 40px;
}
#footer .footer_inner .corporate_items .corporate_item .corporate_name {
	color: #fff;
	font-size: clamp(16px, 1.736vw, 20px);
	font-weight: bold;
	text-align: center;
}
#footer .footer_inner .corporate_items .corporate_item .corporate_address {
	color: #fff;
	font-size: clamp(14px, 1.25vw, 18px);
	text-align: center;
}
#footer .footer_inner .footer_nav ul {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 40px;
	padding-bottom: 40px;
}
#footer .footer_inner .footer_nav ul li {
	position: relative;
}
#footer .footer_inner .footer_nav ul li:after {
	position: absolute;
    top: 50%;
    content: "/";
    display: block;
    transform: translate(-50%, -50%);
    color: #fff;
}
#footer .footer_inner .footer_nav ul li:first-child:after {
    content: "";
}
#footer .footer_inner .footer_nav ul li a {
	padding-left: 1.25vw;
    padding-right: 1.25vw;
	color: #fff;
	font-size: clamp(14px, 1.25vw, 18px);
}
#footer .footer_inner .footer_nav ul li a:hover {
	opacity: 0.7;
	transition: 1s;
}
#footer .footer_inner .footer_nav ul li:last-child a {
    padding-right: 0px;
}

#footer .copyright {
	margin-top: 1.6125vw;
	text-align: center;
	color: #fff;
}

#page_about #lower_mainVisual {
	background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url("../images/about/about_mv.jpg") center center / cover no-repeat;
	height: 75vh;
	display: flex;
	justify-content: center;
	align-items: center;
}
#page_about #lower_mainVisual .sec_title {
	text-align: center;
	color: #fff;
}
#page_about #lower_mainVisual .sec_title .title_sub {
	text-align: center;
	display: inline-block;
    position: relative;
	color: #fff;
}
#page_about #lower_mainVisual .sec_title .title_sub:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: -160px;
    left: 50%;
	transform: translateX(-50%);
    width: 280px;
	height: 156px;
    background: url("../images/about/about_h1.svg") center center / cover no-repeat;
}
#page_about #lower_mainVisual .sec_title .title_sub:before {
    content: '';
    display: inline-block;
    position: absolute;
    bottom: -20px;
    left: 50%;
	transform: translateX(-50%);
    width: 40px;
    height: 4px;
	border-radius: 2px;
    background-color: #fff;
}
#page_about #lower_mainVisual .sec_title .title_head {
	margin-top: 32px;
	color: #fff;
}
#page_about #concept .container {
	background: url("../images/about/about_concept.png") center center / contain no-repeat;
	
}
#page_about #concept .sec_item .sec_text .sec_read {
	margin-top: 0;
    text-align: center;
	font-weight: bold;
}
#message {
	background-image: url("../images/index/about_bg.png");
	background-position: bottom center;
	background-size: 100%;
	background-repeat: no-repeat;
	padding-bottom: 160px;
}
#message .sec_item {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 80px;
}
#message .sec_item .sec_text {
	/*width: 51%;*/
	width: 65%;
}
#message .sec_title .title_sub {
	text-align: center;
	display: inline-block;
    position: relative;
	color: var(--textcolor);
}
#message .sec_title .title_sub:before {
    content: '';
    display: inline-block;
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 40px;
    height: 4px;
	border-radius: 2px;
    background-color: var(--subcolor02);
}
#message .sec_title .title_head {
	margin-top: 32px;
	color: var(--textcolor);
}
#message .sec_read {
	margin-top: 40px;
}
#message .sec_photo {
	width: 35%;
	/*width: 40%;*/
	margin-bottom: -160px;
}
#message .sec_photo img {
	border-radius: 40px 0 0 40px;
}
#strongPoint {
	background-color: #fff;
}
#strongPoint .sec_title {
	text-align: center;
}
#strongPoint .sec_title .title_sub {
	text-align: center;
	display: inline-block;
    position: relative;
	color: var(--textcolor);
}
#strongPoint .sec_title .title_sub:before {
    content: '';
    display: inline-block;
    position: absolute;
    bottom: -20px;
    left: 50%;
	transform: translateX(-50%);
    width: 40px;
    height: 4px;
	border-radius: 2px;
    background-color: var(--subcolor02);
}
#strongPoint .sec_title .title_head {
	margin-top: 32px;
	color: var(--textcolor);
}
#strongPoint .sec_item {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 40px;
	margin-top: 80px;
}
#strongPoint .sec_item li {
	width: calc((100% - 80px)/3);
}
#strongPoint .sec_item li img {
	border-radius: 50%;
}
#strongPoint .sec_item li h3 {
	text-align: center;
    color: var(--textcolor);
	font-size: clamp(20px, 1.736vw, 24px);
	font-weight: 600;
	margin-top: 20px;
}
#strongPoint .sec_item li p {
	font-size: clamp(14px, 1.736vw, 16px);
	margin-top: 20px;
}
#everyday {
	background-color: var(--subcolor02);
}
#guide .sec_item {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
#everyday .sec_title .title_sub {
	text-align: center;
	display: inline-block;
    position: relative;
	color: var(--textcolor);
}
#everyday .sec_title .title_sub:before {
    content: '';
    display: inline-block;
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 40px;
    height: 4px;
	border-radius: 2px;
    background-color: #fff;
}
#everyday .sec_title .title_head {
	margin-top: 32px;
	color: var(--textcolor);
}
#everyday .sec_photo {
	margin-top: 80px;
	display: flex;
	align-content: center;
	overflow: hidden;
}
#everyday .sec_photo .photo_list {
	display: flex;
	justify-content: space-between;
	align-items: center;
	animation: loop-slide 30s infinite linear 1s both;
}
@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
#everyday .sec_photo .photo_list .photo_item {
	margin-right: 40px;
}
#everyday .sec_photo .photo_list .photo_item:nth-child(odd) {
	width: calc(100vw / 3);
}
#everyday .sec_photo .photo_list .photo_item:nth-child(even) {
	width: calc(100vw / 4);
}
#everyday .sec_photo .photo_list .photo_item img {
	border-radius: 24px;
}

#everyday .sec_text {
	margin-top: 40px;
	text-align: center;
}
#everyday .sec_read {
	text-align: center;
	font-weight: 600;
}
#everyday .link_item {
	position: relative;
    display: inline-block;
    color: var(--textcolor);
	font-size: clamp(16px, 1.736vw, 20px);
	z-index: 1;
	margin-top: 80px;
	text-align: center;
}
#everyday .link_item:hover {
    color: var(--subcolor02);
	z-index: 1;
	opacity: 1;
}
#everyday .link_item::before {
	content: "";
    position: absolute;
    display: block;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("../images/common/link_arrow02.svg");
}
#everyday .link_item::after {
	content: "";
    position: absolute;
    display: block;
    background-color: #fff;
    border-radius: 50px;
    transition: all 0.4s ease-out;
	z-index: -1;
}
#everyday .link_item:hover::after {
	width: 100%;
}
#banner {
	background-color: #fff;
}
#banner .sec_item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
	margin-top: 40px;
}
#banner .sec_item .link_photo {
	width: calc((100% - 40px) / 2);
	aspect-ratio: 560 / 420;
	border-radius: 24px;
	position: relative;
}
#banner .sec_item .link_support {
	background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url("../images/index/service_photo01.jpg") center center / cover no-repeat;
}
#banner .sec_item .link_guide {
	background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url("../images/common/link_guide.jpg") center center / cover no-repeat;
}
#banner .sec_item .link_about {
	background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url("../images/common/link_about.jpg") center center / cover no-repeat;
}
#banner .sec_item .link_photo button::after {
	content: "";
    position: absolute;
    bottom: 52px;
    right: 49px;
    display: block;
    width: 30px;
    height: 24px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("../images/common/link_arrow.svg");
}
#banner .sec_item .link_photo button::before {
	content: "";
    position: absolute;
    bottom: 24px;
    right: 24px;
    display: block;
    width: 80px;
    height: 80px;
    background-color: var(--subcolor02);
    border-radius: 50px;
}
#banner .sec_title {
	position: absolute;
	top: 50%;
	left: 40px;
	transform: translateY(-50%);
}
#banner .sec_title .title_sub {
	text-align: center;
	display: inline-block;
    position: relative;
	color: #fff;
}
#banner .sec_item .link_support .sec_title .title_sub:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: -52px;
    left: 0;
    width: 42px;
	height: 40px;
    background: url("../images/common/h_service_w.svg") center center / cover no-repeat;;
}
#banner .sec_item .link_guide .sec_title .title_sub:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: -52px;
    left: 0;
    width: 42px;
	height: 40px;
    background: url("../images/common/h_guide_w.svg") center center / cover no-repeat;;
}
#banner .sec_item .link_about .sec_title .title_sub:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: -52px;
    left: 0;
    width: 42px;
	height: 40px;
    background: url("../images/common/h_about_w.svg") center center / cover no-repeat;;
}
#banner .sec_title .title_sub:before {
    content: '';
    display: inline-block;
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 40px;
    height: 4px;
	border-radius: 2px;
    background-color: #fff;
}
#banner .sec_title .title_head {
	margin-top: 32px;
	color: #fff;
}

#page_support #lower_mainVisual {
	background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url("../images/support/support_mv.jpg") center center / cover no-repeat;
	height: 75vh;
	display: flex;
	justify-content: center;
	align-items: center;
}
#page_support #lower_mainVisual .sec_title {
	text-align: center;
	color: #fff;
}
#page_support #lower_mainVisual .sec_title .title_sub {
	text-align: center;
	display: inline-block;
    position: relative;
	color: #fff;
}
#page_support #lower_mainVisual .sec_title .title_sub:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: -160px;
    left: 50%;
	transform: translateX(-50%);
    width: 280px;
	height: 156px;
    background: url("../images/support/support_h1.svg") center center / cover no-repeat;
}
#page_support #lower_mainVisual .sec_title .title_sub:before {
    content: '';
    display: inline-block;
    position: absolute;
    bottom: -20px;
    left: 50%;
	transform: translateX(-50%);
    width: 40px;
    height: 4px;
	border-radius: 2px;
    background-color: #fff;
}
#page_support #lower_mainVisual .sec_title .title_head {
	margin-top: 32px;
	color: #fff;
}
#page_support #concept .container {
	background: url("../images/about/about_concept.png") center center / contain no-repeat;
	
}
#page_support #concept .sec_item .sec_text .sec_read {
	margin-top: 0;
    text-align: center;
	font-weight: bold;
}
#page_support #information .sec_item {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 40px;
}
#page_support #information .sec_item .sec_text {
	width: 60%;
}
#page_support #information .sec_item .sec_text .title_sub {
	margin-top: 10px;
	padding: 10px 20px;
    background: var(--subcolor03);
    display: inline-block;
    border-radius: 40px;
    color: #fff;
}
#page_support #information .sec_item .sec_text .sec_list {
	margin-top: 40px;
}
#page_support #information .sec_item .sec_text .sec_list dt {
	margin-top: 10px;
	line-height: 1.5;
}
#page_support #information .sec_item .sec_text .sec_list dd {
	line-height: 1.5;
}
#page_support #information .sec_item .sec_photo {
	width: 40%;
	margin-top: 148px;
}
#page_support #information .sec_item .sec_photo img {
	border-radius: 24px;
	margin-bottom: 10px;
}
#page_support #information .sec_item .sec_photo a {
	background: #fff;
	color: var(--subcolor02);
	display: block;
	padding: 10px;
	border: 2px solid var(--subcolor02);
	font-weight: bold;
	text-align: center;
	border-radius: 20px;
}
#page_support #information .sec_item .sec_photo a:hover {
	color: #fff;
	background: var(--subcolor02);
	transition: 1s;
}
#page_support #information #handa {
	flex-direction: row-reverse;
	padding-top: 40px;
	margin-top: 40px;
	border-top: 1px solid var(--themecolor);
}
#page_support #support {
	background: #fff;
}
#page_support #support .sec_title {
	text-align: center;
}
#page_support #support .sec_title .title_sub {
	text-align: center;
	display: inline-block;
    position: relative;
	color: var(--textcolor);
}
#page_support #support .sec_title .title_sub:before {
    content: '';
    display: inline-block;
    position: absolute;
    bottom: -20px;
    left: 50%;
	transform: translateX(-50%);
    width: 40px;
    height: 4px;
	border-radius: 2px;
    background-color: var(--subcolor02);
}
#page_support #support .sec_title .title_head {
	margin-top: 32px;
	color: var(--textcolor);
}
#page_support #support .sec_photo {
	margin-top: 80px;
	display: flex;
	align-content: center;
	overflow: hidden;
}
#page_support #support .sec_photo .photo_list {
	display: flex;
	justify-content: space-between;
	align-items: center;
	animation: loop-slide 30s infinite linear 1s both;
}
@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
#page_support #support .sec_photo .photo_list .photo_item {
	margin-right: 40px;
	width: calc(100vw / 3);
}
#page_support #support .sec_photo .photo_list .photo_item img {
	border-radius: 24px;
}
#page_support #support .sec_list {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-wrap: wrap;
	gap: 40px;
	margin-top: 40px;
}
#page_support #support .sec_list .sec_item {
	width: calc((100% - 40px) / 2);
	border-radius: 20px;
	padding: 40px 20px;
}
#page_support #support .sec_list .sec_item:nth-child(1),#page_support #support .sec_list .sec_item:nth-child(5) {
	border: 1px solid #FF7B77;
}
#page_support #support .sec_list .sec_item:nth-child(2),#page_support #support .sec_list .sec_item:nth-child(6) {
	border: 1px solid #90D4F0;
}
#page_support #support .sec_list .sec_item:nth-child(3),#page_support #support .sec_list .sec_item:nth-child(7) {
	border: 1px solid #FCCF29;
}
#page_support #support .sec_list .sec_item:nth-child(4),#page_support #support .sec_list .sec_item:nth-child(8) {
	border: 1px solid #C3D825;
}
#page_support #support .sec_list .sec_item h3 {
	text-align: center;
	font-size: clamp(16px, 1.736vw, 20px);
	font-weight: bold;
	margin-bottom: 16px;
}
#page_support #support .sec_list .sec_item p {
	font-size: clamp(14px, 1.736vw, 16px);
}
#page_support #otherServices {
	background-color: #fff;
}
#page_support #otherServices .sec_title {
	text-align: center;
}
#page_support #otherServices .sec_title .title_sub {
	text-align: center;
	display: inline-block;
    position: relative;
	color: var(--textcolor);
}
#page_support #otherServices .sec_title .title_sub:before {
    content: '';
    display: inline-block;
    position: absolute;
    bottom: -20px;
    left: 50%;
	transform: translateX(-50%);
    width: 40px;
    height: 4px;
	border-radius: 2px;
    background-color: var(--subcolor02);
}
#page_support #otherServices .sec_title .title_head {
	margin-top: 32px;
	color: var(--textcolor);
}
#page_support #otherServices .sec_item {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 40px;
	margin-top: 80px;
}
#page_support #otherServices .sec_item li {
	width: calc((100% - 80px)/3);
}
#page_support #otherServices .sec_item li img {
	border-radius: 50%;
}
#page_support #otherServices .sec_item li h3 {
	text-align: center;
    color: var(--textcolor);
	font-size: clamp(20px, 1.736vw, 24px);
	font-weight: 600;
	margin-top: 20px;
}
#page_support #otherServices .sec_item li p {
	font-size: clamp(14px, 1.736vw, 16px);
	margin-top: 20px;
}
#page_support #day {
	background-color: var(--subcolor02);
}
#page_support #day .sec_title .title_sub {
	text-align: center;
	display: inline-block;
    position: relative;
	color: var(--textcolor);
}
#page_support #day .sec_title .title_sub:before {
    content: '';
    display: inline-block;
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 40px;
    height: 4px;
	border-radius: 2px;
    background-color: #fff;
}
#page_support #day .sec_title .title_head {
	margin-top: 32px;
	color: var(--textcolor);
}
#page_support #day .sec_title .title_head span {
	font-size: clamp(20px, 1.736vw, 24px);
}
#page_support #day .sec_item {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 40px;
	margin-top: 40px;
}
#page_support #day .sec_text {
	width: 60%;
}
#page_support #day .sec_text {
	width: 60%;
}

#page_support #day .sec_item .sec_text .sec_list dt {
	line-height: 1.5;
}
#page_support #day .sec_item .sec_text .sec_list dt span {
	font-weight: normal;
	margin-left: 16px;
}
#page_support #day .sec_item .sec_text .sec_list dd {
	line-height: 1.5;
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #fff;
}
#page_support #day .sec_photo {
	width: 40%;
	overflow: hidden;
	height: 113vh;
}
#page_support #day .sec_photo .photo_list {
	animation: slide 60s infinite linear 0.2s both;
}
@keyframes slide {
  0% { transform: translateY(0); }
  100% { transform: translateY(-100%); }
}
#page_support #day .sec_photo .photo_list li {
	margin-bottom: 20px;
}
#page_support #day .sec_photo .photo_list li img {
	border-radius: 24px;
}

#page_guide #lower_mainVisual {
	background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url("../images/guide/guide_mv.jpg") center center / cover no-repeat;
	height: 75vh;
	display: flex;
	justify-content: center;
	align-items: center;
}
#page_guide #lower_mainVisual .sec_title {
	text-align: center;
	color: #fff;
}
#page_guide #lower_mainVisual .sec_title .title_sub {
	text-align: center;
	display: inline-block;
    position: relative;
	color: #fff;
}
#page_guide #lower_mainVisual .sec_title .title_sub:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: -160px;
    left: 50%;
	transform: translateX(-50%);
    width: 280px;
	height: 152px;
    background: url("../images/guide/guide_h1.svg") center center / cover no-repeat;
}
#page_guide #lower_mainVisual .sec_title .title_sub:before {
    content: '';
    display: inline-block;
    position: absolute;
    bottom: -20px;
    left: 50%;
	transform: translateX(-50%);
    width: 40px;
    height: 4px;
	border-radius: 2px;
    background-color: #fff;
}
#page_guide #lower_mainVisual .sec_title .title_head {
	margin-top: 32px;
	color: #fff;
}
#page_guide #concept .container {
	background: url("../images/about/about_concept.png") center center / contain no-repeat;
	
}
#page_guide #concept .sec_item .sec_text .sec_read {
	margin-top: 0;
    text-align: center;
	font-weight: bold;
}
#page_guide #flow .sec_title {
	text-align: center;
}
#page_guide #flow .sec_title .title_sub {
	text-align: center;
	display: inline-block;
    position: relative;
	color: var(--textcolor);
}
#page_guide #flow .sec_title .title_sub:before {
    content: '';
    display: inline-block;
    position: absolute;
    bottom: -20px;
    left: 50%;
	transform: translateX(-50%);
    width: 40px;
    height: 4px;
	border-radius: 2px;
    background-color: var(--subcolor02);
}
#page_guide #flow .sec_title .title_head {
	margin-top: 32px;
	color: var(--textcolor);
}
#page_guide #flow .sec_item {
	margin-top: 32px;
	background: #fff;
	border-radius: 40px;
	padding: 40px;
}
#page_guide #flow .sec_item .item_list {
	display: flex;
	justify-content: center;
	align-items: stretch;
	gap: 40px;
}
#page_guide #flow .sec_item .item_list li {
	width: calc((100% - 120px)/ 4);
}
#page_guide #flow .sec_item .item_list li p {
	font-size: clamp(14px, 1.736vw, 16px);
	margin-top: 20px;
}
#page_guide #price .sec_title {
	text-align: center;
}
#page_guide #price .sec_title .title_sub {
	text-align: center;
	display: inline-block;
    position: relative;
	color: var(--textcolor);
}
#page_guide #price .sec_title .title_sub:before {
    content: '';
    display: inline-block;
    position: absolute;
    bottom: -20px;
    left: 50%;
	transform: translateX(-50%);
    width: 40px;
    height: 4px;
	border-radius: 2px;
    background-color: var(--subcolor02);
}
#page_guide #price .sec_title .title_head {
	margin-top: 32px;
	color: var(--textcolor);
}
#page_guide #price .sec_item {
	margin-top: 32px;
	background: #fff;
	border-radius: 40px;
	padding: 40px;
}
#page_guide #price .sec_item .item_text {
	text-align: center;	
}
#page_guide #price .sec_item .item_list {
	display: flex;
	justify-content: space-between;
	align-items: self-end;
	flex-wrap: wrap;
	width: 80%;
	margin: 40px auto 0;
}
#page_guide #price .sec_item .item_list dt {
	width: 60%;
	line-height: 1.5;
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid var(--textcolor);
}
#page_guide #price .sec_item .item_list dd {
	text-align: right;
	width: 40%;
	line-height: 1.5;
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid var(--textcolor);
}
#page_guide #voice {
	background-color: var(--subcolor02);
}
#page_guide #voice .sec_title .title_sub {
	text-align: center;
	display: inline-block;
    position: relative;
	color: var(--textcolor);
}
#page_guide #voice .sec_title .title_sub:before {
    content: '';
    display: inline-block;
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 40px;
    height: 4px;
	border-radius: 2px;
    background-color: #fff;
}
#page_guide #voice .sec_title .title_head {
	margin-top: 32px;
	color: var(--textcolor);
}
#page_guide #voice .sec_item {
	margin-top: 40px;
}
#page_guide #voice .sec_item .item_list {
	scroll-snap-type: x mandatory;
	scrollbar-color: #ddd var(--subcolor02);
	white-space: nowrap;
	overflow-x: auto;
	padding-bottom: 20px;
	display: flex;
	align-items: stretch;
	justify-content: flex-start;
	/* その他のスタイル */
}
#page_guide #voice .sec_item .item_list li {
	scroll-snap-align: start;
	margin: 0 20px;
	width: 29.5%;
	white-space: normal;
	background-color: #fff;
	border-radius: 24px;
	padding: 20px;
	flex-shrink: 0;
}
#page_guide #voice .sec_item .item_list li img {
	width: 40%;
	display: block;
	border-radius: 50%;
	margin: 0 auto;
}
#page_guide #voice .sec_item .item_list li h3 {
	text-align: center;
    font-weight: bold;
    font-size: clamp(14px, 1.736vw, 16px);
}
#page_guide #voice .sec_item .item_list li p {
	margin-top: 20px;
    font-size: clamp(14px, 1.736vw, 16px);
}
#page_guide #faq {
	background-color: #fff;
}
#page_guide #faq .sec_title .title_sub {
	text-align: center;
	display: inline-block;
    position: relative;
	color: var(--textcolor);
}
#page_guide #faq .sec_title .title_sub:before {
    content: '';
    display: inline-block;
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 40px;
    height: 4px;
	border-radius: 2px;
    background-color: var(--subcolor02);
}
#page_guide #faq .sec_title .title_head {
	margin-top: 32px;
	color: var(--textcolor);
}
#page_guide #faq .sec_item {
	margin-top: 40px;
}
#page_guide #faq .sec_item h3 {
	padding: 10px 20px;
	font-size: clamp(24px, 1.25vw, 28px);
    font-weight: bold;
    line-height: 1;
    background: var(--subcolor03);
    display: inline-block;
    border-radius: 40px;
    color: #fff;
	margin-bottom: 20px;
}
#page_guide #faq .accordion-001 {
    width: 100%;
    background-color: var(--subcolor);
	margin-bottom: 20px;
}

.accordion-001:not([open]) {
    margin-bottom: 7px;
}

.accordion-001 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    background-color: #fccf29;
    color: var(--textcolor);
	font-size: clamp(16px, 1.736vw, 20px);
    font-weight: 600;
    cursor: pointer;
}

.accordion-001 summary::-webkit-details-marker {
    display: none;
}

.accordion-001 summary::before,
.accordion-001 summary::after {
    width: 3px;
    height: .9em;
    border-radius: 5px;
    background-color: #fff;
    content: '';
}

.accordion-001 summary::before {
    position: absolute;
    right: 2em;
    rotate: 90deg;
}

.accordion-001 summary::after {
    transition: rotate .3s;
}

.accordion-001[open] summary::after {
    rotate: 90deg;
}

.accordion-001 p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: 1em 2em 2em 2em;
    color: #333333;
    transition: transform .5s, opacity .5s;
}

.accordion-001[open] p {
    transform: none;
    opacity: 1;
}

.archive #lower_mainVisual,
.wp-singular #lower_mainVisual {
	background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url("../images/news/news_mv.jpg") center center / cover no-repeat;
	height: 75vh;
	display: flex;
	justify-content: center;
	align-items: center;
}
.archive #lower_mainVisual .sec_title,
.wp-singular #lower_mainVisual .sec_title {
	text-align: center;
	color: #fff;
}
.archive #lower_mainVisual .sec_title .title_sub,
.wp-singular #lower_mainVisual .sec_title .title_sub {
	text-align: center;
	display: inline-block;
    position: relative;
	color: #fff;
}
.archive #lower_mainVisual .sec_title .title_sub:after,
.wp-singular #lower_mainVisual .sec_title .title_sub:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: -160px;
    left: 50%;
	transform: translateX(-50%);
    width: 280px;
	height: 156px;
    background: url("../images/news/news_h1.svg") center center / cover no-repeat;
}
.archive #lower_mainVisual .sec_title .title_sub:before,
.wp-singular #lower_mainVisual .sec_title .title_sub:before {
    content: '';
    display: inline-block;
    position: absolute;
    bottom: -20px;
    left: 50%;
	transform: translateX(-50%);
    width: 40px;
    height: 4px;
	border-radius: 2px;
    background-color: #fff;
}
.archive #lower_mainVisual .sec_title .title_head,
.wp-singular #lower_mainVisual .sec_title .title_head {
	margin-top: 32px;
	color: #fff;
}

.wp-singular .sec_title .title_sub:after {
	content: none!important;
}
.wp-singular .entry-content {
	margin-top: 40px;
}
@media screen and (max-width: 1024px) {
	html {
		width: 100%;
		overflow-x: hidden;
	}
	#footer .footer_inner {
		flex-wrap: wrap;
	}
	#footer .footer_inner .corporate_items {
		width: 100%;
	}
	#footer .footer_inner .footer_nav {
		width: 100%;
	}
} 

@media (orientation: portrait){
	.container {
		width: 90%;
	}
	#mainVisual {
		height: 50vh;
	}
	#mainVisual:after {
		height: 50vh;
	}
	#fix_bnr_sp {
		position: fixed;
		bottom: 0;
		right: 0;
		text-align: center;
		z-index: 999;
		width: 100%;
		background-color: #fff;
		border: 4px solid var(--linecolor);
	}
	#fix_bnr_sp a {
		color: var(--linecolor);
		font-size: clamp(16px, 1.736vw, 20px);
		font-weight: bold;
		display: inline-block;
		position: relative;
		padding: 20px 0px 20px 38px;

	}
	#fix_bnr_sp a:before {
		content: "";
		display: inline-block;
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
		width: 28px;
		height: 28px;
		background: url("../images/common/line_icon.svg")  center center / cover no-repeat;
	}
	#fix_bnr_sp a:hover {
		opacity: 0.8;
		transition: 1s;
	}
}	
@media screen and (max-width: 640px) {
	html {
		width: 100%;
	}
	body {
		overflow-x: hidden;
	}
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	#header .header_logo {
		width: 80px;
		height: 80px;
	}
	.sec_title .title_sub {
		font-size: 20px;
	}
	.sec_title .title_head {
		font-size: 28px;
	}
	.link_item {
		padding-left: 80px;
	}
	.link_item::after {
		top: calc(50% - 32px);
		width: 64px;
		height: 64px;
	}
	.link_item::before {
		top: calc(50% - 10px);
		left: 20px;
		width: 24px;
		height: 20px;
	}
	#concept .sec_item .sec_text .sec_head {
		font-size: 32px;
		line-height: 1.5;
	}
	#mainVisual {
        height: 85vh;
    }
	#mainVisual .mainVisual_title .title_head {
		font-size: 28px;
	}
	#mainVisual .mainVisual_title .title_head span {
		padding: 8px 16px;
		margin-bottom: 8px;
	}
	#lower_mainVisual .sec_title {
		margin-top: 50%;
	}
	#about .sec_item {
		flex-wrap: wrap;
	}
	#about .sec_item .sec_text {
		width: 100%;
	}
	#about .sec_item .sec_photo {
		width: 100%;
	}
	#about .sec_photo img {
		border-radius: 24px;
	}
	#about .link_item {
		margin-top: 40px;
		margin-bottom: 20px;
	}
	#service .sec_item {
		flex-wrap: wrap;
	}
	#service .sec_item .link_photo {
		width: 100%;
	}
	#service .sec_item .link_photo button::before {
		bottom: 20px;
		right: 20px;
		width: 64px;
		height: 64px;
	}
	#service .sec_item .link_photo button::after {
		content: "";
		position: absolute;
		bottom: 42px;
		right: 40px;
		display: block;
		width: 24px;
		height: 20px;
	}
	#guide .sec_item {
		flex-wrap: wrap;
	}
	#guide .sec_item .sec_text {
		width: 100%;
	}
	#guide .link_item {
		margin-top: 40px;
	}
	#news .news_item .news_list li a {
		flex-wrap: wrap;
		gap: 0;	
	}
	#recruit .sec_item {
		flex-wrap: wrap;
	}
	#recruit .sec_item .sec_text {
		width: 100%;
	}
	#recruit .link_item {
		width: 100%;
		margin-top: 40px;
	}
	#company .sec_item dl dt {
		margin-left: 0px;
		margin-bottom: 10px;
		width: 100%;
	}
	#company .sec_item dl dd {
		margin-left: 0px;
		width: 100%;
	}
	#contact .box_item {
		flex-wrap: wrap;
	}
	#contact .box_item .item_list {
		width: 100%;
		gap: 20px;
		margin-top: 20px;
	}
	#contact .box_item .item_list .item_line a {
		padding: 20px;
	}
	#contact .box_item .item_list .item_mail a {
		padding: 20px;
	}
	#contact .box_item .item_list .item_tel a {
		padding: 20px;
	}
	#contact .box_item .item_list .item_tel a .head {
		line-height: 1.5;
	}
	#footer {
		padding: 40px 0 80px 0;
	}
	#footer .footer_inner .corporate_items {
		width: 100%;
		flex-wrap: wrap;
	}
	#footer .footer_inner .corporate_items .footer_logo {
		width: 120px;
		height: 120px;
		margin: 0 auto;
	}
	#footer .footer_inner .corporate_items .corporate_item {
		margin-left: 0;
		margin-top: 20px;
		width: 100%;
	}
	#footer .footer_inner .corporate_items .corporate_item .corporate_name {
		text-align: center;
	}
	#footer .footer_inner .corporate_items .corporate_item .corporate_address {
		text-align: center;
	}
	#footer .footer_inner .footer_nav {
		display: none;
	}
	#fix_bnr_sp {
		position: fixed;
		bottom: 0;
		right: 0;
		text-align: center;
		z-index: 999;
		width: 100%;
		background-color: #fff;
		border: 4px solid var(--linecolor);
	}
	#fix_bnr_sp a {
		color: var(--linecolor);
		font-size: clamp(16px, 1.736vw, 20px);
		font-weight: bold;
		display: inline-block;
		position: relative;
		padding: 20px 0px 20px 38px;

	}
	#fix_bnr_sp a:before {
		content: "";
		display: inline-block;
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
		width: 28px;
		height: 28px;
		background: url("../images/common/line_icon.svg")  center center / cover no-repeat;
	}
	#fix_bnr_sp a:hover {
		opacity: 0.8;
		transition: 1s;
	}
	#contact .item_list {
		display: flex;
		flex-wrap: wrap;
		grid-row-gap: 20px;
	}
	#contact .item_list .item_line {
		width: 100%;
	}
	#contact .item_list .item_mail {
		width: 100%;
	}
	#contact .item_list .item_tel {
		width: 100%;
	}
	#message .sec_item {
		flex-wrap: wrap;
	}
	#message .sec_item .sec_text {
		width: 100%;
	}
	#message .sec_photo {
		width: 100%;
		margin-bottom: -100px;
	}
	#strongPoint .sec_title .title_head {
		line-height: 1.5;
	}
	#strongPoint .sec_item {
		flex-wrap: wrap;
	}
	#strongPoint .sec_item li {
		width: 100%;
	}
	#everyday .sec_photo .photo_list .photo_item:nth-child(odd) {
		width: 95vw;
	}
	#everyday .sec_photo .photo_list .photo_item:nth-child(even) {
		width: calc(100vw / 1.5);
	}
	#banner .sec_item {
		flex-wrap: wrap;
	}
	#banner .sec_item .link_photo {
		width: 100%;
	}
	#banner .sec_title {
		left: 20px;
	}
	#banner .sec_item .link_photo button::before {
		bottom: 20px;
		right: 20px;
		width: 64px;
		height: 64px;
	}
	#banner .sec_item .link_photo button::after {
		content: "";
		position: absolute;
		bottom: 42px;
		right: 40px;
		display: block;
		width: 24px;
		height: 20px;
	}
	#page_guide #flow .sec_item .item_list {
		flex-wrap: wrap;
	}
	#page_guide #flow .sec_item .item_list li {
		width: 100%;
	}
	#page_guide #price .sec_item .item_text {
		text-align: justify;
	}
	#page_guide #price .sec_item .item_list {
		width: 100%;
	}
	#page_guide #price .sec_item .item_list dt {
		width: 100%;
		border-bottom: none;
		padding-bottom: 0;
	}
	#page_guide #price .sec_item .item_list dd {
		width: 100%;
	}
	#page_guide #voice .sec_item .item_list li {
		margin: 0 10px;
		width: 90.5%;
	}
	.accordion-001 summary {
		padding: 1em 1em;
		gap: 10px;
	}
	.accordion-001 summary::before {
		right: 1em;
	}
	#page_support #information .sec_item {
		flex-wrap: wrap;
	}
	#page_support #information .sec_item .sec_text {
		width: 100%;
	}
	#page_support #information .sec_item .sec_photo {
		width: 100%;
		margin-top: 20px;
	}
	#page_support #support .sec_photo .photo_list .photo_item {
		width: 95vw;
	}
	#page_support #support .sec_list {
		flex-wrap: wrap;
	}
	#page_support #support .sec_list .sec_item {
		width: 100%;
	}
	#page_support #otherServices .sec_item {
		flex-wrap: wrap;
	}
	#page_support #otherServices .sec_item li {
		width: 100%;
	}
	#page_support #day .sec_item {
		flex-wrap: wrap;
	}
	#page_support #day .sec_text {
		width: 100%;
	}
	#page_support #day .sec_photo {
		width: 100%;
		height: 50vh;
	}
	#page_about #concept .container,
	#page_guide #concept .container,
	#page_support #concept .container {
	background: url("../images/about/about_concept_sp.png") center center / contain no-repeat;
	}
}