@charset "UTF-8";

body {
  max-width: 100%;
  background-color: rgba(150, 185, 173, .5);
  font-family: Raleway, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2%;
}

/* ヘッダー */
.header {
  width: 100%;
  position: fixed;
  z-index: 1000;
  top: 0%;
  left: 0%;
  background-color: rgba(255, 255, 255, 0.8);
  justify-content: space-around;
}

.nav {
  padding: 0 6px;
  display: flex;
  justify-content: space-between;
}

.nav h1 img {
  transition: all 0.3s;
  height: 50px;
  width: 240px;
  object-fit: cover;
  padding: 8px;
}

.nav h1 img:hover {
  opacity: 0.8;
  transform: scale(1.08);
}

.nav .ul-list {
  width: 100%;
  display: flex;
  color: rgb(0, 0, 0);
}

.nav .ul-list li {
  width: 100%;
}

.nav .ul-list li a {
  font-size: 20px;
  transition: all 0.3s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 100%;
}

.nav .ul-list li:hover a {
  background-color: rgba(208, 236, 181, 0.8);
  text-decoration: underline;
}

.nav .ul-list li:nth-child(3) a {
  font-size: 15px;
}

/* スマホカード */
.card {
  display: none;
}

/* 写真スライド */
main {
  position: relative;
  margin: 0 auto 10px;
  max-width: 100%;
  height: 100%;
}

.main_imgBox {
  height: 100vh;
  overflow: hidden;
  max-width: 100%;
}

.main_img {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  animation: slideshow 24s linear infinite;
}

.main_img img {
  height: 100vh;
  width: 100%;
  object-fit: cover;
}

@keyframes slideshow {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  28% {
    opacity: 1
  }

  38% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.main_img:nth-child(2) {
  animation-delay: 8s;
}

.main_img:last-child {
  animation-delay: 16s;
}

/* 透明ボックス */
.text-box {
  width: 100%;
  height: 260px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
  border-radius: 10px;
  position: absolute;
  top: 35%;
  left: 0%;
  z-index: 1;
}

/* センタータイトル */
.textAnimation {
  max-width: 100%;
  color: rgb(8, 54, 30);
  font-size: 250%;
  font-weight: 600;
  letter-spacing: 2px;
  white-space: nowrap;
  position: absolute;
  top: 18%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
}

.textAnimation:nth-child(2) {
  margin: 60px 0;
}

.textAnimation:nth-child(3) {
  margin: 120px 0;
}

.textAnimation:nth-child(4) {
  margin: 180px 0;
}

/* プロフィール */
.profile-section {
  color: rgb(25, 20, 20);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-around;
  margin-bottom: 10px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  border-radius: 10px;
  border-radius: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 10px;
}

.profile-section h2 {
  display: inline-block;
  background-color: rgb(42, 93, 85);
  padding: 5px 10px;
  margin: 10px 0 10px;
  transition: all 0.3s;
  border-radius: 10px;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.profile-section h2:hover {
  letter-spacing: 3px;
  opacity: 0.7;
}

.profile-image img {
  object-fit: cover;
  border-radius: 10px;
}

.profile-info {
  width: 100%;
  padding: 16px;
  font-size: 18px;
  line-height: 1.6;
}

.info-title {
  font-size: 22px;
  margin-bottom: 16px;
}

/* サービス */
.contents-title {
  font-size: 22px;
  text-align: center;
  margin: 0 auto 20px;
  padding: 10px;
  white-space: normal;
  animation: titleAnimation 1.5s;
  text-align: center;
  color: #000000;
  font-weight: 600;
  color: #5d627b;
  background: white;
  border-top: solid 5px #5d627b;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.22);
  max-width: 1200px;
}

.service-box {
  background-color: rgba(255, 255, 255, 0.3);
  width: 100%;
  backdrop-filter: blur(6px);
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 20px 40px 10px;
}

#service p {
  padding: 10px;
  font-size: 18px;
  margin-bottom: 10px;
  text-align: left;
  line-height: 1.4;
}

#service h4 {
  display: inline-block;
  background-color: rgb(42, 93, 85);
  color: #fff;
  padding: 3px 14px 3px 28px;
  font-size: 18px;
  position: relative;
}

#service h4::after {
  content: "";
  border-color: #fff rgb(219, 236, 230)rgba(34, 186, 148, 0.4);
  border-style: solid;
  border-width: 0 0 20px 20px;
  position: absolute;
  top: -0px;
  left: 0px;
}

#service ul {
  border: 2px solid rgb(15, 55, 49);
  margin-bottom: 20px;
  font-size: 17px;
}

#service ul li {
  margin: 10px;
}

#service img {
  width: 30px;
  padding: 5px;
  vertical-align: middle;
}

#service a {
  color: #1a0dab;
  transition: all 0.3s;
  padding: 2px;
  text-decoration: underline;
}

#service a:hover {
  opacity: 0.7;
}

/* アバウト */
.about {
  width: 100%;
  margin-bottom: 20px;
  border: 2px solid rgba(142, 153, 148, 0.5);
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, .12), 0 2px 3px 0 rgba(0, 0, 0, .22);
  transition: .3s;
}

.about:hover {
  box-shadow: 0 15px 30px -5px rgba(0, 0, 0, .15), 0 0 5px rgba(0, 0, 0, .1);
  transform: translateY(-4px);
}

.about .image {
  position: relative;
}

.about img {
  padding: 14px;
  object-fit: cover;
  transition-duration: 0.5s;
  filter: grayscale(22%);
}

.about h3 {
  font-size: 36px;
  letter-spacing: 2px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 97%;
  text-align: center;
  transform: translate(-50%, -50%);
  border-radius: 5px;
  padding: 15px 30px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  backdrop-filter: blur(2px);
  background-color: rgba(15, 202, 58, 0.1);
}

.about p {
  padding: 0 16px 8px;
  line-height: 1.4;
  font-size: 17px;
}
.triangle-element {
  position: relative;
  overflow: hidden;
}

.triangle-left {
  width: 97%;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  padding: 10px;

}

.triangle-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 97%;
  height: 100%;
  clip-path: polygon(0 0, 100% 0%, 100% 100%);
  padding: 10px;
}

/* ガラスカード */
.glass-card {
  width: 100%;
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
}

.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  width: 48%;
  height: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 15px;
  box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.glass .content {
  padding: 16px;
  transition: 0.5s;
}

.glass .content h3 {
  color: rgb(255, 255, 255);
  font-size: 18px;
  margin-bottom: 10px;
  background-color: rgb(57, 94, 84);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
}

.glass .content p {
  font-size: 1rem;
  line-height: 1.4;
  color: rgb(3, 3, 3);
}

/* プロフィールカード */
.profile-reverse {
  background-color: rgba(61, 58, 58, .9);
  background: url(../images/profile-section.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.profile-section .profile-img img {
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 10px;
  z-index: 1;
  filter: brightness(1.2);
}

.profile-reverse .profile-in {
  width: 100%;
  padding: 10px;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 500;
  color: rgb(219, 231, 229);
  margin-left: auto;
  background: rgba(160, 190, 187, 0.2);
  backdrop-filter: blur(0.3px);
  border-radius: 10px;
  z-index: 1;
}

.profile-name {
  font-size: 22px;
  margin-bottom: 6px;
  font-weight: 300;
}

.profile-in p {
  margin-bottom: 4px;
  font-weight: 300;
}

/* SNSアイコン */
.profile-section .contact li {
  margin: 6px 0;
  letter-spacing: 1px;
}

.profile-section .contact li img {
  height: 22px;
  width: 22px;
  border-radius: 50%;
  background: #ffffff;
  margin-right: 10px;
  color: #fff;
  object-fit: cover;
  padding: 1px;
}

.line:hover {
  transform: scale(1.1);
  background-color: #5ae628;
}

.inst:hover {
  transform: scale(1.1);
  background-color: #CF2E92;
}

.twitter:hover {
  transform: scale(1.1);
  background-color: #00aced;
}

/* SNSアイコン */
.profile-section .icons a {
  height: 40px;
  width: 40px;
  /* line-height: 25px; */
  background: #c6d6e7;
  border-radius: 50%;
  margin: 5px 15px;
  transition: all 0.3s;
}

.profile-section .icons a:hover {
  transform: scale(1.2);
}

.profile-section .icons {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 4%;
  right: 4%;
  z-index: 100;
}

.profile-section .icons img {
  border-radius: 50%;
  transition: all 0.3s;
}

.profile-section .line {
  width: 100px;
  height: 30px;
  position: absolute;
  bottom: 24px;
  right: 190px;
  z-index: 120;
  border-radius: 10px;
  transition: all 0.3s;
}

/* フッター */
.footer {
  width: 100%;
}

.footer-main {
  padding: 20px 20px 30px;
  background-color: #000;
  color: #f0f0f0;
  letter-spacing: 1px;
}

.footer h4,
.footer p {
  margin-bottom: 10px;
}

/* 固定フッターアイコン */
.navbar {
  display: none;
}

/*---------------construction.html---------------*/
#construction {
  width: 100%;
  min-height: 200vh;
  position: relative;
  opacity: 0.9;
  margin: 0 auto 10px;
  padding: 0px 10px 6px;
  max-width: 1200px;
}

#construction .contents-title {
  margin: 60px 0 20px;
}

.construction-card {
  max-width: 1200px;
  width: 98%;
  margin: 0 auto;
}

.contents li {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.contents li.show h4,
.contents li.show p,
main .contents li.show img {
  transform: none;
  opacity: 1;
}

.contents li:not(:first-of-type) {
  margin-top: 40px;
}

/* 奇数番号右寄せ */
.contents li:nth-of-type(odd) .contentsText {
  right: 0;
}

/* pタグ*/
.contents li:nth-of-type(even) .contentsText {
  align-items: flex-start;
}

/* 画像をフワッと下から出す */
.contents li:nth-of-type(odd) img {
  transform: translate(-20px, 20px);
}

/* 群数番号右寄せ */
.contents li:nth-of-type(even) img {
  margin-left: auto;
  transform: translate(20px, 20px);
}

.contentsText {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.contents h4 {
  font-size: 20px;
  font-weight: 600;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 10px 20px;
  letter-spacing: .05em;
  border-radius: 5px;
  opacity: 0;
  transition: 1s;
  transform: translateY(20px);
}

.contents p {
  line-height: 1.6;
  background-color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  font-weight: 500;
  max-width: 340px;
  padding: 8px 12px;
  margin-top: 20px;
  border-radius: 5px;
  opacity: 0;
  transform: translateY(20px);
  transition: 1s;
}

.contents img {
  width: 65%;
  display: block;
  border-radius: 5px;
  opacity: 0;
  transform: translateX(-20px);
  transition: 1s .5s;
}

/* メッセージ */
#messages {
  background: linear-gradient(to bottom, #ffffff 0%, #ffffff 100%);
  animation: huerotator 10s infinite alternate;
  padding-bottom: 1px;
  background-image: url(../images/construction-background.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  min-height: 100vh;
}

/* 背景グラデーション */
@keyframes huerotator {
  0% {
    filter: hue-rotate(0deg);
  }

  100% {
    filter: hue-rotate(16deg);
  }
}

#messages li {
  display: flex;
  padding: 0 10px;
}

#messages li {
  margin-top: 12px;
}

li.right {
  flex-direction: row-reverse;
}

.messages-image {
  width: 80px;
  text-align: center;
}

#messages .under {
  margin-bottom: 40px;
}

.messages-image img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.messages-text {
  border-radius: 20px;
  padding: 10px 18px;
  max-width: 70%;
  line-height: 1.6;
  position: relative;
  background: #fff;
}

.messages-text::before {
  content: '';
  width: 0;
  height: 0;
  border: 8px solid transparent;
  position: absolute;
}

.left .messages-text::before {
  top: 12px;
  left: -14px;
  border-right-color: #fff;
}

.right .messages-text::before {
  top: 12px;
  right: -14px;
  border-left-color: #8de055;
}

#messages .under .messages-text {
  background: #8de055;
}

/*--------------- profile.html ---------------*/
#profile {
  background-image: url(../images/profile-background.jpg);
  background-blend-mode: luminosity;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.9;
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 0 10px;
}

#profile .contents-title {
  margin-top: 54px;
}

#profile .profile-section .info-title {
  font-size: 24px;
  display: inline-block;
  letter-spacing: 2px;
  font-weight: 500;
  padding: 6px 50px;
  width: 100%;
  background-color: rgba(58, 172, 123, 0.2);
  border-radius: 4px;
  box-shadow: 20px 6px 40px -6px;
  opacity: 0.9;
}

.profile-in {
  text-align: left;
}

.profile-section .proline {
  position: absolute;
  bottom: 80px;
  right: 60px;
}

/*マップ*/
#location {
  padding: 0 6px 10px;
  margin: 0 auto;
  max-width: 1200px;
  border-radius: 4px;
}

iframe {
  width: 100%;
  border-radius: 4px;
}

/*--------------- contact.html ---------------*/
#contact {
  background-image: url(../images/contact-background.jpg);
  background-blend-mode: luminosity;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.8;
  width: 100%;
  min-height: 100vh;
}

.contact-main {
  padding: 30px;
}

.contact-card {
  margin-top: 160px;
  position: relative;
  width: 100%;
  padding: 50px;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  backdrop-filter: blue(25px);
}

.contact-card h2 {
  width: 100%;
  text-align: center;
  font-size: 34px;
  margin-bottom: 20px;
}

.contact-card .row {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.contact-card .row .col {
  width: 100%;
  padding: 0 10px;
  margin: 30px 0 20px;
}

.contact-card .row .col .inputBox {
  position: relative;
  width: 100%;
  height: 40px;
  color: rgb(0, 0, 0);
  font-weight: 500;
}

.contact-card .row .col .inputBox input,
.contact-card .row .col .inputBox textarea {
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  outline: none;
  font-size: 15px;
  padding: 0 10px;
  z-index: 1;
  color: #000;
}

.contact-card .row .col .inputBox .title {
  position: absolute;
  top: 0;
  left: 0;
  line-height: 40px;
  font-size: 18px;
  padding: 0 10px;
  display: block;
  transition: 0.5s;
  pointer-events: none;
}

.contact-card .row .col .inputBox input:focus+.title,
.contact-card .row .col .inputBox input:valid+.title,
.contact-card .row .col .inputBox textarea:focus+.title,
.contact-card .row .col .inputBox textarea:valid+.title {
  top: -35px;
  left: -10px;
}

.contact-card .row .col .inputBox .line {
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: 0.5s;
  border-radius: 2px;
  pointer-events: none;
}

.contact-card .row .col .inputBox input:focus~.line,
.contact-card .row .col .inputBox input:valid~.line {
  height: 100%;
}

.contact-card .row .col .inputBox.textarea {
  position: relative;
  width: 100%;
  height: 100px;
  padding: 10px 0;
}

.contact-card .row .col .inputBox textarea:focus~.line,
.contact-card .row .col .inputBox textarea:valid~.line {
  height: 100%;
}

.contact-card .row .col button[type="submit"] {
  appearance: none;
  border: none;
  padding: 10px 40px;
  cursor: pointer;
  outline: none;
  background: #fff;
  font-weight: 200;
  color: #fff;
  font-size: 18px;
  border-radius: 5px;
  background: rgb(0, 79, 237);
  box-shadow: 0 3px 0 0 #d4dbeb;
  transform: translateY(-5px);
  transition: 0.3s all;
}

.contact-card .row .col button[type="submit"]:hover {
  background: #265cdb;
  box-shadow: 0 2px 0 0 255, 255, 255, .5;
  transform: translateY(-2px);
}

/*--------------- privacy.html ---------------*/
#privacy h2 {
  font-size: 24px;
}

#privacy h2:nth-child(1) {
  font-size: 30px;
  margin-bottom: 20px;
  white-space: nowrap;
}

#privacy p {
  margin-bottom: 34px;
  line-height: 1.6;
}

#privacy .danraku {
  margin-bottom: 6px;
}

#privacy ul {
  margin-bottom: 30px;
}

#privacy ul li {
  margin-bottom: 8px;
}

#privacy a {
  color: #1a0dab;
  transition: 0.5s;
}

#privacy a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

/*--------------- レスポンシブ ---------------*/
@media screen and (max-width: 768px) {
  body {
    width: 100%;
  }

  .wrapper {
    width: 100%;
    margin: 0 auto;
  }

  .nav {
    display: block;
    text-align: center;
  }

  .nav h1 img {
    width: 200px;
  }

  #pc-nav .ul-list li {
    display: none;
  }

  /* ハンバーがメニュー中身 */
  #navigation {
    position: absolute;
    height: 100vh;
    width: 60%;
    left: -60%;
    top: 0;
    background-color: rgba(226, 228, 223, .6);
    z-index: 10;
    transition: 0.1s;
  }

  .card {
    display: block;
    height: 88%;
    width: 100%;
    margin: 50px auto 0;
    box-shadow: 0 3px 5px #000;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    background-color: rgba(226, 228, 223, .7);
    color: #000;
  }

  .card .bg-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 0%, 100% 70%, 45% 100%, 0 70%);
    filter: brightness(1.1);
  }

  .card .pic img {
    height: 110px;
    width: 110px;
    border-radius: 50%;
    border: 4px solid #222;
    margin-top: -90px;
    position: relative;
    object-fit: cover;
    filter: brightness(1.3);

  }

  .card .info h3 {
    font-size: 20px;
    padding: 8px 0;
  }

  .card .info span {
    font-size: 15px;
    color: #e74c3c;
  }

  .card .info p {
    font-size: 13px;
    padding: 10px 16px;
  }

  .card ul li a {
    display: block;
    font-size: 14px;
    padding: 6px 0;
    position: relative;
    display: inline-block;
    transition: all .3s;
    color: rgb(4, 4, 4);
  }

  .card ul li a:hover {
    transform: scale(1.06);
  }

  .card ul li a::after {
    content: '';
    position: absolute;
    bottom: .1em;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgb(18, 46, 202);
    opacity: 0;
    transition: all .3s;
  }

  .underline:hover::after {
    opacity: 1;
  }

  .card .info .icons a {
    font-size: 20px;
    padding: 0 10px
  }

  .card .info .icons img {
    width: 30px;
    border-radius: 50%;
    transition: all 0.3s;
    margin-top: 10px;
  }

  .card .info .icons .line {
    width: 60px;
    height: 30px;
  }
  
  /* 三本線 */
  #drawer-navigation {
    display: block;
    position: absolute;
    top: 10px;
    left: 20px;
    width: 30px;
    height: 30px;
    z-index: 100;
  }

  #drawer-navigation .drawer-line {
    display: block;
    position: absolute;
    width: 30px;
    height: 5px;
    background: rgb(0, 0, 0);
    border-radius: 5px;
    transition: all 0.1s;
  }

  #drawer-navigation #line1 {
    top: 0;
  }

  #drawer-navigation #line2 {
    top: 13px;
  }

  #drawer-navigation #line3 {
    bottom: 0;
  }

  /* ハンバーガーメニュークリック */
  .in {
    transform: translateX(100%);
  }

  #drawer-navigation .line_1 {
    transform: translateY(12px) rotate(-45deg);
  }

  #drawer-navigation .line_2 {
    opacity: 0;
  }

  #drawer-navigation .line_3 {
    transform: translateY(-12px) rotate(45deg);
  }

  /* センタータイトル */
  .textAnimation {
    font-size: 26px;
  }

  /* ガラスカード */
  .glass-card {
    width: 100%;
    display: block;
    margin-bottom: 10px;
  }

  .glass {
    margin: 0 auto 10px;
    width: 98%;
    height: 100%;
  }

  .glass .content h3 {
    font-size: 22px;
  }

  .about h3 {
    font-size: 30px;
  }

  /* プロフィールカード */
  .container .email-signature .contact {
    margin: 16px 0 0 200px;
  }

  .container .email-signature .content .contact li {
    font-size: 0.5rem;
    color: #000;
  }

  .profile-reverse .profile-in .contact li {
    font-size: 14px;
  }

  .profile-section .icons {
    bottom: 1%;
    right: 1%;
  }
  .profile-name {
    font-size: 19px;
  }


  /* SNSアイコン */
  .profile-section .icons a {
    width: 30px;
    height: 30px;
    margin: 0px 10px;
  }

  /* LINE */
  .profile-section .line {
    width: 60px;
    height: 20px;
    position: absolute;
    bottom: 8px;
    right: 110px;
    z-index: 120;
    border-radius: 10px;
    transition: all 0.3s;
  }

  /* フッター */
  .footer-main {
    padding: 20px 20px 60px;
  }

  /* 固定フッターアイコン */
  .navbar {
    height: 47px;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.7);
    display: block;
    z-index: 1000;
    padding: 3px;
  }

  .navbar ul {
    height: 30px;
    padding: 1px;
    display: flex;
    align-items: center;
    flex-flow: column wrap;
  }

  .navbar ul li {
    width: 60px;
    margin-top: 2px;
    text-align: center;
    position: relative;
    top: -24px;
  }

  .navbar ul li a {
    line-height: 49px;
    cursor: pointer;
    transition: 0.2s ease-out;
  }

  .navbar ul li:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
  }

  .navbar ul .home::before {
    content: "home";
  }

  .navbar ul .prof::before {
    content: "profile";
  }

  .navbar ul .phon::before {
    content: "phone";
  }

  .navbar ul .mail::before {
    content: "mail";
  }

  .navbar ul li:active:after {
    display: block;
  }

  .navbar ul li:active a:after {
    display: block;
  }

  .navbar img {
    width: 24px;
    height: 30px;
    object-fit: cover;
    padding: 1px;
    transition: 0.2s ease-out;
  }

  .navbar img:active {
    transform: scale(1.2);
  }

  /* ホバー文字 */
  .navbar ul li:after {
    content: "";
    height: 15px;
    width: 15px;
    background: #484b5e;
    transform: rotateZ(45deg);
    display: none;
    position: absolute;
    top: -5px;
    left: 20px;
  }

  .navbar ul li a:after {
    top: -55px;
    left: -8px;
    content: attr(data-text);
    position: absolute;
    background: #484b5e;
    color: rgb(255, 255, 255);
    border-radius: 50px;
    padding: 5px 12px;
    display: none;
  }

  .navbar ul li:nth-child(4) a:after {
    left: -20px;
  }

  /*---------------construction.html---------------*/
  .profile-info p {
    text-align: left;
  }

  .contents p {
    font-size: 14px;
  }

  /*--------------- profile.html ---------------*/
  .profile-section {
    flex-direction: column;
  }

  .profile-section {
    padding-bottom: 15px;
  }

  .profile-section .profile-in {
    text-align: left;
  }

  .profile-section .profile-in p {
    font-size: 16px;
  }

  .profile-section .profile-in li {
    font-size: 15px;
  }

  .reverse {
    flex-direction: column;
    flex-direction: column-reverse;
  }

  /*---------------contact.html---------------*/
  .contact-card {
    margin-top: 110px;
  }

  form {
    margin: 0 auto;

  }

  .contact-card h2 {
    font-size: 28px;
  }

  input[type="text"],
  input[type="email"],
  textarea {
    max-width: 100%;
  }

  /*--------------- privacy.html ---------------*/
  #privacy h2:nth-child(1) {
    font-size: 22px;
  }

  #privacy h2 {
    font-size: 18px;
  }
}