@charset "UTF-8";
/* CSS Document */
.header {
  position: relative;
}
.header__navigation {
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: -100vw;
  top: 0;
  background-color: aqua;
  z-index: 999;
}

.header_BigTree {
  position: absolute;
  left: 24px;
  top: 8px;
  z-index: 1000;
  color: #fff;
  font-size: 2.0rem;
  line-height: 1;
}
/*header-pc*/
@media (min-width: 480px) {
  .header.inner {
    position: relative;
  }
  .header__navigation {
    position: absolute;
    background-color: transparent;
    width: auto;
    height: auto;
    left: initial;
    top: 40px;
    right: 0;
  }
  .header_BigTree {
    position: absolute;
    left: 200px;
    top: 30px;
    z-index: 1000;
    color: #fff;
    font-size: 2.4rem;
    line-height: 1;
  }
  .header__navigation ul {
    position: absolute;
    right: 200px;
    display: flex;
    gap: 50px;
  }
  .header__navigation a {
    color: #fff;
    text-decoration: none;
    font-size: 1.6rem;
    max-width: 1040px;
    margin: 0 auto;
  }
/*ゆっくり透明に*/
  .header__navigation a {
  transition: .3s;
  }

/*ホバー時に透明度50%*/
  .header__navigation a:hover {
  opacity: 0.5;
  }
}

/*main-sp*/
.section-top__image {
  position: relative;
  vertical-align: bottom;
}
.section-top__image-title {
  position: absolute;
  width: 80%;
  aspect-ratio: 1/1;
  right: -20%;
  bottom: 5%;
}
.section-top__image-title {
  display: block;
}
.section-top__image-title__en {
  width: 90%;
  right: -10%;
  margin-bottom: 50px;
  animation: rote 30s infinite linear;
}
@keyframes rote {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.section-top__image-title__ja {
  position: absolute;
  top: 45%;
  left: -30%;
  width: 80%;
  transform: translate(65px, 20px);
}
.section-top__image-title__ja.fade-in {
  animation-name: fadeInAnime; /*1で解説*/
  animation-fill-mode: forwards; /*2で解説*/
  animation-duration: 3s; /*3で解説*/
  animation-iteration-count: 1; /*4で解説*/
  animation-timing-function: ease; /*5で解説*/
  animation-direction: normal; /*7で解説*/
}
/*1で解説*/
@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.main-visual_pc {
  display: none;
}
.scrolldown {
  position: absolute;
  bottom: 1%;
  right: 50%;
  /*矢印の動き1秒かけて永遠にループ*/
  animation: arrowmove 2s ease-in-out infinite;
}
/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove {
  0% {
    bottom: 1%;
  }
  50% {
    bottom: 3%;
  }
  100% {
    bottom: 1%;
  }
}
/*Scrollテキストの描写*/
.scrolldown span {
  /*描画位置*/
  position: absolute;
  left: -20px;
  bottom: 10px;
  /*テキストの形状*/
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
/* 矢印の描写 */
.scrolldown:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  right: -6px;
  /*矢印の形状*/
  width: 1px;
  height: 20px;
  background: #eee;
  transform: skewX(-31deg);
}
.scrolldown:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  right: 0;
  /*矢印の形状*/
  width: 1px;
  height: 50px;
  background: #eee;
}
/*main-pc*/
@media (min-width: 1040px) {
  .main-visual_pc {
    display: block;
  }
  .main-visual_sp {
    display: none;
  }
  .section-top__image-title__en {
    position: absolute;
    width: 40%;
    right: 40%;
    bottom: 0;
    animation: rote 30s infinite linear;
  }
  .section-top__image-title__ja {
    position: absolute;
    top: 78%;
    width: 35%;
    left: 8%;
  }
  
}
/*about-sp*/
.section_top {
  background-color: #f7f7f7;
  margin-top: -10px;
}
.section-About__image_pc {
  display: none;
}
.section-About__image_sp {
  width: 200px;
  height: 200px;
  margin-top: 60px;
}
.section-About__image_sp.fade-in {
  animation-name: fadeInAnime;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.section-About_title {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 1.1rem;
  margin-top: 60px;
  margin-left: -15px;
  color: #545458;
}
.section_top h2 {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  margin-top: 60px;
  margin-left: -10px;
  font-size: 3.0rem;
  font-weight: 300;
  color: #545458;
}
.section-About_container {
  display: flex;
}
.section_top_read-1 {
  font-size: 2.2rem;
  line-height: 35px;
  margin: 80px;
  color: #545458;
  opacity: 0;
}
.section_top_read-1.fade-in {
  animation-name: fadeInAnime; /*1で解説*/
  animation-fill-mode: forwards; /*2で解説*/
  animation-duration: 3s; /*3で解説*/
  animation-iteration-count: 1; /*4で解説*/
  animation-timing-function: ease; /*5で解説*/
  animation-direction: normal; /*7で解説*/
}
/*1で解説*/
@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.section_top_read-2 {
  font-size: 1.6rem;
  line-height: 30px;
  margin-top: 80px;
  padding-left: 80px;
  padding-bottom: 80px;
  color: #545458;
  position: relative;
  opacity: 0;
}
.section_top_read-2.fade-in {
  animation-name: fadeInAnime; /*1で解説*/
  animation-fill-mode: forwards; /*2で解説*/
  animation-duration: 3s; /*3で解説*/
  animation-iteration-count: 1; /*4で解説*/
  animation-timing-function: ease; /*5で解説*/
  animation-delay: 1s; /*6で解説*/
  animation-direction: normal; /*7で解説*/
}
.section_top_read-2::before {
  content: "";
  position: absolute;
  background-image: url("../images/common/on a journey_sp.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 30%;
  height: 40px;
  top: 160px;
  left: 50px;
}
.section-About__image2_pc {
  display: none;
}
.section-About__image2_sp {
  width: 175px;
  height: 200px;
  margin: 0px 0 60px 144px;
}
.section-About__image2_sp.fade-in {
  animation-name: fadeInAnime;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*About-pc*/
@media (min-width: 480px) {
  .section-About__image_sp {
    display: none;
  }
  .section-About__image_pc {
    display: block;
    width: 399px;
    height: 320px;
    margin-top: 100px;
  }
  .section-About__image_pc.fade-in {
    animation-name: fadeInAnime; /*1で解説*/
    animation-fill-mode: forwards; /*2で解説*/
    animation-duration: 3s; /*3で解説*/
    animation-iteration-count: 1; /*4で解説*/
    animation-timing-function: ease; /*5で解説*/
    animation-direction: normal; /*7で解説*/
  }
  .section-About_title {
    font-size: 1.3rem;
    margin-top: 100px;
  }
  .section_top h2 {
    font-size: 3.8rem;
    margin-top: 100px;
  }
  .section_top_read-1 {
    font-size: 2.4rem;
    position: absolute;
    margin-left: 507px;
    margin-top: -140px;
  }
  .section_top_read-2 {
    font-size: 1.8rem;
    padding-left: 507px;
    margin-top: 0px;
    padding-bottom: 0;
  }
  .section-About__image2_sp {
    display: none;
  }
  .section-About__image2_pc {
    display: block;
    width: 229px;
    position: absolute;
    margin-left: 812px;
    margin-bottom: 248px;
  }
  .section-About__image2_pc.fade-in {
    animation-name: fadeInAnime; /*1で解説*/
    animation-fill-mode: forwards; /*2で解説*/
    animation-duration: 3s; /*3で解説*/
    animation-iteration-count: 1; /*4で解説*/
    animation-timing-function: ease; /*5で解説*/
    animation-direction: normal; /*7で解説*/
  }
  .section_top_read-2::before {
    content: "";
    position: absolute;
    background-image: url("../images/common/on a journey_pc.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 25%;
    height: 60px;
    top: 250px;
    left: 430px;
  }
}
/*service_sp */
.section_Service {
  background-color: #f7f7f7;
  padding-bottom: 60px;
}
.section-Service_title {
  writing-mode: vertical-rl;
  margin-top: 60px;
  margin-left: -280px;
  font-size: 1.1rem;
  color: #545458;
}
.section_Service h2 {
  writing-mode: vertical-rl;
  margin-left: -15px;
  padding-top: 60px;
  font-size: 3rem;
  font-weight: 300;
  color: #545458;
}
_::-webkit-full-page-media, _:future, :root .section_Service h2 {
    left: 30px;
}
.section-Service__image_pc {
  display: none;
}
.section-Service__image_sp {
  width: 225px;
  height: 200px;
  margin: 60px 0px 0 93px;
}
.section-Service__image_sp.fade-in {
  animation-name: fadeInAnime; /*1で解説*/
  animation-fill-mode: forwards; /*2で解説*/
  animation-duration: 3s; /*3で解説*/
  animation-iteration-count: 1; /*4で解説*/
  animation-timing-function: ease; /*5で解説*/
  animation-direction: normal; /*7で解説*/
}
/*1で解説*/
@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.section-Service_container {
  display: flex;
}
.Service-en {
  margin-top: 45px;
  margin-left: 30px;
  font-size: 1.6rem;
  color: #545458;
}
.Service-en.fade-in {
  animation-name: fadeInAnime; /*1で解説*/
  animation-fill-mode: forwards; /*2で解説*/
  animation-duration: 3s; /*3で解説*/
  animation-iteration-count: 1; /*4で解説*/
  animation-timing-function: ease; /*5で解説*/
  animation-direction: normal; /*7で解説*/
}
/*1で解説*/
@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.Service-ja {
  margin-left: 30px;
  line-height: 24px;
  font-size: 1.4rem;
  color: #545458;
}
.Service-ja.fade-in {
  animation-name: fadeInAnime; /*1で解説*/
  animation-fill-mode: forwards; /*2で解説*/
  animation-duration: 3s; /*3で解説*/
  animation-iteration-count: 1; /*4で解説*/
  animation-timing-function: ease; /*5で解説*/
  animation-direction: normal; /*7で解説*/
}
/*1で解説*/
@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.button_1 {
  font-size: 1.2rem;
  text-align: center;
  width: 150px;
  height: 35px;
  border: 1px solid #d8d8d6;
  margin: 60px auto 0;
  box-shadow: 1px 1px 4px #d8d8d6;
}
.button_1.fade-in {
  animation-name: fadeInAnime; /*1で解説*/
  animation-fill-mode: forwards; /*2で解説*/
  animation-duration: 3s; /*3で解説*/
  animation-iteration-count: 1; /*4で解説*/
  animation-timing-function: ease; /*5で解説*/
  animation-direction: normal; /*7で解説*/
}
/*1で解説*/
@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.button_1 a {
  line-height: 35px;
  text-decoration: none;
  color: #545458;
}

.button_1 a.fade-in {
  animation-name: fadeInAnime; /*1で解説*/
  animation-fill-mode: forwards; /*2で解説*/
  animation-duration: 3s; /*3で解説*/
  animation-iteration-count: 1; /*4で解説*/
  animation-timing-function: ease; /*5で解説*/
  animation-direction: normal; /*7で解説*/
}
/*1で解説*/
@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*Service-pc*/
@media (min-width: 480px) {
  .section_Service {
    background-color: #f7f7f7;
    padding-bottom: 100px;
  }
  .section-Service__image_sp {
    display: none;
  }
  .section-Service__image_pc {
    display: block;
    width: 486px;
    margin-top: 555px;
    margin-left: 555px;
  }
  .section-Service__image_pc.fade-in {
    animation-name: fadeInAnime; /*1で解説*/
    animation-fill-mode: forwards; /*2で解説*/
    animation-duration: 3s; /*3で解説*/
    animation-iteration-count: 1; /*4で解説*/
    animation-timing-function: ease; /*5で解説*/
    animation-direction: normal; /*7で解説*/
  }
  .section-Service_title {
    writing-mode: vertical-rl;
    font-size: 1.2rem;
    transform: translate(-270px, 500px);
  }
  .section_Service h2 {
    writing-mode: vertical-rl;
    font-size: 3.8rem;
    font-weight: 300;
    padding: 0;
    position: absolute;
    transform: translate(510px, 555px);
  }
  _::-webkit-full-page-media, _:future, :root .section_Service h2 {
    left: 200px;
}
  .section-Service_container {
    display: flex;
  }
  .Service-en {
    font-size: 2.4rem;
    margin-top: -130px;
  }
  .Service-ja {
    margin-top: 23px;
    line-height: 30px;
    font-size: 1.8rem;
  }
  .button_1 {
    font-size: 1.4rem;
    text-align: center;
    width: 250px;
    height: 50px;
    border: 1px solid #d8d8d6;
    margin: 100px auto 0;
  }
  .button_1 a {
    line-height: 50px;
    text-decoration: none;
    color: #545458;
  }
  /*ゆっくり透明に*/
  .button_1 p {
  transition: .3s;
  }

/*ホバー時に透明度50%*/
  .button_1 p:hover {
  opacity: 0.5;
  }
}
/*フランチャイズ-sp*/
.section_Franchise {
  background-image: url("../images/top/franchise-top_sp.png");
  aspect-ratio: 833/1002;
  background-size: cover;
  background-repeat: no-repeat;
}
.section_Franchise.fade-in {
  animation-name: fadeInAnime; /*1で解説*/
  animation-fill-mode: forwards; /*2で解説*/
  animation-duration: 3s; /*3で解説*/
  animation-iteration-count: 1; /*4で解説*/
  animation-timing-function: ease; /*5で解説*/
  animation-direction: normal; /*7で解説*/
}
/*1で解説*/
@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.section-Franchise_title {
  font-size: 1.1rem;
  margin-top: 50px;
  transform: translate(-15px);
  color: #eeeeee;
}
.section_Franchise h2 {
  font-size: 3.0rem;
  font-weight: 300;
  margin-top: 50px;
  margin-left: 260px;
  color: #eeeeee;
}
.section_Franchise_container {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.button {
  color: #eeeeee;
  font-size: 1.1rem;
  text-align: center;
  width: 130px;
  height: 35px;
  border: 1px solid #eeeeee;
  transform: translate(24px, 30px);
}
.button.fade-in {
  animation-name: fadeInAnime; /*1で解説*/
  animation-fill-mode: forwards; /*2で解説*/
  animation-duration: 3s; /*3で解説*/
  animation-iteration-count: 1; /*4で解説*/
  animation-timing-function: ease; /*5で解説*/
  animation-direction: normal; /*7で解説*/
}
/*1で解説*/
@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.button a {
  line-height: 35px;
  text-decoration: none;
  color: #eeeeee;
}
.button a.fade-in {
  animation-name: fadeInAnime; /*1で解説*/
  animation-fill-mode: forwards; /*2で解説*/
  animation-duration: 3s; /*3で解説*/
  animation-iteration-count: 1; /*4で解説*/
  animation-timing-function: ease; /*5で解説*/
  animation-direction: normal; /*7で解説*/
}
/*1で解説*/
@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*franchise_pc*/
@media (min-width: 480px) {
  .section_Franchise {
    display: none;
  }
  .section_Franchise_container .inner {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-top: 10%;
    position: relative;
  }
  .section_Franchise_title_group {
    margin-left: auto;
  }
  .section_Franchise {
    display: block;
    background-image: url("../images/top/top-franchise_pc.png");
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    aspect-ratio: 1440 / 537;
  }
  .section_Franchise_container {
    all: initial;
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  }
  .section_Franchise h2 {
    font-weight: 300;
    font-size: 3.8rem;
    margin: 0;
  }
  .section-Franchise_title {
    font-size: 1.4rem;
    margin: 0;
    transform: none;
  }
  .button {
    color: #eeeeee;
    font-size: 1.4rem;
    text-align: center;
    width: 250px;
    height: 50px;
    border: 1px solid #eeeeee;
    transform: none;
    position: absolute;
    right: 200px;
    margin-top: 200px;
  }
  .button a {
    line-height: 50px;
    text-decoration: none;
    color: #eeeeee;
  }
  /*ゆっくり透明に*/
  .button p {
  transition: .3s;
  }

/*ホバー時に透明度50%*/
  .button p:hover {
  opacity: 0.5;
  }
}
/*company-sp*/
.section_Company {
  background-color: #f7f7f7;
  display: flex;
  padding-bottom: 60px;
  position: relative;
}
.section-Company__image_pc {
  display: none;
}
.section-Company__image_sp {
  width: 227px;
  height: 200px;
  margin-top: 80px;
}
.section-Company__image_sp.fade-in {
  animation-name: fadeInAnime; /*1で解説*/
  animation-fill-mode: forwards; /*2で解説*/
  animation-duration: 3s; /*3で解説*/
  animation-iteration-count: 1; /*4で解説*/
  animation-timing-function: ease; /*5で解説*/
  animation-direction: normal; /*7で解説*/
}
/*1で解説*/
@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.section-Company_title {
  font-size: 1.1rem;
  color: #545458;
  transform: translate(260px, -197px);
}
.section_Company h2 {
  position: absolute;
  font-size: 3rem;
  font-weight: 300;
  color: #545458;
  margin-top: -200px;
  left: 248px;
}
_::-webkit-full-page-media, _:future, :root .section_Company h2 {
  margin-top: -230px;
}

.section_Company_container {
  writing-mode: vertical-rl;
  margin-right: 90px;
}
.button_3 {
  font-size: 1.1rem;
  text-align: center;
  width: 130px;
  height: 35px;
  border: 1px solid #d8d8d6;
  margin: 10px auto 0;
  box-shadow: 1px 1px 4px #d8d8d6;
}
.button_3.fade-in {
  animation-name: fadeInAnime; /*1で解説*/
  animation-fill-mode: forwards; /*2で解説*/
  animation-duration: 3s; /*3で解説*/
  animation-iteration-count: 1; /*4で解説*/
  animation-timing-function: ease; /*5で解説*/
  animation-direction: normal; /*7で解説*/
}
/*1で解説*/
@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.button_3 a {
  color: #545458;
  line-height: 35px;
  text-decoration: none;
}
.button_3 a.fade-in {
  animation-name: fadeInAnime; /*1で解説*/
  animation-fill-mode: forwards; /*2で解説*/
  animation-duration: 3s; /*3で解説*/
  animation-iteration-count: 1; /*4で解説*/
  animation-timing-function: ease; /*5で解説*/
  animation-direction: normal; /*7で解説*/
}
/*1で解説*/
@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*Company_pc*/
@media (min-width: 480px) {
  .section_Company {
    padding-bottom: 100px;
    position: relative
  }
  .section-Company__image_sp {
    display: none;
  }
  .READMORE-Company_button_sp {
    display: none;
  }
  .section-Company__image_pc {
    display: block;
    width: 485px;
    margin-top: 150px;
  }
  .section-Company__image_pc.fade-in {
    animation-name: fadeInAnime; /*1で解説*/
    animation-fill-mode: forwards; /*2で解説*/
    animation-duration: 3s; /*3で解説*/
    animation-iteration-count: 1; /*4で解説*/
    animation-timing-function: ease; /*5で解説*/
    animation-direction: normal; /*7で解説*/
  }
  .section_Company h2 {
    font-size: 3.8rem;
    margin: 0;
    margin-top: -390px;
    /*left: 680px;*/
    margin-left: 430px;
  }
  _::-webkit-full-page-media, _:future, :root .section_Company h2 {
    margin-top: -595px;
}
  .section-Company_title {
    font-size: 1.4rem;
    transform: translate(538px, -385px);
  }
  .READMORE-Company_button_pc {
    display: block;
    width: 250px;
    margin: 0 auto;
    padding-bottom: 80px;
  }
  .button_3 {
    font-size: 1.4rem;
    text-align: center;
    width: 250px;
    height: 50px;
    border: 1px solid #d8d8d6;
    margin: 50px auto 0;
  }
  .button_3 a {
    line-height: 50px;
    text-decoration: none;
    color: #545458;
  }
  /*ゆっくり透明に*/
  .button_3 p {
  transition: .3s;
  }

/*ホバー時に透明度50%*/
  .button_3 p:hover {
  opacity: 0.5;
  }
}
/*CONTACT_sp*/
.section_CONTACT {
  background-color: #fff;
}
.section_CONTACT h2 {
  font-size: 2.4rem;
  width: 40%;
  margin: 115px 0 0 100px;
}
.section_CONTACT_read {
  text-align: center;
  font-size: 1.3rem;
  margin: 40px 0 47px;
  color: #545458;
}
.CONTACT-button_pc {
  display: none;
}
.CONTACT-button_sp {
  display: block;
  margin-bottom: 115px;
}
/*CONTACT-pc*/
@media (min-width: 480px) {
  .section_CONTACT h2 {
    margin: 123px auto 0;
  }
  .section_CONTACT_read {
    font-size: 1.6rem;
  }
  .CONTACT-button_sp {
    display: none;
  }
  .CONTACT-button_pc {
    display: block;
    width: 640px;
    margin-top: 50px;
    margin-left: 200px;
    margin-right: 399px;
    margin-bottom: 100px;
  }
}
