@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
:root {
  /* Colors */
  --blue: #166088;
  --pink: #c8a0be;
  --green:#4d6d69;
  --yellow:#c8bca0;
  --gray-light: #E8E8E8;
  --gray: #CCCCCC;
  --black: #5f5f5f;
  --light-blue:#61aac9;
  --purple:#7c6271;
  --light-yellow:#e9e4b6;
  --light-green:#a0c8b7;
  --lime-green:#D1E5B2;
  --brown:#8c8470;
  --beige: #E5D7B2;
  /* Font Sizes */
  --font-size-12: 12px;
  --font-size-14: 14px;
  --font-size-18: 18px;
  --font-size-20: 20px;
  --font-size-24: 24px;
  --font-size-25: 25px;
  --font-size-28: 28px;
  --font-size-30: 30px;
  /* Font Families */
  --font-jp: "Noto Sans CJK JP", sans-serif;
  --font-en: "Montserrat", sans-serif;
}

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

::-moz-placeholder {
  color: #cccccc;
}

::placeholder {
  color: #cccccc;
}

a {
  text-decoration: none;
  transition: all 0.5s;
  cursor: pointer;
  color: var(--pink);
}

a:hover {
  opacity: 0.6;
}

img {
  max-width: 100%;
}

p {
  line-height: 2.25;
  margin-bottom: 0;
}
@media screen and (max-width: 600px) {
  p {
    line-height: 1.75;
    margin-bottom: 1rem;
  }
}

body {
  position: relative;
  margin: 0;
  padding: 0;
  font-family: var(--font-en), var(--font-jp), sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--black);
}
@media screen and (max-width: 600px) {
  body {
    font-size: 14px;
  }
}

header {
  position: fixed;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 70px;
  z-index: 80;
  /* ナビゲーション全体のスタイル */
  /* toggle_btnのスタイル */
}
@media screen and (max-width: 600px) {
  header {
    background-color: rgb(255, 255, 255);
    height: 50px;
  }
}
header.scrollon {
  background-color: rgba(255, 255, 255, 0.85) !important;
}
header #sitelogo {
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
}
header #sitelogo > span {
  color: var(--yellow);
  font-size: var(--font-size-14);
  letter-spacing: 0.15rem;
}
@media screen and (max-width: 600px) {
  header #sitelogo {
    width: 100%;
    margin-left: 0;
    margin-right: auto;
    align-items: flex-start;
  }
  header #sitelogo > span {
    font-size: 0.5rem;
  }
  header #sitelogo > img {
    max-height: 20px;
    width: auto;
  }
}
header nav {
  position: relative;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background-color: #F3F4E9;
  transition: right 0.5s ease;
  z-index: 100;
  overflow: scroll;
  /* open時 toggle_btnをnav右端に移動 */
}
header nav.slide-in {
  right: 0;
}
header nav ul {
  list-style: none;
  padding: 0;
  margin: 55px 0;
}
header nav ul li {
  border-bottom: 1px solid #ddd;
}
header nav ul li a {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
}
header nav ul li a:hover {
  background-color: #f2f2f2;
}
header nav ul li > ul {
  margin: 0 0 0 1rem;
}
header nav.slide-in + .toggle_btn {
  right: 10px;
}
header .toggle_btn {
  position: absolute;
  top: 0;
  right: 10px;
  width: 40px;
  height: 60px;
  cursor: pointer;
  z-index: 101;
  transition: right 0.5s ease;
  padding-top: 30px;
}
@media screen and (max-width: 600px) {
  header .toggle_btn {
    top: -15px;
  }
}
header .toggle_btn span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}
header .toggle_btn span:nth-child(1) {
  transform: translateY(-10px);
}
header .toggle_btn span:nth-child(3) {
  transform: translateY(10px);
}
header .toggle_btn.active span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
header .toggle_btn.active span:nth-child(2) {
  opacity: 0;
}
header .toggle_btn.active span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
}
header .toggle_btn:after {
  content: "MENU";
  font-size: 12px;
  margin-top: 60px;
  line-height: 3;
}

main {
  display: block;
  position: relative;
}
main::before {
  content: "";
  background-color: rgba(249, 245, 228, 0.5294117647);
  background-image: url("/assets/images/back_default.webp");
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center bottom;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.6;
}
@media screen and (orientation: landscape) {
  main::before {
    background-size: 100% auto;
  }
}
main:not(.page-index) {
  padding-top: 10vw;
}
@media screen and (max-width: 600px) {
  main:not(.page-index) {
    padding-top: 15vw;
  }
}
main .wrapper {
  width: min(100vw - 15%, 1380px);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 600px) {
  main .wrapper {
    width: min(100vw - 10%, 1380px);
  }
}
main .wrapper ul {
  padding-left: 0;
  margin-left: 0;
  list-style: none;
}
main .wrapper ul li {
  margin-bottom: 0.75rem;
  padding-left: 1rem;
  text-indent: -1.15rem;
}
main .wrapper ul li:before {
  content: "";
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="33" height="33" viewBox="0 0 33 33"><path fill="%238c8470" id="Icon_akar-circle-fill" data-name="Icon akar-circle-fill" d="M34.5,18A16.5,16.5,0,1,1,18,1.5,16.5,16.5,0,0,1,34.5,18Z" transform="translate(-1.5 -1.5)"/></svg>');
  background-size: contain;
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 5px;
  display: inline-block;
  vertical-align: middle;
}
@media screen and (max-width: 600px) {
  main .wrapper ul li:before {
    width: 0.9rem;
    height: 0.9rem;
  }
}
main section + section:not(#content2):not(#content3):not(#content4) {
  margin-top: 5vw;
}
@media screen and (max-width: 820px) {
  main {
    background-size: auto 100%;
  }
  main .wrapper {
    padding: 7vw 0;
  }
}

footer {
  background-color: rgba(192, 217, 190, 0.431372549);
  padding: 3vw;
  position: relative;
}
footer #translate {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
}
footer #translate > a {
  font-size: 0.8rem;
  color: rgba(126, 126, 126, 0.8078431373);
}
footer #translate .googlelogo {
  aspect-ratio: 800/264;
  width: auto;
  height: 1rem;
  max-height: 30px;
  margin-bottom: -5px;
}
footer .copyright {
  font-size: 0.75rem;
  color: #666666;
  padding: 0;
  margin-bottom: 0;
  text-align: center;
}
@media screen and (max-width: 600px) {
  footer .copyright {
    font-size: 10px;
  }
}
footer .link {
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2vw;
}
footer .link a {
  color: var(--green);
}

/*text*/
h1, h2 {
  font-family: "ab-kokoro-no1", "Kiwi Maru", serif;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.3em;
  margin-bottom: 0;
  overflow-wrap: break-word;
  word-break: auto-phrase;
  text-spacing-trim: space-all;
}

h1 {
  font-size: 35px;
}
@media screen and (max-width: 600px) {
  h1 {
    font-size: 24px;
  }
}

h2 {
  font-size: 28px;
}
@media screen and (max-width: 600px) {
  h2 {
    font-size: 22px;
  }
}

h3 {
  font-size: 23px;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.15em;
  margin-bottom: 0;
  overflow-wrap: break-word;
  margin-bottom: 1rem;
  word-break: auto-phrase;
  text-spacing-trim: space-all;
}
@media screen and (max-width: 600px) {
  h3 {
    font-size: 20px;
  }
}

.wrapper h2 {
  color: var(--blue);
  margin-bottom: 2rem;
  padding-left: 2rem;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  line-height: 1.35;
  padding-top: 0.75rem;
}
@media screen and (max-width: 600px) {
  .wrapper h2 {
    padding-left: 1rem;
    letter-spacing: 0.1em;
  }
}
.wrapper h2:nth-child(odd) {
  background-image: url("/assets/images/back_btn2.png");
}
.wrapper h2:nth-child(even) {
  background-image: url("/assets/images/back_btn1.png");
}
@media screen and (min-width: 601px) {
  .wrapper .inner {
    margin-left: 3rem;
  }
}

main > section:nth-child(even) .wrapper h2 {
  background-image: url("/assets/images/back_btn2.png");
}
main > section:nth-child(odd) .wrapper h2 {
  background-image: url("/assets/images/back_btn1.png");
}
main > section:last-child {
  margin-bottom: 5vw;
}

.selectlist {
  padding-top: 5vw;
  padding-bottom: 5vw;
}
.selectlist .wrapper {
  width: min(100%, 1038px);
  margin-left: auto;
  margin-right: auto;
}
.selectlist .wrapper h2 {
  color: var(--pink);
  text-shadow: 2px 6px 3px rgba(215, 215, 215, 0.5);
  margin-bottom: 2rem;
  text-align: center;
  background-image: none !important;
}
@media screen and (max-width: 980px) {
  .selectlist .wrapper h2 {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
.selectlist .wrapper .chooselist {
  width: min(100%, 980px);
  margin: 5vw auto 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  justify-content: center;
}
@media screen and (max-width: 600px) {
  .selectlist .wrapper .chooselist {
    grid-template-columns: 1fr;
    place-items: center;
    justify-items: center;
    align-items: center;
  }
}
.selectlist .wrapper .chooselist .item {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 1rem 0.75rem;
  background-repeat: no-repeat;
  background-size: 100% 90%;
  margin-bottom: 2rem;
  background-position: center center;
  position: relative;
  min-height: 150px;
}
.selectlist .wrapper .chooselist .item h3 {
  font-weight: 300;
  color: #ffffff;
  text-shadow: 2px 6px 3px rgba(215, 215, 215, 0.5);
  font-size: clamp(1.125rem, 1.034rem + 0.15vw, 1.275rem);
  line-height: 1.5;
  font-size: 16px;
}
.selectlist .wrapper .chooselist .item a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.selectlist .wrapper .chooselist .item a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.selectlist .wrapper .chooselist .item:nth-child(1) {
  background-image: url("/assets/images/btn_1.png");
}
.selectlist .wrapper .chooselist .item:nth-child(2) {
  background-image: url("/assets/images/btn_2.png");
}
.selectlist .wrapper .chooselist .item:nth-child(3) {
  background-image: url("/assets/images/btn_3.png");
}
.selectlist .wrapper .chooselist .item:nth-child(4) {
  background-image: url("/assets/images/btn_4.png");
}
.selectlist .wrapper .chooselist .item:nth-child(5) {
  background-image: url("/assets/images/btn_5.png");
}
.selectlist .wrapper .chooselist .item:nth-child(6) {
  background-image: url("/assets/images/btn_6.png");
}
.selectlist .wrapper .chooselist .item:nth-child(7) {
  background-image: url("/assets/images/btn_1.png");
}
.selectlist .wrapper .chooselist .item:nth-child(8) {
  background-image: url("/assets/images/btn_2.png");
}
.selectlist .wrapper .chooselist .item:nth-child(9) {
  background-image: url("/assets/images/btn_3.png");
}
.selectlist .wrapper .chooselist .item:nth-child(10) {
  background-image: url("/assets/images/btn_4.png");
}
.selectlist .wrapper .chooselist .item:nth-child(11) {
  background-image: url("/assets/images/btn_5.png");
}
.selectlist .wrapper .chooselist .item:nth-child(12) {
  background-image: url("/assets/images/btn_6.png");
}
.selectlist .wrapper .chooselist .item:nth-child(6n+1) {
  background-image: url("/assets/images/btn_1.png");
}
.selectlist .wrapper .chooselist .item:nth-child(6n+2) {
  background-image: url("/assets/images/btn_2.png");
}
.selectlist .wrapper .chooselist .item:nth-child(6n+3) {
  background-image: url("/assets/images/btn_3.png");
}
.selectlist .wrapper .chooselist .item:nth-child(6n+4) {
  background-image: url("/assets/images/btn_4.png");
}
.selectlist .wrapper .chooselist .item:nth-child(6n+5) {
  background-image: url("/assets/images/btn_5.png");
}
.selectlist .wrapper .chooselist .item:nth-child(6n+6) {
  background-image: url("/assets/images/btn_6.png");
}

.catchcopy {
  width: min(100vw - 10%, 1380px);
  margin-left: auto;
  margin-right: auto;
}
.catchcopy h1 {
  width: min(100%, 1200px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  color: var(--pink);
  line-height: 1.3;
  margin-bottom: 7vw;
}

/*for contenttype*/
.linklist ul {
  padding-left: 0;
  margin-left: 0;
  border: dotted 2px var(--pink);
  background-image: url("/assets/images/back_bird_gradation1.png");
  background-repeat: repeat-y;
  background-position: center top;
  background-size: cover;
}
.linklist ul li a {
  color: var(--light-blue);
  border-bottom: solid 1ps var(--light-blue);
}
.linklist ul li:before {
  content: "";
  background-image: url("/assets/images/icon-akar-link-out.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.5rem;
  height: 1.5rem;
}

.linkcontent {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  justify-content: center;
  margin: 0 auto;
  /*has image*/
  /*not has image*/
}
@media screen and (max-width: 600px) {
  .linkcontent {
    grid-template-columns: 1fr;
  }
}
.linkcontent h3 {
  font-size: 1.25rem;
  color: #82A848;
}
.linkcontent p {
  color: #7c7c7c;
}
.linkcontent .btn {
  border-radius: 3rem;
  padding: 0.5rem 1rem;
  color: #ffffff;
  display: flex;
  margin: 10px auto;
  align-items: center;
  justify-content: center;
  min-width: 200px;
}
.linkcontent a.linkbox {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
}
.linkcontent a.linkbox:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.linkcontent .link-items-image {
  border: solid 1px #EEEEEE;
  background-color: #e4ebee;
  padding: 1.5rem 1rem;
  border-radius: 10px;
  display: flex;
  position: relative;
}
@media screen and (max-width: 600px) {
  .linkcontent .link-items-image {
    flex-direction: column;
  }
}
.linkcontent .link-items-image .btn {
  background-color: var(--beige);
}
.linkcontent .link-items-image img {
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 601px) {
  .linkcontent .link-items-image img {
    order: 2;
  }
}
.linkcontent .link-items-image .item-text {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
@media screen and (min-width: 601px) {
  .linkcontent .link-items-image .item-text {
    order: 1;
  }
}
.linkcontent .link-items {
  border: solid 1px #eeeeee;
  background-color: #FFFFF1;
  padding: 1rem;
  border-radius: 10px;
  position: relative;
  width: 100%;
}
.linkcontent .link-items .btn {
  background-color: var(--lime-green);
  width: -moz-fit-content;
  width: fit-content;
}

.voicelist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
  justify-content: center;
}
@media screen and (max-width: 600px) {
  .voicelist {
    grid-template-columns: 1fr;
  }
}
.voicelist .item-voice {
  background-repeat: no-repeat;
  background-size: contain;
  background-color: rgba(224, 216, 223, 0.4901960784);
  border: double 5px var(--pink);
  border-radius: 10px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 3rem;
}
.voicelist .item-voice .author {
  text-align: right;
  color: var(--blue);
  margin-left: auto;
}
.voicelist .item-voice .inner {
  margin-left: 0;
}
.voicelist .item-voice::after {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100px;
  height: 150px;
  position: absolute;
}
.voicelist .item-voice:nth-child(odd)::after {
  top: 70%;
  left: -5%;
}
.voicelist .item-voice:nth-child(even)::after {
  top: 70%;
  right: -5%;
}
.voicelist .item-voice:nth-child(1)::after {
  background-image: url("/assets/images/voice/voice1.svg");
}
.voicelist .item-voice:nth-child(2)::after {
  background-image: url("/assets/images/voice/voice2.svg");
}
.voicelist .item-voice:nth-child(3)::after {
  background-image: url("/assets/images/voice/voice3.svg");
}
.voicelist .item-voice:nth-child(4)::after {
  background-image: url("/assets/images/voice/voice4.svg");
}
.voicelist .item-voice:nth-child(4n+1)::after {
  background-image: url("/assets/images/voice/voice1.svg");
}
.voicelist .item-voice:nth-child(4n+2)::after {
  background-image: url("/assets/images/voice/voice2.svg");
}
.voicelist .item-voice:nth-child(4n+3)::after {
  background-image: url("/assets/images/voice/voice3.svg");
}
.voicelist .item-voice:nth-child(4n+4)::after {
  background-image: url("/assets/images/voice/voice4.svg");
}

/*for tag*/
blockquote {
  border: solid 1px #006F72;
  padding: 1.5rem;
  background-color: #F5F6F6;
  margin: 0;
  width: 100%;
  font-family: "Kiwi Maru", serif;
  font-weight: 300;
  font-style: normal;
  overflow-wrap: break-word;
}

.bk-btt {
  background-image: url("/assets/images/btn_3.png") !important;
  background-repeat: no-repeat;
  background-size: 100% auto !important;
  background-position: center center !important;
  color: #ffffff !important;
  padding: 1rem;
  text-align: center;
}

.btn-area {
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn-area a {
  background-image: url("/assets/images/btn_5.png");
  background-size: cover;
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-self: center;
  padding: 1.5rem 5rem;
  min-height: 120px;
  background-position: center center;
  color: #ffffff;
  background-repeat: no-repeat;
}
@media screen and (max-width: 600px) {
  .btn-area a {
    padding: 1rem 3rem;
  }
}

.readmore {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3vw auto;
}
.readmore a {
  width: 100%;
  min-width: 350px;
  background-color: var(--pink);
  border-radius: 3rem;
  text-align: center;
  color: #ffffff;
  padding: 1rem 2rem;
}
.readmore a:hover {
  background-color: var(--light-green);
}

iframe {
  width: 100%;
  height: auto;
  max-width: 90vw;
}

/*for about page*/
.page-about .inner, .page-about .wrapper {
  background-color: #ffffff;
  padding: 3rem;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}
@media screen and (max-width: 600px) {
  .page-about .inner, .page-about .wrapper {
    padding: 1rem;
  }
}
.page-about .image-area {
  position: relative;
}
.page-about .image-area img {
  max-width: 100%;
  height: auto;
}
.page-about .image-area p {
  text-align: right;
  color: var(--blue);
}
.page-about .image-area::before {
  content: "©小池アミイゴ";
  background-color: rgba(255, 255, 255, 0);
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  top: 50%;
  left: 40%;
  transform: rotate(-25deg);
  color: rgba(255, 255, 255, 0.15);
  font-size: 50px;
  z-index: 1;
}
.page-about .image-area::after {
  content: "";
  background-color: rgba(255, 255, 255, 0);
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 80;
}
.page-about .illustrator {
  background-color: #ebe7ca;
  padding: max(30px, 3vw);
  color: #948503;
  width: 100%;
  margin: 3vw auto 0 auto;
}
.page-about .siteowner {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
.page-about .siteowner p:last-child {
  font-size: 20px;
  font-weight: bold;
  text-align: right;
}
.page-about .row {
  display: flex;
  justify-content: space-between;
}
.page-about .row .box {
  width: 70%;
}
.page-about .row .img-box {
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .page-about .row {
    flex-direction: column;
  }
  .page-about .row .box {
    width: 100%;
  }
}

/* テーブルのリセット */
table {
  /* ボーダーの折り畳み */
  border-collapse: collapse;
  /* テーブルの幅を内容に合わせる */
  width: 100%;
  /* テーブルセルの余白をリセット */
  border-spacing: 0;
  /* すべてのテーブルセル（th, td）のリセット */
  /* テーブルヘッダーのスタイル */
  /* 交互の行に背景色を付ける（オプション） */
}
table th, table td {
  /* ボーダーを1pxの実線に */
  border: 1px solid #ddd;
  /* 内部の余白をリセット */
  padding: 8px;
  /* テキストを左寄せ */
  text-align: left;
  /* デフォルトの垂直配置 */
  vertical-align: middle;
}
table th {
  /* ヘッダーの背景色 */
  background-color: #f2f2f2;
  /* フォントの太さ */
  font-weight: bold;
}
table tr:nth-child(even) {
  background-color: #f9f9f9;
}/*# sourceMappingURL=styles.css.map */