@charset "utf-8";
/*
Theme Name: egosaru
Description: egosaru
Author: Mediacloud
*/


/*###### ローディング ######*/
#loader-bg {
  background-color: #fff;
  height: 100%;
  left: 0px;
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 1100;
}
#loader-bg img {
  left: 50%;
  position: fixed;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 100;
  max-width: 280px;
}


/*###### ヘッダー ######*/
header {
    position: fixed;
    width: 100vw;
    z-index: 1000;
}
/*###### PC用ナビ ######*/
#G-nav {
    height: 80px;
    background: linear-gradient(to right, #fba900, #ff8000);
    color:#fff;
    text-align: center;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding:0 40px;
}
#G-nav img {
    max-width: 350px;
    width: 100%;
}
#G-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding-left: 0;
}
#G-nav ul li {
    position: relative;
}
#G-nav ul li a {
    display: block;
    color: #534741;
    font-size: 17px;
    font-weight: 500;
    padding: 20px 25px;
}
#G-nav ul li li a {
    padding:10px 35px;
}
#G-nav ul li.has-child::before {
    content:'';
    position: absolute;
    left: 15px;
    top: 30px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(135deg);
}
/* メディアクエリ */
@media screen and (max-width:768px) {
#G-nav {
    display: none;
}
}


/*###### SP用ナビ ######*/
/* ナビバー部分 */
.SP-nav__wrapper {
    width: 100vw;
    display: flex;
    align-items: center;
    padding: 0 20px;
    z-index: 900;
    position: fixed;
}
@media screen and (min-width: 769px){
.SP-nav__wrapper {
    display: none;
}}
/* ハンバーガー部分 */
.js-hamburger {
    position: fixed;
    z-index: 1100;
    top: 5px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
}
.js-hamburger span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #4d4d4d;
    width: 50%;
}
.js-hamburger span:nth-of-type(1) {
    top: 15px;
}
.js-hamburger span:nth-of-type(2) {
    top: 23px;
}
.js-hamburger span:nth-of-type(3) {
    top: 31px;
}
.js-hamburger.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 50%;
}
.js-hamburger.active span:nth-of-type(2) {
    opacity: 0;
}
.js-hamburger.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 50%;
}
/* メニュー表示部分 */
#SP-nav {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    padding: 50px 20px;
    background: #f9f1e5;
    box-shadow: none;
    visibility: hidden;
    opacity: 0;
    transition: all .7s ease;
}
.sp-menu-wrapper {
    background: #fff;
    padding: 30px 20px;
    border-radius: 5px;
    text-align: center;
}
#SP-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#SP-nav li {
    margin: 0 0 20px;
    font-family: 'M PLUS 1p', sans-serif;
    flex: 0 0 calc(50% - 10px);
    max-width: 50%;
    text-align: center;
}
#SP-nav li.sp-100 {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
}
#SP-nav li:nth-child(2),#SP-nav li:nth-child(4) {
    margin-right: 10px;
}
#SP-nav li:nth-child(3),#SP-nav li:nth-child(5) {
    margin-left: 10px;
}
#SP-nav li a {
    background: #FFF;
    border: 2px solid #968375;
    border-radius: 5px;
    padding: 15px;
    display: block;
    color: #534741;
    font-weight: 500;
}
/* メニュー表示部分 ロゴ*/
.sp-content img {
    display: block;
    margin: 0 auto;
    max-width: 200px;
    width: 100%;
    margin-bottom: 30px;
}
/* メニュー表示部分 お問い合わせ*/
#SP-nav li.sp-contact a {
    background: #004986;
    color: #fff;
    border: none;
}
.sp-content p {
    font-size: 14px;
    color: #534741;
    font-family: 'M PLUS 1p', sans-serif;
    font-weight: 500;
    display: inline;
    border-bottom: 1px solid #534741;
}
.sp-content i {
    padding-right: 10px;
}
/* メニュー表示部分 イラスト*/
.sp-illust {
    max-width: 130px;
    width: 100%;
    position: fixed;
    bottom: 10px;
    right: 10px;
    visibility: hidden;
    opacity: 0;
    transition: all .7s ease;
    z-index: 1000;
}
.sp-illust.panelactive {
    animation-name:updown1;
    animation-delay:0s;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite; 
}
@keyframes updown1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}
#SP-nav.panelactive {
    visibility: visible;
    opacity: 1;
}
@media screen and (max-width: 480px) {
.sp-illust.panelactive {
    visibility: visible;
    opacity: 1;
}
}


/*###### 共通 ######*/
h1 {
    position: absolute;
    max-width: 250px;
    width: 100%;
    padding: 0 20px 0 60px;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
h1 a {
    display: block;
}
h2 {
    font-family: 'M PLUS 1p', sans-serif;
    font-size: 45px;
    line-height: 1.4;
}
h3 {
    font-family: 'M PLUS 1p', sans-serif;
    font-size: 30px;
    margin-bottom: 20px;
    line-height: 1.3;
}
.subheading {
    font-family: 'M PLUS 1p', sans-serif;
    font-size: 20px;
    font-weight: 600;
    display: inline-block;
    line-height: 1.2;
    margin-bottom: 40px;
}
.bg-beige {
    background: #F9F1E5;
}
button {
    color: #fff;
    font-size: 26px;
    font-weight: 500;
    padding: 15px 35px;
    background: #004986;
    border-radius: 3px;
    border: none;
    width: 100%;
}
button:hover {
    background: #336D9E;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.purple {
    color: #6D3A98;
}
.orange {
    color: #FF8000;
}
.or-line {
    background: linear-gradient(transparent 60%, #FFB066 0%);
    padding: 0 3px 0 3px;
}
.yl-line {
    background: linear-gradient(transparent 75%, #ffb621 0%);
    padding: 0 3px 0 3px;
}
.tx-center {
    text-align: center;
}


/*###### 固定お問い合わせボタン ######*/
#JS-CONTACT_PC {
    position: fixed;
    right: 0;
    bottom: 20px;
    z-index: 20;
    display: none;
}
#JS-CONTACT_PC a {
    writing-mode: vertical-rl;
    color: #fff;
    font-size: 19px;
    font-weight: 500;
    padding: 25px 15px 25px 10px;
    background: #004986;
    border-top-left-radius: 5px;
    -webkit-border-top-left-radius: 5px;
    -moz-border-radius-topleft: 5px;
    border-bottom-left-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-radius-bottomleft: 5px;
    position: relative;
}
#JS-CONTACT_PC i {
    padding-bottom: 10px;
}
#JS-CONTACT_PC a:after {
    content: '';
    width: 50px;
    height: 71px;
    position: absolute;
    left: 2px;
    top: -45px;
    background: url(../img/js_contact.png) no-repeat;
    background-size: contain;
}
#JS-CONTACT_PC a:hover {
    background: #336D9E;
    -webkit-transition: all .3s;
    transition: all .3s;
}



/*###### ファーストビュー ######*/
#MAINIMG {
    height: 620px;
    position: relative;
    z-index: 1;
    padding-top: 80px;
    overflow-y: hidden;
}
#MAINIMG:after {
    content: "";
    width: 100%;
    height: calc(100% - 80px);
    position: absolute;
    left: 0;
    top: 80px;
    background: url("../img/mainbg.jpg") repeat-x;
    background-position: 0 0;
    -webkit-animation: bgroop 50s linear infinite;
    animation: bgroop 50s linear infinite;
    z-index: -1;
    opacity: .7;
}
@-webkit-keyframes bgroop {
    from {
        background-position: 0  0;
    }
    to {
        background-position: -2500px 0;
    }
}
@keyframes bgroop {
    from {
        background-position: 0 0;
    }
    to {
        background-position: -2500px 0;
    }
}
#MAINIMG .inner {
    padding: 60px 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main-message {
    padding-right: 30px;
}
.main-message h2 {
    font-size: 74px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 40px;
}
/*.main-message span {
    font-size: 60px;
}*/
.main-message i {
    padding-right: 10px;
}
.main-message .orange {
    font-size: 74px;
}
.main-monkey {
    padding-left: 30px;
}
.main-monkey img {
    max-width: 435px;
    width: 100%;
}

/*###### 月額料金 ######*/
.monthly {
    background: #FFDB96;
}
.monthly h2 {
    font-size: 35px;
    text-align: center;
}
.monthly h2 span{
    font-size: 27px;
}


/*###### エゴサるのポイント ######*/
#POINT {
    border-left: 20px solid #FBA900;
}
#POINT::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 9%;
    height: 100%;
    background-color: #F9F1E5;
}
#POINT img {
    max-width: 360px;
    width: 100%;
}
#POINT h2 {
    margin-bottom: 30px;
}


/*###### エゴサるとは ######*/
#WHAT {
    overflow-x: hidden; 
}
#WHAT .row {
    justify-content: center;
}
.row_what {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.what__logo {
    max-width: 320px;
    width: 100%;
}
#WHAT h2 {
    text-align: left;
}
.equal {
    font-size: 45px;
    font-family: 'M PLUS 1p', sans-serif;
    font-weight: 800;
    padding: 0 15px;
} 
.web-card_wrapper {
    margin-bottom: 50px;
}
/* .web-cardアニメーション */
.js-order {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1.0s;
}
.js-order.show {
  opacity: 1;
  transform: translateY(0);
}
.js-order.show:nth-of-type(1) {
  transition-delay: 0s;
}
.js-order.show:nth-of-type(2) {
  transition-delay: 0.3s;
}
.js-order.show:nth-of-type(3) {
  transition-delay: 0.6s;
}
.js-order.show:nth-of-type(4) {
  transition-delay: 0.9s;
}
.js-order.show:nth-of-type(5) {
  transition-delay: 1.2s;
}

.web-card {
    margin: 0 10px;
    background: #fff;
    border-radius: 10px;
}
.web-card > img {
    padding: 10px 15px;
    margin-bottom: 20px;
}
.web-card h3 {
    font-size: 40px;
    color: #fff;
    margin-bottom: 20px;
}
.web-card h4 {
    font-size: 23px;
    text-align: left;
    line-height: 1.4;
}
.web-card_text {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.web-card_text img {
    max-width: 45px;
    width: 100%;
    margin-right: 10px;
}
.web-card_sns {
    border: 3px solid #83D1DD;
    position: relative;
}
.web-card_sns h3 {
    background: #83D1DD;
}
.web-card_keijiban {
    border: 3px solid #E7B56A;
}
.web-card_keijiban h3 {
    background: #E7B56A;
}
.web-card_kuchikomi {
    border: 3px solid #B5CE52;
}
.web-card_kuchikomi h3 {
    background: #B5CE52;
}
.web-card_sns:before {
    content: '\f0ac';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 40px;
    color: #fff;
    left: 15px;
    top: -7px;
    position: absolute;
    z-index: 10;
}
.web-card_keijiban:before {
    content: '\f51c';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 40px;
    color: #fff;
    left: 25px;
    top: -4px;
    position: absolute;
    z-index: 10;
}
.web-card_kuchikomi:before {
    content: '\f4ad';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 40px;
    color: #fff;
    left: 30px;
    top: -5px;
    position: absolute;
    z-index: 10;
}



#WHAT > .inner > h2 {
    text-align: center;
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}
#WHAT > .inner > h2:before {
    content: "";
    width: 160px;
    height: 100%;
    position: absolute;
    left: -170px;
    top: 0;
    background: url("../img/arrow_l.svg") no-repeat;
    background-size: contain;
}
#WHAT > .inner > h2:after {
    content: "";
    width: 160px;
    height: 100%;
    position: absolute;
    right: -170px;
    top: 0;
    background: url("../img/arrow_r.svg") no-repeat;
    background-size: contain;
}
.pc_sp {
    max-width: 500px;
    width: 100%;
    display: block;
    margin: 0 auto 40px;
    position: relative;
    z-index: 10;
}
#WHAT:before {
    content: "";
    width: 100%;
    height: 322px;
    max-width: 320px;
    position: absolute;
    left: 50px;
    bottom: 10%;
    background: url(../img/gear.svg) no-repeat;
    background-size: contain;
}
#WHAT:after {
    transform: scale(-1, 1);
    content: "";
    width: 100%;
    height: 322px;
    max-width: 320px;
    position: absolute;
    right: 50px;
    bottom: 10%;
    background: url(../img/gear.svg) no-repeat;
    background-size: contain;
}


/*###### ちなみに ######*/
#RESEARCH .inner {
    padding-bottom: 0;
}
#RESEARCH .inner:before {
    content: "";
    background: #fff;
    height: 70px;
    width: 100%;
    position: absolute;
    top: -70px;
    left: 0;
}
#RESEARCH .inner:after {
    content: "";
    background: #fff;
    height: 70px;
    width: 100%;
    position: absolute;
    bottom: -70px;
    left: 0;
}
#RESEARCH h2 {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}
.by-the-way {
    max-width: 160px;
    width: 100%;
    height: 117px;
    position: absolute;
    left: -100px;
    top: -90px;
}
.img-search {
    max-width: 620px;
    height: 100%;
    width: 100%;
    margin-bottom: 40px;
}
#RESEARCH .row {
    max-width: 820px;
    margin: 0 auto;
}
#RESEARCH .Column2_1 {
    justify-content: center;
    text-align: left;
    height: fit-content;
}
.baloon {
    background: #6D3A98;
    color: #fff;
    font-size: 25px;
    line-height: 1.4;
    text-align: center;
    border-radius: 20px;
    padding: 10px 15px 15px;
    display: inline-block;
    position: relative;
    margin: 15px 0 45px;
}
.baloon:after {
    position: absolute;
    content: '';
    left: 50%;
    transform: translate(-50%, 0);
    bottom: -30px;
    border-style: solid;
    border-width: 30px 9px 0 9px;
    border-color: #6D3A98 transparent transparent transparent;
}
span.font-yl {
    font-size: 45px;
    color: #F8C700;
    font-weight: 600;
    font-family: 'M PLUS 1p', sans-serif;
}
span.font-wh-big {
    font-size: 37px;
    font-weight: 600;
}

/*.img-risk {
    max-width: 335px;
    width: 100%;
}
.js-ratio .shuffle {
    font-size: 70px;
    font-family: 'M PLUS 1p', sans-serif;
    font-weight: 800;
    display: inline;
    line-height: 1;
    position: relative;
    visibility: hidden;
}
.js-ratio.show {
    visibility: visible;
}
.js-ratio::after {
   content: "";
   display: block;
   width: 100%;
   position: absolute;
   bottom: 10px;
   left: 2px;
}
.js-ratio .bk {
    font-size: 50px;
}
.js-ratio span.shuffle {
    font-size: 110px;
}
.js-ratio span.shuffleNum:nth-child(3),.js-ratio span.shuffleNum:nth-child(4),.js-ratio span.shuffleNum:nth-child(5),.js-ratio span.shuffleNum:last-child {
    font-size: 70px;
}*/

/*###### SVG ######*/
.svg-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 230px;
    width: 100%;
}
.svg-wrapper:after {
    content: '';
    position: absolute;
    background: url("../img/graph_14.png");
    background-repeat: no-repeat;
    background-size: contain;
    padding-bottom: 30%;
    width: 60%;
}
.pi-graph {
    transform-origin: center;
    transform: rotate(-90deg);
    max-width: 270px;
    width: 100%;
    background: #fff;
    border-radius: 100vh;
}
.enko {
    fill: none;    
}
/* 白 */
#enko-white.enko.show {
    stroke: #dfdfdf;
    animation: enko-white 1.5s ease-in-out forwards;
    visibility: visible;
    stroke-width: 13%;
    stroke-dasharray: 100;
    /* 最初は非表示状態 */
    stroke-dashoffset: 100;
}
@keyframes enko-white {
      to {
    stroke-dashoffset: 0;
}
}
/* 紫 */
#enko-purple.enko.show {
    stroke: #6D3A98;
    animation: enko-purple 1.5s ease-in-out forwards;
    visibility: visible;
    stroke-width: 13%;
    stroke-dasharray: 100;
    /* 最初は非表示状態 */
    stroke-dashoffset: 100;
}
@keyframes enko-purple {
      to {
    stroke-dashoffset: 86;
}
}
.caption {
    font-size: 14px;
}


/*###### サービスのポイント ######*/
#SERVICE {
    border-left: 20px solid #FBA900;
    z-index: -1;
}
#SERVICE::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 9%;
    height: 100%;
    background-color: #fff;
    z-index: 1;
}
#SERVICE .inner {
    padding-top: 160px;
}
#SERVICE h2 {
    margin-bottom: 50px;
}
.service-card {
    max-width: 840px;
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    margin: 0 auto 60px;
    box-shadow: 0 0 5px rgb(0,0,0,.08);
    position: relative;
    display: flex;
    align-items: center;
    z-index: 10;
}
.service-card_point {
    position: absolute;
    top: -30px;
    left: -30px;
    max-width: 85px;
    width: 100%;
}
.service-card_illust {
    flex: 0 0 25%;
    max-width: 25%;
}
.service-card_text {
    flex: 0 0 75%;
    max-width: 75%;
    text-align: left;
    padding-left: 20px;
}
.service-card_illust1 img {
    max-width: 136px;
}
.service-card_illust2 img {
    max-width: 150px;
}
.service-card_illust3 img {
    max-width: 190px;
}


/*###### サービス使用例 ######*/
#USAGE h2 {
    margin-bottom: 40px;
}
.usage-text {
    flex: 0 0 60%;
    max-width: 60%;
}
.usage-img {
    flex: 0 0 40%;
    max-width: 40%;
    padding: 0 0 0 20px;
}
.usage-text:after {
    content: "";
    width: 100%;
    height: 342px;
    max-width: 275px;
    position: absolute;
    background: url("../img/logo_bg.svg") no-repeat;
    background-size: contain;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}


/*###### ご契約の流れ ######*/
#FLOW .inner {
    padding-bottom: 0;
}
#FLOW h2 {
    margin-bottom: 40px;
}
.flow-wrapper {
    position: relative;
    margin: 40px 0;
}
.flow-box {
    display: flex;
    justify-content: space-between;
    width: 93%;
    margin: 0 auto;
}
.flow-content {
    border-radius: 50%;
    background: #fff;
    border: 6px solid #fac473;
    max-width: 190px;
    height: 190px;
    width: 100%;
    padding: 10px;
}
.flow-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}
.flow-content p {
    color: #fba900;
    font-weight: 600;
}
.flow-content01 img {
    max-width: 70px;
    width: calc(100% - 30px);
}
.flow-content02 img {
    max-width: 120px;
    width: calc(100% - 30px);
}
.flow-content03 img {
    max-width: 75px;
    width: calc(100% - 30px);
}
.flow-content04 img {
    max-width: 110px;
    width: calc(100% - 30px);
}
.flow-content05 img {
    max-width: 120px;
    width: calc(100% - 30px);
}
.flow-arrow-wrapper {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: -2.5%;
    width: 105%;
    z-index: -1;
    transform: translateY(-50%);
}
.flow-arrow {
    display: block;
    background: #fba900;
    height: 10px;
}
.flow-arrow-straight {
    width: 100%;
}
.flow-arrow-last1 {
    position: absolute;
    right: 0;
    width: 10px;
    height: 40px;
    top: -4px;
    transform: rotate(45deg);
}
.flow-arrow-last2 {
    position: absolute;
    right: 0;
    width: 10px;
    height: 40px;
    bottom: -4px;
    transform: rotate(-45deg);
}


/*###### お問い合わせフォーム ######*/
#CONTACT-FORM .inner {
    padding-top: 40px;
}
.contact-form-box {
    background: #fff2dd;
    border-radius: 10px;
    max-width: 750px;
    width: 100%;
    margin: 0 auto;
    padding: 70px 40px;
    box-shadow: 7px 7px 0px rgb(0 0 0 / 10%);
}
.contact-form-box h2 {
    font-size: 30px;
    text-align: center;
    margin-bottom: 30px;
}
.contact-form-message {
    margin-bottom: 30px;
    text-align: center;
}
.contact-form-box button {
    background: #ff8000;
    font-size: 18px;
    padding: 6px 40px;
    margin-top: 20px;
    width: auto;
}
.contact-form-box button:hover {
    background: #fe9832;
}
.contact-form-table {
    width: 100%;
}
.contact-form-table th,.contact-form-table td {
    text-align: left;
    padding: 10px;
    vertical-align: middle;
    font-weight: 500;
}
.contact-form-table th {
    width: 40%;
}
.contact-form-table td {
    width: 60%;
}
/*.contact-form-table input[type="checkbox"] {
    -webkit-appearance: none;
}*/
.contact-form-table td input,.contact-form-table textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 0;
}
.contact-form-table textarea {
    height: calc( 1.4em * 6 );
    line-height: 1.4;
}
.contact-form-table th.contact-center {
    text-align: center;
    font-weight: normal;
}
.contact-center span {
    border-bottom: 1px solid #333;
}
.contact-center span:hover {
    cursor: pointer;
}
span.required {
    color: #fff;
    font-size: 12px;
    font-weight: normal;
    background: #004986;
    border-radius: 100vh;
    padding: 2px 10px;
    margin-right: 15px;
    line-height: 1;
}
/* プライバシーポリシー */
.modalArea {
    display: none;
    position: fixed;
    z-index: 1000; 
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
}
.modalBg {
    width: 100vw;
    height: 100%;
    background-color: rgba(30,30,30,0.9);
}
.modalWrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform:translate(-50%,-50%);
    max-width: 1000px;
    width: 100%;
    padding: 20px;
    background-color: #fff;
}
.modalContents p {
    font-size: 14px;
}
.closeModal {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    cursor: pointer;
    font-size: 25px;
}


/*###### 会社情報 ######*/
#COMPANY {
    background: #F4F4F4;
}
#COMPANY h2 {
    text-align: center;
    margin-bottom: 40px;
}
#COMPANY table {
    margin: 0 auto;
    max-width: 750px;
    width: 100%;
}
#COMPANY table th {
    font-size: 20px;
    border-bottom: 2px solid #969696;
}
#COMPANY table td {
    border-bottom: 2px solid #c3c3c3;
}
#COMPANY table th,#COMPANY table td {
    text-align: left;
    vertical-align: middle;
    padding: 10px 25px;
}
#COMPANY tr:last-child th,#COMPANY tr:last-child td {
    border-bottom: none;
}


footer {
    background: #FBA900;
    text-align: center;
}
footer .inner {
    padding: 50px 0 40px;
}
footer img {
    max-width: 225px;
    width: 100%;
    margin-bottom: 30px;
}
footer ul {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}
footer ul li {
    padding-right: 65px;
    font-weight: 500;
}
footer ul li:last-child {
    padding-right: 0;
}
footer p {
    font-size: 14px;
}
address {
    font-size: 14px;
    font-style: unset;
}

/*###### 最下部固定お問い合わせ ######*/
.contact-point-sp {
    position: fixed;
    bottom: 0;
    width: 100vw;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 15px 0;
    z-index: 10;
}
#CONTACT_SP {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 15px 35px;
    background: #004986;
    border-radius: 5px;
    width: 80%;
    display: inline-block;
}
#CONTACT_SP i {
    padding-right: 10px;
}


