@charset "UTF-8";
/*===================================================
# mixins
===================================================*/
/*===================================================
# inner
===================================================*/
/*===================================================
# fonts
===================================================*/
/*===================================================
# colors
===================================================*/
/*===================================================
# common - 全体に共通するスタイル
===================================================*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  font-size: 16px;
  color: #231815;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
  background-color: #8DCBE6;
}
body.fixed {
  width: 100%;
  height: 100%;
  position: fixed;
}

.body__wrapper {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

a {
  color: inherit;
  transition: all 0.3s ease 0s;
}
a:hover {
  opacity: 0.7;
}

@media screen and (max-width:767px) {
  .is-pc {
    display: none;
  }
}

@media screen and (max-width: 1200px) and (min-width: 1101px) {
  .is-sp {
    display: none;
  }
}
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}

/*===================================================
# util
===================================================*/
.util__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 28px;
  text-align: center;
  padding-bottom: 15px;
  position: relative;
}
.util__title::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 78px;
  height: 3px;
  background-color: #FFDA2A;
  border-radius: 1.5px;
}

/*===================================================
# header
===================================================*/
/*===================================================
# drawer
===================================================*/
.drawer {
  width: 100%;
  height: 100vh;
  background-color: #8DCBE6;
  transition: all 0.6s ease 0s;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 30;
  transform: translateX(105%);
}
.drawer.open {
  opacity: 1;
  transform: translateX(0%);
}
@media screen and (max-width:767px) {
  .drawer.open {
    height: 100vh;
  }
}

.drawer__nav {
  text-align: center;
}

.drawer__nav-list {
  margin-top: 150px;
}

.drawer__nav-item {
  margin-top: 30px;
}

.drawer__nav-item-link {
  font-family: "Zen Maru Gothic", sans-serif;
  color: #fff;
  font-size: 20px;
}

.drawer__button {
  display: none;
  position: fixed;
  right: 0px;
  top: 0px;
  z-index: 100;
  transition: all 0.3s ease 0s;
}
@media screen and (max-width:767px) {
  .drawer__button {
    display: block;
  }
}

.drawer__button-wrapper {
  width: 60px;
  height: 60px;
  display: inline-block;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease 0s;
}
.drawer__button-bar1 {
  width: 27px;
  height: 2px;
  background-color: #fff;
  display: block;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease 0s;
}
.drawer__button-bar1.open {
  background-color: #fff;
  top: 29px;
  transform: translateX(-50%) rotate(45deg);
}

.drawer__button-bar2 {
  width: 27px;
  height: 2px;
  background-color: #fff;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease 0s;
}
.drawer__button-bar2.open {
  opacity: 0;
  visibility: hidden;
}

.drawer__button-bar3 {
  width: 27px;
  height: 2px;
  background-color: #fff;
  display: block;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease 0s;
}
.drawer__button-bar3.open {
  background-color: #fff;
  bottom: 29px;
  transform: translateX(-50%) rotate(-45deg);
}

.drawer__bg {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  display: block;
  transition: all 0.3s ease 0s;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 25;
  visibility: hidden;
  opacity: 0;
}
.drawer__bg.open {
  visibility: visible;
  opacity: 1;
}

/*===================================================
# main
===================================================*/
/*===================================================
# mv
===================================================*/
.mv {
  background: url(../img/mv.png) no-repeat center center/cover;
  height: 550px;
  position: relative;
}

.mv__teamname {
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
}

.mv__inner {
  max-width: 930px;
  margin: 0 auto;
}

.mv__container {
  margin-top: 100px;
  text-align: center;
}

.mv__title {
  display: inline-block;
  font-family: "Stick", sans-serif;
  background: #FFDA2A;
  padding: 5px;
  border-radius: 10px;
  font-size: 28px;
  letter-spacing: 0.3em;
}
@media screen and (max-width:767px) {
  .mv__title {
    font-size: 20px;
  }
}

.mv__subtitle {
  margin-top: 10px;
  font-family: "Stick", sans-serif;
  color: #fff;
  font-size: 38px;
  letter-spacing: 0.3em;
}
@media screen and (max-width:767px) {
  .mv__subtitle {
    font-size: 24px;
  }
}

/*===================================================
# nav
===================================================*/
.nav {
  background: url(../img/navigation.png) no-repeat center center/cover;
}
@media screen and (min-width:1201px) {
  .nav {
    background: url(../img/navigation-big.png) no-repeat center center/cover;
  }
}

.nav__inner {
  height: 108px;
  position: relative;
}

.nav__container {
  position: absolute;
  display: flex;
  justify-content: center;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
}

.nav__item {
  padding: 0 50px;
}
.nav__item + .nav__item {
  border-left: 1px solid #231815;
}
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .nav__item {
    padding: 0 19px;
  }
}
@media screen and (max-width:767px) {
  .nav__item {
    display: none;
  }
}

/*===================================================
# about
===================================================*/
.about {
  padding: 100px 0 0;
}
@media screen and (max-width:767px) {
  .about {
    padding: 50px 0;
  }
}

.about__inner {
  max-width: 930px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width:767px) {
  .about__inner {
    max-width: 325px;
    margin: 0 auto;
  }
}

.about__icon {
  color: #FFDA2A;
  font-size: 64px;
}

.about__title {
  display: inline-block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 30px;
  position: relative;
}
@media screen and (max-width:767px) {
  .about__title {
    font-size: 20px;
  }
}
.about__title::before {
  position: absolute;
  content: "";
  background: url(../img/about-title1.svg) no-repeat center center/contain;
  top: 50%;
  left: -100px;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
}
@media screen and (max-width:767px) {
  .about__title::before {
    left: -25px;
    width: 25px;
    height: 25px;
  }
}
.about__title::after {
  position: absolute;
  content: "";
  background: url(../img/about-title2.svg) no-repeat center center/contain;
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
}
@media screen and (max-width:767px) {
  .about__title::after {
    right: -25px;
    width: 25px;
    height: 25px;
  }
}

.about__container {
  margin-top: 30px;
}

.about__text {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.3em;
  line-height: 2;
}
@media screen and (max-width:767px) {
  .about__text {
    font-size: 12px;
    letter-spacing: 0.1em;
  }
}

.about_image {
  margin: 0 auto;
}

/*===================================================
# purpose
===================================================*/
.purpose {
  padding: 100px 0;
}
@media screen and (max-width:767px) {
  .purpose {
    padding: 50px 0;
  }
}

.purpose__inner {
  max-width: 930px;
  margin: 0 auto;
}
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .purpose__inner {
    padding: 0 40px;
  }
}
@media screen and (max-width:767px) {
  .purpose__inner {
    max-width: 250px;
    margin: 0 auto;
  }
}

.purpose__container {
  margin-top: 50px;
  display: flex;
}
@media screen and (max-width:767px) {
  .purpose__container {
    display: block;
  }
}

.purpose__item {
  flex: 1;
}
.purpose__item + .purpose__item {
  margin-left: 100px;
}
@media screen and (max-width:767px) {
  .purpose__item + .purpose__item {
    margin-left: 0;
    margin-top: 50px;
  }
}

.purpose__icon {
  margin-top: 25px;
  font-family: "Noto Sans JP", sans-serif;
  color: #FFDA2A;
  text-align: center;
}

.purpose__text {
  margin-top: 10px;
}
@media screen and (max-width:767px) {
  .purpose__text {
    margin-top: 15px;
  }
}

/*===================================================
# member
===================================================*/
.member {
  padding: 50px 0 160px;
  background: url(../img/member.png) center center/cover;
}
@media screen and (max-width:767px) {
  .member {
    background: url(../img/member-sp.png) center center/cover;
  }
}

.member__inner {
  max-width: 865px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .member__inner {
    padding: 0 40px;
  }
}
@media screen and (max-width:767px) {
  .member__inner {
    max-width: 250px;
    margin: 0 auto;
  }
}

.member__container {
  margin-top: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 130px;
       column-gap: 130px;
  row-gap: 100px;
}
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .member__container {
    -moz-column-gap: 75px;
         column-gap: 75px;
    row-gap: 75px;
  }
}
@media screen and (max-width:767px) {
  .member__container {
    display: block;
  }
}

.member__item:nth-child(even) {
  margin-top: 20px;
}
@media screen and (max-width:767px) {
  .member__item:nth-child(even) {
    margin-top: 50px;
  }
}
@media screen and (max-width:767px) {
  .member__item {
    margin-top: 50px;
  }
}

.member__contents {
  background: #8DCBE6;
  padding: 39px 20px 55px 35px;
  border-radius: 0 0 10px 10px;
}
@media screen and (max-width:767px) {
  .member__contents {
    padding: 20px;
  }
}

.member__contents-title {
  margin-bottom: 10px;
}

.member__contents-tag {
  display: inline-block;
  font-size: 12px;
  background: #FFDA2A;
  padding: 5px 10px;
  border-radius: 20px;
  letter-spacing: 0.01em;
}
.member__contents-tag:nth-child(n+3) {
  margin-top: 5px;
}

.member__contents-sns {
  margin-top: 30px;
  font-size: 12px;
}
@media screen and (max-width:767px) {
  .member__contents-sns {
    font-size: 10px;
  }
}

.member__contents-twitter {
  display: block;
  position: relative;
  padding-left: 30px;
  letter-spacing: 0.01em;
}
.member__contents-twitter::before {
  position: absolute;
  content: "";
  background: url(../img/member-twitter.svg) no-repeat center/contain;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
}

.member__contents-portofolio {
  display: block;
  margin-top: 10px;
  position: relative;
  padding-left: 30px;
  letter-spacing: 0.01em;
}
.member__contents-portofolio::before {
  position: absolute;
  content: "";
  background: url(../img/member-portforio.svg) no-repeat center/contain;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
}

.member__contents-portofolio2 {
  display: block;
  margin-top: 10px;
  padding-left: 30px;
  letter-spacing: 0.01em;
}

.member__popicon {
  text-align: right;
}
/*===================================================
# member-modal
===================================================*/
.member-modal__inner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  z-index: 500;
}

.member-modal__item {
  width: 475px;
  margin: 0 auto;
}
@media screen and (max-width:767px) {
  .member-modal__item {
    width: 325px;
  }
}

.member-modal__top {
  background: #fff;
  display: flex;
  align-items: center;
  border: 3px solid #8DCBE6;
  border-radius: 10px 10px 0 0;
  padding: 10px 20px;
}

.member-modal__image {
  width: 111px;
}

.member-modal__title {
  padding-left: 30px;
  font-weight: bold;
}

.member-modal__bottom {
  background: #8DCBE6;
  padding: 25px;
  border-radius: 0 0 10px 10px;
}
@media screen and (max-width:767px) {
  .member-modal__bottom {
    padding: 20px;
  }
}

.member-modal__course {
  display: flex;
  align-items: center;
}
@media screen and (max-width:767px) {
  .member-modal__course {
    font-size: 12px;
  }
}

.member-modal__course-title {
  width: 117px;
  text-align: right;
  letter-spacing: 0.01em;
}
@media screen and (max-width:767px) {
  .member-modal__course-title {
    width: 83px;
  }
}

.member-modal__course-text {
  margin-left: 25px;
  display: inline-block;
  background: #FFDA2A;
  padding: 5px 10px;
  border-radius: 30px;
  font-size: 12px;
}

.member-modal__course-text2 {
  margin-left: 25px;
}

.member-modal__course-text-container + .member-modal__course-text-container {
  margin-top: 5px;
}

.member-modal__course-text-item {
  display: inline-block;
  background: #FFDA2A;
  padding: 5px 10px;
  border-radius: 30px;
  font-size: 12px;
}
@media screen and (max-width:767px) {
  .member-modal__course-text-item {
    font-size: 10px;
    letter-spacing: 0.01em;
  }
}

.member-modal__pr {
  margin-top: 25px;
  display: flex;
  align-items: center;
  letter-spacing: 0.01em;
}
@media screen and (max-width:767px) {
  .member-modal__pr {
    margin-top: 10px;
    font-size: 12px;
  }
}

.member-modal__pr-title {
  width: 117px;
  text-align: right;
}
@media screen and (max-width:767px) {
  .member-modal__pr-title {
    width: 83px;
  }
}

.member-modal__pr-text {
  width: calc(100% - 117px);
  letter-spacing: 0.01em;
  margin-left: 25px;
}
@media screen and (max-width:767px) {
  .member-modal__pr-text {
    font-size: 12px;
    width: calc(100% - 83px);
  }
}

.member-modal__skill {
  margin-top: 25px;
  display: flex;
  align-items: center;
  letter-spacing: 0.01em;
}
@media screen and (max-width:767px) {
  .member-modal__skill {
    margin-top: 10px;
    font-size: 12px;
  }
}

.member-modal__skill-title {
  width: 117px;
  text-align: right;
}
@media screen and (max-width:767px) {
  .member-modal__skill-title {
    width: 83px;
  }
}

.member-modal__skill-text {
  letter-spacing: 0.01em;
  width: calc(100% - 117px);
  margin-left: 25px;
}
@media screen and (max-width:767px) {
  .member-modal__skill-text {
    width: calc(100% - 83px);
  }
}

.member-modal__sns {
  margin-top: 25px;
  display: flex;
}
@media screen and (max-width:767px) {
  .member-modal__sns {
    font-size: 12px;
  }
}

.member-modal__twitter-title {
  width: 117px;
  text-align: right;
}
@media screen and (max-width:767px) {
  .member-modal__twitter-title {
    width: 83px;
  }
}

.member-modal__twitter-text {
  margin-left: 25px;
  letter-spacing: 0.01em;
  width: calc(100% - 117px);
}
@media screen and (max-width:767px) {
  .member-modal__twitter-text {
    width: calc(100% - 83px);
    font-size: 10px;
  }
}

.member-modal__portofolio {
  display: flex;
  margin-top: 10px;
}
@media screen and (max-width:767px) {
  .member-modal__portofolio {
    font-size: 12px;
  }
}

.member-modal__portofolio-title {
  width: 117px;
  text-align: right;
}
@media screen and (max-width:767px) {
  .member-modal__portofolio-title {
    width: 83px;
  }
}

.member-modal__portofolio-text {
  margin-left: 25px;
  letter-spacing: 0.01em;
  width: calc(100% - 117px);
}
@media screen and (max-width:767px) {
  .member-modal__portofolio-text {
    width: calc(100% - 83px);
    font-size: 10px;
  }
}

.member-modal__background1 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 300;
}

.member-modal__background2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/member-modal-bg.png) no-repeat center center/cover;
  z-index: 400;
}
@media screen and (max-width:767px) {
  .member-modal__background2 {
    background: url(../img/member-modal-bg-sp.png) no-repeat center center/cover;
  }
}

.member-modal__button {
  position: fixed;
  right: 30px;
  top: 60px;
  transform: translateY(-50%);
  z-index: 500;
}
@media screen and (max-width:767px) {
  .member-modal__button {
    right: 15px;
    top: 50px;
  }
}

.member-modal__button-wrapper {
  width: 60px;
  height: 60px;
  display: inline-block;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease 0s;
}

.member-modal__button-bar1 {
  width: 27px;
  height: 2px;
  background-color: #231815;
  display: block;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  transition: all 0.3s ease 0s;
}

.member-modal__button-bar2 {
  width: 27px;
  height: 2px;
  background-color: #231815;
  display: block;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
  transition: all 0.3s ease 0s;
}

/*===================================================
# process
===================================================*/
.process {
  padding: 50px 0 60px;
}
@media screen and (max-width: 767px) {
  .process {
    padding: 50px 0 140px;
  }
}

.process__inner {
  max-width: 930px;
  margin: 0 auto;
}
@media screen and (max-width: 1100px) {
  .process__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.process__item {
  display: flex;
  flex-direction: row;
  padding-bottom: 145px;
}
@media screen and (max-width: 767px) {
  .process__item {
    flex-direction: column;
    padding-bottom: 0px;
  }
}

.process__item--left {
  width: 58%;
}
@media screen and (max-width: 767px) {
  .process__item--left {
    width: 100%;
    margin-bottom: -20px;
  }
}

.process__item--right {
  width: 46%;
  padding-top: 180px;
}
@media screen and (max-width: 767px) {
  .process__item--right {
    width: 70%;
    padding-top: 0px;
    display: flex;
    flex-direction: column-reverse;
    gap: 21px;
  }
}

.process__item--memberimage {
  width: 60%;
  margin-left: 26%;
}
@media screen and (max-width: 767px) {
  .process__item--memberimage {
    width: 100%;
    margin-left: 0%;
    margin-top: -70px;
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
  }
}
.process__item--memberimage p {
  padding-top: 13px;
  padding-left: 5px;
  color: #231815;
  font-family: Noto Sans JP;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .process__item--memberimage p {
    padding-left: 20px;
  }
}

.process__item--border {
  width: 86%;
  padding-left: 16px;
}
@media screen and (max-width: 767px) {
  .process__item--border {
    width: 136%;
    transform: scale(-1, -1);
  }
}

.process__item--title {
  color: #FFDA2A;
  font-family: Futura;
  font-size: 100px;
  font-style: italic;
  font-weight: 500;
  line-height: 100px;
  letter-spacing: 6px;
  padding-bottom: 17px;
}
@media screen and (max-width: 767px) {
  .process__item--title {
    text-align: center;
    font-size: 60px;
    letter-spacing: 3.6px;
  }
}

.process__item--embed {
  position: relative;
  width: 100%;
  padding-top: 67%; /* 縦横比544:364 */
}

.process__item--line1 {
  position: absolute;
  left: 110px;
  top: 362px;
  height: 86%;
  width: 50%;
  z-index: -1;
}
@media screen and (max-width: 932px) {
  .process__item--line1 {
    left: 80px;
    top: 270px;
    height: 120%;
    width: 70%;
  }
}
@media screen and (max-width: 767px) {
  .process__item--line1 {
    display: none;
  }
}

.process__item--embed2 {
  position: relative;
  width: 100%;
  padding-top: 67%; /* 縦横比544:364 */
}

.process__item--line2 {
  position: absolute;
  left: 160px;
  top: 220px;
  height: 120%;
  width: 50%;
  z-index: -1;
}
@media screen and (max-width: 932px) {
  .process__item--line2 {
    left: 100px;
    top: 300px;
    height: 120%;
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .process__item--line2 {
    display: none;
  }
}

.process__item--iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.process__item--reverse {
  display: flex;
  flex-direction: row-reverse;
  padding-bottom: 145px;
}
@media screen and (max-width: 767px) {
  .process__item--reverse {
    flex-direction: column;
    padding-bottom: 0px;
  }
}

.process__item--leftreverse {
  width: 58%;
}
@media screen and (max-width: 767px) {
  .process__item--leftreverse {
    width: 100%;
    margin-bottom: -20px;
  }
}

.process__item--rightreverse {
  width: 42%;
  padding-top: 150px;
}
@media screen and (max-width: 767px) {
  .process__item--rightreverse {
    width: 70%;
    padding-top: 20px;
    margin-left: auto;
    display: flex;
    flex-direction: column-reverse;
    gap: 21px;
  }
}

.process__item--memberimagereverse {
  width: 60%;
  margin-left: 10%;
}
@media screen and (max-width: 767px) {
  .process__item--memberimagereverse {
    width: 100%;
    margin-left: 0%;
    margin-top: -100px;
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
  }
}
.process__item--memberimagereverse p {
  padding-top: 12px;
  padding-left: 5px;
  color: #231815;
  font-family: Noto Sans JP;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .process__item--memberimagereverse p {
    padding-left: 0px;
  }
}

.process__item--titlereverse {
  color: #FFDA2A;
  font-family: Futura;
  font-size: 100px;
  font-style: italic;
  font-weight: 500;
  line-height: 100px;
  letter-spacing: 6px;
  padding-bottom: 17px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .process__item--titlereverse {
    text-align: center;
    font-size: 60px;
    letter-spacing: 3.6px;
  }
}

.process__item--borderreverse {
  width: 84%;
  margin-left: 10%;
}
@media screen and (max-width: 767px) {
  .process__item--borderreverse {
    width: 136%;
    transform: scale(-1, -1);
    margin-left: -36%;
  }
}

.process__item--rightline {
  display: none;
}
@media screen and (max-width: 767px) {
  .process__item--rightline {
    display: block;
    padding-left: 60px;
    margin-bottom: -26px;
    height: 50%;
    width: 50%;
  }
}

.process__item--rightreverseine {
  display: none;
}
@media screen and (max-width: 767px) {
  .process__item--rightreverseine {
    display: block;
    padding-left: 260px;
    margin-bottom: -28px;
    height: 80%;
    width: 80%;
  }
}
@media screen and (max-width: 500px) {
  .process__item--rightreverseine {
    display: block;
    padding-left: 200px;
    margin-bottom: -28px;
    height: 90%;
    width: 90%;
  }
}

/*===================================================
# contact
===================================================*/
.contact__top {
  text-align: right;
  position: relative;
  display: flex;
  justify-content: center;
}

.contact__top--image1 {
  width: 35%;
  position: absolute;
  right: 8%;
  top: -110%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .contact__top--image1 {
    top: -40%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.contact__top--image2 {
  width: 100%;
}
@media screen and (max-width: 630px) {
  .contact__top--image2 {
    height: 100px;
  }
}

.contact__top--text {
  color: #231815;
  text-align: center;
  font-family: Hiragino Maru Gothic Pro;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 163.5%;
  letter-spacing: 1.44px;
  position: absolute;
  top: 36%;
}
@media screen and (max-width: 900px) {
  .contact__top--text {
    top: 28%;
  }
}
@media screen and (max-width: 630px) {
  .contact__top--text {
    top: 20%;
  }
}

.content__inner {
  position: relative;
}

.contact__backicon {
  position: absolute;
  z-index: -1;
}

@media screen and (min-width: 1701px) {
  .contact__backicon--img {
    padding-left: 22%;
    padding-right: 22%;
    padding-top: 20px;
  }
}
@media screen and (max-width: 1700px) {
  .contact__backicon--img {
    padding-left: 20%;
    padding-right: 20%;
    padding-top: 10px;
  }
}
@media screen and (max-width: 1500px) {
  .contact__backicon--img {
    padding-left: 18%;
    padding-right: 18%;
    padding-top: 20px;
  }
}
@media screen and (max-width: 1300px) {
  .contact__backicon--img {
    padding-left: 16%;
    padding-right: 16%;
    padding-top: 40px;
  }
}
@media screen and (max-width: 1100px) {
  .contact__backicon--img {
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 36px;
  }
}
@media screen and (max-width: 900px) {
  .contact__backicon--img {
    padding-left: 4%;
    padding-right: 4%;
    padding-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .contact__backicon--img {
    display: none;
  }
}

.contact__container {
  padding-top: 140px;
  padding-bottom: 14%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 3%;
}
@media screen and (max-width: 1100px) {
  .contact__container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .contact__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 20px;
         column-gap: 20px;
    row-gap: 80px;
    justify-items: center;
    padding-bottom: 24%;
  }
}

.contact__card {
  width: 170px;
  background-color: #fff;
  border: 1px solid #231815;
  border-radius: 10px;
}

.contact__card--top {
  text-align: center;
  border-bottom: 1px solid #B1B0B0;
  position: relative;
  height: 74px;
  display: flex;
  justify-content: center;
}

.contact__card--img {
  margin: 0 auto;
  position: absolute;
  top: -32px;
  width: 64px;
}
.contact__card--img img {
  border: 1px solid #231815;
  border-radius: 50px;
}

.contact__card--name {
  font-family: Noto Sans JP;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0em;
  text-align: left;
  padding-top: 40px;
}

.contact__card--bottom {
  height: 120px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.contact__card--link {
  display: flex;
  justify-content: center;
  gap: 19px;
}

.contact__card--twitter, .contact__card--portfolio {
  width: 22px;
}

.contact__card--contactlink button {
  background-color: #FFDA2A;
  width: 104px;
  height: 31px;
  border: 1px solid #231815;
  border-radius: 20px;
}

/*===================================================
# footer
===================================================*/
.footer {
  background-color: #5C5C5C;
  text-align: center;
  display: flex;
  justify-content: center;
}

.footer__img {
  position: relative;
}

.footer__img--inner {
  position: absolute;
  top: -60px;
  right: -20px;
  width: 311px;
  margin: 0 auto;
}

.footer__button--container {
  padding-top: 230px;
}

.footer__btn button {
  width: 261px;
  height: 84px;
  background-color: #C5E1EE;
  border-radius: 40px;
  font-family: Noto Sans JP;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0.12em;
  text-align: center;
}

.footer__copyroght {
  color: #fff;
  font-family: Noto Sans JP;
  font-size: 7px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0.01em;
  font-family: Noto Sans JP;
  font-size: 7px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0.12em;
  text-align: center;
  padding-bottom: 20px;
  padding-top: 40px;
}

.footer__backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: 0.3s 0;
  width: 34px;
}

#page_top {
  right: 30px;
}

body {
  position: relative;
}