@charset "UTF-8";

/* カラー */
:root {
    --main-color: #5DB3E8;
  }

:root {
    --gray-color :#434343;
}

:root {
    --blue-color :#316DB4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
    font-feature-settings: "palt" 1;
}

html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    counter-reset: number 0; 
}

section {
    padding: 100px 0;
}

img {
    width: 100%;
}

li {
    list-style: none;
}

p {
    text-align: justify;
    font-family: "Inter", sans-serif;
}

a {
    text-decoration: none;
}

h1 {
    animation-name:fadeUpAnime;
    animation-duration:0.75s;
    animation-fill-mode:forwards;
    opacity:0;
}

h2 {
    text-align: center;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 30px;
    font-weight: 500;
    font-feature-settings: "palt" 1;
    letter-spacing: 1px;
    margin-bottom: 40px;
    position: relative;
}

h3 {
    font-family: "Noto Serif JP", serif;
    color: var(--main-color);
    font-size: 20px;
    font-weight: normal;
    margin: 0 auto 1rem;
}

.sp {
    display: none;
}

.pc {
    display: block;
}

.wrap {
    width: 85%;
    max-width: 990px; 
    margin: 0 auto;
}

.flex {
    display: flex;
}

.font_bold {
    font-weight: bold;
}

.icon {
    min-width: 16px;
    max-width: 16px;
    width: 100%;
    height: auto;
    margin: 0 .5rem 0 0;
}

.button {
    text-align: center;
}

.button a {
    position: relative;
    min-width: 330px;
    min-width: min(330px, 100%);
    padding: 12px 85px;
    background: var(--main-color);
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.46;
    text-align: center;
    letter-spacing: 0.03em;
}

.fv > div {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 33px;
}

.fv {
    width: 100vw;
    height: calc(100vh - 100px);
    position: relative;
    top: 100px;
    display: flex;
    justify-content: space-between;
}

.fv::before {
    content: "";
    background: url(img/fv_d.svg);
    background-repeat: no-repeat;
    background-size: initial;
    width: 100%;
    height: 100%;
    display: inline-block;
    position: absolute;
    bottom: 0%;
    left: 0%;
    z-index: 999;
}

.fv > div.ttl img {
    margin: 0 auto 30px;
}

.fv > div.ttl p {
    font-size: 1.5625rem;
    letter-spacing: 12px;
    animation-name:fadeUpAnime;
    animation-duration:0.75s;
    animation-fill-mode:forwards;
    opacity:0;
    animation-delay: .5s;
}

header {
    position: fixed;
    box-shadow: 0 5px 10px #00000035;
    width: 100%;
    z-index: 9999;
    background: #fff;
}

.header_inner {
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        width: 95%;
        max-width: 1562px;
        margin: 0 auto;
        padding: 14px 0;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
}

.header_inner .bl_header_logo {
    flex-shrink: 0;
    width: 39.7%;
    max-width: 193px;
}

.header_inner .header_navigation {
    margin-left: 24px;
    width: 100%;
}

.main_nav_toggle {
    display: none;
}

.main_nav {
    width: 100%;
    background: #fff;
}

.main_nav_header ul.main_nav_subList ,
ul.main_nav_list {
    display: flex;
    justify-content: flex-end;
}

.main_nav_header {
    margin-bottom: 15px;
}

.main_nav_subList li a {
    padding: 7px 14px;
    background: var(--main-color);
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    color: #fff;
    vertical-align: sub;
}

.main_nav_subList li.main_nav_tel a {
    background-color: var(--gray-color);
}

.main_nav_subList li.main_nav_line a {
    background-color: var(--blue-color);
}

.main_nav_subList li a img { 
    max-width: 18px;
    height: auto;
    margin-right: 5px;
    vertical-align: -0.1em;
}

.main_nav_list {
    gap: 30px;
}

ul.main_nav_list li a  {
    font-size: 1.125rem;
    font-family: "Inter", sans-serif;
 }
 

 .fv > div.square {
    right: 0;
    left: unset;
    width: 45%;
    height: calc(100vh - 100px);
 }

 .fv > div.square > div {
    position: relative;
    height: calc(100vh - 100px);
}


.fv > div.square > div img {
    position: absolute;
    width: 50%;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    animation: blinking 2s ease-in-out infinite alternate;
    opacity: 0;
}

.fv > div.square > div img:first-of-type {
    top: 19%;
    right: 28%;
    animation-delay: .5s;
}

.fv > div.square > div img:last-of-type {
    bottom: -34%;
    right: 27%;
    top: unset;
    animation-delay: 1.5s;
}

#point_three {
    padding: 200px 0 100px;
}


#point_three h2::before { 
    content: "";
    background: url(img/About\ e-net\ Service.png)no-repeat;
    background-size: contain;
    position: absolute;
    width: 100%;
    height: 150%;
    top: -35px;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    z-index: -1;
    background-position: center;
}

#point_three p {
    line-height: 1.8rem;
    text-align: center;
}

#point_three_cont {
    padding: 150px 0;
}

#point_three_cont:nth-child(even) {
    background-color: #5db3e81b;
}

#point_three_cont > div {
    gap: 80px;
    align-items: flex-start;
    justify-content: center;
}

#point_three_cont > div > div ,
#point_three_cont > div > figure {
    width: 50%;
}

#point_three_cont > div > div p {
    text-align: justify;
    line-height: 2rem;
    letter-spacing: 1px;
    position: relative;
    margin-bottom: 1rem;
}

#point_three_cont > div > div > p:last-of-type::before {
    font-family: "Petit Formal Script", cursive;
    font-weight: 400;
    font-style: normal;
    counter-increment: number 1;
    content: counter(number, decimal-leading-zero) " ";
    position: absolute;
    color: #5db3e83e;
    font-size: 200px;
    bottom: -110px;
    right: 0px;
    letter-spacing: -15px;
}

#point_three_cont:nth-child(even) > div > figure ,
#point_three_cont:nth-child(odd) > div > div {
    order: 2;
}

#point_three_cont:nth-child(odd) > div > figure ,
#point_three_cont:nth-child(even) > div > div {
    order: 1;
}

section#about_service {
    background-color: #5db3e81b;
    padding: 207px 0 128px;
}

section#about_service h2 { 
    letter-spacing: .25rem;
} 

section#about_service h2::before { 
    content: "";
    background: url(img/About\ Service.png)no-repeat;
    background-size: contain;
    position: absolute;
    width: 100%;
    height: 150%;
    top: -35px;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    z-index: -1;
    background-position: center;
}

section#about_service p {
    line-height: 1.8rem;
    text-align: center;
    margin-bottom: 40px;
}

section#about_service > div {
    display: grid;
    column-gap: 30px;
    grid-template-columns: repeat(2, 1fr);
}

section#about_service > div > section {
    background: #fff;
    margin-bottom: 30px;
    padding: 40px 80px;
    position: relative;
}

/* トップページのサービス一覧クリック表示 */
/* section#about_service > div > section::before {
    content: "";
    background: url(img/click.png) no-repeat;
    background-size: contain;
    width: 73px;
    height: 28px;
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: inline-block ;
} */

section#about_service > div > section h3 {
    text-align: center;
    font-family: "Noto sans JP";
}

section#about_service > div > section h3 img {
    max-width: 135px;
    width: 100%;
    margin: 0 auto 1rem;
    display: block;
}

section#about_service > div > section ul li {
    position: relative;
    padding-left: 0.7em;
    margin-bottom: .25rem;
    font-family: "Inter", sans-serif;
}

section#about_service > div > section ul li:before {
    border-radius: 50%; 
    width: 4px;
    height: 4px;
    display: block;
    position: absolute;
    left: 0; 
    top: 0.6em;
    content: "";
    background: var(--main-color); /*点の色*/
}

#achievement_list {
    padding: 0;
}

#achievement_list h2 {
    margin-bottom: 60px;
}

#achievement_list .flex {
    display: grid;
    column-gap: 40px;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 80px;
}

#achievement_list article {
    line-height: 1;
    margin-bottom: 40px;
}

#achievement_list article .achievement_img {
    margin-bottom: 14px;
}

#achievement_list h3.achievement_title {
    margin: 0;
    font-family:"Inter", sans-serif;
    color: var(--gray-color);
    font-size: 16px;
}

#achievement_list span.achievement_tag {
    margin-left: 4px;
    background-color: var(--main-color);
    color: #fff;
    padding: 0.2rem;
    font-size: 14px;
    box-sizing: border-box;
    letter-spacing: 0px;
}

#info {
    text-align: center;
}

#info h2 {
    position: relative;
    display: inline-block;
    padding: 0 50px;
    text-align: center;
}

#info h2:before, 
#info h2:after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 50px;
    height: 2px;
    background-color: var(--main-color);
  }
  
#info h2:before {
left:-50px;
}

#info h2:after {
right: -50px;
}

#info ol {
    text-align: left;
    max-width: 855px;
    margin: 0 auto 80PX;
}

#info ol li {
    display: flex;
    -webkit-box-align: center;
    place-items: center;
    gap: 36px;
    border-top: 1px solid #444;
    padding: 16px 0px;
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 1px;
    color: rgb(51, 51, 51);
}
#info ol li:last-child {
    border-bottom: 1px solid #444;
}

#info .category {
    background-color: var(--main-color);
    color: #fff;
    padding: .25rem .5rem;
    font-size: 14px;
    box-sizing: border-box;
}

#info h3.ttl {
    font-family: "Inter", sans-serif;
    color: var(--gray-color);
    margin: 0;
    font-size: 16px;
}

footer #contact {
    background-image: linear-gradient(#E1F8FE,#D1EAF9);
}

footer #contact .wrap {
    background: #fff;
    padding: 100px 45px;
    max-width: 860px;
}

footer #contact h2 {
    font-family: "Inter", sans-serif;
    font-weight: normal;
    color: var(--main-color);
    margin-bottom: 16px;
}

footer #contact p { 
    text-align: center;
    margin-bottom: 22px;
}

footer #contact .footer_btns {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    grid-template-columns: 1fr;
}

footer #contact .footer_btns p {
    margin-bottom: 0;
    width: 100%;
}

footer #contact .footer_btns p a {
    display: block;
    box-sizing: border-box;
    padding: 15px;
    font-size: 16px;
}

footer #contact .footer_btns p.tel a {
    background-color: var(--gray-color);
}

footer #contact .footer_btns p.line a {
    background-color: var(--blue-color);
}

footer #contact .footer_btns p a img {
    max-width: 17px;
    margin-right: 5px;
}

footer #footer_nav {
    background: var(--gray-color);
}

footer #footer_nav .footer_nav_list {
    display: flex;
    justify-content: space-between;
    color: #fff;
    gap: 70px;
}

footer #footer_nav ul.footer_nav_list li a {
    color: #fff;
    font-size: 18px;
    font-weight: lighter;
    font-family: "Inter", sans-serif;
}

footer #footer_nav ul.footer_nav_list li ul  {
    margin: 15px auto 0;
    padding-left: .75rem;
}

footer #footer_nav ul.footer_nav_list li ul li  {
    margin: 0 0 15px;
}

footer #footer_nav ul.footer_nav_list li ul li:last-child  {
    margin: 0;
}

footer #footer_nav ul.footer_nav_list li ul li::before {
    content: "-";
    display: inline-block;
    color: #fff;
    position: relative;
    left: -11px;
}

footer #footer_nav ul.footer_nav_list li ul li a  {
    font-size: 14px;
}

footer #about .wrap {
    max-width: 1200px;
    justify-content: space-between;
}

footer #about .footer_logo {
    max-width: 237px;
}

footer #about .footer_about_text > p {
    margin: 0 0 20px;
}

footer #about .footer_about_text address {
    font-style: unset;
}

/*スクロールダウン全体の場所*/
.scrolldown1 {
    position: absolute;
    right: 10%;
    top: 90vh;
    height: 50px;
}

/*Scrollテキストの描写*/
.scrolldown1 span {
    position: absolute;
    left: -25px;
    top: -35px;
    color: var(--gray-color);
    font-size: 20px;
    letter-spacing: 0.05em;
    font-weight: lighter;
}

.scrolldown1::after {
    content: "";
    position: absolute;
    top: 0;
    width: 1px;
    height: 38px;
    background: var(--gray-color);
    animation: pathmove 2s ease-in-out infinite;
    opacity: 0;
}

@keyframes pathmove{
	0%{
		height:0;
		top:0;
		opacity: 0;
	}
	30%{
		height:30px;
		opacity: 1;
	}
	100%{
		height:0;
		top:50px;
		opacity: 0;
	}
}

@keyframes blinking {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(50px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

.scroll_up {
    transition: 0.8s ease-in-out;
    transform: translateY(30px);
    opacity: 0;
  }
  .scroll_up.on {
    transform: translateY(0);
    opacity: 1.0;
  }
  
  .scroll_left {
      -webkit-transition: 0.8s ease-in-out;
      -moz-transition: 0.8s ease-in-out;
      -o-transition: 0.8s ease-in-out;
      transition: 0.8s ease-in-out;
      transform: translateX(-30px);
      opacity: 0;
      filter: alpha(opacity=0);
      -moz-opacity: 0;
  }
  .scroll_left.on {
      opacity: 1.0;
      filter: alpha(opacity=100);
      -moz-opacity: 1.0;
      transform: translateX(0);
  }
  
  .scroll_right {
      -webkit-transition: 0.8s ease-in-out;
      -moz-transition: 0.8s ease-in-out;
      -o-transition: 0.8s ease-in-out;
      transition: 0.8s ease-in-out;
      transform: translateX(30px);
      opacity: 0;
      filter: alpha(opacity=0);
      -moz-opacity: 0;
  }
  .scroll_right.on {
      opacity: 1.0;
      filter: alpha(opacity=100);
      -moz-opacity: 1.0;
      transform: translateX(0);
  }


/* 下層ページ */


/* パンくず */
.breadcrumb {
    margin: 0 auto 75px;
    padding: 0;
    list-style: none;
  }
  
  .breadcrumb li {
    display: inline;
    list-style: none;
    font-family: "Inter", sans-serif;
  }
  
  .breadcrumb li:after {/* >を表示*/
    content: '>';
    padding: 0 0.2em;
    color: #555;
  }
  
  .breadcrumb li:last-child:after {
    content: '';
  }
  
  .breadcrumb li a {
      text-decoration: none;
    }
    
    .breadcrumb li a .active {
        color: var(--main-color);
    }


/* サービスページ */
.page_fv {
    width: 100vw;
    background-image: linear-gradient(90deg, rgba(202, 234, 251, 1), rgba(166, 221, 251, 1) 50%, rgba(242, 250, 254, 1));
    text-align: center;
    padding: 180px 0 80px;
    margin: 0 auto 15px;
}

.page_fv h1 {
    color: #fff;
    font-family: "Noto Serif JP", serif;
}

#service h3 {
    font-size: 25px;
}

#service h3 + p {
    letter-spacing: 1px;
}

#service .contents > div {
    position: relative;
    margin: 0 auto 110px;
}

#service .contents  > div figure {
    max-width: 553px;
    width: 100%;
}

#service .contents  > div section {
    padding: 40px;
    border: solid 1px;
    position: absolute;
    background: #fff;
    width: 100%;
    max-width: 544px;
    left: 50%;
    bottom: -10%;
}

#about section {
    padding-top: 0;
}

#about h2 {
    margin-bottom: 20px;
    text-align: left;
}

main#about p {
    text-align: justify;
    letter-spacing: 1px;
    line-height: 2;
    margin: 0 auto 20px;
}

#about figure {
    margin: 0 auto 100px;
}

hr {
    margin: 60px auto;
}

/* 会社概要 */

dl {
    border-top: 1px solid #E9E9E9;
    margin:0 auto 80px;
}

dl > div.flex {
    border-bottom: 1px solid #E9E9E9;
}

dl > div.flex dt {
    width: 30%;
    background: #E7F6FF;
    padding: 20px 70px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

dl > div.flex dd {
    width: 100%;
    background: #fff;
    padding: 20px 70px;
    letter-spacing: 1px;
}

iframe.map {
    margin: 0 auto 100px;
    width: 100%;
    height: 100%;
    min-height: 500px;
}

/* プライバシーポリシー */
#privacypolicy h2 {
    font-size: 1rem;
    font-family: "Inter", sans-serif;
    text-align: justify;
    border-bottom: solid 1px;
    padding-bottom: 4px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

#privacypolicy > div.wrap > section {
    padding: 0 0 50px;
}

#privacypolicy > div.wrap > section:last-of-type {
    padding: 0 0 100px;
}

#privacypolicy h2 + p {
    text-align: justify;
    letter-spacing: 2px;
    line-height: 1.5;
}

/* 制作実績詳細ページ */

#portfolio_lower > div > section {
    padding: 0 0 100px;
}

#portfolio_lower > div > section:first-of-type {
    padding: 0;
}

#portfolio_lower h2 {
    text-align: justify;
}

#portfolio_lower .category {
    margin-bottom: 40px;
}

#portfolio_lower .category span {
    margin-left: 16px;
    background-color: var(--main-color);
    color: #fff;
    padding: .25rem .5rem;
    font-size: 14px;
    box-sizing: border-box;
}

#portfolio_lower .category span:first-of-type {
    margin-left: 0;
}

#portfolio_lower h3 {
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 1px;
}

#portfolio_lower h3 span {
    font-family: "Noto sans JP";
    display: block;
    font-size: 16px;
    color: #444;
}

/* お知らせ詳細ページ */

#info_lower > div.contents {
    padding: 0 0 100px;
}

#info_lower > div > section:first-of-type {
    padding: 0;
}

#info_lower h2 {
    text-align: justify;
}

#info_lower .category {
    margin-bottom: 40px;
}

#info_lower .category span {
    margin-left: 16px;
    background-color: var(--main-color);
    color: #fff;
    padding: .25rem .5rem;
    font-size: 14px;
    box-sizing: border-box;
}

#info_lower .category span:first-of-type {
    margin-left: 0;
}

#info_lower h3 {
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 1px;
}

#info_lower h3 span {
    font-family: "Noto sans JP";
    display: block;
    font-size: 16px;
    color: #444;
}



@media screen and (max-width: 768px) {
    .sp {
        display: block;
    }

    .pc {
        display: none;
    }

    .button a {
        width: 100%;
        display: block;
        max-width: 400px;
        margin: 0 auto;
    }

    /* ハンバーガー */

    header {
        width: 100vw;
        box-sizing: border-box;
    }

    .header_inner {
        width: 100vw;
        padding: 15px;
        display: block;
        box-sizing: border-box;
        margin: 0;
    }

    .main_logo {
        width: 150px; /* ロゴの幅を調整 */
    }

    .nav_toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 0;
        position: absolute;
        right: 15px;
        top: 10px;
    }

    .nav_toggle::after {
        content: "HOME";
        font-size: 13px;
    }

    .nav_toggle i {
        background-color: #333;
        display: block;
        height: 2px;
        margin: 5px 0;
        width: 40px;
    }
    .main_nav {
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transition: opacity 0.5s ease, max-height 0.5s ease, visibility 0.5s;
        width: 100%;
    }

    .main_nav.active {
        opacity: 1;
        visibility: visible;
        max-height: 500px; /* メニューの高さに合わせて調整 */
    }

    .main_nav_list {
        flex-direction: column;
        padding: 0;
        margin: 0;
        width: 100%;
    }

    .main_nav_list li {
        width: 100%;
        text-align: center;
        margin: 0;
        padding: 10px 0;
        font-family: "Inter", sans-serif;
    }

    .main_nav_subList {
        display: flex;
        justify-content: space-around;
        width: 100%;
        padding: 10px 0;
    }

    .header_inner .header_navigation {
        margin-left: unset;
        padding: 10px 0 0;
    }

    .main_nav_header ul.main_nav_subList, ul.main_nav_list {
        display: block;
    }

    .main_nav_subList li a {
        width: 100%;
        display: block;
        padding: 14px;
        text-align: center;
    }

    /* FV */
    .fv {
        width: 100%;
        height: calc(80vh - 74px);
        top: 74px;
    }

    .fv::before {
        opacity: .25;
    }

    .fv > div {
        top: 45%;
        left: 23px;
        width: 60%;
    }

    .fv > div.ttl p {
        font-size: 1.2rem;
    }

    .fv > div.square {
        width: 95%;
    }

    section#about_service > div {
        grid-template-columns: repeat(1, 1fr);
    }

    .fv > div.square > div img:first-of-type {
        top: 35%;
        right: 25%;
    }

    .fv > div.square > div img:last-of-type {
        bottom: unset;
        right: 28%;
        top: 63%;
    }

    #point_three {
        padding: 100px 0 100px;
    }

    h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    h3 {
        text-align: center;
    }
    
    #point_three h2::before {
        width: 85%;
        top: -10px;
    }

    .scrolldown1 {
        right: 20%;
        top: 65vh;
    }

    #point_three {
        padding: 0;
        margin: 75px auto 0rem;
    }

    #three_point_bottom {
        display: none;
    }

    #point_three_cont {
        padding: 50px 0;
    }

    #point_three_cont > div {
        display: block;
    }

    #point_three_cont > div > div, #point_three_cont > div > figure {
        width: 100%;
    }

    #point_three_cont > div > div > p:last-of-type::before {
        font-size: 100px;
        bottom: unset;
        right: unset;
        top: -130px;
        left: 50%;
        transform: translate(-50%);
    }

    #point_three_cont:nth-child(odd) > div > figure ,
    #point_three_cont:nth-child(even) > div > figure {
        margin-bottom: 8rem;
    }

    section#about_service h2::before {
        width: 60%;
        top: -15px;
    }

    section#about_service {
        padding: 60px 0 26px;
    }

    section#about_service p {
        text-align: justify;
        letter-spacing: 1px;
    }

    section#about_service > div > section {
        padding: 40px 55px;
    }

    #point_three p {
        text-align: justify;
    }

    #achievement_list h2 {
        margin-bottom: 40px;
    }

    #achievement_list .flex {
        display: grid;
        column-gap: 40px;
        grid-template-columns: repeat(1, 1fr);
        margin-bottom: 80px;
    }

    #achievement_list .flex {
        grid-template-columns: repeat(1, 1fr);
        margin-bottom: 70px;
    }

    #achievement_list h3.achievement_title {
        text-align: left;
    }

    #info {
        padding: 70px 0;
    }

    #info h2 {
        margin: 0 auto 40px;
    }


    #info ol li {
        display: block;
    }

    #info ol li .day {
        display: inline-block;
        margin: 0 .5rem 0 0;
    }

    #info .category {
        display: inline-block;
    }


    #info h3.ttl {
        font-family: "Inter", sans-serif;
        margin: 1rem auto 0;
        text-align: left;
    }
    
    footer #contact {
        padding: 50px 0;
    }

    footer #contact .wrap {
        padding: 35px 25px;
    }

    footer #contact p {
        margin-bottom: 40px;
    }

    footer #contact .footer_btns {
        display: block;
    }

    footer #contact .footer_btns p {
        margin-bottom: 20px;
    }

    footer #contact .footer_btns p:last-of-type {
        margin-bottom: 0px;
    }

    footer #footer_nav {
        padding: 47px 0;
    }

    footer #footer_nav .footer_nav_list {
        display: block;
    }

    footer #footer_nav .footer_nav_list li {
        margin: 0 auto 25px;
        font-family: "Inter", sans-serif;
        font-weight: normal;
    }

    footer #footer_nav .footer_nav_list li:last-of-type {
        margin: 0 auto;
    }

    section#about {
        padding: 57px 0;
    }

    section#about > div {
        display: block;
    }

    footer #about .footer_logo {
        margin-bottom: 50px;
    }

    /* サービス */

    .page_fv {
        padding: 150px 25px 50px;
        font-size: .75rem;
    }

    #service .contents > div {
        margin: 0 auto 40px;
        display: block;
    }

    #service .contents > div figure {
        margin: 0 auto 20px;
    }

    #service .contents > div section {
        position: unset;
        padding: 25px;
    }

    #service h3 {
        font-size: 23px;
        text-align: justify;
        letter-spacing: 1px;
    }

    #service h3 {
        margin: 0 auto 10px;
    }

    /* イーネットサービスとは */

    .breadcrumb {
        margin: 0 auto 40px;
    }

    #about section {
        padding: 0px 0 40px;
    }

    #about figure {
        margin: 0 auto 40px;
    }

    #about h3 {
        text-align: left;
    }

    /* 会社概要 */

    #profile dl > div.flex {
        display: block;
    }

    dl > div.flex dt ,
    dl > div.flex dd {
        width: 100%;
        padding: 20px 15px;
        text-align: justify;
        justify-content: left;
    }

    iframe.map {
        min-height: 300px;
    }



}


