@charset "utf-8";

/* yakuhanmp-noto */
@import url("https://cdn.jsdelivr.net/npm/yakuhanjp@3.4.1/dist/css/yakuhanmp-noto.min.css");

/* Noto Serif Japanese */
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");


html,body{
    width: 100%;
}

body {
  line-height: 1.5;
  letter-spacing: 0.1rem;
  color: #050505;
  /* font-family: serif; */
  font-family: YakuHanMP_Noto, "Noto Serif JP", "Hiragino Mincho ProN",
    "Yu Mincho", YuMincho, serif;
  letter-spacing: 0.1rem;
  line-height: 2rem;
	font-weight: 500;
}

p {
  text-align: justify;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  image-rendering: -webkit-optimize-contrast;
}

a {
  text-decoration: none;
  color: #000000;
  display: block;
  transition: all ease-in-out 0.3s;
}

a:hover {
  opacity: 0.7;
}

li {
  list-style: none;
}

.textRight {
  text-align: right;
}

/* ローディング -------------------------------------------------------------- */

#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #76C050;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.spinner {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  position: relative;
  top: 47%;
  border: 3px solid #fff;
  border-top: 3px solid transparent;
  border-radius: 50%;
  animation: spin 0.5s linear 0s infinite;
  z-index: 9999;
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

@keyframes spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(359deg);
  }
}

/* -- div#pagetop-scroll -------------------------------------------------------------- */

div#pagetop-scroll {
  display: none;
  position: fixed;
  right: 35px;
  bottom: 25px;
  color: #fff;
  width: 2.7em;
  height: 2.7em;
  border-radius: 3%;
  background: rgba(0, 0, 0, 0.486);
  text-align: center;
  line-height: 2.7em;
}

.fa-3x {
  font-size: 1.25em;
  line-height: 2;
}

div#pagetop-scroll:hover {
  cursor: pointer;
  opacity: 0.9;
}


/* ヘッダー -------------------------------------------------------------- */

#header {
  box-sizing: border-box;
  width: 100%;
  height: auto;
  margin-bottom: 0;
  padding-left: 70px;
  z-index: 30;
}

#header > .header-top {
  margin: 0 !important;
  padding: 0 0 25px !important;
}

#header > .header-top > .header-tagline {
  padding: 3px 20px 5px;
  background-color: #F5F2E9;
  color: #000000;
  font-size: 12px;
  line-height: 1.65;
  letter-spacing: 0.1em;
  font-weight: 600;
}

#header > .header-top > .header-contact-btn {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  padding: 20px 76px;
  background-color: #76C050;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  z-index: 100;
  transition: all .3s;
}


h1
{
	font-size: clamp(1rem, 0.875rem + 0.63vw, 1.625rem);
	color: #000000;
	font-weight: bolder;
	vertical-align: middle;
}

h1 img
{
	vertical-align: middle;
  margin-top: -15px !important;
  margin-right: 1rem;
  width: 65px;
  height: auto;
}


.header-area {
  padding: 15px 1% 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
}


.header-area .menu {
  display: flex;
  flex-wrap: wrap;
  /* align-items: center; */
}

@media screen and (max-width: 1024px) {
  #header {
    padding-left: 0 !important;
  }

  .header-top {
    display: none;
  }

  .header-area .toplogo img {
    margin-top: 0 !important;
    margin-left: 0 !important;
    height: 55px;
  }

  .header-area {
    box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.1);
  }

  .header-area {
    position: fixed;
    z-index: 30;
    background: #fff;
    padding: 10px 4%;
    width: 100%;
    transition: 0.3s;
  }
  .header-area.open {
    background: #fff;
  }
  h1 img {
    margin-top: -15px !important;
    width: 45px;
  }
}

@media screen and (max-width: 1024px) {
  .header-area .right .lang ul li {
    padding: 0 5px;
    width: 40px;
  }
}

/* ナビゲーション -------------------------------------------------------------- */

/* ナビゲーションドロップダウンのためのCSS */

/*==ナビゲーション全体の設定*/
.g-nav {
  text-align: center;
  margin: 45px 0 0;
}
/*ナビゲーションを横並びに*/
.g-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
}
/*2階層目以降は横並びにしない*/
.g-nav ul ul {
  display: block;
}

/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
.g-nav ul li {
  position: relative;
}

/*ナビゲーションのリンク設定*/
.g-nav ul li a {
  display: block;
  text-decoration: none;
  padding: 0 15px;
  transition: all 0.3s;
}

.g-nav ul li li a {
  padding: 10px 35px;
}

.g-nav ul li a:hover {
  color: #287900;
}

.g-nav li.has-child ul {
  position: absolute;
  left: -60px;
  top: 32px;
  z-index: 4;
  background: #76c050;
  width: auto;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  white-space: nowrap;
}

.g-nav li.has-child:hover > ul,
.g-nav li.has-child ul li:hover > ul,
.g-nav li.has-child:active > ul,
.g-nav li.has-child ul li:active > ul {
  visibility: visible;
  opacity: 1;
}

.g-nav li.has-child ul li a {
  color: #fff;
  border-bottom: solid 1px rgba(255, 255, 255, 0.6);
}

.g-nav li.has-child ul li:last-child a {
  border-bottom: none;
}

.g-nav li.has-child ul li a:hover,
.g-nav li.has-child ul li a:active {
  opacity: 0.7;
}

.nav-pcOnly {
  display: block !important;
}

.nav-spOnly {
  display: none !important;
}

@media screen and (max-width: 1024px) {
  nav {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100px;
    text-align: center;
    transition: 0.3s;
  }

  .open nav {
    visibility: visible;
    opacity: 1;
  }

  .g-nav {
    padding: 0;
  }

  .g-nav ul {
    margin: 0;
    display: block;
    width: 80vw;
    padding: 0;
    flex-direction: column;
  }
  .g-nav ul li {
    letter-spacing: 0.05rem;
    font-size: 0.9rem;
  }

  .g-nav ul li:first-child a {
    border-top: 1px solid #fff;
  }

  .g-nav ul li a {
    border-bottom: 1px solid #fff;
    color: #fff !important;
    padding: 7px 0;
  }

  .g-nav ul li a:hover {
    background: #287900 !important;
    color: #fff !important;
    opacity: 1 !important;
  }

  .nav-pcOnly {
    display: none !important;
  }

  .nav-spOnly {
    display: block !important;
  }
}

/*  ハンバーガーメニュー -------------------------------------------------------------- */

.hamburger {
  display: none;
  height: 40px;
  width: 40px;
  margin-top: -50px !important;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 40px;
  background: #76c050;
  position: absolute;
  transition: 0.5s all ease-in-out;
}

.hamburger span:nth-of-type(1) {
  position: relative;
  top: 17px;
}

.hamburger span:nth-of-type(2) {
  position: relative;
  top: 24px;
}

.open .hamburger span:nth-of-type(1) {
  position: relative;
  top: 22px;
}

.open .hamburger span:nth-of-type(2) {
  position: relative;
  top: 29px;
}

.open span:nth-child(1) {
  transform: translateY(0px) rotate(-315deg);
  width: 30px;
  margin-left: 10px;
}

.open span:nth-child(2) {
  transform: translateY(-10px) rotate(315deg);
  width: 30px;
  margin-left: 10px;
}

.open span:nth-child(1) {
  animation-fill-mode: forwards;
  animation-duration: 0.3s;
}

.open span:nth-child(2) {
  animation-fill-mode: forwards;
  animation-duration: 0.3s;
}

#mask {
  position: fixed;
  top: 75px;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  z-index: 20;
  cursor: pointer;
}

#mask.open {
  opacity: 0.85 !important;
  visibility: visible;
}

@media screen and (max-width: 1024px) {
  .hamburger {
    display: block;
  }
}

.header-area {
  z-index: 9999;
  background: #fff;
}


/* 共通パーツ
----------------------------------------- */

/* page-visual-area */
#page-visual-area {
	position: relative;
	margin-bottom: 30px;
}
#page-visual-area::after {
	content: '';
	display: block;
	position: absolute;
	top: 47.8%;
	left: 0;
	width: 91%;
	height: 50%;
	background-color: #F5F2E9;
	z-index: -100;
}
.page-visual-area-inner {
	position: relative;
}
.page-ttl {
	position: absolute;
	top: 60%;
	left: 20px;
	margin-top: -30px;
	transition: all 2s;
}
.page-ttl .jpn {
	display: block;
	font-size: 25px;
	letter-spacing: 0.15em;
}
.page-ttl .eng {
	font-family: 'Crimson Text', serif;
	display: block;
	padding-left: 3px;
	font-size: 11px;
}
.page-visual {
	padding-top: 100px;
	padding-left: 30%;
}
.page-visual img {
}

/* breadcrumbs-area */
.breadcrumbs-area {
	box-sizing: border-box;
	width: 94%;
	padding: 15px 20px 20px;
}
.breadcrumbs-list {
}
.breadcrumbs-list li {
	display: inline-block;
	font-size: 11px;
	line-height: 1.4;
}
.breadcrumbs-list a {
	display: inline-block;
	position: relative;
	margin-right: 14px;
	padding-right: 15px;
}
.breadcrumbs-list a::after{
	display: block;
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 4px;
	height: 4px;
	margin-top: -2px;
	border: 0px;
	border-top: solid 1px #000000;
	border-right: solid 1px #000000;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* sec-ttl */
.sec-ttl01 {
	position: relative;
	margin-bottom: 25px;
	padding-bottom: 18px;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.6;
}
.sec-ttl01::after {
	display: block;
	content: '';
	position: absolute;
	bottom: 0;
	left: 2px;
	width: 25px;
	height: 1px;
	background-color: #003265;
}

/* table */
.form-input-tbl {
	width: 100%;
}
.form-input-tbl th,
.form-input-tbl td {
	display: block;
	width: 100%;
}
.form-input-tbl th {
	margin-bottom: 5px;
	font-size: 14px;
	font-weight: 600;
}
.form-input-tbl td {
	margin-bottom: 15px;
	font-size: 14px;
}
.require-mark {
	color: #ff0000;
}

/* form */
.input-radio .wpcf7-list-item {
	display: block;
	margin-left: 0;
}

.input-text {
	font-family: "Noto Serif Japanese", serif;
	width: 100%;
	height: 40px;
	box-sizing: border-box;
	padding: 3px 8px;
	background-color: #FFFFFF;
	border: 1px solid #b5b5b5;
	color: #000000;
	vertical-align: middle;
	font-size: 14px;
}
.input-text-120 {
	font-family: "Noto Serif Japanese", serif;
	width: 40%;
	height: 35px;
	box-sizing: border-box;
	padding: 3px 8px;
	background-color: #FFFFFF;
	border: 1px solid #b5b5b5;
	color: #000000;
	vertical-align: middle;
	font-size: 14px;
}
.input-text-400 {
	font-family: "Noto Serif Japanese", serif;
	width: 80%;
	height: 35px;
	box-sizing: border-box;
	padding: 3px 8px;
	background-color: #FFFFFF;
	border: 1px solid #b5b5b5;
	color: #000000;
	vertical-align: middle;
	font-size: 14px;
}

.input-select {
	font-family: "Noto Serif Japanese", serif;
	width: 18em;
	height: 40px;
	margin-right: 5px;
	padding: 3px 8px;
	background-color: #FFFFFF;
	border: 1px solid #b5b5b5;
	color: #000000;
	font-size: 14px;
	vertical-align: middle;
	border-radius: 0;
}
input[type="checkbox"] {
	vertical-align: middle;
}
.textarea {
	font-family: "Noto Serif Japanese", serif;
	width: 	97%;
	padding: 5px;
	border: 1px solid #b5b5b5;
	font-size: 14px;
}
.submit-btn {
	font-family: "Noto Serif Japanese", serif;
	display: block;
	width: 	70%;
	margin: 20px auto 0;
	padding: 16px 0;
	background-image: -moz-linear-gradient( 135deg, rgb(0,28,70) 0%, rgb(0,77,109) 52%, rgb(0,125,148) 100%);
	background-image: -webkit-linear-gradient( 135deg, rgb(0,28,70) 0%, rgb(0,77,109) 52%, rgb(0,125,148) 100%);
	background-image: -ms-linear-gradient( 135deg, rgb(0,28,70) 0%, rgb(0,77,109) 52%, rgb(0,125,148) 100%);
	text-align: center;
	font-size: 13px;
	color: #FFFFFF;
	letter-spacing: 0.1em;
}
.submit-btn:hover {
}
input[type="button"],input[type="submit"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: none;
}
input[type="text"],
input[type="button"],
input[type="email"],
input[type="submit"],
textarea {
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* contact-privacy-box */
.contact-privacy-box {
	margin-bottom: 20px;
	padding: 25px 20px;
	background-color: #ffffff;
}
.contact-privacy-box h3 {
	margin-bottom: 15px;
	font-size: 16px;
}
.contact-privacy-list {
}
.contact-privacy-list li {
	margin-bottom: 10px;
}
.contact-privacy-list li:last-child {
	margin-bottom: 0
}
.contact-privacy-list span {
}
.contact-privacy-list p {
}
.acknowledgment-check {
	margin-bottom: 30px;
}


/* slide-menu-btn */
.slide-menu-btn {
	position: absolute;
	top: 12px;
	right: 20px;
	z-index: 10000;
}
.slide-menu-nav {
	box-sizing: border-box;
	display: none;
	width: 100%;
	position: absolute;
	left: 0;
	top: 54px;
	padding: 20px 0 35px;
	background-color: rgba(0,0,0,0.9);
	z-index: 9000;
	text-align: center;
}
.slide-menu-nav .gnav a {
	position: relative;
	display: block;
	margin: 0;
	padding: 25px 0;
	font-size: 14px;
	color: #ffffff;
	line-height: 1.4;
}
.slide-menu-nav .gnav a::after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 8px;
	height: 2px;
	margin-left: -4px;
	background-color: #003265;
}
.slide-menu-nav .gnav li:last-child a::after {
	content: '';
	background: none;
}
.slide-menu-nav .sub-nav-sp {
	margin: 20px 0;
}
.slide-menu-nav .sub-nav-sp li {
	width: 76%;
	margin: 0 auto;
}
.slide-menu-nav .sub-nav-sp a {
	box-sizing: border-box;
	display: block;
	float: left;
	width: 100%;
	padding: 20px 0;
	background-color: #003265;
	font-size: 13px;
	color: #ffffff;
	line-height: 1.4;
	text-align: center;
}

/* menu-trigger */
.menu-trigger,
.menu-trigger span {
	display: inline-block;
	transition: all .3s;
	box-sizing: border-box;
}
.menu-trigger {
	position: relative;
	width: 20px;
	height: 19px;
}
.menu-trigger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #000000;
}
.menu-trigger span:nth-of-type(1) {
	top: 6px;
}
.menu-trigger span:nth-of-type(2) {
	top: 13px;
}
.menu-trigger.active span:nth-of-type(1) {
	-webkit-transform: translateY(4px) rotate(-45deg);
	transform: translateY(4px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
	-webkit-transform: translateY(-3px) rotate(45deg);
	transform: translateY(-3px) rotate(45deg);
}

/* position-active */
#top .gnav01 a,
#service .gnav02 a,
#samples .gnav03 a,
#company .gnav04 a,
#yomoyama .gnav05 a {
	
}


/* contents
----------------------------------------- */
/* contact-sec */
.contact-sec {
	padding: 40px 20px 80px;
	background: linear-gradient(135deg, #009ec2 0%,#001c46 100%);
}
.contact-sec-inner {
	padding: 35px 0 30px;
	background-color: #ffffff;
}
.contact-sec-ttl {
	position: relative;
	margin-bottom: 25px;
	padding-bottom: 14px;
	text-align: center;
}
.contact-sec-ttl::after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 20px;
	height: 1px;
	margin-left: -10px;
	background-color: #000000;
}
.contact-sec-ttl .jpn {
	display: block;
	margin-bottom: 3px;
	font-size: 20px;
	letter-spacing: 0.2em;
}
.contact-sec-ttl .eng {
	font-family: 'Crimson Text', serif;
	display: block;
	font-size: 13px;
}
.contact-sec-text {
	margin-bottom: 20px;
	text-align: center;
	font-size: 13px;
}
.contact-sec-tel {
	margin-bottom: 20px;
	text-align: center;
}
.contact-sec-telnum a {
	font-family: 'Crimson Text', serif;
	padding-left: 30px;
	background: url(../images/icon-tel.png) 0 center no-repeat;
	background-size: 19px 27px;
	font-size: 34px;
	line-height: 1.0;
}
.business-hours {
	font-size: 11px;
	line-height: 1.6;
}
.contact-sec-btn {
	display: block;
	width: 80%;
	margin: 0 auto;
	padding: 18px 0;
	background-color: #003163;
	font-size: 13px;
	text-align: center;
	color: #ffffff;
}
.contact-sec-btn:hover {
	color: #ffffff;
}


.pc {
	display: none !important;
}
.sp {
	display: block !important;
}

@media only screen and (min-width: 768px) {
	.pc {
		display: block !important;
	}
	.sp {
		display: none !important;
	}
	img {
		width: 100%;
		height: auto;
	}
}


@media only screen and (min-width: 1023px) {

/* 共通パーツ
----------------------------------------- */
/* loading */

/* page-visual-area */
#page-visual-area {
	position: relative;
	margin-bottom: 100px;
}
#page-visual-area::after {
	content: '';
	display: block;
	position: absolute;
	top: 47.5%;
	left: 0;
	width: 91%;
	height: 59%;
	background-color: #F5F2E9;
	z-index: -100;
}
.page-visual-area-inner {
	position: relative;
}
.page-ttl {
	position: absolute;
	top: 50%;
	left: 11%;
	margin-top: -25px;
	transition: all 2s;
}
.page-ttl .jpn {
	display: block;
	font-size: 34px;
	letter-spacing: 0.175em;
	line-height: 1.65;
}
.page-ttl .eng {
	font-family: 'Crimson Text', serif;
	display: block;
	padding-left: 3px;
	font-size: 22px;
}
.page-visual {
	padding-top: 0 !important;
	padding-left: 30%;
}
.page-visual img {

}

/* breadcrumbs-area */
.breadcrumbs-area {
	box-sizing: border-box;
	width: 94%;
	padding: 35px 20px 15px 11%;
}
.breadcrumbs-list {
	padding-left: 3px;
}
.breadcrumbs-list li {
	display: inline-block;
	font-size: 12px;
	line-height: 1.4;
}
.breadcrumbs-list a {
	display: inline-block;
	position: relative;
	margin-right: 14px;
	padding-right: 15px;
	transition: all .3s;
}
.breadcrumbs-list a:hover {
	color: #999999;
}
.breadcrumbs-list a::after{
	display: block;
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 4px;
	height: 4px;
	margin-top: -2px;
	border: 0px;
	border-top: solid 1px #000000;
	border-right: solid 1px #000000;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* sec-ttl */
.sec-ttl01 {
	position: relative;
	margin-bottom: 50px;
	padding-bottom: 28px;
	font-size: 26px;
	font-weight: 400;
	line-height: 1.6;
}
.sec-ttl01::after {
	display: block;
	content: '';
	position: absolute;
	bottom: 0;
	left: 2px;
	width: 46px;
	height: 1px;
	background-color: #003265;
}

/* table */
.form-input-tbl {
	width: 100%;
}
.form-input-tbl th,
.form-input-tbl td {
	display: table-cell;
	padding: 15px 0;
	vertical-align: top;
	width: 100%;
}
.form-input-tbl th {
	width: 240px;
	margin-bottom: 5px;
	font-size: 15px;
	font-weight: 400;
}
.form-input-tbl td {
	width: 600px;
	margin-bottom: 15px;
	font-size: 15px;
}
.require-mark {
	color: #ff0000;
}

/* form */
.input-radio .wpcf7-list-item {
	display: block;
	margin-left: 0;
}
.input-text {
	font-family: "Noto Serif Japanese", serif;
	width: 100%;
	height: 46px;
	box-sizing: border-box;
	padding: 6px 12px;
	background-color: #ffffff;
	border: 1px solid #b5b5b5;
	color: #000000;
	vertical-align: middle;
	font-size: 14px;
}
.input-text-120 {
	font-family: "Noto Serif Japanese", serif;
	width: 120px;
	height: 35px;
	box-sizing: border-box;
	padding: 6px 12px;
	background-color: #ffffff;
	border: 1px solid #b5b5b5;
	color: #000000;
	vertical-align: middle;
	font-size: 14px;
}
.input-text-400 {
	font-family: "Noto Serif Japanese", serif;
	width: 400px;
	height: 35px;
	box-sizing: border-box;
	padding: 6px 12px;
	background-color: #ffffff;
	border: 1px solid #b5b5b5;
	color: #000000;
	vertical-align: middle;
	font-size: 14px;
}


.input-select {
	font-family: "Noto Serif Japanese", serif;
	width: 18em;
	height: 46px;
	margin-right: 5px;
	padding: 6px 12px;
	background-color: #ffffff;
	border: 1px solid #b5b5b5;
	color: #000000;
	font-size: 14px;
	vertical-align: middle;
	border-radius: 0;
}
input[type="checkbox"] {
	vertical-align: middle;
}
.textarea {
	font-family: "Noto Serif Japanese", serif;
	width: 	97%;
	padding: 12px;
	border: 1px solid #b5b5b5;
	font-size: 14px;
}
.submit-btn {
	font-family: "Noto Serif Japanese", serif;
	display: block;
	width: 	260px;
	margin: 40px auto 0;
	padding: 20px 0;
	background-image: -moz-linear-gradient( 135deg, rgb(0,28,70) 0%, rgb(0,77,109) 52%, rgb(0,125,148) 100%);
	background-image: -webkit-linear-gradient( 135deg, rgb(0,28,70) 0%, rgb(0,77,109) 52%, rgb(0,125,148) 100%);
	background-image: -ms-linear-gradient( 135deg, rgb(0,28,70) 0%, rgb(0,77,109) 52%, rgb(0,125,148) 100%);
	text-align: center;
	font-size: 14px;
	color: #ffffff;
	font-weight: 600;
	cursor: pointer;
	transition: all .3s;
	letter-spacing: 0.1em;
}
.submit-btn:hover {
	color: #ffffff;
	opacity: 0.8;
}

/* contact-privacy-box */
.contact-privacy-box {
	margin-bottom: 35px;
	padding: 50px 55px;
	background-color: #ffffff;
}
.contact-privacy-box h3 {
	margin-bottom: 15px;
	font-size: 16px;
}
.contact-privacy-list {
}
.contact-privacy-list li {
	margin-bottom: 6px;
	overflow: hidden;
	font-size: 13px;
}
.contact-privacy-list li:last-child {
	margin-bottom: 0
}
.contact-privacy-list span {
	display: block;
	float: left;
	width: 23%;
}
.contact-privacy-list p {
	float: right;
	width: 75%;
}
.acknowledgment-check {
	margin-bottom: 50px;
	text-align: center;
}


/* position-active */
#top .gnav01 a,
#service .gnav02 a,
#samples .gnav03 a,
#company .gnav04 a,
#yomoyama .gnav05 a {
	border-bottom: 1px solid #000000;
}


/* contents
----------------------------------------- */
/* contact-sec */
.contact-sec {
	padding: 100px 0 120px;
	background: linear-gradient(135deg, #009ec2 0%,#001c46 100%);
}
.contact-sec-inner {
	width: 1000px;
	margin: 0 auto;
	padding: 50px 0 50px;
	background-color: #ffffff;
}
.contact-sec-left {
	box-sizing: border-box;
	float: left;
	width: 460px;
	border-right: 1px solid #dcdcdc;
	padding: 20px 0 10px;
}
.contact-sec-right {
	float: right;
	width: 540px;
	padding-top: 20px;
}
.contact-sec-ttl {
	position: relative;
	margin-bottom: 50px;
	padding-bottom: 30px;
	text-align: center;
}
.contact-sec-ttl::after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 40px;
	height: 1px;
	margin-left: -20px;
	background-color: #000000;
}
.contact-sec-ttl .jpn {
	display: block;
	margin-bottom: 0;
	font-size: 30px;
	letter-spacing: 0.2em;
}
.contact-sec-ttl .eng {
	font-family: 'Crimson Text', serif;
	display: block;
	font-size: 20px;
}
.contact-sec-text {
	margin: 0 0 30px;
	font-size: 15px;
}
.contact-sec-tel {
	margin-bottom: 50px;
	text-align: center;
}
.contact-sec-telnum a {
	font-family: 'Crimson Text', serif;
	padding-left: 40px;
	background: url(../images/icon-tel.png) 0 center no-repeat;
	background-size: 27px 39px;
	font-size: 48px;
	line-height: 1.0;
}
.business-hours {
	margin-left: -10px;
	font-size: 15px;
	line-height: 1.6;
}
.contact-sec-btn {
	display: block;
	width: 380px;
	margin: 0 auto;
	padding: 22px 0;
	background-color: #003163;
	font-size: 20px;
	text-align: center;
	color: #ffffff;
	font-weight: 600;
	transition: all .3s;
}
.contact-sec-btn:hover {
	color: #ffffff;
	background-color: #0f4882;
}


/* footer
----------------------------------------- */
#footer {
	position: relative;
	padding-top: 85px;
}
.page-top-link {
	display: block;
	position: absolute;
	top: -70px;
	right: 0;
	width: 70px;
	height: 70px;
	background: url(../images/icon-pagetop_pc.png) center center no-repeat;
	background-size: 14px 18px;
	background-color: #ffffff;
	z-index: 1000;
}
.footer-inner {
	margin-bottom: 20px;
}
.footer-inner-left {
	box-sizing: border-box;
	float: left;
	width: 35%;
	padding-left: 70px;
}
.footer-inner-right {
	box-sizing: border-box;
	float: right;
	width: 65%;
	padding-right: 80px;
	text-align: right;
}
.footer-logo {
	width: 100px;
	height: auto;
	margin: 0 0 25px;
	text-align: left;
}
.footer-logo a {
	display: block;
	position: relative;
	transition: all .3s;
}
.footer-logo a:hover {
	opacity: 0.6;
}
.footer-logo span {
	display: block;
	margin-top: 10px;
	font-size: 13px;
	white-space: nowrap;
}
.footer-address {
	margin-bottom: 20px;
	text-align: left;
	font-size: 14px;
}
.footer-nav {
	margin-bottom: 40px;
	text-align: right;
}
.footer-nav li {
	display: inline-block;
	margin: 0 0 0 35px;
}
.footer-nav li a {
	font-size: 15px;
	transition: all .3s;
}
.footer-nav li a:hover {
	color: #999999;
}
.footer-contact-btn {
	display: inline-block;
	width: 240px;
	margin: 0;
	padding: 16px 0;
	background-color: #003163;
	font-size: 14px;
	text-align: center;
	color: #ffffff;
	font-weight: 600;
	transition: all .3s;
}
.footer-contact-btn:hover {
	color: #ffffff;
	background-color: #0f4882;
}
.copyright {
	font-family: 'Crimson Text', serif;
	display: block;
	padding-bottom: 30px;
	font-size: 13px;
	text-align: center;
	font-weight: 500;
}


} /* タブレット向けここまで */






/* PC向けレイアウトの指定：1001px～ */
@media only screen and (min-width: 1001px) {


} /* PC向けここまで */




/* footer */

#footer{
  background: #f5f2e9;
  color: #333;
}

/* area */

.footer-inner{
  width:100%;
  margin:0 auto;
  padding:70px;
}

@media screen and (max-width:1024px) {
.footer-inner{
  padding:70px 30px;
}
}

#footer a{
  color: #333;
}

.footer-area{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.footer-info{
  width:30%;
}

.footer-info span{
  display: block;
  font-size:1.7rem;
  font-weight: bold;
  line-height: 1.5;
}

.footer-info dt.footer-title,
.footer-info li:first-of-type{
  margin: 0 0 10px 0;
}

.footer-info li dt{
  margin:0 10px 0 0;
}

.footer-info li dt,
.footer-info li dd{
  display: inline-block;
}

.footer-sitemap{
  width:65%;
}

.footer-sitemap ul{
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 50px 0;
  font-size: 0.9rem;
}

.footer-sitemap li{
  padding: 10px 20px;
}

.footer-sitemap li a{
position: relative;
  padding: 0 10px;
}

.footer-sitemap li a:before{
position: absolute;
top:40%;
left:-10px;
content: '';
width: 7px;
height:7px;
border-top: 2px solid #333;
border-right: 2px solid #333;
transform: rotate(45deg);
}

#footer > small{
  display: block;
  text-align: right;
}

@media screen and (max-width:1024px) {
  .footer-area{
      align-items: flex-start;
  }
.footer-info{
  width:40%;
}
.footer-sitemap{
  width:56%;
}
  
}

@media screen and (max-width:1024px) {
  #footer > small{
      text-align: center;
  }
  #page-top{
  position: relative;
  text-align: center;
  right: inherit;
  bottom: inherit;
  margin: 50px auto 30px auto;
  width: 80px;
  animation: none!important;
  transform:none!important;
  opacity: 1;
  }
  
}

@media screen and (max-width:1024px) {
.footer-info,
.footer-sitemap{
  width:100%;
}
  
.footer-info{
  text-align: center;
  margin:0 0 70px 0;
  padding: 0 0 70px 0;
  border-bottom:1px solid rgba(255,255,255,0.8);
}
  .footer-info span{
      font-size:1.3rem;
  }    
}



