@charset "utf-8";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  /* max-width: 1440px; */
  margin: 0 auto;
  /* width: 100%; */
  height: auto;
  font-family:"YakuHanJP_Narrow", "Zen Kaku Gothic New", sans-serif;
  background-color: #E1FBF8;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%; /* iOS Safariでの文字自動拡大を防ぐ */
}
:target {
  scroll-margin-top: -100px; /* ここでずらす量を調整 */
}

.header {
  width: 100%;
  height: 50px;
  position: fixed; /* スクロールしても固定 */
  top: 0;
  left: 50%;
  z-index: 999;
  /* background-color: rgb(211, 211, 211, 0.8); */
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
  max-width: 1440px;
  transform: translateX(-50%);
}
/* ナビ */
.header__nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #f4eda7;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  z-index: 998;
}

.header__nav.is-active {
  transform: translateX(0);
}
/* ナビ本体 */
.header__nav {
  position: static;
  width: auto;
  height: auto;
  transform: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background-color: inherit;
}

/* ナビリスト */
.nav__list {
  position: static;
  top: auto;
  left: auto;
  transform: none;
  display: flex;
}

/* liとリンク */
.nav__item {
  margin-bottom: 0;
}

.nav__link {
  text-decoration: none;
  color: black;
}
.nav__link:hover {
  text-decoration: none;
  color: #0077cc;
}

/* ハンバーガーメニュー */
.nav_toggle{
  display: none;
}
.header_menu_sp{
  display: none;
  opacity: 0;
}


.menu {
    margin-left: 50%;
}
.menu-list {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
li {
  list-style: none;
  font-size: 16px;
  font-family: 'Kaisei Decol', serif;
  margin: 0 10px;
}
li a:hover {
  color: #0077cc;
}
.menu-item:not(:last-child)::after {
  content: "／";
  margin-left: 10px;
  color: #000;
}

/* section {
  scroll-margin-bottom: 100px;
}
 */
.top {
    /* background-image: url(../img/Top.png); */
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
}

.topimg {
    position: relative;
    width: 100%;
}
.topword {
  max-width: 1440px;
  width: 100%;
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  text-align: center;
}
/* .title {
  margin-left: 10%;
  font-family: Knewave;
  font-size: clamp(40px, calc(60px / 1440px * 100vw), 60px);
  text-align: left;
  margin-top: 0%;
} */

/*  */
.title_animate {
  margin-left: 10%;
  font-family: Knewave;
  /* font-size: clamp(40px, calc(60px / 1440px * 100vw), 60px); */
  font-size: clamp(32px, 11vw, 60px); /* 実機でも適正なサイズに */
  text-align: left;
  letter-spacing: -0.15em;
}
.title_animate span {
	display: inline-block;
  /* font-family: 'Knewave', 'sans-serif';			 */
  color: black;
	opacity: 0;
	transform: translate(-300px, 0) scale(0);
	animation: sideSlide 2s forwards;

}

.title_animate span:nth-of-type(2) {
	animation-delay: .05s;
}
.title_animate span:nth-of-type(3) {
	animation-delay: .1s;
}
.title_animate span:nth-of-type(4) {
	animation-delay: .15s;
}
.title_animate span:nth-of-type(5) {
	animation-delay: .2s;
}
.title_animate span:nth-of-type(6) {
	animation-delay: .25s;
}
.title_animate span:nth-of-type(7) {
	animation-delay: .3s;
}
.title_animate span:nth-of-type(8) {
	animation-delay: .35s;
}
.title_animate span:nth-of-type(9) {
	animation-delay: .4s;
}
.title_animate span:nth-of-type(10) {
	animation-delay: .45s;
}
.title_animate span:nth-of-type(11) {
	animation-delay: .5s;
}
.title_animate span:nth-of-type(12) {
	animation-delay: .55s;
}
.title_animate span:nth-of-type(13) {
	animation-delay: .6s;
}
.title_animate span:nth-of-type(14) {
	animation-delay: .65s;
}
.title_animate span:nth-of-type(15) {
	animation-delay: .7s;
}
.title_animate span:nth-of-type(16) {
	animation-delay: .75s;
}
.title_animate span:nth-of-type(17) {
	animation-delay: .8s;
}
.title_animate span:nth-of-type(18) {
	animation-delay: .85s;
}
.title_animate span:nth-of-type(19) {
	animation-delay: .9s;
}
.title_animate span:nth-of-type(20) {
	animation-delay: .95s;
}

@keyframes sideSlide {
	60% {
		transform: translate(20px, 0) scale(1);
		color: black;
	}

	80% {
		transform: translate(20px, 0) scale(1);
		color: black;
	}

	99% {
		transform: translate(0) scale(1.2);
		color: #00f0ff;
	}

	100% {
		transform: translate(0) scale(1);
		opacity: 1;
		color: black;
	}
}
/*  */
.subtitle {
  /* width: 25%; */
  margin-top: 5%;
  margin-left: 10%;
  font-family: Knewave;
  text-align: left;
  font-size: clamp(16px, calc(38px / 1440px * 100vw), 38px);
}
.catchphrase {
  width: 26%;
  margin-top: 9%;
  margin-left: 8%;
  font-size: clamp(16px, calc(36px / 1440px * 100vw), 36px);
  text-align: right;
  font-family: 'Kaisei Decol';
  transform: rotate(-11deg);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.scroll-down {
  position: absolute;
  right: 0px;
  transform: translateX(-50%);
  text-align: center;
  font-family: 'Kaisei Decol', serif;
  color: #000;
  font-size: 16px;
  text-decoration: none;
}
.wavy-text {
  bottom: 10%;
}
.wavy-text span {
  position: relative;
  display: inline-block;
  animation: wave 2s infinite;
  animation-delay: calc(0.1s * var(--i));
}

.wavy-text_arrow {
  position: absolute;
  top: 30px;
  left: 50%;
  width: 10px;
  height: 10px;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: translate(-50%, -50%) rotate(-45deg);
  animation: float 2s infinite;
}

@keyframes wave {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(-20%) rotate(-45deg);
  }
  50% {
    transform: translateY(20%) rotate(-45deg);
  }
}
.maincontents {
  display: flex;
  flex-direction: column;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
  padding-top: 0;
}

.Aboutme {
  width: 100%;
  text-align: center;
}

.subheading {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 140px auto 100px;
  gap: 1%;
}
.subheading-line {
  content: "";
  top: 50%;
  left: 0%;
  border: solid 1px #000;
  width: 16%;
  height: 0px;
}
.subheading-name {
  font-family: Knewave;
  /* font-size: clamp(30px, calc(50px / 1440px * 100vw), 50px); */
  font-size: 50px;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: .10em solid lightblue;
}

/* カーソル点滅 */
@keyframes blink-caret {
  0%, 100% { border-color: lightblue; }
  50% { border-color: transparent; }
}

/* animateクラスがついたときだけ動く */
.subheading-name1.animate {
  animation: typing-about 1s steps(8, end), blink-caret .7s step-end infinite;
}
.subheading-name2.animate {
  animation: typing-skills 1s steps(6, end), blink-caret .7s step-end infinite;
}
.subheading-name3.animate {
  animation: typing-works 1s steps(5, end), blink-caret .7s step-end infinite;
}
.subheading-name4.animate {
  animation: typing-blog 1s steps(4, end), blink-caret .7s step-end infinite;
}
.subheading-name5.animate {
  animation: typing-contact 1s steps(7, end), blink-caret .7s step-end infinite;
}

/* 各アニメーション定義 */
@keyframes typing-about   { from { width: 0 } to { width: 8ch } }
@keyframes typing-skills  { from { width: 0 } to { width: 6ch } }
@keyframes typing-works   { from { width: 0 } to { width: 5ch } }
@keyframes typing-blog    { from { width: 0 } to { width: 4ch } }
@keyframes typing-contact { from { width: 0 } to { width: 7ch } }


.subheading-- {
  /* font-size: 5px; */
  margin-left: 3%;
}

.profile {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 5%;
  margin: 0 10%;
  align-items: center;
}
.profile > div > img {
  width: 300px;
}
.profilecomment {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 5%;
  width: 50%;
  padding: 0 1%;
}
.profilecomment > h3 {
  font-size: 30px;
  font-family: 'Kaisei Decol', serif;
  margin-bottom: 3%;
}
.profilecomment > div > p {
  font-size: 18px;
}

.button {
  display: block;
  width: 200px;
  margin: 5% auto 0;
  padding: 5px 0;
  font-size: 20px;
  font-weight: bold;
  color: black;
  text-align: center;
  text-decoration: none;
  background-color: #f7c8d0;
  border: solid 2px black;
  border-radius: 20px;
  box-shadow: 15px 15px lightgrey;
  cursor: pointer;
  font-family: 'Kaisei Decol', serif;
}
.button:hover {
  color: #f7c8d0;
  background-color: black;
}

.Skills {
  display: flex;
  justify-content: space-between;
  /* padding: 0px 5% 5%; */
  margin: 0 10%;
}
.Skills > div {
  width: 30%;
  /* display: flex; */
  background-color: white;
  border-radius: 20px;
  box-shadow: 30px 30px lightblue;
  flex-direction: column;
}
.Skills > div > h3 {
  font-size: 29px;
  text-align: center;
  margin: 20px 0 10px;
  font-family: 'Kaisei Decol', serif;
}
.Skills > div > img {
  width: 36%;
  height: 127px;
  object-fit: contain;
  margin: 0 auto;
  display: flex;
  /* justify-content: center; */
  /* text-align: center; */
  /* padding: 0 1%; */
}
.Skills > div > p {
  font-size: clamp(12px, calc(18px / 1440px * 100vw), 18px);
  padding: 0 20px 20px;
}

.Works {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* gap: 10px; */
  /* padding: 0 10%; */
  margin: 0 10%;
}
.Works > div {
  width: 28%;
}
.Works > div > img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 30px 30px lightblue;
  background-color: white;
  padding: 30%;
  margin-bottom: 6%;
  height: auto;
}
.Works > div > p {
  font-size: 20px;
  text-align: center;
  margin: 10px 0 10px 10px;
}
.Works > object {
  width: 100%;
}
.Works > object > p {
  margin: 3% auto 5%;
  font-family: 'Kaisei Decol', serif;
}
.Works > object > p:hover {
  width: 200px;
  margin: 3% auto 5%;
}
.blog {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 1% 10%;
}
.blog_space > div {
  margin: 15px;
}
.annotation {
  margin-top: 100px;
  text-align: center;
  margin-bottom: 2%;
  font-size: 14px;
}
.blog > div {
  width: 28%;
}
.blog > div > img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 30px 30px lightblue;
  background-color: white;
  padding: 20%;
  margin-bottom: 6%;
  height: auto;
}
.blog > div > p {
  font-size: 24px;
  text-align: center;
  margin: 10px 0 10px 10px;
}
.blog > object {
  width: 30%;
}
.blog > object > p {
  width: 200px;
}
.blog > object > p:hover {
  width: 200px;
}
.button_a_tag {
  display: inline-block; /* 追加 */
  text-decoration: none;
  color: black;
  text-align: center;
  font-weight: bold;
  background-color: lightblue;
  border: solid 2px black;
  border-radius: 20px;
  padding: 5px 0;
}

.button_a_tag:hover {
  color: lightblue;
  background-color: black;
}

.contact-form {
  max-width: 300px;
  margin: 0 auto;
  text-align: left;
  font-family: auto;
}
.form-group {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.form-group label {
  width: 300px;
  font-size: 20px;
  text-align: end;
  /* margin-right: 5%; */
}
.form-group > input,
.form-group > select,
.form-group > textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #888;
  border-radius: 2px;
  font-size: 20px;
  height: 40px;
  }
.form-group > select > option {
  font-size: 14px;
}
.form-group > textarea {
  height: 200px;
}
.form-submit {
  text-align: center;
  margin-top: 20px;
}

.form-submit button {
  font-size: 20px;
  width: 150px;
  color: black;
  font-weight: bold;
  background-color: #f7c8d0;
  border: solid 2px black;
  border-radius: 20px;
  text-align: center;
  padding: 5px 0px;
  margin: 50px auto;
  cursor: pointer;
  box-shadow: 15px 15px lightgrey;
  font-family: serif;
}
.form-submit button:hover {
  font-size: 20px;
  width: 150px;
  color: #f5aeb9;
  font-weight: bold;
  background-color: black;
  border:solid 2px black;
  border-radius: 20px;
  text-align: center;
  padding: 5px 0px;
  margin: 50px auto;
}

footer {
  /* width: 100%; */
  display: flex;
  justify-content: space-around;
  text-align: center;
  padding: 20px 0;
  background-color: lightgrey;
  margin-top: 50px;
}

footer > ul {
  display: inline-flex;
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
}

footer > ul > li {
  margin: 0 10px;
  position: relative;
}

footer > ul > li:not(:last-child)::after {
  content: "／";
  margin-left: 10px;
  color: #000;
}

footer a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

footer a:hover {
  color: #0077cc;
}

/* 
.menu {
  display: flex;
} */

.wave-clip img {
  width: 100%;
  height: auto;
  -webkit-clip-path: url(#waveClip);
  clip-path: url(#waveClip);
}

.top_button {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 4%;
    cursor: pointer;
    width: 5%;
    height: 4%;
    font-size: 13px;
    font-weight: bold;
    text-align: center;
    border: solid 1px #888888cc;
    background-color: #f5aeb9;
    color: black;
    text-decoration: none;
    border-radius: 50%;
    z-index: 1;
}

.top_button:hover {
  color: #f5aeb9;
  background-color: black;
}

@media screen and (max-width: 768px) {
  .top {
    aspect-ratio: 3 / 2;
  }
  li {
    font-size: 14px;
  }
  .header__nav {
    display: none
  }

    /* ハンバーガーメニュー */
  .nav_toggle{
    display: block;
    position: fixed;
    width: 1.75rem;
    height: 1.5rem;
    z-index: 1000;
    left: 90%;
  }
  .nav_toggle i {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #f7c8d0;
    position: absolute;
    transition: transform .5s, opacity .5s;
  }
  .nav_toggle i:nth-child(1) {
    top: 0;
  }
  .nav_toggle i:nth-child(2) {
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .nav_toggle i:nth-child(3) {
    bottom: 0;
  }
  .nav_toggle.show i:nth-child(1) {
    transform: translateY(10px) rotate(-45deg);
  }
  .nav_toggle.show i:nth-child(2) {
    opacity: 0;
  }
  .nav_toggle.show i:nth-child(3) {
    transform: translateY(-12px) rotate(45deg);
  }
  .header_menu_sp {
    position: fixed;
    top: 3rem;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s, visibility .5s;
    z-index: 99;
  }
  .header_menu_sp.show {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  .header_menu_sp ul{
    display: block;
    margin-top: 0;
  }
  .header_menu_sp li {
    padding: 10px;
    margin: 0px 0px 0px 70%;
    background-color: #add8e6cc;
    text-align: center;
    border: solid 1px #555;
  }
  .header_menu_sp li a {
    text-decoration: none;
  }
  .title_animate {
    margin-top: -4%;
    font-size: 40px;
  }
  .catchphrase {
    margin-top: clamp(5%, calc(11% / 768px * 100vw), 11%);
    font-size: clamp(10px, calc(19px / 768px * 100vw), 19px);
    text-decoration: underline;
  }

  .subheading {
  margin: 100px auto 50px;
  }
  .subheading img {
    height: 35px;
      }
  .subheading-line {
      content: "";
      top: 50%;
      left: 0%;
      border: solid 1px #000;
      width: 16%;
      height: 0px;
  }
  .subheading-- {
      font-size: 30px;
      margin-left: 3%;
  }
  .subheading-name {
    font-size: 35px;
  }
  .scroll-down {
    margin-bottom: 10%;
    font-size: 12px;
  }
  .wavy-text_arrow {
    width: 8px;
    height: 8px;
  }
  .profile {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .profile > div > img {
      width: 230px;
  }
  .profilecomment {
    width: 90%;
  }
  .profilecomment > h3 {
    font-size: 25px;
    margin-bottom: 2%;
  }
  .profilecomment > div > p {
    font-size: 15px;
  }
  /* .Skills {
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    align-items: center;
    gap: 100px;
  }
  .Skills > div {
    width: 80%;
  }
  .Skills > div > h3 {
    font-size: 30px;
  }
  .Skills > div > img {
    height: 200px;
  }
  .Skills > div > p {
    font-size: 16px;
    padding: 0 6% 3% 6%;
  } */
  .Skills {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;
  }
  .Skills > div {
    width: 80%;
    margin: 0 auto; /* 全体を中央寄せ */
  }
  .slick-initialized .slick-slide > h3 {
    font-size: 24px;
    font-family: 'Kaisei Decol', serif;
    margin: 1%;
    text-align: center;
  }
  .slick-initialized .slick-slide > p {
    font-size: 13px;
    text-align: left;
    padding: 5%;
  }
  .slick-slide img {
    height: 150px;
    margin: 0 auto; /* 画像も中央に */
    display: block; /* 中央寄せを確実にする */
  }

  .Works {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .Works > div {
  width: 80%;
  }
  .works > div > img {
    height: 100px;
  }
  .Works > div > p {
    font-size: 16px;
    margin: 0px 0 20px 10px;
  }
  .Works > object {
    width: 100%;
  }
  .Works > object > p {
    margin-top: 0%;
    width: 150px;
  }
  .Works > object > p:hover {
    margin-top: 0%;
    width: 150px;
  }
  .blog {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .blog > div {
  width: 80%;
  }
  /* .blog > div > img {
    height: 100px;
  } */
  .blog > div > p {
    font-size: 16px;
    margin: 0px 0 20px 10px;
  }
  .blog > object {
    width: 100%;
  }
  .blog > object > p {
    margin-top: 0%;
  }
  .blog > object > p:hover {
    margin-top: 0%;
  }
  .button {
  margin-bottom: 40px;
  width: 150px;
  box-shadow: 15px 15px lightgrey;
  font-size: 16px;
  }
  .button:hover {
  margin-bottom: 40px;
  width: 150px;
  box-shadow: 15px 15px lightgrey;
  font-size: 16px;
  }
  /* .contact-form {
    margin: 0 5%;
  } */
  .form-submit button {
    font-size: 16px;
    width: 150px;
    margin: 20px auto 30px
  }
  .form-submit button:hover {
    font-size: 16px;
    width: 150px;
    margin: 20px auto 30px
  }
  .form-group > label {
    font-size: 15px;
  }
  .form-group > input, .form-group > select, .form-group > textarea {
    height: 35px;
    font-size: 15px;
    background-color: #fff;
  }
  footer {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

}

@media screen and (max-width: 426px) {
  /* .nav__list {
    gap: 10px;
  } */
  .top {
    background-image: url(../img/Top_sp.png);
    width: 450px;
    display: flex;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    aspect-ratio: 9 / 16;
    position: relative;
  }
  .topword {
    align-items: center;
  }
  .title_animate {
    /* font-size: clamp(40px, calc(50px / 426px * 100vw), 50px); */
    margin-left: -3%;
  }
  .scroll-down {
    font-size: 9px;
    margin-bottom: 35px;
  }
  .wavy-text {
    font-size: 8px;
    bottom: 0%;
    color: white;
  }
  .wavy-text_arrow {
    border-left: 1px solid white;
    border-bottom: 1px solid white;
  }
  /* .title {
    width: 50%;
    margin-left: 0%;
  } */
  .subtitle {
    width: 50%;
    margin-top: 3%;
    margin-left: 0%;
    font-size: clamp(15px, calc(20px / 426px * 100vw), 20px);
  }
  .catchphrase {
    width: 50%;
    margin-top: 16%;
    margin-right: 67%;
    font-size: clamp(13px, calc(16px / 426px * 100vw), 16px);
    text-decoration: underline;
  }
  .subheading img {
    height: 20px;
  }
  .subheading-- {
    font-size: 19px;
  }
  .subheading-name {
    font-size: 25px;
  }

  .profile > div > img {
    width: 160px;
  }
  .profilecomment {
    width: 80%;
  }
  .profilecomment > h3 {
    font-size: 20px;
    margin-bottom: 2%;
  }
  .profilecomment > div > p {
      font-size: 12px;
  }
  .Skills > div > h3 {
    font-size: 22px;
  }
  .Skills > div > p {
    font-size: 12px;
    padding: 0 6% 3%;
  }
  .Works > div > p {
    font-size: 16px;
    margin: 10px 0 20px 10px;
  }
  .Works > object > p {
    width: 150px;
    margin-top: 10%;
    font-size: 14px;
  }
  .Works > object > p:hover {
    width: 150px;
    margin-top: 10%;
    font-size: 14px;
  }
  .button {
    margin-bottom: 40px;
    width: 150px;
    box-shadow: 10px 10px lightgrey;
    font-size: 16px;
  }
  .button:hover {
    margin-bottom: 40px;
    width: 150px;
    box-shadow: 10px 10px lightgrey;
    font-size: 16px;
  }
  .annotation {
    font-size: 11px;
  }
  .contact-form {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  /* .form-group {
    flex-direction: column;
  } */
  .form-group > label {
    font-size: 14px;
    text-align: justify;
  }
  .form-group > input, .form-group > select, .form-group > textarea {
    background-color: #fff;
    height: 30px;
    font-size: 10px;
    width: 90%;
  }
  .form-group > textarea {
    height: 100px;
  }
  .form-submit button {
    width: 150px;
    font-size: 14px;
    margin: 0 auto 10px;
  }
  .form-submit button:hover {
    width: 150px;
    font-size: 14px;
    margin: 0 auto 10px;
  }
  footer a {
    font-size: 12px;
  }
  footer > ul > li:not(:last-child)::after {
    font-size: 10px;
  }
  small {
    font-size: 10px;
  }
  .wavy-text_arrow {
    top: 10px;
  }
  footer > ul > li {
    margin: 0px 0px;
  }
  footer > ul > li:not(:last-child)::after {
    margin-left: 1px;
  }
  .wave-clip {
      display: none;
  }
}

/* blog_archive.php */
.blog_contents > div {
  display: flex;
  padding: 10px 0 100px;
}
.blog_contents > div > div {
  width: 50%;
}

/* blog.php */
.blog__content {
  margin: 0 10%;
}
.blog__content > img {
    width: 40%;
    margin: 0 30%;
}
.blog__content > p {
  text-align: center;
}

/* 375 */
/* button文字ではなくボタンで動作するように改修 */

.pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  padding-top: 20px;
}
.pager li {
  margin: 0 10px;
}
.pager li a {
  display: block;
  padding: 9px 14px;
  background: #F9EDE1;
  border-radius: 5px;
  color: #200000;
}
.pager .current a {
  background: #f7c8d0;
  color: #200000;
}
.pager .current a:hover {
  opacity: 1;
  cursor: default;
}