@charset "UTF-8";

	/* ==============================
		UI Elements
		============================== */
	a:hover {
		text-decoration: none;
	}

	a:hover {
		opacity: 0.7;
		filter: alpha(opacity=70);
		-moz-opacity: 0.7;
		-webkit-transition: 0.3s ease-in-out;
		-moz-transition: 0.3s ease-in-out;
		-o-transition: 0.3s ease-in-out;
		transition: 0.3s ease-in-out;
	}

	img {
		border: 0;
		vertical-align: top;
	}

	figure, figcaption {
		display: block;
		margin: 0;
		padding: 0;
	}

	/* ==============================
		List Styles
		============================== */
	nav li:before {
		display: none;
	}

	ol, ul {
		list-style: none;
	}

  a {
    text-decoration: none;
  }

/*-----------------------------------------------------------
	CSS変数（よく使うカラーコードなどを設定する）
-----------------------------------------------------------*/

:root {
  --main-color: #333333;
  --main-color-black: #2A2625;
  --main-color-orange: #E94709;
  --main-color-light-orange: #fe742c;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif!important;
  letter-spacing: 0.09em;
  color: #2A2625;
}

main {
  overflow:hidden;
}

h2,h3,h4,p {
  margin: 0;
  padding: 0;
  letter-spacing: 0.09em;
  color: #2A2625;
}


/*-----------------------------------------------------------
	共通ヘッダー
-----------------------------------------------------------*/
#g-header {
  display: flex;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: calc(100% - 40px);
  margin: 20px 20px 0;
  border-radius: 12px;
  background-color: #fff;
  z-index: 1000;
  transition: box-shadow 0s ease 0.5s;
  height: 60px;
}

#g-header.is-open {
  box-shadow: none;
  transition: box-shadow 0s ease 0s;
}

#g-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 29px;
}

#g-header .logo {
  position: relative;
  z-index: 10;
}

#g-header .logo a {
  line-height: 34px;
	white-space: nowrap;
}

#g-header .logo a img {
  width: auto;
  height: 40px;
}

#g-header .logo a:hover {
	opacity: 0.8;
	filter: alpha(opacity=80);
	-moz-opacity: 0.8;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

/* ナビゲーション */
#g-header .nav {
  width: 100%;
}

#g-header .nav .nav-list {
  display: flex;
  justify-content: right;
  align-items: center;
}

#g-header .nav .nav-list > li {
  /* width: 20%; */
  padding: 0 10px;
}

#g-header .nav .nav-list > li > a {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 16px 0;
  text-align: center;
  font-weight: 500;
  z-index: 10;
}

#g-header .nav .nav-list > li > a span {
  display: block;
  color: var(--main-color-black);
  font-size: 14px;
}



/* ドロップダウンメニュー */
.megamenu {
  position: absolute;
  display: flex;
  top: 70px;
  left: 0;
  width: 100%;
  min-height: 350px;
  opacity: 0;
  overflow: hidden;
  border-radius: 0 0 12px 12px;
  transition: z-index 0s linear 0.4s, opacity 0.1s cubic-bezier(0.104, 0.204, 0.492, 1), visibility 0.1s cubic-bezier(0.104, 0.204, 0.492, 1);
  z-index: 2;
  pointer-events: none;
}

.is-open .megamenu {
  transition: z-index 0s linear 0.1s, opacity 0.15s cubic-bezier(0.104, 0.204, 0.492, 1) 0s, visibility 0.15s cubic-bezier(0.104, 0.204, 0.492, 1) 0s;
}

.megamenu .heading {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 48px 0 61px min(4.4vw, 60px);
  /* margin: 64px 0 61px 60px; */
  padding-right: 3.3vw;
}

.megamenu .heading .title a span {
  font-size: 1.75em;
  font-weight: 900;
}

.megamenu .heading .title a .arrow {
  position: relative;
  display: block;
  margin-top: 11px;
  width: 40px;
  height: 40px;
  border: 2px solid var(--main-color-orange);
  border-radius: 50%;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.megamenu .heading .title a .arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: url(/assets/images/icon-arrow-white.svg) center center / 16px no-repeat;
  content: "";
  transform: translate(calc(-50% - 16px), -50%);
  transition: opacity 0.2s, transform 0.2s;
  opacity: 0;
}

.megamenu .heading .title a .arrow::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  content: "";
  background: url(/assets/images/icon-arrow-orange.svg) center center / 16px no-repeat;
  transition: opacity 0.2s, transform 0.2s;
  transform: translate(-50%, -50%);
}

.megamenu .heading .web-btn a {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 232px;
  height: 70px;
  border: 2px solid #efefef;
  border-radius: 8px;
  transition: 0.3s ease;
}

.megamenu .heading .web-btn a img {
  width: 118px;
}

.megamenu .heading .web-btn a .arrow-outer::before {
  background: url(/assets/images/icon-outer-green.svg) left top / 100% auto no-repeat;
}

.megamenu .heading .web-btn a .arrow-outer::after {
  background: url(/assets/images/icon-outer-green.svg) left top / 100% auto no-repeat;
}

.megamenu .heading .web-btn a .arrow-outer {
  right: 6px;
  bottom: 6px;
}

.megamenu .menu-list {
  margin-top: 56px;
  /* margin-top: 72px; */
  margin-bottom: 60px;
  padding: 1px min(30px, 3.3vw) 0;
  flex: 0 0 23.3%;
  border-left: 1px solid #e6e6e6;
}

.megamenu .menu-list:last-child {
  margin-right: min(4.46vw, 61px);
}

.megamenu .menu-list > li {
  position: relative;
}

.megamenu .menu-list > li.menu-title a {
  pointer-events: none;
}

.megamenu .menu-list > li.menu-title a span {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.megamenu .menu-list > li.menu-title + li {
  margin-top: 22px;
}

.megamenu .menu-list > li + .menu-title {
  margin-top: 45px;
}

.megamenu .menu-list > li {
  margin-top: 14.5px;
  padding-left: 16px;
  font-size: 0.9375em;
}

.megamenu .menu-list > li.menu-title {
  padding-left: 0;
}

.megamenu .menu-list > li:last-child {
  margin-bottom: 14.5px;
}

.megamenu .menu-list > li a .arrow,
.megamenu .menu-list > li a .outer {
  position: absolute;
  top: 11px;
  left: -2px;
  width: 12px;
  height: 12px;
  overflow: hidden;
  transform: translateY(-50%);
}

.megamenu .menu-list > li a .arrow::before,
.megamenu .menu-list > li a .outer::before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  transform-origin: left bottom;
  transition: opacity 0.2s, transform 0.2s;
  opacity: 0;
}

.megamenu .menu-list > li a .arrow::before {
  top: 0px;
  left: -12px;
  background: url(/assets/images/icon-arrow-orange.svg) center center / 100% auto no-repeat;
}

.megamenu .menu-list > li a .outer::before {
  bottom: -12px;
  left: -12px;
  background: url(/assets/images/icon-outer-orange.svg) center center / 100% auto no-repeat;
}

.megamenu .menu-list > li a .arrow::after,
.megamenu .menu-list > li a .outer::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  transform-origin: left bottom;
  transition: opacity 0.2s, transform 0.2s;
}

.megamenu .menu-list > li a .arrow::after {
  background: url(/assets/images/icon-arrow-orange.svg) center center / 100% auto no-repeat;
}

.megamenu .menu-list > li a .outer::after {
  background: url(/assets/images/icon-outer-orange.svg) center center / 100% auto no-repeat;
}

.megamenu-bg {
  position: fixed;
  top: 30px;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.35s cubic-bezier(0.104, 0.204, 0.492, 1) 0s, opacity 0.35s cubic-bezier(0.104, 0.204, 0.492, 1) 0s, visibility 0.35s cubic-bezier(0.104, 0.204, 0.492, 1) 0s;
  pointer-events: none;
}

.megamenu-bg .inner {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 32px 0;
}

.megamenu-bg .inner .bg {
  position: relative;
  width: 100%;
  height: 0;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.05);
  transition: background 0.35s cubic-bezier(0.104, 0.204, 0.492, 1) 0.25s, height 0.35s cubic-bezier(0.104, 0.204, 0.492, 1) 0s;
}

/* SPハンバーガーメニュー */

#g-header .menu-icon {
  position: relative;
  z-index: 10;
  display: none;
  cursor: pointer;
  width: 20px;
  height: 15px;
}

#g-header .menu-icon span,
#g-header .menu-icon span:before,
#g-header .menu-icon span:after {
  content: "";
  position: absolute;
  height: 3px;
  width: 100%;
  border-radius: 2px;
  background-color: var(--main-color-orange);
}

#g-header .menu-icon span:before,
#g-header .menu-icon span:after {
  transition: all 0.3s ease;
}

#g-header .menu-icon span {
  top: 50%;
  transform: translateY(-50%);
}

#g-header .menu-icon span:before {
  top: -6px;
}

#g-header .menu-icon span:after {
  bottom: -6px;
}

#g-header .menu-icon.open span {
  background-color: transparent;
}

#g-header .menu-icon.open span:before,
#g-header .menu-icon.open span:after {
  top: 0;
  transform: rotate(225deg);
}

#g-header .menu-icon.open span:after {
  transform: rotate(-45deg);
}

.recruit_btn a {
  background: #E94709;
  border-radius: 50px;
  text-align: center;
  color: #fff;
  width: 112px!important;
}

.recruit_btn a span {
  color: #fff!important;
}

.recruit_btn a {
    background: #E94709;
    border-radius: 50px;
    text-align: center;
    color: #fff;
    width: 112px !important;
    height: 38px;
    line-height: 36px;
    padding: 0 !important;
    font-size: 14px;
}

.fv {
  position: relative;
}

.fv_img {
  width: 100%;
}

.fv_img img {
  width: 100%;
	object-fit: cover;
	height: 650px;
}

.fv_txt {
  margin: 0 auto;
  max-width: 1040px;
}

.fv_txt img {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 620px;
  height: auto;
}

.about {
	background-image: url(../img/about_back_img.png);
	margin-top: 80px;
	padding-top: 60px;
	height: 580px;
}

.about_left {
	max-width: 1080px;
	margin: 0 auto;
}

.about_left p {
	font-style: 16px;
	color: #fff;
	line-height: 1.8;
	padding-top: 40px;
	max-width: 520px;
	text-align: justify;
}

.about_left h2 {
	font-size: 65px;
	color: #fff;
	padding-bottom: 10px;
}

.about_ttx img {
	height: 37px;
	width: auto;
}

.about_left {
	padding-top: 80px;
}

.about_left p {
	font-size: 16px;
}

.about_ttx {
	width: 192px;
	height: 37px;
	line-height: 35px;
	text-align: center;
	background: #E94709;
	font-size: 18px;
	color: #fff;
}

.addr {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 10px;
}

.addr img {
	width: 15px;
	height: auto;
}

.addr p {
	font-size: 14px;
	color: #fff;
}

.service {
	padding-top: 80px;
	padding-bottom: 10px;
}

.content_ttl {
	text-align: center;
}

.content_ttl h2 {
	font-size: 65px;
	color: #2C2C2C;
	text-align: center;
}

.content_ttl h3 {
	font-size: 18px;
}

.content_ttl img {
	height: 26px;
	width: auto;
}

.about-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: calc(100% - 120px); /* 右に120pxの余白を確保 */
  background-image: url('../img/about_back_img');
  background-size: cover;
  background-position: left center;
  z-index: 1;
}

.about_box {
	position: relative;
}

.about_right {
  position: absolute;
  top: 0;
  right: 0;
}

.company_img img {
	height: 490px;
  width: 600px;
  z-index: 2;
  object-fit: cover;
}

.u-container--xxxl {
    margin-left: auto;
    margin-right: auto;
    max-width: 1600px;
		padding-top: 60px;
}

.news_list {
	display: flex;
	gap: 40px 10px;
	flex-wrap: wrap;
}

.event-card {
	width: calc((100% - 30px) / 4);
	background: #fff;
	box-shadow: 0 0 30px rgba(0, 0, 0, .1);
	border-radius: 10px;
}

.event-image img {
	border-radius: 10px 10px 0 0;
}

.event-text {
	padding: 10px;
	padding-bottom: 20px;
	border-radius: 0 0 10px 10px;
}

.event-text p {
	padding-top: 10px;
	white-space: nowrap;
	font-size: 15px;
}

time {
	font-size: 15px;
}

.event-card:hover {
	opacity: 0.8;
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.event-image img {
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1280 / 720;
  height: auto;
}

.news_list {
	max-width: 1080px;
	margin: 0 auto;
	padding-top: 60px;
}

.news_list a {
	color: #2C2C2C;
}

time {
	color: #959595;
}

.more_btn {
	margin-top: 60px;
}

.more_btn a {
	text-align: center;
	margin: 0 auto;
}

.company {
	padding-top: 80px;
	padding-bottom: 100px;
	background: #FFF2EF;
}

.ss {
	padding-bottom: 80px;
}

@media screen and (max-width: 1650px) {
    .u-container--xxxl {
        padding-left:30px;
        padding-right: 30px
    }
}

@media screen and (max-width: 768px) {
    .u-container--xxxl {
        padding-left:3%;
        padding-right: 3%
    }

		.c-button--bg {
			width: 230px;
			height: 42px;
			line-height: 40px;
		}
}

.u-container--xxl {
    margin-left: auto;
    margin-right: auto;
    max-width: 1400px
}

@media screen and (max-width: 1450px) {
    .u-container--xxl {
        padding-left:30px;
        padding-right: 30px
    }
}

@media screen and (max-width: 768px) {
    .u-container--xxl {
        padding-left:3%;
        padding-right: 3%
    }
}

.u-container--xl {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px
}

@media screen and (max-width: 1250px) {
    .u-container--xl {
        padding-left:30px;
        padding-right: 30px
    }
}

@media screen and (max-width: 768px) {
    .u-container--xl {
        padding-left:3%;
        padding-right: 3%
    }
}

.u-container--lg {
    margin-left: auto;
    margin-right: auto;
    max-width: 1000px
}


@media screen and (max-width: 1050px) {
    .u-container--lg {
        padding-left:30px;
        padding-right: 30px
    }
}

@media screen and (max-width: 768px) {
    .u-container--lg {
        padding-left:3%;
        padding-right: 3%
    }
}

.u-container--md {
    margin-left: auto;
    margin-right: auto;
    max-width: 768px
}

@media screen and (max-width: 818px) {
    .u-container--md {
        padding-left:30px;
        padding-right: 30px
    }
}

@media screen and (max-width: 768px) {
    .u-container--md {
        padding-left:3%;
        padding-right: 3%
    }
}

.u-container--sm {
    margin-left: auto;
    margin-right: auto;
    max-width: 576px
}

@media screen and (max-width: 626px) {
    .u-container--sm {
        padding-left:30px;
        padding-right: 30px
    }
}

@media screen and (max-width: 768px) {
    .u-container--sm {
        padding-left:3%;
        padding-right: 3%
    }
}

.u-container--sp {
    margin-left: auto;
    margin-right: auto;
    max-width: 768px
}

@media screen and (max-width: 818px) {
    .u-container--sp {
        padding-left:30px;
        padding-right: 30px
    }
}

@media screen and (max-width: 768px) {
    .u-container--sp {
        padding-left:3%;
        padding-right: 3%
    }
}

.u-container--hamNav {
    margin-left: auto;
    margin-right: auto;
    max-width: 1100px
}

@media screen and (max-width: 1150px) {
    .u-container--hamNav {
        padding-left:30px;
        padding-right: 30px
    }
}

@media screen and (max-width: 768px) {
    .u-container--hamNav {
        padding-left:3%;
        padding-right: 3%
    }
}

.u-photo img {
    width: 100%;
    height: auto;
    display: block
}

.p-top__technology__tl {
	display: flex;
	gap: 10px;
	align-items: center;
}

.p-top__technology__tl img {
	height: 30px;
	width: auto;
}


.p-top__technology__box {
    display: flex;
    margin-bottom: 8em;
    align-items: flex-start;
    position: relative;
}

.p-top__technology__box:before {
    content: "";
    width: 100%;
    height: calc(100% - 100px);
    display: block;
    background: #FFF2EF;
    z-index: 1;
    position: absolute;
    top: 150px;
}



@media screen and (max-width: 1000px)and (orientation: portrait) {
    .p-top__technology__box:before {
        top:30px;
        height: calc(100% - 0px);
        width: 85%
    }
}

.p-top__technology__box:nth-child(odd) {
    flex-direction: row
}

.p-top__technology__box:nth-child(odd):before {
    left: 100px
}

@media screen and (max-width: 1000px)and (orientation: portrait) {
    .p-top__technology__box:nth-child(odd):before {
        left:15%
    }
}

@media screen and (max-width: 1000px)and (orientation: portrait) {
    .p-top__technology__box:nth-child(odd) .p-top__technology__photo {
        margin-left:0;
        margin-right: auto
    }
}

.p-top__technology__box:nth-child(odd) .p-top__technology__text {
    margin-left: -80px
}

@media screen and (max-width: 1000px)and (orientation: portrait) {
    .p-top__technology__box:nth-child(odd) .p-top__technology__text {
        margin-right:0;
        margin-left: auto
    }
}

.p-top__technology__box:nth-child(even) {
    flex-direction: row-reverse
}

.p-top__technology__box:nth-child(even):before {
    right: 100px
}

@media screen and (max-width: 1000px)and (orientation: portrait) {
    .p-top__technology__box:nth-child(even):before {
        right:15%
    }
}

@media screen and (max-width: 1000px)and (orientation: portrait) {
    .p-top__technology__box:nth-child(even) .p-top__technology__photo {
        margin-right:0;
        margin-left: auto
    }
}

.p-top__technology__box:nth-child(even) .p-top__technology__text {
    margin-right: -80px
}

@media screen and (max-width: 1000px)and (orientation: portrait) {
    .p-top__technology__box:nth-child(even) .p-top__technology__text {
        margin-left:0;
        margin-right: auto
    }
}

@media screen and (max-width: 1000px)and (orientation: portrait) {
    .p-top__technology__box {
        display:block;
        margin-bottom: 80px
    }
}


.p-top__technology__tl {
	font-size: 26px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
    .p-top__technology__tl {
        font-size:18px;
    }
}

.p-top__technology__photo {
    width: 50%;
    position: relative;
    z-index: 2;
		box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

@media screen and (max-width: 1000px)and (orientation: portrait) {
    .p-top__technology__photo {
        width:90%
    }
}

.p-top__technology__inner {
    padding: 30px 40px 0;
    box-shadow: 0 0 30px rgba(0,0,0,.1);
    background: #fff;
    transition: .3s box-shadow;
    display: block;
		min-height: 282px;
}

.p-top__technology__inner:hover {
    box-shadow: 0 0 30px rgba(0,0,0,.15)
}

.p-top__technology__inner:hover .u-text-arrow:after {
    right: 0
}

@media screen and (max-width: 768px) {
    .p-top__technology__inner {
        padding:6%;
        margin-top: -20px
    }

		.p-top__technology__tl img {
			height: 26px;
			width: auto;
		}
}

.p-top__technology__text {
    width: 50%;
    position: relative;
    z-index: 3;
    margin-top: 40px;
    min-width: 500px
}

@media screen and (max-width: 1000px)and (orientation: portrait) {
    .p-top__technology__text {
        width:95%;
        margin-top: 0;
        min-width: inherit
    }
}

@media screen and (max-width: 768px) {
    .p-top__technology__text .c-button--bg {
        font-size:16px;
    }
}

.p-top__technology__illust {
    position: absolute;
    top: -70px;
    right: 70px
}

@media screen and (max-width: 768px) {
    .p-top__technology__illust {
        right:auto;
        left: 0;
        top: auto;
        bottom: -5vw
    }

    .p-top__technology__illust img {
        width: 30vw;
        height: auto
    }

		.p-top__technology__inner {
				min-height: auto;
		}
}

.p-top__technology__catch {
    letter-spacing: 2px;
    color: #1572c0;
    font-size: 2rem;
    margin-bottom: 1em;
    font-weight: bold
}

@media screen and (max-width: 1200px) {
    .p-top__technology__catch {
        letter-spacing:1px;
        font-size: 1.7rem
    }
}

@media screen and (max-width: 768px) {
    .p-top__technology__catch br {
        display:none
    }

		.company {
			padding-top: 60px;
			padding-bottom: 60px;
			background: #FFF2EF;
		}
}

.p-top__technology__sentence {
    line-height: 2;
		margin: 20px 0 40px;
}

.c-button:after, .c-button--next a:after, .c-button--prev a:after, .c-button--index a:after, .c-button--white:after, .c-button--orange--bg:after, .c-button--orange:after, .c-button--bg:after {
    content: "";
    background: url(../img/ico_arrow_right_white.png) center / contain no-repeat;
    width: 16px;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 25px;
    transition: .3s right;
}

.c-button--bg {
    position: relative;
    text-align: center;
    max-width: 256px;
    display: block;
    border-radius: 100px;
    font-size: 18px;
    background: #fff;
		height: 54px;
		line-height: 52px;
}

.c-button--bg {
    background: #E94709;
    color: #fff;
}

.table {
    background-color: #fff;
    color: #1a1a1a;
		border-collapse: collapse;
		max-width: 960px;
		margin: 0 auto;
		margin-top: 60px;
}

.table td,.table th {
    border: 1px solid #ACACAC;
    border-width: 1px 0 0;
    padding: 1em 1.2em;
    vertical-align: top
}

.table td.is-white,.table th.is-white {
    background-color: #fff;
    border-color: #fff;
    color: #0f0f0f
}

.table td.is-black,.table th.is-black {
    background-color: #0f0f0f;
    border-color: #0f0f0f;
    color: #fff
}

.table td.is-light,.table th.is-light {
    background-color: #F8F8F8;
    border-color: #F8F8F8;
    color: #1a1a1a
}

.table td.is-dark,.table th.is-dark {
    background-color: #1a1a1a;
    border-color: #1a1a1a;
    color: #F8F8F8
}

.table td.is-primary,.table th.is-primary {
    background-color: #1FAA75;
    border-color: #1FAA75;
    color: #fff
}

.table td.is-link,.table th.is-link {
    background-color: #1FAA75;
    border-color: #1FAA75;
    color: #fff
}

.table td.is-sub-cyan,.table th.is-sub-cyan {
    background-color: #39a8a9;
    border-color: #39a8a9;
    color: #fff
}

.table td.is-sub-pink,.table th.is-sub-pink {
    background-color: #f57a7a;
    border-color: #f57a7a;
    color: #fff
}

.table td.is-sub-blue,.table th.is-sub-blue {
    background-color: #4169c3;
    border-color: #4169c3;
    color: #fff
}

.table td.is-success,.table th.is-success {
    background-color: #56b771;
    border-color: #56b771;
    color: #fff
}

.table td.is-warning,.table th.is-warning {
    background-color: #F0E81A;
    border-color: #F0E81A;
    color: rgba(0,0,0,0.7)
}

.table td.is-danger,.table th.is-danger {
    background-color: #D34646;
    border-color: #D34646;
    color: #fff
}

.table td.is-narrow,.table th.is-narrow {
    white-space: nowrap;
    width: 1%
}

.table td.is-selected,.table th.is-selected {
    background-color: #1FAA75;
    color: #fff
}

.table td.is-selected a,.table td.is-selected strong,.table th.is-selected a,.table th.is-selected strong {
    color: currentColor
}

.table th {
    color: #1a1a1a
}

.table th:not([align]) {
    text-align: left
}

.table tr.is-selected {
    background-color: #1FAA75;
    color: #fff
}

.table tr.is-selected a,.table tr.is-selected strong {
    color: currentColor
}

.table tr.is-selected td,.table tr.is-selected th {
    border-color: #fff;
    color: currentColor
}

.table thead {
    background-color: rgba(0,0,0,0)
}

.table thead td,.table thead th {
    border-width: 0 0 2px;
    color: #1a1a1a
}

.table tfoot {
    background-color: rgba(0,0,0,0)
}

.table tfoot td,.table tfoot th {
    border-width: 2px 0 0;
    color: #1a1a1a
}

.table tbody {
    background-color: rgba(0,0,0,0)
}

.table.is-bordered td,.table.is-bordered th {
    border-width: 1px
}

.table.is-bordered tr:last-child td,.table.is-bordered tr:last-child th {
    border-bottom-width: 1px
}

.table.is-fullwidth {
    width: 100%
}

.table.is-hoverable tbody tr:not(.is-selected):hover {
    background-color: #FAFAFA
}

.table.is-hoverable.is-striped tbody tr:not(.is-selected):hover {
    background-color: #FAFAFA
}

.table.is-hoverable.is-striped tbody tr:not(.is-selected):hover:nth-child(even) {
    background-color: #F8F8F8
}

.table.is-narrow td,.table.is-narrow th {
    padding: 0.25em 0.5em
}

.table.is-striped tbody tr:not(.is-selected):nth-child(even) {
    background-color: #FAFAFA
}

.table.is-basic {
    border-top: 1px solid #DDD
}

.table.is-basic th,.table.is-basic td {
    display: block;
		font-size: 18px;
}

.table.is-basic .top {
    border-width: 1px 0 0
}

.table.is-basic th {
    padding-bottom: 0;
    border-width: 0
}

.table.is-basic td {
    padding-top: 0.5em;
    border-width: 0 0 1px 0
}

.maps {
	max-width: 960px;
	margin: 0 auto;
	margin-top: 40px;
}

.maps iframe {
	width: 100%;
}

.ss_list .table tr {
	border: none;
}

.ss_list .table tr th {
	background: #E94709;
	color: #fff;
	font-size: 18px;
	border: none;
}

.shop {
	text-decoration: underline;
}

.ss_list .table.is-basic th {
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		width: 16%!important;
		padding: 18px 0 18px 24px;
		letter-spacing: 0!important;
}

.ss_list .table.is-basic td {
		padding: 18px 0 18px 24px;
		font-size: 16px;
		letter-spacing: 0!important;
}

.ss_list .table.is-basic th.address {
	width: 44%!important;
}

.ss_list .table.is-basic th.shopttl {
	width: 24%!important;
}

@media screen and (min-width: 1024px) {
    .table.is-basic th,.table.is-basic td {
        padding:25px 30px
    }

    .table.is-basic th {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 280px;
    }

    .table.is-basic td {
        vertical-align: middle
    }

    .table.is-basic th,.table.is-basic td {
        display: table-cell;
        border-width: 1px 0 1px;
    }
}

.table.plan_table--sp {
    width: calc( 100% + 2px)
}

.table.plan_table--sp th {
    line-height: 1.6
}

.table.plan_table--sp thead {
    background: #1FAA75
}

.table.plan_table--sp thead th {
    color: #fff;
    text-align: center;
    border: none;
    padding: 0.7em 0.7em 0.8em
}

.table.plan_table--sp .plan_name .plan_name__en {
    font-size: 1.8rem
}

.table.plan_table--sp .plan_name .plan_name__jp {
    font-size: 1.1rem;
    padding: 0 0.5em
}

.table.plan_table--sp .plan_name .plan_name__sub {
    padding: 0 0.5em
}

.table.plan_table--sp .menu__ttl,.table.plan_table--sp .menu__ttl--sub {
    text-align: center
}

.table.plan_table--sp .menu__ttl {
    background: #F8F8F8;
    width: calc((100vw / 12) * 6.5)
}

.table.plan_table--sp .menu__ttl.is-detail {
    width: 100%;
    text-align: left;
    padding-top: 0.7em;
    padding-bottom: 0.8em
}

.table.plan_table--sp .menu__ttl--sub {
    font-weight: initial
}

.table.plan_table--sp .menu__propriety {
    text-align: center
}

.table.plan_table--sp .menu__propriety img {
    height: auto;
    vertical-align: middle
}

.table.plan_table--sp .menu__propriety.is-available img {
    width: 1.5em
}

.table.plan_table--sp .menu__propriety.is-request img {
    width: 1.8em
}

.table.plan_table--sp .menu__propriety.is-special img {
    width: 1.8em
}

.table.plan_table--sp .menu__detail {
    text-align: center
}

.table.plan_table--sp.is-ticket th,.table.plan_table--sp.is-ticket td {
    display: block;
    width: 100%
}

.table.plan_table--pc thead {
    background: #1B9869
}

.table.plan_table--pc thead th {
    color: #fff;
    text-align: center;
    border: none
}

.table.plan_table--pc thead .plan_ttl {
    line-height: 1.2;
    background: #1CA06E;
    padding: 1.5em 1.5em 1.6em
}

.table.plan_table--pc thead .plan_ttl .is-family-en {
    font-size: 2rem
}

.table.plan_table--pc thead .plan_ttl .plan_ttl__jp {
    font-size: 1.1rem
}

.table.plan_table--pc thead .plan_ttl .plan_ttl__sub {
    display: inline-block;
    padding-top: 0.3rem
}

.table.plan_table--pc thead .plan_ttl.__recommend {
    background: #1FAA75
}

.table.plan_table--pc thead .plan_ttl.__recommend .is-family-en {
    font-size: 2.4rem
}

.table.plan_table--pc thead .plan_ttl.__recommend .plan_ttl__jp {
    font-size: 1.2rem
}

.table.plan_table--pc .menu__ttl,.table.plan_table--pc .menu__ttl--sub,.table.plan_table--pc .menu__propriety {
    text-align: center;
    padding: 1.8em
}

.table.plan_table--pc .menu__ttl {
    background: #FAFAFA
}

.table.plan_table--pc .menu__ttl.is-detail {
    padding: 1.5rem;
    border-right: 1px solid #DDD
}

.table.plan_table--pc .menu__ttl--sub {
    font-weight: initial
}

.table.plan_table--pc .menu__propriety,.table.plan_table--pc .menu__detail {
    border-left: 1px solid #DDD;
    text-align: center
}

.table.plan_table--pc .menu__propriety img,.table.plan_table--pc .menu__detail img {
    vertical-align: middle
}

.table.plan_table--pc .menu__detail {
    vertical-align: middle
}

.table.plan_table--pc.is-ticket thead th:not(:last-of-type) {
    border-right: 1px solid #1a8a60
}

.table.plan_table--pc.is-ticket th,.table.plan_table--pc.is-ticket td {
    text-align: center
}

.table.plan_table--pc.is-ticket td {
    width: 30%;
    border-right: 1px solid #DDD
}

.plan_table--sp_wrapper {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #DDD;
    margin-bottom: 2rem
}

.plan_table--pc_wrapper {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #DDD
}

.table-container {
    -webkit-overflow-scrolling: touch;
    overflow: auto;
    overflow-y: hidden;
    max-width: 100%
}

@media screen and (min-width: 1001px) {
  #g-header .nav .nav-list li.has-menu > a.is-hover::before {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 82%;
    height: 3px;
    border-radius: 2px;
    background-color: var(--main-color-orange);
    content: "";
    transform: translateX(-50%);
  }

  #g-header .nav .nav-list .has-menu > a.is-hover::after {
    position: absolute;
    display: block;
    left: 50%;
    bottom: -5px;
    width: 0;
    height: 0;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--main-color-orange);
    border-left: 5px solid transparent;
    content: "";
    transform: translateX(-50%);
    z-index: 1;
  }

  #g-header .nav .nav-list > li > a.is-hover span,
  #g-header .nav .nav-list > li > a:hover span {
    color: var(--main-color-orange);
  }

  #g-header.is-open .has-menu:hover > .megamenu {
    opacity: 1;
    z-index: 3;
    pointer-events: auto;
    transition: z-index 0s ease 0.1s, opacity 0.25s cubic-bezier(0.104, 0.204, 0.492, 1) 0.2s, visibility 0.25s cubic-bezier(0.104, 0.204, 0.492, 1) 0.2s;
  }

  .megamenu .heading .web-btn a:hover {
    border: 2px solid #3ca53f;
  }

  .megamenu .heading .title a:hover .arrow {
    background-color: var(--main-color-orange);
  }

  .megamenu .heading .title a:hover .arrow::before {
    transform: translate(-50%, -50%);
    opacity: 1;
  }

  .megamenu .heading .title a:hover .arrow::after {
    transform: translate(calc(-50% + 16px), -50%);
    opacity: 0;
  }

  .megamenu .menu-list > li:not(.menu-title) a:hover span {
    color: var(--main-color-orange);
  }

  .megamenu .menu-list > li:not(.menu-title) a:hover .arrow::before {
    transform: translate(12px, 0);
    opacity: 1;
  }

  .megamenu .menu-list > li:not(.menu-title) a:hover .outer::before {
    transform: translate(12px, -12px);
    opacity: 1;
  }

  .megamenu .menu-list > li:not(.menu-title) a:hover .arrow::after {
    transform: translate(100%, 0);
    opacity: 0;
  }

  .megamenu .menu-list > li:not(.menu-title) a:hover .outer::after {
    transform: translate(100%, -100%);
    opacity: 0;
  }
}

footer {
	background: #2D2D2D;
	width: 100%;
}

.foot {
	display: flex;
	align-items: center;
	text-align: center;
	margin: 0 auto;
	padding: 30px 49px;
	max-width: 100%;
	gap: 40px;
}

.foot_sns {
	display: flex;
	gap: 20px;
	justify-content: center;
	padding-bottom: 30px;
	padding-top: 30px;
}

.foot_logo a p {
	font-size: 16px;
}

.foot_sns a img {
	height: 40px;
	width: 40px;
}

.foot_logo img {
	height: 40px;
	width: auto;
}

.foot_logo a {
	gap: 10px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.foot_logo a:hover {
	opacity: 0.8;
	filter: alpha(opacity=80);
	-moz-opacity: 0.8;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

.foot_logo a p {
	font: 14px;
	color: #fff;
}

.logo a {
	display: flex;
	gap: 10px;
	font-size: 16px;
	align-items: center;
}

.foot_link {
	display: flex;
	flex-wrap: wrap;
	gap:40px;
	justify-content: center;
}

.foot_link a {
	color: #fff;
	font-size: 16px;
}

.copy {
	color: #fff;
	font-size: 14px;
	margin-left: auto;
}

.fv_txt {
	padding-left: clamp(120px, 5vw, 80px);
  max-width: none;
}

.fv_txt img {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 100%;
  height: auto;
	width: clamp(240px, 46vw, 960px);
}

.news {
	padding-top: 80px;
}

.company_table_inner {
	max-width: 960px;
	margin: 0 auto;
}

.company_table {
	padding: 35px 50px 60px;
	border-radius: 20px;
	background: #fff;
	margin-top: 60px;
}

.company_table .table {
	margin-top: 0;
	border-top: none!important;
	max-width: 100%;
}

.border-top-none {
	border-top: none!important;
}

.company_table .table th {
	border-bottom: 2px solid #E94709;
	width: 200px;
}

.company_table .table td {
	border-bottom: 2px solid #DDD;
	padding-left: 80px;
}

.border-top-none th, .border-top-none td{
	border-top: none!important;
}

a.ss-button {
	letter-spacing: 0.2px!important;
	text-align: left;
	padding-left: 25px;
	box-sizing: border-box;
}

a.ss-button:after {
	right: 20px;
}

@media screen and (max-width: 1000px) {

	.p-top__technology__sentence {
	    line-height: 1.7;
			font-size: 14px;
	    margin: 20px 0 20px;
	}

	.company_table_inner {
		padding-left: 20px;
		padding-right: 20px;
		box-sizing: border-box;
	}

  #g-header {
    width: calc(100% - 16px);
    margin: 10px 8px 0;
    border-radius: 8px;
    transition: padding-bottom 0.2s ease;
  }

  #g-header.is-open {
    padding-bottom: 10px;
  }

	.company_table {
		padding: 20px 20px 30px;
	}

  #g-header .wrap {
    height: 60px;
    padding: 0 22px 0 16px;
  }

  #g-header .logo a {
    line-height: 22.2px;
  }

  #g-header .logo a img {
    width: auto;
    height: 30px;
  }

  #g-header .nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 8px;
    width: calc(100% - 16px);
    height: auto;
    max-height: calc(100% - 80px);
    margin-top: 13px;
    padding: 0 0 21px;
    border-top: 1px solid #efefef;
    border-radius: 0 0 12px 12px;
    background-color: #fff;
    overflow: scroll;
  }

  #g-header .nav a {
    display: block;
  }

  #g-header .nav > ul {
    padding: 0 20px;
  }

  #g-header .nav ul li.unit {
    padding-left: 5px;
    border-bottom: 1px solid #efefef;
    line-height: 64px;
  }

  #g-header .nav ul li.unit:has(.has-menu.is-active) {
    border-bottom: none;
  }

  #g-header .nav ul li.unit > .has-menu span {
    padding-left: 3px;
  }

  #g-header .nav ul li.unit > .has-menu {
    position: relative;
    display: flex;
    align-items: center;
    column-gap: 5px;
    font-weight: 700;
    letter-spacing: -0.01em;
  }

  #g-header .nav ul li.unit > .has-menu::before {
    position: absolute;
    right: 5px;
    top: 50%;
    width: 20px;
    height: 20px;
    background: url(/assets/images/icon-plus_gray.svg) center center / cover no-repeat;
    transform: translateY(-50%);
    content: "";
  }

  #g-header .nav ul li.unit > .has-menu.is-active::before {
    background: url(/assets/images/icon-minus_gray.svg) center center / cover no-repeat;
  }

  #g-header .nav ul li.unit > ul > li {
    padding: 12.5px 0 12.5px 14px;
    line-height: 1.5;
    /* padding-left: 14px; */
    /* line-height: 46px; */
  }

  #g-header .nav ul li.unit > ul li a.has-menu {
    position: relative;
  }

  #g-header .nav ul li.unit > ul li a.has-menu::before,
  #g-header .nav ul li.unit > ul li a.has-menu::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 14px;
    margin: auto;
    width: 12px;
    height: 1px;
    border-radius: 2px;
    border-bottom: 2px solid var(--main-color-orange);
    transition: transform 0.2s ease;
    content: "";
  }

  #g-header .nav ul li.unit > ul li a.has-menu:after {
    transform: rotate(90deg);
  }

  #g-header .nav ul li.unit > ul li a.has-menu.is-active:after {
    transform: rotate(0);
  }

  #g-header .nav ul li.unit > ul > li > a:not(.has-menu) {
    position: relative;
  }

  #g-header .nav ul li.unit > ul > li > a:not(.has-menu)::before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto;
    width: 20px;
    height: 20px;
    background: url(/assets/images/icon-arrow-orange.svg) center center / cover no-repeat;
    content: "";
  }

  #g-header .nav ul li.unit > ul > li + li {
    border-top: 1px solid #fff;
  }

  #g-header .nav ul li.unit ul > li > a span {
    display: block;
    width: calc(100% - 40px);
    font-size: 0.875em;
    font-weight: 700;
  }

  #g-header .nav ul li.unit ul > li > ul {
    display: none;
    /* padding-bottom: 14px; */
  }

  #g-header .nav ul li.unit ul > li > ul > li:first-child {
    /* margin-top: -10px; */
    margin-top: 10px;
  }

  #g-header .nav ul li.unit ul > li > ul > li {
    padding: 5px 0 5px 11px;
    line-height: 30px;
    line-height: 1.5;
  }

  #g-header .nav ul li.unit ul > li > ul > li a span {
    font-size: 0.8125em;
    font-weight: 400;
  }

  #g-header .nav ul li.unit > ul:has(.has-menu) {
    /* padding-bottom: 12px; */
  }

  #g-header .nav ul li.unit > ul {
    display: none;
    /* padding-top: 5px; */
    background-color: #efefef;
    border-radius: 8px;
  }

  #g-header .nav .banner {
    margin-top: 39px;
    text-align: center;
  }

  #g-header .nav .banner a {
    display: inline-block;
    width: 88.86%;
    max-width: 400px;
    margin: 0 auto;
  }

  #g-header .nav .banner a img {
    width: 100%;
  }

	.company_table {
		margin-top: 30px;
	}

	.table.is-basic th, .table.is-basic td {
		font-size: 16px;
	}

  /* ナビボタン */

  #g-header .menu-icon {
    display: block;
  }

  /* ナビゲーションが開いた時 */
  #g-header.open .nav-btn span {
    width: 0;
  }

  #g-header.open .nav-btn span::before {
    top: 0;
    transform: translate(-50%, -50%) rotate(135deg);
  }

  #g-header.open .nav-btn span::after {
    bottom: 0;
    transform: translate(-50%, -50%) rotate(-135deg);
  }

  /* dropdown-menu */
  .dropdown-menu {
    display: none;
  }
}

.lower_fv_img img {
	width: 100%;
}

.lower_fv_txt {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	width: 100%;
	text-align: center;
}

.lower_fv_txt h2 {
	font-size: 46px;
	margin: 0;
	padding: 0;
	padding-bottom: 20px;
	color: #fff;
}

.lower_fv_txt p {
	font-size: 16px;
	margin: 0;
	padding: 0;
	line-height: 1.8;
	text-align: left;
	display: inline-block;
	color: #fff;
}

.lower_contents {
	max-width: 1040px;
	margin: 0 auto;
	padding-top: 60px;
	padding-bottom: 80px;
}

.lower_contents_ttl {
  position: relative;
  display: inline-block;
  width: 100%;
}

.lower_contents_ttl::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px; /* 下線の太さ */
  width: 100%;
  background: linear-gradient(to right, #E94709 0px, #E94709 180px, #E6E6E6 180px, #E6E6E6 100%);
}

.lower_contents_ttl h3 {
	padding-bottom: 15px;
	font-size: 26px;
}

.lower_double {
	display: flex;
	gap: 80px;
	flex-wrap: wrap;
	padding-top: 20px;
	padding-bottom: 60px;
}

.lower_left {
	width: calc(50% - 40px);
}

.lower_left p {
	text-align: justify;
	font-size: 16px;
	line-height: 2;
}

.lower_right {
	width: calc(50% - 40px);
}

.lower_right img {
	width: 100%;
}

.shop_list {
	display: flex;
	flex-wrap: wrap;
	gap:40px 25px;
	align-items: stretch;
	padding-top: 20px;
}

.shop_info {
	display: flex; /* ← Flexbox を有効にする */
  flex-direction: column; /* 縦並びにする */
  justify-content: space-between; /* 上部と下部を離す */
  width: calc((100% - 75px) / 4);
  box-sizing: border-box;
}

.shop_info a {
	margin-top: auto;
}

.shop_info img {
	width: 100%;
}

.shop_info h3 {
	font-size: 16px;
	padding: 0;
	margin: 0;
	padding-top: 10px;
	padding-bottom: 10px;
	text-align: center;
}

.shop_info p {
	font-size: 16px;
	padding: 0;
	margin: 0;
	padding-top: 0px;
	padding-bottom: 20px;
	text-align: center;
}

.c-button--bg2:after {
	right: 20px;
}

.c-button--bg2{
	text-align: left;
	padding-left: 45px;
	box-sizing: border-box;

	display: block;
	border-radius: 100px;
	font-size: 16px;
	height: 50px;
	line-height: 48px;
}

.lower_contents_single {
	padding-top: 140px;
}

.blog_img {
	padding: 40px 10%;
}

.article_inner time {
	font-size: 16px;
}

.blog_img img {
	width: 100%;
	object-fit: cover;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
	padding: 0;
	margin: 0;
	padding-bottom: 40px;
}

.breadcrumb li:not(:last-of-type)::after {
  content: "›";
  margin: 0 14px;
  color: #2A2625;
}

.topback {
	padding-bottom: 20px;
}

.topback a {
	color: #2A2625;
	font-size: 16px;
	line-height: 1.8;
}

.topback a i {
	font-size: 14px;
	margin-right: 10px;
}

.breadcrumb li a {
	color: #2A2625;
}

.article_inner p {
	font-size: 16px;
	line-height: 1.8;
}

.article_inner h2 {
	font-size: 26px;
	padding-bottom: 10px;
}

@media screen and (max-width: 767px) {
    .c-button--bg {
        width: 230px;
        height: 42px;
        line-height: 40px;
				font-size: 16px;
    }

		.more_btn {
		    margin-top: 40px;
		}

		.lower_contents {
			padding-bottom: 60px;
		}
}

@media screen and (max-width: 767px) {

	.topback a {
		color: #2A2625;
		font-size: 14px;
		line-height: 1.8;
	}

	.topback a i {
		font-size: 12px;
		margin-right: 10px;
	}

	.breadcrumb {
		gap: 5px 0;
		padding-bottom: 30px;
	}

	.breadcrumb li a {
		font-size: 14px;
	}

	.article_inner h2 {
	    font-size: 18px;
	    padding-bottom: 10px;
	}

	.article_inner p {
		font-size: 14px;
	}

	.article_inner time {
	    font-size: 12px;
	}

	.blog_img {
	    padding: 0;
			margin-top:10px;
			margin-bottom: 20px;
	}

	.lower_contents_single {
		padding-top: 90px;
	}

	.lower_contents_archive {
		padding-left: 0!important;
		padding-right: 0!important;
		padding-top: 0;
	}

	.breadcrumb li {
		font-size: 14px;
		line-height: 1.5;
	}

	.sp_none {
		display: none;
	}

	.content_ttl h2 {
	   font-size: 38px;
	}

	.news {
		padding-top: 60px;
	}

	.content_ttl h3 {
		font-size: 16px;
	}

	.lower_fv_img img {
		height: 350px;
		object-fit: cover;
	}

	.lower_fv_txt {
		padding: 0 20px;
		box-sizing: border-box;
	}

	.lower_fv_txt h2 {

		padding-top: 30px;
	    font-size: 26px;
	}

	.lower_contents {
		padding-left: 20px;
		padding-right: 20px;
		box-sizing: border-box;
	}

	.lower_fv_txt p {
		text-align: justify;
	    font-size: 14px;
	}

	.lower_left,.lower_right {
	    width: 100%
	}

	.lower_contents_ttl h3 {
	    padding-bottom: 15px;
	    font-size: 18px;
	}

	.lower_left p{
		line-height: 1.8;
	    font-size: 14px;
	}

 span.arrow {
			position: absolute;
			top: 0;
			bottom: 0;
			right: 20px;
			margin: auto;
			display: block;
			width: 15px;
			height: 15px;
			border: 1px solid;
			border-color: #e5e5e4 #e5e5e4 transparent transparent;
			transform: rotate(45deg);
	}

	.lower_double {
		gap: 30px;
		padding-bottom: 40px;
	}

	.shop_list {
	    display: flex;
	    flex-wrap: wrap;
	    gap: 30px 20px;
	    align-items: stretch;
	    padding-top: 20px;
	}

	.shop_info h3 {
		font-size: 14px;
	}

	.shop_info p {
		font-size: 14px;
	}

	.shop_info {
	    display: flex;
	    flex-direction: column;
	    justify-content: space-between;
	    width: calc((100% - 20px) / 2);
	    box-sizing: border-box;
	}

	.event-card {
	    width: calc((100% - 10px) / 2);
	    background: #fff;
	    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
	    border-radius: 10px;
	}

	.c-button--bg2 {
	    text-align: left;
	    padding-left: 30px;
	    box-sizing: border-box;
	    display: block;
	    border-radius: 100px;
	    font-size: 12px;
			width: 100%;
	    height: 32px;
	    line-height: 30px;
	}

	.c-button:after, .c-button--next a:after, .c-button--prev a:after, .c-button--index a:after, .c-button--white:after, .c-button--orange--bg:after, .c-button--orange:after, .c-button--bg:after {
	    content: "";
	    background: url(../img/ico_arrow_right_white.png) center / contain no-repeat;
	    width: 12px;
	    height: 100%;
	}

	.news_list {
		padding-left: 20px;
		padding-right: 20px;
		box-sizing: border-box;
		padding-top: 40px;
		gap: 20px 10px;
	}




	.foot {
	    display: flex;
			flex-wrap: wrap;
	    align-items: center;
	    text-align: center;
	    margin: 0 auto;
	    padding: 20px 0px 10px;
	    max-width: 100%;
	    gap: 30px;
	}

	.foot_logo,.foot_link,.copy {
		width: 100%;
	}

	time {
		font-size: 10px;
	}

	.event-text p {
		font-size: 11px;
		letter-spacing: 0;
	}

	.about_box {
		padding-left: 20px;
		padding-right: 20px;
		box-sizing: border-box;
	}

	.about_right {
		position: relative;
	}

	.about_left h2 {
	    font-size: 40px;
	    color: #fff;
	    padding-bottom: 10px;
	}

	.about_left {
		padding-top: 0;
	}
	.company_img {
		padding-top: 20px;
	}

	.addr p {
		color: #2A2625;
		font-size: 12px;
	}

	.service {
	    padding-top: 220px;
	    padding-bottom: 10px;
	}

	.company_img img {
	    height: 340px;
	    width: 100%;
	    z-index: 2;
	    object-fit: cover;
	}


	.about_ttx {
	    width: 172px;
	    height: 32px;
	    line-height: 30px;
	    text-align: center;
	    background: #E94709;
	    font-size: 16px;
	    color: #fff;
	}

	.foot_logo img {
	    height: 30px;
	    width: auto;
	}

	.foot_logo a p {
	    font-size: 16px;
	}


	.foot_link a {
	    color: #fff;
	    font-size: 14px;
	}

	.copy {
	    color: #fff;
	    font-size: 12px;
	    margin-left: auto;
	}

	.maps iframe {
		height: 200px;
		object-fit: cover;
	}

	.fv_img img {
		height: auto;
	}

}

@media screen and (min-width: 768px) {
	.pc_none {
		display: none;
	}
}

@media (min-width: 768px) and (max-width: 1179px) {
	.lower_contents {
		padding-left: 20px;
		padding-right: 20px;
		box-sizing: border-box;
	}

	.c-button--bg2 {
	    text-align: left;
	    padding-left: 24px;
	    box-sizing: border-box;
	    display: block;
	    border-radius: 100px;
	    font-size: 14px;
	    height: 46px;
	    line-height: 44px;
	}

	.c-button:after, .c-button--next a:after, .c-button--prev a:after, .c-button--index a:after, .c-button--white:after, .c-button--orange--bg:after, .c-button--orange:after, .c-button--bg:after {
	    width: 14px;
	}

	.news_list {
		padding-left: 20px;
		padding-right: 20px;
		box-sizing: border-box;
	}

	.news_list_responsib {
		padding-left: 0px;
		padding-right: 0px;
	}

	time {
		font-size: 12px;
	}

	.about_box {
		padding-left: 20px;
	}

	.about_left p {
	    font-style: 14px!important;
	    color: #fff;
	    line-height: 1.7;
	    padding-top: 30px;
	    max-width: 45%;
	    text-align: justify;
	}

	.event-text p {
		font-size: 12px;
	}

	.lower_fv_txt h2 {
		font-size: 36px;
		padding-bottom: 10px;
	}

	.lower_fv_txt p {
		font-size: 14px;
	}

	.content_ttl h2 {
		font-size: 52px;
	}

	.about_left h2 {
		font-size: 52px;
	}

	.company_img img {
	    height: 390px;
	    width: auto;
	    z-index: 2;
	    object-fit: cover;
	}

	.about {
	    max-height: 480px;
	}

	.about_ttx {
	    width: 180px;
	    height: 34px;
	    line-height: 32px;
	    text-align: center;
	    background: #E94709;
	    font-size: 14px;
	    color: #fff;
	}

	.about_left {
		padding-top: 60px;
	}

	.p-top__technology__tl {
	    font-size: 20px;
	    font-weight: bold;
	}

	.p-top__technology__tl img {
	    height: 26px;
	    width: auto;
	}

	.p-top__technology__text {
	    min-width: 50%;
	}

	.p-top__technology__sentence {
	    line-height: 2;
	    margin: 20px 0 20px;
	}

	.p-top__technology__inner {
	    padding: 20px 30px 0;
	    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
	    background: #fff;
	    transition: .3s box-shadow;
	    display: block;
	    min-height: 280px;
	}
}

@media (min-width: 768px) and (max-width: 940px) {
	.company_img img {
	    height: 320px;
	    width: auto;
	    z-index: 2;
	    object-fit: cover;
	}

	.about_left {
		padding-top: 20px;
	}

	.about_left p {
	    max-width: 43%;
			font-size: 14px!important;
	}
}

@media screen and (max-width: 1023px) {
	.sp_none2 {
		display: none;
	}


		.sp_list {
			margin-top: 40px;
				border-top: #e5e5e4 1px solid;
		}

		.list_sp {
			position: relative;
		}

		.list_sp a {
			font-size: 14px;
				display: block;
				padding: 20px 30px 20px 20px;
				border-bottom: #e5e5e4 1px solid;
				color: #2C2C2C;
		}

		.shopttl {
			font-size: 18px!important;
			font-weight: bold;
			padding-bottom: 5px;
		}


			.company_table .table th {
				border-bottom: none;

			}

			.company_table .table td {
				padding-left: 20px;
			}

			.table td, .table th {
				padding-left: 20px;
			}

			.company_table .table td {
				position: relative;
			}

		.company_table .table td::after {
		    content: "";
		    position: absolute;
		    bottom: -2px;
		    left: 0;
		    height: 2px;
		    width: 120px;
		    background: linear-gradient(to right, #E94709 0px, #E94709 180px, #E6E6E6 180px, #E6E6E6 100%);
		}
}

@media screen and (min-width: 1024px) {
	.pc_none2 {
		display: none;
	}
}
