@charset "UTF-8";

/*
Theme Name: akindo
Theme URI: https://wordpress.org/themes/akindo/
Author: Norit Japon
Author URI: https://www.norit.jp/
Description:
Requires at least: 6.7
Tested up to: 6.7
Requires PHP: 8.2
Version: 1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: akindo
Tags:

This theme WordPress Theme, (C) 2025 WordPress.org
This theme distributed under the terms of the GNU GPL.
*/

/* reset＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
margin:0;
padding:0;
border:0;
outline:0;
font-size:100%;
vertical-align:baseline;
background:transparent;
}
body {
line-height:1.5;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
display:block;
}
nav ul {
list-style:none;
}
blockquote, q {
quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content:'';
content:none;
}
a {
margin:0;
padding:0;
font-size:100%;
vertical-align:baseline;
background:transparent;
word-break: break-all;
}
ins {
background-color:#ff9;
color:#000;
text-decoration:none;
}
mark {
background-color:#ff9;
color:#000;
font-style:italic;
font-weight:bold;
}
del {
text-decoration: line-through;
}
abbr[title], dfn[title] {
border-bottom:1px dotted;
cursor:help;
}
table {
border-collapse:collapse;
border-spacing:0;
}
hr {
display:block;
height:1px;
border:0;
border-top:1px solid #cccccc;
margin:1em 0;
padding:0;
}
input, select {
vertical-align:middle;
}
input[type="submit"],
input[type="button"] {
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]:focus,
input[type="button"]:focus {
  outline-offset: -2px;
}
/* reset end＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


/* common ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
html {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 62.5%;
  color: #004963;
}
body {
  font-size: 1.8rem;
  /* letter-spacing: 0.1em; */
  line-height: 1.5;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: #004963;
}
.link{
  transition: .3s;
}
.link:hover{
  opacity: .7;
}
.circle-link {
  /* display: inline-block; */
  display: block;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
.circle-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.circle-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: circle(50% at 50% 50%);
  pointer-events: auto;
}
img {
  -webkit-backface-visibility: hidden;
  width: 100%;
  display: block;
}
p {
  text-align: justify;
  word-break: break-all;
}
li { list-style: none; }

#box {
  width: 100%;
  overflow-x: hidden;
  /* position: relative; */
}

div, li, a{
  box-sizing: border-box;
}

.spOnly{
  display: none;
}
.br_spOnly{
  display: none;
}



/* .fadeInTrigger{
  opacity: 0;
}
.fadeIn{
  animation-name:fadeInAnime;
  animation-duration:2s;
  animation-fill-mode:forwards;
  opacity:0;
}
@keyframes fadeInAnime{
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
} */
.fadeUp {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}
.fadeUp.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.btn_more{
  display: block;
  width: 86px;
}

.grecaptcha-badge { visibility: hidden; }

/* common end ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


/* sp menu ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.inner {
  /* display: none; */
}
header nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  /* height: 100vh; */
  height: calc( 100vh - 80px );
  /* background: rgba(247,207,33,.95); */
  background: #fff;
  z-index: 100;
  overflow-y: scroll;
  background-image: url(assets/images/bg_sp-menu.png);
  background-size: cover;
  background-position: bottom;
}
header nav ul {
  display: block;
  list-style: none;
}
#nav_toggle {
  display: block;
  width: 29px;
  height: 30px;
  position: relative;
  z-index: 101;
}
/* #nav_toggle div {
  position: relative;
} */
#nav_toggle span {
  display: block;
  height: 2px;
  /* background: #004963; */
  background: #fff;
  position: absolute;
  z-index: 1001;
  width: 29px;
  right: 0;
  -webkit-transition: transform 0.5s ease-in-out;
  -moz-transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  /* border-radius: 6px; */
}
.header-page #nav_toggle span {
  background: #004963;
}
#nav_toggle span:nth-child(1) {
  top: 4px;
}
#nav_toggle span:nth-child(2) {
  top: 14px;
}
#nav_toggle span:nth-child(3) {
  top: 24px;
}

.open #nav_toggle span{
  background: #004963;
}
.open #nav_toggle span:nth-child(1) {
  top: 14px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  transform: rotate(135deg);
}
.open #nav_toggle span:nth-child(2) {
  width: 0;
  left: 50%;
}
.open #nav_toggle span:nth-child(3) {
  top: 14px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.scroll-no {
  overflow: hidden;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.sp-nav-wrap {
  width: 90%;
  max-width: 670px;
  /* margin: 100px auto 150px; */
  margin: 50px auto 100px;
}
.sp-nav-inner{
  display: flex;
  justify-content: space-between;
}
.sp-nav-left{
  width: 300px;
}


.sp-nav-right{
  width: 300px;
}

.sp-nav{
  width: 100%;
  /* text-align: center; */
  /* margin: 0 0 50px; */
}
.link_sp-nav{
  height: 76px;
  font-size: 2.4rem;
  color: #004963;
  line-height: 1;
  /* text-align: center; */
  display: block;
  /* padding: 25px 0; */
  border-bottom: 2px solid #004963;
  display: flex;
  align-items: center;
  transition: .3s;
}
.link_sp-nav:hover{
  opacity: .7;
}
.link_sp-nav span{
  font-size: 1.5rem;
}

/* .sp-nav_sns-wrap{
  display: flex;
  justify-content: center;
  padding: 30px;
}
.sp-nav_sns-wrap li{
  margin: 0 10px;
}
.sp-nav_sns-wrap li:nth-child(1){
  width: 27px;
}
.sp-nav_sns-wrap li:nth-child(2){
  width: 31px;
}
.sp-nav_sns-wrap li:nth-child(3){
  width: 30px;
}
.sp-nav_sns-wrap .link_sp-nav{
  border-bottom: none;
  padding: 0;
} */

#pageheader.open{
  background: #fff;
}

.sp-nav_business p{
  font-size: 2.4rem;
  height: 76px;
  display: flex;
  align-items: center;
}
.sp-nav_business .link_sp-nav{
  border-bottom: none;
  height: 70px;
  background: #004963;
  color: #fff;
  border-radius: 3px;
  padding-left: 20px;
  margin-bottom: 6px;
  position: relative;
  display: flex;
  align-items: center;
  font-size: 2.2rem;
}
.sp-nav_business .link_sp-nav::after{
  content: "";
  display: block;
  border-style: solid;
  border-width: 4px 0 4px 10px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  right: 20px;
}

.nav_akindoGirls-wrap{
  width: 100%;
  border-radius: 6px;
  background-color: rgba(0, 73, 99, .75);
  padding: 8px 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 45px;
}
.nav_akindoGirls_image{
  width: 270px;
}
.nav_akindoGirls_contents{
  width: 336px;
}
.nav_akindoGirls_contents p{
  width: 170px;
  display: block;
  margin: 0 auto 20px;
}
.nav_akindoGirls_contents ul{
  display: flex;
  justify-content: space-between;
}
.nav_akindoGirls_contents ul li{
  width: 164px;
}

/* sp menu end ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


/* header ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
#pageheader{
  width: 100%;
  height: 80px;
  padding: 0 24px;
  box-sizing: border-box;

  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  transition: .5s;
}
header.fixed{
  background: rgba(255, 255, 255, .8);
}

.header-inner{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header-page{
  justify-content: space-between;
}
.logo_header{
  width: 210px;
  display: none;
}
.header-page .logo_header{
  display: block;
}

.header-top{
  /* display: flex;
  justify-content: flex-end; */
}
.header_nav-wrap{
  display: flex;
  align-items: center;
}
.header_nav::before{
  content: "";
  width: 16px;
  height: 12px;
  display: inline-block;
  background-image: url(assets/images/top/icon_mail.png);
  background-size: cover;
  margin-right: 10px;
}
.header-page .header_nav::before{
  background-image: url(assets/images/icon_mail_blue.png);
}
.header-top .header_nav{
  color: #fff;
}
.header_sns{
  display: flex;
  justify-content: space-between;
  padding: 0 15px 0 22px;
}
.header_sns li{
  padding: 0 7px;
  box-sizing: content-box;
}
.header_sns li:nth-child(1){
  width: 28px;
}
.header_sns li:nth-child(2){
  width: 26px;
}

.header_sns_blue{
  display: none;
}
.header-page .header_sns_blue{
  display: block;
}
.header-page .header_sns_white{
  display: none;
}

header.fixed .header-inner{
  justify-content: space-between;
}
header.fixed .logo_header{
  display: block;
}
header.fixed #nav_toggle span{
  background: #004963;
}
header.fixed .header_sns_white{
  display: none;
}
header.fixed .header_sns_blue{
  display: block;
}
header.fixed .header-top .header_nav{
  color: #004963;
}
header.fixed .header_nav::before{
  background-image: url(assets/images/icon_mail_blue.png);
}

#pageheader.open .logo_header{
  display: block;
}
#pageheader.open .header-inner{
  justify-content: space-between;
}
#pageheader.open .header-top .header_nav{
  color: #004963;
}
#pageheader.open .header_sns_white{
  display: none;
}
#pageheader.open .header_sns_blue{
  display: block;
}
#pageheader.open .header_nav::before{
  background-image: url(assets/images/icon_mail_blue.png);
}
/* header end ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


/* footer ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
#pagefooter{
  width: 100%;
  background: #004963;
  padding: 50px 0 40px;
}
.footer-inner{
  width: 100%;
}
.logo_footer{
  width: 64px;
  margin: 0 auto;
}
.footer_copy{
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
  /* text-align: center; */
  margin: 17px 0;
  display: flex;
  justify-content: center;
}
.footer_copy span:first-of-type::after{
  content: "\FF5C";
  display: inline-block;
}

.footer_link{
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
  display: table;
  margin: 0 auto;
}

.footerContact-wrap{
  width: 100%;
  padding: 80px 0;
  background-image: url(assets/images/bg.jpg);
}
.footerContact-inner{
  width: 580px;
  margin: 0 auto;
  position: relative;
}
.footerContact_contents{
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 3;
}
.footerContact_contents h3{
  width: 200px;
  display: block;
}
.footerContact_contents p{
  font-size: 1.6rem;
  line-height: 2.25;
}
.footer-contact_ill{
  width: 170px;
  position: absolute;
  z-index: 1;
  top: -20px;
  right: -188px;
}

.btn_top{
  width: 54px;
  display: block;
  position: fixed;
  right: 30px;
  bottom: 30px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 100;
}
.btn_top.visible{
  opacity: 1;
  pointer-events: auto;
}
/* footer end ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


/* top ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.mv-wrap{
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 115px;
}
.mv_logo{
  width: 14.6875%;
  position: absolute;
  z-index: 3;
  top: 19.2118%;
}
.mv_copy{
  width: 17.8125%;
  position: absolute;
  z-index: 3;
  bottom: 27.0935%;
}

.mv-hidden {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}
.mv-fade-in {
  opacity: 1;
  transform: translateY(0);
}

.topNews-wrap{
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding: 50px 0;
  margin-bottom: 100px;
}
.topNews-inner{
  width: 89.0625%;
}
.topNews-inner h2{
  width: 122px;
  margin-bottom: 10px;
}
.topNews_contents-wrap{
  width: 100%;
  padding-left: 7.8947%;
}
.topNews_contents-inner{
  width: 100%;
  padding: 0 13.0476% 35px 9.1428%;
  position: relative;
  overflow: hidden;
}
.topNews_contents-inner::before{
  content: "";
  position: absolute;
  top: 11.3821%;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(assets/images/top/bg_news.jpg);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
.topNews_list{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.topNews_list_sp{
  display: none;
}

.topNews_list a{
  display: block;
  width: 28.3965%;
  margin-bottom: 60px;
}
.topNews_list_image{
  width: 100%;
  aspect-ratio: 116 / 87;
  background-size: cover;
  background-position: center;
  margin-bottom: 15px;
}
.newsCat{
  font-size: 1.2rem;
  color: #fff;
  background-color: #004963;
  display: table;
  min-width: 110px;
  min-height: 22px;
  padding: 2px 7px;
  box-sizing: border-box;
  text-align: center;
}
.topNews_list_date{
  font-size: 1.5rem;
  color: #666666;
  margin-bottom: 3px;
}
.topNews_list_title{
  font-size: 1.5rem;
  /* color: #004963; */
  line-height: 1.6666;
}
.btn_topNews{
  float: right;
}

.topBusiness-wrap{
  width: 100%;
  padding: 50px 0;
  margin-bottom: 120px;
}
.topBusiness-wrap h2{
  width: 322px;
  display: block;
  margin: 0 auto 68px;
}
.topBusiness-inner{
  width: 100%;
  position: relative;
  /* overflow: hidden; */
  padding-bottom: 60px;
}
.topBusiness-inner::before{
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(assets/images/top/bg_business.jpg);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
.topBusiness_copy-wrap{
  max-width: 474px;
  margin: 0 auto 45px;
  position: relative;
}
.topBusiness_copy{
  /* width: 474px; */
  width: 100%;
  display: block;
  /* margin: 0 auto 45px; */
}
.business_ill{
  position: absolute;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}
.business_ill.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.business_ill_01{
  width: 84px;
  top: -108px;
  left: -240px;
}
.business_ill_02{
  width: 72px;
  top: -140px;
  right: -138px;
}
.business_ill_03{
  width: 138px;
  bottom: -42px;
  right: -338px;
}
.topBusiness_contents{
  width: 90%;
  max-width: 940px;
  margin: 0 auto;
  padding-left: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topBusiness_text{
  width: 128px;
}
.topBusiness_list{
  width: calc(100% - 158px);
  max-width: 720px;
  display: flex;
  justify-content: space-between;
}
.topBusiness_list li{
  width: 30%;
  max-width: 214px;
}
.topBusiness_image-wrap{
  width: 100%;
  margin: 0 auto 56px;
  display: flex;
  justify-content: space-between;
  background-color: #e7e3e2;
}
.topBusiness_image{
  width: 49.6875%;
}
.btn_topBusiness{
  width: 300px;
  height: 50px;
  padding: 0 18px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #004963;
  font-size: 1.8rem;
  font-weight: 700;
  /* color: #004963; */
  margin: 0 auto;
}
.btn_topBusiness::after{
  content: "";
  width: 30px;
  height: 10px;
  background-image: url(assets/images/arrow_blue.svg);
  background-size: cover;
}

.topPageLink-wrap{
  width: 100%;
  background-image: url(assets/images/top/bg_page-link.jpg);
  padding: 106px 0 124px;
}
.topPageLink-inner{
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.topPageLink{
  width: 48%;
  max-width: 540px;
  aspect-ratio: 270 / 163;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
  transition: .3s;
}
.topPageLink:hover{
  opacity: .7;
}
.topPageLink:nth-child(1),
.topPageLink:nth-child(2){
  margin-bottom: 48px;
}
.topPageLink:nth-child(1) .topPageLink_title{
  width: 230px;
}
.topPageLink:nth-child(2) .topPageLink_title{
  width: 314px;
}
.topPageLink:nth-child(3) .topPageLink_title{
  width: 172px;
}
.topPageLink:nth-child(4) .topPageLink_title{
  width: 138px;
}
.topPageLink_arrow{
  width: 44px;
  margin-top: 50px;
}

.topAccess-wrap{
  width: 100%;
  padding: 50px 0;
  margin: 110px 0 106px;
}
.topAccess-inner{
  width: 100%;
  max-width: 1280px;
  /* padding-left: 10.9375%; */
  padding-left: 140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.topAccess_contents{
  width: 42%;
  max-width: 454px;
}
.topAccess_contents h2{
  width: 162px;
  margin-bottom: 50px;
}
.topAccess_image{
  width: 100%;
  margin-bottom: 15px;
}
.topAccess_map{
  /* width: calc(100% - 524px); */
  width: 54%;
  max-width: 610px;
}
.topAccess_map iframe{
  aspect-ratio: 61 / 53;
	width: 100%;
	height: auto;
}
.topAccess_contents p{
  color: #000;
  line-height: 1.8333;
}
.topAccess_contents p:not(:last-of-type){
  margin-bottom: 35px;
}
/* top end ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


/* page common ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.pageTitle-wrap{
  width: 100%;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(assets/images/bg_page_title.jpg);
  background-size: cover;
  margin-top: 80px;
}
.pageTitle-wrap h1{
  display: block;
}
/* page common end ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


/* about ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.pageTitle_about{
  width: 198px;
}

.aboutMessage-wrap{
  width: 100%;
  padding: 100px 0 0;
  margin-top: 30px;
}
.aboutMessage-wrap h2{
  width: 170px;
  display: block;
  margin: 0 auto 58px;
}
.aboutMessage-inner{
  width: 90%;
  max-width: 940px;
  margin: 0 auto;
}
.aboutMessage_image{
  width: 100%;
  position: relative;
  margin-bottom: 60px;
}
.aboutMessage_ill{
  width: 184px;
  position: absolute;
  left: 55px;
  bottom: -44px;
}
.aboutMessage_text p{
  line-height: 2;
  text-align: center;
}
.aboutMessage_text p:not(:last-of-type){
  margin-bottom: 38px;
}
.aboutMessage_text p:last-of-type{
  display: flex;
  justify-content: center;
  align-items: center;
}
.aboutMessage_position{
  font-size: 1.4rem;
}
.aboutMessage_name{
  font-size: 2.4rem;
}

.aboutPhilosophy-wrap{
  width: 100%;
  padding: 100px 0;
}
.aboutPhilosophy_head{
  width: 90%;
  margin: 0 auto 74px;
  display: flex;
  justify-content: center;
}
.aboutPhilosophy_head h2{
  display: block;
  width: 50%;
  padding-right: 130px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.aboutPhilosophy_head h2 img{
  width: 164px;
}
.aboutPhilosophy_head p{
  display: block;
  width: 50%;
}
.aboutPhilosophy_head p img{
  width: 340px;
}
.aboutPhilosophy-inner{
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
}
.aboutMessage_contents-wrap{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.aboutMessage_contents{
  width: 250px;
  background-image: url(assets/images/about/bg_philosophy.jpg);
  background-size: cover;
  padding: 48px 24px 16px;
}
.aboutMessage_contents h3{
  margin: 0 auto;
  display: block;
}
.aboutMessage_contents:nth-child(1) h3{
  width: 182px;
}
.aboutMessage_contents:nth-child(2) h3{
  width: 152px;
}
.aboutMessage_contents:nth-child(3) h3{
  width: 140px;
}
.aboutMessage_contents:nth-child(4) h3{
  width: 142px;
}
.aboutMessage_contents p{
  line-height: 2;
  padding: 20px 10px;
  border-top: 1px solid #004963;
  margin-top: 25px;
}

.aboutPhilosophyList-wrap{
  width: 100%;
  background: #004963;
  padding: 110px 0 100px;
  margin-bottom: 100px;
}
.aboutPhilosophyList-wrap h2{
  width: 326px;
  display: block;
  margin: 0 auto 50px;
}
.aboutPhilosophyList-inner{
  width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  position: relative;
}
.aboutPhilosophyList-inner h3{
  width: 38px;
}
.aboutPhilosophyList{
  width: 540px;
  display: flex;
  flex-direction: row-reverse;
}
.aboutPhilosophyList li{
  writing-mode: vertical-rl;
  color: #fff;
  border-left: 1px solid #fff;
  padding: 3px 13px;
}
.aboutPhilosophyList li:first-of-type{
  border-right: 1px solid #fff;
}
.philosophy_ill{
  position: absolute;
  mix-blend-mode: multiply;
}
.philosophy_ill_01{
  width: 194px;
  left: -256px;
  top: -10px;
}
.philosophy_ill_02{
  width: 108px;
  left: -210px;
  bottom: -64px;
}
.philosophy_ill_03{
  width: 168px;
  right: -248px;
  top: 0;
}
.philosophy_ill_04{
  width: 136px;
  right: -204px;
  bottom: -56px;
}
.fuku-akinai{
  width: 90%;
  max-width: 850px;
  margin: 114px auto 0;
  padding: 38px 36px 30px;
  border: 1px solid #fff;
}
.fuku-akinai h4{
  width: 128px;
  display: block;
  margin: 0 auto 18px;
}
.fuku-akinai p{
  line-height: 2;
  color: #fff;
}

.aboutInfo-wrap{
  padding: 0 0 92px;
}
.pageTitle_about-info{
  width: 276px;
}
.aboutInfo-wrap p{
  line-height: 2;
  text-align: center;
  margin: 70px 0 0;
}
.aboutCorporation-wrap{
  width: 90%;
  max-width: 932px;
  margin: 95px auto 0;
  display: flex;
  justify-content: flex-end;
}
.aboutCorporation_title{
  width: 166px;
  margin-right: 16%;
}
.aboutCorporation_list{
  width: calc(84% - 166px);
  max-width: 593px;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #004963;
}
.aboutCorporation_list dt,
.aboutCorporation_list dd{
  line-height: 1.7777;
  box-sizing: border-box;
  border-bottom: 1px solid #004963;
}
.aboutCorporation_list dt{
  width: 200px;
  padding: 10px 0 10px 10px;
}
.aboutCorporation_list dd{
  width: calc(100% - 200px);
  padding: 10px 10px 10px 10px;
}

.aboutBusiness-wrap{
  width: 100%;
  background-image: url(assets/images/about/bg_business.jpg);
  background-size: cover;
}
.title_our-business{
  width: 100%;
  height: 224px;
  background: #004963;
  display: flex;
  align-items: center;
  justify-content: center;
}
.title_our-business img{
  width: 396px;
}
.aboutBusiness_contents{
  width: 100%;
  padding: 80px 0 110px;
  margin-bottom: 100px;
}
.aboutBusiness_contents h3{
  width: 230px;
  display: block;
  margin: 0 auto;
}
.aboutBusiness_contents_text{
  line-height: 2;
  text-align: center;
  padding: 30px 0 40px;
}
.aboutBusiness_contents .topBusiness_list{
  margin: 0 auto;
}
.aboutBusiness_bottom{
  width: 90%;
  max-width: 796px;
  margin: 60px auto 0;
  display: flex;
  justify-content: flex-end;
}
.aboutBusiness_logo{
  width: 158px;
  margin-right: 13.819%;
}
.aboutBusiness_bottom_text{
  width: 484px;
  position: relative;
}
.aboutBusiness_bottom p{
  width: 100%;
  display: block;
}
.btn_aboutBusiness{
  position: absolute;
  bottom: 0;
  right: -42px;
}
/* about end ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


/* consulting ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.pageTitle_consulting{
  width: 250px;
}

.pageBusiness-wrap{
  width: 100%;
  margin-top: 100px;
  background-image: url(assets/images/consulting/bg.jpg);
  padding: 0 0 115px;
}
.pageBusiness_mv-wrap{
  width: 100%;
  background:
    linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 50%, transparent 50%, transparent 100%);
}
.pageBusiness_mv{
  width: 90%;
  max-width: 840px;
  margin: 0 auto 84px;
}
.pageBusiness_copy{
  display: block;
  margin: 0 auto 48px;
}
.pageConsulting_copy{
  width: 586px;
}

.pageBusiness_we-can{
  width: 90%;
  max-width: 840px;
  margin: 0 auto;
  background: linear-gradient(to bottom, transparent 0, transparent 18px, #fff 18px, #fff 100%);
  padding: 0 0 50px;
}
.pageBusiness_we-can h3{
  width: 300px;
  display: block;
  margin: 0 auto 25px;
}
.pageBusiness_we-can ul{
  width: 640px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.pageBusiness_we-can ul li{
  width: 300px;
  text-align: center;
  border-bottom: 1px solid #004963;
  padding: 14px 10px;
  box-sizing: border-box;
}
.pageConsulting_we-can ul li:last-of-type{
  font-size: 1.5rem;
  border-bottom: none;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 0;
}

.pageBusiness_flow-wrap{
  width: 760px;
  margin: 150px auto 0;
}
.pageBusiness_flow-inner{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.pageBusiness_flow_left{
  width: 360px;
}
.pageConsulting_flow_left h2{
  width: 242px;
}
.flow_image{
  width: 100%;
  margin: 35px 0;
}
.pageBusiness_flow_left p{
  line-height: 2;
}
.pageBusiness_flow_right{
  width: 304px;
}

.pageBusiness_flow_right ol{
  width: 100%;
}
.pageBusiness_flow_right ol li{
  width: 100%;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  background: #004963;
  border-radius: 30px;
  position: relative;
}
.pageBusiness_flow_right ol li:not(:last-of-type){
  margin-bottom: 44px;
}
.pageBusiness_flow_right ol li:not(:last-of-type)::after{
  content: "";
  display: block;
  border-style: solid;
  border-width: 12px 6px 0 6px;
  border-color: #004963 transparent transparent transparent;
  position: absolute;
  bottom: -26px;
}
.flow_space{
  display: inline-block;
  width: 2em;
}

.pageConsulting_bottom-wrap{
  width: 100%;
  padding: 100px 0 130px;
}
.pageConsulting_bottom-wrap h2{
  width: 170px;
  display: block;
  margin: 0 auto 60px;
}
.pageConsulting_bottom-inner{
  width: 90%;
  max-width: 900px;
  margin: 0 auto 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.pageConsulting_bottom_box{
  width: 32%;
  max-width: 280px;
  padding: 20px 20px 15px;
  background-image: url(assets/images/bg.jpg);
}
.pageConsulting_bottom_box:nth-child(n+4){
  margin-top: 40px;
}
.pageConsulting_bottom-inner::after{
  content: "";
  display: block;
  width: 32%;
  max-width: 280px;
}
.pageConsulting_bottom_image{
  width: 100%;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
}
.pageConsulting_bottom_title{
  height: 97px;
  padding: 0 7px;
  border-bottom: 1px solid #004963;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pageConsulting_bottom_title h3{
  height: 52px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6125;
  text-align: center;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.pageConsulting_bottom_text{
  height: 60px;
  padding: 0 7px;
  display: flex;
  align-items: center;
}
.pageConsulting_bottom_box p{
  height: 46px;
  font-size: 1.3rem;
  line-height: 1.7692;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
/* consulting end ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


/* local products ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.pageTitle_locacProducts{
  width: 350px;
}
.pageLocalProducts_copy{
  width: 636px;
}
.pageBusiness_flow-inner:not(:last-of-type){
  margin-bottom: 115px;
}
.pageBusiness_flow01_left h2{
  width: 324px;
}
.pageBusiness_flow02_left h2{
  width: 200px;
}
.pageBusiness_flow_right ol li.flow_small{
  font-size: 1.5rem;
}
.pageLocalProducts_bottom-wrap{
  width: 100%;
  padding: 100px 0 130px;
}
.pageLocalProducts_bottom-wrap h2{
  width: 140px;
  display: block;
  margin: 0 auto 60px;
}
.pageLocalProducts_bottom-inner{
  width: 96%;
  max-width: 770px;
  margin: 0 auto;
}
.pageLocalProducts_bottom-inner ul{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.pageLocalProducts_bottom-inner ul li{
  width: 360px;
  text-align: center;
  border-bottom: 1px solid #004963;
  padding: 14px 10px;
  box-sizing: border-box;
  font-size: 1.6rem;
}
.pageLocalProducts_bottom-inner ul li:last-of-type{
  border-bottom: none;
}
/* local products end ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


/* furusato ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.pageTitle_furusato{
  width: 212px;
}
.pageFurusato_copy{
  /* width: 636px; */
  width: 596px;
}
.pageFurusato_flow_left h2{
  width: 282px;
}
.pageFurusato_bottom-inner{
  margin-bottom: 50px;
}
.pageFurusato_bottom_box{
  width: 32%;
  max-width: 280px;
  padding: 20px 20px 15px;
  background-image: url(assets/images/bg.jpg);
}
.pageFurusato_bottom_box h3{
  font-size: 1.6rem;
  text-align: center;
  padding: 25px 0 15px;
}
.furusato_bottom_text{
  width: 240px;
  height: 86px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #004963;
}
.furusato_bottom_text p{
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.furusato_bottom_l{
  font-size: 3rem;
}
.furusato_bottom_s{
  font-size: 1.4rem;
  font-weight: 500;
}
.furusato_bottom_note{
  width: 282px;
  display: block;
  margin: 0 auto;
}
/* furusato end ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


/* service ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.pageTitle_service{
  width: 158px;
}
.pageService_intro-wrap{
  width: 100%;
  padding: 70px 0 140px;
}
.pageService_intro_text{
  line-height: 2;
  text-align: center;
  margin: 0 0 80px;
}
.pageService_intro-inner{
  width: 600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.pageService_intro-inner p{
  width: 217px;
  display: block;
}
.pageService_intro_list{
  width: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pageService_intro_list li a{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.6rem;
  letter-spacing: .2em;
  transition: .3s;
}
.pageService_intro_list li a::after{
  content:"";
  display: block;
  width: 40px;
  height: 10px;
  background-image: url(assets/images/service/arrow_intro.svg);
  background-size: cover;
  margin-bottom: 5px;
  transition: .3s;
}
.pageService_intro_list li a:hover,
.pageService_intro_list li a:hover::after{
  opacity: .7;
}

.pageServiceContents-wrap{
  width: 100%;
  margin-bottom: 100px;
}
.pageServiceContents{
  width: 100%;
  padding: 130px 0;
}
.pageServiceContents:nth-child(odd){
  background: #004963;
}
.service_num{
  display: block;
  margin: 0 auto;
}
.service01_num{
  width: 306px;
}
.service02_num{
  width: 316px;
}
.service03_num{
  width: 318px;
}
.service04_num{
  width: 320px;
}
.service05_num{
  width: 318px;
}
.service06_num{
  width: 316px;
}
.service07_num{
  width: 318px;
}
.service_title{
  display: block;
  margin: 55px auto 25px;
}
.service01_title{
  width: 340px;
}
.service02_title{
  width: 300px;
}
.service03_title{
  width: 300px;
}
.service04_title{
  width: 540px;
}
.service05_title{
  width: 346px;
}
.service06_title{
  width: 340px;
}
.service07_title{
  width: 500px;
}
.service_title-sub{
  font-size: 2.1rem;
  text-align: center;
}
.pageServiceContents:nth-child(odd) .service_title-sub{
  color: #fff;
}
.serviceContents-inner{
  width: 90%;
  max-width: 974px;
  margin: 100px auto 0;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.serviceContents_image{
  width: calc(100% - 410px);
  max-width: 540px;
}
.serviceContents_text{
  width: 380px;
}
.pageServiceContents .serviceContents_text p{
  line-height: 2;
}
.pageServiceContents:nth-child(odd) .serviceContents_text p{
  color: #fff;
}

.btn_service,
.btn_footer-contact{
  width: 300px;
  height: 50px;
  padding: 0 18px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #004963;
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 45px;
}
.btn_service::after,
.btn_footer-contact::after{
  content: "";
  width: 30px;
  height: 10px;
  background-image: url(assets/images/arrow_blue.svg);
  background-size: cover;
}
.btn_footer-contact{
  margin-top: 25px;
}
.pageServiceContents:nth-child(odd) .btn_service{
  border-color: #fff;
  color: #fff;
}
.pageServiceContents:nth-child(odd) .btn_service::after{
  background-image: url(assets/images/service/arrow_white.svg);
}
/* service end ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


/* recruit ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.recruit-wrap{
  width: 100%;
  margin-top: 80px;
  background-image: url(assets/images/bg.jpg);
  padding: 94px 0 0;
}
.recruit_top h1{
  width: 162px;
  display: block;
  margin: 0 auto;
}
.recruit_top p{
  line-height: 2;
  text-align: center;
  padding: 70px 0 84px;
}
.recruit_image-wrap{
  width: 100%;
  position: relative;
  overflow: hidden;
}
.recruit_image-wrap::before{
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  height: 50%;
  width: 100%;
  background-color: #fff;
}
.recruit_image-inner{
  width: 90%;
  max-width: 840px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.recruit_table-wrap{
  width: 100%;
  padding: 124px 0;
}
.recruit_table{
  width: 90%;
  max-width: 770px;
  margin: 0 auto;
}
.recruit_table th,
.recruit_table td{
  border-top: 1px solid #80a4b1;
  border-bottom: 1px solid #80a4b1;
  line-height: 1.8888;
}
.recruit_table th{
  width: 150px;
  color: #fff;
  background: #004963;
  font-weight: 500;
  text-align: left;
  padding: 20px 0 20px 20px;
}
.recruit_table td{
  width: calc(100% - 150px);
  padding: 20px;
}

.recruitForm-wrap{
  padding: 100px 0;
  background-image: url(assets/images/bg.jpg);
}
.recruitForm-wrap h2{
  width: 396px;
  display: block;
  margin: 0 auto 68px;
}

.recruitForm-inner{
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 35px 65px 70px;
}

.requires_text{
  font-size: 1.7rem;
  text-align: right;
  margin-bottom: 15px;
}

.wpcf7-list-item{
  margin: 0;
}
.wpcf7-list-item:not(:last-of-type){
  margin-right: 1em;
}

.contactForm_line:nth-child(even){
  background: #edf3f4;
}
.contactForm_block{
  display: flex;
  /* align-items: center; */
  padding: 25px 40px 25px 20px;
}

.contactForm_title{
  width: 180px;
}
.input-wrap,
.date-wrap,
.radio-wrap{
  width: calc(100% - 180px);
}
.input-wrap input,
.date-wrap input,
.input-wrap select{
  width: 100%;
  height: 40px;
  font-size: 1.6rem;
  color: #004963;
  padding: 10px;
  box-sizing: border-box;
  border-color: #004963;
  border-width: 1px;
  border-radius: 0;
  background: #fff;
}

/* .input-wrap select{
  -webkit-appearance: none;
  appearance: none;
} */
.date-wrap span{
  display: block;
  width: 100%;
}
.wpcf7 input[type="date"] {
  width: 100%;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  color: #004963;
}

.input-wrap textarea{
  width: 100%;
  border-color: #004963;
  padding: 10px;
  box-sizing: border-box;
  border-width: 1px;
  font-size: 1.6rem;
  color: #004963;
  line-height: 2;
  border-radius: 0;
}
.radio-wrap label{
  display: flex;
  align-items: center;
}
.file-wrap input{
  padding: 0;
  font-size: 1.4rem;
  color: #004963;
  width: 100%;
}
input[type=file]::file-selector-button{
  background: #fff;
  color: #004963;
  border-radius: 0 !important;
  border: 1px solid #004963 !important;
  padding: 3px 6px !important;
}


.contactForm_note{
  display: flex;
  flex-wrap: wrap;
  margin-top: 6px;
}
.contactForm_note li{
  font-size: 1.6rem;
}
/* .contactForm_note li:not(:last-of-type){
  margin-right: 1em;
} */
.contactForm_note li:not(:last-of-type)::after{
  content: "\FF0F";
  display: inline-block;
}

.contactForm_bottom{
  width: 100%;
  padding: 40px 0 80px;
}
.contactForm_bottom h4{
  font-size: 1.7rem;
      line-height: 1.8823;
}
.contactForm_bottom ul li{
  font-size: 1.7rem;
  padding-left: 1em;
  position: relative;
  line-height: 1.8823;
}
.contactForm_bottom ul li::before{
  content: "\25CF";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
.contactForm_bottom p{
  font-size: 1.7rem;
  line-height: 1.8823;
  margin-top: 30px;
}

.btn_send{
  width: 300px;
  height: 80px;
  margin: 0 auto;
  position: relative;
}
.btn_send input{
  width: 300px;
  height: 80px;
  font-size: 1.9rem;
  font-weight: 700;
  color: #fff;
  background: #004963;
  border-radius: 50px;
}
.btn_send input:disabled{
  background: #c6c6c6;
}
.btn_send::after{
  content: "";
  display: block;
  width: 44px;
  height: 10px;
  background-image: url(assets/images/arrow_white.svg);
  background-size: cover;
  position: absolute;
  right: 25px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.form_send_note{
  font-size: 1.7rem;
  line-height: 1.8823;
  margin-top: 25px;
  text-align: center;
}
.form_send_note a{
  text-decoration: underline;
}

.wpcf7-not-valid-tip{
  font-size: 1.6rem;
}
/* recruit end ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


/* contact ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.pageTitle_contact{
  width: 184px;
}
.contact-wrap{
  width: 90%;
  max-width: 770px;
  margin: 0 auto;
  padding: 70px 0 90px;
}
.contactIntro_text{
  line-height: 2;
  margin-bottom: 50px;
}

.contact_privacy_text a{
  text-decoration: underline;
}
/* contact end ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


/* privacy ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.pageTitle_privacy{
  width: 330px;
}
.privacyContents-wrap{
  width: 90%;
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 0 100px;
}

.privacyContents-wrap p,
.privacyContents-wrap h2,
.privacyContents-wrap dl dt,
.privacyContents-wrap dl dd,
.privacyContents-wrap ul li{
  font-size: 1.7rem;
  line-height: 1.7058;
}
.privacyContents-wrap h2{
  font-weight: 500;
  margin-top: 30px;
}
.privacyContents-wrap dl dt,
.privacyContents-wrap dl dd{
  padding-left: 1em;
}
.privacyContents-wrap dl dt{
  position: relative;
}
.privacyContents-wrap dl dt::before{
  content: "\25CF";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
.privacyContents-wrap ul{
  padding-left: 1em;
}
.privacyContents-wrap ul li{
  padding-left: 1em;
  position: relative;
}
.privacyContents-wrap ul li::before{
  content: "\25CF";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
.privacy_address{
  margin-top: 30px;
}

/* privacy end ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


/* news ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.pageTitle_news{
  width: 106px;
}

.newsList-wrap{
  width: 100%;
  padding: 80px 0 100px;
}

.newsList_filter{
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto 84px;
}
.newsList_filter li{
  padding: 0 25px;
  line-height: 1;
  margin-bottom: 16px;
}
.newsList_filter li:not(:last-of-type){
  border-right: 1px solid #004963;
}
.newsList_filter li a{
  font-size: 1.6rem;
}

.newsList-inner{
  width: 90%;
  max-width: 812px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.newsList-inner::after{
  content: "";
  display: block;
  width: 32%;
  max-width: 232px;
}
.newsList-inner_sp{
  display: none;
}
.newsList-inner a{
  width: 32%;
  max-width: 232px;
}
.newsList-inner a:nth-child(n+4){
  margin-top: 70px;
}

.archive_pagination{
  padding-top: 80px;
}
.archive_pagination .nav-links{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.archive_pagination .nav-links .page-numbers{
  padding: 0 10px;
  margin: 10px;
}

/* news end ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


/* news detail ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.newsTitle-wrap{
  height: auto !important;
  display: block;
  background-image: url(assets/images/bg.jpg);
  background-size: auto !important;
  padding: 60px 5% 40px;
}
.newsDetail-wrap{
  padding: 80px 0 100px;
}
.newsTitle{
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.7272;
  text-align: center;
  margin-bottom: 28px;
}
.newsDate{
  font-size: 1.4rem;
  text-align: center;
}
.news_mv{
  width: 90%;
  max-width: 780px;
  margin: 0 auto 50px;
}
.news_contents{
  width: 90%;
  max-width: 654px;
  margin: 0 auto;
  padding-top: 40px;
}
.news_contents p{
  font-size: 1.5rem;
  line-height: 2;
}
.wp-block-separator:not(.is-style-wide):not(.is-style-dots){
  width: 100%;
  margin: 15px 0;
  border-width: 1px;
}

.btn_news{
  margin: 80px auto 0;
}

.link_newsDetail{
  font-size: 1.5rem;
  display: table;
  margin: 80px auto 0;
}
.link_newsDetail::before{
  content: "\FF1C";
  display: inline-block;
  margin-right: 1em;
}

.newsRelated-wrap{
  width: 100%;
  padding: 60px 0;
  background-image: url(assets/images/bg.jpg);
}
.newsRelated-wrap h2{
  width: 76px;
  display: block;
  margin: 0 auto 50px;
}

/* news detail end ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


/* project detail ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.produceTitle-wrap{
  height: auto !important;
  display: block;
  background-image: url(assets/images/bg.jpg);
  background-size: auto !important;
  padding: 30px 5%;
}
.produce_cat{
  width: 226px;
  height: 24px;
  margin: 0 auto;
  font-size: 1.3rem;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #004963;
  border-radius: 50px;
}
.produceTitle{
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.7272;
  margin: 20px 0 10px;
  text-align: center;
}
.produceClient{
  font-size: 1.4rem;
  line-height: 1.7272;
  text-align: center;
}

.produceSlide-wrap{
  width: 100%;
  margin-top: 80px;
  position: relative;
  /* overflow: hidden; */
  background-image: url(assets/images/bg.jpg);
}
.newsSlide-wrap{
  background-image: none;
  margin-top: 0;
}
.produceSlide-wrap::before{
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 50%;
  width: 100%;
  background-color: #fff;
}

.produceSlide-inner{
  width: 90%;
  max-width: 780px;
  margin: 0 auto;
  padding-bottom: 50px;
  position: relative;
}
.swiperProject{
  width: 100%;
  /* box-shadow: 0 0 10px rgba(0,0,0,.3); */
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);

}
.swiperProject-slide{
  aspect-ratio:4 / 3;
  background-size: cover;
  background-position: center;
}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{
  bottom: 0;
}
.swiper-pagination-bullet-active{
  background: #004963;
}

.produceContents-wrap{
  width: 100%;
  padding: 10px 0 100px;
  background-image: url(assets/images/bg.jpg);
}
.produceContents-inner{
  width: 90%;
  max-width: 660px;
  margin: 0 auto;
}

.projectContents01{
  width: 100%;
  padding: 40px 0 70px;
  border-bottom: 1px solid #004963;
}
.projectContents02{
  width: 100%;
  padding: 50px 0;
}
.projectContents01 h2{
  font-size: 2rem;
  margin-bottom: 15px;
}
.projectContents02 h2{
  font-size: 1.8rem;
  margin-bottom: 15px;
}
.projectContents01 p,
.projectContents02 p{
  font-size: 1.5rem;
  line-height: 2;
}

.project_sub_box-wrap{
  width: 100%;
}
.project_sub_box{
  width: 100%;
  background: #fff;
  padding: 30px 50px 40px;
}
.project_sub_box h3{
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 13px;
}
.project_sub_box p{
  font-size: 1.4rem;
  line-height: 2;
}
.project_sub_box:not(:last-of-type){
  margin-bottom: 40px;
}

.produce_back-wrap{
  width: 100%;
  height: 194px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.produce_back-wrap .link_newsDetail{
  margin: 0;
}
/* project detail end ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


/* products detail ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.productsStory{
  width: 100%;
  padding: 40px 0 70px;
}
.productsStory h2{
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.productsStory p{
  font-size: 1.5rem;
  line-height: 2;
}

.productsInfo-wrap{
  width: 100%;
  background: #fff;
  padding: 45px 35px;
}
.productsInfo{
  display: flex;
  flex-wrap: wrap;
}
.productsInfo dt,
.productsInfo dd{
  border-bottom: 1px solid #004963;
  line-height: 1.6666;
  padding: 13px 10px;
  box-sizing: border-box;
}
.productsInfo dt{
  width: 160px;
  font-size: 1.5rem;
  font-weight: 700;
  padding-left: calc(1em + 10px);
  position: relative;
}
.productsInfo dt::before{
  content: "\25CF";
  display: block;
  position: absolute;
  left: 10px;
  top: 13px;
}
.productsInfo dd{
  width: calc(100% - 160px);
  font-size: 1.5rem;
}

.productsTable-wrap{
  width: 100%;
  padding: 60px 35px 0;
}

.productsTable{
  width: 100%;
}
.productsTable th,
.productsTable td{
  line-height: 1.6666;
  padding: 13px 10px;
  box-sizing: border-box;
  text-align: left;
}
.productsTable th{
  font-size: 1.6rem;
  font-weight: 700;
  border-bottom: 2px solid #004963;
}
.productsTable th:first-of-type{
  width: 160px;
}
.productsTable th:last-of-type{
  width: calc(100% - 160px);
}
.productsTable td{
  font-size: 1.4rem;
  border-bottom: 1px solid #004963;
}
.productsTable td:first-of-type{
  padding-left: calc(1em + 10px);
  position: relative;
}
.productsTable td:first-of-type::before{
  content: "\25CF";
  display: block;
  position: absolute;
  left: 10px;
  top: 13px;
}
.productsTable td.no_variations{
  padding-left: 10px;
}
.productsTable td.no_variations::before{
  content: none;
}
/* products detail end ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


/* produce ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.pageTitle_produce{
  width: 178px;
}
.produce_project-wrap{
  padding: 80px 0 40px;
}
.produce_products-wrap{
  padding: 80px 0 40px;
  margin-bottom: 110px;
}
.produce_project-inner,
.produce_products-inner{
  margin: 0 auto;
}

.produce_project-wrap h2,
.produce_products-wrap h2{
  width: 90%;
  max-width: 1080px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 60px;
  font-size: 2.8rem;
  font-weight: 500;
  color: #fff;
  background: #004963;
}

/* produce end ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


/* not found ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.notFound-wrap{
  width: 90%;
  min-height: calc(100vh - 224px);
  margin: 0 auto;
  padding: 180px 0 100px;
}
.notFound-wrap p{
  font-size: 2.4rem;
  line-height: 2;
  text-align: center;
}
.notFound-wrap p a{
  text-decoration: underline;
}
/* not found end ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


@media screen and (max-width: 1100px) {
  .aboutPhilosophy-inner{
    width: 520px;
  }
  .aboutMessage_contents-wrap{
    flex-wrap: wrap;
  }
  .aboutMessage_contents:nth-child(1),
  .aboutMessage_contents:nth-child(2){
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 1000px) {
  .pageFurusato_bottom-inner{
    flex-direction: column;
    align-items: center;
  }
  .pageFurusato_bottom_box{
    width: 100%;
  }
  .pageFurusato_bottom_box:not(:last-of-type){
    margin-bottom: 30px;
  }

  /* service */
  .btn_aboutBusiness{
    right: -30px;
  }
  /* service end */
}

@media screen and (max-width: 900px) {
  .footer-contact_ill {
    top: 50px;
    right: -130px;
  }

  .serviceContents_text{
    width: 300px;
  }
  .serviceContents_image{
    width: calc(100% - 330px);
  }
}

@media screen and (max-width: 800px) {
  .pageBusiness_flow-wrap{
    width: 700px;
  }
}

@media screen and (max-width: 768px) {
  body {
    font-size: 1.6rem;
  }

  .pcOnly{
    display: none;
  }
  .spOnly{
    display: block;
  }
  .br_pcOnly{
    display: none;
  }
  .br_spOnly{
    display: inline;
  }

  /* header */
  #pageheader{
    height: 60px;
    padding: 0 17px;
  }
  .logo_header{
    width: 105px;
  }
  .header_nav{
    font-size: 1.5rem;
    margin-right: 20px;
  }
  .header_nav::before{
    width: 12px;
    height: 9px;
  }
  .header_sns{
    display: none;
  }

  header nav{
    height: calc( 100vh - 60px );
    background-image: none;
  }
  .sp-nav-wrap{
    width: 100%;
    max-width: none;
    margin: 0;
  }
  .sp-nav-inner{
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 50px 0 45px;
    background-image: url(assets/images/bg_sp-menu_sp.png);
    background-size: cover;
    background-position: top;
  }
  .sp-nav-left,
  .sp-nav-right{
    width: 214px;
    margin: 0 auto;
  }
  .sp-nav_business p{
    font-size: 1.7rem;
    height: auto;
    margin-bottom: 10px;
  }
  .sp-nav_business .link_sp-nav{
    font-size: 1.6rem;
    height: 50px;
  }

  .link_sp-nav{
    font-size: 1.7rem;
    height: 52px;
  }

  .nav_akindoGirls-wrap{
    display: block;
    padding: 15px 0;
    border-radius: 0;
    margin-top: 0;
  }
  .nav_akindoGirls_image{
    width: 75%;
    margin: 0 auto;
  }
  .nav_akindoGirls_contents{
    margin: 20px auto 0;
  }
  /* header end */


  /* footer */
  .footerContact-inner{
    width: 90%;
  }
  .footerContact_contents{
    display: block;
  }
  .footerContact_contents h3{
    width: 160px;
    margin-bottom: 35px;
  }
  .footer-contact_ill{
    width: 120px;
    top: -10px;
    right: -18px;
  }

  .footer_copy{
    flex-direction: column;
    align-items: center;
  }
  .footer_copy span:first-of-type::after{
    content: none;
  }
  .footer_copy span:first-of-type{
    margin-bottom: 7px;
  }

  .btn_top{
    width: 42px;
    right: 15px;
    bottom: 15px;
  }
  /* footer end */

  /* top */
  .mv-wrap{
    margin-bottom: 10px;
  }
  .mv_logo{
    width: 35%;
    top: 20.8333%;
  }
  .mv_copy{
    width: 43%;
    bottom: 30.3333%;
  }

  .topNews-wrap{
    padding: 50px 0 15px;
    margin-bottom: 0;
  }
  .topNews-inner{
    width: 100%;
  }
  .topNews-inner h2{
    width: 100px;
    padding-left: 5%;
    margin-bottom: 34px;
  }
  .topNews_contents-wrap{
    padding-left: 0;
  }
  .topNews_contents-inner{
    padding: 0 60px 35px 60px;
  }

  .topNews_list_pc{
    display: none;
  }
  .topNews_list_sp{
    display: block;
  }

  .swiper-button-prev,
  .swiper-button-next{
    top: 40%;
  }
  .topNews_list_sp .swiper-button-prev{
    left: -45px;
  }
  .topNews_list_sp .swiper-button-next{
    right: -45px;
  }
  .swiper-button-next:after, .swiper-button-prev:after{
    font-size: 3rem;
    color: #004963;
  }

  .topBusiness-wrap{
    padding: 50px 0;
    margin-bottom: 30px;
  }
  .topBusiness-wrap h2{
    width: 266px;
    margin: 0 auto 50px;
  }
  .topBusiness_copy-wrap{
    width: 300px;
    margin: 0 auto 60px;
  }
  .business_ill{
    display: none;
  }
  .topBusiness-inner{
    padding-bottom: 40px;
    z-index: 10;
  }
  .topBusiness-inner::before{
    top: 72px;
  }

  .topBusiness_contents{
    width: 100%;
    align-items: flex-start;
    justify-content: center;
    /* position: relative; */
  }
  /* .business_ill_sp{
    width: 112px;
    position: absolute;
    left: -18px;
    bottom: -74px;
  } */
  .topBusiness_text{
    width: 80px;
    margin-right: 30px;
    position: relative;
  }
  .topBusiness_text::after{
    content: "";
    width: 112px;
    height: 302px;
    position: absolute;
    z-index: 10;
    left: -18px;
    bottom: -330px;
    background-image: url(assets/images/top/business_ill_sp.png);
    background-size: cover;
  }

  .topBusiness_list{
    width: 184px;
    display: block;
  }
  .topBusiness_list li{
    width: 100%;
  }
  .topBusiness_list li:not(:last-of-type){
    margin-bottom: 20px;
  }

  .topBusiness_image-wrap{
    display: block;
    margin: 0 auto 50px;
    position: relative;
    z-index: 1;
  }
  .topBusiness_image{
    width: 100%;
  }
  .topBusiness_image:not(:last-of-type){
    margin-bottom: 4px;
  }

  .topPageLink-wrap{
    padding: 60px 0;
  }
  .topPageLink-inner{
    display: block;
  }
  .topPageLink{
    width: 100%;
    max-width: none;
  }

  .topPageLink:nth-child(1) .topPageLink_title{
    width: 204px;
  }
  .topPageLink:nth-child(2) .topPageLink_title{
    width: 276px;
  }
  .topPageLink:nth-child(3) .topPageLink_title{
    width: 152px;
  }
  .topPageLink:nth-child(4) .topPageLink_title{
    width: 122px;
  }
  .topPageLink:nth-child(1),
  .topPageLink:nth-child(2),
  .topPageLink:nth-child(3) {
    margin-bottom: 30px;
  }

  .topAccess-wrap{
    margin: 20px 0 10px;
  }
  .topAccess-inner{
    padding-left: 0;
    display: block;
  }
  .topAccess_contents,
  .topAccess_map{
    width: 100%;
    max-width: none;
  }
  .topAccess_image{
    margin-bottom: 35px;
  }
  .topAccess_contents h2{
    width: 134px;
    padding: 0 5%;
  }
  .topAccess_contents p{
    font-size: 1.5rem;
    padding: 0 5%;
    margin-bottom: 35px;
  }
  .topAccess_contents p:not(:last-of-type){
    margin-bottom: 30px;
  }
  /* top end */


  /* page common */
  .pageTitle-wrap{
    height: 175px;
    margin-top: 60px;
    background-size: 1280px;;
  }
  /* page common end */


  /* about */
  .aboutMessage-wrap{
    padding: 80px 0 0;
    margin-top: 0;
  }
  .aboutMessage-inner{
    width: 100%;
  }
  .aboutMessage_ill{
    width: 114px;
    left: 35px;
    bottom: -40px;
  }
  /* .aboutMessage_text p{
    font-size: 1.6rem;
  } */
  .aboutMessage_contents p{
    font-size: 1.8rem;
  }

  .aboutPhilosophy-wrap{
    padding: 100px 0 80px;
  }
  .aboutPhilosophy_head{
    width: 100%;
    display: block;
    margin: 0 0 50px;
  }
  .aboutPhilosophy_head h2{
    width: 100%;
    padding-right: 0;
    justify-content: center;
    margin-bottom: 50px;
  }
  .aboutPhilosophy_head p{
    width: 340px;
    margin: 0 auto;
  }
  .aboutPhilosophy-inner{
    width: 250px;
  }
  .aboutMessage_contents:nth-child(3){
    margin-bottom: 24px;
  }

  .aboutPhilosophyList-wrap{
    padding: 80px 0;
    margin-bottom: 60px;
  }
  .aboutPhilosophyList-wrap h2{
    width: 246px;
  }
  .aboutPhilosophyList-inner h3{
    width: 288px;
    margin: 0 auto 50px;
  }
  .aboutPhilosophyList-inner{
    display: block;
    width: 100%;
  }

  .aboutPhilosophyList{
    width: 271px;
    margin: 0 auto;
    flex-wrap: wrap;
    position: relative;
    z-index: 5;
  }
  .philosophy_ill{
    z-index: 1;
  }
  .philosophy_ill_01{
    width: 130px;
    top: auto;
    left: -12px;
    bottom: 326px;
  }
  .philosophy_ill_02{
    width: 72px;
    left: 24px;
    bottom: -124px;
  }
  .philosophy_ill_03{
    width: 112px;
    top: auto;
    right: -9px;
    bottom: 315px;
  }
  .philosophy_ill_04{
    width: 90px;
    right: 15px;
    bottom: -126px;
  }

  .aboutPhilosophyList li{
    font-size: 1.8rem;
    white-space: nowrap;
  }
  .aboutPhilosophyList li:nth-child(6){
    border-right: 1px solid #fff;
  }
  .aboutPhilosophyList li:nth-child(n+6){
    margin-top: 27px;
  }
  .fuku-akinai{
    padding: 35px 20px 30px;
  }
  /* .fuku-akinai p{
    font-size: 1.6rem;
  } */
  .aboutInfo-wrap{
    padding: 0 0 80px;
  }
  .aboutInfo-wrap p{
    width: 90%;
    /* font-size: 1.6rem; */
    text-align: justify;
    margin: 50px auto 0;
  }

  .aboutCorporation_title{
    margin-right: 0;
    margin: 0 auto 40px;
  }
  .aboutCorporation-wrap{
    display: block;
    margin: 70px auto 0;
  }
  .aboutCorporation_list{
    width: 100%;
    max-width: none;
  }
  /* .aboutCorporation_list dt,
  .aboutCorporation_list dd {
    font-size: 1.6rem;
  } */
  .aboutCorporation_list dt{
    width: 150px;
  }
  .aboutCorporation_list dd{
    width: calc(100% - 150px);
  }

  .title_our-business img{
    width: 246px;
  }
  .aboutBusiness_contents{
    padding: 60px 0 80px;
    margin-bottom: 60px;
  }

  .aboutBusiness_bottom{
    display: block;
  }
  .aboutBusiness_logo{
    margin-right: 0;
    margin: 0 auto 40px;
  }
  .aboutBusiness_bottom_text{
    width: 100%;
    max-width: 328px;
    margin: 0 auto;
    padding-bottom: 35px;
  }
  .btn_aboutBusiness{
    right: 0;
  }
  /* about end */


  /* recruit */
  .recruit-wrap{
    padding: 64px 0 0;
  }
  .recruit_top p{
    padding: 50px 0;
  }
  .recruit_image-inner{
    width: 100%;
  }
  .recruit_table-wrap{
    padding: 80px 0;
  }
  .recruit_table th{
    width: 86px;
    padding: 12px 0 12px 12px;
  }
  .recruit_table td{
    width: calc(100% - 86px);
    padding: 12px;
  }
  .recruitForm-wrap{
    padding: 80px 0;
  }
  .recruitForm-wrap h2{
    width: 248px;
    margin: 0 auto 58px;
  }
  .recruitForm-inner{
    padding: 35px 5% 70px;
  }
  .contactForm_title{
    font-size: 1.8rem;
    width: 100%;
    margin-bottom: 5px;
  }
  .contactForm_block{
    display: block;
    padding: 20px 5%;
  }
  .contactForm_privacy{
    display: flex;
  }
  .input-wrap, .date-wrap, .radio-wrap{
    width: 100%;
  }

  .form_send_note{
    text-align: justify;
  }
  /* recruit end */


  /* contact */
  .contact-wrap{
    padding: 60px 0 70px;
  }
  /* contact end */


  /* privacy */
  .privacyContents-wrap{
    padding: 60px 0 80px;
  }
  .privacyContents-wrap p, .privacyContents-wrap h2, .privacyContents-wrap dl dt, .privacyContents-wrap dl dd, .privacyContents-wrap ul li{
    font-size: 1.6rem;
  }

  /* privacy end */


  /* consulting */
  .pageBusiness-wrap{
    margin-top: 80px;
    padding: 0 0 80px;
  }
  .pageBusiness_mv{
    margin: 0 auto 60px;
  }
  .pageConsulting_copy{
    width: 308px;
  }
  .pageBusiness_we-can{
    padding: 0 0 30px;
  }
  .pageBusiness_we-can ul{
    width: 90%;
  }
  .pageBusiness_we-can ul li{
    width: 100%;
    font-size: 1.8rem;
    padding: 10px;
  }
  .pageConsulting_we-can ul li:last-of-type{
    padding-top: 15px;
  }

  .pageBusiness_flow-wrap{
    width: 100%;
    margin: 80px auto 0;
  }
  .pageBusiness_flow-inner{
    width: 90%;
    display: block;
    margin: 0 auto;
  }
  .pageBusiness_flow-inner:not(:last-of-type){
    margin-bottom: 80px;
  }
  .pageBusiness_flow_left{
    width: 100%;
    margin-bottom: 50px;
  }
  .flow_image{
    margin: 30px 0;
  }
  .pageConsulting_flow_left h2{
    width: 198px;
  }
  .pageBusiness_flow_right{
    width: 100%;
  }

  .pageConsulting_bottom-wrap{
    padding: 80px 0;
  }
  .pageConsulting_bottom-inner{
    display: block;
    width: 90%;
    max-width: 280px;
    margin: 0 auto;
    padding-bottom: 80px;
  }
  .pageConsulting_bottom_box{
    width: 100%;
    display: block;
  }
  .pageConsulting_bottom_box:not(:last-of-type){
    margin-bottom: 30px;
  }
  /* consulting end */


  /* local products */
  .pageTitle_locacProducts{
    width: 206px;
  }
  .pageLocalProducts_copy{
    width: 320px;
  }
  .pageBusiness_flow01_left h2{
    width: 266px;
  }
  .pageBusiness_flow02_left h2{
    width: 170px;
  }
  .pageLocalProducts_bottom-wrap{
    padding: 80px 0;
  }
  .pageLocalProducts_bottom-inner ul li{
    width: 100%;
  }
  /* local products end */


  /* furusato */
  .pageFurusato_copy{
    width: 318px;
  }
  .pageFurusato_flow_left h2{
    width: 270px;
  }
  /* furusato end */


  /* service */
  .pageService_intro-wrap{
    width: 90%;
    margin: 0 auto;
    padding: 50px 0 70px;
  }
  .pageService_intro_text{
    text-align: justify;
    margin-bottom: 50px;
  }
  .pageService_intro-inner{
    width: 100%;
    display: block;
  }
  .pageService_intro-inner p{
    width: 150px;
    margin: 0 auto 50px;
  }
  .pageService_intro_list{
    width: 324px;
    margin: 0 auto;
  }
  .pageService_intro_list li:not(:last-of-type){
    margin-bottom: 10px;
  }

  .pageServiceContents{
    padding: 60px 0 80px;
  }
  .service_title{
    margin: 40px auto 20px;
  }
  .serviceContents-inner{
    margin: 40px auto 0;
  }

  .service01_num{
    width: 182px;
  }
  .service01_title{
    width: 280px;
  }
  .service02_num{
    width: 184px;
  }
  .service02_title{
    width: 228px;
  }
  .service03_num{
    width: 184px;
  }
  .service03_title{
    width: 228px;
  }
  .service04_num{
    width: 186px;
  }
  .service04_title{
    width: 340px;
  }
  .service05_num{
    width: 184px;
  }
  .service05_title{
    width: 280px;
  }
  .service06_num{
    width: 186px;
  }
  .service06_title{
    width: 280px;
  }
  .service07_num{
    width: 184px;
  }
  .service07_title{
    width: 314px;
  }
  .service_title-sub{
    font-size: 2rem;
  }

  .serviceContents-inner{
    display: block;
  }
  .serviceContents_image{
    width: 100%;
    max-width: none;
  }
  .serviceContents_text{
    width: 100%;
    margin-top: 42px;
  }
  .btn_service{
    margin: 45px auto 0;
  }
  /* service end */


  /* news */
  .newsList-wrap{
    padding: 60px 0 80px;
  }
  .newsList-inner{
    width: 64%;
    display: block;
  }
  .newsList-inner a{
    width: 100%;
    display: block;
    max-width: none;
  }
  .newsList-inner a:nth-child(2),
  .newsList-inner a:nth-child(3),
  .newsList-inner a:nth-child(n+4) {
    margin-top: 40px;
  }
  .newsList_filter{
    margin: 0 auto 60px;
  }
  /* news end */


  /* news detail */
  .newsTitle-wrap{
    padding: 45px 5% 40px;
  }
  .newsTitle{
    font-size: 1.8rem;
  }
  .newsDetail-wrap{
    padding: 0 0 80px;
  }
  .link_newsDetail{
    margin: 60px auto 0;
  }

  .newsList-inner_pc{
    display: none;
  }
  .newsList-inner_sp{
    display: block;
    position: relative;
  }
  .newsList-inner_sp a:nth-child(2),
  .newsList-inner_sp a:nth-child(3),
  .newsList-inner_sp a:nth-child(n+4){
    margin-top: 0;
  }

  .newsList-inner_sp .swiper-button-prev{
    left: -50px;
  }
  .newsList-inner_sp .swiper-button-next{
    right: -50px;
  }
  /* news detail end */


  /* produce */
  .produce_project-wrap,
  .produce_products-wrap{
    padding: 60px 0 50px;
  }
  .produce_products-wrap{
    margin-bottom: 30px;
  }
  .produce_project-inner,
  .produce_products-inner{
    padding-bottom: 0;
  }
  .produce_project-wrap h2,
  .produce_products-wrap h2{
    font-size: 2.6rem;
    margin: 0 auto 50px;
  }
  /* produce end */


  /* produce detail */
  .produceTitle{
    font-size: 2rem;
  }
  .produceSlide-wrap{
    margin-top: 60px;
  }

  .produceContents-wrap{
    padding: 0 0 80px;
  }
  .projectContents01,
  .projectContents02{
    padding: 40px 0;
  }
  .project_sub_box{
    padding: 30px 20px 40px;
  }

  .productsStory{
    padding: 40px 0 50px;
  }
  .productsInfo-wrap{
    padding: 10px 20px;
  }
  .productsInfo{
    display: block;
  }
  .productsInfo dt{
    width: 100%;
    border-bottom: none;
    padding: 12px 20px 0 1em;
  }
  .productsInfo dt::before{
    left: 0;
    top: 12px;
  }
  .productsInfo dd{
    width: 100%;
    padding: 0 20px 12px 0;
  }
  .productsInfo dd:last-of-type{
    border-bottom: none;
  }

  .productsTable-wrap{
    padding: 40px 0 0;
  }
  .productsTable{
    width: 100%;
  }
  .productsTable th,
  .productsTable td{
    display: block;
    width: 100%;
  }
  .productsTable th:first-of-type,
  .productsTable th:last-of-type{
    display: inline-block;
  }
  .productsTable tr:first-of-type{
    border-bottom: 2px solid #004963;
  }
  .productsTable th:first-of-type,
  .productsTable th:last-of-type{
    width: auto;
    border-bottom: none;
  }
  .productsTable th:first-of-type{
    padding-right: 1em;
    position: relative;
  }
  .productsTable th:first-of-type::after{
    content: "\30FB";
    display: block;
    position: absolute;
    right: 0;
    top: 13px;
  }
  .productsTable th:last-of-type{
    padding-left: 0;
  }

  .productsTable td:first-of-type{
    border-bottom: none;
    padding-bottom: 0;
  }
  .productsTable td:last-of-type{
    padding-top: 0;
  }
  /* produce detail end */

  /* not found */
  .notFound-wrap{
    min-height: calc(100vh - 249px);
    padding: 110px 0 50px;
  }
  .notFound-wrap p{
    font-size: 1.8rem;
    text-align: justify;
  }
  /* not found end */

}



@media screen and (max-width: 640px) {
  .swiper-button-prev,
  .swiper-button-next{
    top: 35%;
  }
}
@media screen and (max-width: 450px) {
  .swiper-button-prev,
  .swiper-button-next{
    top: 25%;
  }
  .newsList-inner_sp .swiper-button-prev,
  .newsList-inner_sp .swiper-button-next{
    top: 30%;
  }
}
