/* 
 * Theme Name: 戸田ファインテック株式会社
 * Author: 株式会社プエンテ
 * Description: 戸田ファインテック株式会社のテーマ
 * Version: 1.0
*/

@charset "UTF-8";

@font-face {
font-family: 'Noto Sans JP';
font-style: normal;
font-weight: 300;
font-display: swap;
src: url('/fonts/NotoSansJP-Light.woff2') format('woff2'),
url('/fonts/NotoSansJP-Light.woff') format('woff'),
url('/fonts/NotoSansJP-Light.ttf') format('ttf');
}
@font-face {
font-family: 'Noto Sans JP';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url('/fonts/NotoSansJP-Regular.woff2') format('woff2'),
url('/fonts/NotoSansJP-Regular.woff') format('woff'),
url('/fonts/NotoSansJP-Regular.ttf') format('ttf');
}
@font-face {
font-family: 'Noto Sans JP';
font-style: normal;
font-weight: 500;
font-display: swap;
src: url('/fonts/NotoSansJP-Medium.woff2') format('woff2'),
url('/fonts/NotoSansJP-Medium.woff') format('woff'),
url('/fonts/NotoSansJP-Medium.ttf') format('ttf');
}
@font-face {
font-family: 'Noto Sans JP';
font-style: bold;
font-weight: 600;
font-display: swap;
src: url('/fonts/NotoSansJP-SemiBold.woff2') format('woff2'),
url('/fonts/NotoSansJP-SemiBold.woff') format('woff'),
url('/fonts/NotoSansJP-SemiBold.ttf') format('ttf');
}
@font-face {
font-family: 'Oswald';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url('/fonts/Oswald-Regular.woff2') format('woff2'),
url('/fonts/Oswald-Regular.woff') format('woff'),
url('/fonts/Oswald-Regular.ttf') format('ttf');
}
@font-face {
font-family: 'Oswald';
font-style: normal;
font-weight: 500;
font-display: swap;
src: url('/fonts/Oswald-Medium.woff2') format('woff2'),
url('/fonts/Oswald-Medium.woff') format('woff'),
url('/fonts/Oswald-Medium.ttf') format('ttf');
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
html {
	font-size: 62.5%;
	-webkit-text-size-adjust: 100%;
}
html.fixed {
	width: 100%;
	height: 100%;
	position: fixed;
}
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
	padding: 0;
    margin: 0;
}
a {
  text-decoration: none;
  transition: .5s;
  display: inline-block;
  color: #337ab7;
}
a:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  opacity: 0.8;
}

h1, h2, h3, h4, h5, p {
    padding: 0;
    margin: 0;
}
figure {
	padding: 0;
	margin: 0;
	line-height: 1;
}
figcaption {
	line-height: 1.2;
}
img {
	max-width: 100%;
}
section {
	padding: 5rem 1.6rem;
	transition: 0.8s ease-in-out;
	transform: translateY(3rem);
	opacity: 0;
}
/*section:first-child {
	padding: 20px 0 50px;
}
.home section:first-child {
	padding: 50px 0;
}*/
section.view {
  transform: translateY(0);
  opacity: 1.0;
}
.page section {
	display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.page section .inner {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}
.page section .inner-s {
	max-width: 800px;
	width: 60%;
}
.page section:nth-of-type(even) {
  background-color: #f9eddf;
}

.sp {
  display: none !important;
}
.br-n br {
  display: none;
}
@media (max-width: 1024px) {
	.page section .inner-s {
		width: 80%;
	}
}
@media (max-width: 800px) {
	.page section .inner {
		max-width: 100%;
	}
}
@media (max-width: 768px) {
	.page section .inner-s {
		width: 100%;
	}
	.sp {
    	display: block !important;
	}
  .pc {
    display: none !important;
  }
}

/** -------------------------
Loading
--------------------------**/
.loading {
	display: flex;
	align-items: center;
	background-color: #fff;
	width: 100dvw;
	height: 100dvh;
	justify-content: center;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 11;
	flex-direction: column;
}
.loading_logo {
  opacity: 0;
  animation: logo_fade 1.3s 0.5s forwards;
  width: 90px;
  height: auto;
}

@keyframes logo_fade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.loader {
  width: 60px;
  aspect-ratio: 2;
  --_g: no-repeat radial-gradient(circle closest-side,#eecfa9 90%,#0000);
  background: 
    var(--_g) 0%   50%,
    var(--_g) 50%  50%,
    var(--_g) 100% 50%;
  background-size: calc(100%/3) 40%;
  animation: l3 1s infinite linear;
}
@keyframes l3 {
    20%{background-position:0%   0%, 50%  50%,100%  50%}
    40%{background-position:0% 100%, 50%   0%,100%  50%}
    60%{background-position:0%  50%, 50% 100%,100%   0%}
    80%{background-position:0%  50%, 50%  50%,100% 100%}
}

/** -------------------------
Header
--------------------------**/
header {
  position: fixed;
  z-index: 10;
  display: flex;
  width: 100%;
  transition: all 0.5s ease-out;
	background-color: rgba(255, 255, 255, 0.65);
  justify-content: space-between;
	height: 64px;
	line-height: 1;
	top: 0;
	left: 0;
}
.page header {
	background-color: rgba(255, 255, 255, 0.4);
}
header.scroll {
	background-color: rgba(255, 255, 255, 1);
	box-shadow: 0 1px 4px #999;
}
header a {
	color: #000;
}
.header_logo {
	overflow: visible;
	background: url('../images/common/bg_logo.png') no-repeat left top;
	width: 480px;
    height: 93px;
  transition: all 0.3s ease-out;
}
.header_logo img {
    width: 421px;
    height: auto;
	transition: all 0.3s ease-out;
}
header.scroll .header_logo {
	background-size: 350px auto;
    /*width: 350px;*/
    height: 68px;
}
header.scroll .header_logo img {
    width: 300px;
}
nav > ul {
    display: flex;
    align-items: flex-end;
    height: 100%;
}
nav > ul > li {
	position: relative;
  margin: 1.6rem;
	white-space: nowrap;
}
nav > ul > li > a::after {
  position: absolute;
  bottom: -1.4rem;
  left: 0;
  display: block;
  width: 0;
  height: 2px;
  content: "";
  -webkit-transition: width .3s;
  transition: width .3s;
  background-color: #a72126;
}

nav ul li i + span{
  display: none;
}
nav ul {
    list-style: none;
	padding: 0;
}
nav ul li .accordionBtn {
    position: static;
	display: inline-block;
	font-size: 1.2rem;
}
.dropdown {
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-out;
    width: 100%;
    position: absolute;
    top: 3.2rem;
    left: 0;
	height: 100%;
	min-width: 25rem;
	transform: scaleY(0);
    transform-origin: center top;
}
.dropdown li {
  display: block;
	line-height: 1.2;
	white-space: normal;
	box-shadow: 1px 1px 4px #999;
    border-bottom: 1px solid #ccc;
}
.dropdown li a {
  padding: 1em 0.5em 1em 2em;
    display: block;
    width: 100%;
    background-color: #fff;
}
.dropdown > li:last-child {
    border-bottom: none;
}
ul.children li a {
	padding-left: 2em;
}
ul.children li a::before {
	content: '－';
}
.header_contact {
	margin: 0.6rem 1.6rem;
	text-align: center;
}
.tel a {
	color: #a72126;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 1;
	font-family: 'Oswald', 'Noto Sans JP', sans-serif;
	margin-bottom: 0.4rem;
}
.tel a::before {
	font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  content: '\f095';
  font-size: 1.4rem;
	padding-right: 0.3rem;
}
.b_contact a {
	display: block;
	  border-radius: 2rem;
  padding: 0.8rem 1rem;
  background: #a72126;
	color: #fff;
	font-weight: 300;
}
#mask {
	display: none;
}

.btn-menu {
	display: none;
	position: fixed;
    z-index: 100;
    width: 45px;
    height: 60px;
    padding: 8px;
    cursor: pointer;
    text-align: center;
    border: none;
    outline: none;
    background: transparent;
    appearance: none;
	top: 0;
    right: 0;
}
.btn-menu__line {
  position: relative;
  left: 0;
  display: block;
  width: 100%;
  height: 3px;
  -webkit-transition: all .4s;
  transition: all .4s;
  border-radius: 1.5px;
  background-color: #a72126;
}
.btn-menu__line::before, .btn-menu__line::after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  -webkit-transition: inherit;
  transition: inherit;
  border-radius: 1.5px;
  background-color: inherit;
}
.btn-menu__line::before {
  top: -8px;
}
.btn-menu__line::after {
  top: 8px;
}
.btn-menu.active .btn-menu__line {
  background-color: transparent;
}
.btn-menu.active .btn-menu__line::before, .btn-menu.active .btn-menu__line::after {
  top: 0;
  background-color: #a72126;
}
.btn-menu.active .btn-menu__line::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.btn-menu.active .btn-menu__line::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (hover: hover) {
	nav > ul > li > a:hover {
  		text-decoration: none;
	}
	nav > ul > li > a:hover::after {
  		width: 100%;
	}
  	nav > ul > li:hover .dropdown {
    	visibility: visible;
    	opacity: 1;
		transform: scaleY(1);
	}
	.dropdown li a:hover {
  		color: #a72126;
		-webkit-transform: scale(1);
    	transform: scale(1);
    	opacity: 1;
		background-color: #f9eddf;
	}
}
@media (hover: none) {
	nav ul li a:hover {
		-webkit-transform: scale(1);
    	transform: scale(1);
    	opacity: 1;
	}
	.dropdown {
		display: none;
    	visibility: visible;
    	opacity: 1;
		transform: none;
		transition: none;
	}
}
@media (max-width: 1280px) {
	.header_logo {
		background-size: 370px auto;
	    width: 370px;
	    height: 72px;
	}
	.header_logo img {
	    width: 330px;
	    height: auto;
	}
	nav > ul > li {
	    margin: 1.6rem 0.8rem;
	}
	li.home {
		display: none;
	}
	.header_contact {
		margin: 0.6rem 0.8rem;
	}
}
@media (max-width: 980px) {
	.btn-menu {
		display: block;
		/*align-items: center;
		justify-content: center;*/
	}
	.header_nav {
		position: fixed;
		top: 0;
		right: -3000px;
		width: 250px;
		padding: 0;
		transition: opacity .3s ease;
		opacity: 0;
		background-color: #fff;
		opacity: 0;
		height:100dvh;
		overflow-y: scroll;
	}
	header.show .header_nav {
		display: block;
		opacity: 1;
		right:0px;
		z-index: 13;
	} 
	#mask {
		transition: .5s;
		opacity: 0;
	}
	header.show #mask {
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: #000;
		opacity: .8;
		z-index: 2;
		cursor: pointer;
		z-index: 12;
	}
	nav ul {
		flex-direction: column;
	}
	nav ul li {
    margin: 0;
    width: 100%;
		overflow: hidden;
		border-bottom: 1px solid #ccc;
  }
nav ul li a {
	display: block;
    padding: 1.6rem;
  }
nav ul li a:hover {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}
	nav > ul > li > a::after {
    content: none;
}
	nav ul li i + span{
  display: inline;
	margin-left: 0.5rem;
}
	li.home {
		display: block;
	}
	.header_contact {
		margin: 0;
		order: 10;
		padding: 1rem;
        border-bottom: 0;
	}

	nav ul li .accordionBtn {
    	position: absolute;
		right: 0;
		font-size: 1.6rem;
		top: 0;
		bottom: auto;
		display: block;
		padding: 1.6rem;
	}
	.dropdown {
		display: none;
    	visibility: visible;
    	opacity: 1;
    	position: static;
    	min-width: 260px;
    	transform: none;
		transition: none;
	}
/*nav > ul > li:hover .dropdown {
    visibility: hidden;
    opacity: 0;
	transform: none;
}*/
	/*.open .dropdown {
		visibility: visible;
		opacity: 1;
		height: auto;
		transform: scaleY(1);
	}*/
/*	.dropdown::before {
  content: none;
}*/
.dropdown li {
	    border-bottom: none;
	box-shadow: none;
	    border-top: 1px solid #ccc;
}

	.dropdown li a {
	background: #f9eddf;
}
	ul.children li a {
	padding-left: 2em;
}
	nav ul .sp {
    display: block !important;
  }
  
  .tel a {
	font-size: 2.4rem;
	margin-bottom: 0.4rem;
	padding: 1rem;
}
.tel a::before {
  font-size: 2rem;
}
.b_contact a {
	min-width: 200px;
	padding: 1.4rem 2.5rem 1.4rem 1.4rem;
	border-radius: 3rem;
	position: relative;
	transition: .5s;
	font-size: 1.8rem;
}
.b_contact a::after {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content: '\f054';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
	font-size: 1.2rem;
}
}

@media (max-width: 768px) {
	header {
    	background-color: rgba(255, 255, 255, 1);
	}
}

@media (max-width: 420px) {
	.header_logo, header.scroll .header_logo {
		background-size: 280px 64px;
	    /*width: 280px;*/
	    height: 64px;
	}
	.header_logo img, header.scroll .header_logo img {
	    width: 255px;
	}
}
@media (max-width: 280px) {
	.dropdown {
		min-width: 100%;
	}
}

/** -------------------------
FOOTER
--------------------------**/
.page main:has(section:nth-child(2n):last-child) + #bg_footer {
      background-color: #f9eddf;
}
#bg_footer {
	line-height: 1;
}
#bg_footer img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}
footer {
  	background: #a72126;
	width: 100%;
	color: #fff;
	font-weight: 300;
	position: relative;
}
footer a {
	color: #fff;
}
footer p {
    padding: 0;
    margin: 0;
}
footer p span {
    white-space: nowrap;
}
footer .inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 1.6rem;
	display: flex;
	justify-content: space-around;
}
footer .inner div {
	width: auto !important;
}
.footer_logo {
	display: flex;
    align-items: center;
    flex-direction: column;
}
.footer_logo img {
	width: 300px;
	height: auto;
}
.footer_logo .button1 a {
	color: #a72126;
	background: #f9eddf;
	font-weight: 400;
}
.footer_menu {
  	padding-top: 5rem;
	display: flex;
}
.footer_menu ul {
    list-style: none;
	padding: 0;
}
.footer_menu > ul {
    padding-left: 8rem;
}
.footer_menu ul li {
    padding: 1.2rem 0;
}
.footer_menu ul li a {
  	display: block;
    position: relative;
    padding-left: 1.2rem;
    line-height: 1.4;
}
.footer_menu ul li a::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 0.4rem;
    left: 0;
    font-size: 1.2rem;
}
.footer_menu ul li ul li {
    padding: 0.8rem 0 0 0;
}
.footer_menu ul li ul li a {
    padding-left: 3.2rem;
}
.footer_menu ul li ul li a::before {
    left: 2rem;
}
.footer_menu ul li br {
    display: none;
}
.copyright {
  font-size: 1.2rem;
  text-align: center;
  padding: 10rem 1rem 1rem;
}
.page-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 15;
  display: none;
}
.page-top a {
  display: block;
  width: 5rem;
  height: 5rem;
  padding: 1rem;
  text-align: center;
  text-decoration: none;
  color: #fff;
  border-radius: 50%;
  background-color: rgba(167 33 38 / 65%);
  transition: all 0.5s ease-out;
}
.page-top.visible {
  display: block;
}
.page-top a i {
  	font-size: 3.2rem;
}

@media (max-width: 1024px) {
	.footer_menu > ul {
		padding-left: 4rem;
	}
}
@media (max-width: 850px) {
	footer .inner {
		flex-direction: column;
		align-items: center;
	}
	.footer_menu > ul:first-child {
		padding-left: 0;
	}
	.page-top a {
  		width: 3.5rem;
  		height: 3.5rem;
  		padding: 0.5rem;
	}
	.page-top a i {
  		font-size: 2rem;
	}
}
@media (max-width: 550px) {
	.footer_menu > ul {
		padding-left: 2rem;
	}
	.footer_menu ul li br {
    	display: block;
	}
}
@media (max-width: 420px) {
	.footer_menu {
    	flex-direction: column;
	}
	.footer_menu ul li br {
    	display: none;
	}
}

/** -------------------------
Title
--------------------------**/
h3 {
	font-size: 3rem;
	line-height: 1.2;
	padding-bottom: 1.6rem;
	font-weight: 400;
}
h4 {
	margin-bottom: 1.6rem;
	font-size: 2.4rem;
	line-height: 1.2;
	font-weight: 500;
}
h5 {
	margin-bottom: 1.6rem;
	font-size: 1.6rem;
	font-weight: 500;
}
.normal {
	font-size: 1.6rem;
	font-weight: 400;
}

.title_en {
	text-align: center;
	line-height: 1;
	padding-bottom: 2rem;
}
.title_en h2 {
	font-size: 4.3rem;
	font-family: 'Oswald', 'Noto Sans JP', sans-serif;
	padding-bottom: 1.6rem;
	font-weight: 500;
}
.title_en small {
	display: block;
	font-size: 1.6rem;
}

/*@media (max-width: 920px) {
	.title1 h2 {
	  font-size: 3rem;
	}
}*/
@media (max-width: 768px) {
	h3 {
		font-size: 2.4rem;
	}
	h4 {
		font-size: 2rem;
	}
	.title_en h2 {
		font-size: 3.8rem;
	}
}
.page main, .blog main {
	background: url('../images/common/bg_weave_b.png') no-repeat left top;
	background-size: 100% auto;
}
.page-title {
	/*background: #f9eddf;*/
	/*margin-top: 64px;*/
	padding: 10rem 0 3rem;
}
.page h3 {
	text-align: center;
}
.page h3::after {
	content: '';
    width: 55%;
    height: 10px;
    border-bottom: 10px dotted #a72126;
    display: block;
	margin: 1rem auto 2rem;
    line-height: 1;
}
/*@media (max-width: 920px) {
	.page h3 {
	font-size: 2.5rem;
}
}
@media (max-width: 767px) {
	.page h3 {
	font-size: 2.2rem;
}
}
@media (max-width: 620px) {
.page-title {
    height: 180px;
}
	.page-title h2 {
  font-size: 3.2rem;
		margin-top: 20px;
	}
}*/

/** -------------------------
Button
--------------------------**/
.button1 {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1em;
	flex-wrap: wrap;
	margin-top: 3rem;
	row-gap: 1em;
}
.button1 a {
	display: block;
	width: auto;
	min-width: 200px;
	padding: 1.4rem 2.5rem 1.4rem 1.4rem;
	text-align: center;
	line-height: 1;
	color: #fff;
	border-radius: 3rem;
	position: relative;
	transition: .5s;
	font-size: 1.8rem;
	background: #a72126;
	letter-spacing: 0.15rem;
}
.button1 a::after {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content: '\f054';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
	font-size: 1.2rem;
}
.button1 .back a::after {
	content: '\f053';
  left: 1rem;
	right: auto;
}
.button2 a {
	min-width: 250px;
}
@media (max-width: 400px) {
	.button1 {
		padding: 1.4rem 1.5em 1.4rem 1em;
	}
}

/** -------------------------
共通
--------------------------**/
/* フォント */

.big1 {
	font-size: 2.4rem;
}
.required {
	color: #a72126;
}

/* 余白 */
.p-l1 {
	padding-left: 1em;
}
.ind-b {
	text-indent: -1em;
}

/* 行そろえ */
.txt-center {
	text-align: center;
}
.txt-left {
	text-align: left;
}
.txt-right {
	text-align: right;
}

.fbox {
	display: flex;
    column-gap: 2%;
    row-gap: 2.4rem;
	justify-content: center;
	flex-wrap: wrap;
}
.fbox article {
	flex-basis: 32%;
}

/*.frame1 {
	border: 2px solid #a3926d;
  border-radius: 15px;
	padding: 20px;
	background-color: #fff;
	margin: 30px auto;
	text-align: center;
}
.frame1 h3{
	margin: 0;
	font-size: 2rem;
	letter-spacing: 0;
}
.frame1 h3::after{
	content: none;
}
.frame1 .button1 {
	margin-top: 16px;
}*/
@media (max-width: 768px) {
	.fbox article {
		flex-basis: 49%;
	}
}
@media (max-width: 500px) {
	.fbox article {
		column-gap: 0;
		flex-basis: 100%;
		max-width: 360px;
	}
}


/** -------------------------
HERO
--------------------------**/
.swiper-container {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.swiper-container .swiper-wrapper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.swiper-slide img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-pagination {
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  z-index: 4;
}

.swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: #666666;
  opacity: .3;
  z-index: 5;
}

/*@media (max-width: 376px) {
  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}*/

.swiper-pagination-bullet:not(:last-child) {
  margin-right: 15px;
}

.swiper-pagination-bullet-active {
  background: #666666;
  opacity: 1;
}

.swiper-button-next, .swiper-button-prev {
  color: #fff;
  z-index: 3;
}

.hero {
  width: 100%;
  height: 100dvh;
  background-color: gray;
	position: relative;
}
.hero_text {
  position: absolute;
	bottom: 0;
  left: 0;
  z-index: 2;
	color: #fff;
	/*text-shadow: #000 3px 3px 5px, #000 -3px 3px 5px, #000 3px -3px 5px, #000 -3px -3px 5px;*/
	background: url('../images/common/bg_weave.png') no-repeat left bottom -70px;
	background-size: contain;
	width: 100%;
    height: 100%;
}
.hero_text h2 {
  position: absolute;
	bottom: 8.5rem;
  left: 6rem;
  font-size: 4rem;
  line-height: 1.4;
  font-weight: 400;
}
@media (max-width: 1024px) {
	.hero_text {
		background-position: left bottom;
	}
}
@media (max-width: 960px) {
	.hero_text h2 {
  		font-size: 3.5rem;
		bottom: 6rem;
	}
}
@media (max-width: 768px) {
	.hero {
  		padding-top: 64px;
	}
}
@media (max-width: 500px) {
	.swiper-button-next, .swiper-button-prev {
    	width: auto;
    	height: 30px;
	}
	.swiper-button-next:after, .swiper-button-prev:after {
    	font-size: 30px;
	}
	/*.swiper-slide img {
  		-o-object-fit: contain;
     	object-fit: contain;
	}*/
	.hero_text h2 {
  		left: 1.6rem;
		font-size: 3rem;
	}
	.hero_text br {
    	display: none;
  	}
}
@media (max-width: 420px) {
	.hero_text h2 {
		font-size: 2.6rem;
	}
}
@media (min-height: 600px) {
	@media (max-width: 920px) {
	  .hero {
		height: 80dvh;
	  }
	 /* .swiper-pagination {
		bottom: -40px;
	}*/
	}
	@media (max-width: 420px) {
	  .hero {
		height: 65dvh;
	  }
	}
}

/** -------------------------
TOP About us
--------------------------**/
.top_aboutus {
	position: relative;
	padding: 0;
    width: 100%;
}
.top_aboutus::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
	display: block;
    background: url('../images/top/aboutus_image2.jpg') no-repeat left bottom;
    clip-path: polygon(0 0, 32% 0, 60% 100%, 0 100%);
    background-size: 60% auto;
	-webkit-mask-image: linear-gradient(rgba(0,0,0,0) 25%, rgba(0,0,0,1) 70%);
	mask-image: linear-gradient(rgba(0,0,0,0) 25%, rgba(0,0,0,1) 70%);
}
.top_aboutus .inner {
	padding: 3.5rem 4.5rem 2.5rem 45%;
	background: url('../images/common/bg_weave2.png') no-repeat left top;
	background-size: 100% auto;
	display: flex;
    align-items: center;
	min-height: 800px;
}
.top_aboutus .inner > div {
	padding: 4rem 2rem 2rem 2rem;
	background: rgba(255, 255, 255, 0.75);
	border-radius: 1rem;
}
.top_aboutus .title_en {
	text-align: left;
	display: flex;
	align-items : center;
	padding-bottom: 4.5rem;
}
.top_aboutus .title_en h2 {
	padding: 0 2rem 0 0;
}
.top_aboutus .title_en, .top_aboutus h3, .top_aboutus p {
	/*-webkit-text-stroke: 2px #fff;
	text-stroke: 2px #fff;
	text-shadow: #fff 3px 3px 5px, #fff -3px 3px 5px, #fff 3px -3px 5px, #fff -3px -3px 5px;*/
	text-shadow: 
    #fff 2px 0px 8px,  #fff -2px 0px 8px,
    #fff 0px -2px 8px, #fff 0px 2px 8px,
    #fff 2px 2px 8px, #fff -2px 2px 8px,
    #fff 2px -2px 8px, #fff -2px -2px 8px,
    #fff 1px 2px 8px,  #fff -1px 2px 8px,
    #fff 1px -2px 8px, #fff -1px -2px 8px,
    #fff 2px 1px 8px,  #fff -2px 1px 8px,
    #fff 2px -1px 8px, #fff -2px -1px 8px;
}
.top_aboutus .button1 {
	justify-content: flex-end;
}
@media (max-width: 1648px) {
	.top_aboutus .inner {
    	min-height: 600px;
	}
}
@media (max-width: 1536px) {
	.top_aboutus p br {
		display: none;
	}
}
@media (max-width: 1280px) {
	.top_aboutus .inner {
    	padding: 3.5rem 2rem 2.5rem 35%;
	}
}
@media (max-width: 1180px) {
	.top_aboutus::before {
		/*clip-path: polygon(0 0, 50% 0, 100% 100%, 0 100%);*/
		background-size: 100% auto;
	}
}
@media (max-width: 768px) {
	.top_aboutus::before {
		clip-path: none;
        background-size: contain;
		/*-webkit-mask-image: linear-gradient(rgba(0,0,0,0) 55%, rgba(0,0,0,1) 100%);
		mask-image: linear-gradient(rgba(0,0,0,0) 55%, rgba(0,0,0,1) 100%);*/
	}
	.top_aboutus .inner {
    	padding-left: 2rem;
		padding-top: 7rem;
		align-items: flex-start;
	}
	.top_aboutus .inner > div {
		background: none;
		padding: 0;
		margin-top: 4rem;
	}
	.top_aboutus .title_en {
		padding-bottom: 2rem;
	}
}
@media (max-width: 500px) {
}

/** -------------------------
TOP Service
--------------------------**/
.top_service {
	position: relative;
	padding: 0;
    width: 100%;
}
.top_service::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
	display: block;
    background: url('../images/top/service_image1.jpg') no-repeat right top;
	clip-path: polygon(60% 0, 100% 0, 100% 100%, 40% 100%);
    background-size: 60% auto;
}
.top_service .inner {
	padding: 4% 45% 4.5rem 4.5rem;
	background: url('../images/common/logomark1.png') no-repeat center center;
	display: flex;
    align-items: center;
}
.top_service .title_en {
	text-align: left;
	display: flex;
	align-items : center;
	padding-bottom: 4.5rem;
}
.top_service .title_en h2 {
	padding: 0 2rem 0 0;
}
.top_service h3, .top_service p {
	/*-webkit-text-stroke: 2px #fff;
	text-stroke: 2px #fff;
	text-shadow: #fff 3px 3px 5px, #fff -3px 3px 5px, #fff 3px -3px 5px, #fff -3px -3px 5px;*/
	text-shadow: 
    #fff 2px 0px 8px,  #fff -2px 0px 8px,
    #fff 0px -2px 8px, #fff 0px 2px 8px,
    #fff 2px 2px 8px, #fff -2px 2px 8px,
    #fff 2px -2px 8px, #fff -2px -2px 8px,
    #fff 1px 2px 8px,  #fff -1px 2px 8px,
    #fff 1px -2px 8px, #fff -1px -2px 8px,
    #fff 2px 1px 8px,  #fff -2px 1px 8px,
    #fff 2px -1px 8px, #fff -2px -1px 8px;
}
.top_service .button1 {
	justify-content: flex-start;
}

@media (max-width: 1280px) {
	.top_service h3 br, .top_service p br {
		display: none;
	}
}
@media (max-width: 1180px) {
	.top_service::before {
		clip-path: polygon(60% 0, 100% 0, 100% 100%, 44% 100%);
		/*clip-path: polygon(50% 0, 100% 0, 100% 100%, 0 100%);*/
		background-size: auto 100%;
	}
	.top_service .inner {
		padding: 4% 35% 4.5rem 2rem;
	}
}
@media (max-width: 926px) {
	.top_service::before {
		background-position: right -120px top;
	}
	.top_service .inner {
		background-size: 200px auto;
	}
}
@media (max-width: 768px) {
	.top_service::before {
		clip-path: none;
		background: url('../images/top/service_image2.jpg') no-repeat left bottom;
        background-size: 100% auto;
        background-position: bottom;
	}
	.top_service .inner {
    	padding-right: 2rem;
		padding-top: 4.5rem;
		min-height: 400px;
		background-size: 150px auto;
	}
	.top_service .title_en {
		padding-bottom: 2rem;
	}
}

/** -------------------------
TOP Recruit
--------------------------**/
.top_recruit {
	padding: 10rem 0 5rem 0;
}
.top_recruit .swiper-container h3 {
	position: absolute;
	bottom: 0;
    left: 50%;
    transform: translateX(-50%);
	text-align: center;
	margin: 0 auto;
	width: 90%;
	padding: 3.5rem;
	line-height: 1;
	background-color: rgba(255, 255, 255, 0.65);
	border-top-left-radius: 0.7rem;
    border-top-right-radius: 0.7rem;
	z-index: 2;
	font-size: 3.5rem;
	text-shadow: 
    #fff 2px 0px 8px,  #fff -2px 0px 8px,
    #fff 0px -2px 8px, #fff 0px 2px 8px,
    #fff 2px 2px 8px, #fff -2px 2px 8px,
    #fff 2px -2px 8px, #fff -2px -2px 8px,
    #fff 1px 2px 8px,  #fff -1px 2px 8px,
    #fff 1px -2px 8px, #fff -1px -2px 8px,
    #fff 2px 1px 8px,  #fff -2px 1px 8px,
    #fff 2px -1px 8px, #fff -2px -1px 8px;
}
.top_recruit .inner {
	text-align: center;
	margin: 0 auto;
	width: 90%;
	padding: 3.5rem;
	border-bottom-left-radius: 0.7rem;
    border-bottom-right-radius: 0.7rem;
	background: url('../images/common/logomark2.png') no-repeat 15px 10px, #f9eddf;
}
@media (max-width: 960px) {
	.top_recruit .swiper-container h3 {
		font-size: 2.8rem;
	}
}
@media (max-width: 768px) {
	.top_recruit .swiper-container h3 {
		width: 95%;
		padding: 2rem 1.6rem;
	}
	.top_recruit .inner {
		width: 95%;
		padding: 2rem 1.6rem;
	}
	.top_recruit .inner br {
		display: none;
	}
}
@media (max-width: 420px) {
	.top_recruit .swiper-container h3 {
		font-size: 2.2rem;
	}
}

/** -------------------------
TOP News
--------------------------**/
.top_news {
	padding-top: 3rem;
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
}
.top_news .title_en {
	width: 30%;
	padding: 4rem 2rem;
}
.top_news .button1 {
	margin-top: 5rem;
}
.top_news .inner {
	width: 70%;
	padding: 0 2rem;
}
.news article {
  padding: 2rem 0 2rem 1rem;
  border-bottom: 1px solid #ccc;
}
.blog.news article:first-of-type {
  padding-top: 0;
}
.news_date {
  display: flex;
  align-items: center;
  font-family: 'Oswald', 'Noto Sans JP', sans-serif;
  font-weight: 400;
  letter-spacing: 0.1rem;
  line-height: 1;
}
.news_date time {
	color: #a72126;
	font-size: 1.5rem;
	display: block;
}
.news_new {
  display: block;
  padding : 0.3rem 1rem;
  text-align: center;
  color: #fff;
  font-size: 1.3rem;
  background-color: #f90;
  border-radius: 1.5rem;
  margin-left: 1rem;
}
.news h3 {
  font-size: 1.6rem;
  padding: 1.6rem 3.5rem 0 0;
  position: relative;
}
.news h3 a {
  color: #000;
  transition: 0.5s;
  cursor: pointer;
}
.news .news_content {
  border-top: 1px dotted #ccc;
  font-size: 1.4rem;
  padding-top: 1.6rem;
  margin-top: 2rem;
  display: none;
}
.news_content > div {
	display: flex;
}
.news_content > div > figure {
	max-width: 180px;
	padding-right: 1.6rem;
}
.accordionBtn {
    position: absolute;
    font-size: 1.9rem;
    bottom: 0;
    right: 0;
    cursor: pointer;
    transition: 0.2s ease;
}
.accordionBtn:hover {
  transform: scale(1.05);
  opacity: 0.8;
}
.open .accordionBtn {
    transform: rotate(180deg);
}
.accordionBtn.active {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
	.top_news {
		flex-direction: column;
    	align-items: center;
	}
	.top_news .inner {
		width: 100%;
		padding: 0;
	}
	.top_news .title_en {
		width: auto;
		padding: 0 0 2rem 0;
	}
	.top_news .button1 {
		margin-top: 3rem;
	}
}

/** -------------------------
Staff blog
--------------------------**/
.blog .inner {
	display: flex;
	column-gap: 2rem;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}
.blog.list .inner {
	max-width: 1200px;
}
.blog.news .inner {
	max-width: 1100px;
}
.blog .inner .content {
	width: 75%;
}
.blog .inner aside {
	width: 25%;
}
.staff .inner .content {
	width: 80%;
}
.staff .inner aside {
	width: 20%;
}
.blog .inner aside section {
	padding: 5rem 1rem 2rem 0;
}
.blog .inner aside h4 {
    margin-bottom: 0;
    font-size: 1.8rem;
    font-weight: 400;
    background: #a72126;
    color: #fff;
    padding: 0.5rem 0.5rem 0.5rem 1.6rem;
    border-radius: 0.7rem;
}
.blog .inner aside ul {
	list-style: none;
	padding: 0 0.7rem;
}
.blog .inner aside ul li {
	border-bottom: 1px solid #ccc;
}
.blog .inner aside ul li:has(ul) ul li {
	border-top: 1px solid #ccc;
	border-bottom: none;
}
.blog .inner aside ul li a {
	display: block;
	color: #000;
    padding: 1rem;
	line-height: 1.2;
}
.blog .inner aside ul li a:hover {
	color: #a72126;
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    background-color: #f9eddf;
}
.blog .inner aside ul li a time {
	font-family: 'Oswald', 'Noto Sans JP', sans-serif;
	font-size: 1.4rem;
	letter-spacing: 0.1rem;
	color: #999;
}
.blog .inner aside ul li a:hover time {
	color: #ccc;
}
.blog_list {
	max-width: 1100px;
	margin: 0 auto;
	padding-bottom: 0;
}
.blog_list .fbox article {
	position: relative;
	background: #f9eddf;
	border-radius: 0.7rem;
	overflow: hidden;
	transition: .5s;
}
.blog_list .fbox article:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  opacity: 0.8;
}
.blog_list .fbox article a {
	display: block;
	color: #000;
}
.blog_list .fbox article a:hover {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
}
.blog_list .fbox figure img {
	aspect-ratio: 3 / 2;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.blog_list .fbox figure.common_image img {
    object-fit: contain;
    padding: 1.6rem;
}
.blog_list .fbox .text {
	padding: 2rem 1.6rem 4rem 2rem;
	line-height: 1.4;
}
.top .blog_list .fbox .text {
	padding-bottom: 2rem;
}
.blog_list .fbox h3 {
	font-size: 2rem;
	padding-bottom: 1rem;
	font-weight: 600;
}
.blog_list time {
  font-family: 'Oswald', 'Noto Sans JP', sans-serif;
	font-size: 1.5rem;
  letter-spacing: 0.1rem;
  color: #a72126;
	padding-top: 1rem;
	display: block;
}
.blog_list .news_date time {
	padding: 0;
}
.blog_list article .blog_category {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
	position: absolute;
	left: 20px;
	bottom: 12px;
}
.blog_list article .blog_category a {
    color: #fff;
    padding: 5px 8px;
    margin-right: 0.5rem;
    margin-top: 0.3rem;
    background-color: #e1b680;
    border-radius: 12px;
    display: block;
    line-height: 1;
	font-size: 1.2rem;
}
.blog_list article .blog_category a:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0.8;
}
h3.entry_title {
    font-weight: 500;
    border-bottom: 1px solid #ccc;
}
h3.entry_title::before {
    content: '●';
    font-size: 1.6rem;
    padding-right: 0.8rem;
    color: #a72126;
    position: relative;
    top: -3px;
}
.blog_list h3.entry_title {
	font-size: 3rem;
    line-height: 1.2;
    padding-bottom: 1.6rem;
	margin-bottom: 2rem;
}
.post_meta {
	display: flex;
    justify-content: space-between;
	padding: 1.6rem;
}
.post_meta a {
    color: #fff;
    padding: 5px 8px;
    margin-right: 0.5rem;
    margin-top: 0.3rem;
    background-color: #e1b680;
    border-radius: 20px;
    line-height: 1;
}
.entry_content {
	padding: 1.6rem 1.6rem 2rem 1.6rem;
}
.entry_content p {
	padding-bottom: 1em;
}
.entry_content .main_image {
	padding-bottom: 2rem;
}
.blog_detail .button1 {
    margin-top: 0;
}
@media (max-width: 960px) {
/*	.blog .inner .content {
		width: 75%;
	}
	.blog .inner aside {
		width: 25%;
	}*/
	.blog.list .fbox article {
		flex-basis: 49%;
	}
}
@media (max-width: 850px) {
	.blog .inner {
		flex-direction: column;
	}
	.blog .inner .content, .blog .inner aside {
		width: 100%;
	}
	.blog .inner aside {
		padding-bottom: 5rem;
	}
	.blog .inner aside section {
    	padding: 5rem 1.6rem 0;
	}
}
@media (max-width: 500px) {
	.blog.list .fbox article {
		column-gap: 0;
		flex-basis: 100%;
		max-width: 360px;
	}
}

/* pagenavi */
.pagenation {
    border-top: 1px solid #ccc;
	margin-top: 5rem;
}
.blog.news .pagenation {
    border-top: none;
}
.pagenation ul {
    list-style: none;
    margin: 0 auto;
    padding: 1.6rem 0;
    display: flex;
	justify-content: center;
}
.pagenation ul li a, .pagenation ul li.current {
    display: block;
    padding: 0.5rem 0.8rem;
    margin: 0.3rem;
    line-height: 1;
    border-radius: 50px;
    color: #000;
}
.blog_detail .pagenation ul li a {
    margin: 0.5rem 1rem;
}
.pagenation ul li.current {
    background-color: #a72126;
    color: #fff;
}
.pagenation ul li a:hover {
    background-color: #eecfa9;
    color: #fff;
}
.pagenation ul li a:hover {
	transform: scale(1.05);
}
.pagenation ul li.next a::before {
    content: '\f053';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.2rem;
	margin-right: 0.5rem;
	vertical-align: 1.6px;
}
.pagenation ul li.prev a::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.2rem;
	margin-left: 0.5rem;
	vertical-align: 1.6px;
}

/** -------------------------
会社情報
--------------------------**/
.greeting .inner {
	background: url('../images/common/logomark1.png') no-repeat center center;
	background-size: 200px auto;
	background-color:rgba(255,255,255,0.5);
	background-blend-mode:lighten;
}
.page.concept section .inner-s {
	width: auto;
}

/** -------------------------
事業内容
--------------------------**/
.service .inner {
	display: flex;
    justify-content: center;
}
.service .inner:nth-of-type(even) {
	padding-top: 5rem;
}
.service .inner div {
	width: 55%;
}
.service .inner figure {
	padding: 0 0 0 3rem;
	width: 45%;
}
.service .inner:nth-of-type(even) figure {
	padding: 0 3rem 0 0;
}
.service .inner figure img {
	border-radius: 0.7rem;
}
@media (max-width: 1024px) {
	.service h4 br {
		display: none;
	}
}
@media (max-width: 768px) {
	.service .inner {
		flex-direction: column;
	}
	.service .inner div {
		width: 100%;
	}
	.service .inner figure {
		padding: 3rem 0 0 0;
		width: 100%;
		text-align: center;
	}
	.service .inner figure img {
    	max-width: 600px;
    	width: 100%;
	}
	.service .inner:nth-of-type(even) {
		padding-top: 3rem;
		flex-direction: column-reverse;
	}
	.service .inner:nth-of-type(even) figure {
		padding: 3rem 0 0 0;
	}
}

/** -------------------------
採用情報
--------------------------**/	
.recruit_outline .inner div.button1 {
	justify-content: flex-start;
	width: 100%;
}
.page .recruit_detail .inner {
	padding-top: 2rem;
}
.recruit_detail h4 {
  text-align: center;
  font-size: 2rem;
  font-weight: 400;
	margin-bottom: 2rem;
}
.recruit_detail h4 a {
	color: #000;
	transition: 0.5s;
	cursor: pointer;
	background: #fff;
	padding: 1.6rem 3.5rem 1.6rem 1.6rem;
    border: 2px solid #a72126;
    border-radius: 5rem;
	position: relative;
	width: 100%;  
}
.recruit_detail h4 a .accordionBtn {
    bottom: 1.6rem;
    right: 1.6rem;
}
.recruit_detail .detail {
    width: 90%;
    margin: 2rem auto 0;
	display: none;
}
.recruit_detail .detail .button1 {
    margin-bottom: 3rem;
}
.recruit_detail article:last-child .button1 {
	display: none;
}
.voice section .inner {
	display: flex;
    justify-content: center;
}
.voice section:nth-of-type(even) .inner {
	flex-direction: row-reverse;
}
.voice section .inner > div {
	width: 55%;
}
.voice section .inner > figure {
	padding: 1.6rem 0 0 3rem;
	width: 45%;
}
.voice section:nth-of-type(odd) .inner > figure {
	padding: 1.6rem 3rem 0 0;
}
.voice section .inner > figure img {
	border-radius: 0.7rem;
	width: 100%;
}

.voice dl {
	flex-direction: column;
}
.voice dl dt, .voice dl dd {
	width: auto;
}
.voice .free {
	margin: 1.6rem 0.8rem;
}

.faq article {
    padding-bottom: 1.6rem;
    border-bottom: 1px solid #ccc;
	margin: 1.6rem auto;
}
.faq article h4::before {
	font-family: 'Oswald', 'Noto Sans JP', sans-serif;
	content: 'Q.';
    margin-right: 1rem;
	font-size: 3rem;
	color: #a72126;
}
.faq article div {
	position: relative;
	padding: 1.6rem 3rem;
}
.faq article div::before {
	font-family: 'Oswald', 'Noto Sans JP', sans-serif;
	content: 'A.';
    margin-right: 1rem;
	font-size: 3rem;
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
}
.close a {
    display: block;
	cursor: pointer;
	text-align: center;
}
.close a::before {
    content: '\f00d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    padding-right: 0.3rem;
}

@media (max-width: 620px) {
	.voice section .inner, .voice section:nth-of-type(even) .inner {
		flex-direction: column;
	}
	.voice section .inner > div {
		width: 100%;
	}
	.voice section .inner > figure {
		padding: 3rem 0 0 0;
		width: 100%;
		text-align: center;
	}
	.voice section .inner > figure img {
		max-width: 400px;
	}
}

/** -------------------------
応募フォーム、お問い合わせフォーム
--------------------------**/	
.contact_tel a {
	color: #a72126;
	font-weight: 500;
	font-size: 3.3rem;
	line-height: 1;
	font-family: 'Oswald', 'Noto Sans JP', sans-serif;
	margin-top: 1.6rem;
}
.contact_tel a::before {
	font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f095';
  font-size: 2.6rem;
	padding-right: 0.5rem;
}
.privacy {
    height: 350px;
    padding: 1.6rem;
    border: 1px solid #ccc;
    margin-bottom: 2rem;
    overflow-y: scroll;
	background: #fff;
	border-radius: 0.5rem;
}



/** -------------------------
404
--------------------------**/
.notfound {
  padding: 40px 0 100px;
  text-align: center;
}

.notfound .h-orange {
  margin-bottom: 15px;
}
.notfound p {
  margin-bottom: 25px;
}

/** -------------------------
パンくずリスト
--------------------------**/
.breadcrumb {
    padding: 0.3rem 0 0.3rem 1rem;
	line-height: 1;
	max-width: 1100px;
	margin: 0 auto;
}
.blog.list .breadcrumb {
	max-width: 1200px;
}
.blog.news .breadcrumb {
	max-width: 1100px;
}
.breadcrumb ul {
	padding: 0;
}
.breadcrumb li {
    display: inline;
	font-size: 1.2rem;
}
.breadcrumb li+li:before {
    font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content: '\f054';
    margin: 0 0.5rem 0 1rem;
	font-size: 1rem;
}
.breadcrumb li a i {
	margin-right: 0.5rem;
}

/** -------------------------
リスト
--------------------------**/
ul, ol {
    margin: 0;
	padding-left: 2rem;
}
.number_list1 li {
	padding-left: 1rem;
	padding: 2rem 0 2rem 1rem;
	border-bottom: 1px solid #ccc;
}
.number_list1 li::marker {
	color: #a72126;
	font-weight: 400;
	font-family: 'Oswald', 'Noto Sans JP', sans-serif;
    font-size: 1.8rem;
}
.number_list2 li {
	padding-bottom: 1.6rem;
	margin-bottom: 1.6rem;
	border-bottom: 1px solid #ccc;
}
.number_list2 li::marker {
	color: #a72126;
}

dl {
	display: flex;
	align-items: flex-start;
    padding-bottom: 1.6rem;
    border-bottom: 1px solid #ccc;
	flex-wrap: wrap;
	margin: 1.6rem auto;
}
dl:last-child {
    margin-bottom: 0;
}
dl dt {
    width: 20%;
}
dl dt::before {
   content: "●";
   padding-right: 0.3rem;
	font-size: 1.4rem;
}
dl dd {
    width: 80%;
	margin: 0;
	padding-left: 1.6rem;
}
dl dd p {
	margin: 0;
}
@media (max-width: 500px) {
	dl, dl dt, dl dd  {
		width: 100%;
	}
}