@charset "UTF-8";
/* index_pc.css Document */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@800&display=swap');

.heading-common {
  display: flex;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.heading-common h3 {
  display: flex;
  column-gap: 20px;
}

.heading-common h3::before {
  content: "";
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
}

.heading-common h3 span {
  position: relative;
  display: flex;
  align-items: center;
}

.heading-common h3 span::after {
  content: "";
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  height: 1px;
}

.kokunai .heading-common h3 {
  color: var(--kokunai-color);
}

.kokunai .heading-common h3::before {
  background-image: url("/attending/ohitori/common/images/pc/icon-kokunai.png");
  width: 62px;
  height: 64px;
}

.kokunai .heading-common h3 span::after {
  background-color: var(--kokunai-color);
}

.kaigai .heading-common h3 {
  color: var(--kaigai-color);
}

.kaigai .heading-common h3::before {
  background-image: url("/attending/ohitori/common/images/pc/icon-kaigai.png");
  width: 70px;
  height: 65px;
}

.kaigai .heading-common h3 span::after {
  background-color: var(--kaigai-color);
}

/* mainVisual_start */
.mainVisual {
  background-image: url("/attending/ohitori/common/images/pc/bg-AS23-015015_BP24-062245_BP24-057400_BP17-011471.jpg");
}
/* mainVisual_end */

/* 阪急交通社の一人旅はどんなものがあるの？_start */
.block-about {
  display: flex;
  justify-content: space-between;
}

.group-about {
  position: relative;
  width: 50%;
  padding: 24px;
  z-index: 1;
}

.group-about::before,
.group-about::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}

.accompany::before {
  top: -30px;
  left: -30px;
  background-color: #fff0f2;
  width: 220px;
  height: 220px;
}

.accompany::after {
  bottom: -20px;
  right: 10px;
  background-color: #fff0f2;
  width: 120px;
  height: 120px;
}

.freeplan::before {
  top: -30px;
  right: -30px;
  background-color: #eafafd;
  width: 220px;
  height: 220px;
}

.freeplan::after {
  bottom: -20px;
  left: 10px;
  background-color: #eafafd;
  width: 120px;
  height: 120px;
}

.group-about_inner {
  display: flex;
  justify-content: space-between;
  column-gap: 20px;
  margin-top: 20px;
}

.group-about_inner figure {
  width: 200px;
}

.group-about_text {
  width: calc(100% - 200px - 20px);
}

.group-about_text em {
  display: inline-block;
  font-style: normal;
  font-weight: 600;
}

.accompany em {
  color: var(--kokunai-color);
}

.freeplan em {
  color: var(--kaigai-color);
}

.group-about_link {
  position: relative;
  display: inline-block;
  border-radius: 6px;
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  color: var(--kaigai-color);
  line-height: 1.5;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  margin: 20px auto 0;
}

.group-about_link {
  padding: calc(1.5rem - 12px) 2rem 1.5rem;
  background: #ff6;
}

.group-about_link:before {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  border: 2px solid var(--kaigai-color);
  border-radius: 6px;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.group-about_link:hover {
  padding: calc(1.5rem - 6px) 2rem;
}

.group-about_link:hover:before {
  top: 0;
  left: 0;
}

/* モーダルコンテンツ */
#gallery-modal {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#gallery-modal.is-visible {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
  position: relative;
  background-color: #fff;
  max-width: 1024px;
  width: calc(100% - 3rem);
  /* max-height: 850px;
  height: calc(100% - 3rem); */
  transform: translateY(20px);
  transition: transform 0.3s ease;
  z-index: 1001;
}

/* .modal-body {
  height: calc(100% - 30px - 50px);
  overflow-y: auto;
} */

.modal-scroll_about {
  max-height: calc((var(--vh, 1vh) * 100) - 30px - 172px);
  height: 100%;
  text-align: center;
  padding: 0 20px;
  overflow-y: auto;
}

#gallery-modal.is-visible .modal-content {
  transform: translateY(0);
}

.modal-close-top {
  position: relative;
  width: 100%;
  height: 30px;
}

.modal-close-top span {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 30px;
  height: 30px;
}

.modal-close-top span::before,
.modal-close-top span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 20px;
  height: 1px;
  background-color: #333;
}

.modal-close-top span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal-close-top span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal-close-bottom {
  /* position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%); */
  width: 100%;
  padding: 30px 0;
}

.modal-close-bottom button {
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 1px #333;
  border-radius: 100px;
  width: 130px;
  margin: 0 auto;
  padding: 5px 0;
}

.block-modal_anxiety {
  background-color: #e3f8ff;
  margin-top: 30px;
  padding: 10px;
}

.block-modal_anxiety dt {
  font-size: 20px;
  font-weight: 600;
}

.block-modal_anxiety dd ul {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 5px 20px;
  text-align: left;
}

.block-modal_anxiety dd ul li {
  font-weight: 600;
  color: var(--kaigai-color);
  letter-spacing: -0.05em;
}

.modal-sbttl {
  display: inline-block;
  background-color: #62ce66;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-top: 30px;
  padding: 3px 30px;
  clip-path: polygon(0 0, 100% 0, 98% 50%, 100% 100%, 0 100%, 2% 50%);
}

.modal-resolved_list {
  counter-reset: num;
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.modal-resolved_list li {
  width: calc(100% / 3);
  column-gap: 15px;
}

.modal-resolved_list li dl {
  text-align: left;
  padding-left: 20px;
}

.modal-resolved_list li dl dt {
  counter-increment: num;
  position: relative;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  padding: 5px 0;
}

.modal-resolved_list li dl dt::before {
  content: counter(num, decimal-leading-zero);
  position: relative;
  top: -2px;
  display: inline-block;
  font-size: 41px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 800;
  color: #0C9ED1;
  line-height: 1;
  margin-right: 10px;
  z-index: 2;
}

.modal-resolved_list li dl dt::after {
  content: "";
  position: absolute;
  top: -10px;
  left: -15px;
  background-image: url("/attending/ohitori/common/images/icon-modal.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 44px;
  height: 44px;
  z-index: 1;
}

.modal-resolved_list li dl dd {
  letter-spacing: -0.05em;
}

.modal-resolved_list li dl dd span {
  color: #E96976;
}

.modal-caution_list {
  font-size: 14px;
  text-align: left;
  margin-top: 10px;
}
/* 阪急交通社の一人旅はどんなものがあるの？_end */

/* 一人旅・おひとり様参加限定のツアーを探す_start */
.block-tour_find {
  display: flex;
  justify-content: space-between;
}

.group-tour_find {
  position: relative;
  background-size: contain;
  background-repeat: no-repeat;
  border-radius: 20px;
  width: 486px;
  height: 290px;
  overflow: hidden;
  z-index: 1;
}

.group-tour_find::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
  z-index: -1;
}

.group-tour_find.kokunai {
  background-image: url("/attending/ohitori/common/images/pc/img-tour_find-PG22-033378.jpg");
}

.group-tour_find.kaigai {
  background-image: url("/attending/ohitori/common/images/pc/img-tour_find-EBP10-20017.jpg");
}

.group-tour_find {
  position: relative;
  z-index: 2;
}

.group-tour_find-link {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  row-gap: 40px;
  width: 100%;
  height: 100%;
  padding-bottom: 35px;
}

.group-tour_find p {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 35px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.3em;
}

.group-tour_find p::before {
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}

.group-tour_find.kokunai p::before {
  background-image: url("/attending/ohitori/common/images/pc/icon-tour_find-kokunai.png");
  width: 54px;
  height: 56px;
}

.group-tour_find.kaigai p::before {
  background-image: url("/attending/ohitori/common/images/pc/icon-tour_find-kaigai.png");
  width: 57px;
  height: 53px;
}

.group-tour_find span {
  position: relative;
  display: block;
  background-color: #fff;
  border-radius: 100px;
  font-weight: 500;
  text-align: center;
  padding: 8px 65px;
}

.group-tour_find.kokunai span {
  border: solid 2px var(--kokunai-color);
  color: var(--kokunai-color);
}

.group-tour_find.kaigai span {
  border: solid 2px var(--kaigai-color);
  color: var(--kaigai-color);
}

.group-tour_find.kokunai span::after,
.group-tour_find.kaigai span::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  top: calc(50%);
  right: 15px;
  transform: translateY(-50%) rotate(45deg);
}

.group-tour_find.kokunai span::after {
  border-top: 2px solid var(--kokunai-color);
  border-right: 2px solid var(--kokunai-color);
}

.group-tour_find.kaigai span::after {
  border-top: 2px solid var(--kaigai-color);
  border-right: 2px solid var(--kaigai-color);
}

.group-tour_find:hover::before {
  background-color: rgba(0, 0, 0, 0);
}
/* 一人旅・おひとり様参加限定のツアーを探す_end */

/* 一人旅におすすめのエリア_start */
.sec-area_inner {
  position: relative;
  padding: 50px 0;
}

.sec-area_inner::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-size: 885px 502px;
  background-position: top left;
  background-repeat: repeat;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.2;
}

.sec-area_inner.kokunai::after {
  background-image: url("/attending/ohitori/common/images/bg-dot_kokunai.png");
}

.sec-area_inner.kaigai::after {
  background-image: url("/attending/ohitori/common/images/bg-dot_kaigai.png");
}

.block-area {
  display: flex;
  justify-content: space-between;
}

.block-area_item {
  display: flex;
  flex-direction: column;
  width: 320px;
}

.block-area_item figure {
  border-radius: 20px;
	height: 240px;
  overflow: hidden;
}

.group-area_text {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 30px;
  width: 280px;
  margin: -24px auto 0;
  padding: 20px 15px;
  flex-grow: 1;
}

.kokunai .group-area_text {
  border: solid 1px var(--kokunai-color);
}

.kaigai .group-area_text {
  border: solid 1px var(--kaigai-color);
}

.group-area_text dt {
  border-bottom: solid 1px #333;
  font-size: 22px;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.group-area_text dt .en {
  display: block;
  font-size: 12px;
}

.kokunai .group-area_text dt .en {
  color: rgba(231, 103, 118, 0.5);
}

.kaigai .group-area_text dt .en {
  color: rgba(12, 158, 209, 0.5);
}

.group-area_text dt .highlight {
  font-size: 28px;
}

.group-area_text h4 {
  border-bottom: solid 1px #333;
  font-size: 22px;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  font-weight: 700;
}

.group-area_text .en {
  display: block;
  font-size: 12px;
  font-weight: 700;
	text-align: center;
}

.kokunai .group-area_text .en {
  color: rgba(231, 103, 118, 0.5);
}

.kaigai .group-area_text .en {
  color: rgba(12, 158, 209, 0.5);
}

.group-area_text h4 .highlight {
  font-size: 28px;
}

.group-area_caption {
  padding-bottom: 20px;
}

.group-area_link {
  font-weight: 600;
  text-align: right;
  letter-spacing: -0.01em;
  margin-top: auto;
}

.group-area_link a {
  position: relative;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 10px;
  padding-right: 20px;
  transition: text-decoration-color 0.3s ease;
}

.kokunai .group-area_link a {
  color: var(--kokunai-color);
  text-decoration-color: var(--kokunai-color);
}

.kaigai .group-area_link a {
  color: var(--kaigai-color);
  text-decoration-color: var(--kaigai-color);
}

.group-area_link a:hover {
  text-decoration-color: #fff;
}

.group-area_link a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(45deg);
  display: block;
  width: 8px;
  height: 8px;
}

.kokunai .group-area_link a::after {
  border-top: 2px solid var(--kokunai-color);
  border-right: 2px solid var(--kokunai-color);
}

.kaigai .group-area_link a::after {
  border-top: 2px solid var(--kaigai-color);
  border-right: 2px solid var(--kaigai-color);
}
/* 一人旅におすすめのエリア_end */

/* 一人旅で人気のキーワード_start */
.block-keyword {
  border: solid 1px #aaa;
  border-radius: 20px;
  padding: 40px;
}

.group-keyword {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 20px;
}

.group-keyword_item {
  border: solid 1px var(--btn-bdrColor);
  border-radius: 100px;
  /*width: calc((100% / 4) - 15px);*/
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
  padding: 0 15px;
}

.group-keyword_item:hover {
  background-color: var(--btn-bdrColor);
  color: #fff;
}

.group-keyword_link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 5px;
}
/* 一人旅で人気のキーワード_end */

/* 一人旅でよくある質問_start */
.sec-qa_inner {
  position: relative;
  padding: 50px 0;
}

.sec-qa_inner::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-size: 885px 502px;
  background-position: top left;
  background-repeat: repeat;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.2;
}

.sec-qa_inner.kokunai::after {
  background-image: url("/attending/ohitori/common/images/bg-dot_kokunai.png");
}

.sec-qa_inner.kaigai::after {
  background-image: url("/attending/ohitori/common/images/bg-dot_kaigai.png");
}

details {
  position: relative;
  background-color: #fefffb;
  border-radius: 12px;
  padding: 30px 90px;
  overflow: hidden;
}

details:not(:last-of-type) {
  margin-bottom: 20px;
}

details[open] .accordion-content {
  height: auto;
}

summary {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 24px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
}

summary::before {
  content: "Q";
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-image: url("/attending/ohitori/common/images/icon-qa.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 5px 0px;
  width: 53px;
  height: 33px;
  font-size: 30px;
  font-weight: 700;
  margin-right: 20px;
}

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

summary h3 {
  position: relative;
  width: 100%;
}

summary.is-open h3::after {
  content: "";
  display: block;
  border-bottom: dotted 3px #333;
  width: 100%;
  position: absolute;
  bottom: -10px;
  left: 0;
}

.toggle-arrow {
  position: relative;
  right: 0;
  margin-left: auto;
}

.toggle-arrow::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  position: absolute;
  top: calc(50% - 3px);
  right: 5px;
  transform: translateY(-50%) rotate(135deg) skew(3deg, 3deg);
  transition: transform 0.3s ease-out;
}

.is-open .toggle-arrow::before {
  transform: translateY(-50%) rotate(-45deg) skew(3deg, 3deg);
}

.accordion-content {
  position: relative;
  display: flex;
  justify-content: flex-start;
  transition: height 0.3s ease;
  overflow: hidden;
}

.accordion-content::before {
  content: "A";
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-image: url("/attending/ohitori/common/images/icon-qa.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 5px 0px;
  width: 53px;
  height: 33px;
  font-size: 30px;
  font-weight: 700;
  margin: 30px 20px 0 0;
}

.accordion-content_inner {
  width: 100%;
  margin: 30px 0 0 0;
}

.accordion-content_inner figure {
  width: 100%;
  margin-top: 20px;
}

.accordion-content_inner a {
  color: var(--color-lightbrown01);
  text-decoration: underline;
}

.qa-link {
  display: inline-block;
  font-weight: 600;
  margin-top: 10px;
}

.qa-movie {
  width: max-content;
  margin: 20px auto 0;
  position: relative;
  margin: 20px auto 0;
  width: 800px;
  height: 450px;
}

.kokunai details {
  border: solid 1px var(--kokunai-color);
}

.kokunai .toggle-arrow::before {
  border-top: 3px solid var(--kokunai-color);
  border-right: 3px solid var(--kokunai-color);
}

.kaigai details {
  border: solid 1px var(--kaigai-color);
}

.kaigai .toggle-arrow::before {
  border-top: 3px solid var(--kaigai-color);
  border-right: 3px solid var(--kaigai-color);
}

.block-qa_link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 835px;
  margin: 50px auto 0;
}


.block-qa_link-item {
  width: 100%;
}

.block-qa_link-item a {
  position: relative;
  display: block;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.block-qa_link-item a::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
  transition: border-color 0.3s ease;
}

.block-qa_link-item.kokunai a::after {
  border-top: 2px solid var(--kokunai-color);
  border-right: 2px solid var(--kokunai-color);
}

.block-qa_link-item.kaigai a::after {
  border-top: 2px solid var(--kaigai-color);
  border-right: 2px solid var(--kaigai-color);
}

.block-qa_link-item.kokunai a {
  border: solid 2px var(--kokunai-color);
  color: var(--kokunai-color);
}

.block-qa_link-item.kaigai a {
  border: solid 2px var(--kaigai-color);
  color: var(--kaigai-color);
}

.block-qa_link-item.kokunai a:hover {
  background-color: var(--kokunai-color);
  color: #fff;
}

.block-qa_link-item.kaigai a:hover {
  background-color: var(--kaigai-color);
  color: #fff;
}

.block-qa_link-item.kokunai a:hover::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.block-qa_link-item.kaigai a:hover::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
/* 一人旅でよくある質問_end */

/* 旅の情報_start */
.block-information {
  display: flex;
  justify-content: space-between;
  width: 835px;
  margin: 0 auto;
}

.block-information_item {
  width: 390px;
}

.block-information_link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: solid 2px #000;
  border-radius: 20px;
  width: 100%;
  height: auto;
  padding: 40px 0;
  transition: background-color 0.3s ease;
}

.block-information_link:hover {
  background-color: #f2f2f2;
}

.block-information_title {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 10px;
  font-size: 18px;
  font-weight: 400;
}

.block-information_title::before {
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
}

.goods .block-information_title::before {
  background-image: url("/attending/ohitori/common/images/icon-information_goods.svg");
  width: 74px;
  height: 64px;
}

.guide .block-information_title::before {
  background-image: url("/attending/ohitori/common/images/icon-information_guide.svg");
  width: 74px;
  height: 64px;
}

.block-information_text {
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
}
/* 旅の情報_end */

/* 一人旅に関するブログ_start */
.sec-blog h2 {
  margin-bottom: 10px;
}

.sec-blog small {
  display: block;
  text-align: center;
  margin-bottom: 50px;
}

.block-blog {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

.block-blog_item {
  position: relative;
  display: flex;
  justify-content: space-between;
  column-gap: 15px;
  width: 500px;
}

.block-blog_item a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.block-blog_item .photo {
  width: 180px;
}

.block-blog_item .text {
  width: calc(100% - 180px - 15px);
}

.block-blog_item .date_flex {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.block-blog_item .date_flex .pref {
  background-color: var(--kaigai-color);
  color: #fff;
  margin-right: 10px;
  padding: 5px 10px;
}

.block-blog_item .date_flex .day {
  font-weight: 600;
}

.block-blog_item .text .ttl {
  line-height: 1.4;
  margin-top: 5px;
}

.block-blog_btn {
  width: 425px;
  margin: 0 auto;
}

.block-blog_btn a {
  position: relative;
  display: block;
  background-color: var(--kaigai-color);
  border-radius: 100px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  transition: opacity 0.3s ease;
}

.block-blog_btn a:hover {
  opacity: 0.7;
}

.block-blog_btn a::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
/* 一人旅に関するブログ_end */

