@charset "UTF-8";
/*---------------------------------
  Basic
---------------------------------*/
html {
  scroll-behavior: smooth;
}

body {
	color: #2b2b2b;
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 500;
	line-height: 2em;
  letter-spacing: 0.05em;
	margin: 0;
	padding: 0;
  position: relative;
}

h1,h2,h3,h4,h5 {
  letter-spacing: 0.1em;
	margin: 0;
	padding: 0;
}

img {
	width: 100%;
	border: 0;
	vertical-align: bottom;
  display: block;
}

p,ul,li,dl,dt,dd,th,td {
	margin: 0;
	padding: 0;
}

ol,ul,li {
	list-style: none;
}

i {
	vertical-align: middle;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

::selection {
	background: #ffe3e0;
}

::-moz-selection {
	background: #ffe3e0;
}

@media screen and (max-width: 896px) {	
	body {
		min-width: 300px;
	}
}

/*---------------------------------
  ScrollTrigger
---------------------------------*/
.invisible {
  transition: all 1s ease;
  opacity: 0.0;
}

.visible {
  transition: all 1s ease;
  opacity: 1.0;
}

/*---------------------------------
  Link
---------------------------------*/
a:link, a:visited, a:hover, a:active {
	color: #2b2b2b;
	text-decoration: none;
}

.btn {
	max-width: 300px;
	color: #fff !important;
	font-weight: 600;
  text-align: center;
	letter-spacing: 0.1em;
	border-radius: 5em;
  background: linear-gradient(100deg, #ff9933 20%, #ff7166 80%);
	display: block;
  margin: 7em auto 0 auto;
	padding: 1.2em 2em;
	position: relative;
}

.btn:hover {
  background: linear-gradient(100deg, #ff9933 20%, #ff7166 100%);
  transition: 0.3s;
}

.btn_forward:after {
	content: "\f061";
	font-family: 'Font Awesome 5 Free';
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: #ff7166;
  font-size: 90%;
  text-align: center;
  letter-spacing: normal;
  border-radius: 50%;
  background: #fff;
	position: absolute;
	right: 1.5em;
}

.btn_forward:hover:after {
	right: 1.3em;
	transition: 0.3s;
}

.btn_back:after {
	content: "\f060";
	font-family: 'Font Awesome 5 Free';
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: #ff7166;
  font-size: 90%;
  text-align: center;
  letter-spacing: normal;
  border-radius: 50%;
  background: #fff;
	position: absolute;
	left: 1.5em;
}

.btn_back:hover:after {
	left: 1.3em;
	transition: 0.3s;
}

.btn_blank:after {
	content: "\f08e";
	font-family: 'Font Awesome 5 Free';
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: #ff7166;
  font-size: 90%;
  text-align: center;
  letter-spacing: normal;
  border-radius: 50%;
  background: #fff;
	position: absolute;
	right: 1.5em;
}

.btn_blank:hover:after {
	right: 1.3em;
	transition: 0.3s;
}

@media print, screen and (max-width: 896px) {
  .btn {
    margin-top: 5em;
  }
}

/*---------------------------------
  Common
---------------------------------*/
.contents_wrap {
  margin-top: 10em;
}

.wrapper {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 2em;
}

.index_wrap h2 {
  width: fit-content;
  font-size: clamp(24px, 4vw, 48px);
  line-height: 1.8em;
  margin-bottom: 1em;
  position: relative;
}

.index_wrap h2 span {
  color: #c0c4cc;
  font-size: clamp(12px, 2vw, 18px);
  line-height: 1.5em;
  display: block;
}

.index_wrap h2:before {
  content: '';
  width: 100px;
  height: 7px;
  background: linear-gradient(100deg, #ff9933 20%, #ff7166 80%);
  display: block;
  margin-bottom: 1em;
}

.page_wrap {
  padding-top: 1em;
}

.page_wrap h3 {
  width: fit-content;
  font-size: clamp(21px, 2.5vw, 32px);
  line-height: 1.8em;
  position: relative;
}

.page_wrap h3 span {
  color: #c0c4cc;
  font-size: clamp(12px, 2vw, 14px);
  line-height: 1.5em;
  display: block;
}

.page_wrap h3:before {
  content: '';
  width: 70px;
  height: 3px;
  background: linear-gradient(100deg, #ff9933 20%, #ff7166 80%);
  display: block;
  margin-bottom: 1em;
}

.index_text_box {
  font-size: clamp(14px, 2vw, 18px);
}

.page_title_box {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-bottom: 5em;
}

.page_title_box h3 {
  width: 30%;
}

.page_text_box {
  width: 70%;
  font-size: clamp(14px, 1.7vw, 18px);
}

.text_box p:nth-child(n+2) {
  margin-top: 1em;
}

.list_disc li {
  list-style: disc inside;
  text-indent: -1.3em;
  padding-left: 1.3em;
}

@media print, screen and (max-width: 896px) {
  .contents_wrap {
    margin-top: 5em;
  }
  
  .wrapper {
    padding: 0 6%;
  }
  
  .index_wrap h2:before {
    height: 5px;
  }
  
  .index_text_box br {
    display: none;
  }
  
  .page_title_box {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 4em;
  }
  
  .page_title_box h3 {
    width: 100%;
    margin-bottom: 2em;
  }
  
  .page_text_box {
    width: 100%;
  }
  
  .page_text_box br {
    display: none;
  }
}

/*---------------------------------
  Page_main_title
---------------------------------*/
.page_main_title_wrap {
  position: relative;
}

.pan_box {
  height: 120px;
  font-size: clamp(12px, 1.5vw, 14px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  transform: rotate(90deg);
  transform-origin: top left;
  position: absolute;
  top: 2em;
  left: 120px;
}

.pan_box,
.pan_box a {
  color: #a1a7b3;
}

.pan_box li:first-of-type:before {
	content: "\f015";
	font-family: "Font Awesome 5 Free";
  font-weight: 600;
  margin-right: 0.5em;
}

.pan_box li:nth-of-type(n+2):before {
	content: "\f105";
	font-family: "Font Awesome 5 Free";
  font-weight: 600;
  padding: 0 1em;
}

.pan_box a:hover {
  border-bottom: solid 1px #a1a7b3;
}

.page_main_title_content {
  width: 85%;
  margin-left: auto;
  position: relative;
}

.page_main_title_thumb {
  position: relative;
}

.page_main_title_thumb:after {
  content: '';
  width: 35%;
  height: 100px;
  border-radius: 0 4em 0 0;
  background: #fff;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
}

.page_main_title_thumb img {
  height: 330px;
  object-fit: cover;
  border-radius: 4em 0 0 0;
}

.page_main_title_content h2 {
  font-size: clamp(24px, 4vw, 48px);
  line-height: 1.8em;
  margin-left: -1em;
  position: relative;
  z-index: 1;
}

.page_main_title_content h2 span {
  color: #c0c4cc;
  font-size: clamp(12px, 2vw, 18px);
  line-height: 1.5em;
  display: block;
}

.page_main_title_content h2:before {
    content: '';
    width: 100px;
    height: 7px;
    background: linear-gradient(100deg, #ff9933 20%, #ff7166 80%);
    display: block;
    margin-bottom: 1em;
}

@media print, screen and (max-width: 896px) {
  .pan_box {
    height: 120px;
    top: 1em;
    left: 80px;
  }
  
  .page_main_title_thumb:after {
    width: 70%;
    height: 80px;
  }
  
  .page_main_title_content h2:before {
    height: 5px;
  }
}

/*---------------------------------
  Text_curtain
---------------------------------*/
.text_curtain {
  color: transparent;
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.text_curtain:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #233142;
  z-index: 1;
  transition: height 0.5s ease-out;
  clip-path: inset(0 100% 0 0);
}

.text_curtain.reveal:before {
  height: 100%;
  transition: height 0.5s ease-out;
  clip-path: inset(0 0 0 0);
}

.text_curtain.reveal.done:before {
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.5s ease-out;
}

.text_curtain.reveal.done {
  color: inherit;
}

.index_wrap .text_curtain.reveal.done {
  color: #fff;
}

/*---------------------------------
  Scroll_up
---------------------------------*/
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}

.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}

/*---------------------------------
  Header
---------------------------------*/
header {
  padding: 0 0 0 4%;
}

.header_content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.header_content h1 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-right: auto;
}

.header_content h1 img {
  max-width: 200px;
}

.header_content h1 span {
  font-size: 12px;
  padding: 0 1em;
}

.header_content h1 a:hover {
  opacity: 0.7;
  transition: 0.3s;
}

.header_box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.header_box nav {
  display: flex;
  flex-wrap: wrap;
}

.header_box nav li a {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
  margin: 0 0.5em;
  padding: 0 5px;
}

.header_box nav li a:before {
  content: '';
  height: 2px;
  background: linear-gradient(100deg, #ff9933 20%, #ff7166 80%);
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  -webkit-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  z-index: -1;
}

.header_box nav li a:hover:before,
.header_box nav li a:focus:before,
.header_box nav li a:active:before {
  right: 0;
}

.header_entry_btn {
  color: #fff !important;
  background: linear-gradient(100deg, #ff9933 10%, #ff7166 80%);
  margin-left: 2em;
  padding: 2em 2.5em;
}

.header_entry_btn:before {
	content: "\f090";
	font-family: 'Font Awesome 5 Free';
  font-weight: 600;
  margin-right: 1em;
}

.header_entry_btn:hover {
  background: linear-gradient(100deg, #ff9933 20%, #ff7166 100%);
  transition: 0.3s;
}

@media print, screen and (max-width: 1070px) {
  header {
    padding: 1em 4%;
  }
  
  .header_box nav,
  .header_entry_btn {
    display: none;
  }
}

@media print, screen and (max-width: 896px) {
  .header_content h1 img {
    width: 165px;
  }
}

/*---------------------------------
  Burger
---------------------------------*/
.burger_area {
	position: absolute;
	top: 5px;
	right: 0;
}

.btn_burger {
	display: flex;
	justify-content: flex-end;
}

.btn_burger a {
  position: relative;
  width: 30px;
  height: 58px;
	display: block;
  cursor: pointer;
	margin: 15px;
  z-index: 30;
}

.btn_burger a,
.btn_burger a span {
	display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}

.btn_burger a span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(100deg, #ff9933 20%, #ff7166 80%);
}

.btn_burger a span:nth-of-type(1) {
  top: 0;
}

.btn_burger a span:nth-of-type(2) {
  top: 11px;
}

.btn_burger a span:nth-of-type(3) {
  top: 22px;
}

.btn_burger a p {
  color: #a7aeb3;
  font-size: 11px;
  letter-spacing: normal;
  position: absolute;
  bottom: 0;
}

.btn_burger a.active span:nth-of-type(1) {
  background: #fff;
  -webkit-transform: translateY(11px) rotate(-45deg);
  transform: translateY(11px) rotate(-45deg);
}

.btn_burger a.active span:nth-of-type(2) {
  opacity: 0;
}

.btn_burger a.active span:nth-of-type(3) {
  background: #fff;
  -webkit-transform: translateY(-11px) rotate(45deg);
  transform: translateY(-11px) rotate(45deg);
}

.burger_content {
  width: 100%;
  height: 100%;
  background: rgba(35, 49, 66, 0.95);
  padding: 2em 4em 1em 0;
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  z-index: 10;
}

.burger_content.open {
	display: block;
}

.burger_content.close {
	display: none;
}

.burger_content .sitemap_box {
  width: 100%;
}

.burger_content .sitemap_box p:after {
  height: calc(100% - 170px);
}

.burger_content .sitemap_list {
  width: 100%;
}

.burger_content .sitemap_list dl dd ul {
  display: flex;
  flex-wrap: wrap;
}

.burger_content .sitemap_list dl dd ul li {
  width: 50%;
}

.burger_content .sitemap_list dl dt a {
  color: #fff;
}

@media print, screen and (min-width: 1071px) {
	.burger_area {
		display: none;
	}
}

/*---------------------------------

  Index

---------------------------------*/
/*---------------------------------
  Loading
---------------------------------*/
#loading_box {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#loading_box div {
  width: 30px;
  height: 30px;
  border: 3px solid #dcdfe1;
  border-top: 3px solid #ff7166;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 3em;
}

#loading_box img {
  width: 160px;
}

@keyframes spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*---------------------------------
  Index Hero
---------------------------------*/
.hero_wrap {
  width: 100%;
  height: 90vh;
  position: relative;
  overflow: hidden;
}

.hero_wrap:before {
  content: '';
  width: 100%;
  height: 55%;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -3;
  opacity: 0.2;
  animation: colorchange-color 10s infinite;
}

@keyframes colorchange-color {
  0%, 100% {
    background-color: #ff9933;
  }
  50% {
    background-color: #ff7166;
  }
}

.hero_box {
  padding: 2em;
}

.slick-slide:nth-of-type(even) {
  margin-top: 3em;
}

.hero_box img {
  height: 60vh;
  object-fit: cover;
  border-radius: 2em;
}

.hero_wrap h2 {
  font-size: clamp(16px, 2vw, 32px);
  position: absolute;
  left: 6%;
  bottom: 20%;
}

.hero_wrap h2 span {
  width: fit-content;
  background: #fff;
  display: block;
  padding: 0.7em 1em;
}

.hero_wrap h2 span:nth-of-type(n+2) {
  margin-top: 0.5em;
}

.hero_wrap .text_curtain.reveal.done:before {
  clip-path: inset(0 0 0 100%);
}

.hero_btn {
  width: 200px;
  height: 200px;
  position: absolute;
  bottom: 10%;
  right: 6%;
  z-index: 1;
}

.hero_btn:before {
  content: '';
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(100deg, #ff9933 20%, #ff7166 80%);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.hero_btn:hover:before {
  transform: scale(1.05);
  transition: 0.3s;
}

.flowing_text {
  width: 100vw;
  display: flex;
  position: absolute;
  bottom: 0;
  left: calc(50% - 50vw);
  padding: 3em 0;
  overflow: hidden;
  z-index: -2;
}

.flowing_text li {
  color: #fff;
  font-size: clamp(32px, 15vw, 150px);
  font-weight: 600;
  white-space: nowrap;
  padding-left: 0.5em;
  opacity: 0.4;
  animation: flowing-text 19s linear infinite;
}

@keyframes flowing-text {
  100% {
    transform: translateX(-100%);
  }
}

@media print, screen and (max-width: 896px) {
  .hero_wrap h2 {
    bottom: 35%;
  }
  
  .hero_btn,
  .hero_btn:before {
    width: 150px;
    height: 150px;
  }
}

@media print, screen and (max-width: 480px) {
  .hero_btn,
  .hero_btn:before {
    width: 120px;
    height: 120px;
  }
}

/*---------------------------------
  Index Common
---------------------------------*/
.index_wrap {
  position: relative;
  padding-top: 3em;
}

.index_wrap h3 {
  font-size: clamp(16px, 2vw, 24px);
  writing-mode: vertical-rl;
  position: absolute;
  top: 0;
  right: 12%;
}

.index_wrap h3 span {
  height: fit-content;
  color: #fff;
  background: #233142;
  display: block;
  margin: 0 0.5em;
  padding: 1em 0.5em;
}

.index_bg_content {
  width: 85%;
  position: absolute;
  top: 4em;
  right: 0;
  z-index: -1;
}

.index_bg_content img {
  height: 600px;
  object-fit: cover;
  border-radius: 4em 0 0 0;
}

.index_bg_content:before {
  content: '';
  width: 30%;
  height: 100px;
  border-radius: 0 3em 0 0;
  background: #fff;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}

.index_content {
  margin-top: 600px;
}

.index_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}

.index_wrap_even .index_box {
  flex-direction: row-reverse;
}

.index_inner {
  width: 65%;
}

.index_text_box {
  line-height: 2.3em;
}

.index_thumb_inner {
  width: 35%;
  position: absolute;
  top: 0;
  right: 0;
}

.index_thumb_inner img {
  width: 45%;
  min-width: 90px;
  margin: 0 auto;
}

.index_wrap_even h3 {
  right: inherit;
  left: 12%;
}

.index_wrap_even .index_bg_content {
  right: inherit;
  left: 0;
}

.index_wrap_even .index_bg_content img {
  border-radius: 0 4em 0 0;
}

.index_wrap_even .index_bg_content:before {
  border-radius: 3em 0 0 0;
  margin-left: auto;
  right: 0;
}

.index_wrap_even .index_inner h2 {
  margin-left: auto;
}

.index_wrap_even .index_text_box {
  text-align: right;
}

.index_wrap_even .index_thumb_inner {
  left: 0;
  right: inherit;
}

.index_submenu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 3em;
}

.index_submenu li {
  width: 45%;
}

.index_submenu li a {
  border-bottom: solid 2px #333;
  display: block;
  position: relative;
  padding: 1em 0.5em;
}

.index_submenu li a:before {
  content: '';
  height: 2px;
  background: linear-gradient(100deg, #ff9933 20%, #ff7166 80%);
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  -webkit-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  z-index: 1;
}

.index_submenu li a:hover:before,
.index_submenu li a:focus:before,
.index_submenu li a:active:before {
  right: 0;
}

.index_submenu li a:after {
	content: "\f061";
	font-family: 'Font Awesome 5 Free';
  font-size: 90%;
  font-weight: 600;
	position: absolute;
	right: 0.5em;
}

.index_submenu li a:hover:after {
  right: 0.3em;
  transition: 0.3s;
}

@media print, screen and (max-width: 896px) {
  .index_inner {
    width: 100%;
  }
  
  .index_bg_content:before {
    width: 70%;
    height: 80px;
  }
  
  .index_thumb_inner {
    top: -2em;
  }
  
  .index_submenu li {
    width: 47%;
    letter-spacing: normal;
  }
  
  .index_submenu li a {
    padding: 1em 0;
  }
  
  .index_submenu li a:after {
    right: 0;
  }
  
  .index_submenu li a:hover:after {
    right: 0;
  }
}

/*---------------------------------
  Index 会社を知る
---------------------------------*/
.movie_box {
  max-width: 400px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 6em auto 0 auto;
}

.movie_inner {
  flex: 1;
}

.movie_inner iframe {
  width: 100%;
  height: auto;
	aspect-ratio: 16 / 9;
  border-radius: 1em;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.movie_box p {
  color: #c0c4cc;
  font-size: clamp(12px, 3vw, 19px);
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  white-space: nowrap;
  padding-right: 1em;
}

.in_numbers_box {
  margin-top: 5em;
}

.in_numbers_box > p {
  font-size: clamp(12px, 2vw, 14px);
  text-align: right;
  padding: 0 1em;
}

.in_numbers_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.in_numbers_list {
  width: calc(100% / 3 - 2em);
  border-radius: 1em;
  background: #f1f4f8;
  margin: 0.5em 1em;
  padding: 0 1em 1.5em 1em;
}

.in_numbers_list h4 {
  width: fit-content;
  color: #fff;
  font-size: clamp(14px, 2vw, 16px);
  border-radius: 0 0 1em 1em;
  background: #233142;
  margin: 0 auto 2em auto;
  padding: 0.2em 1.5em;
}

.in_numbers_list_detail {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.in_numbers_list_detail p {
  color: #a1a7b3;
  font-size: 13px;
  text-align: right;
  line-height: 1.5em;
}

.in_numbers_list_detail p span {
  display: block;
}

.in_numbers_list_detail dl {
  display: flex;
  flex-wrap: wrap;
  align-items: anchor-center;
}

.js-num {
  background: linear-gradient(100deg, #ff9933 20%, #ff7166 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(36px, 6vw, 70px);
  padding: 0 10px 0 20px;
}

.in_numbers_list_detail dl dd {
  width: 45px;
  color: #233142;
  font-size: clamp(14px, 2vw, 21px);
}

@media print, screen and (max-width: 1161px) {
  .in_numbers_list {
    width: calc(100% / 2 - 2em);
  }
  
  .in_numbers_list:nth-of-type(n+3) {
    margin-top: 3em;
  }
}

@media print, screen and (max-width: 701px) {
  .in_numbers_inner {
    flex-direction: column;
  }
  
  .in_numbers_list {
    width: 100%;
    margin: 0;
  }
  
  .in_numbers_list:nth-of-type(n+2) {
    margin-top: 2em;
  }
}

/*---------------------------------

  会社を知る

---------------------------------*/
/*---------------------------------
  経営理念
---------------------------------*/
.company_philosophy_content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.company_philosophy_thumb {
  width: 20%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: column;
}

.company_philosophy_illust {
  width: 75%;
}

.company_philosophy_box {
  width: 80%;
}

.company_philosophy_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.company_philosophy_inner:nth-of-type(n+2) {
  margin-top: 4em;
}

.company_philosophy_number {
  width: 70px;
  height: 70px;
  line-height: 70px;
  color: #fff;
  font-size: clamp(16px, 2vw, 21px);
  text-align: center;
  border-radius: 0.5em;
  background: #233142;
  display: block;
}

.company_philosophy_text {
  width: calc(100% - 110px);
  padding-top: 20px;
}

.company_philosophy_title {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.company_philosophy_title h4 {
  max-width: 70%;
  font-size: clamp(16px, 2vw, 21px);
  margin-right: 1em;
}

.company_philosophy_title h5 {
  width: 137px;
  color: #fff;
  font-size: clamp(14px, 1.5vw, 16px);
  text-align: center;
  border-radius: 5em;
  background: linear-gradient(100deg, #ff9933 20%, #ff7166 80%);
  display: inline-block;
  padding: 0 1.5em;
}

.company_philosophy_text .text_box {
  margin-top: 1.5em;
}

@media print, screen and (max-width: 896px) {
  .company_philosophy_content {
    flex-direction: column;
  }
  
  .company_philosophy_thumb,
  .company_philosophy_box {
    width: 100%;
  }
  
  .company_philosophy_thumb {
    flex-direction: row;
    margin-bottom: 5em;
  }
  
  .company_philosophy_thumb h3 {
    width: fit-content;
  }
  
  .company_philosophy_illust {
    max-width: 80px;
    transform: scale(-1, 1);
  }
  
  .company_philosophy_number {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
  
  .company_philosophy_text {
    width: calc(100% - 80px);
    padding-top: 0;
  }
  
  .company_philosophy_title {
    flex-direction: column;
  }
  
  .company_philosophy_title h4 {
    max-width: none;
    margin-bottom: 0.5em;
  }
}

/*---------------------------------
  商品一覧
---------------------------------*/
.product_wrap {
  width: 100%;
  overflow: hidden;
}

.company_product_content {
  position: relative;
  padding-bottom: 4em;
}

.company_product_content:before {
  content: '';
  width: 0;
  height: 75%;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 0 4em 0 0;
  background: #ffe3e0;
  display: block;
  transition: 1s;
  opacity: 0.4;
}

.company_product_fade:before {
  width: 90%;
}

.company_product_content:last-of-type {
  margin-top: 7em;
}

.company_product_content:last-of-type:before {
  right: 0;
  left: inherit;
  border-radius: 4em 0 0 0;
}

.company_product_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}

.company_product_inner {
  width: calc(100% / 3 - 4em);
  margin: 0 2em;
  position: relative;
}

.company_product_thumb {
  border-radius: 1em;
  overflow: hidden;
}

.company_product_inner h4 {
  font-size: clamp(16px, 2vw, 21px);
  text-align: center;
  margin: 1em 0 0.5em 0;
}

.company_product_inner .text_box p {
  line-height: 1.8em;
}

@media print, screen and (max-width: 896px) {
  .company_product_content .company_product_inner:nth-of-type(3) {
    margin-top: 4em;
  }
  
  .company_product_content:before {
    display: none;
  }
  
  .company_product_content:last-of-type {
    margin-top: 0;
  }
  
  .company_product_inner {
    width: calc(100% / 2 - 2em);
    margin: 0 1em;
  }
}

@media print, screen and (max-width: 596px) {
  .company_product_inner {
    width: 100%;
    padding-bottom: 3em;
  }
  
  .company_product_inner:nth-of-type(n+2) {
    margin-top: 4em;
  }
  
  .company_product_inner:before {
    content: '';
    width: 100vw;
    height: 70%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #ffe3e0;
    display: block;
    margin: 0 calc(50% - 50vw);
    opacity: 0.4;
    z-index: -1;
  }
}

/*---------------------------------
  店舗一覧
---------------------------------*/
.company_shop_wrap {
  background: #fff5eb;
  padding: 7em 0;
}

.company_shop_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.company_shop_inner {
  width: 48%;
  display: flex;
  flex-wrap: wrap;
  border-radius: 1em;
  background: #fff;
  overflow: hidden;
}

.company_shop_inner:nth-of-type(n+3) {
  margin-top: 3em;
}

.company_shop_thumb img {
  width: 200px;
  height: 100%;
  object-fit: cover;
}

.company_shop_detail {
  width: calc(100% - 200px);
  padding: 1.5em;
}

.company_shop_detail h4 {
  font-size: clamp(16px, 2vw, 18px);
  border-bottom: solid 1px;
  border-image: linear-gradient(to right, #ff9933, #ff7166) 1;
  margin-bottom: 1em;
  padding: 5px;
}

.company_shop_detail h4 span:first-of-type {
  margin-right: 0.5em;
}

.company_shop_detail h4 span:nth-of-type(2) {
  font-size: 12px;
  letter-spacing: normal;
}

.company_shop_detail dl {
  font-size: clamp(14px, 1.5vw, 15px);
  line-height: 1.8em;
  display: flex;
  flex-wrap: wrap;
}

.company_shop_detail dl dt {
  width: 40px;
  color: #c0c4cc;
  text-align: center;
}

.company_shop_detail dl dt:before {
	font-family: 'Font Awesome 5 Free';
  font-weight: 600;
}

.company_shop_detail dl dt:first-of-type:before {
	content: "\f3c5";
}

.company_shop_detail dl dt:nth-of-type(2):before {
	content: "\f095";
}

.company_shop_detail dl dd {
  width: calc(100% - 40px);
}

.company_shop_detail dl dd span {
  display: block;
}

.company_shop_detail dl dd:first-of-type {
  margin-bottom: 0.5em;
}

.company_shop_detail dl dd:nth-of-type(2) {
  font-size: clamp(16px, 2vw, 18px);
}

@media print, screen and (max-width: 1070px) {
  .company_shop_box {
    flex-direction: column;
  }
  
  .company_shop_inner {
    width: 100%;
  }
  
  .company_shop_inner:nth-of-type(n+2) {
    margin-top: 4em;
  }
  
  .company_shop_detail dl dd span {
    display: inline-block;
  }
}

@media print, screen and (max-width: 720px) {
  .company_shop_detail dl dd span {
    display: block;
  }
}

@media print, screen and (max-width: 596px) {
  .company_shop_inner {
    flex-direction: column;
  }
  
  .company_shop_thumb img,
  .company_shop_detail {
    width: 100%;
  }
  
  .company_overview_box ul li:before {
    content: '・';
  }
}

/*---------------------------------
  社会貢献･地域貢献
---------------------------------*/
.company_contribution_box {
  display: flex;
  flex-wrap: wrap;
}

.company_contribution_box:nth-of-type(n+2) {
  margin-top: 7em;
}

.company_contribution_inner {
  width: calc(100% - 160px);
  padding-right: 3em;
}

.company_contribution_title {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 3em;
}

.company_contribution_number {
  width: 70px;
  height: 70px;
  line-height: 70px;
  color: #fff;
  font-size: clamp(16px, 2vw, 21px);
  text-align: center;
  border-radius: 0.5em 0 0 0.5em;
  background: linear-gradient(100deg, #ff9933 20%, #ff7166 80%);
  display: block;
}

.company_contribution_title h4 {
  width: calc(100% - 70px);
  font-size: clamp(16px, 2vw, 21px);
  border-radius: 0 0.5em 0.5em 0;
  background: #f1f4f8;
  display: flex;
  align-items: center;
  padding-left: 1em;
}

.company_contribution_inner .text_box a {
  color: #ff7166;
  font-weight: 600;
  text-decoration: underline;
}

.company_contribution_inner .text_box a:after {
	content: "\f08e";
	font-family: "Font Awesome 5 Free";
  margin-left: 0.5em;
}

.company_contribution_inner .text_box a:hover {
  opacity: 0.8;
  transition: 0.3s;
}

.company_contribution_thumb {
  margin-top: 2em;
}

.company_contribution_thumb ul {
  display: flex;
  flex-wrap: wrap;
}

.company_contribution_thumb ul li {
  width: calc(100% / 3 - 1em);
  border-radius: 1em;
  background: linear-gradient(100deg, #ff9933 20%, #ff7166 80%);
  margin: 0.5em;
  overflow: hidden;
}

.company_contribution_thumb ul li img {
  height: 230px;
  object-fit: cover;
}

.company_contribution_thumb ul li:hover img {
	transform: scale(1.1);
	opacity: 0.7;
	transition: 0.3s;
}

.company_contribution_thumb ul li a {
  position: relative;
  display: block;
}

.company_contribution_thumb ul li a:before {
  content: "\f00e";
  font-family: 'Font Awesome 5 Free';
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: #ff7166;
  font-weight: 600;
  text-align: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
  position: absolute;
  right: 1em;
  bottom: 1em;
  z-index: 1;
}

.sdgs_icon {
  width: 160px;
  border-left: solid 1px #dfe1e5;
  padding-left: 1em;
}

.sdgs_icon li {
  width: 140px;
  padding: 0.5em;
}

.company_contribution_box_1 .company_contribution_thumb ul li,
.company_contribution_box_4 .company_contribution_thumb ul li {
  border: solid 1px #dfe1e5;
}

.company_contribution_box_2 .text_box ul li {
  list-style: disc inside;
  text-indent: -1.3em;
  padding-left: 1.3em;
}

.company_contribution_box_5 dl {
  margin-top: 1.5em;
}

.company_contribution_box_5 .list_disc li:last-of-type {
  list-style: inherit;
}

@media print, screen and (max-width: 896px) {
  .company_contribution_box {
    flex-direction: column;
  }
  
  .company_contribution_box:nth-of-type(n+2) {
    margin-top: 5em;
  }
  
  .company_contribution_inner,
  .sdgs_icon {
    width: 100%;
  }
  
  .company_contribution_inner {
    padding-right: 0;
  }
  
  .company_contribution_title {
    margin-bottom: 2em;
  }
  
  .company_contribution_number {
    width: 50px;
    height: inherit;
    line-height: normal;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  
  .company_contribution_title h4 {
    width: calc(100% - 50px);
    padding: 0.8em 0.5em 0.8em 1em;
  }
  
  .company_contribution_thumb ul li {
    width: calc(100% / 2 - 1em);
  }
  
  .sdgs_icon {
    border-left: none;
    border-top: solid 1px #dfe1e5;
    display: flex;
    flex-wrap: wrap;
    margin-top: 2em;
    padding: 1em 0 0 0;
  }
  
  .sdgs_icon li {
    width: 100px;
  }
}

@media print, screen and (max-width: 480px) {
  .company_contribution_thumb ul li {
    width: calc(100% - 1em);
  }
}

/*---------------------------------
  会社概要
---------------------------------*/
.company_overview_content {
  position: relative;
}

.company_overview_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.company_overview_thumb {
  width: 30%;
	flex: 1;
	margin-left: calc(50% - 50vw);
	margin-right: 4%;
}

.company_overview_thumb img {
  height: 50%;
  object-fit: cover;
  border-radius: 0 4em 4em 0;
}

.company_overview_box dl {
  width: 75%;
  display: flex;
  flex-wrap: wrap;
  padding: 2em 0 2em 3em;
}

.company_overview_box dl dt,
.company_overview_box dl dd {
  padding: 1.5em 1em;
}

.company_overview_box dl dt {
  width: 30%;
  font-weight: 600;
  border-bottom: solid 1px;
  border-image: linear-gradient(to right, #ff9933, #ff7166) 1;
}

.company_overview_box dl dd {
  width: 70%;
  border-bottom: solid 1px #dfe1e5;
}

.company_overview_box dl dd span {
  font-size: clamp(12px, 1.5vw, 14px);
  display: block;
}

.company_overview_box ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.company_overview_box ul li {
  width: 48%;
}

.company_overview_illust {
  width: 15%;
  min-width: 70px;
  position: absolute;
  left: 0;
  bottom: 3em;
}

@media print, screen and (max-width: 1070px) {
  .company_overview_box ul {
    flex-direction: column;
  }
  
  .company_overview_box ul li {
    width: 100%;
  }
}

@media print, screen and (max-width: 896px) {
  .company_overview_box {
    flex-direction: column;
  }
  
  .company_overview_thumb {
    width: 100%;
    margin-left: calc(50% - 50vw);
  }
  
  .company_overview_thumb img {
    height: 300px;
  }
  
  .company_overview_box dl {
    width: 100%;
    padding: 2em 0 0 0;
  }
}

@media print, screen and (max-width: 480px) {
  .company_overview_box dl {
    flex-direction: column;
    border-bottom: solid 1px #dfe1e5;
  }
  
  .company_overview_box dl dt,
  .company_overview_box dl dd {
    width: 100%;
    border: none;
  }
  
  .company_overview_box dl dt {
    border-top: solid 1px #dfe1e5;
    padding-bottom: 0;
    position: relative;
  }
  
  .company_overview_box dl dt:before {
    content: '';
    width: 100px;
    height: 1px;
    background: linear-gradient(100deg, #ff9933 20%, #ff7166 80%);
    display: block;
    position: absolute;
    top: -1px;
    left: 0;
  }
  
  .company_overview_box dl dd {
    padding-top: 0.5em;
  }
  
  .company_overview_illust {
    left: inherit;
    bottom: inherit;
    top: 0;
    right: 0;
  }
}

/*---------------------------------

  仕事を知る

---------------------------------*/
/*---------------------------------
  仕事内容
---------------------------------*/
.work_job_wrap {
  position: relative;
  padding: 7em 0;
}

.work_job_wrap:before {
  content: '';
  width: 0;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 4em 0 0 0;
  background: #ffe3e0;
  display: block;
  transition: 1s;
  z-index: -1;
  opacity: 0.3;
}

.work_job_fade:before {
  width: 75%;
}

.work_job_box {
  width: 95%;
  display: flex;
  flex-wrap: wrap;
  border-radius: 1em;
  background: #fff;
  overflow: hidden;
}

.work_job_box:nth-of-type(n+2) {
  margin-top: 4em;
}

.work_job_box:nth-of-type(even) {
  margin-left: auto;
}

.work_job_thumb {
  width: 25%;
}

.work_job_thumb img {
  height: 100%;
  object-fit: cover;
}

.work_job_inner {
  width: 75%;
  padding: 2em 3em;
}

.work_job_inner h4 {
  font-size: clamp(16px, 2vw, 21px);
  border-bottom: solid 1px;
  border-image: linear-gradient(to right, #ff9933, #ff7166) 1;
  margin-bottom: 1em;
  padding: 5px;
}

@media print, screen and (max-width: 896px) {
  .work_job_box {
    width: 100%;
    flex-direction: column;
    background: none;
  }
  
  .work_job_inner {
    width: 60%;
    border-radius: 1em;
    background: #fff;
    margin-top: -13em;
    padding: 2em;
    padding-right: 5em;
  }
  
  .work_job_thumb {
    width: 45%;
    height: 250px;
    margin-left: auto;
    z-index: 1;
  }
  
  .work_job_thumb img {
    border-radius: 1em;
  }
}

@media print, screen and (max-width: 480px) {
  .work_job_wrap:before {
    border-radius: 0 4em 0 0;
    right: inherit;
    left: 0;
  }
  
  .work_job_thumb {
    width: 70%;
  }
  
  .work_job_inner {
    width: 90%;
    margin-top: -7em;
    padding: 2em;
    padding-top: 8em;
  }
  
  .work_job_thumb {
    height: 200px;
  }
}

/*---------------------------------
  仕事の流れ
---------------------------------*/
.work_flow_wrap {
  position: relative;
  padding-bottom: 5em;
}

.work_flow_wrap:after {
  content: '';
  width: 100%;
  height: 50%;
  background: #fff5eb;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.flow_box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1em;
}

.flow_inner {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  row-gap: 0;
  border-radius: 1em;
  background: #fff;
  position: relative;
}

.flow_inner:not(:last-of-type):after {
  content: "\f138";
	font-family: 'Font Awesome 5 Free';
  font-size: clamp(21px, 3vw, 32px);
  font-weight: 600;
  background: linear-gradient(100deg, #ff9933 20%, #ff7166 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: absolute;
  top: 25%;
  right: -25px;
  z-index: 1;
}

.flow_number {
  width: 80px;
  color: #ff7166;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  border-radius: 0 0 1em 1em;
  background: #fff;
  padding: 0 1em;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.flow_inner img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 1em 1em 0 0;
}

.flow_inner_text {
  padding: 2em;
}

.flow_inner h4 {
  font-size: clamp(16px, 2vw, 18px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.5em;
}

.flow_inner .text_box {
  font-size: 14px;
  line-height: 2em;
}

@media print, screen and (max-width: 1131px) {
  .work_flow_wrap:after {
    height: 65%;
  }
  
  .flow_box {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .flow_inner:not(:last-of-type):after {
    right: -20px;
  }
}

@media print, screen and (max-width: 531px) {
  .work_flow_wrap:after {
    height: 80%;
  }
  
  .flow_box {
    grid-template-columns: repeat(1, 1fr);
  }
  
  .flow_inner:nth-of-type(n+2) {
    margin-top: 3em;
  }
  
  .flow_inner:not(:last-of-type):after {
    top: inherit;
    bottom: -2em;
    left: 0;
    right: 0;
    text-align: center;
    margin: 0 auto;
    transform: rotate(90deg)
  }
}

/*---------------------------------

  よくある質問

---------------------------------*/
/*---------------------------------
  質問リスト
---------------------------------*/
.page_link ul {
  display: flex;
  flex-wrap: wrap;
}

.page_link ul li {
  width: calc(100% / 2 - 2em);
  margin: 0.5em 1em;
}

.page_link ul li a {
  color: #233142;
  border-radius: 5em;
  /*background: #233142;*/
  border: solid 1px #233142;
  display: block;
  padding: 1em 3em 1em 2em;
  position: relative;
}

.page_link ul li a:after {
	content: "\f107";
	font-family: 'Font Awesome 5 Free';
  font-weight: 600;
  position: absolute;
  right: 2em;
}

.faq_content h4 {
  font-size: clamp(16px, 2vw, 21px);
  border-bottom: solid 2px;
  border-image: linear-gradient(to right, #ff9933, #ff7166) 1;
  margin: 5em 0 3em 0;
  padding: 1em 0 0.5em 0;
}

.faq_box {
  margin-top: 2em;
}

.question_inner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border-radius: 0.5em;
  background: #f1f4f8;
  cursor: pointer;
  position: relative;
  padding: 1em 2em;
}

.question_inner:after {
  content: "\2b";
  font-family: 'Font Awesome 5 Free';
  color: #ff7166;
  font-weight: 600;
  font-size: 21px;
  position: absolute;
  top: 20px;
  right: 1.5em;
}

.question_inner.active:after {
  content: "\f068";
	font-family: 'Font Awesome 5 Free';
	font-weight: 600;
}

.question_inner:before,
.answer_inner:before {
  width: 40px;
  height: 40px;
  color: #fff;
  line-height: 40px;
  text-align: center;
  letter-spacing: normal;
  border-radius: 50%;
  display: block;
  margin-right: 1em;
}

.question_inner:before {
  content: 'Q';
  background: #233142;
}

.question_inner:hover {
  opacity: 0.8;
  transition: 0.3s;
}

.answer_inner:before {
  content: 'A';
  background: linear-gradient(100deg, #ff9933 20%, #ff7166 80%);
}

.question_inner,
.answer_inner {
  display: flex;
  flex-wrap: wrap;
}

.question_text,
.answer_text {
  width: calc(100% - 40px - 1em);
  padding-top: 4px;
}

.question_text {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 600;
  padding-right: 2em;
}

.answer_inner {
  padding: 2em;
}

.faq_disc li {
  list-style: disc inside;
  text-indent: -1.3em;
  padding-left: 1.3em;
}

.howto_entry {
  margin: 1em 0;
}

.faq_btn {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1em;
}

.faq_btn li {
  margin: 0.5em;
}

.answer_text .faq_btn li .btn {
  font-size: clamp(12px, 2vw, 16px);
  margin: 0;
  padding: 0.7em 4em 0.7em 2em;
}

.faq_flow_1 .faq_disc {
  margin-left: 2.7em;
}

.faq_flow_1 dt {
  margin-top: 1em;
}

.faq_flow_1+p {
  margin-top: 2em;
}

.faq_flow_2,
.faq_flow_2 dd ul {
  display: flex;
  flex-wrap: wrap;
}

.faq_flow_2 {
  margin-top: 1em;
}

.faq_flow_2 dt {
  width: 180px;
  color: #233142;
  border-radius: 3px;
  border: solid 1px #233142;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  margin-right: 1.5em;
}

.faq_flow_2 dd {
  width: calc(100% - 180px - 1.5em);
}

.faq_flow_2 dd ul li {
  margin: 5px 1em 5px 0;
}

.faq_flow_1 dt span,
.faq_flow_2 dd ul li span {
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  background: #233142;
  display: inline-block;
  margin-right: 0.5em;
}

@media print, screen and (max-width: 896px) {
  .page_link ul {
    flex-direction: column;
  }
  
  .page_link ul li {
    width: 100%;
    margin: 0.5em 0;
  }
  
  .question_inner:before,
  .answer_inner:before {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
  
  .question_inner {
    padding: 1em 1.5em;
  }
  
  .question_inner:after {
    top: 18px;
    right: 1em;
  }
  
  .answer_inner {
    padding: 2em 0 0 1.5em;
  }
  
  .answer_text .faq_btn li {
    width: 100%;
  }
  
  .answer_text .faq_btn li .btn {
    max-width: none;
    padding: 0.7em 4em 0.7em 0.7em;
  }
  
  .faq_flow_2 {
    flex-direction: column;
  }
  
  .faq_flow_2 dt,
  .faq_flow_2 dd {
    width: 100%;
  }
  
  .faq_flow_2 dt {
    margin-bottom: 1em;
  }
}

@media print, screen and (max-width: 896px) {
  .faq_flow_2 dd ul {
    flex-direction: column;
  }
}

/*---------------------------------
  こんな方におすすめ
---------------------------------*/
.recommended_wrap .page_title_box h3 {
  width: 100%;
  margin-bottom: 0;
}

.recommended_list_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.recommended_list_box dl {
  width: calc(100% / 3 - 1em);
  border-radius: 1em;
  background: #fff5eb;
  margin: 0.5em;
  padding: 1.5em;
}

.recommended_list_box dl dt img {
  width: 45%;
  max-width: 100px;
  display: block;
  margin: 0 auto;
}

.recommended_list_box dl dd {
  font-weight: 600;
  text-align: center;
  line-height: 1.8em;
  margin-top: 1em;
}

.recommended_text_box {
  display: flex;
  flex-wrap: wrap;
  margin-top: 3em;
}

@media print, screen and (max-width: 896px) {
  .recommended_list_box dl {
    width: calc(100% / 2 - 1em);
  }
}

@media print, screen and (max-width: 480px) {
  .recommended_list_box dl {
    width: 100%;
  }
  
  .recommended_list_box dl dt img {
    max-width: 50px;
  }
}

/*---------------------------------

  採用情報

---------------------------------*/
/*---------------------------------
  社員募集
---------------------------------*/
.page_title_list {
  display: flex;
  flex-wrap: wrap;
}

.page_title_list li {
  color: #fff;
  border-radius: 0.3em;
  background: #ff7166;
  margin: 0.5em;
  padding: 0.5em 1em;
}

#parttime .page_title_box h3,
#newgraduates .page_title_box h3 {
  width: 100%;
  margin-bottom: 0;
}

.request_wrap h4 {
  color: #233142;
  font-size: clamp(16px, 2vw, 21px);
  border-left: solid 3px #233142;
  margin-bottom: 2em;
  padding: 0.5em 0 0.5em 1em;
}

.request_wrap h4 span {
  font-size: clamp(14px, 2vw, 16px);
}

.request_content h5 {
  font-size: clamp(16px, 2vw, 21px);
  margin-bottom: 1em;
}

.request_list_inner,
.request_training_inner,
.request_career_inner {
  margin-top: 5em;
}

.request_list_inner ul {
  display: flex;
  flex-wrap: wrap;
}

.request_list_inner ul li {
  width: calc(100% / 2 - 2em);
  font-weight: 600;
  border-radius: 0.5em;
  background: #fff5eb;
  margin: 0.5em 1em;
  padding: 1em 1.5em;
  display: flex;
}

.request_list_inner ul li:before {
	content: "\f14a";
	font-family: 'Font Awesome 5 Free';
  width: 35px;
  font-size: 150%;
  vertical-align: bottom;
  background: linear-gradient(100deg, #ff9933 20%, #ff7166 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.request_list_inner ul li span {
  width: calc(100% - 35px);
}

.request_list_inner+.text_box {
  margin-top: 2em;
}

/* 研修制度・サポート体制 */
.request_training_list {
  display: flex;
  flex-wrap: wrap;
}

.request_training_inner dl {
  width: calc(100% / 3 - 2em);
  text-align: center;
  border-radius: 0.5em;
  background: #fff4f3;
  display: block;
  margin: 0.5em 1em;
  padding: 2em 1em;
}

.request_training_inner dl dt {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 600;
}

.request_training_inner dl dd {
  color: #828a9a;
  font-size: clamp(12px, 2vw, 14px);
}

/* 将来のキャリアステップ */
.request_career_flow dl {
  display: flex;
  flex-wrap: wrap;
}

.request_career_flow dl:nth-of-type(n+2) {
  margin-top: 1.5em;
}

.request_career_flow dl dt {
  width: 180px;
  color: #fff;
  border-radius: 0.5em 0 0 0.5em;
  background: #233142;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 1em;
  position: relative;
}

.request_career_flow dl dt:after {
  content: '';
  width: 0;
  height: 0;
  border-left: 8px solid #233142;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  position: absolute;
  right: -8px;
}

.request_career_flow dl dd {
  width: calc(100% - 180px);
  border-radius: 0 0.5em 0.5em 0;
  background: #f1f4f8;
  padding: 1em 2em;
}

/*---------------------------------
  福利厚生
---------------------------------*/
.benefits_list_box {
  display: flex;
  flex-wrap: wrap;
}

.benefits_list_box dl {
  width: calc(100% / 2 - 1em);
  border-radius: 1em;
  background: #fff5eb;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0.5em;
  padding: 2em;
}

.benefits_list_box dl dt {
  width: 20%;
  max-width: 80px;
  min-width: 80px;
}

.benefits_list_box dl dd {
  width: 80%;
  max-width: calc(100% - 80px);
  padding-left: 2em;
}

.benefits_list_box dl dd span:first-of-type {
  font-weight: 600;
}

.benefits_list_box dl dd span:nth-of-type(n+2) {
  font-size: clamp(12px, 2vw, 14px);
  line-height: 1.8em;
  display: inline-block;
}

@media print, screen and (max-width: 896px) {
  .request_list_inner ul {
    flex-direction: column;
  }
  
  .request_list_inner ul li {
    width: 100%;
    margin: 0.5em 0;
  }
  
  .request_training_list {
    flex-direction: column;
  }
  
  .request_training_inner dl {
    width: 100%;
    margin: 0.5em 0;
  }
  
  .request_career_flow dl {
    flex-direction: column;
  }
  
  .request_career_flow dl:nth-of-type(n+2) {
    margin-top: 2em;
  }
  
  .request_career_flow dl dt,
  .request_career_flow dl dd {
    width: 100%;
  }
  
  .request_career_flow dl dt {
    border-radius: 0.5em 0.5em 0 0;
    padding: 0.5em;
  }
  
  .request_career_flow dl dt:after {
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #233142;
    border-bottom: none;
    right: 0;
    left: 0;
    bottom: -8px;
    margin: 0 auto;
  }
  
  .request_career_flow dl dd {
    border-radius: 0 0 0.5em 0.5em;
    padding: 2em 2em 1em 2em;
  }
  
  .benefits_list_box {
    flex-direction: column;
  }
  
  .benefits_list_box dl {
    width: 100%;
    margin: 0.5em 0;
  }
  
  .benefits_list_box dl dt {
    min-width: inherit;
  }
}

@media print, screen and (max-width: 480px) {
  .benefits_list_box dl dt img {
    min-width: 50px;
  }
  
  .benefits_list_box dl dd {
    width: 80%;
    max-width: inherit;
    line-height: 1.8em;
  }
}

/*---------------------------------
  先輩社員の声
---------------------------------*/
.interview_content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.interview_box {
  width: 48%;
  position: relative;
  padding-bottom: 8em;
}

.interview_inner {
  width: 82%;
  border-radius: 1em;
  background: #eff9fc;
  padding: 2em;
  position: relative;
}

.interview_inner:after {
  content: '';
  border-top: 20px solid #eff9fc;
  border-right: 20px solid #eff9fc;
  border-bottom: 20px solid transparent;
  border-left: 20px solid transparent;
  display: block;
  position: absolute;
  bottom: -35px;
  right: 3em;
}

.interview_inner p:last-of-type {
  color: #828a9a;
  font-size: clamp(12px, 2vw, 14px);
  border-top: solid 1px #dfe1e5;
  text-align: right;
  margin-top: 1em;
  padding-top: 0.5em;
}

.interview_box img {
  width: 8%;
  min-width: 70px;
  position: absolute;
  bottom: 0;
  right: 0;
}

@media print, screen and (max-width: 896px) {
  .interview_content {
    flex-direction: column;
  }
  
  .interview_box {
    width: 100%;
    padding-bottom: 5em;
  }
  
  .interview_box:nth-of-type(n+2) {
    margin-top: 2em;
  }
  
  .interview_inner {
    width: 90%;
  }
  
  .interview_inner:after {
    border-top: 10px solid #eff9fc;
    border-right: 10px solid #eff9fc;
    border-bottom: 10px solid transparent;
    border-left: 10px solid transparent;
    bottom: -20px;
  }
  
  .interview_box img {
    min-width: 40px;
  }
}

/*---------------------------------
  募集一覧
---------------------------------*/
.recruit_content,
.recruit_box,
.recruit_inner_btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.recruit_content {
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
}

.recruit_box_illust {
  width: 10%;
  margin-right: 3em;
}

.recruit_box_illust img {
  width: 90%;
  max-width: 75px;
  min-width: 40px;
}

.recruit_box {
  width: calc(100% - 10% - 3em);
  color: #fff;
  border-radius: 2em;
  justify-content: space-between;
  padding: 7em 4%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.recruit_box:before {
  content: '';
  width: 100%;
  height: 100%;
  background: linear-gradient(100deg, #ff9933 20%, #ff7166 80%);
  display: block;
  opacity: 0.8;
  position: absolute;
  top: 0;
  left: 0;
}

.recruit_box:after {
  content: '';
  width: 100%;
  height: 100%;
  background: url("images/recruit/recruit_bg_thumb.jpg") no-repeat;
  background-size: cover;
  background-position: center center;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  z-index: -1;
}

.recruit_box:hover:after {
	transform: scale(1.1);
	transition: 0.3s;
}

.recruit_inner {
  font-size: clamp(16px, 2vw, 24px);
  line-height: 1.8em;
  z-index: 1;
}

.recruit_inner_btn {
  position: relative;
  z-index: 1;
}

.recruit_inner_btn p {
  font-size: 14px;
  padding-right: 90px;
}

.recruit_inner_btn p a {
  color: #fff !important;
}

.recruit_inner_btn:after {
	content: "\f061";
	font-family: 'Font Awesome 5 Free';
  width: 70px;
  height: 70px;
  line-height: 70px;
  font-weight: 600;
  text-align: center;
  border: solid 1px #fff;
  border-radius: 50%;
  display: block;
  position: absolute;
  right: 0;
}

.recruit_box:hover .recruit_inner_btn:after {
  margin-right: -0.3em;
  transition: 0.3s;
}

@media print, screen and (max-width: 896px) {
  .recruit_content {
    padding-bottom: 3em;
  }
  
  .recruit_box {
    flex-direction: column;
    align-items: flex-start;
    padding: 3em 1.5em;
  }
  
  .recruit_box_illust {
    margin-right: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
  }
  
  .recruit_box {
    width: 100%;
  }
  
  .recruit_inner {
    margin-bottom: 2em;
  }
  
  .recruit_inner_btn {
    margin-left: auto;
  }
  
  .recruit_inner_btn p {
    padding-right: 60px;
  }
  
  .recruit_inner_btn:after {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}

/*---------------------------------
  プライバシーポリシー
---------------------------------*/
.privacy_box dl {
  margin-top: 3em;
}

.privacy_box dl dt {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 600;
  margin-bottom: 1em;
}

.privacy_box dl dt:before {
  content: '';
  width: 30px;
  height: 2px;
  background: linear-gradient(100deg, #ff9933 20%, #ff7166 80%);
  display: block;
  margin-bottom: 1em;
}

/*---------------------------------
  Thanks
---------------------------------*/
.thanks_content .text_box p {
  line-height: 2.3em;
}

.thanks_content .text_box p:nth-of-type(n+2) {
  margin-top: 2em;
}

.thanks_content .text_box p:nth-last-child(2)	{
	font-size: clamp(16px, 2vw, 21px);
	font-weight: 600;
  letter-spacing: 0.1em;
}

.thanks_content .text_box p:nth-last-child(2):before {
  content: "\f095";
	font-family: 'Font Awesome 5 Free';
  font-size: 90%;
  font-weight: 600;
  display: inline-block;
	vertical-align: middle;
	margin-right: 0.5em;
}

/*---------------------------------
  Footer
---------------------------------*/
footer {
  background: #f8f9fb;
  padding-top: 7em;
}

.footer_content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 6%;
}

.footer_box {
  width: 40%;
}

.footer_inner {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: column;
  padding: 1em 0;
}

.footer_inner a {
  width: fit-content;
}

.footer_inner img {
  max-width: 200px;
  margin-bottom: 2em;
}

.footer_inner img:hover {
  opacity: 0.7;
  transition: 0.3s;
}

.footer_inner h2 {
  font-size: clamp(16px, 2vw, 18px);
  margin-bottom: 0.5em;
}

.footer_text li {
  font-size: clamp(12px, 1.5vw, 16px);
  display: inline-block;
}

.footer_text li:first-of-type {
  width: 100%;
}

.footer_text li:nth-of-type(n+2) {
  margin-right: 1em;
}

address {
	color: #a1a7b3;
	font-size: 0.7em;
	font-style: normal;
  margin-top: 2em;
}

.footer_sns {
  display: flex;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 2em;
}

.footer_sns li {
  font-size: 21px;
  padding: 0.3em 0.6em;
}

.footer_sns li a {
  color: #233142;
}

.footer_sns li a:hover {
  opacity: 0.8;
  transition: 0.3s;
}

.sitemap_box {
  width: 55%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.sitemap_box p {
  width: 50px;
  font-weight: 700;
  writing-mode: vertical-rl;
  letter-spacing: 0.2em;
  background: linear-gradient(100deg, #ff9933 20%, #ff7166 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  position: relative;
  margin: 1em 0;
}

.sitemap_box p:after {
  content: '';
  width: 1px;
  height: calc(100% - 110px);
  background: #dfe1e5;
  display: block;
  position: absolute;
  bottom: 0;
  left: 1em;
}

.sitemap_inner {
  width: calc(100% - 50px);
  display: flex;
  flex-wrap: wrap;
}

.sitemap_list {
  width: 50%;
}

.sitemap_list dl {
  padding: 1em;
}

.sitemap_list dl dt {
  font-weight: 700;
  border-bottom: solid 1px #dfe1e5;
  padding-bottom: 0.5em;
  position: relative;
  cursor: pointer;
}

.sitemap_list dl dt a {
  display: block;
}

.sitemap_list dl dt:after {
  content: "\f061";
  font-family: 'Font Awesome 5 Free';
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: #ff7166;
  font-size: 90%;
  text-align: center;
  letter-spacing: normal;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 0;
  right: 0.5em;
}

.sitemap_list dl dt:hover:after {
  right: 0.3em;
  transition: 0.3s;
}

.sitemap_list dl dt a span {
  color: #a1a7b3;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.8em;
  display: block;
}

.sitemap_list dl dd {
  padding-top: 1em;
}

.sitemap_list dl dd ul li:before {
  content: "\f105";
  font-family: 'Font Awesome 5 Free';
  color: #a1a7b3;
  font-size: 80%;
  font-weight: 600;
  margin-right: 0.5em;
}

.sitemap_list dl dd ul li a {
  color: #a1a7b3;
  font-size: clamp(12px, 2vw, 14px);
}

.sitemap_list dl dd ul li a:hover {
  border-bottom: solid 1px #a1a7b3;
  transition: 0.3s;
}

.link_box {
  background: #233142;
  margin-top: 4em;
  padding: 0 4%;
}

.link_box ul {
  display: flex;
  flex-wrap: wrap;
}

.link_box ul li {
  width: calc(100% / 3 - 1em);
  font-size: clamp(12px, 1.5vw, 14px);
  text-align: center;
  line-height: 1.8em;
  margin: 1em 0;
}

.link_box ul li:nth-of-type(n+2) {
  border-left: solid 1px #dfe1e5;
}

.link_box ul li a {
  color: #fff;
  display: block;
  border-radius: 1em;
  position: relative;
  margin: 0 0.5em;
  padding: 0.8em 0.5em;
}

.link_box ul li a:after {
  content: '\f08e';
  font-family: 'Font Awesome 5 Free';
  font-size: 12px;
  font-weight: 600;
  position: absolute;
  top: 0.5em;
  right: 4%;
}

.link_box ul li a:hover {
  background: #10161d;
  transition: 0.3s;
}

.link_box ul li a span {
  color: #a1a7b3;
  font-size: 12px;
  font-weight: 700;
  display: block;
}

@media print, screen and (max-width: 896px) {
  .footer_content {
    flex-direction: column-reverse;
  }
  
  .footer_box,
  .sitemap_box {
    width: 100%;
  }
  
  .footer_inner {
    text-align: center;
    margin-top: 3em;
  }
  
  .footer_inner a {
    margin: 0 auto;
  }
  
  .footer_inner img {
    max-width: 165px;
    display: block;
  }
  
  .footer_sns {
    justify-content: center;
  }
  
  .sitemap_box p {
    width: 30px;
  }
  
  .sitemap_inner {
    width: calc(100% - 30px);
  }
  
  .sitemap_list {
    width: 100%;
  }
  
  .sitemap_box dl dt:after {
    width: 25px;
    height: 25px;
    line-height: 25px;
  }
  
  .sitemap_list dl dd ul {
    display: flex;
    flex-wrap: wrap;
  }
  
  .sitemap_list dl dd ul li {
    width: 50%;
    letter-spacing: normal;
  }
  
  .link_box ul {
    flex-direction: column;
  }
  
  .link_box ul li {
    width: 100%;
  }
  
  .link_box ul li:nth-of-type(n+2) {
    border-left: none;
    border-top: solid 1px #dfe1e5;
  }
  
  .link_box ul li {
    margin: 0;
  }
  
  .link_box ul li a {
    margin: 1em 0;
  }
}

/*---------------------------------
  PageTop
---------------------------------*/
.pagetop {
	width: 60px;
	height: 60px;
	line-height: 55px;
	border-radius: 50%;
	color: #fff !important;
	font-size: 18px;
	text-align: center;
	background: linear-gradient(100deg, #ff9933 20%, #ff7166 80%);
	display: block;
	position: fixed;
	right: 40px;
	bottom: 120px;
	z-index: 1000;
}

.pagetop:hover {
	opacity: 0.8;
	transition: 0.3s;
}

@media screen and (max-width: 896px) {
	.pagetop {
		width: 50px;
		height: 50px;
		line-height: 45px;
		font-size: 14px;
		right: 10px;
		bottom: 10px;
	}
}

@media screen and (max-width: 480px) {
  .pagetop {
    display: none !important;
  }
}