@charset "UTF-8";

/* -------------------------------------------
ベース
------------------------------------------- */
/* 変数 */
:root {
  --font-base: 'LINESeedJP OTF', sans-serif;
  --font-nav: 'LINESeedJP OTF', sans-serif;
}

html {
  scroll-behavior: smooth;
}

a:hover {
  opacity: 0.7;
}

address {
  font-style: normal;
}

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

/* -------------------------------------------
 言語切り替え
------------------------------------------- */

.lang-btn {
  height: 60px;
  width: 60px;
  position: fixed;
  right: 10px;
  bottom: 30px;
  background: #000000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.lang-btn-up {
  right: 10px;
  bottom: 100px;
  transition: all 1s;
}

.lang-content {
  background-color: #0000006a;
  border-radius: 99999px;
  display: none;
  width: 60px;
  padding-bottom: 60px;
  position: fixed;
  z-index: 1;
  right: 10px;
  bottom: 30px;
}

.lang-content ul {
  padding: 2px;
  margin: 0;
}

.lang-content-up {
  bottom: 100px;
  transition: all 1s;
}

.lang-content li a {
  background-color: #fff;
  border-radius: 50%;
  color: #000000;
  font-weight: bold;
  font-size: 1.2rem;
  display: block;
  height: 50px;
  padding-top: 12px;
  margin: 5px auto;
  text-align: center;
  width: 50px;
  box-sizing: border-box;
}

.lang:hover .lang-content {
  display: block;
  transition: all 0.5s;
}

#lang:checked ~ .lang-content {
  display: block;
  transition: all 0.5s;
}

.lang-check {
  display: none;
}

.lang img {
  width: 80%;
  filter: brightness(0) invert(1);
}

/* ページに合わせて内容調整 */
.lang {
  font-family: var(--font-base);
}

/* -------------------------------------------
wrap
------------------------------------------- */
:root {
  --bg-01: #fbf8c5;
  --bg-02: #fffee8;
}
.wrap {
  background: #fff;
  background-image: linear-gradient(
    45deg,
    var(--bg-01) 0%,
    var(--bg-01) 25%,
    var(--bg-02) 25%,
    var(--bg-02) 50%,
    var(--bg-01) 50%,
    var(--bg-01) 75%,
    var(--bg-02) 75%,
    var(--bg-02) 100%
  );
  width: 100%;
  background-size: 10px 10px;
}

/* -------------------------------------------
main-contents
------------------------------------------- */

.main-contents {
  background: #fbf8c5;
  width: 100%;
  max-width: 1300px;
  margin-inline: auto;
  overflow-x: clip;
}

/* -------------------------------------------
mv
------------------------------------------- */

.mv {
  margin-block: 0;
}

/* -------------------------------------------
content-block
------------------------------------------- */
.img-content-wrap {
  max-width: 1000px;
  width: 90%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 32px;
  padding-bottom: 64px;
}

@media (max-width: 768px) {
  .img-content-wrap {
    gap: 8px;
    padding-top: 16px;
    padding-bottom: 32px;
  }
}

.img-content {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.img-content--full {
  max-width: 100%;
}

.img-content__btn {
  position: absolute;
  display: block;
  
  
  img {
    width: 100%;
    height: 100%;
    display: block;
  }
}

.img-content__decoration {
  position: absolute;
  display: block;
  img {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .img-content__decoration--melon-01,
  .img-content__decoration--melon-02 {
    display: none;
  }
}

/* -------------------------------------------
btn/decoration位置調整
------------------------------------------- */

.period-btn {
  width: 47%;
  top: 54%;
  left: calc(50% - (47% / 2));
}

@media (max-width: 768px) {
  .period-btn {
    top: 54%;
  }
}

.img-content__decoration--melon-01 {
width: 30%;
    top: 6%;
  left: 81%;
}


.mail-btn {
  width: 19.3%;
  top: 90.6%;
  left: 47.5%;
}

@media (max-width: 768px) {
  .mail-btn {
    width: 42.5%;
    top: 91.6%;
    left: 44.9%;
  }
}

.attention-application-btn {
  width: 47%;
  margin-inline: auto;
  display: block;
}

@media (max-width: 768px) {
  .attention-application-btn {
    width: 55%;
    margin-top: 8px;
  }
}

.img-content__decoration--melon-02 {
  width: 26%;
  top: 67%;
  right: 85%;
}

/* -------------------------------------------
css調整
------------------------------------------- */
.section {
  width: 100%;
  box-sizing: border-box;
}

 @media (max-width: 768px) {
  .section {
  margin-bottom: 8px;
}
 }

/* -------------------------------------------
レスポンシブ対応
------------------------------------------- */

@media (min-width: 769px) {
  .sp {
    display: none;
  }
}

@media (max-width: 768px) {
  .pc {
    display: none;
  }
}
