@charset "utf-8";
/* custom */
:root{
  --maingradient: linear-gradient(to right, #4BCE1D, #E5E966);
}


/* reset */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
img{
	vertical-align: bottom;
}
a img {
  border: none;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a{
	text-decoration:none;
}
a:hover{
  opacity: 0.8;
}
* {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
hr{
	border-left:none;
	border-right:none;
	border-top:none;
	border-bottom:solid 1px #CCC;
}

.pc_none{
	display:none !important;
}

.fb{
	font-weight:bold;
}

.aligncenter{ text-align:center !important;}
.alignleft{ text-align:left !important;}
.alignright{ text-align:right !important;}

.mt00{margin-top:0 !important;}
.mt05{margin-top:5px !important;}
.mt10{margin-top:10px !important;}
.mt15{margin-top:15px !important;}
.mt20{margin-top:20px !important;}
.mt25{margin-top:25px !important;}
.mt30{margin-top:30px !important;}
.mt35{margin-top:35px !important;}
.mt40{margin-top:40px !important;}
.mt45{margin-top:45px !important;}
.mt50{margin-top:50px !important;}
.mt55{margin-top:55px !important;}
.mt60{margin-top:60px !important;}
.mt65{margin-top:65px !important;}
.mt70{margin-top:70px !important;}

.mb00{margin-bottom:0 !important;}
.mb05{margin-bottom:5px !important;}
.mb10{margin-bottom:10px !important;}
.mb15{margin-bottom:15px !important;}
.mb20{margin-bottom:20px !important;}
.mb25{margin-bottom:25px !important;}
.mb30{margin-bottom:30px !important;}
.mb35{margin-bottom:35px !important;}
.mb40{margin-bottom:40px !important;}
.mb45{margin-bottom:45px !important;}
.mb50{margin-bottom:50px !important;}
.mb55{margin-bottom:55px !important;}
.mb60{margin-bottom:60px !important;}
.mb65{margin-bottom:65px !important;}
.mb70{margin-bottom:70px !important;}

.mr00{margin-right:0 !important;}
.mr05{margin-right:5px !important;}
.mr10{margin-right:10px !important;}
.mr15{margin-right:15px !important;}
.mr20{margin-right:20px !important;}
.mr25{margin-right:25px !important;}
.mr30{margin-right:30px !important;}
.mr35{margin-right:35px !important;}
.mr40{margin-right:40px !important;}
.mr45{margin-right:45px !important;}
.mr50{margin-right:50px !important;}
.mr55{margin-right:55px !important;}
.mr60{margin-right:60px !important;}
.mr65{margin-right:65px !important;}
.mr70{margin-right:70px !important;}


.wrap{
  overflow: hidden;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  color: #232323;
}

main{
  padding-top: 75px;
}

/* header */
.header{
  width: 100%;
  background-color: #fff;
  position: fixed;
  top: 0;
  z-index: 999;
  box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.15);
}
.header.active{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
.header .inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .inner .left{
  padding-left: 30px;
}

.header .inner .right ul{
  display: flex;
  align-items: center;
}
.header .inner .right ul li{
  font-size: 17px;
  font-weight: 700;
}
.header .inner .right ul li + li{
  margin-left: 40px;
}
.header .inner .right ul li a{
  color: #444;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .inner .right ul li.header_contact{
  background: var(--maingradient);
}
.header .inner .right ul li.header_contact a{
  color: #fff;
  padding: 26px 40px;
  font-family: "Noto Serif JP", serif;
}
.header .inner .right ul li.header_contact a span{
  position: relative;
  padding-left: 32px;
}
.header .inner .right ul li.header_contact a span::before{
  content:'';
  position: absolute;
  left: 0;
  top:50%;
  transform: translateY(-50%);
  width: 23px;
  height: 15px;
  background-image: url("./images/icon_contact.svg");
  background-size: cover;
}

.hamburger_bg{
  display: none;
}

/*　ハンバーガーメニューボタン　*/
.hamburger {
  display: block;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
  position: relative;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left: 6px;
  background : #fff;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}

/* スマホメニューを開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  background :#fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  background :#fff;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

/* メニュー背景　*/
nav.globalMenuSp {
  position: fixed;
  z-index : 2;
  top  : 68px;
  left : 0;
  color: #fff;
  background: #fff;
  text-align: center;
  width: 100%;
  height: calc(100vh - 68px);
  transform: translateX(100%);
  transition: all 0.6s;
}

nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: .4s all;
  border-top:solid 1px #ddd;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}
nav.globalMenuSp ul li a {
  display: block;
  color: #232323;
  padding: 1em 0;
  text-decoration :none;
}
nav.globalMenuSp ul li.header_contact a{
  color: #fff;
  background: var(--maingradient);
}

/* クリックでjQueryで追加・削除 */
nav.globalMenuSp.active {
  opacity: 100;
  display: block;
   transform: translateX(0%);
}

@media screen and (max-width: 1080px) {
  main{
    padding-top: 68px;
  }
  .header .inner .right ul li{
    font-size: 16px;
  }
  .header .inner .right ul li + li{
    margin-left: 20px;
  }
  .header .inner .right ul li.header_contact a{
    padding: 26px 20px;
  }
}

@media screen and (max-width: 1020px) {
  .header .inner .right{
    display: none;
  }
  .hamburger_bg{
    display:flex;
    justify-content: center;
    align-items: center;
    background: var(--maingradient);
    height: 68px;
    width: 68px;
  }
}

/* top */

.mv{
  width: 100%;
  height: 850px;
  /*padding-top: 46.88%;*/
  background-image: url("./images/mv_bg.jpg");
  background-size: cover;
  position: relative;
}
.mv_ttl{
  position: absolute;
  left: 7.8%;
  bottom: 100px;
  font-family: "Noto Serif JP", sans-serif;
}
.mv_ttl p:nth-child(1),
.mv_ttl p:nth-child(2){
  font-size: 39px;
  font-weight: 700;
  width: fit-content;
  padding: 20px 22px;
  background-color: #fff;
  line-height: 1;
}
.mv_ttl p + p{
  margin-top: 8px;
}



.top_greeting{
  background: var(--maingradient);
  padding: 80px 20px;
  font-family: "Noto Serif JP", sans-serif;
}
.top_greeting .inner{
  max-width: 1200px;
  margin: 0 auto;
}
.top_greeting .inner .ttl{
  color: #fff;
  font-size: 27px;
  font-weight: 700;
  position: relative;
}
.top_greeting .inner .ttl span{
  font-size: 13px;
  margin-left: 10px;
  font-weight: 500;
}
.top_greeting .inner p{
  font-size: 16px;
  color: #fff;
  line-height: 1.6;
  margin-top: 30px;
}
.top_greeting .flex .txt{
}


.top_news{
  padding: 80px 20px;
  background-color: #ECF9E1;
}
.top_news .inner{
  max-width: 1200px;
  margin: 0 auto;
}
.top_news .flex{
  display: flex;
  gap:40px;
}
.top_news .flex h2{
  font-size: 25px;
  font-weight: 700;
  padding-bottom: 25px;
  position: relative;
  font-family: "Noto Serif JP", sans-serif;
}
.top_news .flex h2::after{
  content:"";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 40px;
  background-color: #000;
}

.top_news .flex ul{
  display: flex;
  justify-content: center;
  gap:14px;
}
.top_news .flex ul li span{
  display: block;
  padding: 6px 15px;
  background-color: #fff;
  color: #5BB411;
  border: solid 1px #5BB411;
  border-radius: 50vh;
  cursor: pointer;
}
.top_news .flex ul li.current span{
  background: var(--maingradient);
  color: #fff;
}
.top_news .more{
  padding: 20px 60px;
  background: var(--maingradient);
  color: #fff;
  border-radius: 50vh;
  border: none;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin: 60px auto 0;
}
.top_news .more::after{
  content:"";
  width: 4px;
  height: 4px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  right: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  position: absolute;
}

.top_news_list{
  display: none;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}
.top_news_list.active{
  display: flex;
}
.top_news_list::after{
  content: "";
  width: 320px;
  display: block;
}
.top_news_list a{
  width: 320px;
  display: block;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, .12);
}
.top_news_list a img{
  max-width: 100%;
}

.top_news_list a .txt{
  padding: 25px;
}
.top_news_list a .txt .flex{
  justify-content: space-between;
}
.top_news_list a .txt .flex .date{
  font-size: 15px;
  font-weight: 500;
  color: #AEAEAE;
}
.top_news_list a .txt h3{
  font-size: 16px;
  font-weight: 700;
  margin-top: 10px;
  color: #232323;
}

.top_bnr{
  padding: 80px 20px;
}
.top_bnr .inner{
  max-width: 1200px;
  margin: 0 auto;
}
.top_bnr .list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap:40px 60px;
}

.top_bnr .list img{
  max-width: 100%;
}

.contact-info{
  background: var(--maingradient);
  padding: 80px 20px;
}
.contact-info .inner{
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.contact-info .inner .ttl{
  font-size: 27px;
  font-weight: 700;
  font-family: "Noto Serif JP", sans-serif;
  text-align: center;
  color: #fff;
}
.contact-info .inner p{
  color: #fff;
  margin-top: 10px;
}
.contact-info .inner .link{
  color: #fff;
  width: 450px;
  max-width: 100%;
  height: 110px;
  border: solid 2px #fff;
  font-size: 18px;
  font-family: "Noto Serif JP", sans-serif;
  display: flex;
  align-items: center;
  padding-left: 30px;
  position: relative;
  margin-top: 30px;
}

.contact-info .inner .link::after{
  content: '';
  width: 8px;
  height: 8px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: rotate(45deg) translateY(-50%);
}


/* footer */

.footer{
  padding: 40px 20px;
}
.footer .inner{
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.footer .inner .address{
  font-size: 13px;
  margin-top: 10px;
}
.footer .inner .footer_menu{
  display: flex;
}
.footer .inner .footer_menu li a{
  display: block;
  color: #232323;
}
.footer .inner .footer_menu li + li{
  margin-left: 20px;
}
.footer .inner .footer_privacy{
  display: block;
  width: fit-content;
  margin-top: 10px;
  margin-left: auto;
  text-align: right;
  color: #232323;
  font-size: 13px;
}
.copyright{
  text-align: right;
  max-width: 1200px;
  margin: 16px auto 0;
  font-size: 11px;
  font-weight: 300;
}


/* page */
.pankuzu{
  padding: 10px 40px;
  background-color: #F6F6F6;
}
.pankuzu ul{
  display: flex;
}
.pankuzu ul li{
  font-size: 13px;
  position: relative;
}
.pankuzu ul li a{
  color: #828282;
}
.pankuzu ul li + li{
  padding-left: 16px;
  margin-left: 16px;
}
.pankuzu ul li + li:before{
  content: "〉";
  position: absolute;
  left: 0;
  top: 0;
  color: #828282;
}

.maincontent{
  padding: 100px 0 0;
}
.maincontent_0{
  padding: 0;
}

.content_blue{
  padding: 80px 20px;
  background-color: #EDF8FF;
}
.content_blue .inner{
  max-width: 1000px;
  margin: 0 auto;
}
.page_ttl{
  font-size: 31px;
  font-weight: 700;
  text-align: center;
  position: relative;
  padding: 50px 20px;
  background: var(--maingradient);
  color: #fff;
  margin-bottom: 70px;
  font-family: "Noto Serif JP", serif;
}
.about{
  padding: 0 20px;
}
.about .inner{
  max-width: 1200px;
  margin: 0 auto;
}
.about .inner .ttl{
  font-size:28px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  padding-left: 20px;
  border-left: 10px solid #5BB411;
}
.about .inner .ttl + p{
  margin-top: 40px;
}
.about .inner .representative{
  text-align: right;
  margin-top: 40px;
}

.company{
  padding:80px 20px;
  background-color: #F0F6BE;
  margin-top: 80px;
}
.company .inner{
  max-width: 1200px;
  margin: 0 auto;
}
.company .inner .ttl{
  font-size:28px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  padding-left: 20px;
  border-left: 10px solid #5BB411;
}
.company table{
  width: 100%;
  margin-top: 40px;
}
.company table th,
.company table td{
  padding: 20px;
  font-size: 15px;
}
.company table tr:first-child th{
  border-top:solid 1px #5BB411;
}
.company table tr:last-child th{
  border-bottom:solid 1px #5BB411;
}
.company table th{
  background-color: #5BB411;
  color: #fff;
  text-align: left;
  border-bottom: solid 1px #fff;
}
.company table td{
  border-top: solid 1px #C4C4C4;
  border-right: solid 1px #C4C4C4;
  border-bottom: solid 1px #C4C4C4;
  background-color: #fff;
}
.company table a{
  color: #fff;
  background-color: #5BB411;
  padding: 4px 8px;
  display: inline-block;
  margin-left: 10px;
}

.policy{
  padding: 0 20px 80px;
}
.policy .inner{
  max-width: 1200px;
  margin: 0 auto;
}

.policy .box + .box{
  margin-top: 60px;
}

.policy .inner .ttl{
  font-size:24px;
  font-family: "Noto Serif JP", serif;
  padding-left: 20px;
  border-left: 10px solid #5BB411;
}
.policy .ttl + p{
  margin-top: 20px;
}

.policy .box p{
  font-size: 16px;
}
.policy .box ul{
  margin-top: 30px;
  list-style-position: inside;
  list-style-type: disc;
}
.policy .box ul li{
  padding-left: 20px;
}
.contact{
  padding: 0 20px 80px;
}
.contact .inner{
  max-width: 1200px;
  margin: 0 auto;
}
.contact_form{
  width: 100%;
}
.contact_form th,
.contact_form td{
  padding: 10px 0;
}
.contact_form th{
  width: 260px;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  vertical-align:middle;
}
.contact_form th .required{
  display: inline-block;
  margin-left: 10px;
  color: #fff;
  padding: 4px 8px;
  background-color: #FF4038;
  font-size: 14px;
}
.contact_form th.txttop{
  padding-top: 20px;
  vertical-align: top;
}
.contact_form td input{
  width: 100%;
  font-size: 18px;
  padding: 10px 4px;
  border: solid 1px #B4B4B4;
}
.contact_form td input[type='file']{
  padding: 0;
  border:none;
  font-size: 16px;
}
.contact_form td textarea{
  width: 100%;
  resize: vertical;
  height: 200px;
  border: solid 1px #B4B4B4;
  padding: 10px 4px;
  font-size: 18px;
}
.contact_form .caution{
  margin-top: 6px;
}
.contact .wpcf7-list-item{
  margin-left: 0;
}

.contact .consent{
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin-top: 40px;
}
.contact .consent a{
  color: #0019FF;
  text-decoration: underline;
  margin-left: 4px;
}
.contact .consent input[type="checkbox"] {
  transform: scale(1.5);
}
.contact .submit{
  margin: 40px auto 0;
  width: fit-content;
  position: relative;
}
.contact .submit::after{
  content:"";
  width: 4px;
  height: 4px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  right: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  position: absolute;
}
.contact .submit input{
  padding: 20px 60px;
  background-color: #5BB411;
  color: #fff;
  border-radius: 50vh;
  border: none;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
}
.contact .submit input:disabled{
  background-color: #ccc;
}
/* contactform7 spinner none */
.contact .wpcf7-spinner {display: none;}

.news .inner{
  max-width: 1200px;
  margin: 0 auto;
}
.news .cat_list{
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}
.news .cat_list li + li{
  margin-left: 20px;
}
.news .cat_list li a{
  display: block;
  padding: 6px 15px;
  background-color: #fff;
  color: #5BB411;
  border: solid 1px #5BB411;
  border-radius: 50vh;
}
.news .cat_list li.current a{
  background-color: #5BB411;
  color: #fff;
}

.news .news_list{
  margin-top: -40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.news .news_list::after{
  content: "";
  width: 320px;
  display: block;
}
.news .news_list a{
  width: 320px;
  display: block;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, .12);
  margin-top: 40px;
}
.news .news_list a img{
  max-width: 100%;
}

.news .news_list a .txt{
  padding: 25px;
}
.news .news_list a .txt .flex{
  justify-content: space-between;
}
.news .news_list a .txt .flex .date{
  font-size: 15px;
  font-weight: 500;
  color: #AEAEAE;
}
.news .news_list a .txt .flex .cat{
  font-size: 15px;
  font-weight: 500;
  color: #5BB411;
}
.news .news_list a .txt h3{
  font-size: 16px;
  font-weight: 700;
  margin-top: 10px;
  color: #232323;
}

.pagenation{
  width: fit-content;
  margin: 60px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.pagenation > * + *{
  margin-left: 10px;
}
.pagenation a{
  color: #232323;
}
.pagenation span{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50vh;
  color: #fff;
  background: linear-gradient(90deg, rgba(0,25,255,1) 0%, rgba(0,159,255,1) 100%);
}

.single{
  padding: 80px 20px;
}
.single .inner{
  max-width: 1200px;
  margin: 0 auto;
}
.single .inner .flex .date{
  font-size: 15px;
  font-weight: 500;
  color: #AEAEAE;
}
.single .inner .flex .cat{
  font-size: 15px;
  font-weight: 500;
}
.single .inner .ttl{
  margin-top: 20px;
  font-size: 25px;
  font-weight: 700;
}
.single .inner .main_area{
  margin-top: 30px;
  line-height: 1.6;
}
.single .inner .main_area img{
  max-width: 100%;
}
.single .inner .main_area h1{font-size: 2em; font-weight: 700;}
.single .inner .main_area h2{font-size: 1.7em; font-weight: 700;}
.single .inner .main_area h3{font-size: 1.5em; font-weight: 700;}
.single .inner .main_area h4{font-size: 1.2em; font-weight: 700;}
.single .inner .main_area a{}

.single .return{
  margin: 40px auto 0;
  max-width: 1200px;
  padding-top: 40px;
  border-top: solid 1px #aaa;
}
.thanks .return{
  margin: 40px auto 0;
  max-width: 1000px;
}
.single .return a,
.thanks .return a{
  padding: 10px 60px;
    background-color: #5BB411;
    color: #fff;
    border-radius: 50vh;
    border: none;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin: 0 auto;
}
.single .return a::after,
.thanks .return a::after{
    content: "";
    width: 4px;
    height: 4px;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    right: 15px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    position: absolute;
}

/* membership */

.membership ul{
  margin-top: 40px;
}
.membership ul li{
  font-size: 16px;
  text-indent: -1.8em;
  padding-left: 1.8em;
}
.membership ul li + li{
  margin-top: 6px;
}
.membership .links{
  display: flex;
  flex-wrap: wrap;
  gap:20px;
  margin: 40px 0;
}
.membership .links a{
  background-color: #5BB411;
  padding: 10px 20px;
  display: block;
  color: #fff;
  font-size: 16px;
  border-radius: 4px;
}

@media screen and (max-width: 1260px) {
  .top_bnr .list{
    gap:40px;
  }
  .top_bnr .list li{
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 1180px) {
  
  .mv{
    height: 650px;
  }
  
  .top_news_list a{
    width: 32%;
  }
  
  
  .news .news_list a{
    width: 32%;
  }
  
}

@media screen and (max-width: 1000px) {
  
  .mv_ttl p:nth-child(1),
  .mv_ttl p:nth-child(2){
    font-size: 36px;
    padding: 16px 18px;
  }
  .mv_ttl p:nth-child(3){
    padding: 8px 18px;
  }
  
  .mv_news{
    max-width: 100%;
    bottom: 30px;
    padding-left: 20px;
  }
  .mv_news .ttl{
    width: 120px;
    height: auto;
  }
  .mv_news a{
    width: 400px;
    height: auto;
    padding:20px;
    display: block;
  }
  .mv_news a::after{
    display: none;
  }
  .mv_news a p + p{
    margin-left: 0;
    margin-top: 10px;
  }
  
  
  .footer .inner{
    display: block;
  }
  .footer .inner .footer_menu{
    margin-top: 20px;
    justify-content: flex-end;
  }
  
  
  .flow .inner .item{
    display: block;
  }
  .flow .inner .item .txt{
    max-width: 100%;
    min-height: 90px;
    display: flex;
    align-items: center;
  }
  .flow .inner .item .img{
    margin: 40px auto 0;
    max-width: 600px;
    width: 100%;
  }
  .flow .inner .item .img img{
    width: 100%;
  }
  
}

@media screen and (max-width: 768px) {
  .pc_none{
    display: block !important;
  }
  
  .header .inner .left .logo{
    max-width: 230px;
  }
  .header .inner .left .logo img{
    width: 100%;
  }
  
  .mv{
    height: calc(65vh - 68px);
    background-position: center center;
  }
  .mv_ttl{
    left: 0;
    margin-left: 10px;
    margin-right: 10px;
    bottom: 40px;
  }
  .mv_ttl p:nth-child(1),
  .mv_ttl p:nth-child(2){
    font-size: 25px;
    padding: 14px 10px;
  }
  .mv_ttl p:nth-child(3){
    padding: 8px 16px;
  }
  .mv_ttl p + p {
    margin-top: 8px;
  }
  
  .top_greeting .flex{
    flex-direction: column;
  }
  .top_greeting .flex .txt{
    width: 100%;
  }
  .top_greeting .flex .img{
    width: 100%;
    margin-left: 0;
  }
  
  .top_news .inner > .flex{
    display: block;
  }
  .top_news .flex ul{
    margin-left: 0;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  
  .top_news_list.active{
    display: block;
  }
  .top_news_list a{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .top_news_list a + a{
    margin-top: 40px;
  }
  .top_news_list a img{
    width: 100%;
  }
  
  .top_bnr .list li{
    width: 100%;
  }
  
  .footer .inner .footer_menu{
    margin-top: 20px;
    justify-content:flex-start;
    flex-wrap: wrap;
  }
  .footer .inner .footer_menu li{
    width: 50%;
    margin-top: 16px;
  }
  .footer .inner .footer_menu li + li{
    margin-left: 0;
  }
  .footer .inner .footer_menu li a{
    width: 100%;
    display: block;
  }
  .footer .inner .footer_privacy{
    margin-top: 26px;
  }
  
  
  /* page */
  
  .maincontent{
    padding: 50px 0 0;
  }
  .maincontent_0{
    padding: 0;
  }

  .page_ttl{
    font-size: 26px;
    margin-bottom: 50px;
  }
  
  .company .inner table th,
  .company .inner table td{
    display: block;
    padding: 20px;
    border-bottom: none;
  }
  .company .inner table td{
    border-left: solid 1px #C4C4C4;
  }
  .company .inner table tr:last-child td{
    border-bottom: solid 1px #C4C4C4;
  }
  .gmap{
    height: 450px;
  }
  
  .service .inner{
    padding: 40px 30px;
  }
  .service .inner .flex{
    display: block;
  }
  .service .inner .item .flex .img{
    padding: 0;
    margin: 20px auto 0;
    width: fit-content;
  }
  .service .induction_contact{
    padding: 40px;
  }
  .service .induction_contact .flex{
    display: block;
  }
  .service .induction_contact .flex .btn{
    margin: 30px auto 0;
    width: fit-content;
  }
  .service .inner .item .flex .case{
    padding: 30px;
  }
  
  .flow .inner .item{
    padding: 30px;
  }
  
  .flow .inner .item .txt{
    padding-left: 0;
    padding-top: 80px;
    min-height: 64px;
    font-size: 18px;
  }
  .flow .inner .item .txt::before{
    width: 64px;
    height: 64px;
    font-size: 20px;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(0);
  }
  
  .news .cat_list{
    flex-wrap: wrap;
    margin-top: -10px;
    justify-content: flex-start;
  }
  .news .cat_list li{
    margin-top: 10px;
  }
  
  .news .news_list{
    display: block;
    margin-top: 0;
  }
  .news .news_list a{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .news .news_list a img{
    width: 100%;
  }
  
  .contact_form th,
  .contact_form td{
    display: block;
  }
}