@charset "UTF-8";

/* === @reset === */
*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
/* === end @reset === */

/* === @common === */
:root {
  --main-color: #022C79;
  --color-bg-base: #374B7161;
  --font-color: rgb(34, 34, 34);
  --underline-color: #FF7824;
}

html {
  font-size: 100%;
}

body {
  color: var(--font-color);
  font-family: "Noto Serif JP", sans-serif;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
}

.section-title-wrapper {
  background-color: var(--color-bg-base);
  padding: 20px 0;
  margin-bottom: 60px;
}
.section-title {
  height: 100%;
  line-height: 1.5;
  color: #272727;
  text-shadow: 0 5px 5px rgba(0, 0, 0, .25);
}

.section-title-en {
  font-family: "Cormorant Garamond", sans-serif;
  display: inline-block;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
}

.section-title-ja {
  display: inline-block;
  font-size: 1.25rem;
  line-height: 1;
}

.content-title {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 500;
  padding: 0 5px;
  position: relative;
  line-height: 2;
  margin-bottom: 25px;
}

.content-title::after {
  content: "";
  width: 100%;
  height: 4px;
  background-color: var(--underline-color);
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
} 

.slogan {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.container {
  max-width: 1400px;
  padding: 0 20px;
  margin: 0 auto; 
}

.return-btn {
  position: fixed;
  bottom: 40px;
  right: 30px;
  z-index: 5;
  width: 60px;
  height: 100px;
  transition: 0.5s;
  opacity: 0;
}

.return-btn.show {
  bottom: 30px;
  opacity: 1;
}

/* === end @common === */

/* === @header === */
.header{
  width: 100%;
  height: 75px;
  background-color: var(--main-color);
  padding: 0 20px 0 220px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.header__inner {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 0 auto;
}

.header__gnav-list {
  display: flex;
  justify-content: end;
  align-items: center;
}

.header__gnav-list-item {
  margin-left: 30px;
}

.header__home a,
.header__gnav-list-item a{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(0.875rem, 1.5vw ,1.125rem);
  font-weight: 500;
  color: #FFF;
  position: relative;
  text-align: center;
}

.header__home a::after,
.header__gnav-list-item a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 4px;
  background-color: var(--underline-color);
  transform: scale(0, 1);
  transform-origin: center top;
  transition: 0.3s;
}

.header__home a:hover::after,
.header__gnav-list-item a:hover::after{
  transform: scale(1, 1);
}

.header__open-btn {
  display: none;
}

/* === end @header === */

/* === @spNav === */
.spnav{
  display: none;
}
/* === end @spNav === */

/* === @mainvisul === */
.mainvisual {
  background-color: #2A4A86AB;
  height: 90vh;
  position: relative;
  margin-top: 75px;
}

.mainvisual__img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  z-index: 1;
}

.mainvisual__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.mainvisual__title {
  background-color: #FFF;
  width: 200px;
  height: 280px;
  position: absolute;
  top: -75px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 2;
}

.mainvisual__title-logo {
  margin-bottom: 10px;
}

.mainvisual__title-logo img {
  width: 90px;
  height: 90px;
}

.maiinvisual__title-text {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 400;
  color: #012B79;
  line-height: 1.6;
}

.maiinvisual__title-text-name-en {
  letter-spacing: 0.6em;
}

.maiinvisual__title-text-name-ja {
  letter-spacing: 0.4em;
}

.maiinvisual__title-text-name-office {
  letter-spacing: 0.1em;
}

.mainvisual__catchcopy {
  background-color: #103D91;
  width: 200px;
  height: 370px;
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.mainvisual__catchcopy-text {
  font-family: "Zen Kurenaido", "Noto Serif JP", sans-serif;
  writing-mode: vertical-rl;
  color: #FFF;
  font-size: 1.2rem;
  line-height: 2;
  letter-spacing: 0.6em;
}
/* === end @mainvisual === */

/* === @about === */
.about {
  background-color: #FFF;
  padding-bottom: 80px;
}

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

.about__greet-content-desc{
 font-size: 1rem;
 line-height: 2;
 margin-bottom: 10px;
}

.about__greet {
  width: 45%;
}

.about__greet-content {
  padding: 10px;
}

.about__profile {
  margin-top: -130px;
  width: 45%;
}

.about__profile img {
  object-fit: cover;
  margin-bottom: 42px;
}

.about__profile-content {
  padding: 10px;
}

.about__profile-content-desc {
  line-height: 2;
  margin-bottom: 10px;
}
/* === end @about === */

/* === @service === */
.service {
  background-color: #FFF;
  padding-bottom: 80px;
}

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

.service__flex-img {
  width: 45%;
}

.service__flex-img img {
  width: 100%;
  aspect-ratio: 452/421; 
  object-fit: cover;
  object-position: 100% 50%;
}

.service__flex-texts {
  width: 45%;
}

.service__policy {
  margin-bottom: 60px;
}

.service__policy-body-desc{
  line-height: 2;
  margin-bottom: 10px;
}

.service__list-item {
  font-size: 1.125rem;
  line-height: 2;
}
/* === end @serive === */

/* === @price-list === */
.price-lists {
  background-color: #FFF;
  padding-bottom: 80px;
}

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

.price-lists__flex-details {
  width: 55%;
}

.price-lists_corporation {
  margin-bottom: 60px;
}

.price-lists__table-wrapper{
  overflow-x: scroll;
}

.price-lists__flex table{
  min-width: 700px;
}

.price-lists__flex table {
  border: 1px solid #CCC;
  border-collapse: collapse;
  text-align: center;
  width: 100%;
}

.price-lists__flex table tr th, 
.price-lists__flex table tr td {
  border: 1px solid #CCC;
  padding: 5px;
}

.price-lists__flex table tr td{
  font-size: 0.875rem;
}

.price-lists__flex table tr th {
  background-color: var(--main-color);
  color: #FFF;
}

.price-lists__table-standard {
  width: 30%;
}

.price-lists__table-consuling-fee {
  width: 45%;
}

.price-lists__table-tax-return {
  width: 15%;
} 

.price-lists__table-sales {
  width: 15%;
} 

 .price-lists__table-sales-employee-num{
  width: 25%;
}  

.price-lists__flex-img {
  width: 40%;
  margin-top: 70px;
}

.price-lists__flex-img img {
  width: 100%;
  aspect-ratio: 558/467;
}
/* === end @price-list === */

/* === @contact === */

.contact {
  background-color: #FFF;
  padding-bottom: 160px;
  position: relative;
}

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

.contact__tel-title,
.contact__email-title,
.contact__flyer-title
{
  font-size: 1.5rem;
}

.contact__tel-number {
  font-size: 4rem;
  font-weight: 500;
  color: #022E7E;
  letter-spacing: 0.2em;
}

.contact__email {
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid #000;
  text-align: center;
  padding: 30px;
  margin-bottom: 60px;
}

.contact__email-title {
  margin-bottom: 40px;
}

.contact__email-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 80%;
  margin: 0 auto 30px auto;
}

.contact__email-list dt,
.contact__email-list dd{
  margin-bottom: 25px;
  font-size: 1.125rem;
}

.contact__email-list dt{
  width: 25%;
  text-align: left;
}

.contact__email-list dd{
  width: 75%;
  text-align: left;
}

.contact__email-list dd input,
.contact__email-list dd textarea{
  font-size: 1.25rem;
  border: 1px solid #000;
  padding: 10px;
  outline: none;
}

.contact__email-list dd input{
  width: 100%;
  max-width: 400px;
}

.contact__email-list dd textarea{
  width: 100%;
  height: 200px;
}

.contact__email-btn{
  background-color: #224380D4;
  width: 200px;
  height: 50px;
  color: #FFF;
  cursor:pointer;
  font-size: 1.75rem;
  border: 2px solid #224380D4;
  transition: 0.5s;
  letter-spacing: 0.3em;
  box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
}

.contact__email-btn:hover {
  border: 2px solid #224380D4;
  /* color: #224380D4; */
  background-color: #FF7824;
}

.contact__flyer {
  width: 440px;
  height: 200px;
  margin: 0 0 0 auto;
}

.contact__flyer-img {
  width: 120px;
  height: 191px;
  transform: translate(230px, -70px);
}

.contact__flyer-link {
  width: 98px;
  height: 90px;
  background-color: #D9D9D9;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transform: translate(300px, -120px);
}

.contact__flyer-link a {
  display: inline-block;
  width: 100%;
  height: 100%;
  color: var(--font-color);
  font-size: 1.25rem;
  line-height: 90px;
  transition: 0.5s;
}

.contact__flyer-link a:hover {
  background-color: #FF7824;
  color: #FFF;
}

.contact__sns {
  display: inline-block;
  width: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 120px;
}

.contact__sns-list {
  display: flex;
  justify-content: center;
}

.contact__sns-list-item {
  margin: 0 clamp(30px, 5vw, 70px);
}

.contact__sns-list-item a {
  display: inline-block;
  height: 100%;
}

.contact__sns-list-item a svg {
  width: 80px;
  height: 80px;
}

.contact__sns-list-item a path {
  transition: 0.5s;
}

.contact__sns-list-item a:hover path {
  fill: #FF7824;
}

/* === end @contact === */

/* === @footer === */
.footer {
  background-color: var(--color-bg-base);
  height: 110px;
}

.footer__copyright {
  font-size: 0.875rem;
  line-height: 110px;
  text-align: center;
}
/* === end @footer === */

/* === @responsive === */
@media screen and (max-width: 768px) {
   /* === @common === */
   .section-title-wrapper {
    padding: 20px 0;
   }

   .section-title-en {
    font-size: 1.75rem;
   }

   .section-title-ja {
    font-size: 0.875rem;
   }

   .content-title{
    font-size: 1.25rem;
   }

   .slogan {
    font-size: 1.125rem;
   }

   .container {
    padding: 0 15px;
   }

   .return-btn {
    display: none;
   }
   /* === end@common===*/

   /* === @header === */
   #header {
    height: 60px;
    position: fixed;
    width: 100%;
    z-index: 2;
   }

   .header__home {
    display: none;
   }

   .header__gnav {
    display: none;
   }

   .header__open-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 140px;
    position: absolute;
    top: 13px;
    right: 20px;
   }

   .header__open-btn-text{
    font-size: 0.875rem; 
    color: #FFF;
    cursor: pointer;
   }

   .header__open-btn-bars {
    width: 35px;
    height: 30px; 
    position: relative;
    background-color: transparent;
    border-color: transparent;
    cursor: pointer;
   }

   .header__open-btn-bar {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #FFF;
    left: 0;
   }

   .header__open-btn-bar:nth-of-type(1) {
    top: 8px;
   }

   .header__open-btn-bar:nth-of-type(2) {
    bottom: 8px;
   }
   /* === end@mainvisul === */

  /* === @spnav === */
   .spnav {
    display: block;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    z-index: 4;
   }

   .spnav.is-active {
    visibility: visible;
    opacity: 1;
   }

   .spnav__list {
    width: 60%;
    height: 100vh;
    background: #FFF;
    position: absolute;
    top: 0px;
    right: 0;
    display: flex;
    flex-direction:column;
    justify-content: center;
    transform: translateY(40px);
    opacity: 0;
    transition: 0.5s;
    z-index: 6;
    cursor: default;
   }

   .spnav__list.is-active {
    transform: translateY(0px);
    opacity: 1;
   }

   .spnav__list-item {
    padding-left: 30px;
    margin-bottom: 20px;
   }

   .spnav__list-item a {
     color: var(--main-color);
     letter-spacing: 0.1em;
     position: relative;
   }

   .spnav__list-item a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 1px;
    background-color: var(--main-color);
    transform: scale(0, 1);
    transform-origin: center top;
    transition: 0.3s;
  }

  .spnav__list-item a:hover::after {
    transform: scale(1, 1);
  }

  .spnav__close-btn {
    position: absolute;
    top: 13px;
    right: 20px;
    z-index: 10;
    width: 140px;
    background-color: transparent;
    border-color: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .spnav__close-btn-text{
    font-size: 0.875rem;
    color:var(--main-color);
    cursor: pointer;
  }

  .spnav__close-btn-bars{
    width: 35px;
    height: 30px;
    position: relative;
    cursor: pointer;
  }

  .spnav__close-btn-bar {
    width: 100%;
    height: 2px;
    background-color: var(--main-color);
    position: absolute;
    left: 0;
  }

  .spnav__close-btn-bar:nth-of-type(1) {
    top: 13px;
    transform: rotate(45deg);
  }

  .spnav__close-btn-bar:nth-of-type(2) {
    top: 13px;
    transform: rotate(-45deg);
  }

  /* === end@spnav === */

  /* === @mainvisul === */
  #mainvisual {
    height: 450px;
    margin-top: 60px;
  }
  
  .mainvisual__img {
    width: 80%;
    height: 70%;
  }
  .mainvisual__img img {
    object-position: center 0%;
  }

  .mainvisual__title {
    width: 120px;
    height: 160px;
    z-index: 3;
  }
  
  .mainvisual__title .mainvisual__title-logo img {
    width: 50px;
    height: 50px;
  }

  .mainvisual__title  .maiinvisual__title-text {
    font-size: 0.75rem;
    transition:  0.5s;
    transition-delay: 0.5s;
  }

   .maiinvisual__title-text-name-en {
    letter-spacing: 0.4em;
  }

  .maiinvisual__title-text-name-ja {
    letter-spacing: 0.2em;
  }

  .mainvisual__catchcopy {
    width: 270px;
    height: 120px;
    transition: 0.7s;
    opacity: 1;
    transform-origin: right bottom;
    z-index: 1;
  }

  .mainvisual__catchcopy .mainvisual__catchcopy-text {
    font-size: 0.875rem;
    writing-mode: horizontal-tb;
    letter-spacing: 0.5em;
  }

  /* === end @mainvisual === */

  /* === @about === */
  .about__flex {
    flex-direction: column;
  }

  .about__greet {
    width: 100%;
    margin-bottom: 60px;
  }

  .about__greet-content-desc:nth-of-type(1) {
    margin-bottom: 10px;
  } 

  .about__profile {
    margin-top: 0px;
    width: 100%;
  }

  /* === end @about === */

  /* === @service === */
  .service__flex {
    flex-direction: column;
  }

  .service__flex-img {
    width: 100%;
    margin-bottom: 60px;
  }

  .service__flex-img img {
    aspect-ratio: 3/2; 
  }

  .service__flex-texts {
    width: 100%;
  }
  /* === end @service === */

  /* === @price-lists === */
  .price-lists__flex {
    flex-direction: column-reverse;
  }

  .price-lists__flex-details {
    width: 100%;
  }

  .price-lists__flex-img {
    width: 100%;
    margin-top: 0px;
    margin-bottom: 60px;
  }

  .price-lists__flex-img img {
    aspect-ratio: 3/2;
  }

  /* === end @price-lists === */

  /* === @contact === */
  .contact {
    padding-bottom: 80px;
  }
  
  .contact__tel-title,
  .contact__email-title,
  .contact__flyer-title{
    font-size: clamp(1rem, 2vw, 1.25rem);
  }

  .contact__tel-number {
    font-size: clamp(1.5rem, 5vw, 3rem);
  }

  .contact__email {
    padding: 15px;
  }

  .contact__email-list {
    justify-content: space-between;
    width: 100%;
  }

.contact__email-list{
  flex-direction: column;
}
  
.contact__email-list dt,
.contact__email-list dd{
  font-size: clamp(0.75rem, 3vw, 1.25rem);
  width: 100%;
}

.contact__email-list dd input{
  max-width: 100%;
}

.contact__email-btn{
  width: 120px;
  height: 40px;
  font-size: 1.25rem;
}

.contact__flyer{
  width: 280px;
  height: 120px;
  margin-bottom: 60px;
}

.contact__flyer-img {
  width: 80px;
  height: 80px;
  transform: translate(160px, -35px);
}

.contact__flyer-link {
  width: 58px;
  height: 50px;
  transform: translate(200px, -60px);
}

.contact__flyer-link a {
  line-height: 50px;
}

.contact__sns{
  bottom: 40px;
}

.contact__sns-list-item {
  margin: 0 20px;
}
.contact__sns-list-item a svg {
  width: 60px;
  height: 60px;
}
/* === end @contact === */
}
/* === end @responsive === */