@charset "UTF-8";

/* ===================================
Reset
=================================== */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* input textarea reset
==============================　*/
input,
textarea,
select {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  max-width: 100%;
  outline: none;
  outline: 0;
}

select::-ms-expand {
  display: none;
}

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

/* ===================================
Foundation
=================================== */
* {
  box-sizing: border-box;
  line-break: strict;
}

body {
  font-family: "Noto Serif JP", serif;
}

/* メディア
==============================　*/
img {
  display: block;
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

video {
  display: block;
  max-width: 100%;
  height: auto;
  outline: none;
}

iframe {
  height: auto;
  aspect-ratio: 16/9;
  width: 100%;
}

/* ===================================
共通
=================================== */
.bg {
  background-image: url(../img/bg.webp);
  background-size: cover;
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: -1;
  top: 0;
}

.shadow {
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 0 10px 0 #d3d3d3;
}

.main {
  max-width: 500px;
  margin: 0 auto;
  background-color: #fff;
}

a {
  color: inherit;
  text-decoration: none
}

h2 img {
  max-height: 70px;
}

.h2_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  font-feature-settings: 'palt' on;
  font-family: "Noto Serif JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

.h2_wrap_03 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  font-family: "Noto Serif JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 500px) {
  .h2_wrap {
    text-align: left;
  }

  h2 img {
    max-height: 60px;
  }
}

.h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;

  position: relative;
  padding: 0px 4px 14px 4px;
  align-self: stretch;
  border-bottom: 2px solid var(--gray, #cecece);
}

.h3:before {
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 13%;
  height: 2px;
  content: '';
  background: #9F8552;
}

@media screen and (max-width: 350px) {
  .h3 {
    font-size: 22px;
  }
}

.h4 {
  display: flex;
  padding: 0px 8px 2px 12px;
  align-items: center;
  align-self: stretch;
  border-left: 4px solid var(--blue, #BBE2E8);
  color: var(--black, #000);
  font-feature-settings: 'palt' on;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
}

h4 {
  display: flex;
  padding: 0px 8px 2px 12px;
  align-items: center;
  align-self: stretch;
  border-left: 4px solid var(--blue, #BBE2E8);
  color: var(--black, #000);
  font-feature-settings: 'palt' on;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
}

/*共通cta */
.cta {
  padding: 50px 40px;
  background: var(--blue, #BBE2E8);
}

.fv_cta {
  padding-top: 0;
  margin-top: -30px;
}

.cta_inner {
  width: 100%;
  margin-inline: auto;
  gap: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta img {
  max-width: 240px;
}

.btn_wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  transition: 0.3s;
}

.btn-inner {
  display: flex;
  padding: 18px 10px;
  justify-content: center;
  align-items: center;
  gap: 16px;
  align-self: stretch;
  background: var(--gold, #9F8552);
  border-radius: 300px;

  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  transition: 0.3s;
}

.btn-inner:hover {
  background: rgb(188, 168, 129);
}

.cta a img {
  max-width: 367px;
  transition: 0.3s;
}

.cta a img:hover {
  opacity: 0.4;
}

@media screen and (max-width: 500px) {
  .cta a img {
    max-width: 300px;
  }
}

@media screen and (max-width: 400px) {
  .cta {
    padding: 30px 20px;
    background: var(--blue, #BBE2E8);
  }

  .fv_cta {
    padding-top: 0;
    margin-top: -30px;
  }
}

/* ===================================
レスポンシブ用改行
=================================== */
.comment_br {
  display: none;
  /* 445px未満で改行タグを有効に。を無効に変えます */
}

@media screen and (max-width: 445px) {
  .comment_br {
    display: none;
    /* 445px以上では改行タグを無効に。 */
  }
}

/* ===================================
中身
=================================== */
/* ここから固定cta */
.follow-cta {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.03em;

  position: fixed;
  display: flex;
  align-items: flex-start;
  z-index: 10000;
  width: 500px;
  bottom: 0;

  align-items: stretch;
}

.tel-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--gold, #9F8552);
  height: auto;
  width: 54px;
  transition: 0.3s;
  padding: 16px 0px;
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
}

.tel-wrap:hover {
  background: rgb(179, 161, 125);
}

.btn-reserve {
  display: flex;
  width: calc((100% - 54px) / 2);
  padding: 16px 10px;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-left: 1px solid var(--gray, #cecece);
  background: var(--gold, #9F8552);
  transition: 0.3s;
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
}

.btn-reserve:hover {
  background: rgb(179, 161, 125);
}

@media screen and (max-width: 500px) {
  .follow-cta {
    width: 100%;
  }
}

@media screen and (max-width: 412px) {
  .btn-reserve {
    gap: 6px !important;
  }

  .follow-cta {
    font-size: 14px;
  }
}

@media screen and (max-width: 322px) {
  .btn-reserve {
    gap: 8px;
  }
}

.sp_br {
  display: none;
  /* 362px以上では改行タグを無効に。 */
}

@media screen and (max-width: 362px) {
  .sp_br {
    display: block;
    /* 362px未満で改行タグを有効に。 */
  }

  .tel-wrap {
    height: 60px;
    width: 60px;
  }

  .btn-reserve {
    gap: 10px !important;
  }
}



/* ここからヘッダー */
.top-logo {
  max-width: 146px;
  margin: 0 auto;
}

.head {
  padding: 16px 8px 16px 30px;
  border-bottom: 1px solid #cecece;
}

/* ここからFV */
.fv {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4.6vw;
  width: 100%;
}

.h1 {
  width: 55%;
  padding-bottom: 130px;
}

.fv_bg_wrap {
  background: var(--blue, #BBE2E8);
  width: 100%;
}

.fv_img_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 420px;
  margin: 0 auto;
  transform: translateY(-24%);
}

.profile_wrap {
  display: flex;
  padding: 0px 20px 50px 20px;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  background: var(--blue, #BBE2E8);
}

.profile {
  display: flex;
  padding: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
  border: 1px solid #999;
  background: var(--blue, #BBE2E8);
}

.image-and-name {
  display: flex;
  align-items: center;
  gap: 24px;
}

.image-and-name img {
  max-width: 37%;
}

.face-img {
  height: 100px;
}

.profile_txt {
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 500px) {
  .fv {
    padding-top: 14.6vw;
  }

  .fv_img_wrap {
    width: calc(100% - 20px);
  }

  .image-and-name img {
    max-width: 50%;
  }

}

@media screen and (max-width: 400px) {
  .h1 {
    width: 55%;
    padding-bottom: 110px;
  }

  .top-logo {
    max-width: 90px;
  }
}

@media screen and (max-width: 350px) {
  .h1 {
    width: 55%;
    padding-bottom: 100px;
  }

  .image-and-name {
    gap: 16px;
  }
}



/* ここから目次 */
.index {
  display: flex;
  padding: 40px 20px 0px 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  background: #FFF;
  width: 100%;

  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
}

.index ul {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
}

.index li {
  width: 100%;
  transition: 0.3s;
}

.index li:hover {
  opacity: 0.4;
}

.index li a {
  display: flex;
  padding: 16px 0px 16px 10px;
  align-items: center;
  gap: 16px;
  align-self: stretch;
  border-bottom: 1px solid #cecece;
  width: 100%;

  font-family: "Noto Serif JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
}

.index img {
  max-width: 40px;
}

/* ここから01はじめに */
.contents01 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 60px 20px;
}

.txt_wrap_01 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  align-self: stretch;
}

.txt_contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  align-self: stretch;
}

.txt_contents_p {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;

  color: #000;
  text-align: justify;
  font-feature-settings: 'palt' on;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.9;
  /* 30.4px */
  letter-spacing: 0.04em;
}

/* ここから02症例紹介 */
.contents02 {
  display: flex;
  padding: 60px 20px;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  align-self: stretch;
  overflow: hidden;
}

.contents-wrap-02 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 100px;
  align-self: stretch;
}

.list-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  width: 100%;
}

.case_contents {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 80px;
  align-self: stretch;
}

.case_comment img {
  width: 80px;
}

.case_wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 80px;
  align-self: stretch;
}

.case_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  align-self: stretch;
}

.case {
  position: relative;
}

.case picture {
  display: block;
}

.js_slider {
  max-width: 500px;
  overflow: hidden;
  padding-bottom: 25px;
  margin: 0 auto;
}

@media screen and (max-width: 480px) {
  .js_slider {
    width: calc(100% - 20px);
  }
}

@media screen and (max-width: 450px) {
  .js_slider {
    width: calc(100% - 50px);
  }
}

@media screen and (max-width: 420px) {
  .js_slider {
    width: calc(100% - 80px);
  }
}

@media screen and (max-width: 400px) {
  .js_slider {
    width: calc(100% - 100px);
  }
}

@media screen and (max-width: 380px) {
  .js_slider {
    width: calc(100% - 120px);
  }
}

@media screen and (max-width: 365px) {
  .js_slider {
    width: calc(100% - 130px);
  }
}

@media screen and (max-width: 350px) {
  .js_slider {
    width: calc(100% - 150px);
  }
}

@media screen and (max-width: 330px) {
  .js_slider {
    width: calc(100% - 170px);
  }
}

/* ページネーション */
.swiper-pagination-bullet-active {
  background: var(--blue, #BBE2E8);
}

.swiper-pagination {
  bottom: 0 !important;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 8px);
}

/* ページネーション */
.case_txt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  width: 100%;
}

.case_comment {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.bubble {
  display: flex;
  padding: 16px 8px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex: 1 0 0;
  align-self: stretch;
  border-radius: 8px;
  background: var(--blue, #BBE2E8);
  color: #000;

  text-align: justify;
  font-feature-settings: 'palt' on;
  font-family: "Noto Serif JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.6;
  /* 22.4px */
  letter-spacing: 0.04em;

  position: relative;
}

.bubble::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  border-style: solid;
  border-width: 10px 20px 10px 0;
  border-color: transparent transparent transparent;
  translate: -100% -50%;
}

.bubble::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  border-style: solid;
  border-width: 7.8px 10px 7.8px 0;
  border-color: transparent #BBE2E8 transparent transparent;
  translate: -100% -50%;
}

@media screen and (max-width: 445px) {
  .bubble {
    text-align: left;
    text-align: justify;
  }

  .case_comment {
    gap: 13px;
  }
}

.case_list {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.case_li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}

.case_li p {
  font-feature-settings: 'palt' on;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  /* 22.4px */
  letter-spacing: 0.04em;
}

.case_li span {
  font-feature-settings: 'palt' on;
  font-family: "Noto Serif JP";
  font-size: 14px;
}

.case_li ul {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
}

.case_li li {
  display: flex;
  padding: 16px 0px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-bottom: 1px solid var(--gray, #cecece);
}

.case_li li:first-child {
  padding: 0px 0px 16px 0px;
}


/* ここから03当院のこだわり */
.contents03 {
  display: flex;
  padding: 60px 20px;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  align-self: stretch;
}

.mv_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  padding: 0 20px;
}

.link_wrap {
  width: 100%;
}

.contents03 ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  width: 100%;

  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  /* 24px */
  letter-spacing: 0.04em;
}

.contents03 li {
  width: 100%;
  transition: 0.3s;
}

.contents03 li:hover {
  opacity: 0.4;
}

.contents03 li a {
  display: flex;
  padding: 16px 20px 16px 8px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-bottom: 1px solid var(--blue, #BBE2E8);
  width: 100%;
}

/* ここから04ドクター紹介 */
.contents04 {
  display: flex;
  padding: 60px 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  align-self: stretch;
}

.top-04 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  align-self: stretch;
}

.top-04 img {
  padding: 0px 20px;
}

.txt_wrap_04 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  align-self: stretch;
}

.name_04 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.jp {
  display: flex;
  align-items: baseline;
  gap: 15px;
}

.small {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.normal {
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.inner_04 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}

.box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}

.box ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.box li {
  display: flex;
  align-items: center;
  align-self: stretch;
  gap: 24px;
  font-feature-settings: 'palt' on;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 2.0;
  /* 28px */
  letter-spacing: 0.04em;
}

.year {
  white-space: nowrap;
}

@media screen and (max-width: 414px) {
  .box li {
    align-items: normal;
  }
}

@media screen and (max-width: 350px) {
  .mv_wrap {
    gap: 20px;
    padding: 0px;
  }

  .contents03 {
    gap: 30px;
  }
}



.dr_btn {
  display: flex;
  align-items: center;
  gap: 20px;
  align-self: stretch;
}

.dr_btn_ig {
  display: flex;
  height: 42px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
  border: 1px solid var(--black-000000, #000);

  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  /* 14px */
  transition: .6s;
}

.path {
  transition: .6s;
}

.dr_btn_ig:hover {
  background: #000;
  color: #fff !important;
}

.dr_btn_ig:hover .path {
  fill: #fff;
}

@media screen and (max-width: 400px) {
  .dr_btn_ig {
    gap: 6px;

  }

  .dr_btn {
    gap: 8px;
  }
}

@media screen and (max-width: 350px) {
  .dr_btn {
    gap: 8px;
  }

  .dr_btn_ig {
    gap: 4px;
    font-size: 12px;
  }
}

.comment-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  align-self: stretch;
}

.comment-wrap p {
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.9;
  /* 30.4px */
  letter-spacing: 0.04em;
}

.ttl img {
  max-width: 180px;
}

.comment01 {
  display: flex;
  padding: 28px 20px;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  align-self: stretch;
  position: relative;
}

.box-boarder {
  position: absolute;
  width: 72px;
  height: 28px;
  border-top: 1px solid #9F8552;
  border-left: 1px solid #9F8552;
  top: -1px;
  left: -1px;
}

.box-btm {
  position: absolute;
  width: 72px;
  height: 28px;
  border-right: 1px solid #9F8552;
  border-bottom: 1px solid #9F8552;
  right: -1px;
  bottom: -1px;
}

.comment-name {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.comment-line {
  content: "";
  height: 1px;
  background-color: #000;
  width: 90px;
}

.comment02 {
  display: flex;
  padding: 28px 20px;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
}

.comment02 img {
  max-width: 120px;
}

.comment02_inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}

@media screen and (max-width: 425px) {
  .comment02_inner {
    flex-direction: column;
  }
}

@media screen and (max-width: 375px) {
  .comment01 {
    padding: 16px 16px;
  }

  .comment02 {
    padding: 16px 16px;
  }
}




/* ここから05クリニック紹介 */
.contents05 {
  display: flex;
  padding: 60px 20px;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  align-self: stretch;
}

.contents-wrap-05 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  align-self: stretch;
}

.contents-wrap-05 video {
  margin: 0 -20px;
  width: calc(100% + 40px);
  display: block;
  max-width: none;
}

.info {
  display: flex;
  padding: 0px 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  align-self: stretch;

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.9;
  /* 30.4px */
  letter-spacing: 0.04em;
}

.info img {
  margin: 0 auto;
  max-width: 360px;
  margin-inline: auto;
}

.dd {
  display: flex;
  padding: 10px 30px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  background: #F3F3F3;
}

.dd_wrap {
  display: flex;
  max-width: 330px;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  row-gap: 2px;
  flex-wrap: wrap;
}

.contents-wrap-05 a {
  color: #000;
  font-size: 14px;
  max-width: 320px;
  width: 100%;
  height: 40px;
  border: solid 1px #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: serif;
  position: relative;
  transition: .6s;
}

.contents-wrap-05 a:hover {
  background: #000;
  color: #fff;
}

.contents-wrap-05 a:hover:after {
  background: #fff;
  right: 14px;
}

.contents-wrap-05 a::after {
  content: '';
  width: 10px;
  height: 1px;
  background: #000;
  margin-left: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  transition: .3s;
}

@media screen and (max-width: 460px) {
  .dd_wrap {
    flex-direction: column;
  }

  .info img {
    width: 100%;
  }
}


/* ここから footer */
footer {
  display: flex;
  padding: 12px 8px 67px 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  color: #FFF;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  /* 13px */
  letter-spacing: 0.1em;
  background: var(--black, #000);
  width: 100%;
}