﻿
/* CSS Document */
@import url('css2-KleeOnewght400600_swap.css');
@import url('css2-ZenMaruGothicwght300400500_swap.css');
@import url('css2-Dosiswght400500600_swap.css');

body {
  font-size: 14px;
    font-family: 'Klee One', cursive;
  height: 100%;
  width: 100%;
  margin: 0;
  color: #333333;
  background-color: #FFFFFF;
  line-height: 2em;
  text-justify: inter-ideograph;
  text-align: justify;
  font-weight: 400;
  overflow-x: hidden;
  padding: 0;
}
body {
  animation: fadeIn 6s ease 0s 1 normal;
  -webkit-animation: fadeIn 6s ease 0s 1 normal;
  padding-top: 0px;
}
@keyframes fadeIn {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
a:link {
  color: #333333;
  text-decoration: none;
}
a:visited {
  color: #333333;
  text-decoration: none;
}
a:hover {
    color: #666666;
    text-decoration: none;
}
a:active {
    color: #666666;
    text-decoration: none;
}

a[href^="tel:"] {
  pointer-events: none;
}
/* FLEX */
.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.flex_c {
  display: -webkit-box !important; 
  display: -ms-flexbox !important; 
  display: -webkit-flex !important; 
  display: flex !important;
  -webkit-justify-content: center; 
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.pc_no {
  display: none !important;
}
img {
  height: auto;
  max-width: 100%;
  width: auto;
  vertical-align: bottom;
}

.wrapper {

 
}
/*---ヘッダー ---*/
header {
        max-width: 1620px;
     margin-left: auto;
    margin-right: auto;
    display: block;
}
.head_in1 {
   max-width:1620px;
    position: fixed;
   left: 0;
    right: 0;
    top: 0;
    margin:  auto;
    z-index: 10;
}
.head_in1 h1 {
    width: 20%;
    float: left;
    display: block;
    background: rgba(250, 250, 250, 0.8);
    height: 120px;
    padding-top: 30px;
    padding-left: 40px;
}
.head_in1 h1 img {
    width: auto;
    height: 50px;
    padding-left: 0px;
}
.head_in1 menu {
    width: 80%;
    float: left;
     display: block;
    padding-right: 90px;
   background: rgba(250, 250, 250, 0.8);
    height: 120px;
    padding-top: 40px;
}
/*---ヘッダー ---*/

/*ハンバーガー*/
#nav-open {
	display: inline-block;
	width: 70px;
	height: 67px;
	vertical-align: middle;
	position:absolute;
	top: 20px;
	right: 20px;
	z-index: 9999;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}


/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  transition: all 0.4s;
  height: 6px;/*線の太さ*/
  width: 40px;/*長さ*/
    background-image:url("../image/mbar.svg");
    display: block;
  content: '';
  cursor: pointer;
  z-index: 9999;/*最前面*/
}

#nav-open span:before {
  bottom: -16px;
}

#nav-open span:after {
  bottom: -32px;
}


/*中身*/
#nav-content {
	display: none;
	position: absolute;
	top: 0;
	transition: .2s ease-in-out;
	right: 0;
}

#nav-content.open {
	display: block;
	opacity: 1;
	overflow: auto;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 9998;
	height: 100vh;
	background: rgba(245, 242, 229, 1.0);/*背景色*/
	padding-top: 60px;
	padding-right: 30px;
	padding-bottom: 60px;
	padding-left: 30px;
}


/*:beforeにぼかし効果を設定する*/
#nav-content.open:before {
  content: '';
  overflow: hidden;
  -webkit-filter: blur(10px);
  -moz-filter: blur(10px);
  -o-filter: blur(10px);
  -ms-filter: blur(10px);
  filter: blur(10px);
  z-index: -1;/*重なり順序を一番下にしておく*/
}


/*チェックが入ったら表示する内容*/

.hamburger-top {
  height: 40px;/*×ボタンと被らないように*/
}

.category {
	text-align: left;
    width: 50%;
    
}

.category-title {
    display: block;
    padding-right: 50px;
    padding-left: 50px;
    width: max-content;
}

.category-title a {
    text-decoration: none;
    font-size: 18px;
    display: block;
    font-family: 'Zen Maru Gothic', sans-serif;
    clear: both;
    font-weight: 400;
    margin-bottom: 40px;
}

.category-sub {
    padding-left: 1em;
}
.category-title a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.category-title a::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #333;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}
.category-title a:hover::after {
  transform: scale(1, 1);
}

/*三本線を動かす*/
#nav-open.active span {
  -webkit-transform: translateY(16px) rotate(-45deg);
  transform: translateY(16px) rotate(-45deg);
}

.menu_inbox3 {
	padding-top: 32px;
	padding-bottom: 15px;
	text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    
}
.menu_inbox3 li {
	width: 20%;
	
}
.menu_inbox3 li a img {
	width: auto;
    height: 25px;
}

#nav-open.active span:before {
  -webkit-transform: translateY(-16px) rotate(45deg);/*打ち消す*/
  transform: translateY(-16px) rotate(45deg);/*打ち消す*/
  opacity: 0;
}

#nav-open.active span:after {
  -webkit-transform: translateY(-32px) rotate(45deg);
  transform: translateY(-32px) rotate(90deg);
}


/*ハンバーガー*/

/*---メニュー ---*/
.gnavi__wrap {
    margin: 0 auto;
}
.gnavi__lists {
    display: flex;
    justify-content:flex-end;
}
.gnavi__list {
    
    padding-right: 2%;
    position: relative;
    transition: all .3s;
}
.gnavi__list:hover {
     opacity: 1.0 !important;
	filter: alpha(opacity=100) !important;
	-ms-filter: "alpha( opacity=100 )" !important;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	text-decoration: none;
    color: #333;
}
.gnavi__list:not(:first-child)::before {
    content: "";
    width: 0px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .3s;
}
.gnavi__list:hover::before {
    background-color: #333333;
}
.gnavi__list a {
    font-family: 'Dosis', sans-serif;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    letter-spacing: 0.05em;
    font-weight: 600;
    transition: all .3s;
    padding-bottom: 5px;
}
.gnavi__list:hover a {
   opacity: 1.0 !important;
	filter: alpha(opacity=100) !important;
	-ms-filter: "alpha( opacity=100 )" !important;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	text-decoration: none;
    color: #333;
}
.gnavi__list span.en {
    display: inline;
}
.gnavi__list:hover span.en {
    display: none;
}
.gnavi__list a span.jp {
     font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 400;
    display: none;
}
.gnavi__list:hover span.jp {
     font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 400;
    display: inline;
}
.dropdown__lists {
    transform: scaleY(0);/*デフォルトでは非表示の状態にしておく*/
    transform-origin: center top;/*変形を適応する基準をtopとする*/
    transition: all .3s;/*表示の変化を0.3秒に指定*/
    position: absolute;
    top: 35px;
    left: 0;
    width: max-content;
    cursor: pointer;
    padding-bottom: 15px;
   padding-top: 15px;
    background-color: #FFF;
    
}
.gnavi__list:hover .dropdown__lists {
    transform: scaleY(1);/*Gナビメニューにホバーしたら表示*/
    
      
}
.dropdown__list {
    transition: all .5s;
    position: relative;
    display: block;
     padding-bottom: 10px;
   padding-top: 10px;
    padding-right: 20px;
    padding-left: 20px;
   
}

.dropdown__list:hover {
    
}
.dropdown__list a {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 18px;
   padding-bottom: 5px;
   padding-top: 5px;
   font-weight: 400;
    display: inline !important;
}

.gnavi__wrap a {
  position: relative;
  text-decoration: none;
}
.gnavi__wrap a::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #333;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}
.gnavi__wrap a:hover::after {
  transform: scale(1, 1);
}

/*---メニュー ---*/


/*---トップコンテンツ ---*/
main {
    display: block;
    overflow: hidden;
}
main a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
main a::after {
    height: 2px;
  position: absolute;
  bottom: -1px;
  left: 0;
  content: '';
  width: 100%;
  background: #333;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}
main a:hover::after {
  transform: scale(1, 1);
}

.box01 {
    max-width: 1620px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 270px;
    padding-bottom: 270px;
}
.box_50 li {
    width: 50%;
    
}
.top_01 {
      display: flex;
  justify-content: center;
  align-items: center;
    background-image: url("../image/t2.png");
    background-size: 30%;
    background-repeat: no-repeat;
   background-position: right 35% top 15%;
  
}
.tate {
    -webkit-writing-mode: vertical-rl;
-moz-writing-mode: vertical-rl;
-ms-writing-mode: tb-rl;
-ms-writing-mode: vertical-rl;
writing-mode: vertical-rl;
}
.top_01_in {
    padding-right: 10%;    
}

.top_01_in h2 {
    font-size: 42px;
    display: block;
}
.top_01_in h3 {
    font-size: 24px;
    margin-left: 20%;
    margin-right: 40%;
    display: block;

}

.top_01_in p {
    font-size: 18px;
    line-height: 2em;
   display: block;
}
.box02 {
          width: 100%;
     margin-left: auto;
    margin-right: auto;
    padding-top: 130px;
    padding-bottom: 85px;
    background-color: #f5f2e5;
}
.tnews_box {
           max-width: 1340px;
     margin-left: auto;
    margin-right: auto;
}
@media (max-width: 1620px) {
    .tnews_box {
        
     margin-left: 5%;
    margin-right: 5%;
}
}
.tnews_box h2 {
    font-family: 'Dosis', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 96px;
}
.tnews_box dl {
    font-size: 16px;
    padding-bottom: 48px;
    margin-bottom: 48px;
    border-bottom: 1px solid #333333;
    display: block;
    overflow: hidden;
}
.tnews_box_in :last-child {
    border-bottom: none !important;
}
.tnews_box dt {
    font-family: 'Zen Maru Gothic', sans-serif;
        font-weight: 500;
    width: 15%;
    float: left;
     display: block;
    overflow: hidden;
}
.tnews_box dd {
    width: 75%;
    float: left;
     display: block;
    overflow: hidden;
}
.tnews_box .btn_1 {
    width: 100%;
    text-align: center;
    display: block;
    overflow: hidden;
}
main .btn_1::after {
    height: 0px;
}
.tnews_box .btn_1 img {
    height: auto;
    width: 80px;
    margin-left: auto;
    margin-right: auto;
    
}
.box01_2 {
    max-width: 1620px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 270px;
    padding-bottom: 270px;
}

.top_02 {
      display: flex;
  justify-content: center;
  align-items: center;
  
}
@media (max-width: 1620px) {
    .top_02 {
    padding-left: 5%;
    padding-right: 5%;
}
    .pad_ls5 {
    padding-left: 5%;
}
    }
.pad_r15 {
    padding-right: 5%;
}
.top_02_in h4 {
    color: #999999;
    font-size: 18px;
    font-family: 'Zen Maru Gothic', sans-serif;
    margin-bottom: 16px;
    font-weight: 500;
    letter-spacing: 0.1em;
}
.top_02_in h2 {
    font-size: 28px;
    margin-bottom: 32px;
}
.top_02_in p {
    font-size: 18px;
    margin: 0;
    line-height: 1.8em;
}

.top_02_in .btn_2 {
    margin-top: 32px;
    font-size: 22px;
    line-height: 22px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    background-color: #f5f2e5;
    padding-left: 32px;
    padding-right: 32px;
    padding-top: 5px;
    padding-bottom: 10px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    display: inline-block;
    overflow: hidden;
}
.pad_l15 {
    padding-left: 5%;
}
.mt180 {
    margin-top: 180px;
}
.box03 {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 180px;
    padding-bottom: 180px;
    background-image: url(../image/t13.jpg);
    background-size: cover;
    background-position: center top;
}
.box_1620 {
  max-width: 1620px;
    margin-left: auto;
    margin-right: auto;
}
.box_1480 {
  max-width: 1480px;
    margin-left: auto;
    margin-right: auto;
}
.pad_r3 {
    padding-right: 3%;
}
.pad_l3 {
    padding-left: 3%;
}

.top_02_in h3 {
    margin-bottom: 42px;
}
.top_02_in .simg1 {
    height: 74px;
    width: auto;
    
}
.top_02_in .simg2 {
    height: 55px;
    width: auto;
    
}
.top_02_in .simg3 {
    height: 60px;
    width: auto;
    
}
.top_02_in .btn_3 {
    margin-top: 32px;
    font-size: 22px;
    line-height: 22px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    background-color: #000000;
    padding-left: 32px;
    padding-right: 32px;
    padding-top: 5px;
    padding-bottom: 10px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    display: inline-block;
    overflow: hidden;
}

.top_02_in .btn_3 a {
     color: #FFFFFF;
}

.top_02_in .btn_3 a::after {
background: #FFFFFF;     
}
.mt200 {
    margin-top: 200px;
}
    
/*---トップコンテンツ ---*/
/*--- フッター ---*/

footer {
    background-color: #f5f2e5;
    padding-top: 135px;
    padding-bottom: 105px;
}
.foot_in {
      max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 1620px) {
    .foot_in {
      padding-left: 5%;
        padding-right: 5%;
  
}
    }
.foot_in .foot_b1 {
    width: 35%;
    display: flex;
  align-items: center;
}
.foot_in .foot_b1 h1 {
    width: 100%;
}
.foot_in .foot_b1 img {
    width: 50%;
    height: auto;
}
.foot_in .foot_b2 {
    width: 45%;
}
.foot_in .foot_b2 .category-title {
    padding-left: 0px;
    
}
.foot_in .foot_b2 a {
    font-size: 14px;
     font-family: 'Zen Maru Gothic', sans-serif;
    margin-bottom: 14px;
    font-weight: 500;
}
.mb_0 {
    margin-bottom: 0px !important;
}
.foot_in .foot_b3 {
    width: 20%;
    display: flex;
  justify-content: right;
  align-items: center;
}

.copyright {
    text-align: center;
    display: block;
    clear: both;
      font-family: 'Zen Maru Gothic', sans-serif;
    margin-bottom: 12px;
}

/*---ページトップ ---*/

#page-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
}
#page-top a img {
	height: auto;
	width: 40px;
}
#page-top a:hover img {
	opacity: 0.9;
	filter: alpha(opacity=90);
	-ms-filter: "alpha( opacity=90 )";
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

/*---ページトップ ---*/

/*--- フッター ---*/

/*--- ページ ---*/

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

.head_in2 h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
    z-index: 2;
    padding-top: 120px;
    font-size: 64px;
    color: #FFFFFF;
    font-family: 'Dosis', sans-serif;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-indent: 0.2em;
}

.box_p1 {
    padding-top: 230px;
    padding-bottom: 190px;
    text-align: center;
}
.box_p1 h2 {
    font-size: 40px;
    margin-bottom: 48px;
}
.box_p1 h3 {
    font-size: 20px;
    line-height: 2em;
}

.box_p2 {
    padding-top: 190px;
    padding-bottom: 190px;
  
}
.box_p2:nth-child(2n) {
 background-color: #f5f2e5;
  
}
.box_p3 {
    padding-top: 230px;
    padding-bottom: 190px;
    text-align: center;
    position: relative;
}
.bk_lg {
    position: absolute;
    top:40%;
    right: 35%;
    width: 86px;
    height: 86px;

}
.box_p3 h2 {
    font-size: 40px;
    margin-bottom: 48px;
     -webkit-writing-mode: vertical-rl;
-moz-writing-mode: vertical-rl;
-ms-writing-mode: tb-rl;
-ms-writing-mode: vertical-rl;
writing-mode: vertical-rl;
 display: inline-block;
    white-space: pre;
}
.box_p3 h3 {
    font-size: 20px;
    margin-top: 54px;
    line-height: 2em;
}

.box_p4 {
    padding-top: 190px;
    padding-bottom: 190px;
  
}
.bk_comp {
    background-image: url(../image/1com.jpg);
    background-size: cover;
    background-position: center center;
}
.cbox_33 li {
    width: 33.3333333%;
    text-align: center;
}
.cbox_33 li h5 {
    font-size: 24px;
}
.cbox_33 li h4 {
    margin-top: 88px;
    font-size: 38px;
    line-height: 1.8em;
}
@media (max-width: 1620px) {
    .comp {
      padding-left: 5%;
    padding-right: 5%;
  
}
}
.comp h4 {
    font-size: 24px;
    display: inline;
    border-bottom: 1px solid #333333;    
}

.comp ul {
    margin-top: 20px;
}
.comp ul .left {
    width: 15%;
}
.comp ul .center {
    width: 41%;
    padding-left: 3%;
    padding-right: 3%;
}
.comp ul .right {
    width: 44%;
}
.comp dl {
    font-size: 18px;
    margin-top: 45px;
}
.comp dd {
    padding-left: 0.5em;
}
.comp2 h5 {
    font-size: 24px;
    display: inline-block;
    border-bottom: 1px solid #333333;   
    margin-bottom: 64px;
}
.comp2 ul {
   
}
.comp2 ul li {
    width: 45%;
}
.comp2 dl {
    font-size: 18px;
    
}
.comp2 dt {
    color: #999999;
    
}
.comp2 dd {
   margin-bottom: 45px;
    
}
.map {
    margin-top: 160px;
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
}
.sas_img {
    max-width: 676px;
    margin-left: auto;
    margin-right: auto;
}
.sas_m {
    font-size: 22px;
    display: block;
    padding-left: 112px;
    margin-top: 60px;
}
.sas_m:before {
      
    content: '';
  display: inline-block;
  width: 28px;
  height: 22px;
      background-image: url(../image/3sas.png);
  background-size: contain;
  vertical-align: middle;
}

.box_1280 {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.sas_box li {
    width: 14.2%;
}

/*---YAKENU ---*/

.box_ya1 {
    padding-top: 120px;
    padding-bottom: 180px;
    text-align: center;
    display: block;
    overflow: hidden;
}
.box_ya1 .yakenu {
   width: 320px;
    height: auto;
    
    
}

.box_ya2 {
    background-image: url(../image/yak2.jpg);
    background-size: cover;
    text-align: center;
    padding-top: 188px;
    padding-bottom: 188px;
    display: block;
    overflow: hidden;
    background-position: center top;
}
.box_ya2 h2 {
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -ms-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    display: inline-block;
    text-align: left;
    font-size: 42px;
    line-height: 80px;
    background-image: url(../image/yak3.png);
    background-size: 340px 340px;
    background-position: center center;
    background-repeat: no-repeat;
    padding:40px;
    white-space: pre;
}
.box_ya2 p {
    font-size: 18px;
    line-height: 2em;
    text-align: center;
    margin: 88px;
    display: block;
     overflow: hidden;
}
.ko_midashi {
    font-family: 'Dosis', sans-serif;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 42px;
    letter-spacing: 0.3em;
    text-indent: 0.3em;
}
.spt124 {
    padding-top: 124px;
}
.box_640 {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    
}
.youtube {
     position: relative;
     padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
     height: 0;
     overflow: hidden;
}
 
.youtube iframe {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
}
.box_ya3 {
    text-align: center;
    padding-top: 200px;
    padding-bottom: 188px;
    display: block;
    overflow: hidden;
}
@media (max-width: 1620px) {
    .box_ya3,.box_ya4,.box_ya5,.box_ya6,.box_sb2,.box_sb5,.box_un4,.box_fl,.box_sl2,.rec_box2,.box_news,.col_box {
      padding-left: 5%;
    padding-right: 5%;
  
}
    
}
.yakenu1 {
    margin-bottom: 104px;
}
.yakenu1 .left {
    text-align: left;
    width: 40%;
    padding-right: 3%;
}
.yakenu1 .right {
    text-align: left;
    width: 60%;
    position: relative;
}
.yakenu1 .right img {
    position:absolute;
    bottom: 0;
}
.point {
    font-family: 'Dosis', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #999999;
    letter-spacing: 0.1em;
}
.point_s {
    font-size: 72px;
    padding-left: 15px;
}
.box_ya3 h3 {
    font-size: 28px;
    line-height: 1.6em;
    margin-top: 55px;
}
.box_ya3 p {
    margin-top: 44px;
    font-size: 16.5px;
    line-height: 1.8em;
    margin-bottom: 0px;
}
.yakenu2 {
    margin-top: 190px;
   
}
.yakenu2 .left {
    width: 50%;
    text-align: center;
}
.yakenu2 .left img {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}
.yakenu2 .right {
    text-align: left;
    width: 50%;
  display: flex;
  align-items: center;
}
.yakenu3 {
    margin-top: 220px;
    margin-bottom: 104px;
}
.yakenu3 .left {
    width: 50%;
    text-align: left;
}
.yakenu3 .right {
    text-align:right;
    width: 50%;
    padding-right: 10%;
 
}
.yakenu3 .right img {
    height: 280px;
    width: auto;
}
.neme_m {
    text-align: left;
    padding-right: 24px;
    display: block;
}
.yakenu3 .right ul {
    display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: right;
	justify-content: right;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
    align-items: flex-end;
}
.yakenu4 {
    margin-top: 190px;
   
}
.yakenu4 .left {
    width: 50%;
    padding-right: 5%;
    display: flex;
  align-items: center;
}
.yakenu4 .left img {
    
}
.yakenu4 .right {
    text-align: left;
    width: 50%;
  display: flex;
  align-items: center;
}
.chui_14 {
    margin-top: 42px;
    display: block;
}
.box_ya4 {
    text-align: center;
    padding-top: 120px;
    padding-bottom: 120px;
    display: block;
    overflow: hidden;
    background-color: #f5f2e5;
}
.box_890 {
  max-width: 890px;
    margin-left: auto;
    margin-right: auto;
}
.box_ya4 h3 {
    font-size: 28px;
    margin-bottom: 66px;
}
.box_ya4_ta tr:first-child,.box_ya4_ta tr:last-child {
    border-bottom: 1px solid #333333; 
}
.box_ya4_ta tr {
    border-bottom: 1px solid #FFFFFF; 
}
.box_ya4_ta tr td {
    font-size: 23px;
    line-height: 64px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: left;
    
}
.yakenu_16 {
    font-size: 16px;
    margin-top: 46px;
    display: block;
    overflow: hidden;
    line-height: 50px;
    
}
.yakenu_16:before {
    content: '';
    display: inline-block;
    width: 72px;
    height: 50px;
    background-image: url(../image/yak8.png);
    background-size: contain;
    vertical-align: middle;
    margin-right: 20px;
}
.box_ya5 {
    background-image: url(../image/yak9.jpg);
    background-size: cover;
    text-align: center;
    padding-top: 188px;
    padding-bottom: 188px;
    display: block;
    overflow: hidden;
    background-position: center top;
}
.btn_4 {
    
    font-size: 22px;
    line-height: 22px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    background-color: #000000;
    padding-left: 32px;
    padding-right: 32px;
    padding-top: 5px;
    padding-bottom: 10px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    display: inline-block;
    overflow: hidden;
}

.btn_4 a {
     color: #FFFFFF;
}

.btn_4 a::after {
background: #FFFFFF;     
}
.yakenu50 li {
    width: 35%;
    margin-top: 175px;
    margin-left: auto;
    margin-right: auto;
}
.yakenu50 li h5 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 40px;
}
.yakenu50 li p {
    font-size: 18px;
     margin-top: 0px;
    margin-bottom: 48px;
    display: block;
    text-align: center;
}
.box_ya6 {
    text-align: center;
    padding-top: 120px;
    padding-bottom: 120px;
    display: block;
    overflow: hidden;
}

.bo_line {
     font-size: 28px;
    margin-bottom: 42px !important;
    padding-bottom: 10px;
    display: inline-block;
    border-bottom: 1px solid #333333;
}
.mo18_c {
    font-size: 18px;
    text-align: center;
    line-height: 2em;
     padding-top: 0px;
    padding-bottom: 0px;
}
.yakenu30 li {
    width: 26%;
    text-align: left;
    margin-top: 120px;
    position: relative;
    
}
.yakenu30 li h5 {
    font-size: 22px;
    margin-top: 32px;
}
.yakenu30 li p {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 24px;
}
.chui_14_2 {
    margin-top: 42px;
    display: block;
    margin-bottom: 72px;
}
.lb_absolute {
    position: absolute;
    bottom: 0;
    left: 0;
}
.btn_5 {
    
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
    background-color: #f5f2e5;
    padding-left: 32px;
    padding-right: 32px;
    padding-top: 5px;
    padding-bottom: 10px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    display: inline-block;
    overflow: hidden;
}

.btn_5 a {
     color: #333333;
}

.btn_5 a::after {
background: #333333;     
}
.mt100 {
    margin-top: 100px;
}
.btn_6 {
    
    font-size: 30px;
    line-height: 30px;
    font-weight: 500;
    background-color: #f5f2e5;
    padding-left: 32px;
    padding-right: 32px;
    padding-top: 10px;
    padding-bottom: 15px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    display: inline-block;
    overflow: hidden;
}

.btn_6 a {
     color: #333333;
}

.btn_6 a::after {
background: #333333;     
}



/*---YAKENU ---*/

/*---Shabo ---*/

.box_sb2 {
    background-image: url(../image/sb2.jpg);
    background-size: cover;
    text-align: center;
    padding-top: 188px;
    padding-bottom: 188px;
    display: block;
    overflow: hidden;
    background-position: center top;
}
.box_sb2 h2 {
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -ms-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    display: inline-block;
    text-align: left;
    font-size: 42px;
    line-height: 80px;
    background-image: url(../image/sb3.png);
    background-size: 430px 222px;
    background-position: center center;
    background-repeat: no-repeat;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 100px;
    padding-right: 100px;
    white-space: pre;
}
.box_sb2 p {
    font-size: 18px;
    line-height: 2em;
    text-align: center;
    margin: 88px;
    display: block;
     overflow: hidden;
}
.box_sb2 img {
    max-width: 590px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1620px) {
   .box_sha3 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
  .shabo1 {
    padding-left: 5%;
}
    .shabo2 {
   padding-right: 5%;
}
    .shabo3 {
      padding-left: 5%;
   padding-right: 5%;
}
}
.shabo1 {
    margin-bottom: 104px;
}
.shabo1 .left {
    text-align: left;
    width: 40%;
    padding-right: 3%;
}
.shabo1 .center {
    text-align: left;
    width: 10%;
   
}
.shabo1 .center img {
    margin-top: 24px;
    margin-bottom: 24px;
}
.shabo1 .right {
    text-align: left;
    width: 50%;
    padding-left: 5%;
}
.shabo2 {
    margin-top: 190px;
   
}
.shabo2 .left {
    width: 50%;
    padding-right: 5%;
    position: relative;
}
.shabo2 .left .sb2_img1 {
   position: absolute;
    width: 30%;
    top: 300px;
    right: 100px;
    z-index: 1;
}
.shabo2 .right {
    text-align: left;
    width: 50%;
}
.shabo2 .right ul li {
    width: 30%;
    margin-top: 32px;
}
.shabo2 .right ul .sb_m1 {
    display: block;
    text-align: left;
}
.shabo2 .right ul .sb_m2 {
    display: block;
    text-align: center;
}
.shabo2 .right ul li img {
    margin-top: 20px;
}
.shabo3 {
    margin-top: 220px;
    margin-bottom: 104px;
}
.shabo3 .left {
    width: 40%;
    text-align: left;
    padding-right: 5%;
}
.shabo3 .right {
    text-align:right;
    width: 60%;
}

.shabo3 .right ul li {
    width: 45%;

}
.box_sb5 {
    background-image: url(../image/sb14.jpg);
    background-size: cover;
    text-align: center;
    padding-top: 188px;
    padding-bottom: 188px;
    display: block;
    overflow: hidden;
    background-position: center top;
}
.box_sb5_in {
    margin-top: 88px;
    
}
.btn_7 {
    
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
    background-color: #FFFFFF;
    padding-left: 32px;
    padding-right: 32px;
    padding-top: 5px;
    padding-bottom: 10px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    display: inline-block;
    overflow: hidden;
}

.btn_7 a {
     color: #333333;
}

.btn_7 a::after {
background: #333333;     
}
.img835 {
    width: 835px;
    margin-left: auto;
    margin-right: auto;
    
}
/*---Shabo ---*/

/*---UNIFORM ---*/

.box_un2 {
    background-image: url(../image/un1.jpg);
    background-size: cover;
    text-align: center;
    padding-top: 188px;
    padding-bottom: 188px;
    display: block;
    overflow: hidden;
    background-position: center top;
}
.box_un2 h2 {
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -ms-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    display: inline-block;
    text-align: left;
    font-size: 42px;
    line-height: 80px;
    padding-top: 40px;
    padding-bottom: 40px;
    white-space: pre;
}
.box_un2 p {
    font-size: 18px;
    line-height: 2em;
    text-align: center;
    margin: 88px;
    display: block;
     overflow: hidden;
}
.pad_l5 {
    padding-left: 5%;  
}
.pad_r5 {
    padding-right: 5%;  
}
.un_box1 li {
    margin-top: 60px;
    width: 15%;
    
}
.un_box1 li p {
    font-size: 14px;
    margin-top: 10px;
    text-align: center;
}
.uni_m {
    margin-top: 60px;
    display: block;
    text-align: center;
    margin-bottom: 24px;
   
}
.uni_m_in {
    display: inline-block;
    font-size: 20px;
    padding-bottom: 5px;
    border-bottom: 1px solid #333333;
}
.un_box2 li {
    width: 18%;
    
}
.un_box2 li p {
    font-size: 14px;
    margin-top: 10px;
    text-align: center;
}
.chui_14c {
    margin-top: 20px;
    display: block;
    text-align: center;
}
@media (max-width: 1620px) {
   .un_box3 {
      padding-left: 5%;
   padding-right: 5%;
}
    .pad_0 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}
.un_box3 .left {
    width: 60%;
}
.un_box3 .right {
    width: 40%;
    padding-left: 5%;

}
.un_box3 .left ul li {
    width: 22%;
}
.un_box3 .left ul li img {
border-radius: 20px;
  object-fit: cover;
}
.un_box3 .left ul li p {
    font-size: 18px;
    margin-top: 10px;
    text-align: center;
}
.un_box3 .right h2 {
    font-size: 28px;
    margin-bottom: 32px;
}
.un_box3 .right p {
    font-size: 18px;
    margin: 0;
    line-height: 1.8em;
}
.un_box3 .right .btn_1 {
    margin-top: 80px;
    width: 80px;
    height: auto;
}
.box_un4 {
    background-image: url(../image/un20.png);
    background-size: cover;
    text-align: center;
    padding-top: 188px;
    padding-bottom: 188px;
    display: block;
    overflow: hidden;
    background-position: center top;
}
.box_un4 h2 {
    font-size: 24px;
}
.box_un4 p {
    text-align: center;
    font-size: 18px;
}
.box_un5 {
    margin-top: 92px;
    margin-bottom: 172px;
}
.box_un5 .step {
    width: 14%;
    text-align: center;
}
.box_un5 .step .step_m1 {
    font-size: 20px;
     font-family: 'Dosis', sans-serif;
    font-weight: 600;
}
.box_un5 .step .step_m2 {
     font-family: 'Dosis', sans-serif;
    font-weight: 600;
    font-size: 58px;
    line-height: 72px;
}
.box_un5 .step p {
     text-align: center;
    font-size: 20px;
}
.box_un5 .step .step_m3 {
    
}
.box_un5 .step2 {
    width: 6%;
      display: flex;
  justify-content: center;
  align-items: center;
}
.spt48 {
    margin-top: 48px;
}
/*---UNIFORM ---*/


/*---FLOW ---*/

.box_fl {
    padding-top: 190px;
    padding-bottom: 190px;
  
}
.box_fl:nth-child(2n+1) {
 background-color: #f5f2e5;
  
}
.box_fl h2 {
     font-size: 39px;
    margin-bottom: 150px;
    text-align: center;
}
.box_fl h2 .fl_mm {
     font-size: 24px;
    display: block;
    margin-bottom: 20px;
}
.box_fl h3 {
    font-size: 24px;
    text-align: center;
}
.f_num {
   width: 5%;
    text-align: center;

}
.f_num_in {
    font-size: 42px;
    line-height: 62px;
    font-family: 'Dosis', sans-serif;
    font-weight: 600;
    background-color: #FFFFFF;
    display: block;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}
.f_in1 {
    width: 15%; 
     padding-left: 1%;
}
.f_ya {
    width: 3%; 
    margin-left: 1%;
    margin-right: 1%;
    padding-top: 15px;

}
.f_in2 {
    width: 25%; 
     padding-left: 1%;
}
.f_in2 .left {
    font-size: 18px;
    text-align: center;
    width: 55%;
    padding-top: 28px;
    text-decoration: underline;    
}
.f_in2 .right {
     font-size: 18px;
    text-align: center;
    background-color: #FFFFFF;
    width: 40%;
    line-height:82px;
}
.f_in3 {
    width: 16.25%; 
     padding-left: 1%;
}
.flow h5 {
    font-size: 22px;
    line-height:62px;
}
.lh_15 {
    line-height: 1.5em !important;
}
.flow .fl_om1 {
    margin-top: 20px;
    font-size: 18px;
    line-height: 32px;
    display: inline-block;
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
    border-right: 1px solid #333333;
    padding-right: 18px;
    border-top-right-radius: 18px;
    border-bottom-right-radius: 18px;
}
.flow .fl_om2 {
    margin-top: 20px;
    font-size: 18px;
    line-height: 32px;
    display: inline-block;
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
    border-left: 1px solid #333333;
    padding-left: 18px;
    border-top-left-radius: 18px;
    border-bottom-left-radius: 18px;
}
.flow .fl_m3 {
    font-size: 18px;
    display: block;
    text-align: center;
    line-height: 32px;
    margin-top: 32px;
}
.flow .fl_m4 {
    font-size: 18px;
     display: block;
    text-align: center;
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
    margin-left: 2%;
    margin-right: 2%;
}
.flow_yy {
    padding-left: 2%;
    padding-bottom: 14px;
}
.flow2 {
    margin-top: 150px;
}
.flow2 .fl25_1 {
    width: 25%;
    padding-right: 3%;
}
.flow2 .fl25_2 {
    width: 25%;
    padding-right: 3%;
    padding-left: 3%;
}
.flow2 .fl50 {
    width: 50%;
}
.flow2 .fl50 .left {
    width: 60%;
    padding-right: 5%;
}
.flow2 .fl50 .right {
    width: 40%;
}
.flow2 h5 {
    font-size: 22px;
}
.flow2 p {
    font-size: 18px;
    margin-top: 30px;
}
.bo_lt {
    border-left: 1px solid #333333;
}
.spt24 {
    margin-top: 24px;
}
/*---FLOW ---*/
/*---SALES ---*/

.box_sl {
    text-align: center;
    padding-top: 220px;
    padding-bottom: 220px;
    display: block;
    overflow: hidden;
    background-color: #f5f2e5;
}
.box_sl h3 {
    font-size: 39px;
    
    
}
.sl_box li {
    margin-top: 120px;
    width: 50%;
    text-align: center;
}
.sl_box h5 {
    font-size: 53px;
   font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
}
.sl_mm {
    font-family: 'Klee One', cursive;
     font-weight: 400;
    font-size: 30px;
}
.sl_mm2 {
    margin-top: 80px;
    font-size: 18px;
}
.sl_box h6 {
    font-size: 38px;
    line-height: 38px;
    margin-bottom: 32px;
}

.box_sl2 {
    text-align: center;
    padding-top: 220px;
    padding-bottom: 220px;
    display: block;
    overflow: hidden;
}
.box_sl2 h3 {
    font-size: 24px;
    
       
}
.sl_box2 li {
    margin-top: 180px;
    text-align: center;
width: 40%;
}
.sl_box2 li h5 {
 font-size: 20px;
    font-weight: 600;
}
.sl_box2_in li {
    margin-top: 54px;
    text-align: center;
width: 45%;
}
.sl_box2_in li p {
    margin-top: 12px;
    text-align: center;
    font-size: 16px;
}
/*---SALES ---*/
/*---FAQ ---*/
.box_fa {
    text-align: center;
    padding-top: 220px;
    padding-bottom: 220px;
    display: block;
    overflow: hidden;
   
}
.box_fa h3 {
    font-size: 39px;
    
    
}
.box_fa dl {
    font-size: 22px;
    margin-top: 120px;
    text-align: left;
}
.box_fa dl dt {
    
}
.box_fa dl dd {
    margin-top: 48px;
}
.box_fa dl dt:before {
content:"Q :";
color:#999999;
font-size: 36px;
font-family: 'Zen Maru Gothic', sans-serif;
font-weight: 500;
}
.box_fa dl dd:before {
content:"A :";
color:#999999;
font-size: 36px;
font-family: 'Zen Maru Gothic', sans-serif;
font-weight: 500;
}
/*---FAQ ---*/
/*---CATALOG ---*/
.box_ca {
    text-align: center;
    padding-top: 220px;
    padding-bottom: 220px;
    display: block;
    overflow: hidden;
   
}
.ca_box li {
    width: 50%;
    padding-left: 5%;
    padding-right: 5%;
    text-align: center;
    
}
.ca_box li h4 img {
    height: 56px;
    width: auto;
    margin-bottom: 40px;

}
.ca_box li p {
    font-size: 20px;
    margin-top: 40px;
    margin-bottom: 70px;
    text-align: center;
    line-height: 1.8em;
}
.btn_7 {
    
    font-size: 22px;
    line-height: 22px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    background-color: #f5f2e5;
    padding-left: 52px;
    padding-right: 52px;
    padding-top: 10px;
    padding-bottom: 15px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    display: inline-block;
    overflow: hidden;
}

.btn_7 a {
     color: #333333;
}

.btn_7 a::after {
background: #333333;     
}
.box_ca h3 {
    font-size: 24px;
}
.ca_mm {
    margin-top: 72px;
    font-size: 18px;
    display: block;
    text-align: center;
}
.box_520 {
  max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}
/*---CATALOG ---*/
/*---CATALOG_DL ---*/
.box_cadl {
    text-align: center;
    padding-top: 220px;
    padding-bottom: 220px;
    display: block;
    overflow: hidden;
   
}
/*---CATALOG_DL ---*/
/*---フォーム---*/


input[type="text"], input[type="email"], input[type="tel"], input[type="url"] {
		border: 0;
		padding: 20px !important;
		font-size: 16px;
		border: solid 1px #333333 !important;
		margin: 0;
		width: 100%;
}
textarea {
		width: 100%;
		height: 13em;
		font-size: 16px;
		border: 1px solid #333333 !important;
    padding: 20px !important;
}
input[type="submit"] {
    display: inline;
    text-align: center;
    width: 30%;
    margin-right: auto;
    margin-left: auto;
    font-size: 20px;
    line-height: 60px;
    margin-top: 54px;
    border: 1px solid #333333 !important;
    background-color: #FFFFFF;
    font-family: 'Klee One', cursive ;
}
input[type="submit"]:hover {
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	background-color: #333;
	color: #FFF;
}
.wpcf7-form .wpcf7-select, select 
    {
	background-color: #ffffff;
	width: 100%;
	border: 1px solid #CCCCCC;
	font-size: 16px;
	padding: 10px;
}
.wpcf7-form-control-wrap {
		margin: 0;
}


.wpcf7-list-item-label {
	margin: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
}

.box_f {
	margin-top: 64px;
	display: block;
	overflow: hidden;
	clear: both;
	width: 100%;
	
}

.box_f_user dl {
	display: block;
	clear: both;
	overflow: hidden;
	width: 100%;
	padding-top: 54px;
	padding-bottom: 54px;
	
}
.box_f_user dl dt {
	text-align: left;
	width: 100%;
	display: block;
	overflow: hidden;
	font-size: 20px;
	line-height: 45px;
}
.box_f_user dl dd {
	display: block;
	width: 100%;
	overflow: hidden;
	text-align: left;
	font-size: 20px;
	line-height: 45px;
}

.wpcf7-form-control-wrap {
	clear: both;
	display: block;
}



.wpcf7 input[type=checkbox] {
    display:none;
}
.wpcf7-list-item-label{
  position:relative;
  padding:5px 30px;
  cursor:pointer;
}
.wpcf7-list-item-label:before{
   width:18px; /* チェックボックスの幅 */
  height:18px; /* チェックボックスの高さ */
  left:5px; 
  border:1px solid #333333; /* チェックボックスの枠 */
  margin-top:-8px;
}
.wpcf7-list-item-label:after,
.wpcf7-list-item-label:before{
  position:absolute;
  content:"";
  top:50%
}
.wpcf7-list-item-label::after {
  position: absolute;
  width: 7px;
  height: 14px;
  top: 50%;
  left: 10px;
  border-right: 2px solid #333333; /* チェックマークの色 */
  border-bottom: 3px solid #333333; /* チェックマークの色 */
  content: '';
  margin-top: -7px;
  opacity: 0;
  transform: rotate(45deg);
}
.wpcf7 input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}


/*---フォーム---*/
/*---RECRUIT---*/
.box_re {
    text-align: center;
    padding-top: 220px;
    padding-bottom: 80px;
    
    display: block;
    overflow: hidden;   
}
.box_re h2 {
    font-size: 39px;
    line-height: 1.8em;
    margin-bottom: 55px;
    display: block;
    
}
.box_re h3 {
    font-size: 20px;
    line-height: 2em;
}

.box_re .rec_box1 {
    margin-top: 200px;
    height: 795px;
    position: relative;
    display: block;
    overflow: hidden;
}
.box_re .rec_box1 .left {
    width: 55%;
    float: right;
}
.box_re .rec_box1 .right {
    position: absolute;
     width: 55%;
    z-index: 1;
    left: 0;
    top:220px;
}
.box_re .rec_box2 {
    margin-top: 200px;
    text-align: left;
}
.box_re .rec_box2 h4 {
    font-size: 24px;
    display: inline-block;
    margin-bottom: 25px;
}
.box_re .rec_box2 li {
    width: 45%;
}
.box_re .rec_box2 li h5 {
  margin-top: 45px;
    font-size: 18px;
   text-indent: -0.5em;
}
.box_re .rec_box2 li p {
  font-size: 18px;
}
/*---RECRUIT---*/
/*---INFO---*/

.info_box {
    margin-top: 200px;
    max-width: 890px;
    background-color: #f5f2e5;
    padding: 60px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    border-radius: 30px;
}
.info_box h4 {
    font-size: 24px;
    margin-bottom: 0;
}
.info_box h5 {
    margin-top: 36px;
    font-size: 20px;
}
.info_box p {
    margin-top: 0;
    line-height: 1.8em;
     font-size: 24px;
    margin-bottom: 66px;
    text-align: center;
}
.info_box ul li {
    width: 50%;
    text-align: center;
     font-size: 24px;
}
.btn_10 a {
    display: inline-block;
    padding-top: 10px;
    padding-right: 24px;
    padding-left: 24px;
    padding-bottom: 10px;
    font-size: 20px;
    color: #333333;
    border: 1px solid #333333;
    margin-top: 88px;
}
.btn_10 a:hover {
     color: #FFFFFF;
    background-color: #333333;
}
/*---INFO---*/

/*---NEWS---*/
.news_box {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.news_box dl {
    text-align: left;
    font-size: 18px;
}
.news_box dt {
    margin-top: 88px;
    font-size: 16px;
    color: #999999;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
}
.news_box dd {
    display: block;
}
.news_box2 {
    margin-top: 125px;
    text-align: center;
}
.head_news {
    margin-top: 200px;
}
.head_news li {
    width: 50%;
      display: flex;
  align-items: center;
    padding-left: 5%;
    padding-right: 5%;
}
.head_news li img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    font-family: 'object-fit: cover;';
    border-radius: 70px;
}
.head_news .day {
    color: #999999;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
    text-align: left;
    font-size: 24px;
}
.head_news h2 {
    display: block;
    text-align: left;
    font-size: 27px;
    line-height: 1.8em;
}
.box_news {
        text-align: center;
    padding-top: 120px;
    padding-bottom: 120px;
    display: block;
    overflow: hidden;
    padding-left: 5%;
    padding-right: 5%;
}
.kiji_1 {
    text-align: left;

}
.kiji_1 p {
    display: block;
    margin-bottom: 32px;
    margin-top: 0px;
    font-size: 18px;
     line-height: 2.2em;
}
/*--- コラム ---*/
.co_ct_box li {
    margin-left: 1%;
    margin-right: 1%;
    font-size: 17px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 10px;
    background-color: #EEEEEE;
}
.c_ct1 {
    background-color: #e3d3d9 !important;
}
.c_ct2 {
    background-color: #d2dfce !important;
}
.c_ct3 {
    background-color: #ebdfc9 !important;
}
.c_ct4 {
    background-color: #d8e3e8 !important;
}
.col_box li img {
    width: 100%;
    height: 265px;
    object-fit: cover;
    font-family: 'object-fit: cover;';
    border-radius: 30px;
}
.col_box li {
    width: 26%;
    margin-top: 100px;
    text-align: left;
}
.col_box::after{
  content:"";
  display: block;
  width:26%;
}
.col_box li i {
    font-size: 16px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 10px;
    font-style: normal;
    margin-top: 33px;
    display: inline-block;
}
.col_box li h4 {
    font-size: 18px;
    margin-top: 33px;
}
.col_box li a:hover::after {
  transform: scale(0, 0);
}
.head_news li i {
    font-size: 16px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 10px;
    font-style: normal;
    margin-top: 33px;
    display: inline-block;
    margin-bottom: 18px;
}

/*---RECRUIT---*/
.box_ud {
    text-align: center;
    padding-top: 120px;
    padding-bottom: 120px;
    
    display: block;
    overflow: hidden;   
}
.box_ud h2 {
    font-size: 39px;
    line-height: 1.8em;
    margin-bottom: 55px;
    display: block;
    
}
.box_ud h3 {
    font-size: 20px;
    line-height: 2em;
}
.ud_box {
	padding-left: 5%;
	padding-right: 5%;
}
.ud_box li {
	width: 21%;
	margin-bottom: 64px;
}


.ud_box li img {
border-radius: 20px;
  object-fit: cover;
}
.ud_box li p {
    font-size: 18px;
    margin-top: 10px;
    text-align: center;
}
.ud_box::before{
  content:"";
  display: block;
  width:21%;
  order:1;
}
.ud_box::after{
  content:"";
  display: block;
  width:21%;
}
/*--- ページ ---*/







.kiji_1 h1 {
	font-size: 27px !important;
	
	margin-bottom: 32px !important;
	border-bottom-width: 3px !important;
	border-bottom-style: solid !important;
	border-bottom-color: #333333 !important;
	text-justify: inter-ideograph !important;
	text-align: justify !important;
	display: block;
	overflow: hidden;
    margin-top: 64px;
    padding-bottom: 0.3em;
}
.kiji_1 h2 {
	font-size: 22px !important;
	margin-bottom: 32px !important;
	text-align: left !important;
	border-bottom-width: 5px !important;
	border-bottom-style: double !important;
	border-bottom-color: #666666 !important;
	letter-spacing: 0em !important;
	text-indent: 0px !important;
	text-justify: inter-ideograph !important;
	text-align: justify !important;
	background-image: none !important;
	padding-bottom: 5px;
	display: block;
	overflow: hidden;
    margin-top: 64px;
    padding-bottom: 0.3em;
}
.kiji_1 h3 {
	font-size: 20px !important;
	margin-bottom: 32px !important;
	padding: 0.5em !important;/*左線（実線 太さ 色）*/
	border-top-width: 1px !important;
	border-right-width: 1px !important;
	border-bottom-width: 1px !important;
	border-left-width: 5px !important;
	border-top-style: solid !important;
	border-right-style: solid !important;
	border-bottom-style: solid !important;
	border-left-style: solid !important;
	border-top-color: #999999 !important;
	border-right-color: #999999 !important;
	border-bottom-color: #999999 !important;
	border-left-color: #999999 !important;
	display: block !important;
	width: 100% !important;
	text-justify: inter-ideograph !important;
	text-align: justify !important;
    margin-top: 64px;
}
.kiji_1 h4 {
	font-size: 20px !important;
	margin-bottom: 32px;
	position: relative;
	padding: 0.6em;
	background-color: #D2D2D2;
	text-justify: inter-ideograph;
	text-align: justify;
	display: block;
    margin-top: 64px;
}
.kiji_1 h4:after {
	position: absolute;
	content: '';
	top: 100%;
	left: 30px;
	width: 0;
	height: 0;
	border-top-width: 15px;
	border-right-width: 15px;
	border-bottom-width: 15px;
	border-left-width: 15px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #D2D2D2;
	border-right-color: #FFF;
	border-bottom-color: #FFF;
	border-left-color: #FFF;
    
}
.kiji_1 h5 {
	font-size: 18px !important;
	margin-bottom: 32px;
	border: 1px dashed #999999;
	text-justify: inter-ideograph;
	text-align: justify;
	display: block;
	padding-top: 0.2em;
	padding-right: 0.5em;
	padding-bottom: 0.2em;
	padding-left: 0.5em;
    margin-top: 64px;
}
.kiji_1 h6 {
	position: relative;
	font-size: 18px !important;
	margin-bottom: 32px;
	text-justify: inter-ideograph;
	text-align: justify;
	display: block;
    margin-top: 64px;
    padding-bottom: 0.2em;
}
.kiji_1 h6:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 7px;
	background: -webkit-repeating-linear-gradient(-45deg, #DDDDDD, #DDDDDD 2px, #fff 2px, #fff 4px);
	background: repeating-linear-gradient(-45deg, #DDDDDD, #DDDDDD 2px, #fff 2px, #fff 4px);
}
.kiji_1 h1:first-child,
.kiji_1 h2:first-child,
.kiji_1 h3:first-child,
.kiji_1 h4:first-child,
.kiji_1 h5:first-child,
.kiji_1 h6:first-child {
	margin-top: 32px;;
}
  a[href^="tel:"]{
    pointer-events: none;
  }
.kiji_1 a {
	text-decoration: underline;
}

.wp-pagenavi a, .wp-pagenavi span {
    font-size: 20px;
}

.mt50{
	margin-top: 50px;
	display: block;
}