@charset "UTF-8";
body {
  background-color: #fff;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
}

.pc {
  display: none;
}

.sp {
  display: block;
}

@media (min-width: 751px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
}
/* －－－－－－－－－－－背景固定用－－－－－－－－－－－ */
body {
  position: relative;
}
body::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url("..//images/images/body_bg.jpg") center/cover no-repeat;
  z-index: -1;
}
body__container {
  padding: 1em;
  background-color: rgba(255, 255, 255, 0.8);
}

/* －－－－－－－－－－－背景固定用-end－－－－－－－－－－－ */
/* －－－－－－－－－－－header－－－－－－－－－－－ */
@media (max-width: 1105px) {
  .header {
    height: auto;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
  }
  .header__container {
    /* ナビゲーションメニュー */
  }
  .header__container__wrapper {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 24px;
    background-color: #fff;
    /* ハンバーガーボタン-通常 */
    /* ハンバーガーボタン-active時の動作 */
  }
  .header__container__wrapper h1 {
    padding: 0;
  }
  .header__container__wrapper h1 a {
    text-decoration: none;
    color: #333;
  }
  .header__container__wrapper h1 img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
  .header__container__wrapper__hamburger {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    width: 40px;
    height: 35px;
    cursor: pointer;
    /* ハンバーガーボタン-通常-end */
  }
  .header__container__wrapper__hamburger .bar1,
  .header__container__wrapper__hamburger .bar2,
  .header__container__wrapper__hamburger .bar3 {
    width: 30px;
    height: 2px;
    background-color: #333;
    margin-bottom: 8px;
    transition: all 0.4s;
  }
  .header__container__wrapper__hamburger .bar3 {
    margin-bottom: 5px;
  }
  .header__container__wrapper__hamburger .MENU {
    opacity: 1;
    font-size: 0.8rem;
    line-height: 0.8rem;
    position: absolute;
    bottom: 0;
    transition: all 0.4s;
    color: #333;
  }
  .header__container__wrapper__hamburger .CLOSE {
    opacity: 0;
    font-size: 0.8rem;
    line-height: 0.8rem;
    position: absolute;
    bottom: 0;
    transition: all 0.4s;
    color: #333;
  }
  .header__container__wrapper__hamburger.active .bar1,
  .header__container__wrapper__hamburger.active .bar3 {
    width: 30px;
    height: 2px;
    background-color: #333;
    position: absolute;
    margin: 0 auto;
  }
  .header__container__wrapper__hamburger.active .bar1 {
    transform: rotate(45deg);
    top: 30%;
  }
  .header__container__wrapper__hamburger.active .bar2 {
    opacity: 0;
  }
  .header__container__wrapper__hamburger.active .bar3 {
    transform: rotate(-45deg);
    top: 30%;
  }
  .header__container__wrapper__hamburger.active .MENU {
    opacity: 0;
  }
  .header__container__wrapper__hamburger.active .CLOSE {
    opacity: 1;
  }
  .header__container__nav {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    height: 100vh;
    transform: translateX(-150%);
    transition: all 0.4s;
    z-index: 10;
  }
  .header__container__nav__list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 50px 0 0;
    flex-wrap: wrap;
  }
  .header__container__nav__list__items:nth-child(1) a, .header__container__nav__list__items:nth-child(2) a, .header__container__nav__list__items:nth-child(3) a, .header__container__nav__list__items:nth-child(4) a, .header__container__nav__list__items:nth-child(5) a {
    background-image: url("..//images/images/title_bg.png");
    color: #fff;
    width: 280px;
    height: 50px;
    line-height: 50px;
    position: relative;
  }
  .header__container__nav__list__items:nth-child(1) a::before, .header__container__nav__list__items:nth-child(1) a::after, .header__container__nav__list__items:nth-child(2) a::before, .header__container__nav__list__items:nth-child(2) a::after, .header__container__nav__list__items:nth-child(3) a::before, .header__container__nav__list__items:nth-child(3) a::after, .header__container__nav__list__items:nth-child(4) a::before, .header__container__nav__list__items:nth-child(4) a::after, .header__container__nav__list__items:nth-child(5) a::before, .header__container__nav__list__items:nth-child(5) a::after {
    content: "";
    display: block;
    position: absolute;
    width: 80%;
    height: 1px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background-color: #fff;
  }
  .header__container__nav__list__items:nth-child(1) a::before, .header__container__nav__list__items:nth-child(2) a::before, .header__container__nav__list__items:nth-child(3) a::before, .header__container__nav__list__items:nth-child(4) a::before, .header__container__nav__list__items:nth-child(5) a::before {
    top: 6px;
  }
  .header__container__nav__list__items:nth-child(1) a::after, .header__container__nav__list__items:nth-child(2) a::after, .header__container__nav__list__items:nth-child(3) a::after, .header__container__nav__list__items:nth-child(4) a::after, .header__container__nav__list__items:nth-child(5) a::after {
    bottom: 6px;
  }
  .header__container__nav__list__items a {
    display: inline-block;
    text-decoration: none;
    color: #333;
    font-size: 2.5rem;
    font-weight: 600;
    position: relative;
  }
  .header__container__nav__list .nav_sns a {
    margin-right: 30px;
  }
  .header__container__nav__list .nav_sns a:last-child {
    margin-right: 0;
  }
  .header__container__nav__list .nav_sns a img {
    width: 30px;
  }
  .header__container__nav.active {
    transform: translateX(0);
    /* ハンバーガーボタン-end */
  }
  .header__container__black-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("..//images/images/bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .header__container__black-bg.active {
    display: block;
    animation: fadein 0.3s ease-out forwards;
  }
}
@media (max-width: 1105px) and (min-width: 751px) {
  .header__container__black-bg {
    display: none;
  }
}
@media (max-width: 1105px) {
  @keyframes fadein {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
}
@media (min-width: 1106px) {
  .header {
    height: auto;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
  }
  .header__container {
    background-color: #fff;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px min(9.7222222222vw, 140px);
  }
  .header__container__wrapper h1 a {
    font-size: 2.5rem;
    color: #333;
    text-decoration: none;
  }
  .header__container__wrapper__hamburger {
    display: none;
  }
  .header__container__nav__list {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .header__container__nav__list__items {
    margin-right: 50px;
  }
  .header__container__nav__list__items:last-child {
    margin: 0;
  }
  .header__container__nav__list__items a {
    position: relative;
    text-decoration: none;
    color: #333;
    font-weight: 500;
  }
  .header__container__nav__list__items a::after {
    content: "";
    position: absolute;
    display: block;
    height: 1px;
    width: 100%;
    background: #e67a29;
    position: absolute;
    bottom: -6px;
    left: 0;
    transform: scale(0, 1);
    transition: 0.3s;
  }
  .header__container__nav__list__items a:hover {
    color: #e67a29;
  }
  .header__container__nav__list__items a:hover::after {
    transform: scale(1, 1);
  }
  .header__container__nav__list .nav_sns {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
  }
  .header__container__nav__list .nav_sns a img {
    width: 33px;
  }
  .header__container__black-bg {
    display: none;
  }
}
/* －－－－－－－－－－－header-end－－－－－－－－－－－ */
:root {
  --wrap-width: 100vw;
}

/* －－－－－－－－－－－TOPセクション－－－－－－－－－－－ */
.section-top__image {
  background-image: url("..//images/images/sp/top-image-mobile.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 213.3333333333vw;
  max-height: 90vh;
}

@media (min-width: 600px) {
  .section-top__image {
    background-image: url("..//images/images/top-image.png");
    background-size: cover;
    height: 57.6388888889vw;
    max-height: 830px;
  }
}
/* －－－－－－－－－－－TOPセクション-end－－－－－－－－－－－ */
/* －－－－－－－－－－－セクションタイトル－－－－－－－－－－－ */
.section-service-00__container,
.section-service-01__container,
.section-service-02__container,
.section-service-03__container,
.section-service-04__container {
  padding: 80px 24px;
}
.section-service-00__container h2,
.section-service-01__container h2,
.section-service-02__container h2,
.section-service-03__container h2,
.section-service-04__container h2 {
  background-image: url("..//images/images/title_bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  margin-bottom: 30px;
}
.section-service-00__container h2 > span,
.section-service-01__container h2 > span,
.section-service-02__container h2 > span,
.section-service-03__container h2 > span,
.section-service-04__container h2 > span {
  display: flex;
  font-size: 2rem;
  line-height: 3rem;
  height: 60px;
  position: relative;
  align-items: center;
  justify-content: center;
}
.section-service-00__container h2 > span::before, .section-service-00__container h2 > span::after,
.section-service-01__container h2 > span::before,
.section-service-01__container h2 > span::after,
.section-service-02__container h2 > span::before,
.section-service-02__container h2 > span::after,
.section-service-03__container h2 > span::before,
.section-service-03__container h2 > span::after,
.section-service-04__container h2 > span::before,
.section-service-04__container h2 > span::after {
  content: "";
  display: block;
  position: absolute;
  width: 90%;
  max-width: 500px;
  height: 1px;
  background-color: #fff;
}
.section-service-00__container h2 > span::before,
.section-service-01__container h2 > span::before,
.section-service-02__container h2 > span::before,
.section-service-03__container h2 > span::before,
.section-service-04__container h2 > span::before {
  top: 10px;
}
.section-service-00__container h2 > span::after,
.section-service-01__container h2 > span::after,
.section-service-02__container h2 > span::after,
.section-service-03__container h2 > span::after,
.section-service-04__container h2 > span::after {
  bottom: 10px;
}

@media (min-width: 751px) {
  .section-service-00__container,
  .section-service-01__container,
  .section-service-02__container,
  .section-service-03__container,
  .section-service-04__container {
    padding: 0 min(9.7222222222vw, 140px);
  }
  .section-service-00__container h2,
  .section-service-01__container h2,
  .section-service-02__container h2,
  .section-service-03__container h2,
  .section-service-04__container h2 {
    margin-bottom: 50px;
    background-size: initial;
  }
  .section-service-00__container h2 > span,
  .section-service-01__container h2 > span,
  .section-service-02__container h2 > span,
  .section-service-03__container h2 > span,
  .section-service-04__container h2 > span {
    font-size: 3rem;
    line-height: 4.5rem;
    height: 100px;
  }
}
/* －－－－－－－－－－－セクションタイトル-end－－－－－－－－－－－ */
.section-service-00__container__wrapper iframe {
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
  height: 800px;
}

@media (min-width: 751px) {
  .section-service-00__container {
    padding: 100px min(9.7222222222vw, 140px);
  }
  .section-service-00__container__wrapper iframe {
    margin: 0 auto;
    width: 100%;
    max-width: 1000px;
    height: 800px;
  }
}
/* －－－－－－－－－－－サービス01－－－－－－－－－－－ */
.section-service-01 {
  background-image: url("..//images/images/news-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.section-service-01__container__wrapper__sns-area {
  text-align: center;
}
.section-service-01__container__wrapper__sns-area__content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 19%;
  margin-bottom: 30px;
}
.section-service-01__container__wrapper__sns-area__content a img {
  width: 60px;
}
.section-service-01__container__wrapper__sns-area > p {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 3.75rem;
  margin-bottom: 30px;
  display: inline-block;
  text-align: justify;
}
.section-service-01__container__wrapper__timeline__item1 .twitter-timeline {
  width: 100%;
}
.section-service-01__container__wrapper__timeline__item2 {
  display: none;
}

@media (min-width: 751px) {
  .section-service-01__container {
    padding: 100px min(9.7222222222vw, 140px);
  }
  .section-service-01__container__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 5%;
  }
  .section-service-01__container__wrapper__sns-area {
    width: 50%;
    max-width: 700px;
    margin: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .section-service-01__container__wrapper__sns-area__content {
    display: flex;
    flex-direction: column;
    gap: 50px;
    order: 2;
    margin: 0;
  }
  .section-service-01__container__wrapper__sns-area__content a img {
    width: 100px;
  }
  .section-service-01__container__wrapper__sns-area > p {
    order: 1;
  }
  .section-service-01__container__wrapper__timeline {
    width: 50%;
    max-width: 700px;
    margin: 0;
  }
  .section-service-01__container__wrapper__timeline__item1 {
    display: none;
  }
  .section-service-01__container__wrapper__timeline__item2 {
    display: block;
  }
}
/* －－－－－－－－－－－サービス01-end－－－－－－－－－－－ */
/* －－－－－－－－－－－サービス02－－－－－－－－－－－ */
.section-service-02 {
  background-color: #ede1bc;
}
.section-service-02__container {
  padding-top: 80px;
  padding-bottom: 80px;
}
.section-service-02__container__youtube {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 50px;
}
.section-service-02__container__youtube__area {
  width: 100%;
  max-width: 543px;
  margin: 0 auto;
}
.section-service-02__container__youtube__area h3 {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 2.7rem;
  margin-bottom: 10px;
}
.section-service-02__container__youtube__area iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
}
.section-service-02__container__image {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-bottom: 50px;
  list-style: none;
}
.section-service-02__container__image__items a img {
  width: 100%;
  max-width: 543px;
  margin-bottom: 50px;
  aspect-ratio: 16/9;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.section-service-02__container__image__items a img:last-child {
  margin-bottom: 0;
}
.section-service-02__container__lead {
  background-color: #fff9e8;
}
.section-service-02__container__lead__bg {
  background-image: url("..//images/images/service02-lead-moyou.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  max-width: 1160px;
  height: 8vw;
  max-height: 100px;
}
.section-service-02__container__lead p {
  text-align: justify;
  letter-spacing: 0.1em;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 2.7rem;
  padding: 20px;
}

/* －－－－－－－－－－－サービス02-end－－－－－－－－－－－ */
/* －－－－－－－－－－－サービス03－－－－－－－－－－－ */
.section-service-03__container {
  background-color: #fff;
}
.section-service-03__container__list {
  list-style: none;
}
.section-service-03__container__list__items {
  margin-bottom: 80px;
  /* 経歴 */
  /* 本人一言 */
}
.section-service-03__container__list__items:last-child {
  margin-bottom: 0;
}
.section-service-03__container__list__items h3 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-top: 20px;
}
.section-service-03__container__list__items span {
  display: block;
  font-size: 1.4rem;
  line-height: 1;
  margin-top: 5px;
  margin-bottom: 20px;
}
.section-service-03__container__list__items img {
  width: 100%;
  max-width: 511px;
  margin: 0 auto;
}
.section-service-03__container__list__items dl {
  text-align: left;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  margin: 0 auto 20px;
  max-width: 511px;
}
.section-service-03__container__list__items dt {
  font-weight: 600;
  margin-bottom: 5px;
}
.section-service-03__container__list__items dd {
  line-height: 2.4rem;
}
.section-service-03__container__list__items .keireki {
  position: relative;
  margin-bottom: 20px;
  text-align: left;
}
.section-service-03__container__list__items .keireki::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 75%;
  height: 1px;
  margin-left: 20px;
  background-color: #333;
  top: 50%;
  transform: translateY(-50%);
}
.section-service-03__container__list__items p {
  margin-top: 20px;
  text-align: left;
  letter-spacing: 0.1em;
  line-height: 2.4rem;
  margin-bottom: 30px;
  text-align: left;
}
.section-service-03__container__list__items__sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
.section-service-03__container__list__items__sns a img {
  width: 40px;
}

@media (min-width: 882px) {
  .section-service-03__container {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .section-service-03__container__list__items {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 100px;
  }
  .section-service-03__container__list__items:nth-child(odd) {
    flex-direction: row-reverse;
  }
  .section-service-03__container__list__items:last-child {
    margin-bottom: 0;
  }
  .section-service-03__container__list__items > img {
    margin: 0;
    width: 35.4861111111vw;
    min-width: 340px;
    max-width: 511px;
  }
  .section-service-03__container__list__items__lead {
    flex: 5;
  }
  .section-service-03__container__list__items__lead h3 {
    margin-top: 0;
  }
  .section-service-03__container__list__items__lead span {
    display: block;
    margin-bottom: 30px;
  }
  .section-service-03__container__list__items__lead p {
    margin-top: 0;
  }
  .section-service-03__container__list__items__lead .profile-content,
  .section-service-03__container__list__items__lead .keireki-content {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    gap: 30px;
  }
  .section-service-03__container__list__items__lead .profile-content dt,
  .section-service-03__container__list__items__lead .keireki-content dt {
    margin: 0;
    min-width: 100px;
    padding-left: 1em;
    text-indent: -1em;
  }
  .section-service-03__container__list__items__lead .keireki-content dt {
    min-width: 150px;
  }
}
/* －－－－－－－－－－－サービス03-end－－－－－－－－－－－ */
/* －－－－－－－－－－－サービス04－－－－－－－－－－－ */
.section-service-04 {
  background-image: url("..//images/images/bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.section-service-04__container {
  padding: 80px 24px;
}
.section-service-04__container > p {
  line-height: 2.4rem;
  font-weight: 600;
  margin-bottom: 50px;
}
.section-service-04__container form {
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}
.section-service-04__container form .name,
.section-service-04__container form .email,
.section-service-04__container form .title,
.section-service-04__container form .message {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}
.section-service-04__container form .name label,
.section-service-04__container form .email label,
.section-service-04__container form .title label,
.section-service-04__container form .message label {
  font-weight: 600;
  margin-bottom: 5px;
}
.section-service-04__container form .name label span,
.section-service-04__container form .email label span,
.section-service-04__container form .title label span,
.section-service-04__container form .message label span {
  display: inline-block;
  margin-left: 10px;
  font-size: 1.4rem;
  color: #fe5555;
}
.section-service-04__container form .message textarea {
  height: 200px;
}
.section-service-04__container form button {
  display: block;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 2.5rem;
  margin: 0 auto;
  background-color: #e4712f;
  color: #fff;
  width: 200px;
  height: 50px;
  border: none;
  cursor: pointer;
  font-family: "Noto Serif JP", serif, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ";
}
.section-service-04__container form input,
.section-service-04__container form textarea {
  padding: 3px;
  border: solid 1px #d2bc9d;
}

@media (min-width: 751px) {
  .section-service-04__container {
    padding: 80px min(9.7222222222vw, 140px);
  }
  .section-service-04__container > p {
    font-size: 2.5rem;
  }
  .section-service-04__container form .message textarea {
    height: 300px;
  }
  .section-service-04__container form input {
    padding: 10px;
  }
}
/* －－－－－－－－－－－サービス04-end－－－－－－－－－－－ */
/* －－－－－－－－－－－footer－－－－－－－－－－－ */
.footer {
  background-color: #d2bc9d;
}
.footer__container {
  padding: 30px 24px;
}
.footer__container h2 {
  margin-bottom: 30px;
}
.footer__container__sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-bottom: 30px;
}
.footer__container__sns a img {
  width: 30px;
}
.footer__container small {
  font-size: 1.4rem;
  line-height: 2.7rem;
}

@media (min-width: 751px) {
  .footer__container {
    margin: 0 auto;
    padding: 40px min(9.7222222222vw, 140px) 30px;
  }
  .footer__container h2 {
    margin-bottom: 30px;
  }
  .footer__container__sns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-bottom: 30px;
  }
  .footer__container__sns a img {
    width: 30px;
  }
  .footer__container small {
    font-size: 1.4rem;
    line-height: 2.7rem;
  }
}
/* －－－－－－－－－－－footer-end－－－－－－－－－－－ */
/* アニメーション関連 */
.box {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.btn {
  visibility: visible;
  animation-duration: 2s;
  animation-iteration-count: 1000;
  animation-name: pulse;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(0.9);
  }
}
/* －－－－－－－－－－－モーダル－－－－－－－－－－－ */
.modaal-close:after,
.modaal-close:before {
  background: #ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666;
}

/* －－－－－－－－－－－モーダル-end－－－－－－－－－－－ */