@charset "UTF-8";
/*
Theme Name:     Ateliersoegi
Theme URI:      http://ateliersoegi.com/
Author:         Ateliersoegi
Author URI:     http://ateliersoegi.com/
Description:    Ateliersoegi Theme
Version:        1.0
License:        GNU General Public License v2 or later
License URI:    http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:    ateliersoegi
*/
@import url("https://fonts.googleapis.com/css2?family=Kiwi+Maru&family=Xingkai+TC&family=Playfair+Display&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400&display=swap");
/*** The new CSS reset - version 1.11.3 (last updated 25.8.2024) ***/
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

a,
button {
  cursor: revert;
}

ol,
ul,
menu,
summary {
  list-style: none;
}

ol {
  counter-reset: revert;
}

img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

table {
  border-collapse: collapse;
}

input,
textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  appearance: revert;
}

:where(pre) {
  all: revert;
  box-sizing: border-box;
}

::placeholder {
  color: unset;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
  box-sizing: border-box;
}

::-webkit-details-marker {
  display: none;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
}

/* ====== color ====== */
/* ====== font ====== */
body {
  font-family: "Kiwi Maru", sans-serif;
  background-color: #EAF2F6;
  line-height: 1.7;
}

/* ====== responsive ====== */
body .is-layout-flex {
  display: flex;
}

.is-layout-flex > :is(*, div) {
  margin: 0;
}

/* 見出し */
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.15rem, 2.15rem + (1vw - 0.2rem) * 1.333, 3rem);
}

h2 {
  font-size: clamp(1.85rem, 1.85rem + (1vw - 0.2rem) * 1.083, 2.5rem);
}

/* テキスト */
.has-xlarge-font-size {
  font-size: 2rem;
}

.has-large-font-size {
  font-size: 1.8rem;
}

.has-medium-font-size {
  font-size: 1.6rem;
}

.has-small-font-size {
  font-size: 1.4rem;
}

.has-text-align-center {
  text-align: center;
}

.has-text-align-left {
  text-align: left;
}

.has-text-align-right {
  text-align: right;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

ol {
  list-style-type: decimal;
  list-style-position: inside;
  margin-left: 0.5em;
}
ol li {
  margin-bottom: 0.5em;
}

/* wpブロック */
.wp-block-button__link {
  display: flex;
  padding: 0.7em 2.4em 0.8em;
  line-height: 0.8;
  border: 1px solid black;
  border-radius: 2rem;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}

/* wpforms */
.wpforms .wp-form-container {
  margin: 0 auto;
  max-width: 600px;
}

.wpforms-field-medium {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.4rem 1.6rem;
  color: #ccc;
  border-radius: 0.8rem;
  border: 1px solid #ccc;
  background-color: #fff;
}

input.wpforms-field-medium {
  height: 4rem;
}

select.wpforms-field-medium {
  height: 4rem;
  position: relative;
}
select.wpforms-field-medium::before {
  content: "";
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  border-bottom: 1px #000 solid;
  border-right: 1px #000 solid;
  position: absolute;
  top: 50%;
  right: 1.6rem;
  transform: translateY(-50%);
}

textarea.wpforms-field-medium {
  height: 10rem;
}

.wpforms-submit {
  margin: 4rem auto 0;
  display: block;
  padding: 0.8rem 3.2rem 1rem;
  background-color: #BCD0DA;
  border-radius: 0.8rem;
  color: #000;
}

.bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ====== section ====== */
main {
  overflow: hidden;
}

.section__heading {
  position: relative;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section__heading p {
  position: absolute;
  top: 40%;
  left: 80%;
  z-index: 0;
  transform: translate(-50%, -50%);
  font-size: 5rem;
  font-family: "Xingkai TC", sans-serif;
  color: #ffffff;
}
.section__heading h2 {
  text-align: center;
  font-weight: bold;
  margin-top: 2rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}
.section__inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.section__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 6.4rem;
}

.page__heading {
  position: relative;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page__heading p {
  position: absolute;
  top: 40%;
  left: 80%;
  z-index: 0;
  transform: translate(-50%, -50%);
  font-size: 5rem;
  font-family: "Xingkai TC", sans-serif;
  color: #ffffff;
}
.page__heading h1 {
  text-align: center;
  font-weight: bold;
  margin-top: 2rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}
.page__inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 6.4rem;
}
.page__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}
.page h2 {
  font-weight: bold;
  margin-top: 2rem;
  margin-bottom: 1.2rem;
}
.page h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-image: url("images/common/h2_line.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: center;
  margin-top: 1.4rem;
}

.inner-wrap {
  width: 100%;
  max-width: 645px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.6rem;
}

/* ====== components ====== */
.sns__area {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 2rem;
}
.sns__link {
  font-size: 2rem;
}

.contact__area {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
}

/* ====== Header ====== */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.2rem 1.6rem;
  z-index: 10;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.h-logo {
  display: flex;
  align-items: center;
}
.h-logo img {
  height: 6rem;
}
.h-logo h1 {
  font-size: 2.4rem;
}

.h-nav__list {
  display: flex;
  flex-direction: row;
  gap: 2.4rem;
}
.h-nav__item a {
  font-size: 1.6rem;
}

.h-menu {
  display: none;
}

@media (max-width: 767px) {
  .h-logo img {
    height: 4.8rem;
  }
  .h-logo h1 {
    font-size: 1.8rem;
  }
  .h-nav {
    display: none;
  }
  .h-menu {
    display: block;
    position: relative;
    z-index: 100;
    padding-top: 1.2rem;
  }
  .h-menu #h-menu {
    display: none;
  }
  .h-menu #h-menu:checked ~ .h-menu__open {
    right: 0;
    opacity: 1;
    visibility: visible;
  }
  .h-menu #h-menu:checked ~ .h-menu__overlay {
    opacity: 1;
    visibility: visible;
  }
  .h-menu #h-menu:checked + .h-menu__button span {
    background-color: transparent;
  }
  .h-menu #h-menu:checked + .h-menu__button span::before {
    transform: rotate(45deg);
    top: 0;
  }
  .h-menu #h-menu:checked + .h-menu__button span::after {
    transform: rotate(-45deg);
    top: 0;
  }
  .h-menu__button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    position: relative;
  }
  .h-menu__button span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #000;
    position: relative;
    transition: all 0.3s ease;
    margin-bottom: 0.8em;
  }
  .h-menu__button span::before, .h-menu__button span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    transition: all 0.3s ease;
  }
  .h-menu__button span::before {
    transform: translateY(-8px);
  }
  .h-menu__button span::after {
    transform: translateY(8px);
  }
  .h-menu__open {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    padding: 80px 40px;
    transition: all 0.3s ease;
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  .h-menu__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 98;
  }
  .h-menu__list {
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .h-menu__list li a {
    display: block;
    color: #333;
    text-align: center;
    text-decoration: none;
    padding: 1.2rem 1.6rem;
    transition: color 0.3s ease;
    border-radius: 0.8rem;
  }
  .h-menu__list li a:hover {
    background-color: rgb(255, 255, 255);
  }
}
@media (min-width: 768px) {
  body {
    padding-top: 10.4rem;
  }
}
@media (max-width: 767px) {
  body {
    padding-top: 8.4rem;
  }
}
/* ====== Footer ====== */
.footer {
  position: relative;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 2rem;
  margin: 0 auto;
  max-width: 80rem;
}
.footer .bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #BCD0DA;
}
.footer .bg img {
  position: absolute;
  max-width: 100%;
  height: auto;
  transition: transform 0.5s ease;
  transform-origin: center center;
}
.footer .bg .watage_12 {
  bottom: 0;
  left: 20%;
}
.footer .bg .watage_13 {
  bottom: 0;
  right: 20%;
}

.f-copy {
  width: 100%;
}
.f-copy p {
  text-align: center;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .front-page {
    margin-top: -10.4rem;
  }
}
@media (max-width: 767px) {
  .front-page {
    margin-top: -8.4rem;
  }
}

/* ====== hero ====== */
.hero__section {
  width: 100%;
}
@media (min-width: 768px) {
  .hero__section {
    height: 72rem;
  }
}
@media (max-width: 767px) {
  .hero__section {
    height: 100vh;
  }
}
.hero__top {
  position: relative;
  width: 100%;
  height: 80%;
  padding: 12rem 2rem 2rem;
}
.hero__top .bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-image: linear-gradient(180deg, #BCD0DA 0%, #CDD7DC 100%);
}
.hero__top .bg img {
  position: absolute;
  max-width: 100%;
  height: auto;
  transition: transform 0.5s ease;
  transform-origin: center center;
}
.hero__top .bg .watage_01 {
  top: 10%;
  left: 5%;
}
@media (max-width: 767px) {
  .hero__top .bg .watage_01 {
    left: 2%;
  }
}
.hero__top .bg .watage_02 {
  top: 5%;
  right: 10%;
}
@media (max-width: 767px) {
  .hero__top .bg .watage_02 {
    right: 2%;
  }
}
.hero__top .bg .watage_03 {
  bottom: 20%;
  left: 10%;
}
@media (max-width: 767px) {
  .hero__top .bg .watage_03 {
    left: 5%;
    bottom: 15%;
  }
}
.hero__top .bg .watage_04 {
  bottom: 15%;
  right: 15%;
}
@media (max-width: 767px) {
  .hero__top .bg .watage_04 {
    right: 5%;
    bottom: 10%;
  }
}
.hero__top .bg .watage_05 {
  top: 20%;
  left: 24%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .hero__top .bg .watage_05 {
    left: 12%;
    top: 40%;
    transform: translate(-50%, -50%);
  }
}
.hero__bottom {
  position: relative;
  width: 100%;
  height: 20%;
}
.hero__bottom .bg {
  background-image: linear-gradient(180deg, #CDD7DC 0%, #FFFFFF 100%);
}

.hero__inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 100%;
}
.hero__text {
  position: absolute;
}
.hero__text h1 {
  font-weight: bold;
  font-family: "Playfair Display", serif;
  color: #013b62;
  line-height: 1.8;
  text-shadow: 2px 2px 8px #fff;
}
@media (min-width: 768px) {
  .hero__text h1 {
    font-size: 3.6rem;
  }
}
@media (max-width: 767px) {
  .hero__text h1 {
    font-size: 2.4rem;
  }
}
@media (min-width: 768px) {
  .hero__text {
    top: 20%;
    left: 20%;
  }
}
@media (max-width: 767px) {
  .hero__text {
    top: 5%;
    left: 10%;
  }
}
.hero__img {
  -webkit-mask-image: radial-gradient(rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 72%);
  mask-image: radial-gradient(rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 72%);
}
.hero__img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .hero__img {
    width: 24rem;
    height: 36rem;
    bottom: 0%;
    right: 5%;
    border-radius: 50%;
  }
}
@media (min-width: 768px) {
  .hero__img {
    width: 32rem;
    height: 40rem;
    bottom: 0%;
    right: 10%;
    border-radius: 50%;
  }
}

/* ====== scroll down ====== */
.scroll_down {
  position: absolute;
  bottom: 1%;
  right: 50%;
  animation: arrowmove 1s ease-in-out infinite;
}

.scroll_down a {
  position: absolute;
  left: -24px;
  bottom: 17px;
  color: #000;
  font-size: 14px;
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll_down:before {
  content: "";
  position: absolute;
  bottom: 5px;
  right: -6px;
  width: 2px;
  height: 20px;
  background: #000;
  transform: skewX(-31deg);
}

.scroll_down:after {
  content: "";
  position: absolute;
  bottom: 5px;
  right: 0;
  width: 2px;
  height: 85px;
  background: #000;
}

@keyframes arrowmove {
  0% {
    bottom: 1%;
  }
  50% {
    bottom: 5%;
  }
  00% {
    bottom: 1%;
  }
}
/* ====== gallery ====== */
.temp-gallary {
  background-color: #fff;
}
.temp-gallary .section__heading p {
  color: #BCD0DA;
}

.gallary-slider__item {
  height: 30rem;
  margin: 0 1.2rem;
  display: flex;
}
.gallary-slider__item img {
  height: 30rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* ====== about ====== */
.temp-about .section__top {
  position: relative;
  width: 100%;
  height: 12rem;
}
.temp-about .section__top .bg {
  background-image: linear-gradient(180deg, #FFFFFF 0%, #CDD7DC 100%);
}
.temp-about .section__inner .bg {
  background-color: #CDD7DC;
}
.temp-about .section__bottom {
  position: relative;
  width: 100%;
  height: 12rem;
}
.temp-about .section__bottom .bg {
  background-image: linear-gradient(180deg, #CDD7DC 0%, #FFFFFF 100%);
}

.about__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}
.about__content p {
  text-align: center;
}
.about__content a {
  display: flex;
  align-items: center;
  padding: 0.4em 1.2em 0.6em;
  border: 1px solid black;
  border-radius: 2rem;
}

.gallary__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}
@media (max-width: 767px) {
  .gallary__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
  }
}
.gallary__item {
  aspect-ratio: 1;
  overflow: hidden;
}
.gallary__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallary__item:hover {
  cursor: pointer;
  opacity: 0.8;
}

.gallary-modal {
  position: fixed;
  top: 0%;
  left: 0%;
  width: 80%;
  max-width: 100rem;
  height: auto;
  aspect-ratio: 4/3;
  z-index: 99;
  padding: 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .gallary-modal {
    aspect-ratio: 4/7;
  }
}
.gallary-modal__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
}
.gallary-modal__close i {
  font-size: 2rem;
}
.gallary-modal__inner {
  margin: 6rem 2rem 2rem;
  display: flex;
  height: -webkit-fill-available;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 2rem;
}
.gallary-modal__img {
  height: 75%;
  width: auto;
}