@charset "utf-8";

/* 共通--------------------------------------------------------------------------------------- */

html {
  scroll-behavior: smooth;
}

*,
::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  /* outline: 1px #ff0000 solid;  */
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  /* cursor: url(../images/common/cursor.png),auto; */
}

body {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #787878;
  line-height: 1;
  background-color: #ffffff;
}

img {
  max-width: 100%;
}

a:hover {
  color: #ffc0cb;
}


/* ヘッダー------------------------------------------------------------------------------------- */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  z-index: 10;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}

.header-inner {
  height: 100px;
  margin: 0 auto;
  padding: 0 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  display: block;
  width: 20%;
}

.toggle-menu-button {
  display: none;
}

.site-menu ul {
  display: flex;
  gap: 80px;
  font-weight: 400;
}

.header-sns-logo-mobile {
  display: none;
}

/* メインコンテンツ----------------------------------------------------------------------------------------------- */

.first-view {
  height: calc(100vh - 100px);
  background-image: url(../images/index/DSC_7325resize.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  margin-top: 100px;
}

h1 {
  font-size: 24px;
  letter-spacing: 2rem;
}

.main {
  max-width: 1000px;
  padding-left: 50px;
  padding-right: 50px;
  margin-left: auto;
  margin-right: auto;
}

#information,
#profile,
#gallery,
#contact::before {
  display: block;
  content: "";
  padding-top: 100px;
  margin-top: -100px; 
}

h2 {
  font-size: 24px;
  font-weight: 400;
  color:#ffc0cb;
  margin-top: 200px;
  border-bottom: 1px solid #ffc0cb;
}

h3 {
  font-size: 20px;
  font-weight: 300;
  margin-top: 100px;
}

.ivent-text {
  margin-top: 20px;
  line-height: 1.6;
}

.ivent-link {
  text-decoration: underline;
}

h3,
.ivent-text,
.profile-inner,
.contact,
.contact-sub {
  padding-left: 50px;
  padding-right: 50px;
}

/* .profile-inner p{
  text-align: center;
} */

.profile-name {
  font-size: 20px;
  margin-top: 100px;
  letter-spacing: 0.3rem;
}

.profile-text {
  font-size: 14px;
  line-height: 3;
  margin-top: 50px;
}

.exhibition {
  margin-top: 100px;
  font-size: 16px;
  color: #787878;
  border-bottom: 1px solid #787878;
}

.year {
  font-family: 'Quicksand', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-top: 80px;
  margin-bottom: 20px;
  color: #ffc0cb;
}

.exhibition-text {
  font-size: 14px;
  margin-top: 10px;
  line-height: 2;
  text-align: justify;
}

/* ギャラリー ---------------------------------------------------------------------------------------------*/
.g-container {
  margin-top: 100px;
}

.gallery-list {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.gallery-image {
  border-radius: 5px;
}

.gallery-text {
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  padding-top: 5px;
}

.gallery-image:hover {
 transform: scale(1.05); 
 transition: 0.5s;
}

/* コンタクト---------------------------------------------------------------------------------------------*/

.contact {
  margin-top: 50px;
  line-height: 2.0;
}

.contact-sub {
  margin-top: 40px;
  line-height: 1.6;
}

.contact img {
  vertical-align: -5px;
}

.footer {
  margin-top: 180px;
}

/* フッター------------------------------------------------------------------------------------------------ */

.footer {
  background-color: #787878;
  color: #ffffff;
  padding-top: 25px;
  padding-bottom: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header-sns-logo img,
.footer-sns-logo img {
  height: 25px;
  margin: 30px 10px;
}

.footer-logo-group {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 20px;
}

.copyright {
  font-size: 14px;
}

/* メディアクエリ --------------------------------------------------------------------------------------------------- */

@media (max-width: 820px) {

  .site-menu ul {
    display: block;
    text-align: left;
    padding-left: 40px;
  }

  .site-menu li {
    margin-top: 20px;
  }

  .header {
    height: 60px;
    background-size: 100%;
  }

  .header-inner {
    padding: 10px 20px 10px 20px;
    height: 100%;
    position: relative;
  }

  .header-site-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgb(238, 238, 238, 0.75);
    padding-top: 15px;
    padding-bottom: 30px;
    display: none;
  }

  .header-site-menu.is-show {
    display: block;
  }

  .header-logo {
    width: 40%;
  }

  .header-sns-logo {
    display: none;
  }

  .toggle-menu-button {
    display: block;
    width: 44px;
    height: 34px;
    background-image: url(../images/common/icon-menu.png);
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
    border-radius: 0;
    outline: none;
  }

  .footer-logo-group {
    flex-direction: column;
    gap: 0;
    margin: 0 auto;
  }

  .footer-sns-logo img {
    margin-top: 15px;
    margin-bottom: 30px;
  }

  .header-sns-logo-mobile-group a {
    display: inline-block;
    width: 20px;
    margin-right: 10px;
  }
  .header-sns-logo-mobile {
    display: flex;
    margin-top: 30px;
    margin-left: 40px;
  }
/* --------------------------------------------------------------------------------------- */

  .first-view {
    background-image: url(../images/index/DSC_7325mobile.jpg);
    background-position: right;
    height: calc(100vh - 60px);
    margin-top: 60px;
  }

  h1 {
    font-size: 14px;
    letter-spacing: 0;
    text-shadow: 0 0 5px #fcf8ed;
  }

  .main {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  h2 {
    font-size: 16px;
    margin-top: 100px;
  }

  h3,
  .ivent-text,
  .profile-inner,
  .contact,
  .contact-sub {
    padding-left: 0px;
    padding-right: 0px;
  }

  .profile-name {
    font-size: 18px;
    margin-top: 50px;
  }

  .profile-text {
    font-size: 14px;
    line-height: 2;
    text-align: justify;
  }

  .exhibition {
    font-size: 14px;
  }

  .year {
    margin-top: 60px;
  }

  .g-container {
    margin-top: 50px;
  }
  
  .gallery-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .contact {
    font-size: 14px;
    line-height: 1.6;
  }

  .contact-sub {
    margin-top: 50px;
    font-size: 12px;
    line-height: 1.6;
    text-align: justify;
  }
  
  #information,
  #profile,
  #gallery,
  #contact::before {
    display: block;
    content: "";
    padding-top: 228px;
    margin-top: -228px;
  }

/* --------------------------------------------------------------------------------------- */

  .footer {
    margin-top: 50px;
    padding: 20px;
  }  

}