@charset "UTF-8";
/* ----------header---------------- */
header.header {
  position: absolute;
  z-index: 999;
  width: 100%;

}

.logoImg {
  width: 110px;
  height: 110px;
}

@media screen and (min-width: 1025px) {
  /* --px以上に適用されるCSS（PC用） */
  .logoText {
    font-size: 1.25em;
    margin-left: 20px;
    padding-top: 10px;
    line-height: 150%;
    font-weight: 400;
  }

  .logoG {
    padding-top: 15px;
    width: 100%;

  }

  .logoImg {
    width: 180px;
  }
}

/* ----------メインビジュアルSP---------------- */
.mainVisual {
  width: 100%;
  position: relative;
  padding-bottom: 170px;
}

.main__img {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  /* margin-bottom: 170px; */
}

.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.main__catch {
  display: block;
  width: 61.6%;
  max-width: 455px;

  position: absolute;
  right: 5.3%;
  bottom: 65px;
}

/* --------ヘッダーPC メインビジュアルPC-------------*/
@media screen and (min-width: 1025px) {

  /* 1025px以上に適用されるCSS（PC用） */
  .mainVisual {
    padding-bottom: 0px;
  }

  .main__img {
    width: 62.5%;
    margin-right: 0;
  }
}

@media screen and (min-width: 1025px) {
  /* px以上に適用されるCSS（PC用） */
  .main__catch {
    width: 33.4%;
    position: absolute;
    left: -33%;
    top: 450px;
    z-index: 900;
    max-width: 520px;
  }
}

/* ----------plan---------------- */
.section--plan {
  display: flex;
  padding: 0px 10% 30px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 35px;
  overflow: hidden;
}

.plan__title {
  display: flex;
  align-items: center;
  margin-bottom: 10px;

}

.plan__title img {
  display: inline;
}

.studioIcon {
  width: 45px;
}

.carIcon {
  width: 50px;
}

.profileIcon {
  width: 35px;
}

#plan h3 {
  margin-left: 10px;
}

.planBtn img {
  width: 100%;
  /* 幅を持たせてあげる */
  max-width: 100%;
}
.travelPlans {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.profilePhotoTitle {
  position: relative;
}

.new {
  width: 60px;
  position: absolute;
  top: -20px;
  right: -50px;
}

.planBtn {
  display: block;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}

/* --------PLAN PC------------- */
@media screen and (min-width: 769px) {
  /* --px以上に適用されるCSS（PC用） */
  .section--plan {
    padding: 45px 13.9% 90px;
    gap: 30px;
  }

  .travelPlans {
    flex-direction: row;
    justify-content: space-between;
  }

  .travelPlans a {
    flex-basis: 28.9%;
    /* 各ボタンの幅を均等にする */
  }

  .new {
    width: 89px;
    position: absolute;
    top: -12px;
    right: -100px;
  }
}

/* About */
.section--about {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 10% 45px;
  background-image: url(../images/aboutSectionImg-min.png);
  /* background-repeat: no-repeat; */
  background-size: cover;
}

.section--about h2 {
  margin-bottom: 10px;
}

.sectionGuide {
  line-height: 180%;
  font-weight: 300;
}

.btn__flameLine {
  display: block;
  color: #7C6B59;
  display: flex;
  padding: 7px 0px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
  border: 1px solid #7C6B59;
  position: relative;
  font-family: Lato;
  font-size: 24px;
  font-weight: 300;
  line-height: normal;
}

.about .btn__flameLine {
  margin: 30px auto 0;
}

.btnArrow {
  position: absolute;
  width: 34.5px;
  right: 41.5px;
  top: 11px;
}

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

  /* --px以上に適用されるCSS（PC用） */
  .about .btn__flameLine {
    width: 100%;
  }
}

/* --------aboutPC------- */
@media screen and (min-width: 1025px) {

  /* --px以上に適用されるCSS（PC用） */
  .section--about {
    padding: 30px 13.9% 45px;
    background-image: url(../images/aboutBackImgPC-min.png);
    background-size: auto;
    position: relative;
  }

  .section--about h2 {
    margin-left: 0;
  }

  #about .btn__flameLine {
    width: 452px;

  }

  .about {
    width: 100%;
  }

  .aboutImg {
    width: auto;
    height: 289px;
    position: absolute;
    right: 12.9%;
    top: -80px;
  }

  .aboutImgPC {
    width: auto;
    height: 327px;
  }
}

/* gallery */
.section--gallery {
  width: 100%;
  padding: 50px 0 60px;
}

.galleryTextG {
  width: 80%;
  margin: 0 auto;
}

.gallery__sectionGuide {
  margin-top: 10px;
  line-height: 180%;
}

.gallery .btn__flameLine {
  width: 80%;
}

@media screen and (max-width: 1024px) {
  /* 1024px以下に適用されるCSS（SP用） */
  .brPC {
    display: none;
  }
}

.gallery__images {
  display: flex;
  width: 100%;
  max-width: 100%;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.galleryImg {
  display: block;
  width: 50%;
  max-width: 100%;
}

.gallery__sectionGuide {
  margin: 10px auto 20px;
}

.section--gallery .btn__flameLine {
  margin: 30px auto 0;
}

/* ------galleryPC--------- */
@media screen and (min-width: 1025px) {
  /* --px以上に適用されるCSS（PC用） */
  .brSP {
    display: none;
  }

  .section--gallery {
    padding: 0px 0 15px;
  }

  .galleryContents {
    display: flex;
    padding: 0 0 40px;

  }

  .galleryTextG {
    width: 42.6%;
    height: 600px;
    padding-left: 13.9%;
  }

  .galleryTextG .sectionTitle {
    text-align: left;
    margin-top: 30px;
    margin-bottom: 176px;
  }

  .gallery__sectionGuide {
    width: 100%;
    margin: 0;
  }

  .gallery__images {
    margin-top: 0;
    width: 57.2%;
  }

  .galleryImg {
    width: 50%;
  }

  .gallery .btn__flameLine {
    width: 452px;
    margin-top: 0;
  }
}

/* Insta */
.section--instagram {
  margin-top: 30px;
}

.section--instagram .sectionGuide {
  padding: 0 13.9%;
  text-align: right;
  margin-top: 10px;
}

.instagramImg {
  display: block;
  width: 50%;
  max-width: 100%;
}

.instaImgs {
  display: flex;
  width: 100%;
  max-width: 100%;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn__flameLine-Insta {
  width: 80%;
  margin: 30px auto 40px;
}

/* ------InstaPC--------- */
@media screen and (min-width: 1025px) {

  /* --px以上に適用されるCSS（PC用） */
  .section--instagram {
    padding: 45px 0 45px;
  }

  .instaContents {
    display: flex;
  }

  .instagramTextG {
    width: 42.6%;
    padding-left: 13.9%;

  }

  .instagramTextG .sectionTitle {
    text-align: left;
    margin-top: 30px;
    margin-bottom: 23px;
  }

  .instagramTextG .sectionGuide {
    text-align: left;
    padding: 0;
  }

  .instaImgs {
    width: 57.2%;
    margin-top: 0;
  }

  .instagramImg {
    width: 25%;
  }

  .btn__flameLine-Insta {
    width: 452px;
    margin: 40px auto 45px;
  }
}

/* voice */
.section--voice {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 4.7%;
  gap: 20px;
}

.sectionTitleJP {
  display: block;
  text-align: center;
  position: relative;
}

.mama {
  width: 55px;
  display: block;
  position: absolute;
  right: 25px;
  top: -75px;
}

.voiceText {
  width: 100%;
  max-width: 100%;
  margin: 20px auto;
  display: flex;
  padding: 25px 20px;
  justify-content: center;
  align-items: center;
  gap: 30px;
  border-radius: 30px 30px 0px 30px;
  background: var(--voice, linear-gradient(107deg, #FFF7DA 8.85%, #FFF1E9 93.68%));
}

.section--voice .btn__flameLine {
  width: 88%;
}

@media screen and (min-width: 1025px) {
  /* --px以上に適用されるCSS（PC用） */
  .section--voice {
    padding: 45px 13.9%;
    align-items: flex-start;
    gap: 0;
  }

  .voiceContents {
    display: flex;
    justify-content: space-between;
  }

  .sectionTitleG {
    width: 5.9%;
    margin-top: 30px;
  }

  .section--voice .sectionTitleJP {
    width: 96px;
    text-align: left;
    position: relative;
  }

  .mama {
    display: block;
    width: 64.2px;
    position: absolute;
    left: 105px;
    top: 10px;
  }

  .section--voice .sectionTitle {
    margin-bottom: 0;
  }

  .voices {
    width: 79%;
    display: flex;
    gap: 10px;

  }

  .voiceText {
    margin-top: 0;
    margin-bottom: 45px;
  }

  .section--voice .btn__flameLine {
    width: 452px;
    margin: 0 auto;
  }
}

/* QA */
.section--qa {
  padding: 30px 4.6%;
}

.sectionTitleQA h2 {
  letter-spacing: 0.1em;
  margin-bottom: 0;
}

.fontsize {
  font-size: 0.8em;
}

.sectionTitleJPqa {
  margin-bottom: 20px;
  text-align: center;
}

.qGroup {
  background-color: #EBDDD5;
  padding: 20px 5.9%;
  border-radius: 15px 15px 0px 0px;
  align-items: center;

}

.Q {
  margin-right: 10px;
  font-family: "Lato";
  font-size: 2.25em;
}

.Qtext {
  font-size: 1.125em;
}

.aGroup {
  border-radius: 0px 0px 15px 15px;
  background: var(--QAlight, linear-gradient(112deg, #FFF0E9 0%, #FFF2E5 65.38%, #FFF4E1 77.78%, #F1EBE6 99.26%));
  padding: 20px 5.9%;
  border-radius: 0px 0px 15px 15px;
}

.Atext {
  font-weight: 300;
  line-height: 150%;
}

.Atext span {
  font-size: 0.8em;
}

th {
  padding-right: 10px;
}

table {
  margin-top: 10px;
}

.qa2 {
  margin-top: 20px;
  margin-bottom: 30px;
}

.section--qa .btn__flameLine {
  width: 88%;
  margin: 0 auto;
}

/* 仮 */
.openline {
  margin-top: 10px;
}

.qGroup {
  height: 80px;
}

@media screen and (min-width: 1025px) and (max-width: 1403px) {
  /* --px〜--pxに適用されるCSS（タブレット用） */
  .section--qa {
    padding-left: 13.9%;
    padding-right: 13.9%;
  }

  .qaContents {
    display: flex;
    justify-content: space-between;
  }

  .sectionTitleQA {
    margin-top: 30px;
  }

  .qaG {
    width: 79%;
  }

  .qa1 {
    display: block;
    width: 100%;
  }

  .qa2 {
    display: block;
    width: 100%;
  }

  .sectionTitleJPqa {
    text-align: left;
  }

  .section--qa .btn__flameLine {
    width: 452px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1404px) {
  /* --px以上に適用されるCSS（PC用） */
  .section--qa {
    padding: 45px 13.9%;
    align-items: flex-start;
    gap: 0;

  }

  .qaContents {
    display: flex;
    justify-content: space-between;
  }

  .sectionTitleQA {
    margin-top: 30px;
  }

  .sectionTitleJPqa {
    text-align: left;
  }

  .section--qa .sectionTitle {
    margin-bottom: 0;
  }

  .qaG {
    width: 79%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 45px;
    gap: 45px;

  }

  .qa1 {
    width: 60%;
  }

  .qa2 {
    width: 40%;
  }

  .Qtext {
    font-size: 1.25em;
  }

  .Atext {
    font-size: 1.25em;
  }

  .Q {
    font-size: 2.25em;
  }

  .openLeft {
    margin-left: 80px;
  }

  .qa2 {
    margin: 0;
  }

  .section--qa .btn__flameLine {
    width: 452px;
    margin: 0 auto;
  }
}