@charset "UTF-8";
:root {
  scroll-padding: 70px;
  scroll-behavior: smooth; }

.pc {
  display: block; }

.sp {
  display: none; }

br.pc {
  display: inline; }

br.sp {
  display: none; }

img {
  width: 100%;
  height: auto;
  vertical-align: bottom; }

html {
  font-size: 1.15rem;
  line-height: 1.9rem; }

p {
  margin-bottom: 2rem; }

.row {
  width: 100%;
  max-width: 1000px;
  padding: 0 2%;
  margin: 0 auto;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box; }

/* HEADER
*******************************/
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  z-index: 8;
  background-color: #179397; }
  header .row {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center; }
  header .site_id {
    width: 350px;
    position: relative;
    z-index: 9; }
    header .site_id p {
      margin-bottom: 0; }
  header .navigation {
    text-align: right; }
    header .navigation ul {
      display: flex;
      list-style: none;
      margin: 0;
      padding-left: 0;
      justify-content: flex-end; }
      header .navigation ul li a {
        text-decoration: none; }

/*********************************************
ハンバーガーメニュー
**********************************************/
.btn {
  position: relative;
  /*top: 16px;
  right: 16px;*/
  z-index: 10;
  width: 120px;
  height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center; }
  .btn p {
    color: #FFF;
    font-weight: bold;
    font-size: 1.15rem;
    margin-bottom: 0;
    font-size: 1rem; }

/***** 真ん中のバーガー線 *****/
.btn-line {
  display: block;
  position: relative;
  width: 34px;
  height: 4px;
  background-color: #FFF;
  transition: .2s; }
  .btn-line::before, .btn-line::after {
    content: "";
    position: absolute;
    width: 34px;
    height: 100%;
    background-color: #FFF;
    transition: .5s; }
  .btn-line::before {
    transform: translate(-100%, -10px); }
  .btn-line::after {
    transform: translate(-100%, 10px); }
  .btn-line.open {
    background-color: transparent; }
    .btn-line.open::before, .btn-line.open::after {
      content: "";
      background-color: #FFF;
      transition: .2s; }
    .btn-line.open::before {
      transform: translate(-100%, 0) rotate(45deg); }
    .btn-line.open::after {
      transform: translate(-100%, 0) rotate(-45deg); }

/**************** ここまで、ハンバーガーボタンのスタイリング ****************/
/**************** 以下、メニューのスタイリング ****************/
header .navigation ul {
  justify-content: flex-start; }

.menu {
  position: fixed;
  top: calc(-50vh - 70px);
  left: 0;
  width: 100%;
  height: 50vh;
  background-color: rgba(23, 147, 151, 0.7);
  transition: .3s;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center; }
  .menu.open {
    position: absolute;
    right: 0;
    top: 70px; }

.menu ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2%; }

.menu-list {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32%;
  padding: 0.4rem 1rem;
  box-sizing: border-box;
  color: #FFF; }
  .menu-list:hover {
    background-color: rgba(255, 255, 255, 0.5);
    color: #333;
    cursor: pointer;
    transition: .3s; }

/*********************************************
HEADLINE
**********************************************/
#headline {
  width: 100%;
  height: 100vh;
  background-image: url("../images/sp_bg@2x.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover; }
  #headline .main_movie-cover {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    margin: 0 auto; }
    #headline .main_movie-cover iframe {
      position: absolute;
      top: 0;
      left: 0;
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto; }
    #headline .main_movie-cover::after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background-color: rgba(0, 0, 0, 0.3); }
  #headline .catch {
    width: 90%;
    max-width: 500px;
    position: absolute;
    top: calc(50% + 70px);
    left: 50%;
    transform: translate(-50%, -50%); }
    #headline .catch h1 {
      text-align: center; }
      #headline .catch h1 figcaption {
        font-size: 2rem;
        font-weight: bold;
        text-align: center;
        line-height: 3.2rem;
        padding-left: 1rem;
        box-sizing: border-box;
        color: #FFF; }
        #headline .catch h1 figcaption span {
          font-size: 1.4rem;
          line-height: 1.6rem; }
      #headline .catch h1 img {
        width: 90%; }
  #headline a {
    display: block;
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.1rem;
    color: #FFF; }
    #headline a::before {
      content: '';
      display: block;
      width: 1px;
      height: 5vh;
      background-color: #FFF;
      position: absolute;
      top: calc(90% + 0.6rem);
      left: 50%;
      transform: translateX(-50%); }
    #headline a::after {
      content: '';
      display: block;
      width: 0;
      height: 0;
      border-top: #FFF 10px solid;
      border-left: solid 10px transparent;
      border-right: solid 10px transparent;
      position: absolute;
      bottom: calc(10% - 5vh - 0.8rem);
      left: 50%;
      transform: translateX(-50%); }

/*********************************************
縦型動画紹介
**********************************************/
#movie1 h2 {
  padding: 70px 2%;
  background-image: url("../images/p02@2x.png");
  background-repeat: no-repeat;
  background-position: right 10% center;
  background-size: auto 130%;
  text-align: center;
  font-size: 2rem;
  line-height: 2.6rem;
  font-weight: 900; }

.tate_movie {
  background-image: url("../images/p03@2x.png");
  background-position: center center;
  background-size: 30px; }
  .tate_movie .movie {
    text-align: center;
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    background-color: #000; }
    .tate_movie .movie video {
      height: 500px; }

/*********************************************
問い合わせなどアクセス
**********************************************/
.for_access {
  padding: 5rem 0; }
  .for_access .row {
    max-width: initial;
    background-image: url("../images/p04@2x.png");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: auto 100%; }
    .for_access .row h2 {
      padding-left: 10%;
      font-size: 1.6rem;
      font-weight: 900;
      line-height: 2.2rem;
      margin-bottom: 2rem; }
    .for_access .row p {
      padding: 0 20% 0 7%;
      margin-bottom: 3rem; }
      .for_access .row p:nth-of-type(2) {
        padding: 0;
        font-size: 1rem;
        text-align: center;
        margin-bottom: 1.5rem; }
        .for_access .row p:nth-of-type(2)::before {
          content: '↓　';
          display: inline; }
        .for_access .row p:nth-of-type(2)::after {
          content: '　↓';
          display: inline; }
    .for_access .row ul {
      display: flex;
      justify-content: center;
      gap: 5%; }
      .for_access .row ul li {
        width: 300px; }
        .for_access .row ul li a {
          display: block;
          padding: 0.5rem 0;
          font-weight: bold;
          text-align: center;
          border: 1px solid #000;
          background-image: url("../images/p05@2x.png");
          background-repeat: no-repeat;
          background-position: right -5px bottom;
          background-size: auto 100%;
          background-color: #FFF; }

/*********************************************
サステナブルサーキットとは？
**********************************************/
#about {
  padding: 5rem 0 10rem; }
  #about ul {
    background-image: url("../images/p06@2x.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 90%;
    display: flex; }
    #about ul li {
      width: 50%; }
      #about ul li:first-child {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding: 2rem 1rem; }
        #about ul li:first-child h2 {
          text-align: center;
          font-size: 1.6rem;
          font-weight: 900;
          margin-bottom: 1.5rem; }
        #about ul li:first-child p {
          text-align: center; }

/*********************************************
3つの特徴
**********************************************/
#features {
  background-image: url("../images/p08@2x.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
  padding: 42% 0 5rem; }
  #features .row {
    padding: 3rem 0 5rem;
    max-width: initial;
    background-color: #004e33;
    background-image: url("../images/p09@2x.png"), url("../images/p10@2x.png");
    background-repeat: repeat-y, repeat-y;
    background-size: 180px, 180px;
    background-position: left 7% top, right 7% top; }
    #features .row h2 {
      width: 200px;
      height: 200px;
      text-align: center;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.6rem;
      font-weight: 900;
      background-color: #FFF;
      border-radius: 50%;
      margin: 0 auto; }
    #features .row ul {
      display: flex;
      justify-content: space-between;
      width: 84%;
      margin: 0 auto; }
      #features .row ul li {
        width: 30%; }
        #features .row ul li figure {
          height: 60%;
          overflow-y: inherit;
          text-align: center;
          display: flex;
          justify-content: center;
          align-items: center;
          margin-bottom: 0.5rem; }
          #features .row ul li figure img {
            width: 70%; }
        #features .row ul li h3 {
          font-size: 1.4rem;
          text-align: center;
          font-weight: 900;
          color: #FFF;
          margin-bottom: 0.5rem; }
        #features .row ul li p {
          text-align: center;
          color: #FFF;
          font-size: 1rem;
          line-height: 1.6rem; }

/*********************************************
エコドリ
**********************************************/
#eco-dri {
  padding: 5rem 0; }
  #eco-dri .row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; }
    #eco-dri .row h2 {
      width: 100%;
      margin-bottom: 2rem; }
      #eco-dri .row h2 img {
        width: 100%;
        max-width: 570px; }
    #eco-dri .row .text {
      width: 53%; }
    #eco-dri .row figure {
      width: 45%; }

/*********************************************
無電源工学ってなぁに？
**********************************************/
#muden {
  padding: 5rem 0; }
  #muden .row h2 {
    margin-bottom: 2rem; }
  #muden .row p {
    font-size: 1.25rem;
    font-weight: bold; }
    #muden .row p:last-child {
      margin-bottom: 0; }

/*********************************************
ドリフトテクニックをマスターしよう！
**********************************************/
#dri-tech {
  padding: 5rem 0 7rem; }
  #dri-tech .row h2 {
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem; }
    #dri-tech .row h2 span {
      position: relative; }
      #dri-tech .row h2 span::before {
        content: '重要なスキル【スピード、タイミング、バランス】';
        display: block;
        text-align: left;
        position: absolute;
        top: 100%;
        left: 0;
        font-size: 0.8rem; }
      #dri-tech .row h2 span::after {
        content: '難易度　★★★★☆';
        display: block;
        text-align: right;
        position: absolute;
        top: 100%;
        right: 0;
        font-size: 0.8rem; }
  #dri-tech .row ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; }
    #dri-tech .row ul li {
      margin-bottom: 2.5rem; }
      #dri-tech .row ul li:nth-child(odd) {
        width: 45%; }
        #dri-tech .row ul li:nth-child(odd) figure {
          width: 75%; }
        #dri-tech .row ul li:nth-child(odd) h3 {
          font-size: 1.2rem;
          font-weight: 900; }
        #dri-tech .row ul li:nth-child(odd) p {
          margin-bottom: 0; }
      #dri-tech .row ul li:nth-child(even) {
        width: 44%; }

/*********************************************
実績（イベント・メディア）
**********************************************/
#achieve {
  background-color: #179397;
  padding: 5rem 0 8rem; }
  #achieve .row h2 {
    font-size: 2.4rem;
    font-weight: 900;
    color: #FFF;
    margin-bottom: 2rem; }
    #achieve .row h2:nth-last-of-type(1) {
      text-align: center; }
      #achieve .row h2:nth-last-of-type(1) img {
        width: 85%;
        max-width: 553px; }
  #achieve .row p.intro {
    background-color: #eaf6fd;
    border-radius: 10px;
    padding: 0.8rem 1.2rem;
    color: #179397;
    font-size: 1.4rem;
    line-height: 2.2rem;
    font-weight: bold;
    letter-spacing: 0.1rem;
    margin-bottom: 3rem; }
  #achieve .row ul {
    display: flex; }
    #achieve .row ul li figcaption {
      color: #FFF;
      text-align: center; }
    #achieve .row ul.event2 {
      justify-content: center;
      margin-bottom: 1.5rem;
      gap: 2%; }
      #achieve .row ul.event2 li:first-child {
        width: 36.8%; }
      #achieve .row ul.event2 li:last-child {
        width: 32.2%; }
    #achieve .row ul.event3 {
      justify-content: space-between;
      margin-bottom: 2.5rem; }
      #achieve .row ul.event3 li:first-child {
        width: 33.2%; }
      #achieve .row ul.event3 li:nth-child(2) {
        width: 37.1%; }
      #achieve .row ul.event3 li:last-child {
        width: 25%; }
    #achieve .row ul.event4 {
      border: 1px solid #FFF;
      justify-content: space-between;
      padding: 1.5rem;
      margin-bottom: 5rem; }
      #achieve .row ul.event4 li {
        width: 48%;
        color: #FFF; }
        #achieve .row ul.event4 li p {
          margin-bottom: 0;
          font-weight: bold; }
        #achieve .row ul.event4 li figure {
          text-align: right; }
          #achieve .row ul.event4 li figure img {
            width: 80%; }
    #achieve .row ul.media3 {
      justify-content: space-between;
      margin-bottom: 2.5rem; }
      #achieve .row ul.media3 li:first-child {
        width: 28.6%; }
      #achieve .row ul.media3 li:nth-child(2) {
        width: 37.9%; }
      #achieve .row ul.media3 li:last-child {
        width: 28.6%; }
  #achieve .row > p:last-child {
    text-align: center;
    font-size: 2rem;
    line-height: 2.8rem;
    color: #FFF;
    margin-bottom: 0; }

/*********************************************
体験した皆様の声
**********************************************/
#experi {
  padding: 7rem 0; }
  #experi .row h2 {
    font-size: 2.4rem;
    font-weight: 900;
    margin-bottom: 4rem; }
  #experi .row ul li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem; }
    #experi .row ul li:last-child {
      margin-bottom: 0; }
    #experi .row ul li figure {
      width: 33.1%; }
    #experi .row ul li div {
      border: 3px solid #000;
      border-radius: 30px;
      padding: 1.5rem;
      width: 62%;
      display: flex;
      justify-content: center;
      flex-direction: column;
      position: relative; }
      #experi .row ul li div::before {
        content: '';
        display: block;
        width: 0;
        height: 0;
        border-top: 25px solid #000;
        border-right: 25px solid transparent;
        border-left: 25px solid transparent;
        position: absolute;
        left: -35px;
        top: 80px;
        transform: rotate(-45deg); }
      #experi .row ul li div::after {
        content: '';
        display: block;
        width: 0;
        height: 0;
        border-top: 25px solid #FFF;
        border-right: 25px solid transparent;
        border-left: 25px solid transparent;
        position: absolute;
        left: -28px;
        top: 77px;
        transform: rotate(-45deg); }
      #experi .row ul li div h3 {
        font-size: 1.2rem;
        font-weight: 900;
        margin-bottom: 0.5rem; }
      #experi .row ul li div p {
        margin-bottom: 0; }
    #experi .row ul li:nth-child(2) figure {
      order: 2; }
    #experi .row ul li:nth-child(2) div {
      order: 1; }
      #experi .row ul li:nth-child(2) div::before {
        left: auto;
        right: -35px;
        top: 80px;
        transform: rotate(45deg); }
      #experi .row ul li:nth-child(2) div::after {
        left: auto;
        right: -28px;
        top: 77px;
        transform: rotate(45deg); }

/*********************************************
イベント開催イメージ
**********************************************/
#kaisai {
  background-color: #179397;
  padding: 5rem 0 8rem; }
  #kaisai h2 {
    font-size: 2.4rem;
    font-weight: 900;
    color: #FFF;
    width: 100%;
    max-width: 1000px;
    padding: 0 2%;
    margin: 0 auto 4rem;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box; }
  #kaisai ul.slick01 li {
    padding: 0 15px; }

/*********************************************
サステナブルサーキット頂上決戦
**********************************************/
#chojo {
  padding: 8rem 0 0; }
  #chojo .row h2 {
    font-size: 2.2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2rem;
    font-feature-settings: "palt";
    line-height: 2.7rem; }
    #chojo .row h2 + p {
      font-size: 1.25rem;
      font-weight: bold;
      line-height: 2.1rem; }

/*********************************************
導入メリット
**********************************************/
#merit {
  background-color: #eaedf7;
  padding: 5rem 0 7rem; }
  #merit .row h2 {
    font-size: 1.6rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2rem; }
    #merit .row h2 span {
      font-size: 1.2rem; }
  #merit .row h3 {
    font-size: 1.3rem;
    font-weight: 900;
    padding: 0.2rem 1.2rem;
    border-bottom: 2px solid #000;
    position: relative;
    margin-bottom: 1.5rem; }
    #merit .row h3::before {
      content: '';
      display: block;
      width: 6px;
      height: 1.5rem;
      background-color: #000;
      position: absolute;
      top: 50%;
      left: 0;
      transform: translateY(-50%); }
  #merit .row p {
    padding: 0 1.2rem;
    margin-bottom: 3.5rem; }
    #merit .row p:last-child {
      margin-bottom: 0; }

/*********************************************
どんな会場も、サーキットに変わる。
**********************************************/
#circuit {
  padding: 7rem 0; }
  #circuit .row h2 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 2rem;
    text-align: center; }
  #circuit .row h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem; }
  #circuit .row dl {
    display: flex; }
    #circuit .row dl dt {
      white-space: nowrap;
      font-weight: normal; }
    #circuit .row dl:nth-of-type(4) {
      margin-bottom: 2.5rem; }
  #circuit .row ul li {
    margin-bottom: 7rem; }
    #circuit .row ul li:last-child {
      margin-bottom: 0; }

/*********************************************
開催までの流れ
**********************************************/
#flow {
  padding: 7rem 0;
  background-color: #f7f7f7; }
  #flow .row h2 {
    font-size: 1.7rem;
    font-weight: 900;
    margin-bottom: 4rem;
    text-align: center; }
  #flow .row figure {
    margin-bottom: 2rem; }
  #flow .row table tr:nth-child(odd) {
    background-color: #e7eaf0; }
  #flow .row table tr th {
    padding: 0.6rem 0.3rem 0.6rem 1rem;
    font-weight: 900;
    color: #426189;
    text-align: left;
    vertical-align: top;
    white-space: nowrap; }
  #flow .row table tr td {
    padding: 0.6rem 1rem 0.6rem 0.3rem;
    vertical-align: top; }

/*********************************************
Q＆A
**********************************************/
#faq {
  background-color: #fef3f5;
  padding: 7rem 0; }
  #faq .row h2 {
    font-size: 1.7rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 4rem; }
  #faq .row h3 {
    text-align: center;
    font-size: 1.3rem;
    padding: 0.3rem 0;
    color: #FFF;
    font-weight: bold;
    margin-bottom: 2rem; }
    #faq .row h3:nth-of-type(1) {
      background-color: #1f6fd3; }
    #faq .row h3:nth-of-type(2) {
      background-color: #418c18; }
    #faq .row h3:nth-of-type(3) {
      background-color: #c01680; }
  #faq .row ul {
    margin-bottom: 3rem; }
    #faq .row ul li {
      margin-bottom: 1.5rem; }
      #faq .row ul li:last-child {
        margin-bottom: 0; }
      #faq .row ul li h5.question {
        padding: 0.5rem 2rem 0.5rem 1rem;
        font-size: 1.2rem;
        font-weight: bold;
        position: relative; }
        #faq .row ul li h5.question::after {
          content: '';
          display: block;
          width: 15px;
          height: 15px;
          transform: rotate(-135deg) translate(-6px, 40%);
          position: absolute;
          top: 50%;
          right: 1.5rem; }
        #faq .row ul li h5.question.active::after {
          transform: rotate(45deg) translateY(-75%); }
      #faq .row ul li p.answer {
        padding: 1rem 1rem 0;
        margin: 0; }
        #faq .row ul li p.answer:nth-last-of-type(1) {
          margin-bottom: 0; }
  #faq .row .category {
    padding: 1.5rem; }
    #faq .row .category h4 {
      font-size: 1.2rem;
      font-weight: bold;
      color: #1f6fd3;
      margin-bottom: 1.5rem; }
      #faq .row .category h4::before {
        content: '■';
        display: inline; }
    #faq .row .category h5.question {
      color: #1f6fd3;
      border-bottom: 2px solid #1f6fd3; }
      #faq .row .category h5.question::after {
        border-right: 2px solid #1f6fd3;
        border-bottom: 2px solid #1f6fd3; }
  #faq .row .category2 {
    padding: 1.5rem; }
    #faq .row .category2 h4 {
      font-size: 1.2rem;
      font-weight: bold;
      color: #418c18;
      margin-bottom: 1.5rem; }
      #faq .row .category2 h4::before {
        content: '■';
        display: inline; }
    #faq .row .category2 h5.question {
      color: #418c18;
      border-bottom: 2px solid #418c18; }
      #faq .row .category2 h5.question::after {
        border-right: 2px solid #418c18;
        border-bottom: 2px solid #418c18; }
  #faq .row .category3 {
    padding: 1.5rem; }
    #faq .row .category3 h4 {
      font-size: 1.2rem;
      font-weight: bold;
      color: #c01680;
      margin-bottom: 1.5rem; }
      #faq .row .category3 h4::before {
        content: '■';
        display: inline; }
    #faq .row .category3 h5.question {
      color: #c01680;
      border-bottom: 2px solid #c01680; }
      #faq .row .category3 h5.question::after {
        border-right: 2px solid #c01680;
        border-bottom: 2px solid #c01680; }

/*********************************************
ご覧いただき、ありがとう
**********************************************/
#thanks {
  padding: 7rem 0; }
  #thanks .row p {
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 2.1rem; }
    #thanks .row p:last-child {
      margin-bottom: 0; }

/*********************************************
お問い合わせ
**********************************************/
#inquiry {
  background-color: #fff6e9;
  padding: 7rem 0; }
  #inquiry .row h2 {
    font-size: 1.6rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 4rem; }
  #inquiry .row table {
    margin: 0 auto 2rem; }
    #inquiry .row table tr th, #inquiry .row table tr td {
      padding: 0.3rem;
      text-align: left; }
  #inquiry .row input[type="text"], #inquiry .row input[type="email"], #inquiry .row input[type="tel"], #inquiry .row input[type="date"] {
    background-color: #FFF;
    border: 1px solid #999;
    height: 1.5rem;
    width: 20rem; }
  #inquiry .row textarea {
    background-color: #FFF;
    border: 1px solid #999;
    height: 6rem;
    width: 20rem; }
  #inquiry .row .policy_kakunin {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem; }
  #inquiry .row input[type="checkbox"] {
    width: 0.9rem;
    height: 0.9rem;
    border: 1px solid #999;
    background-color: #FFF;
    border-radius: 3px;
    margin-right: 0.2rem; }
  #inquiry .row .policy_txt {
    width: 100%;
    height: 200px;
    border: 1px solid #666;
    background-color: #FFF;
    overflow: scroll;
    margin-bottom: 1rem; }
    #inquiry .row .policy_txt p {
      padding: 1rem 1.5rem 0;
      margin-bottom: 1rem;
      font-size: 1rem;
      line-height: 1.7rem; }
    #inquiry .row .policy_txt ol {
      padding: 0 1.5rem 1rem 2.5rem;
      list-style: decimal; }
      #inquiry .row .policy_txt ol li {
        margin-bottom: 1rem; }
        #inquiry .row .policy_txt ol li ul {
          padding: 0.2rem 0 0 2rem;
          list-style: disc; }
          #inquiry .row .policy_txt ol li ul li {
            margin-bottom: 0.2rem; }
        #inquiry .row .policy_txt ol li span {
          padding-top: 0.5rem; }
  #inquiry .row .for_kakunin {
    text-align: center; }
    #inquiry .row .for_kakunin button.mfp_element_submit {
      margin: 0 auto;
      padding: 0.5rem 2rem;
      background: #179397;
      border-radius: 70px;
      color: #FFF;
      font-weight: bold;
      text-shadow: none; }
      #inquiry .row .for_kakunin button.mfp_element_submit:hover {
        background-color: #FFF;
        color: #179397; }

/*********************************************
公式LINEアカウント
**********************************************/
#line {
  background-color: #3aae36;
  padding: 5rem 0;
  background-image: url("../images/p48@2x.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 130%; }
  #line h2 {
    color: #FFF;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 2rem; }
  #line .row {
    display: flex;
    justify-content: space-between;
    align-items: center; }
    #line .row p {
      color: #FFF;
      margin-bottom: 0;
      width: calc(100% - 200px); }
    #line .row figure {
      background-color: #FFF;
      width: 180px; }

/*********************************************
FOOTER
**********************************************/
footer {
  background-color: #179397;
  padding: 2rem 0 0.5rem; }
  footer .row .logo {
    margin-bottom: 0.5rem; }
    footer .row .logo img {
      width: 80%;
      max-width: 520px; }
  footer .row address {
    color: #FFF;
    font-size: 0.9rem;
    line-height: 1.4rem;
    margin-bottom: 2.5rem; }
  footer .row .last {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem; }
    footer .row .last .access p {
      color: #FFF;
      font-size: 0.9rem;
      line-height: 1.4rem;
      margin-bottom: 0.5rem;
      letter-spacing: 0.05rem; }
    footer .row .last .access ul {
      display: flex;
      gap: 10px; }
      footer .row .last .access ul li {
        width: 50px; }
    footer .row .last .tokkyo {
      border: 1px solid #FFF;
      border-radius: 10px; }
  footer .row p.copyright {
    margin-bottom: 0;
    text-align: center;
    font-size: 0.85rem;
    color: #FFF;
    letter-spacing: 1px; }
    footer .row p.copyright span {
      padding-left: 1rem; }

/*********************************************
THANKS PAGE
**********************************************/
.thanks_page #headline::before {
  content: '';
  display: block;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1; }
.thanks_page #headline .catch {
  z-index: 2;
  color: #FFF; }
  .thanks_page #headline .catch p:first-child {
    text-align: center;
    font-weight: bold; }
.thanks_page #headline a {
  z-index: 2; }

@media (max-width: 950px) {
  #about ul li:first-child h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    letter-spacing: -2px; } }
@media (max-width: 950px) {
  .menu {
    height: auto;
    top: auto;
    bottom: 100%;
    padding: 70px 0; }
    .menu.open {
      bottom: auto; }
    .menu ul .menu-list {
      width: 49%; } }
@media (max-width: 900px) {
  .for_access .row {
    background-size: 250px auto;
    background-position: right bottom; }
    .for_access .row p {
      padding-right: calc(250px - 2%); }

  #features .row ul li figure {
    height: 50%; } }
@media (max-width: 767px) {
  .pc {
    display: none; }

  .sp {
    display: block; }

  br.pc {
    display: none; }

  br.sp {
    display: inline; }

  .row {
    padding: 0 5%; }

  p {
    font-size: 1rem;
    line-height: 1.7rem; }

  /***HEADLINE***/
  #headline .catch {
    top: 50%; }
    #headline .catch h1 figcaption {
      font-size: 1.3rem;
      line-height: 2.2rem; }
      #headline .catch h1 figcaption span {
        font-size: 1rem; }
  #headline a {
    width: 100%;
    text-align: center;
    font-size: 0.9rem; }

  #movie1 h2 {
    font-size: 1.3rem;
    line-height: 2rem;
    padding: 30px 2%;
    background-position: right -100px center; }

  .for_access {
    padding: 2.5rem 0; }
    .for_access .row {
      background-image: none; }
      .for_access .row h2 {
        padding-left: 0;
        text-align: center;
        margin-bottom: 1.5rem; }
      .for_access .row p {
        padding: 0 1rem; }

  #about {
    padding: 2rem 0; }
    #about ul li:first-child {
      width: 100%; }
    #about ul li:last-child {
      display: none; }

  #features {
    background-image: none;
    padding: 0; }
    #features .row ul {
      flex-wrap: wrap; }
      #features .row ul li {
        width: 49%; }
        #features .row ul li:last-child {
          width: 100%; }
          #features .row ul li:last-child figure {
            height: auto;
            text-align: center; }
            #features .row ul li:last-child figure img {
              width: 50%; }

  #eco-dri {
    padding: 3rem 0; }

  #muden {
    padding: 3rem 0; }

  #dri-tech {
    padding: 3rem 0; }
    #dri-tech .row h2 {
      font-size: 1.6rem;
      margin-bottom: 5rem; }
      #dri-tech .row h2 span {
        display: block; }
        #dri-tech .row h2 span::before {
          width: 100%;
          text-align: center;
          top: 105%; }
        #dri-tech .row h2 span::after {
          width: 100%;
          text-align: center;
          top: calc(100% + 1.3rem); }

  #achieve {
    padding: 3rem 0; }
    #achieve .row h2 {
      font-size: 1.8rem; }
    #achieve .row p.intro {
      font-size: 1.1rem;
      line-height: 1.6rem;
      text-align: justify; }

  #merit .row h3 br.sp {
    display: none; }

  #circuit .row h2 {
    line-height: 2.7rem; }

  #flow .row figure img.pc {
    display: block; }
  #flow .row figure img.sp {
    display: none; }

  #line .row {
    flex-wrap: wrap; }
    #line .row p {
      width: 100%;
      margin-bottom: 2rem; }
    #line .row div.sp {
      text-align: center;
      margin: 0 auto; }
      #line .row div.sp a {
        display: flex;
        justify-content: center;
        gap: 10px;
        align-items: center;
        background-color: #FFF;
        padding: 0.5rem 1.5rem;
        margin: 0 auto;
        border-radius: 70px; }
        #line .row div.sp a img {
          width: 35px; }
        #line .row div.sp a span {
          font-weight: 900;
          font-size: 1.1rem;
          color: #3aae36; }

  /***FOOTER***/
  footer .row address {
    margin-bottom: 1rem; }
  footer .row .last {
    justify-content: flex-start;
    flex-direction: column; }
    footer .row .last .access {
      margin-bottom: 1.5rem; } }
@media (max-width: 650px) {
  .btn {
    width: 90px;
    height: 30px; }
    .btn p {
      font-size: 0.85rem;
      letter-spacing: -1px; }

  .btn-line {
    width: 25px;
    height: 2px; }
    .btn-line::before, .btn-line::after {
      width: 25px; }
    .btn-line:before {
      transform: translate(-100%, -8px); }
    .btn-line:after {
      transform: translate(-100%, 8px); }

  header {
    height: 50px; }
    header .site_id {
      width: 220px;
      line-height: 0; }
      header .site_id p {
        line-height: 0; }

  .menu {
    padding: 70px 0;
    height: calc(100vh - 50px);
    overflow: scroll; }
    .menu.open {
      top: 50px; }
    .menu ul {
      height: calc(100vh - 50px);
      overflow: scroll; }
      .menu ul .menu-list {
        width: 100%;
        padding: 0.1rem 0;
        border-bottom: 1px dashed #FFF;
        font-size: 0.9rem; }
        .menu ul .menu-list:last-child {
          border-bottom: none; }

  .for_access .row ul li {
    width: 213px; }

  #features .row ul li {
    width: 100%; }
    #features .row ul li figure {
      height: auto; }

  #eco-dri .row .text {
    width: 100%; }
  #eco-dri .row figure {
    width: 100%; }

  #muden .row p {
    font-size: 1.15rem;
    line-height: 1.8rem;
    text-align: justify; }

  #dri-tech .row ul li:nth-child(odd), #dri-tech .row ul li:nth-child(even) {
    width: 100%; }
  #dri-tech .row ul li:nth-child(odd) {
    margin-bottom: 0.5rem; }
  #dri-tech .row ul li:nth-child(even) {
    padding-bottom: 0.5rem;
    border-bottom: 1px dashed #000;
    margin-bottom: 1rem; }
  #dri-tech .row ul li:last-child {
    border-bottom: none; }

  #achieve .row ul.event2 {
    flex-wrap: wrap; }
    #achieve .row ul.event2 li:first-child, #achieve .row ul.event2 li:last-child {
      width: 100%; }
    #achieve .row ul.event2 li:first-child {
      margin-bottom: 1rem; }
  #achieve .row ul.event3 {
    flex-wrap: wrap; }
    #achieve .row ul.event3 li:first-child, #achieve .row ul.event3 li:nth-child(2), #achieve .row ul.event3 li:last-child {
      width: 100%; }
    #achieve .row ul.event3 li:not(:last-child) {
      margin-bottom: 1rem; }
  #achieve .row ul.event4 {
    padding: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 3rem; }
    #achieve .row ul.event4 li p {
      font-size: 0.9rem; }
    #achieve .row ul.event4 li:first-child, #achieve .row ul.event4 li:last-child {
      width: 100%; }
  #achieve .row ul.media3 {
    flex-wrap: wrap; }
    #achieve .row ul.media3 li:first-child, #achieve .row ul.media3 li:nth-child(2), #achieve .row ul.media3 li:last-child {
      width: 100%; }
    #achieve .row ul.media3 li:not(:last-child) {
      margin-bottom: 1rem; }
  #achieve .row ul li figcaption {
    font-size: 0.9rem; }
  #achieve .row p:last-child {
    font-size: 1.05rem;
    line-height: 1.8rem; }

  #experi {
    padding: 3rem 0; }
    #experi .row h2 {
      font-size: 1.8rem;
      margin-bottom: 2rem; }
    #experi .row ul li {
      flex-wrap: wrap; }
      #experi .row ul li:not(:nth-child(2)) figure {
        order: 2; }
      #experi .row ul li:not(:nth-child(2)) div {
        order: 1; }
      #experi .row ul li figure {
        width: 100%; }
      #experi .row ul li div p {
        text-align: justify; }
      #experi .row ul li div, #experi .row ul li:nth-child(2) div {
        width: 100%;
        margin-bottom: 30px; }
        #experi .row ul li div::before, #experi .row ul li:nth-child(2) div::before {
          top: 99%;
          left: calc(50% - 25px);
          transform: rotate(-135deg); }
        #experi .row ul li div::after, #experi .row ul li:nth-child(2) div::after {
          top: calc(99% - 7px);
          left: calc(50% - 28px);
          transform: rotate(-135deg); }

  #kaisai {
    padding: 3rem 0; }
    #kaisai h2 {
      padding: 0 5%;
      font-size: 1.8rem;
      margin-bottom: 2rem; }
    #kaisai ul.slick01 li {
      padding: 0 3px; }

  #chojo {
    padding: 3rem 0 0; }
    #chojo .row h2 {
      font-size: 1.7rem;
      line-height: 2.1rem; }
      #chojo .row h2 + p {
        font-size: 1.15rem;
        line-height: 1.7rem; }

  #merit {
    padding: 3rem 0; }
    #merit .row h3 {
      font-size: 1.15rem;
      line-height: 1.7rem;
      margin-bottom: 1rem; }
      #merit .row h3::before {
        top: 0.3rem;
        transform: none; }
      #merit .row h3 br.sp {
        display: inline; }
      #merit .row h3 span {
        font-size: 0.9rem; }
    #merit .row p {
      text-align: justify;
      margin-bottom: 2rem; }

  #circuit {
    padding: 3rem 0; }
    #circuit .row h2 {
      font-size: 1.7rem;
      line-height: 2.1rem; }
      #circuit .row h2 + p {
        text-align: justify; }
    #circuit .row dl {
      flex-direction: column; }
      #circuit .row dl dd {
        margin-bottom: 1.5rem; }
        #circuit .row dl dd:last-child {
          margin-bottom: 0; }
    #circuit .row ul li {
      margin-bottom: 1.5rem; }
      #circuit .row ul li:last-child {
        margin-bottom: 0; }

  #flow {
    padding: 3rem 0; }
    #flow .row table tr th {
      display: block;
      padding: 1.5rem 1rem 0; }
    #flow .row table tr td {
      display: block;
      padding: 0.3rem 1rem 1.5rem 2.05rem;
      font-size: 1rem;
      line-height: 1.6rem;
      text-align: justify; }

  #faq {
    padding: 3rem 0; }
    #faq .row h2 {
      margin-bottom: 2rem; }
    #faq .row ul {
      margin-bottom: 2rem; }
      #faq .row ul li {
        margin-bottom: 1rem; }
        #faq .row ul li h5.question {
          font-size: 1.1rem;
          line-height: 1.7rem; }
    #faq .row .category {
      padding: 0 2%; }
      #faq .row .category h4 {
        margin-bottom: 1rem; }
    #faq .row .category2 {
      padding: 0 2%; }
      #faq .row .category2 h4 {
        margin-bottom: 1rem; }
    #faq .row .category3 {
      padding: 0 2%; }
      #faq .row .category3 h4 {
        margin-bottom: 1rem; }

  #thanks {
    padding: 3rem 0; }
    #thanks .row p {
      font-size: 1.05rem;
      line-height: 1.7rem; }

  #inquiry {
    padding: 3rem 0; }
    #inquiry .row h2 {
      margin-bottom: 2rem; }
    #inquiry .row input[type="text"], #inquiry .row input[type="email"], #inquiry .row input[type="tel"], #inquiry .row input[type="date"], #inquiry .row textarea {
      width: 100%; }
    #inquiry .row table {
      width: 100%; }
      #inquiry .row table tr th {
        display: block;
        padding: 0.3rem 0 0; }
      #inquiry .row table tr td {
        display: block;
        padding: 0 0 0.3rem; }
    #inquiry .row .policy_txt p {
      font-size: 0.85rem;
      text-align: justify;
      line-height: 1.2rem; }
    #inquiry .row .policy_txt ol li {
      font-size: 0.85rem;
      line-height: 1.2rem;
      text-align: justify; }
      #inquiry .row .policy_txt ol li ul {
        padding-left: 1rem; } }
@media (max-width: 500px) {
  .for_access .row p:nth-of-type(2) {
    font-size: 0.9rem; }
    .for_access .row p:nth-of-type(2)::before, .for_access .row p:nth-of-type(2)::after {
      display: none; }
  .for_access .row ul {
    flex-wrap: wrap; }
    .for_access .row ul li {
      width: 100%; }
      .for_access .row ul li:first-child {
        margin-bottom: 1rem; }

  #features .row {
    background-size: 90px, 90px;
    padding-bottom: 3rem; }
    #features .row ul li:last-child figure img {
      width: 100%; }
    #features .row ul li figure img {
      width: 100%; }

  #flow .row figure img.pc {
    display: none; }
  #flow .row figure img.sp {
    display: block; }

  footer .row p.copyright {
    font-size: 0.8rem;
    line-height: 1.2rem; }
    footer .row p.copyright span {
      padding-left: 0;
      display: block; } }
