/* 
共通設定 
*/
body {
  font-size: 100%;
  color: #333;
}

h1,
h2,
h3,
p {
  margin: 0;
}

ul {
  padding-left: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

dd {
  margin-left: 0;
}


/* 
らっばー
*/

.wrapper-wide {
  width: 90%;
  margin: 0 auto;
  text-align: center;
}


/* 
文字色
*/
.white {
  color: white;
}
.orange {
  color: orange;
}
.black{
    color: #333;
}

/* 
文字サイズ(大中）共通設定
*/
.thummiddle-size {
  font-size: 1.55rem;
  margin-bottom: 20px;
  font-weight: bold;
}

/* 
メッセージ（中）共通設定
*/
.middle-size {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 20px;
}

/* 
文字サイズ(ノーマル）
*/
.normal-size {
  font-size: 1.25rem;
  margin-bottom: 20px;
}

/* 
文字サイズ（小）
*/
.small-size {
  font-size: 1rem;
  font-weight: bold;
}

.bold {
  font-weight: bold;
}

.normal {
  font-weight: normal;
}

@media screen and (max-width:760px){
/* 
文字サイズ(大中）共通設定
*/
.thummiddle-size {
  font-size: 1.5rem;
}

/* 
メッセージ（中）共通設定
*/
.middle-size {
  font-size: 1.0rem;
  font-weight: bold;
  margin-bottom: 20px;
}

/* 
文字サイズ(ノーマル）
*/
.normal-size {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* 
文字サイズ（小）
*/
.small-size {
  font-size: .9rem;
  font-weight: bold;
}
}
/* 
セクションタイトル（共通設定）
*/
.section-title {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.5rem;
  position: relative;
  margin-bottom: 30px;
  padding: 30px 0;
}

.section-title::before {
  content: "";
  width: 50px;
  height: 50px;
  border-top: 5px solid brown;
  border-left: 5px solid brown;
  position: absolute;
  top: 0;
  left: 0;
}

.section-title::after {
  content: "";
  width: 50px;
  height: 50px;
  border-bottom: 5px solid brown;
  border-right: 5px solid brown;
  position: absolute;
  bottom: 0;
  right: 0;
}
.brsp{
  display: none;
}
@media screen and (max-width:760px){
  .section-title {
    font-size: 1.15rem;
  }
  .section-title::before {
    width: 30px;
    height: 30px;
  }
  .section-title::after {
    width: 30px;
    height: 30px;
  }
  .brsp{
    display: block;
  }
}
/* 
フレックスボックス
*/
.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 0.8rem;
  text-align: center;
}

.col-3 {
  width: 30%;
}

.col-4 {
  width: 22%;
}

.col-5 {
  width: 18%;
}

/* 
セクションパディング
*/
.section {
  padding: 50px 0;
}

/* 
オレンジ白のボックス
*/
.inner-box {
  width: 90%;
  margin: 0 auto;
  background-color: white;
  border: 3px solid orange;
  padding: 30px 15%;
}

/* ------------------------------------
header--------------------------------
------------------------------------- */
#header {
  background-color: white;
  width: 100%;
  position: fixed;
  margin-bottom: 10px;
  top: 0;
  z-index: 10;
  height: 70px;
}
.header-inner.wrapper-wide{
  width: 95%;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}
.header-logo {
  display: flex;
  align-items: center;
  font-size: .75rem;
}
.header-logo img{
  width: 150px;
}
.btn {
  background-color: rgba(117, 0, 0, 0.826);
  color: white;
  text-align: center;
  padding: 10px 30px;
  border-radius: 50px;
  border: none;
  display: inline-block;
  font-size: .8rem;
}
.btn:hover{
  opacity: .8;
}
.btn-sm{
  background-color: rgba(117, 0, 0, 0.826);
  text-align: center;
  padding: 5px 10px;
  position: fixed;
  top: 0;
  right:0;
  display: none;
  height: 70px;
}
.btn-sm img{
  display: block;
  margin: 10px auto 0;
  width: 20px;
}
.btn-sm a{
  color: white;
  font-size: .8rem;
}
.btn-sm a:hover{
  border-bottom: .5px solid white;
}
@media screen and (max-width:760px){
  .header-logo img{
    width: 100px;
  }
  .header-logo {
    flex-direction: column-reverse;
    align-items: normal;
  }
  header .btn{
    display: none;
  }
  .btn-sm{
    display: block;
  }
}
/* ------------------------------------
mainvisual--------------------------------
------------------------------------- */
.main-visual {
  margin-top: 70px;
  position: relative;

}
.main-visual > img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
}
.main-visual-title {
  width: 100%;
  height: 100%;
  background: linear-gradient(to right,rgba(255, 255, 255, 0.0),white 40%,white 60%, rgba(255, 255, 255, 0.0));
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  padding: 50px 0;
}
.main-visual-title p:first-child {
  font-weight: bold;
  font-size: 1.3rem;
  line-height: 2;
  margin-bottom: 30px;
}

.main-visual-title img {
  width: 250px;
  margin-bottom: 30px;
}
@media screen and (max-width:760px){
  .main-visual > img {
    width: 100%;
    height: 320px;
  }
  .main-visual-title {
    padding: 20px 0;
  }
  .main-visual-title p:first-child{
    font-size: 1.0rem;
  }
  .main-visual-title p{
    font-size: 0.8rem;
  }
}

/* ------------------------------------
.main-introduce--------------------------------
------------------------------------- */
.main-introduce {
  width: 100%;
  background-color: orange;
  padding: 30px 0;
}

.free-message p {
  background-color: white;
  color: red;
  display: inline-block;
}

.introduce-contact {
  font-size: 1.25rem;
  width: 90%;
  padding: 10px 20px;
  margin: 30px 0;
}

.twitter-link a {
  color: white;
  background-color: rgb(8, 156, 255);
  display: inline-block;
  font-size: 0.9rem;
  padding: 0 10px;
  border-radius: 5px;
}

/* ------------------------------------
.mind--------------------------------
------------------------------------- */
.mind {
  padding-bottom: 0px;
}

.mind p {
  font-size: 1.0rem;
  margin-bottom: 20px;
}

.mind span {
  font-weight: bold;
  position: relative;
}

.mind span::before {
  content: "";
  height: 7px;
  width: 90%;
  background-color: orange;
  position: absolute;
  bottom: 5px;
  left: 5%;
  z-index: -10;
}

.mind img {
  width: 100%;
  object-fit: cover;
}

/* ------------------------------------
about--------------------------------
------------------------------------- */
.about {
  position: relative;
  background-color: rgb(255, 249, 238);
}
.badge {
  width: 80px;
  height: 80px;
  line-height: 80px;
  display: inline-block;
  background-color: orange;
  color: white;
  border-radius: 50%;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}
.about .inner-box{
  padding: 40px;
}
.about p {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 30px;
}
.about .col-5 img {
    width: 100%;
    height: 50px;
  object-fit: contain;
  display: block;
}
@media screen and (max-width:760px){
  .badge {
    width: 60px;
    height: 60px;
    line-height: 60px;
    top: -30px;
  }
  .about p {
    font-size: 1.0rem;
  }
  .about .inner-box{
    padding: 15px 0px;
  }
  .about .inner-box li{
    font-size: .3rem;
  }
  .about .flex{
    justify-content: center;
  }
  .about .col-5{
    width: 33%;
    padding: 10px 3px;
  }
}
/* ------------------------------------
step--------------------------------
------------------------------------- */
.step {
  background: url("https://cdn.pixabay.com/photo/2015/06/19/21/24/avenue-815297_960_720.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
}
.step-flex {
  display: flex;
}
.step span {
  color: orange;
}

.step-col {
  /* max-width: 300px; */
  width: 30%;
  padding: 30px;
  font-size: 1rem;
  font-weight: bold;
  background-color: white;
  border-radius: 5px;
  margin: 0px auto 30px;
}

.step-num {
  background-color: orange;
  color: white;
  border-radius: 5px;
  margin-bottom: 30px;
}

.step-title {
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.skill-message {
  background-color: rgb(29, 29, 196);
  padding: 20px 0;
  text-align: center;
}

.skill-message p {
  margin: 0;
}

.skill-message span {
  color: orange;
}
@media screen and (max-width:760px){
  .step-flex {
    flex-direction: column;
  }
  .step-col {
    width: 80%;
  }
}
/* ------------------------------------
study--------------------------------
------------------------------------- */
.study-flex {
  padding: 30px 15%;
}
@media screen and (max-width:760px){
  .study-flex {
    padding: 30px 0%;
  }
}

/* ------------------------------------
merit--------------------------------
------------------------------------- */
.merit {
  background-color: rgb(255, 249, 238);
}
.merit-flex img {
  max-width: 300px;
  height: 200px;
  object-fit: cover;
}

.merit-title {
  margin-top: 20px;
  color: orange;
  text-align: left;
}

.merit-detail {
  font-size: 1rem;
  text-align: left;
  margin-bottom: 20px;
}

.merit-box {
  font-weight: bold;
  margin-bottom: 20px;
}

.alert {
  font-weight: normal;
}
@media screen and (max-width:760px){
  .merit-box {
    padding: 10px;
  }
  .merit-box .normal-size{
    font-size: .9rem;
  }
  .merit .small-size{
    font-size: .8rem;
  }
}
/* ------------------------------------
member--------------------------------
------------------------------------- */
.member {
  background: url("https://cdn.pixabay.com/photo/2015/06/19/21/24/avenue-815297_960_720.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
}

.member-flex {
  margin-top: 30px;
}

.member-flex .col-3 {
  position: relative;
}

.member-flex img {
  border-radius: 50%;
  position: absolute;
  top: 20px;
  left:50%;
  transform: translateX(-50%);
}

.member-introduciton {
  border: 3px solid white;
  padding: 30px;
  margin-top: 180px;
}

.member-introduciton p {
  margin: 10px 0;
  font-size: 1.1rem;
}
@media screen and (max-width:760px){
  .member-introduciton {
    padding: 30px 10px;
  }
  
  .member-introduciton p {
    margin: 10px 0;
    font-size: .8rem;
  }
  .member .flex li{
    width: 95%;
  }
}


/* ------------------------------------
question--------------------------------
------------------------------------- */
.question {
  background-color: orange;
  position: relative;
}

.section-title.white {
  margin-bottom: 0;
  margin-top: 50px;
}

.section-title.white::before {
  border-top: 5px solid white;
  border-left: 5px solid white;
}

.section-title.white::after {
  border-bottom: 5px solid white;
  border-right: 5px solid white;
}

.question-badge {
  background-color: white;
  color: orange;
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.question::before {
  content: "";
  width: 40px;
  height: 40px;
  background-color: orange;
  transform: rotate(45deg);
  position: absolute;
  bottom: -20px;
  left: calc(50% - 20px);
}

/* ------------------------------------
answer--------------------------------
------------------------------------- */
.answer p:last-child {
  font-weight: normal;
  margin: 30px 0;
  font-size: 0.9rem;
}

.third-member {
  padding: 0 15%;
}

.third-member dt {
  width: 28%;
  margin-top: 50px;
}
.third-member dt img{
  border: 3px solid orange;
}
.third-member dd {
  width: 65%;
  margin-top: 50px;
  text-align: left;
}

.third-member dd p:last-child {
  border-bottom: 1px solid #333;
  display: inline-block;
}
@media screen and (max-width:760px){
  .third-member {
    padding: 0%;
  }
  .answer .normal-size{
    font-size: .8rem;
  }
  .third-member dd p:last-child {
    font-size: .7rem;
    margin: 0;
  }
}

/* ------------------------------------
study-content--------------------------------
------------------------------------- */
.study-content {
  background: url("https://cdn.pixabay.com/photo/2015/06/19/21/24/avenue-815297_960_720.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
}

.study-lists {
  padding: 40px 15% 0;
}

.study-list {
  background-color: white;
  border: 2px solid blue;
  width: 47%;
  height: 100%;
}

.study-list li {
  font-size: 1rem;
  font-weight: bold;
  line-height: 2.5;
  border-bottom: 0.01px dotted rgb(174, 174, 174);
}

.study-list li:first-child {
  background-color: blue;
  color: white;
  line-height: 3;
  margin: 0;
  font-size: 20px;
}

.study-list li:first-child,
.study-list li:last-child {
  border: none;
}

/* 
support
 */
.support {
  background-color: blue;
  padding: 30px 0;
}
.support .middle-size {
  margin: 0;
}
@media screen and (max-width:760px){
  .study-lists {
    padding: 40px 0px 0;
  }
  .study-lists ul{
    width: 90%;
  }
}
/* ------------------------------------
flow--------------------------------
------------------------------------- */
.flow-mainimage {
  margin: 40px 0;
}

.flow-content {
  padding: 20px;
  background-color: rgb(255, 233, 193);
  align-items: center;
  margin-bottom: 80px;
  border-radius: 10px;
  position: relative;
}

.flow-content::before {
  content: "";
  width: 50%;
  height: 40px;
  border-left: 5px solid orange;
  border-bottom: 5px solid orange;
  position: absolute;
  bottom: -40px;
  left: 25%;
}

.flow-content::after {
  content: "";
  width: 50%;
  height: 40px;
  border-right: 5px solid orange;
  position: absolute;
  bottom: -80px;
  right: 25%;
}

.flow-content:last-child {
  margin: 0;
}

.flow-content:last-child::before,
.flow-content:last-child::after {
  content: none;
}

.flow-title {
  width: 18%;
}

.flow-title p {
  margin: 0;
}

.flow-description {
  width: 80%;
  text-align: left;
}

.flow-description p {
  margin-bottom: 20px;
}
@media screen and (max-width:760px){
  .flow-content p{
    font-size: .7rem;
  }
  .flow-title img{
    max-width: 50px;
  }
}
/* ------------------------------------
bangkok--------------------------------
------------------------------------- */
.bangkok {
  background: url("https://cdn.pixabay.com/photo/2015/06/19/21/24/avenue-815297_960_720.jpg") no-repeat;
  background-size: cover;
  background-position: center;
}

.bangkok-reason {
  width: 70%;
  text-align: left;
  margin-left: 30px;
}

.bangkok-reason li {
  margin-bottom: 10px;
}
@media screen and (max-width:760px){
  .bangkok-reason {
    width: 90%;
    margin: 0px auto;
  }
  .bangkok p:first-child{
    text-align: center;
    font-size: 1.5rem;

  }
}
/* ------------------------------------
service--------------------------------
------------------------------------- */
.service {
  background-color: orange;
}

.service-detail {
  position: relative;
}

.service-flex {
  border: 2px solid white;
  padding: 50px 10%;
  margin-top: 150px;
}

.service-flex li.col-3 {
  background-color: white;
  border-radius: 135px;
  width: 270px;
  height: 270px;
  padding: 60px 0;
}

.service .thummiddle-size {
  background-color: orange;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -75%);
  line-height: 2;
}
@media screen and (max-width:760px){
  .service-flex {
    margin-top: 70px;
    padding: 50px 10% 10px;
  }
  .service-flex .normal-size{
    font-size: .8rem;
  }
  .service-flex .small-size {
    font-size: .6rem;
  }
  .service-flex li.col-3 {
    background-color: white;
    border-radius: 100px;
    width: 200px;
    height: 200px;
    padding: 50px 0;
    margin-bottom: 20px;
  }
  .service .thummiddle-size {
    font-size: 1.1rem;
    width: 70%;
    transform: translate(-50%, -55%);
  }
}

/* ------------------------------------
volunteer--------------------------------
------------------------------------- */
.volunteer {
  background: url("https://cdn.pixabay.com/photo/2015/06/19/21/24/avenue-815297_960_720.jpg") no-repeat;
  background-size: cover;
  background-position: center;
}

/* ------------------------------------
message--------------------------------
------------------------------------- */
.message .wrapper-wide{
    padding: 0 15%;
}

.message-flex{
    margin-top: 50px;
}
.message-image{
    width: 150px;
    height: 100px;
}
.message-description{
    width: calc(95% - 150px);
    text-align: left;
}
@media screen and (max-width:760px){
  .message .wrapper-wide{
    padding: 0 3%;
}
  .message-flex{
    flex-direction: column;
  }
  .message-image{
    width: 100%;
    height: auto;
}
.message-description{
  width: 100%;
}
.message-description.small-size{
  font-weight: normal;
}
}
/* ------------------------------------
cnntact--------------------------------
------------------------------------- */
.contact{
    background-color: orange;
}
.contact .wrapper-wide{
    padding: 0 15%;
}

.form{
    margin-top: 30px;
}

.form input{
    width: 100%;
    font-size: 16px;
    line-height: 3;
    border: none;
    border-radius: 5px;
    margin-bottom: 20px;
}

.form textarea{
    width: 100%;
    border-radius: 5px;
    border: none;
    margin-bottom: 30px;
    font-family: 'Meiryo';
    font-size: 100%;
}

.form .btn{
    width: 100%;
    line-height: 2;
    font-size: 20px;
    font-weight: bold;
}
@media screen and (max-width:760px){
  .contact .wrapper-wide{
    padding: 0 3%;
}
}
/* ------------------------------------
faq--------------------------------
------------------------------------- */
.faq .wrapper-wide{
    padding: 0 10%;
}
.faq-list{
    text-align: left;
    margin-top: 50px;
}

.faq-question{
    border: 1px solid rgb(231, 230, 230);
    padding: 10px;
    position: relative;
    cursor: pointer;
    margin-bottom: 5px;
}

.faq-question::before{
    content: '';
    width: 15px;
    height: 15px;
    border-right: 5px solid grey;
    border-bottom: 5px solid grey;    
    transform:rotate(45deg);
    position: absolute;
    right: 20px;
    top: calc(50% - 7.5px);
}

.faq-question:hover a{
    border-bottom: 2px solid #333;
}

.faq-answer{
    padding: 0 20px;
    transition: all .5s;
    height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
}


/* 
アコーディオンメニュー
*/

.faq-question.open::before{
  transform: rotate(-135deg);
  top:50%
}

.faq-question.open + .faq-answer{
  height: auto;
  padding: 20px;
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width:760px){
  .faq .wrapper-wide{
    padding: 0 3%;
}
.faq-question a{
  font-size: .8rem;
}
.faq-answer{
  font-size: .7rem;
}
}

/* ------------------------------------
footer--------------------------------
------------------------------------- */
.footer{
    background-color: rgb(231, 230, 230);
}

.footer .twitter-link{
    margin-bottom: 30px;
}

.footer a{
    text-decoration:underline;
}

/* 
スクロールボタン
*/
.top-scroll-btn{
  background-color: rgb(231, 230, 230);
  width: 60px;
  height: 60px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  cursor: pointer;
}

.top-scroll-btn a{
  width: 17px;
  height: 17px;
  border-right: 5px solid #333;
  border-top: 5px solid #333;    
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-30%) rotate(-45deg);
}



/* ------------------------------------
レシポンシブ対応--------------------------------
------------------------------------- */
@media(max-width:1000px){
  .merit-flex,
  .member-flex,
  .study-lists,
  .service-flex{
    flex-direction: column;
    align-items: center;
  }

  .merit .flex li,
  .study-lists ul{
    width: 100%;
    margin: 0 auto;
    margin-bottom: 20px;
  }

  .merit .flex p{
    text-align: center;
  }

}