/*----------------------------------------
	all
----------------------------------------*/

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
	font-family:'游ゴシック体', 'Yu Gothic', YuGothic,'メイリオ',Meiryo,'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ ゴシック',sans-serif;
	font-size:62.5%;
	color: #4d4d4d;
	-webkit-text-size-adjust:100%;
	line-height:1;
	font-weight: 500;
    scroll-behavior: smooth;
}

body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 1.4rem;
    letter-spacing: 0.06em;
}

p {
    line-height: 1.75;
}

a {
    text-decoration: none;
    color: #333;
}

img {
    vertical-align: bottom;
}

.respon {
    width: 100%;
}

.center {
    text-align: center;
}

.left {
    text-align: left;
}

.right {
    text-align: right;
}

/*----------------------------------------
	common
----------------------------------------*/

.inner {
    width: 100%;
    padding: 0 6.25%;
}

.title_bottom {
    margin: 0 0 45px;
}

.left_title_box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.left_title_en {
    font-size: 2.2rem;
    font-weight: bold;
    color: #5A0E20;
    margin: 0 0 35px;
    padding: 0 0 15px;
    border-bottom: 3px solid #5A0E20;
    display: block;
}

.left_title {
    display: flex;
    flex-direction: column;
}

.sp_left_title_bg {
    display: none;
}

.section_block {
    margin: 0 0 100px;
}

.button_wrap {
    display: flex;
    justify-content: flex-end;
}

.button {
   border: 1px solid #fff;
   display: block;
   width: 105px;
   height: 30px;
   display: flex;
   align-items: center;
   justify-content: center;
}

.title_jp {
    display: block;
    font-size: 2rem;
    color: #000;
    font-weight: normal;
    margin: 10px 0 0;
}

@media screen and (min-width: 769px) {
    .pc_none{ 
        display: none;
    }
}

@media screen and (max-width: 768px){
    .inner {
        padding: 0 4.25%;
    }
    
    .sp_none { 
        display: none;
    }
    
    .sp_left_title_bg {
        display: block;
        background: #fff;
        padding: 10px 15px;
    }
    
    .left_title {
        flex-direction: column-reverse;
        align-items: center;
    }
}

@media screen and (max-width: 599px){
    .inner {
        padding: 0 5.25%;
    }
    
    .section_block {
        margin: 0 0 50px;
    }
    
    .left_title_en {
        font-size: 1.6rem;
        margin: 0 0 20px;
        padding: 0 0 10px;
        border-bottom: 1px solid #5A0E20;
    }
    
    .left_title_bg {
        padding: 15px 10px;
    }
    
    .title_bottom {
        margin: 0 0 25px;
    }
}


/*----------------------------------------
	header
----------------------------------------*/

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(0);
  transition: transform .4s ease;
  height: 115px;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
}

.header--unpinned {
  -webkit-transform: translateY(-150%);
  transform: translateY(-150%);
}

.header_inner {
    width: 100%;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header_left {
    display: flex;
    align-items: center;
}

.logo {
    margin: 0 20px 0 0;
}

.logo a {
    display: block;
}

.gnav_menu {
    display: flex;
    align-items: center;
}

.gnav_menu li:nth-of-type(-n+4) {
    margin: 0 50px 0 0;
}

.gnav_menu li {
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 0.02em;
}

.gnav_menu li a {
    color: #5A0E20;
    display: block;
} 

.gnav_menu_jp {
    display: block;
    text-align: center;
    margin: 7px 0 0;
    font-size: 1.2rem;
    font-weight: normal;
}

.gnav_menu li:nth-of-type(5) a {
    color: #fff;
    padding: 15px 40px;
    background-color: #5A0E20;
    border-radius: 8px;
}

.hamburger {
    display: none;
}


@media screen and (max-width: 1400px){
    .header_left img {
        width: 170px;
    }
}

@media screen and (min-width: 769px){
    .logo a {
        transition: 0.4s;
    }
    
    .logo a:hover {
        opacity: 0.7;
    }
    
    .gnav_menu li:nth-of-type(-n+4) a {
        transition: 0.3s;
    }
    
    .gnav_menu li:nth-of-type(-n+4) a:hover {
        opacity: 0.7;
    }
    
    .gnav_menu li:nth-of-type(5) a {
        transition: 0.3s;
    }
    
    .gnav_menu li:nth-of-type(5) a:hover {
        background-color: rgba(90,14,32,0.3);
        color: #5A0E20;
    }
}

@media print, screen and (max-width: 1100px) and (min-width: 769px) {
    .header {
        height: 100px;
    }
    
    .header_inner {
        padding: 0 3%;
    }
    
    .header_left img {
        width: 120px;
    }
    
    .gnav_menu li:nth-of-type(-n+4) {
        margin: 0 30px 0 0;
    }
    
    .gnav_menu li a {
        font-size: 1.3vw;
    }
     
}

@media screen and (max-width: 768px){
    .header {
        height: 75px;
    }
    
    .header_inner {
        padding: 0 4.25%;
    }
    
    .header_left img {
        width: 160px;
    }
    
    .gnav_menu {
        flex-direction: column;
    }
    
    .gnav {
      position: fixed;
      z-index : 999;
      top: 0;
      left: 0;
      color: #fff;
      text-align: center;
      width: 100%;
      height: 100%;
      display: none;
      transition: opacity .6s ease, visibility .6s ease;
    }

    .gnav_menu {
      margin: 75px auto 0;
      padding: 0;
      width: 100%;
      background: rgba(90,14,32,0.9);
    }

    .gnav_menu li {
      list-style-type: none;
      padding: 0;
      width: 100%;
      transition: .4s all;
    }
    
    .gnav_menu li:nth-of-type(-n+4) {
        margin: 0;
        border-bottom: 1px solid #fff;
    }
    
    .gnav_menu li:nth-of-type(-n+3) {
        padding: 0;
    }
    
    .gnav_menu li:last-child {
      padding-bottom: 0;
    }

    .gnav_menu li a {
      display: block;
      color: #fff;
      padding: 1em 0;
      text-decoration :none;
    }
    
    .gnav_menu li:nth-of-type(5) a {
        background-color: transparent;
    }
    
    .header.top {
        transform: translateY(0);
    }

    .gnav.active {
      display: block;
    } 
    
    .hamburger {
        display: block;
        position: fixed;
        z-index: 9999;
        right: 13px;
        width : 42px;
        height: 42px;
        cursor: pointer;
        text-align: center;
    }

    .hamburger span {
        display: block;
        position: absolute;
        width: 30px;
        height: 2px ;
        left: 6px;
        background: #5A0E20;
        -webkit-transition: 0.5s ease-in-out;
        -moz-transition: 0.5s ease-in-out;
        transition: 0.5s 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: #5A0E20;
      -webkit-transform: rotate(315deg);
      -moz-transform: rotate(315deg);
      transform: rotate(315deg);
    }

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

@media screen and (max-width: 599px){
    .header {
        height: 60px;
    }
    
    .header_inner {
        padding: 0 2.25%;
    }
    
    .header_left img {
        width: 100px;
    }
    
    .gnav_menu {
      margin: 60px auto 0;
    }
}

/*----------------------------------------
	footer
----------------------------------------*/

.footer_gnav_menu {
    display: flex;
    justify-content: center;
    padding: 70px 0 25px;
}

.footer_gnav_menu li:first-of-type {
    border-left: 1px solid #5A0E20;
}

.footer_gnav_menu li {
    width: 11%;
    border-right: 1px solid #5A0E20;
    text-align: center;
    color: #5A0E20;
    font-size: 1.6rem;
    font-weight: bold;
}

.footer_gnav_menu li a {
    color: #5A0E20;
}

.copyright {
    background-color: #5A0E20;
    text-align: center;
    padding: 20px 0;
    color: #fff;
}

@media screen and (min-width: 769px){
    
    .footer_gnav_menu li a {
        transition: 0.3s;
    }
    
    .footer_gnav_menu li a:hover {
        opacity: 0.7;
    }
}

@media screen and (max-width: 768px){
    .footer_gnav_menu li {
        width: 18%;
        border-right: 1px solid #5A0E20;
        text-align: center;
        color: #5A0E20;
        font-size: 1.6rem;
        font-weight: bold;
    }
}

@media screen and (max-width: 599px){
    .copyright {
        font-size: 1.2rem;
    }
    
    .footer_gnav_menu::after {
        content: "";
        width: 34%;
        display: block;
    }
    
    .footer_gnav_menu {
        padding: 35px 0 20px;
        flex-wrap: wrap;
    }
    
    .footer_gnav_menu li {
        width: 34%;
    }
    
    .footer_gnav_menu li:nth-of-type(3),
    .footer_gnav_menu li:nth-of-type(5) {
        border-left: 1px solid #5A0E20;
    }
    
    .footer_gnav_menu li:nth-of-type(-n+4) {
        margin: 0 0 10px;
    }
    
    .copyright {
        padding: 12px 0;
        font-size: 1.2rem;
    }
}

/*----------------------------------------
	Top
----------------------------------------*/

/*-------- top_mv --------*/

.mv {
    margin: 115px 0 0;
    position: relative;
}

.mv_catch {
    position: absolute;
    top: 22%;
    left: 6.25%;
}

.mv_catch img {
    width: 380px;
}

@media print, screen and (max-width: 1100px) and (min-width: 769px) {
    .mv {
        margin: 100px 0 0;
    }
    
    .mv_catch {
        top: 22%;
    }
    
    .mv_catch img {
        width: 290px;
    }
}

@media screen and (max-width: 768px){
    .mv {
        margin: 75px 0 0;
    }
    
    .mv_catch {
        top: 55%;
        transform: translateY(-55%);
    }
    
    .mv_catch img {
        width: 280px;
    }
}

@media screen and (max-width: 599px){
    .mv {
        margin: 60px 0 0;
    }
    
    .mv_catch img {
        width: 230px;
    }
}


/*-------- top_intro --------*/

.top_intro_box_wrap {
    background-color: #fff;
    margin: -112px 0 100px;
    padding: 40px 40px 0;
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 10;
}

.top_intro_box {
    width: 33.3%;
    display: block;
    border-right: 1px solid #fff;
}

.top_intro_box_img {
    position: relative;
}

.top_intro_box_img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(90,14,32,0.4);
    mix-blend-mode: overlay;
    top: 0;
    left: 0;
}

.top_intro_title {
    background-color: #5A0E20;
    padding: 20px 0;
    text-align: center;
    font-size: 2rem;
    font-size: 2rem;
    color: #fff;
    letter-spacing: 0.02em;
}

.top_intro_text {
    line-height: 2.911;
}

@media screen and (min-width: 769px){
    
    .top_intro_box {
        transition: 0.4s;
    }
    
    .top_intro_box:hover {
        opacity: 0.8;
    }
}

@media print, screen and (max-width: 1100px) and (min-width: 769px) {
    .top_intro_box_wrap {
        margin: -65px 0 100px;
    }
}

@media screen and (max-width: 768px){
    .top_intro_box_wrap {
        padding: 20px 20px 0;
    }
    
    .top_intro_title {
        padding: 10px 0;
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 599px){
    .top_intro_box_wrap {
        flex-direction: column;
        margin: -25px 0 70px;
        padding: 25px 15px 0;
    }
    
    .top_intro_box {
        width: 100%;
        border-bottom: 2px solid #fff;
    }
    
    .top_intro_title {
        font-size: 1.6rem;
        padding: 10px 0;
    }
    
    .top_intro_subtitle img {
        width: 100%;
    }
    
    .top_intro_text {
        line-height: 2;
    }
}

/*-------- top_quality --------*/

.top_quality {
    background-color: #eee;
    padding: 100px 0;
}

.top_quality_wrap {
     display: flex;
    justify-content: space-between;
}

.top_quality_items {
    width: 79.9%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.top_quality_item {
    width: 48.4%;
    display: flex;
    justify-content: space-between;
}

.top_quality_item:nth-of-type(-n+2) {
    margin: 0 0 70px;
}

.top_quality_item_img {
    width: 47%;
}

.top_quality_item_text {
    width: 47.2%;
}

.left_title_box {
    width: 14.6%;
}

.top_quality_item_title {
    font-size: 2.4rem;
    font-weight: bold;
    color: #5A0E20;
    margin: 20px 0 25px;
    transform: translateX(-80px);
}

.title_bg {
    margin: 0 0 7px;
    padding: 6px 8px;
    background-color: #fff;
    display: inline-block;
}

.title_bg:last-child {
    margin: 0;
}

.left_title_customers {
    margin: 40px 0 0;
}

@media print, screen and (max-width: 1400px) and (min-width: 769px) {
    .top_quality_items {
        width: 77.9%;
    }
    
    .top_quality_item {
        width: 47%;
        flex-direction: column;
        align-items: center;
    }
    
    .top_quality_item_text {
        width: 100%;
        display: flex;
        flex-direction: column;
        transform: translateY(-15px); 
    }
    
    .top_quality_item_img {
        width: 100%;
    }
    
    .top_quality_item_title {
       transform: translateX(0); 
       margin: 0 0 25px;
    }
    
    .top_quality_item:nth-of-type(-n+2) {
        margin: 0 0 50px;
    }
}

@media screen and (max-width: 768px){
    .top_quality_wrap {
        flex-direction: column;
    }
    
    .top_quality_items {
        width: 100%;
    }
    
    .top_quality_item {
        width: 100%;
    }
    
    .left_title_customers img {
        margin: 0 0 10px;
        width: 65px;
    }
    
    .left_title_box {
        width: 100%;
        margin: 0 0 30px;
    }
    
    .left_title_customers {
        margin: 0;
    }
}

@media screen and (max-width: 599px){
    
    .top_quality {
        padding: 50px 0;
    }
    
    .top_quality_items {
        flex-direction: column;
    }
    
    .top_quality_item {
        width: 100%;
        flex-direction: column;
    }
    
    .top_quality_item_img {
        width: 100%;
    }
    
    .top_quality_item_text {
        width: 100%;
    }
    
    .top_quality_item_title {
        transform: translateX(0);
        transform: translateY(-15px);
        margin: 0 0 10px;
        font-size: 2rem;
    }
    
    .top_quality_item:nth-of-type(-n+3) {
        margin: 0 0 40px;
    }
}

/*-------- top_concept --------*/

.top_concept {
    background: url(../images/top_concept_bg.jpg) no-repeat center center;
    background-size: cover;
    height: 547px;
    display: flex;
    align-items: center;
    position: relative;
}

.top_concept::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(90,14,32,0.4);
    mix-blend-mode: overlay;
    top: 0;
    left: 0;
}

.top_concept_title,
.top_concept_subtitle{
    text-align: right;
}

.top_concept_subtitle_bg {
    display: block;
}

.top_concept_title_bg {
    background-color: #fff;
    display: inline-block;
    margin: 0 0 30px;
    padding: 18px;
}

.top_concept_subtitle {
    margin: 0 0 30px;
}

@media print, screen and (max-width: 1400px) and (min-width: 769px) {
    .top_concept {
        height: 400px;
    }
    
    .top_concept_title img {
        width: 380px;
    }
}

@media screen and (max-width: 768px){
    .top_concept {
        height: 370px;
    }
    
    .top_concept_title img {
        width: 300px;
    }
}

@media screen and (max-width: 599px){
    
    .top_concept_title_bg {
        margin: 0 0 20px;
        padding: 15px;
    }
    
    .top_concept_title img {
        width: 190px;
    }
    
    .top_concept_subtitle img {
        width: 100%;
    }
    
    .top_concept {
        height: 280px;
    }
}

/*-------- top_construction --------*/

.top_construction {
    background-color: #eee;
    padding: 100px 0;
}

.top_construction_intro {
    display: flex;
    align-items: center;
    margin: 0 0 90px;
}

.top_construction_intro .left_title_box {
    width: auto;
    padding: 0 105px 0 0;
    border-right: 3px solid #5A0E20;
}

.top_construction_intro_text {
    padding: 0 0 0 105px;
    font-size: 1.8rem;
    color: #5A0E20;
    font-weight: bold;
}

.top_construction_intro_text p {
    margin: 0 0 55px;
}

.top_construction_intro_text p:last-child {
    margin: 0;
}

.top_construction_lists {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #fff;
    border: 1px solid #5A0E20;
}

.top_construction_list {
    width: 33.3%;
    padding: 45px 50px 35px;
}

.top_construction_list:nth-of-type(-n+5) {
    border-right: 1px solid #5A0E20;
}

.top_construction_list:nth-of-type(3) {
    border-right: none;
}

.top_construction_list:nth-of-type(-n+3) {
    border-bottom: 1px solid #5A0E20;
}

.top_construction_list figcaption {
    font-size: 2.6rem;
    color: #5A0E20;
    font-weight: bold;
    text-align: center;
    padding: 20px 0 25px;
}

@media print, screen and (max-width: 1400px) and (min-width: 769px) {
    
    .top_construction_intro {
        align-items: flex-start;
    }
    
    .top_construction_intro .left_title_box {
        width: 30%;
        padding: 0 50px 0 0;
        border-right: none;
    }
    
    .top_construction_intro_text {
        width: 70%;
        padding: 0 0 0 50px;
        border-left: 3px solid #5A0E20;
    }
    
    .top_construction_list {
        padding: 30px 25px;
    }
}

@media screen and (max-width: 768px){
    .top_construction_list {
        width: 50%;
    }
    
    .top_construction_list {
        padding: 25px 30px;
    }
    
    .top_construction_intro {
        flex-direction: column;
        margin: 0 0 30px;
    }
    
    .top_construction_intro_text {
        padding: 30px 0 0;
        width: 100%;
        font-size: 1.6rem;
        border-top: 2px solid #5A0E20;
        text-align: center;
    }
    
    .top_construction_intro_text p {
        margin: 0 0 20px;
    }
    
    .top_construction_intro .left_title_box {
        padding: 0 0 30px;
        border-right: none;
        margin: 0;
    }
    
    .top_construction_list:nth-of-type(-n+5) {
        border-right: none;
    }
    
    .top_construction_list:nth-of-type(odd) {
        border-right: 1px solid #5A0E20;
    }
    
    .top_construction_list:nth-of-type(-n+4) {
        border-bottom: 1px solid #5A0E20;
    }
}

@media screen and (max-width: 599px){
    .top_construction_list {
        width: 100%;
        padding: 25px 20px;
    }
    
    .top_construction_list figcaption {
        padding: 20px 0 15px;
        font-size: 2rem;
    }
    
    .top_construction_list:nth-of-type(-n+5) {
        border-bottom: 1px solid #5A0E20;
    }
    
    .top_construction {
        padding: 50px 0;
    }
    
    .top_construction_list:nth-of-type(odd) {
        border-right: none;
    }
    
    .top_construction_intro_text {
        text-align: left;
    }
}

/*-------- top_contact --------*/

.top_contact_title {
    text-align: center;
    font-size: 3rem;
    color: #5A0E20;
}

.top_contact_title .title_jp {
    font-size: 1.5rem;
}

.contact_box_wrap {
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.contact_box_info {
    padding: 0 120px 0 0;
    border-right: 1px solid #000;
}

.contact_box_tel {
    padding: 0 0 0 120px;
}

.contact_box_info {
    font-size: 1.8rem;
}

.contact_box_tel {
    font-size: 1.8rem;
    color: #000;
    text-align: center;
}

.contact_box_tel a {
    color: #5A0E20;
    font-weight: bold;
    display: block;
}

.tel_number {
    font-size: 4rem;
    font-weight: bold;
    color: #5A0E20;
}

.openingHours {
    padding: 0 50px 0 0;
}

.contactform {
    margin-top: 30px;
}

.contactform iframe {
    width: 100%;
    height: 910px;
}

@media print, screen and (max-width: 1400px) and (min-width: 769px) {
    .openingHours {
        padding: 0 20px 0 0;
    }
    
    .contact_box_tel a {
        margin: 20px 0 0;
    }
    
    .contact_box_tel {
        padding: 0 0 0 40px;
        font-size: 1.6rem;
    }
    
    .contact_box_info {
        padding: 0 40px 0 0;
        font-size: 1.6rem;
    }
    
    .tel_number {
        font-size: 3rem;
    }
    
    .contact_box_wrap {
        padding: 25px 20px;
    }
}

@media screen and (max-width: 768px){
    .contact_box_wrap {
        flex-direction: column-reverse;
        padding: 25px 20px;
    }
    
    .contact_box_info {
        padding: 20px 0 0;
        border-right: none;
        font-size: 1.4rem;
        width: 100%;
        text-align: center;
    }
    
    .contact_box_tel {
        font-size: 1.6rem;
        padding: 0 0 20px;
        border-bottom: 1px solid #5A0E20;
        width: 100%;
    }
    
    .contact_box_tel a {
        margin: 15px 0 0;
        line-height: 1.2;
    }
    
    .openingHours {
        display: block;
    }
    
    .contact_ceo {
        display: block;
    }
    
    .tel_number {
        font-size: 3rem;
    }
}

@media screen and (max-width: 590px){
    .contact_box_info {
        text-align: left;
    }
}

/*-------- top_map --------*/

.access_map{
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
	padding: 32.6% 0 0;
	text-align: center;
}

.access_map iframe{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate3d(-50%, -50%, 0);
	-ms-transform: translate3d(-50%, -50%, 0);
	transform: translate3d(-50%, -50%, 0);
}

@media screen and (max-width: 599px){
    .access_map {
       padding: 60.6% 0 0; 
    }
}

/*----------------------------------------
	page-common
----------------------------------------*/

.icatch {
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 115px 0 100px;
    position: relative;
}

.icatch::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(90,14,32,0.25);
    mix-blend-mode: overlay;
}

.icatch .title {
    color: #5A0E20;
    text-align: center;
    line-height: 1;
}

.icatch .title span {
    display: block;
    text-align: center;
}

.icatch .title .en {
    font-size: 4rem;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    background: #fff;
    margin: 0 0 10px;
    padding: 8px 12px
}

.icatch .title .jp {
    background: #fff;
    display: inline-block;
    padding: 5px 10px;
    font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
    .icatch {
        margin: 75px 0 50px;
        height: 250px;
    }
}

@media screen and (max-width: 590px) {
    .icatch {
        margin: 60px 0 60px;
        height: 180px;
    }
    
    .icatch .title .en {
        font-size: 2.5rem;
    }

    .icatch .title .jp {
        font-size: 1.6rem;
    }
}

/*----------------------------------------
	service
----------------------------------------*/

.service_icatch {
    background: url(../images/service_icatch.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.service_lists {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #fff;
    
}

.service_list {
    width: 40%;
    padding: 45px 50px;
    border: 1px solid #5A0E20;
}

.service_list:nth-of-type(odd) {
    margin-right: 30px;
}

.service_list:nth-of-type(-n+2) {
    margin-bottom: 30px;
}

.service_img_title {
    margin: 0 0 20px;
    background: #fff;
}

.service_img_title img {
    transform: translate(12px,-15px);
    background: #fff;
    padding: 10px 15px;
}

@media screen and (max-width: 1200px) {
    .service_list {
        width: 47%;
        padding: 30px 25px;
    }
}

@media screen and (max-width: 900px) {
    .service_img_title img {
        transform: scale(0.7);
        margin: -15px 0 0px -17px;
    }
    
    .service_img_title {
        margin: 0 0 15px;
    }
}

@media screen and (max-width: 590px) {
    .service_list {
        width: 100%;
    }
    
    .service_list:nth-of-type(odd) {
        margin-right: 0;
    }
    
    .service_img_title {
        margin: 0 0 5px;
    }
    
    .service_img_title img {
        transform: scale(0.8);
        margin: -15px 0 8px -5px;
    }
    
    .service_list:nth-of-type(-n+3) {
        margin-bottom: 30px;
    }
}


/*----------------------------------------
	company
----------------------------------------*/

.company_icatch {
    background: url(../images/company_icatch.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.outline_table .title {
    color: #333;
    margin-bottom: 37px;
}

.outline_table {
    width: 900px;
    margin: 0 auto 60px;
    line-height: 1.7;
    display: block;
}

.outline_table tr {
    padding: 16px 0;
    border-top: 1px dotted #000000;
}

.outline_table tr:last-child {
   border-bottom: 1px dotted #000000;
}

.outline_table th {
    width: 250px;
    padding: 16px 0;
    text-align: left;
}

.outline_table td {
    padding: 16px 0;
}

.outline_text {
    width: 940px;
    margin: auto;
    font-size: 1.1rem;
    font-family: 'メイリオ',Meiryo,'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ ゴシック',sans-serif;
}

.company_img {
    width: 900px;
    margin: auto;
}

@media screen and (max-width: 1100px) {
	.outline_text {
		width: 100%;
	}
}

@media screen and (max-width: 1100px) and (min-width: 769px) {
	.outline_table {
		width: 700px;
	}
    
    .company_img {
        width: 700px;
    }
}

@media screen and (max-width: 768px) {
	
	.outline_table {
		width: 100%;
        margin: 0 auto 30px;
	}
    
    .company_img {
        width: 100%;
    }
		
	.outline_table th {
		width: 200px;
	}

	.outline_table td {
		width: 500px;
	}
}

@media screen and (max-width: 599px) {
	.outline_table {
		width: 100%;
	}
	
	.outline_table tr {
        display: flex;
		flex-direction: column;
        padding: 0;
	}
	
	.outline_table th {
		width: 100%;
		font-weight: bold;
        padding: 8px 2% 0 2%;
	}

	.outline_table td {
		width: 100%;
        padding: 0 2% 8px 2%;
	}

}

/*----------------------------------------
	contact
----------------------------------------*/

.contact_icatch {
    background: url(../images/contact_icatch.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.thanks_title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #5A0E20;
}