@charset "utf-8";
/* ========================================
File Name: main.css
Created: 2015/--/--
Author: toyoda, nagai,
----------------------------------------
INDEX
----------------------------------------
0. common
======================================== */

/* 0. common
======================================== */
html {
  font-size:  62.5%;
}

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

body {
  background: #fff url('#') no-repeat fixed left bottom;
  background-size: cover;
  color: #333;
  text-align: center;
  font-size: 1.4rem;
  font-family: Raleway, "Hiragino kaku Gothic ProN", Meiryo, sans-serif;
  padding-top: 137px;
}

img {
  vertical-align: bottom;
}

@media screen and (max-width: 768px) {
  body {
    padding-top: 0;
  }
}

/*--------------------------------
　パーツ
----------------------------------*/

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  font-size:0;
  clear: both;
  visibility:hidden;
}

section {
  width: 960px;
  margin: 0 auto;
  padding-top: 140px;
}

@media screen and (max-width: 768px) {
  section {
    overflow: hidden; /* タイトルがはみ出す場合があったため */
    width: 550px;
    max-width: 100%;
    padding: 60px 15px 0;
    margin-top: 25px;
  }

  #cost-section {
    width: 960px;
  }

  #cost-section > div {
    overflow-y: scroll;
  }
}


.orange {
   color: #FF9A00;
 }

.blue {
  color: #2f7fb8;
}

ul,li {
  margin:0;
  padding:0;
  list-style: none;
}

.u-hover { transition-duration: 0.32s; }
.u-hover:hover { opacity: 0.6; }


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

.header-top {
  width: 100%;
  border-top: solid 8px #2f7fb8;
  padding: 16px 0 4px;
  min-width: 960px;
  position: fixed;
  top: 0;
  background-color: #fff;
  z-index: 10;
}

.header-imgBlk {
  width: 100%;
  margin: 0 auto;
}

.header-imgBlk--pc {
  display: block;
}

.header-imgBlk--sp {
  display: none !important; /* slickのcssが競合するためimportant使用 */
}

@media screen and (max-width: 768px) {
  header {
    overflow: hidden;
  }

  .header-top {
    position: relative;
    width: 100%;
    min-width: inherit;
    padding: 0;
  }

  .header-imgBlk {
    width: 100%;
  }

  .header-imgBlk--pc {
    display: none !important; /* slickのcssが競合するためimportant使用 */
  }

  .header-imgBlk--sp {
    display: block !important; /* slickのcssが競合するためimportant使用 */
  }

  header p {
    display: block;
    text-align: center;
    margin: 18px auto 20px;
  }
}


.header-inquiry {
  background-color: #FC7735;
  width: 160px;
  height: 36px;
  line-height: 36px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  border-radius: 4px;        /* CSS3草案 */
  -webkit-border-radius: 4px;    /* Safari,Google Chrome用 */
  -moz-border-radius: 4px;   /* Firefox用 */
  float: right;
  margin-top: 4px;
}
.header-inquiry a {
  text-decoration: none;
  color: #fff;
  display: block;
}
.header-inquiry a:hover {
  color: #FFFFFF;
}

@media screen and (max-width: 768px) {
  .header-inquiry {
    width: 120px;
    height: 32px;
    margin: 28px 8px 0 0;
    line-height: 32px;
    transition: none;
  }

  .header-inquiry:hover {
    opacity: 1;
  }
}

.nav-wrapper {
  width: 960px;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 768px) {
  .nav-wrapper {
    width: 100%;
    text-align: left;
    padding-bottom: 10px;
  }

}


/*--------------ロゴ--------------*/
.logo {
  float: left;
  margin: 0;
}

.logo a {
  text-decoration: none;
}

.logo img {
  width: 221px;
  height: 99px;
}

.logo-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .logo {
    display: inline-block;
    float: inherit;
  }

  .logo img {
    width: auto;
    height: auto;
  }

  .logo-pc {
    display: none;
  }

  .logo-sp {
    display: block;
    margin: 12px 0 0 12px;
  }
}

/*--------------------------------
トップhero部分
----------------------------------*/

.top_hero {
    width: 100%;
    background: linear-gradient(-135deg, #FDFDFE, #C6D2DA);
    padding: 56px 18px 20px;
}

.top_hero__lead {
    display: flex;
    width: 960px;
    margin: 0 auto;
    justify-content: space-between;
}

.top_hero__lead__txt {
    text-align: left;
}

.top_hero__lead__img {
    width: 174px;
    height: 166px;
}

.top_hero__lead__01 {
    font-size: 24px;
}
.top_hero__lead__02 {
    font-size: 32px;
    margin: 0;
    font-weight: 800;
}

.top_hero__lead__02__or {
    color: #FC7735;
}
.top_hero__lead__02__bl {
    color: #0080BD;
}

.top_hero__awsMtg {
  width: 960px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 32px auto 0;
  background-color: #fff;
  box-shadow: 0 0 10px #cccccc;
}
@media screen and (max-width: 768px) {
    .top_hero {
        padding-top: 36px;
    }
    .top_hero__lead {
        display: block;
        width: 100%;
    }
    .top_hero__lead__01 {
        font-size: 12px;
    }
    .top_hero__lead__02 {
        font-size: 18px;
        margin: 0;
        font-weight: 800;
    }
    .top_hero__lead__explan {
        text-align: left;
        font-size: 13px;
    }
    .top_hero__lead__img {
        display: none;
    }

    .top_hero__awsMtg {
      display: block;
      width: 100%;
      padding-bottom: 24px;
      height: 240px;
    }
}

.top_hero__awsMtg__before {
  background: #0080BD;
  color: #FFFFFF;
  font-size: 12px;
  text-align: left;
  padding: 10px 20px 10px 100px;
  margin: 0;
  background-image: url("../../assets/images/awsMtg_free-pc.svg");
  background-repeat: no-repeat;
  background-position: left center;
}

.top_hero__awsMtg__before__free {
    margin-bottom: 2px;
}

.top_hero__awsMtg__ttl {
  color: #0080BD;
  font-size: 28px;
  font-weight: 900;
  margin: 12px 8px 12px 16px;
}
.top_hero__awsMtg__txt {
  font-size: 12px;
  width: 220px;
  line-height: 18px;
  margin: 8px 20px 8px 8px;
  text-align: left;
  vertical-align: middle;
  color: #333333;
}

.top_hero__awsMtg__btn {
  background: linear-gradient(-135deg,#FFC700,#FF9500);
  color: #FFFFFF;
  border: none;
  margin: 4px;
  padding-top: 18px;
  height: 60px;
  width: 180px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 2px;
}

@media screen and (max-width: 768px) {
    .top_hero__awsMtg__ttl {
      margin: 12px 0 0;
      text-align: center;
    }
    .top_hero__awsMtg__txt {
        width: 100%;
        margin: 0;
        padding: 10px 12px 24px;
    }
    .top_hero__awsMtg__btn {
      padding: 16px 24%;
    }
}

/*--------------------------------
　導入事例
----------------------------------*/

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

.case-example {
  width: 960px;
  margin: 0 auto 0;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  background-color: #ff9503;
}

.case-example-sp.slick {
  display: none;
}
.case-example-pc {
  padding: 8px;
}

.case-heading {
  margin-top: 56px;
}
@media screen and (max-width: 768px) {
  .case-heading {
    display: none;
  }
  .case-example {
    width: 100%;
    flex-direction: column;
    background-color: #ff9503;
    margin-top: 0;
    padding: 8px 0;
  }

  .case-example-pc {
    display: none;
    padding: 8px;
  }

  .case-example-sp.slick {
    display: block;
    overflow: hidden;
  }
}

.case-image img {
  width: 211px;
}

.case-image-border{
  border: 1px solid #cfd7dd ;
}

.case-box {
  width: 24.5%;
  background-color: #fff;
  padding: 8px;
}

.casebox__link{
    display: block;
    text-decoration: none;
}
.casebox__link:hover{
    opacity: 0.8;
}

.case-description {
  word-wrap: break-word;
  padding: 0 4px;
}

.case-title {
  color: #000000;
  font-weight: bold;
  font-size: 1.3rem;
  text-align: left;
  line-height: 1.8rem;
  margin-top: 20px;
  margin-bottom: 5px;
}
.case-company{
  display: block;
  margin-top: 8px;
  margin-bottom: 1em;
  font-size: 1.1rem;
  font-weight: normal;
  color: #8990a3;
}

.case-company-text {
  font-size: 1.1rem;
  vertical-align: middle;
  line-height: 1.6;
  text-align: left;
  margin: 0;
  overflow: hidden;
  color: #000000;
}

/*---導入事例 冒頭部分---*/
.c-caseRead {
  padding-top: 80px;
}
.c-caseRead__hero{
    /*margin-bottom: 60px;*/
    position: relative;
    border-bottom: solid 5px #cccccc;
}
.c-caseRead__hero__text{
    font-size: 1.8rem;
    line-height: 1.4;
    font-weight: bold;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.9);
    bottom: 24px;
    left: 0;
    text-align: left;
    display: inline-block;
    padding: 16px;
}
.c-caseRead__text{
    font-size: 1.3rem;
    line-height: 1.8;
    width: 707px;
    min-width: 707px;
    margin: auto;
    text-align: left;
    padding: 30px 0;
    margin-bottom: 60px;
    border-bottom: solid 1px #eee;
    /*background: #eaf2f2;*/
}

/*---導入事例 インタビュー本文部分---*/
.c-caseBlocks {
  padding-top: 0px;
}
.c-caseBlock{
    margin-bottom: 90px;
    text-align: left;
    width: 707px;
    margin-left: auto;
    margin-right: auto;
}
.c-caseBlock__ttl{
    margin: 32px 0 32px;
    color: #8990a3;
    font-weight: normal;
    font-size: 1.6rem;
}
.c-caseBlock__text{
    font-size: 1.5rem;
    line-height: 1.8;
}
.c-caseBlock__comment{
    color: #888888;
  font-size: 1.2rem;
  padding-top: 16px;
    border-top: solid 1px #c0c0c0;
}
.c-caseBlock__img{
    margin: 40px 0 40px;
  text-align: center;
}

.c-caseBlock__commentImg{
  margin-right: 20px;
}

.c-caseBlock__commentItem{
  display: -webkit-box;
  display: flex;
}

span.comment {
  color:#FFA500;
  font-size: 1.0rem;
}

@media screen and (max-width: 768px) {
  .case-box {
    width: 500px;
    max-width: 100%;
    padding: 8px;
    margin: 0 6px;
  }

  .case-box.slick-slide {
    min-height: 240px;
  }

  .case-image > img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .case-image-border{
    border: none;
  }

  .case-description {
    margin-top: 20px;
  }

  .case-company-text {
    line-height: 1.6rem;
  }

  .case-description {
    margin-top: 14px;
  }

  .c-caseRead__hero > img {
    width: 100%;
  }

  .c-caseRead__text {
    width: 100%;
    min-width: inherit;
    line-height: 160%;
  }

  .c-caseBlock {
    width: 100%;
  }

  .c-caseBlock__img > img {
    width: 100%;
  }

  .c-caseRead__hero__text {
    position: static;
    font-size: 1.6rem;
    margin-top: 12px;
    padding: 16px 0;
  }
}

.slide-arrow {
  position: absolute;
  width: 32px;
  height: 32px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background-image: none;
  background-color: transparent;
  border: none;
}

.slide-arrow::before {
  content: '';
  position: absolute;
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  top: 11px;
  z-index: 1;
}

.slide-arrow::after {
  content: '';
  position: absolute;
  display: block;
  width: 32px;
  height: 32px;
  background-color: rgba(51, 51, 51, .8);
  border-radius: 50%;
  top: 0;
  left: 0;
}

.prev-arrow {
  left: 12px;
}

.slide-arrow.prev-arrow::before {
  left: 13px;
  transform: rotate(-135deg);
}

.next-arrow {
  right: 12px;
}

.slide-arrow.next-arrow::before {
  right: 13px;
  transform: rotate(45deg);
}

/*--------------------------------
　エーシークラウドの強み
----------------------------------*/

.strength__read {
  width: 960px;
  margin-top: 80px;
  padding: 40px 56px;
  background-color: #fbfbfb;
  display: flex;
  justify-content: space-between;
}

.strength__read__txt{
  text-align: left;
}
.strength__read__before {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0;
}

.strength__read__main {
  font-size: 28px;
  margin: 0 0 24px 0;
}

.strength__read__explan {
  line-height: 2.8rem;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .strength__read {
    width: 100%;
    padding: 16px 12px;
    display: block;
    margin-top: 32px;
  }
  .strength__read__main {
    font-size: 18px;
  }
  .strength__read__explan {
    line-height: 2.4rem;
    font-size: 14px;
    margin-bottom: 32px;
  }
  .strength__read__awsLogo {
    width: 40%;
  }
}

.service-image {
  width: 100%;
  margin-top: 60px;
}

.service-image-sp {
  display: none;
}

.service-image img {
  width: 742px;
  height: 306px;
}

.service-image-inner {
  display: table;
  width: 100%;
  /*margin-top: 60px;*/
  table-layout: fixed;
}

.service-footer {
  display: none;
}

.strength-description-inner {
  padding: 0 20px;
}

.strength-title {
  font-size: 1.7rem;
  font-weight: bold;
  color: #000000;
}

.strength-text {
  text-align: left;
  line-height: 1.8;
  color: #333;
}

.strength-box {
  position: relative;
  display: table-cell;
  margin-top: 100px;
}

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

.strength1 {
  border-right: solid 1px #888888;
}

.strength2 {
  border-right: solid 1px #888888;
}

.center {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .service-image-pc {
    display: none;
  }

  .service-image-sp {
    display: block;
  }

  .service-image img {
    width: auto;
    height: auto;
    margin: 0 auto;
  }

  .service-image-inner {
    display: flex;
    flex-direction: column;
    margin: 56px auto 59px;
  }

  .service-footer {
    display: block;
  }

  .strength-title {
    font-size: 1.6rem;
    margin: 21px auto 24px;
  }

  .strength-text {
    margin: 0;
  }

  .strength-box {
    width: 100%;
    margin-top: 0;
    padding-bottom: 0;
  }

  .strength-box:not(:first-child) {
    margin-top: 46px;
  }

  .strength1, .strength2 {
    border: none;
  }
}


.heading:before {
  border-top: 1px solid #c0c0c0;
  content: '';
  position: absolute;
  top: 50%;
  right: 80%;
  width: 85px;
}

.heading:after {
  border-top: 1px solid #c0c0c0;
  content: '';
  position: absolute;
  top: 50%;
  left: 80%;
  width: 85px;
}

.heading {
  font-size: 2rem;
  font-weight: bold;
  color: #000000;
  position: relative;
  width: 40%;
  margin: 0 auto;
}

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

  .heading:before {
    display: none;
  }

  .heading:after {
    display: none;
  }

  .heading > span {
    position: relative;
  }

  .heading > span:before {
    content: '';
    width: 54px;
    right: -58px;
    border-top: 1px solid #c0c0c0;
    position: absolute;
    top: 50%;
  }

  .heading > span:after {
    content: '';
    width: 54px;
    left: -58px;
    border-top: 1px solid #c0c0c0;
    position: absolute;
    top: 50%;
  }
}


.section-description {
  font-size: 3rem;
  color: #000000;
  margin-top: 56px;
}

.section-sub-description {
  font-size: 1.4rem;
  color: #000000;
}

.section-sub-description-gray {
  padding: 10px;
  font-size: 1.4rem;
  color: #000000;
  background-color: lightgrey;
}

.section-interview-title {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: bold;
  color: #1E90FF;
  text-align: left;
}

.section-interview {
  font-size: 1.6rem;
  color: #000000;
  text-align: left;
    line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .section-description {
    width: 100%;
    max-width: 100%;
    font-size: 2rem;
    line-height: 3rem;
  }

  .section-description.section-description-top {
    position: relative;
    margin: 56px auto;
  }

  .section-description.section-description-top::before {
    content: '';
    position: absolute;
    display: block;
    width: 26px;
    height: 22px;
    background-image: url("../../assets/images/quotation-mark-up.svg");
    background-repeat: no-repeat;
    background-size: cover;
    left: 24px;
    top: -30px;
  }

  .section-description.section-description-top::after {
    content: '';
    position: absolute;
    display: block;
    width: 26px;
    height: 22px;
    background-image: url("../../assets/images/quotation-mark-down.svg");
    background-repeat: no-repeat;
    background-size: cover;
    right: 24px;
    bottom: -30px;
  }

  .section-sub-description {
    margin: 0 auto 63px;
    line-height: 2.8rem;
  }
}

.c-caseInfo{
    margin-bottom: 120px;
  text-align: center;
}
.c-caseInfo__logo{
    margin-top: 20px;
    margin-bottom: 20px;
    display: block;
}
.c-caseInfo__text{
    font-weight: bold;
    font-size: 1.4rem;
}
.c-caseInfo__text dt{
    margin-left: 0;
}
.c-caseInfo__text dd{
    margin-left: 0;
}
.c-caseInfo__text a{
    color: #1E90FF;
}
.c-caseInfo__text a:hover{
    text-decoration: none;
}

@media screen and (max-width: 768px) {
  .c-caseInfo{
    margin-bottom: 100px;
  }
}

/*------------------------------------------------------------
お客様の声
--------------------------------------------------------------*/


.voice-box {
  margin-top: 56px;
  width: 960px;
  height: 238px;
  border: 2px solid #2f7fb8;
  display: flex;
}

.voice-box__case-point{
  background-color: #2f7fb8;
  width: 240px;
  padding:8px 32px ;
  text-align: left;
}

.voice-box__case-point__number {
  color: #fff;
  font-weight: bold;
  padding-bottom: 16px;
  font-size: 2.0rem;
  border-bottom: 2px #fff solid;
}

.voice-box__case-point p{
  font-weight: bold;
  color: #fff;
  margin: 24px 0 4px;
}

.voice-box__case-point li{
  color: #fff;
  margin-bottom: 4px;
  font-weight: 700;
  padding-left: 18px;
  background-image: url("../../assets/images/voice_checkbox.svg");
  background-repeat: no-repeat;
  background-position: 0% 50%;
}

.voice-box__customer{
  width: 720px;
  text-align: left;
  padding: 16px 32px;

}

.voice-box__customer h3 {
  font-size: 2.0rem;
  color: #2f7fb8;
  margin: 16px 0;
}

.voice-box__customer__info {
  display: inline-flex;
}

.voice-box__customer__details {
  display: inline-flex;
  margin-left: 24px;
}

.voice-box__customer dt{
  font-weight: 700;
  background-color: #2f7fb8;
  color: #fff;
  padding: 2px 8px;
}
.voice-box__customer dd{
  font-weight: 700;
  margin-left: 8px;
  vert-align: middle;
  padding-top: 2px;
}

.voice-box__customer p{
  line-height: 1.8em;
}

@media screen and (max-width: 768px) {
  /*　スマホ版 　*/
  .voice-box {
    height: auto;
    border: 2px solid #2f7fb8;
    width: 100%;
    display: block;
    margin: 56px auto;
  }
  .voice-box__case-point{
    width: auto;
    padding:4px 20px 16px;
  }
  .voice-box__case-point__number {
    padding-bottom: 12px;
  }
  .voice-box__case-point p{
    margin: 20px 0 4px;
  }
  .voice-box__case-point li{
    color: #fff;
    font-weight: 700;
    padding-left: 18px;
    display: inline;
    background-image: url("../../assets/images/voice_checkbox.svg");
    background-repeat: no-repeat;
    background-position: 0% 50%;
    white-space: nowrap;
  }
  .voice-box__customer {
    width: auto;
    padding: 16px 20px;
  }
  .voice-box__customer__info {
    display: flex;
    margin-bottom: 4px;
  }
  .voice-box__customer__details {
    flex-wrap: wrap;
    margin-left: 0;
  }
  .voice-box__customer dt {
    flex-shrink: 0;
    font-weight: 700;
    font-size:1.2rem;
    padding: 2px 8px;
    margin-bottom: 4px;
  }
  .voice-box__customer p {
    line-height: 1.75em;
    margin: 20px auto 12px;
  }
}


/*------------------------------------------------------------
　お問い合わせ
--------------------------------------------------------------*/
#inquiry-section{
  width: 100%;
  min-width: 960px;
  background-color: #2f7fb8;
  margin-top: 56px;
  padding: 32px;
}
.inquiry-section__message {
  color: #FFFFFF;
  font-size: 20px;
  margin-bottom: 32px;
}
/*---------お問い合わせボタン---------*/
.inquiry-section__button {
  display: inline-block;
  border-radius: 4px;
  width: 320px;
  height: 64px;
  font-size: 18px;
  text-align: center;
  position: relative;
  z-index: 2;
  background-color: #2f7fb8;
  border: 2px solid #FFF;
  color: #2f7fb8;
  line-height: 60px;
  font-weight: 600;
}
.inquiry-section__button:hover {
  background-color: #2f7fb8;
  border-color: #FFF;
  color: #fff;
}
.inquiry-section__button::before,
.inquiry-section__button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
  top: 0;
  width: 50%;
  height: 100%;
  background-color: #ffffff;
}
.inquiry-section__button::before {
  right: 0;
}
.inquiry-section__button::after {
  left: 0;
}
.inquiry-section__button:hover::before,
.inquiry-section__button:hover::after {
  width: 0;
  background-color: #2f7fb8;
}
.inquiry-section__button,
.inquiry-section__button::before,
.inquiry-section__button::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media screen and (max-width: 768px) {
  #inquiry-section{
    min-width: auto;
  }
  .inquiry-section__button {
    width: 100%;
    height: 64px;
  }
}

/*---------お問い合わせボタンここまで---------*/
/*---------お問い合わせボタン その2---------*/
.inquiry-section__button2 {
  display: inline-block;
  border-radius: 4px;
  width: 320px;
  height: 64px;
  font-size: 18px;
  text-align: center;
  position: relative;
  z-index: 2;
  background-color: #FFFFFF;
  border: 2px solid #2f7fb8;
  color: #FFFFFF;
  line-height: 60px;
  font-weight: 600;
}
.inquiry-section__button2:hover {
  background-color: #ffffff;
  border-color: #2f7fb8;
  color: #2f7fb8;
}
.inquiry-section__button2::before,
.inquiry-section__button2::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
  top: 0;
  width: 50%;
  height: 100%;
  background-color: #2f7fb8;
}
.inquiry-section__button2::before {
  right: 0;
}
.inquiry-section__button2::after {
  left: 0;
}
.inquiry-section__button2:hover::before,
.inquiry-section__button2:hover::after {
  width: 0;
  background-color: #2f7fb8;
}
.inquiry-section__button2,
.inquiry-section__button2::before,
.inquiry-section__button2::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media screen and (max-width: 768px) {
  #inquiry-section{
    min-width: auto;
  }
  .inquiry-section__button {
    width: 100%;
    height: 64px;
  }
}

/*---------お問い合わせボタンここまで---------*/

.inquiry__tel {
  color: #FFFFFF;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: baseline;
}

.inquiry__tel__no {
  font-size: 24px;
  letter-spacing: 0.2rem;
  background-image: url("../../assets/images/icon_tel.svg");
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 30px;
}

.inquiry__tel__no a {
  color: #fff;
}

.inquiry__tel__time {
  font-size: 13px;
  margin-left: 12px;
}

@media screen and (max-width: 768px) {
  .inquiry__tel {
    display: block;
  }
  .inquiry__tel__no {
    margin: 24px auto 8px;
    font-size: 24px;
    width: 240px;
    letter-spacing: 0.2rem;
    background-image: url("../../assets/images/icon_tel.svg");
    background-repeat: no-repeat;
  }
}

/*------------------------------------------------------------
　フッター
--------------------------------------------------------------*/
footer {
  width: 100%;
}
#footer_info {
  width: 960px;
  margin: 0 auto ;
  padding: 24px 0;
}
/*---------フッター認証関連----------*/
.footer__privacy{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__privacy_navMenu
{
  text-align: left;
}
.footer__privacy_navItem
{
  font-size: 13px;
  color: #444444;
  line-height: 28px;
  padding-left: 16px;
  background-image: url("../../images/footer/footer_icon_right.svg");
  background-repeat: no-repeat;
  background-position: left center;

}

.privacymark {
  text-align: right;
  margin-bottom: 4px;
}
.privacymark img {
  height: 60px;
  padding-left: 8px;
  padding-right: 8px;
}
/*---------フッターシーズ関連情報----------*/
.footer__seedsInfo {
  margin-top: 20px;
  padding-top: 14px;
  border-top: #cccccc 1px solid;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer_service {
  display: inline-block;
  margin-right:20px;
  vertical-align: middle;
}

.footer_service:first-child {
  margin-right: 4px;
}

#copyright {
  color: #666;
  font-size: 1.2rem;
}
/*---------スマートフォン表示----------*/
@media screen and (max-width: 768px) {
  #footer_info {
    width: 100%;
    padding: 16px;
  }
  .footer__privacy{
    display: block;
  }
  .footer__privacy_navMenu {
    display: flex;
    flex-wrap: wrap;
    text-align: left;
    margin-bottom: 20px;
  }
  .footer__privacy_navItem {
    margin-right: 8px;
  }
  .privacymark {
    text-align: center;
  }
  .footer__seedsInfo {
    display: block;
  }
  .footer_service__info {
    text-align: left;
    margin-bottom: 20px;
  }
  .footer_service {
    margin: 0 18px 12px 0;
  }
  #copyright {
    color: #666;
    font-size: 1.2rem;
    margin: 8px 0;
  }
}

/*------------------------------------------------------------
　上に戻る
--------------------------------------------------------------*/
.page-top {
  margin: 0 ;
  padding: 0 ;
}

.page-top p {
  font-size: 2.5rem;
  margin: 0 ;
  padding: 0 ;
  position: fixed ;
  right: 16px ;
  bottom: 16px ;

}

.move-page-top {
  cursor: pointer;
  display: block ;
  width: 60px ;
  height: 60px ;
  color: #fff;
  background: #2f7fb8 ;

  border-radius: 60px;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;

  line-height: 60px ;
  text-decoration: none ;
  text-align: center ;

  -webkit-transition:all 0.3s ;
  -moz-transition:all 0.3s ;
  transition:all 0.3s ;
  opacity: 0.8 ;
}

.move-page-top:hover {
  opacity: 1;
  color: #fff;
}

/* ---デフォルト非表示---- */
.page-top {
  display: none;
}

.u-brSp {
  display: none;
}

@media screen and (max-width: 767px) {
  .u-brSp {
    display: block;
  }
}

/*--------------------------------
　説明会
----------------------------------*/
.c-briefingRead {
  width: 960px;
  padding-top: 0;
}
.awsConsultingMtg__heading__txt {
  color: #666666;
  font-weight: 500;
  line-height: 2.8rem;
  font-size: 16px;
  padding: 16px 0 0;
  margin-bottom: 32px;
}
.awsConsultingMtg__heading__img {
  margin: 0 auto;
  width: 960px;
}
.awsConsultingMtg__heading__img__sp {
  display: none;
}

.awsConsultingMtg__read {
  color: #FC7735;
  font-weight: bold;
  text-align: center;
  font-size: 16px;
  margin: 32px auto 24px;
}

.c-briefingRead__hero > img {
  width: inherit;
}

.c-briefingRead__text {
  font-size: 1.6rem;
  line-height: 1.8;
  width: 720px;
  min-width: 720px;
  margin: auto;
  text-align: left;
  margin-bottom: 40px;
  border-bottom: solid 1px #eee;
}

.awsConsultingMtg__solution {
  margin-bottom: 24px;
}

.awsConsultingMtg__solution__title {
  background-color: #FC7735;
  color: #fff;
  font-weight: 700;
  padding: 12px 16px;
  font-size: 18px;
  margin-top: 0;
}

.awsConsultingMtg__solution__q {
  color: #666666;
  margin-left: 4px;
  font-size: 16px;
  font-weight: 600;
  line-height: 2.0rem;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  background-image: url("../../assets/images/icon_orange-check.svg");
  background-repeat: no-repeat;
  background-position: left center;
}

.c-briefingRootBlock {
  padding: 0;
}

.c-briefingBlock {
  padding-top: 150px;
  margin-top: -150px;
  margin-bottom: 90px;
  text-align: left;
  width: 707px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .c-briefingBlock {
    margin-bottom: 64px;
  }
}

.c-briefingBlock__ttl {
  margin-bottom: 30px;
  color: #8990a3;
  font-weight: normal;
  font-size: 1.6rem;
  margin-top: 0;
}

.c-briefingBlock__text {
  font-size: 1.5rem;
  line-height: 1.5;
}

.c-briefingBlock__text a {
  display: block;
  text-decoration: underline;
  margin-top: .5em;
}

.c-briefingBlock__text--bg {
  padding: 32px;
  background-color: #f3f3f3;
  line-height: 1.7;
}

@media screen and (max-width: 768px) {
  .awsConsultingMtg__heading__txt {
    text-align: left;
    padding: 16px 16px 0;
  }
  .awsConsultingMtg__heading__img {
    display: none;
  }
  .awsConsultingMtg__heading__img__sp {
    display: block;
    width: 100%;
  }

  .c-briefingBlock__text--bg {
    padding: 16px;
  }
  .awsConsultingMtg__solution__title {
    font-size: 16px;
  }
}

.c-briefingBlock__requiredMark {
  color: #c60000;
}

.c-briefingBlock__form {
  margin-top: 32px;
}

.c-briefingBlock__form input,
.c-briefingBlock__form textarea {
  display: block;
  width: 100%;
  border: 1px solid #ccc;
  background-color: #fff;
  border-radius: 0;
}

.c-briefingBlock__form input.is-valid,
.c-briefingBlock__form textarea.is-valid {
  background-color: #fff1f0;
}

.c-briefingBlock__formItem__valid {
  color: #c60000;
  font-size: 1.2rem;
}

.c-briefingBlock__tableItem__gmap {
  margin-top: .5em;
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}

.c-briefingBlock__tableItem__gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.c-briefingBlock__form input {
  height: 30px;
  line-height: 30px;
}

.c-briefingBlock__form textarea {
  height: 200px;
}

.c-briefingBlock__formItem {
  display: flex;
  align-items: baseline;
}

.c-briefingBlock__formItem + .c-briefingBlock__formItem {
  margin-top: 32px;
}

.c-briefingBlock__formItem > dt {
  width: 14em;
}

.c-briefingBlock__formItem__requiredMark {
  position: relative;
}

.c-briefingBlock__formItem__requiredMark::after {
  content: '*';
  color: #c60000;
  position: absolute;
  right: -8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.c-briefingBlock__formItem__subComment {
  font-size: 1.2rem;
  color: #999;
}

.c-briefingBlock__formItem > dd {
  width: calc(100% - 14em);
}

.c-briefingBlock__table {
  width: 100%;
  table-layout: fixed;
}

.c-briefingBlock__tableItem {
  border: 1px solid #ccc;
  vertical-align: top;
}

.c-briefingBlock__tableItem > th,
.c-briefingBlock__tableItem > td {
  padding: 32px;
}

@media screen and (max-width: 768px) {
  .c-briefingBlock__tableItem > th,
  .c-briefingBlock__tableItem > td {
    text-align: left;
    display: block;
    padding: 8px 10px;
  }
}

.c-briefingBlock__tableItem > th {
  width: calc(4em + 64px);
  background-color: #f3f3f3;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .c-briefingBlock__tableItem > th {
    width: auto;
  }
}

.c-briefingBlock__tableItem a {
  text-decoration: underline;
}

.c-briefingBlock__btn {
  display: block;
  width: 100%;
  max-width: 310px;
  height: 45px;
  line-height: 45px;
  margin: 32px auto 0;
  border-radius: 7px;
  border: none;
  background-color: rgb(252, 119, 53);
  color: rgb(255, 255, 255);
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}

.c-briefingBlock__btn:disabled {
  opacity: .6;
}

.c-briefingBlock__edit {
  display: block;
  color: #333;
  font-weight: normal;
  font-size: 1.4rem;
  text-decoration: underline;
  margin: 0 auto 20px;
  height: auto;
  background: none;
  border: none;
}

.c-briefingBlock__formAfreeCheck {
  text-align: center;
  margin-top: 32px;
}

.c-briefingBlock__formAfreeCheck a {
  text-decoration: underline;
}

.c-briefingBlock__formAfreeCheck > input,
.c-briefingBlock__formRadio > input {
  display: none;
}

.c-briefingBlock__formAfreeCheck > label,
.c-briefingBlock__formRadio > label {
  display: inline-block;
  position: relative;
  padding-left: 24px;
}

.c-briefingBlock__formAfreeCheck > label::before,
.c-briefingBlock__formRadio > label::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #444;
}

.c-briefingBlock__formAfreeCheck > input:checked + label::after,
.c-briefingBlock__formRadio > input:checked + label::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 4px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: rgb(47, 127, 184);
  border-radius: 50%;
}

@media screen and (max-width: 768px) {
  .c-briefingRead__hero > img {
    width: 100%;
  }

  .c-briefingRead__text {
    width: 100%;
    min-width: inherit;
    font-size: 1.4rem;
  }

  .c-briefingRootBlock {
    padding: 0 15px;
  }

  .c-briefingBlock {
    width: 100%;
  }

  .c-briefingBlock__img > img {
    width: 100%;
  }

  .c-briefingRead__hero__text {
    position: static;
    font-size: 1.6rem;
    margin-top: 12px;
    padding: 16px 0;
  }

  .c-briefingBlock__formItem {
    display: block;
  }

  .c-briefingBlock__formItem > dt {
    width: 100%;
    margin-bottom: .2em;
  }

  .c-briefingBlock__formItem > dd {
    width: 100%;
    margin: 0;
  }
}

/*--------------------------------
インタビュー　前後記事のリンク
----------------------------------*/
/*---------共通----------*/
.prevnext{
  width: 960px;
  margin: 0 auto 56px;
  border-top: #cccccc 1px solid;
  border-bottom: #cccccc 1px solid;
  display: flex;
}
.prevnext__message {
  font-size: 13px;
  color: #666666;
  font-style: italic;
  margin: 0;
}
.prevnext__company {
  margin: 0 0 10px 0;
}
.prevnext__img{
  flex-shrink: 0;
}

.prevnext__boxs :hover {
  opacity: 0.8;
  transition: 0.3s;
}
/*---------prev----------*/
.prevnext__prev-ttl {
  font-size: 13px;
  font-weight: 700;
  color: #2F7FB8;
  background-image: url("../../assets/images/icon_prev.svg");
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 20px;
}
.prevnext__prev {
  width: 50%;
  border-right: #cccccc 1px solid;
  text-align: left;
}
.prevnext__prevbox{
  display: flex;
  align-items: flex-start;
  padding: 0 16px 16px 0;
}
.prevnext__prevbox__txt{
  padding-left: 16px;
}
/*---------next----------*/
.prevnext__next-ttl {
  font-size: 13px;
  font-weight: 700;
  color: #2F7FB8;
  background-image: url("../../assets/images/icon_next.svg");
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 20px;
}
.prevnext__next {
  text-align: right;
  width: 50%;
}
.prevnext__nextbox{
  display: flex;
  text-align: left;
  padding:0 0 16px 16px;
}
.prevnext__nextbox__txt{
  padding-left: 16px;
}

/*---------スマートフォン表示----------*/

@media screen and (max-width: 768px) {
  .prevnext{
    width: 100%;
    margin: 0 auto 32px;
    display: block;
  }
  .prevnext__prev {
    border-right: none;
    border-bottom: #cccccc 1px solid;
    width: 100%;
    padding: 0 12px 16px;
  }
  .prevnext__next {
    width: 100%;
    padding: 0 12px 16px;
  }
  .prevnext__nextbox {
    padding:0;
  }
  .prevnext__prevbox {
    padding:0;
  }
}
/*--------------------------------
インタビュー　トップページ
----------------------------------*/
.interview-section {
  padding-top: 0px;
  width: 100%;
}
.interview-heading {
  background-color: #EEEEEE;
  padding: 56px 0 48px 0;
  width: 100%;
  margin: 0 auto 56px;
}
.interview-heading h1 {
  color: #2F7FB8;
}
.interview-heading p {
  color: #666666;
  font-weight: 500;
  font-size: 16px;
}
.interview-box {
  width: 960px;
  display: flex;
  margin: 0 auto 32px;
  border-bottom: #EEEEEE 1px solid;
  padding: 0 24px 32px;
}

.interview-box__info {
  text-align: left;
  width: 584px;
  padding-right: 32px;
}

.interview-box__message {
  font-size: 20px;
  font-weight: 500;
}

.interview-box__company {
  color: #2F7FB8;
  font-size: 16px;
  font-weight: 700;
}

.interview-box__explan {
  color: #666666;
}

.interview-box__goToInterview {
  font-weight: 700;
  position: relative;
  display: inline-block;
  border-bottom: 1px solid #FC7735;
  padding: 12px 36px 8px 2px;
  color: #FC7735;
  text-decoration: none;
  margin-left: 60%;
  margin-top: 0;
}

.interview-box__goToInterview:hover {
  color: #FC7735;
}

.interview-box__goToInterview::after {
  position: absolute;
  top: 50%;
  right: .2em;
  content: '';
  margin-top: -4.5px;
  border: 7px solid transparent;
  border-top-width: 5px;
  border-bottom-width: 5px;
  border-left-color: #FC7735;
  transition: all .2s;
}

.interview-box__goToInterview:hover::after {
  right: -.05em;
  color: #FC7735;
}

/*---------スマートフォン表示----------*/

@media screen and (max-width: 768px) {
  .interview-section {
    padding: 0px;
    width: 100%;
    margin-top: 0;
  }
  .interview-heading {
    background-color: #EEEEEE;
    padding: 32px 0 24px;
    width: 100%;
    margin: 0 auto 56px;
  }
  .interview-heading h1 {
    font-size: 24px;
  }
  .interview-heading p {
    font-size: 14px;
  }

  .interview-box {
    display: block;
    margin: 0 auto 32px;
    padding: 0 0 40px;
    width: 92%;
  }
  .interview-box__message {
    font-size: 18px;
    font-weight: 500;
  }
  .interview-box__img {
    width: 100%;
  }
  .interview-box__goToInterview {
    margin-left: 0;
    margin-bottom: 16px;
  }
}
/*---------end------------*/
