@charset "UTF-8";
/*
Theme Name: EDGE inc Theme
Theme URI: https://edgeinc.tokyo/
Author: EDGE inc
Author URI: https://edgeinc.tokyo/
Description: EDGE inc
Version: 1.0
*/

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

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  line-height: 1.6rem;
  font-family: 'Segoe UI', 'メイリオ', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden!important;
  color: rgb(15, 20, 25);
  background-color: #e7e7e7;
}

p, a, h2, span, dd, dt, li {
  transform: rotate(0.05deg);
}


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

header input, header label {
  display: none;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 2.5vw;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  letter-spacing: 0.16rem;
  font-size: 0.8rem;
  color: #fff;
}

header h1 {
  font-weight: bold;
  letter-spacing: 0;
  padding: 21px 0;
}

header h1 span {
  display: block;
  line-height: 1.2rem;
}

header h1 span:nth-child(1) {
  font-size: 19px;
}

header h1 span:nth-child(2) {
  font-size: 11px;
  font-weight: normal;
}

header h1 a {
  width: 100%;
  display: block;
}

header nav {
  max-width: 100%;
}

header nav ul {
  display: flex;
}

header nav ul li {
  display: block;
}

header nav ul li a {
  display: block;
  padding: 20px 10px;
  margin-right: 10px;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
}

header nav ul li:last-child a {
  margin-right: 0;
  padding: 20px 0 20px 10px;
}

header nav li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  background: rgb(15, 20, 25);
}

header nav li a:hover::after {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

.sp_contact {
  display: none;
}

@media screen and (max-width: 710px) {

  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    padding: 0;
  }
  
  header input {
    display: none;
  }
  
  header label {
    display: block;
    position: absolute;
    top: -3px;
    right: 6px;
    z-index: 15;
  }
  
  .hum {
    padding: 1.2rem;
  }
  
  .hum span {
    display: block;
    width: 20px;
    height: 2px;
    background: rgba(255, 255, 255, 1);
    transition: all 0.3s;
  }
  
  .top {
    transform: rotate(0deg) translateY(-6px);
  }
  
  .middle {
    transform: rotate(0deg);
  }
  
  .bottom {
    transform: rotate(0deg) translateY(6px);
  }
  
  input[type="checkbox"].on-off:checked + label .middle {
    background: rgba(255, 255, 255, 0);
  }
  
  input[type="checkbox"].on-off:checked + label .top {
    transform: rotate(45deg) translateY(2.5px);
  }
  
  input[type="checkbox"].on-off:checked + label .bottom {
    transform: rotate(-45deg) translateY(-2.5px);
  }
  
  header h1 {
    padding: 18px 6px;
    font-size: 1.2rem;
  }

  header h1 span:nth-child(1) {
    font-size: 12px;
  }

  header h1 span:nth-child(2) {
    display: none;
  }
  
  header h1 a {
    width: 100%;
    display: block;
  }
  
  header nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 0;
    height: 0;
    top: 50vh;
    left: 50%;
    transition: 0.3s ease;
    overflow: hidden;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.8);;
    opacity: 0;
  }
  
  input[type="checkbox"].on-off:checked ~ nav {
    width: calc(100% - 12px);
    height: calc(100vh - 65px);
    top: calc(1vh + 50px);
    left: 6px;
    opacity: 1;
  }
  
  header nav ul {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    margin-bottom: 60px;
  }
  
  header nav li a {
    position: relative;
    display: block;
    width: 100%;
    box-sizing: border-box;
    letter-spacing: 0.1em;
    padding: 12px 0!important;
    transition: 0.3s ease;
    text-decoration: none;
    color: #fff!important;
    border-bottom: 1px solid rgb(239, 243, 244);
  }
  
  header nav li a::after {
    display: none;
  }
  
  header nav li a:nth-child(1) {
    border-top: 1px solid rgb(239, 243, 244);
  }
  
  .sp_contact {
    display: block;
    text-decoration: none;
    background: #fff;
    color: #333;
    font-weight: bold;
    padding: 12px 45px 12px 24px;
    box-sizing: border-box;
  }

  .sp_contact::after {
    position: absolute;
    content: '';
    top: 15.8px;
    right: 15px;
    width: 18px;
    height: 18px;
    background: url(images/arrow_bk.png);
    background-size: contain;
  }
  
}


/* ------------------------------------------ 
fv
------------------------------------------ */

#fv {
  display: flex;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  width: 100vw;
  height: 60vw;
  padding-top: 60px;
  background-image: url(images/fv.jpeg);
  background-position: center;
  background-size: cover;
  color: #fff;
  text-shadow: 0 0 3px #333;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}

#fv h2 {
  width: 100%;
  padding-left: 10%;
  box-sizing: border-box;
  font-size: 7.2vw;
  line-height: 7.5vw;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 1vw;
}

#fv p {
  width: 100%;
  padding-left: 10%;
  box-sizing: border-box;
  font-size: 3vw;
  line-height: 3.3vw;
  font-weight: 700;
  font-style: italic;
}

@media screen and (max-width: 710px) {
  #fv {
    height: 120vw;
  }
  #fv h2 {
    font-size: 9.6vw;
    line-height: 10.2vw;
  }
}

/* ------------------------------------------ 
normal section
------------------------------------------ */

.section_normal {
  padding: 60px 0;
}

.section_normal h2 {
  text-align: center;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 3rem;
  line-height: 3rem;
  color: #808000;
  margin-bottom: 30px;
}

.section_normal h2 span {
  display: block;
  font-size: 1.5rem;
  color: #808000;
}

@media screen and (max-width: 710px) {
  .section_normal h2 {
    font-size: 2.1rem;
    line-height: 2.1rem;
    margin-bottom: 30px;
  }

  .section_normal h2 span {
    font-size: 1.2rem;
  }
}

/* ------------------------------------------ 
campaign
------------------------------------------ */

#campaign {
  padding: 60px 0;
  background: rgb(184,38,34);
	background-image: linear-gradient(45deg, #A6221F 25%, transparent 0),
	linear-gradient(45deg, transparent 75%, #A6221F 0),
	linear-gradient(45deg, #A6221F 25%, transparent 0),
	linear-gradient(45deg, transparent 75%, #A6221F 0);
	background-size: 30px 30px;
	background-position: 0 0, 15px 15px,
		15px 15px, 30px 30px;
}

#campaign > p:nth-child(1) {
  font-size: 32px;
  line-height: 40px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 12px;
  color: #fff;
  text-shadow: 0 0 3px #B67B03;
}

#campaign > p:nth-child(1) span {
  
}

#campaign > p:nth-child(2) {
  width: 360px;
  margin: 0 auto 60px;
  padding: 6px 0;
  font-size: 21px;
  text-align: center;
  color: #A6221F;
  font-weight: bold;
  background: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);
}

.campaign_box {
  width: 90%;
  max-width: 600px;
  margin: 0 auto 30px;
  background: #fff;
  box-sizing: border-box;
  border: 6px double #fff;
}

.campaign_box:nth-child(5) {
  margin: 0 auto 75px;
}

.campaign_box > p:nth-child(1) {
  text-align: center;
  color: #fff;
  background: #A6221F;
  padding: 12px 0;
  font-weight: bold;
  font-size: 21px;
}

.campaign_box > p:nth-child(2) {
  box-sizing: border-box;
  padding: 24px;
  font-weight: bold;
}

.gold {
  color: #A6221F;
}

.p_subtitle {
  text-align: center;
  color: #fff;
  font-weight: bold;
}

.p_title {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 32px;
  line-height: 40px;
  font-weight: bold;
	text-align: center;
  color: #fff;
  margin-bottom: 30px;
}

.p_title::before,
.p_title::after {
	content: '';
	width: 3px;
	height: 40px;
	background-color: #fff;
}

.p_title::before {
	margin-right: 30px;
	transform: rotate(-35deg)
}
.p_title::after {
	margin-left: 30px;
	transform: rotate(35deg)
}

.campaign_strong {
  position: relative;
  width: 90%;
  max-width: 600px;
  margin: 0 auto 60px;
  background: #A6221F;
  box-sizing: border-box;
  border: 6px double #fff;
  color: #fff;
  padding: 30px 20px 20px 20px;
}

.campaign_strong:last-child {
  margin: 0 auto;
}

.campaign_strong::after {
  content: '1';
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -28px;
  left: calc(50% - 22.5px);
  width: 45px;
  height: 45px;
  text-align: center;
  background: #fff;
  border: 3px solid #A6221F;
  border-radius: 50%;
  box-sizing: border-box;
  font-weight: bold;
  font-size: 21px;
  color: #000;
}

.campaign_strong + .campaign_strong::after {
  content: '2';
}

.campaign_strong p:nth-child(1) {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 2px solid #fff;
}

@media screen and (max-width: 600px) {
  .campaign_box:nth-child(5) {
    margin: 0 auto 60px;
  }

  .p_subtitle {
    font-size: 12px;
  }

  .p_title {
    font-size: 18px;
    line-height: 21px;
  }

  .p_title::before,
  .p_title::after {
    height: 25px;
  }

  .p_title::before {
    margin-right: 18px;
  }

  .p_title::after {
    margin-left: 18px;
  }
}

@media screen and (max-width: 510px) {
  #campaign > p:nth-child(1) {
    font-size: 24px;
  }

  #campaign > p:nth-child(2) {
    width: 270px;
  }

}

/* ------------------------------------------ 
concept
------------------------------------------ */

#concept > div:nth-child(2) {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}

#concept >  div:nth-child(2) > div:nth-child(1) {
  display: block;
  width: 45%;
  height: 28vw;
  background-image: url(images/concept2.jpg);
  background-position: bottom left;
  background-size: cover;
}

#concept > div:nth-child(2) > div:nth-child(2) {
  width: 55%;
  padding: 0 5%;
  box-sizing: border-box;
}

#concept > div > div p:nth-child(1) {
  font-size: 3.6vw;
  line-height: 4.7vw;
  font-weight: bold;
  margin-bottom: 10px;
}

#concept > div > div p:nth-child(1) span {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 3px 9px 6px;
}

#concept > div > div p:nth-child(1) span:nth-child(1) {
  margin-right: 5px;
}

#concept > div > div p:nth-child(2) {
  max-width: 545px;
}

#concept_point {

}

#concept_point > p {
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  background: #808000;
  color: #fff;
  padding: 12px 0;
}

#concept_point > div {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

#concept_point figure {
  width: 150px;
  margin: 0;
}

#concept_point figure img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 150px;
  border-radius: 50%;
  border: 3px solid #c5c5c5;
  background: #fff;
  box-sizing: border-box;
  padding: 12%;
  margin-bottom: 6px;
}

#concept_point figure:nth-child(1) img {
  padding: 6%;
}

#concept_point figure figcaption {
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 710px) {
  
  #concept > div:nth-child(2) {
    display: block;
    width: 90%;
    margin: 0 auto 30px;
  }

  #concept > div:nth-child(2) > div:nth-child(1) {
    width: 100%;
    height: 54vw;
    margin-bottom: 12px;
  }

  #concept > div:nth-child(2) > div:nth-child(2) {
    width: 100%;
    padding: 0;
  }

  #concept > div:nth-child(2) > div p:nth-child(1) {
    font-size: 6vw;
    line-height: 7.2vw;
  }

  #concept > div:nth-child(2) > div p:nth-child(2) {
    max-width: none;
  }

  #concept_point figure {
    width: 45%;
    max-width: 210px;
  }

  #concept_point figure:nth-child(1), #concept_point figure:nth-child(2) {
    
  }

  #concept_point figure img {
    height: 40.5vw;
    max-height: 210px;
  }

}

/* ------------------------------------------ 
training
------------------------------------------ */

#training {
  background: #111;
  color: #fff;
}

#training h2 {
  color: #fff;
}

#training h2 span {
  color: #fff;
}

#training h2 + p {
  text-align: center;
  font-size: 1.2rem;
  line-height: 2.1rem;
  font-weight: bold;
  box-sizing: border-box;
  padding: 0 5%;
  margin-bottom: 60px;
}

.content_box {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 4.5vw;
  width: 90vw;
  margin: 0 auto;
}

.content_box figure {
  width: 30%;
  padding: 0;
  margin: 0;
}

.content_box figure iframe {
  display: block;
  width: 100%;
  height: 15vw;
  margin-bottom: 6px;
  box-sizing: border-box;
  border: 3px solid #808000;
}

.content_box figure figcaption {

}

.content_box figure figcaption p:nth-child(1) {
  text-align: center;
  color: #808000;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.content_box figure figcaption p:nth-child(2) {
  
}

@media screen and (max-width: 910px) {
  #training h2 + p {
    font-size: 1rem;
    text-align: left;
  }

  #training h2 + p br {
    display: none;
  }
  
  .sp {
    display: block!important;
  }
}

@media screen and (max-width: 810px) {
  .content_box {
    gap: 6vw 3.6vw;
  }

  .content_box figure {
    width: 48%;
  }

  .content_box figure iframe {
    height: 25vw;
  }
}

@media screen and (max-width: 510px) {
  .content_box {
    gap: 12vw 0vw;
  }

  .content_box figure {
    width: 100%;
  }

  .content_box figure iframe {
    height: 50vw;
  }
}

/* ------------------------------------------ 
trainer
------------------------------------------ */

#trainer {
  background-image: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),url(images/fv.png);
  background-size: cover;
}

#trainer h2 {
  color: #fff;
}

#trainer h2 span {
  color: #fff;
}

#trainer > div {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 80%;
  max-width: 1080px;
  padding: 3%;
  margin: 0 auto;
  border-radius: 30px;
  box-sizing: border-box;
  background: #e7e7e7;
  box-shadow: 0 0 12px #aaa;
}

#trainer > div > div {
  width: calc(100% - 360px);
  padding-right: 6%;
}

#trainer > div > img {
  display: block;
  width: 360px;
  border-radius: 30px;
}

#trainer > div > img:nth-child(3) {
  display: none;
}

#trainer > div > div p:nth-child(1) {
  padding-bottom: 12px;
  margin-bottom: 18px;
  font-weight: bold;
  font-size: 1.2rem;
  border-bottom: 1px solid #808000;;
}

#trainer > div > div ul {
  list-style: disc;
  padding-left: 24px;
  box-sizing: border-box;
}

#trainer > div > div ul li {
  margin-bottom: 6px;
}

#trainer > div > div ul li:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 910px) {
  #trainer > div {
    flex-direction: column-reverse;
    width: 90%;
  }

  #trainer > div > img {
    width: 100%;
    margin-bottom: 15px;
  }

  #trainer > div > img:nth-child(2) {
    display: none;
  }

  #trainer > div > img:nth-child(3) {
    display: block;
  }

  #trainer > div > div {
    width: 100%;
    padding: 0 3% 3% 3%;
    box-sizing: border-box;
  }

  #trainer > div > div p:nth-child(1) {
    margin-bottom: 12px;
    padding-bottom: 6px;
  }
}

/* ------------------------------------------ 
voice
------------------------------------------ */

#voice {
  
}

#voice > div {
  width: 80%;
  max-width: 1080px;
  margin: 0 auto;
}

#voice > div > div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  background: #fff;
  border-radius: 30px;
  box-sizing: border-box;
  background: #fff;
  box-shadow: 0 0 12px #aaa;
  padding: 3%;
  margin-bottom: 30px;
}

#voice > div > div:last-child {
  margin-bottom: 0;
}

#voice > div > div > div {
  width: 210px;
}

#voice > div > div > div img {
  display: block;
  width: 100%;
  margin-bottom: 6px;
}

#voice > div > div > div p {
  text-align: center;
  font-weight: bold;
}

#voice > div > div > p {
  width: calc(100% - 210px);
  padding-left: 3%;
  box-sizing: border-box;
}

@media screen and (max-width: 810px) {
  #voice > div {
    width: 90%;
  }

  #voice > div > div {
    display: block;
    padding: 0;
    box-shadow: none;
    background: transparent;
    margin-bottom: 45px;
  }

  #voice > div > div > div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
  }

  #voice > div > div > div img {
    width: 90px;
    border-radius: 50%;
    margin-right: 15px;
  }

  #voice > div > div > div p {
  }

  #voice > div > div > p {
    width: 100%;
    padding: 5%;
    background: #fff;
    border-radius: 30px;
    box-sizing: border-box;
    box-shadow: 0 0 12px #aaa;
  }
}



/* ------------------------------------------ 
price
------------------------------------------ */

#price {
  background-image: linear-gradient(rgba(0,135,69,0.6),rgba(0,135,69,0.6)),url(images/fv.png);
}

#price h2 {
  color: #fff;
}

#price h2 span {
  color: #fff;
}

.subtitle {
  margin: 0 auto 30px;
  width: 150px;
  padding: 12px 0;
  font-size: 1.6rem;
  text-align: center;
  background: #fff;
  color: #111;
  font-weight: bold;
}

#price_box {
  max-width: 900px;
  width: 90%;
  margin: 0 auto 12px;
  overflow-x: scroll;
  background: #fff;
  box-sizing: border-box;
  padding: 30px;
  border-radius: 15px;
}

#price_box dl {
  display: flex;
  width: 858px;
  flex-wrap: wrap;
  gap: 6px;
}

#price_box dl dt {
  width: 120px;
  padding: 12px;
  background: #111;
  color: #fff;
  box-sizing: border-box;
  border-radius: 15px 0 0 15px;
}

#price_box dl dd { 
  width: 240px;
  padding: 12px;
  box-sizing: border-box;
  background: #e7e7e7;
  text-align: center;
}

.price_title {
  background: #111!important;
  color: #fff;
}

.price_title_gold {
  background: #808000!important;
  font-weight: bold;
}

.ex_price {
  color: #808000;
  font-weight: bold;
  font-size: 1.6rem;
}

.ex_price_normal {
  color: #808000;
  font-weight: bold;
}

.square {
  color: #808000;
  font-weight: bold;
  margin-right: 3px;
}

.scroll_text {
  color:#fff;
  text-align: right;
  width: 90%;
  max-width: 900px;
  margin: 0 auto 30px;
}

.course_box {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 90%;
  max-width: 900px;
  margin: 0 auto 6px;
}

.course_box > p {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  margin-right: 6px;
  background: #111!important;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
}

.course_box > div {
  width: calc(100% - 156px);
  padding: 20px;
  background: #fff;
  box-sizing: border-box;
}

.subtitle + .course_box > p {
  border-radius: 15px 0 0 0;
}

.subtitle + .course_box > div {
  border-radius: 0 15px 0 0;
}

.course_box:last-child > p {
  border-radius: 0 0 0 15px;
}

.course_box:last-child > div {
  border-radius: 0 0 15px 0;
}

.course_box > div p:nth-child(1) {
  margin-bottom: 12px;
}

.course_box > div p:nth-child(1) span {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 700;
  margin-right: 6px;
}

.course_box > div p:nth-child(2) {

}


@media screen and (max-width: 600px) {
  #price_box {
    padding: 15px;
  }

  .course_box > p {
    width: 120px;
    font-size: 0.9rem;
  }

  .course_box > div {
    width: calc(100% - 126px);
  }

}

@media screen and (max-width: 450px) {
  .course_box > p {
    width: 100px;
    font-size: 0.8rem;
  }

  .course_box > div {
    width: calc(100% - 106px);
  }
}

/* ------------------------------------------ 
flow
------------------------------------------ */

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

#flow > div {
  width: 90%;
  max-width: 810px;
  margin: 0 auto;
}

.flow_content {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 190px;
  padding: 30px;
  box-sizing: border-box;
  border: 3px solid rgba(0,135,69, 1);
  background: #fff;
  margin-bottom: 90px;
  z-index: 10;
}

.flow_content:last-child {
  margin-bottom: 0;
}

.flow_content::after {
  position: absolute;
  content: '';
  display: block;
  bottom: -93px;
  left: calc(50% - 1.5px);
  width: 3px;
  height: 93px;
  background: rgba(0,135,69, 1);
  z-index: 0;
}

.flow_content:last-child:after {
  display: none;
}

.flow_content > img {
  position: absolute;
  top: -60px;
  left: 30px;
  display: block;
  width: 210px;
  box-shadow: 0 0 12px #c5c5c5;
}

.flow_content > div {
  width: 100%;
  padding-left: 240px;
  box-sizing: border-box;
}

.flow_content:nth-child(2n) > img {
  left: auto;
  right: 30px;
}

.flow_content:nth-child(2n) > div {
  padding-left: 0px;
  padding-right: 240px;
}

.flow_content > div > p:nth-child(1) {
  font-weight: bold;
  box-sizing: border-box;
  padding-right: 30px;
  border-bottom: 1px solid rgba(0,135,69, 1);
  font-size: 1.2rem;
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.flow_content > div > p:nth-child(1) span {
  vertical-align: baseline;
}

.flow_content > div > p:nth-child(1) span:nth-child(1) {
  color: rgba(0,135,69, 1);
  font-size: 3rem;
}

@media screen and (max-width: 860px) {
  #flow h2 {
    margin-bottom: 90px;
  }

  .flow_content {
    height: auto;
  }

  .flow_content > img {
    width: 50vw;
    left: 20vw!important;
    right: auto!important;
  }

  .flow_content > div {
    padding: calc(50vw - 75px) 0 0 0!important;
  }
}

@media screen and (max-width: 510px) {
  .flow_content > div > p:nth-child(1) span:nth-child(1) {
    font-size: 1.2rem;
  }
}

/* ------------------------------------------ 
access
------------------------------------------ */

#access * {
  box-sizing: border-box;
}

.comapny_access_flex {
 display: flex;
 justify-content: space-between;
 align-items: flex-start;
 max-width: 950px;
 margin: 0 auto;
}

#map {
  width: 50%;
  height: 400px;
}

.comapny_access_flex > dl {
  width: 50%;
  padding-left: 30px;

}

.comapny_access_flex > dl > div > dt {
  background: #111;
  color: #fff;
  padding-left: 10px;
  margin-bottom: 10px;
  font-weight: bold;
  line-height: 2;
}

.comapny_access_flex > dl > div > dd {
  
}

.comapny_access_flex > dl > div:nth-child(1) > dd:nth-child(2) {
  margin-bottom: 40px;
}

.comapny_access_flex > dl > div:nth-child(2) > dd:nth-child(2) {
  margin-bottom: 10px;
}


@media screen and (max-width: 895px) {

  .comapny_access_flex {
   flex-direction: column;
   }

   #map {
    width: 100%;
    height: 300px;
    margin-bottom: 40px;
  }

  .comapny_access_flex > dl {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin: 0 auto;
    padding-left: 0;
  }

  .comapny_access_flex > dl > div {
    width: 48%;
  }

}

@media screen and (max-width: 784px) {

  .comapny_access_flex {
   flex-direction: column;
   }

  .comapny_access_flex > dl {
    flex-direction: column;
    width: 90%;
    padding-left: 0;
  }

  .comapny_access_flex > dl > div {
    width: 100%;
  }

  .comapny_access_flex > dl > div > dd {
    font-size: 0.845rem;
  } 

  .comapny_access_flex > dl > div > dd > ul > li:nth-child(3) {
    margin-bottom: 0;
  }

}

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

#contact {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #111;
  color: #fff;
  padding: 12px 0 24px;
  box-shadow: 0 0 6px #333;
  z-index: 100;
}

#contact > p {
  text-align: center;
  font-weight: bold;
  margin-bottom: 15px;
}

#contact > div {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 20px;
}

#contact a {
  display: block;
  text-decoration: none;
  width: 45%;
  max-width: 300px;
  background: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);;
  border-radius: 15px;
  text-align: center;
  text-decoration: none;
  padding: 12px 0;
  color: #111;
  font-weight: bold;
}

#contact a:nth-child(2) {
  background: #06c755!important;
}

#contact a img {
  display: block;
  width: 100%;
}

@media screen and (max-width: 400px) {
  
  #contact {
    column-gap: 10px;
  }
  
}

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

footer {
  font-size: 9px;
  padding: 12px 0;
  background: #111;
  color: #fff;
}

footer p {
  text-align: center;
}

