@charset "UTF-8";
/*!
Theme Name: テーマ名に置き換え
Theme URI: http://underscores.me/
Author: Heads.Inc
Author URI: -------
Description: テーマ名に置き換え Theme
Version: 1.0.0
License: GNU General Public License v2 or later
/*! --------------------------------------------------------------
　　このCSSファイルは .scssファイルからコンパイルされたものです。
　　直接編集しないように注意してください。a
--------------------------------------------------------------- */
/* 基本設定
============================================================================ */
/* base > color
============================================================================================================ */
/* 基本色一覧*/
/*白*/
/*黒*/
/*灰色*/
/*黄*/
/*orange*/
/*赤*/
/*青*/
/*緑*/
/*金*/
/* mixin
============================================================================ */
/* フォントサイズをremに変換するmixin ($base-font-sizeはbase/_base.scssに)*/
/* フレックスボックス */
/* SCSS メディアクエリ */
/*最後の要素の余白リセット*/
/*
 * Mixin for placeholder
 * @include placeholderColor(#00ff00);
 */
figure {
  display: block;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
}

img {
  vertical-align: bottom;
  line-height: 0;
  font-size: 0;
  backface-visibility: hidden;
}

/*-------------------------------------------------------------
display指定class

【only】
.pc-only / .tab-only / .pad-only / .sp-only /.se-only
.pctab-only / .tabsp-only / .sp-none

-------------------------------------------------------------*/
.pc-only {
  display: block !important;
}
@media (max-width: 1024px) {
  .pc-only {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}
@media (max-width: 320px) {
  .pc-only {
    display: none !important;
  }
}
.pc-only--flex {
  display: flex !important;
}
@media (max-width: 1024px) {
  .pc-only--flex {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .pc-only--flex {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .pc-only--flex {
    display: none !important;
  }
}
@media (max-width: 320px) {
  .pc-only--flex {
    display: none !important;
  }
}

.tab-only {
  display: none !important;
}
@media (max-width: 1024px) {
  .tab-only {
    display: block !important;
  }
}
@media (max-width: 768px) {
  .tab-only {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .tab-only {
    display: none !important;
  }
}
@media (max-width: 320px) {
  .tab-only {
    display: none !important;
  }
}
.tab-only--flex {
  display: none !important;
}
@media (max-width: 1024px) {
  .tab-only--flex {
    display: flex !important;
  }
}
@media (max-width: 768px) {
  .tab-only--flex {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .tab-only--flex {
    display: none !important;
  }
}
@media (max-width: 320px) {
  .tab-only--flex {
    display: none !important;
  }
}

.pad-only {
  display: none !important;
}
@media (max-width: 1024px) {
  .pad-only {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .pad-only {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .pad-only {
    display: none !important;
  }
}
@media (max-width: 320px) {
  .pad-only {
    display: none !important;
  }
}
.pad-only--flex {
  display: none !important;
}
@media (max-width: 1024px) {
  .pad-only--flex {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .pad-only--flex {
    display: flex !important;
  }
}
@media (max-width: 767px) {
  .pad-only--flex {
    display: none !important;
  }
}
@media (max-width: 320px) {
  .pad-only--flex {
    display: none !important;
  }
}

.sp-only {
  display: none !important;
}
@media (max-width: 1024px) {
  .sp-only {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .sp-only {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .sp-only {
    display: block !important;
  }
}
@media (max-width: 320px) {
  .sp-only {
    display: block !important;
  }
}
.sp-only--flex {
  display: none !important;
}
@media (max-width: 1024px) {
  .sp-only--flex {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .sp-only--flex {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .sp-only--flex {
    display: flex !important;
  }
}
@media (max-width: 320px) {
  .sp-only--flex {
    display: flex !important;
  }
}

.se-only {
  display: none !important;
}
@media (max-width: 1024px) {
  .se-only {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .se-only {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .se-only {
    display: none !important;
  }
}
@media (max-width: 320px) {
  .se-only {
    display: block !important;
  }
}
.se-only--flex {
  display: none !important;
}
@media (max-width: 1024px) {
  .se-only--flex {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .se-only--flex {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .se-only--flex {
    display: none !important;
  }
}
@media (max-width: 320px) {
  .se-only--flex {
    display: flex !important;
  }
}

.pctab-only {
  display: block !important;
}
@media (max-width: 1024px) {
  .pctab-only {
    display: block !important;
  }
}
@media (max-width: 768px) {
  .pctab-only {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .pctab-only {
    display: none !important;
  }
}
@media (max-width: 320px) {
  .pctab-only {
    display: none !important;
  }
}
.pctab-only--flex {
  display: flex !important;
}
@media (max-width: 1024px) {
  .pctab-only--flex {
    display: flex !important;
  }
}
@media (max-width: 768px) {
  .pctab-only--flex {
    display: flex !important;
  }
}
@media (max-width: 767px) {
  .pctab-only--flex {
    display: none !important;
  }
}
@media (max-width: 320px) {
  .pctab-only--flex {
    display: none !important;
  }
}

.tabsp-only {
  display: none !important;
}
@media (max-width: 1024px) {
  .tabsp-only {
    display: block !important;
  }
}
@media (max-width: 768px) {
  .tabsp-only {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .tabsp-only {
    display: block !important;
  }
}
@media (max-width: 320px) {
  .tabsp-only {
    display: block !important;
  }
}
.tabsp-only--flex {
  display: none !important;
}
@media (max-width: 1024px) {
  .tabsp-only--flex {
    display: flex !important;
  }
}
@media (max-width: 768px) {
  .tabsp-only--flex {
    display: flex !important;
  }
}
@media (max-width: 767px) {
  .tabsp-only--flex {
    display: flex !important;
  }
}
@media (max-width: 320px) {
  .tabsp-only--flex {
    display: flex !important;
  }
}

@media (max-width: 767px) {
  .sp-none {
    display: none;
  }
}
@media (max-width: 320px) {
  .sp-none {
    display: none;
  }
}

/* 共通部分
============================================================================ */
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

li {
  list-style: none;
}

ul,
ol,
dl,
p {
  padding: 0;
  margin: 0;
}

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

a {
  color: inherit;
  /* ress.cssだとunderlineがつくのを阻止 */
  text-decoration: none;
}

select {
  color: #1a1a1a;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  line-height: 1 !important;
  position: relative;
}

table {
  table-layout: fixed;
  /* ress.css用 */
  border-collapse: collapse;
  border-spacing: 0;
}

td input {
  max-width: 100%;
}

i,
em {
  font-style: normal;
}

* {
  box-sizing: border-box;
}

small {
  font-size: 100%;
}
html {
  margin-top: 0 !important;
}

html,
body {
  width: 100%;
  line-height: 1.7;
  color: #1a1a1a;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0em;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  -webkit-print-color-adjust: exact;
  overflow-x: hidden;
  -ms-overflow-style: none; /* IE, Edge 対応 */
  scrollbar-width: none; /* Firefox 対応 */
}
@media (max-width: 767px) {
  html,
  body {
    font-size: 7px;
    font-size: 3.7333333333vw;
    line-height: 1.7;
  }
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  /* Chrome, Safari 対応 */
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  html, body {
    cursor: none !important;
  }
}
@media (hover: hover) and (pointer: fine) and (max-width: 1024px) {
  html, body {
    cursor: default !important;
  }
}
@media (hover: hover) and (pointer: fine) {
  * {
    cursor: none !important;
  }
}
@media (hover: hover) and (pointer: fine) and (max-width: 1024px) {
  * {
    cursor: default !important;
  }
}
body {
  opacity: 0;
  pointer-events: none;
}
body.loaded {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 1s;
}
body.nav-open .common-header__searchForm:before {
  opacity: 1;
}
@media (max-width: 1024px) {
  body.nav-open .c-fixedBtn__wanko {
    bottom: 100%;
    transition-duration: 0.4s;
    transition-delay: 0.2s;
  }
}

.font-ys {
  font-family: "Yosugara", sans-serif;
  font-weight: normal;
  font-style: normal;
}

a {
  -moz-transition: 0.6s;
  -o-transition: 0.6s;
  -webkit-transition: 0.6s;
  -webkit-transition-delay: 0.6s;
  transition: 0.6s;
  z-index: 2;
}
a:hover {
  text-decoration: none;
  opacity: 0.7;
}

#Wrapper {
  display: flex;
  flex-direction: column;
  background: #f8f8f8;
  min-height: 100vh;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
}
@media (max-width: 767px) {
  #Wrapper {
    border: none;
  }
}

#Footer {
  margin-top: auto;
  height: 100%;
}

img.object_fit {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

.equalspace-1em {
  letter-spacing: 1em;
  text-indent: 1em;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.youtube-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  height: 0;
}

.youtube-item {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/* base > heading
============================================================================================================ */
/* 基本設定 */
h1 {
  font-size: 34px;
  font-size: 2.2666666667rem;
}
@media (max-width: 767px) {
  h1 {
    font-size: 22px;
    font-size: 1.4666666667rem;
  }
}

h2 {
  font-size: 30px;
  font-size: 2rem;
}
@media (max-width: 767px) {
  h2 {
    font-size: 20px;
    font-size: 1.3333333333rem;
  }
}

h3 {
  font-size: 24px;
  font-size: 1.6rem;
  font-weight: bold;
}

h4 {
  font-size: 20px;
  font-size: 1.3333333333rem;
  font-weight: bold;
}

h5 {
  font-size: 18px;
  font-size: 1.2rem;
  font-weight: bold;
}

h6 {
  font-size: 18px;
  font-size: 1.2rem;
}

img.size-auto,
img.size-large,
img.size-full,
img.size-medium {
  max-width: 100%;
  height: auto;
}

.alignleft,
img.alignleft {
  display: inline;
  float: left;
  margin-right: 15px;
  margin-top: 4px;
}

.alignright,
img.alignright {
  display: inline;
  float: right;
  margin-left: 15px;
  margin-top: 4px;
}

.aligncenter,
img.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

img.alignleft,
img.alignright,
img.aligncenter {
  margin-bottom: 12px;
}

.wp-caption {
  background: #f1f1f1;
  border: none;
  border-radius: 0;
  color: #888;
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 20px;
  padding: 4px;
  text-align: center;
}

.wp-caption img {
  margin: 5px;
}

.wp-caption p.wp-caption-text {
  margin: 0 0 4px;
}

.wp-smiley {
  margin: 0;
}

div.wpcf7-mail-sent-ok {
  border: 2px solid #398f14;
  padding: 50px 10px;
  text-align: center;
  font-weight: bold;
  margin: 50px 0;
}

.comments-area {
  margin: 0 auto 60px;
}

.comments-area > :last-child {
  margin-bottom: 0;
}

.comment-list + .comment-respond {
  border-top: 1px solid #eaeaea;
  border-top: 1px solid rgba(51, 51, 51, 0.1);
}

.comment-list + .comment-respond,
.comment-navigation + .comment-respond {
  padding-top: 1.6em;
}

.comments-title,
.comment-reply-title {
  border-top: 1px solid red;
  border-bottom: 1px solid red;
  padding: 12px 6px;
  font-weight: bold;
}

.comments-title {
  margin-bottom: 1.3333em;
}

.comment-list {
  list-style: none;
  margin: 0;
}

.comment-list article,
.comment-list .pingback,
.comment-list .trackback {
  border-top: 1px solid #eaeaea;
  border-top: 1px solid rgba(51, 51, 51, 0.1);
  padding: 1.6em 0;
}

.comment-list .children {
  list-style: none;
  margin: 0;
}

.comment-list .children > li {
  padding-left: 0.8em;
}

.comment-author {
  color: #707070;
  color: rgba(51, 51, 51, 0.7);
  margin-bottom: 0.4em;
}

.comment-author a:hover {
  border-bottom: 1px solid #707070;
  border-bottom: 1px solid rgba(51, 51, 51, 0.7);
}

.comment-author .avatar {
  float: left;
  height: 24px;
  margin-right: 0.8em;
  width: 24px;
}

.comment-metadata,
.pingback .edit-link {
  color: #707070;
  color: rgba(51, 51, 51, 0.7);
  font-size: 12px;
  line-height: 1.5;
}

.comment-metadata a,
.pingback .edit-link a {
  color: #707070;
  color: rgba(51, 51, 51, 0.7);
}

.comment-metadata a:hover,
.pingback .edit-link a:hover {
  border-bottom: 1px solid #333;
}

.comment-metadata a:hover,
.comment-metadata a:focus,
.pingback .edit-link a:hover,
.pingback .edit-link a:focus {
  color: #333;
}

.comment-metadata {
  margin-bottom: 1.6em;
}

.comment-metadata .edit-link {
  margin-left: 1em;
}

.pingback .edit-link {
  margin-left: 1em;
}

.pingback .edit-link:before {
  top: 5px;
}

.comment-content ul,
.comment-content ol {
  margin: 0 0 1.6em 1.3333em;
}

.comment-content li > ul,
.comment-content li > ol {
  margin-bottom: 0;
}

.comment-content > :last-child {
  margin-bottom: 0;
}

.comment-list .reply {
  font-size: 12px;
}

.comment-list .reply a {
  border: 1px solid #eaeaea;
  border: 1px solid rgba(51, 51, 51, 0.1);
  color: #707070;
  color: rgba(51, 51, 51, 0.7);
  display: inline-block;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  line-height: 1;
  margin-top: 2em;
  padding: 0.4167em 0.8333em;
  text-transform: uppercase;
}

.comment-list .reply a:hover,
.comment-list .reply a:focus {
  border-color: #333;
  color: #333;
  outline: 0;
}

.comment-form {
  padding-top: 1.6em;
}

.comment-form label {
  color: #707070;
  color: rgba(51, 51, 51, 0.7);
  font-family: "Noto Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  display: block;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-transform: uppercase;
}

.comment-form #comment,
.comment-form input[type=text],
.comment-form input[type=email],
.comment-form input[type=url] {
  width: 100%;
  max-width: 100%;
  border-radius: 6px;
  padding: 3px;
  border: 1px solid #ccc;
}

.comment-form input[type=submit] {
  margin: 20px auto;
}

.comment-notes,
.comment-awaiting-moderation,
.logged-in-as,
.form-allowed-tags {
  color: #707070;
  color: rgba(51, 51, 51, 0.7);
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 2em;
}

.logged-in-as a:hover {
  border-bottom: 1px solid #333;
}

.no-comments {
  border-top: 1px solid #eaeaea;
  border-top: 1px solid rgba(51, 51, 51, 0.1);
  color: #707070;
  color: rgba(51, 51, 51, 0.7);
  font-weight: 700;
  padding-top: 1.6em;
}

.comment-navigation + .no-comments {
  border-top: 0;
}

.form-allowed-tags code {
  font-family: monospace;
}

.form-submit {
  margin-bottom: 0;
}

/*.required {
	color: #c0392b;
}*/
.comment-reply-title small {
  font-size: 100%;
}

.comment-reply-title small a {
  border: 0;
  float: right;
  height: 32px;
  overflow: hidden;
  width: 26px;
}

.comment-reply-title small a:before {
  content: "\f405";
  font-size: 32px;
  position: relative;
  top: -3px;
}

.comment-form #wp-comment-cookies-consent {
  margin: 0 10px 0 0;
}

.comment-form .comment-form-cookies-consent label {
  display: inline;
  font-size: 12px;
  font-weight: normal;
  letter-spacing: 0;
  text-transform: none;
}

.editor-content > *:first-child {
  margin-top: 0 !important;
}
.editor-content > *:last-child {
  margin-bottom: 0 !important;
}
.editor-content .wp-block-heading {
  line-height: 1.7;
  letter-spacing: 0em;
  text-align: justify;
  margin: 60px 0;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .editor-content .wp-block-heading {
    margin: 4.6875vw 0;
  }
}
@media (max-width: 767px) {
  .editor-content .wp-block-heading {
    margin: 16vw 0;
  }
}
.editor-content .wp-block-image {
  margin: 60px 0;
}
@media screen and (max-width: 1280px) {
  .editor-content .wp-block-image {
    margin: 4.6875vw 0;
  }
}
@media (max-width: 767px) {
  .editor-content .wp-block-image {
    margin: 16vw 0;
  }
}
.editor-content .wp-block-list {
  margin: 60px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: stretch;
  flex-direction: column;
  row-gap: 12px;
}
@media screen and (max-width: 1280px) {
  .editor-content .wp-block-list {
    margin: 4.6875vw 0;
    row-gap: 0.9375vw;
  }
}
@media (max-width: 767px) {
  .editor-content .wp-block-list {
    margin: 16vw 0;
    row-gap: 5.3333333333vw;
  }
}
.editor-content .wp-block-columns {
  margin: 60px 0;
}
@media screen and (max-width: 1280px) {
  .editor-content .wp-block-columns {
    margin: 4.6875vw 0;
  }
}
@media (max-width: 767px) {
  .editor-content .wp-block-columns {
    margin: 16vw 0;
  }
}
.editor-content .wp-block-columns:where(.wp-block-columns.is-layout-flex) {
  gap: 40px;
}
@media screen and (max-width: 1280px) {
  .editor-content .wp-block-columns:where(.wp-block-columns.is-layout-flex) {
    gap: 3.125vw;
  }
}
@media (max-width: 767px) {
  .editor-content .wp-block-columns:where(.wp-block-columns.is-layout-flex) {
    gap: 2.6666666667vw;
  }
}
.editor-content .wp-block-columns .wp-block-image {
  margin: 16px 0;
}
@media (max-width: 767px) {
  .editor-content .wp-block-columns .wp-block-image {
    margin: 2.6666666667vw 0;
  }
}
.editor-content .wp-block-columns p {
  margin: 16px 0;
}
@media screen and (max-width: 1280px) {
  .editor-content .wp-block-columns p {
    margin: 1.25vw 0;
  }
}
@media (max-width: 767px) {
  .editor-content .wp-block-columns p {
    margin: 2.6666666667vw 0;
  }
}
.editor-content .wp-block-flexible-table-block-table {
  max-width: 100%;
  width: 100%;
  position: relative;
}
.editor-content .wp-block-flexible-table-block-table-wrapper {
  font-size: 13px;
  line-height: 1.7;
  margin: 60px 0;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .editor-content .wp-block-flexible-table-block-table-wrapper {
    margin: 4.6875vw 0;
  }
}
@media (max-width: 767px) {
  .editor-content .wp-block-flexible-table-block-table-wrapper {
    font-size: 6px;
    font-size: 3.2vw;
    line-height: 1.5;
    margin: 16vw 0;
  }
}
@media (max-width: 767px) {
  .editor-content .wp-block-flexible-table-block-table-wrapper:has(.is-style-stripes), .editor-content .wp-block-flexible-table-block-table-wrapper:has(thead) {
    min-width: 94.6666666667vw;
    padding-bottom: 6.4vw;
  }
}
@media (max-width: 767px) {
  .editor-content .wp-block-flexible-table-block-table-wrapper:has(.is-style-stripes) .simplebar-track.simplebar-horizontal, .editor-content .wp-block-flexible-table-block-table-wrapper:has(thead) .simplebar-track.simplebar-horizontal {
    width: 89.3333333333vw;
    height: 1.6vw;
  }
}
.editor-content .wp-block-flexible-table-block-table-wrapper:has(.is-style-stripes) .simplebar-track.simplebar-horizontal:before, .editor-content .wp-block-flexible-table-block-table-wrapper:has(thead) .simplebar-track.simplebar-horizontal:before {
  content: "";
  background: #c5c5c5;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .editor-content .wp-block-flexible-table-block-table-wrapper:has(.is-style-stripes) .simplebar-track.simplebar-horizontal:before, .editor-content .wp-block-flexible-table-block-table-wrapper:has(thead) .simplebar-track.simplebar-horizontal:before {
    height: 0.2666666667vw;
  }
}
.editor-content .wp-block-flexible-table-block-table-wrapper:has(.is-style-stripes) .simplebar-scrollbar:before, .editor-content .wp-block-flexible-table-block-table-wrapper:has(thead) .simplebar-scrollbar:before {
  content: "";
  inset: 0;
  background: #E2855C; /* = $orange01 */
  border-radius: 999px;
  opacity: 1;
}
.editor-content .wp-block-flexible-table-block-table-wrapper:has(.is-style-stripes) .wp-block-flexible-table-block-table, .editor-content .wp-block-flexible-table-block-table-wrapper:has(thead) .wp-block-flexible-table-block-table {
  overflow: visible;
}
@media (max-width: 767px) {
  .editor-content .wp-block-flexible-table-block-table-wrapper:has(.is-style-stripes) .wp-block-flexible-table-block-table table, .editor-content .wp-block-flexible-table-block-table-wrapper:has(thead) .wp-block-flexible-table-block-table table {
    display: unset;
    padding-right: 5.3333333333vw;
    overflow-x: auto;
    table-layout: auto;
  }
}
@media (max-width: 767px) {
  .editor-content .wp-block-flexible-table-block-table-wrapper:has(.is-style-stripes) .wp-block-flexible-table-block-table table.has-fixed-layout, .editor-content .wp-block-flexible-table-block-table-wrapper:has(thead) .wp-block-flexible-table-block-table table.has-fixed-layout {
    table-layout: auto;
  }
}
.editor-content .wp-block-flexible-table-block-table-wrapper:has(.is-style-stripes) {
  font-size: 15px;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .editor-content .wp-block-flexible-table-block-table-wrapper:has(.is-style-stripes) {
    font-size: 7px;
    font-size: 3.7333333333vw;
  }
}
.editor-content .wp-block-flexible-table-block-table-wrapper:has(.is-style-stripes) .wp-block-flexible-table-block-table {
  --tbl-gap: 6px;
}
.editor-content .wp-block-flexible-table-block-table-wrapper:has(.is-style-stripes) .wp-block-flexible-table-block-table table {
  width: 100%;
  max-width: none;
  border-collapse: separate !important;
  border-spacing: var(--tbl-gap) !important;
}
.editor-content .wp-block-flexible-table-block-table-wrapper:has(.is-style-stripes) .wp-block-flexible-table-block-table table th, .editor-content .wp-block-flexible-table-block-table-wrapper:has(.is-style-stripes) .wp-block-flexible-table-block-table table td {
  padding: 6px 12px;
}
@media screen and (max-width: 1280px) {
  .editor-content .wp-block-flexible-table-block-table-wrapper:has(.is-style-stripes) .wp-block-flexible-table-block-table table th, .editor-content .wp-block-flexible-table-block-table-wrapper:has(.is-style-stripes) .wp-block-flexible-table-block-table table td {
    margin: 0.46875vw 0.9375vw;
  }
}
@media (max-width: 767px) {
  .editor-content .wp-block-flexible-table-block-table-wrapper:has(.is-style-stripes) .wp-block-flexible-table-block-table table th, .editor-content .wp-block-flexible-table-block-table-wrapper:has(.is-style-stripes) .wp-block-flexible-table-block-table table td {
    min-width: 38.4vw;
    padding: 1.6vw 3.2vw;
  }
}
@media (max-width: 767px) {
  .editor-content .wp-block-flexible-table-block-table-wrapper:has(thead) .wp-block-flexible-table-block-table table th, .editor-content .wp-block-flexible-table-block-table-wrapper:has(thead) .wp-block-flexible-table-block-table table td {
    min-width: 33.0666666667vw;
  }
}
.editor-content .wp-block-flexible-table-block-table-wrapper table {
  table-layout: auto;
}
.editor-content .wp-block-flexible-table-block-table-wrapper table th {
  font-weight: 700;
}
.editor-content .wp-block-separator {
  border-top-width: 1px;
  border-color: #d5d5d5;
}
@media (max-width: 767px) {
  .editor-content .wp-block-separator {
    border-top-width: 0.2666666667vw;
  }
}
.editor-content h1 {
  font-size: 30px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .editor-content h1 {
    font-size: 12px;
    font-size: 6.4vw;
  }
}
.editor-content h2 {
  font-size: 28px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .editor-content h2 {
    font-size: 11px;
    font-size: 5.8666666667vw;
  }
}
.editor-content h3 {
  font-size: 26px;
  font-weight: 600;
  padding-bottom: 13px;
  display: -webkit-box;
}
@media (max-width: 767px) {
  .editor-content h3 {
    font-size: 10px;
    font-size: 5.3333333333vw;
    padding-bottom: 2.9333333333vw;
  }
}
.editor-content h3:before {
  content: "";
  background: #de6c38;
  width: 100%;
  height: 8px;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .editor-content h3:before {
    height: 1.6vw;
  }
}
.editor-content h4 {
  font-size: 24px;
  font-weight: 500;
  padding-left: 20px;
}
@media (max-width: 767px) {
  .editor-content h4 {
    font-size: 9px;
    font-size: 4.8vw;
    padding-left: 6.4vw;
  }
}
.editor-content h4:before {
  content: "";
  background: #de6c38;
  width: 8px;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-53%);
}
@media (max-width: 767px) {
  .editor-content h4:before {
    width: 3.2vw;
    transform: translateY(-49%);
  }
}
.editor-content h5 {
  font-size: 22px;
  font-weight: 500;
  padding-bottom: 15px;
  display: -webkit-box;
}
@media (max-width: 767px) {
  .editor-content h5 {
    font-size: 8px;
    font-size: 4.2666666667vw;
    padding-bottom: 2.6666666667vw;
  }
}
.editor-content h5.wp-block-heading {
  margin-right: 38px;
}
@media (max-width: 767px) {
  .editor-content h5.wp-block-heading {
    margin-right: 8vw;
  }
}
.editor-content h5:before {
  content: "";
  background: #cec6c2;
  width: 100%;
  height: 4px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .editor-content h5:before {
    height: 1.0666666667vw;
  }
}
.editor-content h5:after {
  content: "";
  background-image: url(./img/single/icn_footprints-h5.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 32px;
  height: 33px;
  position: absolute;
  right: -38px;
  bottom: -13px;
}
@media (max-width: 767px) {
  .editor-content h5:after {
    width: 5.3333333333vw;
    right: -8vw;
    bottom: -4vw;
  }
}
.editor-content p {
  margin: 60px 0;
}
@media screen and (max-width: 1280px) {
  .editor-content p {
    margin: 4.6875vw 0;
  }
}
@media (max-width: 767px) {
  .editor-content p {
    margin: 16vw 0;
  }
}
.editor-content p strong {
  font-weight: 700;
}
.editor-content ul, .editor-content ul li {
  list-style: disc;
  margin-left: 1.2rem;
}
@media (max-width: 767px) {
  .editor-content ul, .editor-content ul li {
    margin-left: 1.5rem;
  }
}
.editor-content ol, .editor-content ol li {
  list-style: decimal;
  margin-left: 1.2rem;
}
@media (max-width: 767px) {
  .editor-content ol, .editor-content ol li {
    margin-left: 1.5rem;
  }
}
.editor-content a {
  color: blue;
  text-decoration: underline;
}

/* layout
============================================================================ */
/* layout > common
============================================================================================================ */
.common-main {
  width: 100%;
  height: 100%;
  margin-top: 41px;
  padding-bottom: 100px;
}
@media (max-width: 767px) {
  .common-main {
    margin-top: 11.7333333333vw;
    padding-bottom: 53.3333333333vw;
  }
}

@media (max-width: 767px) {
  .home .common-main {
    padding-bottom: 26.6666666667vw;
  }
}

.archive .common-main {
  padding-bottom: 150px;
}
@media (max-width: 767px) {
  .archive .common-main {
    padding-bottom: 40vw;
  }
}
.archive.post-type-archive-story .common-main {
  padding-bottom: 176px;
}
@media (max-width: 767px) {
  .archive.post-type-archive-story .common-main {
    padding-bottom: 45.6vw;
  }
}

.page .common-main {
  margin-top: 53px;
}
@media (max-width: 767px) {
  .page .common-main {
    margin-top: 12.2666666667vw;
  }
}
.page.activity-hachifull .common-main {
  padding-bottom: 149px;
}
@media (max-width: 767px) {
  .page.activity-hachifull .common-main {
    padding-bottom: 39.7333333333vw;
  }
}
.page.activity-hachifull .c-pageFv:before {
  width: 75.9375vw;
}
@media (max-width: 767px) {
  .page.activity-hachifull .c-pageFv:before {
    width: 100%;
  }
}
.page.privacy-policy .common-main {
  padding-bottom: 149px;
}
@media (max-width: 767px) {
  .page.privacy-policy .common-main {
    padding-bottom: 39.7333333333vw;
  }
}

.single .common-main {
  padding-bottom: 123px;
}
@media (max-width: 767px) {
  .single .common-main {
    padding-bottom: 40vw;
  }
}

.error404 .common-main {
  padding-bottom: 148px;
}
/* layout > header
============================================================================== */
.common-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transition: 0.5s;
}
.common-header.open {
  background: black;
}
.common-header.is-active {
  background: black;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}
.common-header__bg {
  line-height: 1;
  width: 100%;
  height: 42px;
  background: #f8f8f8;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
@media screen and (max-width: 1280px) {
  .common-header__bg {
    height: calc(42px + 38 * (1280px - 100vw) / 512);
  }
}
@media (max-width: 1024px) {
  .common-header__bg {
    height: 64px;
  }
}
@media (max-width: 767px) {
  .common-header__bg {
    height: 11.7333333333vw;
    filter: drop-shadow(0 1.0666666667vw 2.6666666667vw rgba(0, 0, 0, 0.1));
  }
}
.common-header__bgShape {
  width: 100%;
  position: absolute;
  top: calc(100% - 1px);
}
.common-header__bgShapeItem {
  position: absolute;
  width: calc(50vw + 1px);
}
.common-header__bgShapeItem:first-of-type {
  left: 0;
}
.common-header__bgShapeItem:last-of-type {
  right: 0;
  transform: rotateY(180deg);
}
.common-header__bgShape svg {
  width: 100%;
  height: 100%;
  display: block;
}
.common-header__inner {
  width: 100%;
  height: 100%;
  padding: 1.25vw 1.5625vw 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  align-content: normal;
  flex-direction: row;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1280px) {
  .common-header__inner {
    padding: 16px 20px 0;
  }
}
@media (max-width: 767px) {
  .common-header__inner {
    padding: 2.6666666667vw 2.1333333333vw 2.1333333333vw 3.2vw;
  }
}
.common-header__logo {
  width: 171px;
  position: relative;
  font-size: 0;
  font-weight: 400;
  z-index: 3;
}
@media (max-width: 1024px) {
  .common-header__logo {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 767px) {
  .common-header__logo {
    width: 26.4vw;
    top: 2.4vw;
  }
}
.common-header__logo a {
  display: block;
  position: relative;
  width: 100%;
}
.common-header__logo a > svg {
  width: 100%;
  height: 100%;
  display: block;
}
.common-header__nav {
  width: auto;
  position: absolute;
  top: 1.5625vw;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
@media screen and (max-width: 1280px) {
  .common-header__nav {
    top: 22px;
  }
}
@media (max-width: 1024px) {
  .common-header__nav {
    padding: 200px 0 30px;
    background: rgba(255, 255, 255, 0.9);
    width: 100vw;
    height: 100vh;
    display: none;
    opacity: 0;
    top: 0;
    z-index: 1;
  }
}
@media (max-width: 767px) {
  .common-header__nav {
    padding: 39.2vw 0 8vw;
  }
}
.common-header__navList {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: normal;
  flex-direction: row;
  -moz-column-gap: 39px;
       column-gap: 39px;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .common-header__navList {
    -moz-column-gap: 3.046875vw;
         column-gap: 3.046875vw;
  }
}
@media screen and (max-width: 1120px) {
  .common-header__navList {
    -moz-column-gap: 2.1875vw;
         column-gap: 2.1875vw;
  }
}
@media (max-width: 1024px) {
  .common-header__navList {
    row-gap: 32px;
    -moz-column-gap: 0;
         column-gap: 0;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .common-header__navList {
    row-gap: 10.6666666667vw;
  }
}
.common-header__navList > li {
  font-size: 14px;
  line-height: 1.3571428571;
  font-weight: 900;
  letter-spacing: 0.15em;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .common-header__navList > li {
    font-size: 19px;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .common-header__navList > li {
    font-size: 9.5px;
    font-size: 5.0666666667vw;
  }
}
.common-header__navList > li > a {
  display: block;
}
.common-header__menu {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  align-content: normal;
  flex-direction: row;
  -moz-column-gap: 13px;
       column-gap: 13px;
  position: relative;
  right: -6px;
}
@media (max-width: 1024px) {
  .common-header__menu {
    width: 100%;
    justify-content: space-between;
    right: auto;
  }
}
.common-header__menuSns {
  padding-top: 3px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: normal;
  flex-direction: row;
  -moz-column-gap: 12px;
       column-gap: 12px;
}
@media (max-width: 767px) {
  .common-header__menuSns {
    padding-top: 0.5333333333vw;
    -moz-column-gap: 2.6666666667vw;
         column-gap: 2.6666666667vw;
  }
}
.common-header__menuSns > a {
  width: 30px;
  height: 30px;
  display: block;
}
@media (max-width: 767px) {
  .common-header__menuSns > a {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.common-header__menuSns > a > svg {
  width: 100%;
  height: 100%;
  display: block;
}
.common-header__menuSns > a > svg rect, .common-header__menuSns > a > svg path {
  fill: #1a1a1a;
}
.common-header__menuToggle {
  line-height: 1;
  width: 122px;
  height: 78px;
  position: relative;
  top: -4px;
  transition: 0.4s;
}
@media (max-width: 767px) {
  .common-header__menuToggle {
    width: 17.3333333333vw;
    height: 10.9333333333vw;
    top: auto;
  }
}
.common-header__menuToggle:hover .common-header__menuToggleIcn > svg path {
  fill: #e1855a;
}
@media (max-width: 1024px) {
  .common-header__menuToggle:hover .common-header__menuToggleIcn > svg path {
    fill: #cacaca;
  }
}
.common-header__menuToggle:hover .common-header__menuToggleClick svg g {
  transition: 0.4s;
}
.common-header__menuToggle:hover .common-header__menuToggleClick svg g.txt {
  opacity: 1;
}
.common-header__menuToggle:hover .common-header__menuToggleClick svg g.icn {
  transform: translateY(0);
}
.common-header__menuToggle.is-active {
  top: 4px;
}
@media (max-width: 1024px) {
  .common-header__menuToggle.is-active {
    top: 0;
  }
}
.common-header__menuToggle.is-active .common-header__menuToggleIcn {
  transform: rotateX(180deg);
}
@media (max-width: 1024px) {
  .common-header__menuToggle.is-active .common-header__menuToggleIcn {
    top: -8px;
  }
}
@media (max-width: 767px) {
  .common-header__menuToggle.is-active .common-header__menuToggleIcn {
    top: -2.4vw;
  }
}
.common-header__menuToggle.is-active .common-header__menuToggleIcn > svg path {
  fill: #747474;
}
@media (max-width: 1024px) {
  .common-header__menuToggle.is-active .common-header__menuToggleIcn > svg path {
    fill: #adadad;
  }
}
.common-header__menuToggle.is-active .common-header__menuToggleClick {
  opacity: 0;
}
@media (max-width: 1024px) {
  .common-header__menuToggle.is-active .common-header__menuToggleTxt.menu {
    opacity: 0;
  }
}
.common-header__menuToggle.is-active .common-header__menuToggleTxt.close {
  opacity: 1;
}
.common-header__menuToggleClick {
  line-height: 1;
  width: 49px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -61%);
  pointer-events: none;
}
@media (max-width: 1024px) {
  .common-header__menuToggleClick {
    display: none;
  }
}
.common-header__menuToggleClick svg {
  width: 100%;
  height: 100%;
  display: block;
}
.common-header__menuToggleClick svg g {
  transition: 0.4s;
}
.common-header__menuToggleClick svg g.txt {
  opacity: 0;
}
.common-header__menuToggleClick svg g.icn {
  position: relative;
  transform: translateY(-15px);
}
.common-header__menuToggleIcn {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.4s;
}
.common-header__menuToggleIcn > svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 0 24px rgba(0, 0, 0, 0.1));
}
@media (max-width: 767px) {
  .common-header__menuToggleIcn > svg {
    filter: drop-shadow(0 0 6.4vw rgba(0, 0, 0, 0.1));
  }
}
.common-header__menuToggleIcn > svg path {
  transition: 0.4s;
  fill: #cacaca;
}
.common-header__menuToggleTxt {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.15em;
  color: white;
  display: none;
  position: absolute;
  top: 39px;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.4s;
}
@media (max-width: 1024px) {
  .common-header__menuToggleTxt {
    font-size: 12px;
    display: block;
    top: 18px;
  }
}
@media (max-width: 767px) {
  .common-header__menuToggleTxt {
    font-size: 5px;
    font-size: 2.6666666667vw;
    top: 2.1333333333vw;
  }
}
@media (max-width: 1024px) {
  .common-header__menuToggleTxt.menu {
    opacity: 1;
  }
}
.common-header__menuToggleTxt.close {
  display: block;
  transform: translateX(-50%) rotateX(0deg);
  transform-origin: center;
  opacity: 0;
}
@media (max-width: 1024px) {
  .common-header__menuToggleTxt.close {
    top: 28px;
  }
}
@media (max-width: 767px) {
  .common-header__menuToggleTxt.close {
    top: 2.6666666667vw;
  }
}
.common-header__search {
  position: absolute;
  top: calc(100% + 1.25vw);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
@media screen and (max-width: 1280px) {
  .common-header__search {
    top: calc(100% + 16px);
  }
}
@media (max-width: 767px) {
  .common-header__search {
    top: calc(100% + 3.2vw);
  }
}
.common-header__searchInner {
  width: 123px;
  transition: width 0.4s;
}
@media (max-width: 767px) {
  .common-header__searchInner {
    width: 32.8vw;
  }
}
.common-header__search.is-active .common-header__searchInner {
  width: 323px;
}
@media (max-width: 767px) {
  .common-header__search.is-active .common-header__searchInner {
    width: 86.1333333333vw;
  }
}
.common-header__search.is-active .common-header__searchFormInner {
  padding: 8px 80px 8px 16px;
}
@media (max-width: 767px) {
  .common-header__search.is-active .common-header__searchFormInner {
    padding: 2.1333333333vw 21.3333333333vw 2.1333333333vw 4.2666666667vw;
  }
}
.common-header__search.is-active .common-header__searchFormBtn {
  opacity: 1;
  pointer-events: auto;
  transition-duration: 0.4s;
  transition-delay: 0.2s;
}
.common-header__searchForm {
  width: 100%;
  background: white;
  border-radius: 18px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .common-header__searchForm {
    border-radius: 4.8vw;
  }
}
@media (max-width: 767px) {
  .common-header__searchForm:before {
    content: "";
    width: 100%;
    height: 100%;
    border: solid 0.2666666667vw #b9b9b9;
    border-radius: 4.8vw;
    opacity: 0;
    transition: 0.4s;
    position: absolute;
    top: 0;
    left: 0;
  }
}
.common-header__searchFormInner {
  font-size: 13px;
  line-height: 1.4615384615;
  font-weight: 400;
  letter-spacing: 0.1em;
  padding: 8px 8px 8px 16px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: normal;
  flex-direction: row;
  position: relative;
  transition: 0.4s;
}
@media (max-width: 767px) {
  .common-header__searchFormInner {
    font-size: 6.5px;
    font-size: 3.4666666667vw;
    padding: 2.1333333333vw 2.1333333333vw 2.1333333333vw 4.2666666667vw;
  }
}
.common-header__searchFormIcn {
  line-height: 1;
  min-width: 19px;
  height: 19px;
  margin-right: 12px;
  display: block;
}
@media (max-width: 767px) {
  .common-header__searchFormIcn {
    min-width: 5.0666666667vw;
    height: 5.0666666667vw;
    margin-right: 3.2vw;
  }
}
.common-header__searchFormIcn > svg {
  width: 100%;
  height: 100%;
  display: block;
}
.common-header__searchFormInput {
  width: 100%;
  display: block;
  outline: none;
}
.common-header__searchFormInput::-moz-placeholder {
  color: #b1b1b1;
}
.common-header__searchFormInput::placeholder {
  color: #b1b1b1;
}
.common-header__searchFormInput::-webkit-input-placeholder {
  color: #b1b1b1;
}
.common-header__searchFormBtn {
  color: white;
  background: #de6c38;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4615384615;
  letter-spacing: 0.1em;
  width: 63px;
  height: 25px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: normal;
  flex-direction: row;
  border-radius: 18px;
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  transition-duration: 0.2s;
  transition-delay: 0s;
}
@media (max-width: 767px) {
  .common-header__searchFormBtn {
    font-size: 6.5px;
    font-size: 3.4666666667vw;
    width: 16.8vw;
    height: 6.6666666667vw;
    border-radius: 4.8vw;
    right: 1.3333333333vw;
  }
}
.common-header__cta {
  position: absolute;
  top: 134px;
  right: -100%;
  transition: right 0.5s ease-out;
  z-index: 5;
}
@media (max-width: 1024px) {
  .common-header__cta {
    display: none;
  }
}
.common-header__cta.is-active {
  right: -29px;
}
.common-header__cta:hover {
  opacity: 1;
}
.common-header__cta:hover .common-header__ctaWanko {
  transform: translateY(-18%);
}
@media (max-width: 767px) {
  .common-header__cta:hover .common-header__ctaWanko {
    transform: translateY(0%);
  }
}
.common-header__cta > span {
  display: block;
}
.common-header__cta > span img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.common-header__ctaWanko {
  width: 133px;
  position: absolute;
  top: -88px;
  left: 60px;
  z-index: 1;
  transition: transform 0.5s ease;
}
.common-header__ctaHand {
  width: 63px;
  position: absolute;
  z-index: 3;
  top: -18px;
  left: 33px;
  transform: rotateY(180deg) rotateZ(1.6deg);
}
.common-header__ctaCont {
  position: relative;
  z-index: 2;
}
.common-header__ctaContBg {
  width: 100%;
  display: block;
  position: relative;
}
.common-header__ctaContBg svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}

/*  layout > footer
============================================================================================================ */
.common-footer {
  position: relative;
  background-color: #de6c38;
  color: white;
}
.common-footer__inner {
  max-width: 768px;
  width: 100%;
  padding: 40px 0 10px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: stretch;
  flex-direction: column;
}
@media (max-width: 767px) {
  .common-footer__inner {
    max-width: 89.3333333333vw;
    padding: 12.2666666667vw 0 4.2666666667vw;
  }
}
.common-footer__logo {
  width: 245px;
  height: auto;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .common-footer__logo {
    width: 59.4666666667vw;
  }
}
.common-footer__logo svg {
  width: 100%;
}
.common-footer__navMenu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: normal;
  align-content: normal;
  flex-direction: row;
  -moz-column-gap: 38px;
       column-gap: 38px;
  line-height: 1;
  margin: 50px 0;
}
@media (max-width: 767px) {
  .common-footer__navMenu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-direction: column;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 9.6vw;
    margin: 9.8666666667vw 0 10.6666666667vw;
  }
}
.common-footer__navMenu li {
  font-size: 17px;
  font-weight: 900;
  line-height: 1.1176470588;
  letter-spacing: 0.15em;
}
@media (max-width: 767px) {
  .common-footer__navMenu li {
    font-size: 8.5px;
    font-size: 4.5333333333vw;
  }
}
.common-footer__navMenu li a {
  position: relative;
}
.common-footer__navMenu li a:hover {
  opacity: 1;
}
.common-footer__sns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: row;
  -moz-column-gap: 20px;
       column-gap: 20px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .common-footer__sns {
    -moz-column-gap: 7.4666666667vw;
         column-gap: 7.4666666667vw;
  }
}
.common-footer__sns > a {
  width: 50px;
}
@media (max-width: 767px) {
  .common-footer__sns > a {
    width: 11.2vw;
  }
}
.common-footer__sns > a > svg {
  width: 100%;
  height: 100%;
  display: block;
}
.common-footer hr {
  width: 100%;
  border: 1px solid white;
  margin: 25px 0;
}
@media (max-width: 767px) {
  .common-footer hr {
    border: 0.5333333333vw solid white;
    margin: 7.4666666667vw 0;
  }
}
.common-footer__banner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: row;
}
.common-footer__banner-element {
  cursor: pointer;
  display: block;
  width: 263px;
  height: 120px;
  margin: 0 15px;
}
@media (max-width: 767px) {
  .common-footer__banner-element {
    width: 70.1333333333vw;
    height: 32vw;
    margin: 0 0 4.8vw;
  }
}
.common-footer__privacy {
  font-size: 13px;
  line-height: 1.4615384615;
  letter-spacing: 0.15em;
  display: inline-block;
  margin-top: 26px;
}
@media (max-width: 767px) {
  .common-footer__privacy {
    font-size: 7px;
    font-size: 3.7333333333vw;
    line-height: 1.3571428571;
    margin-top: 3.7333333333vw;
  }
}
.common-footer__management {
  font-size: 12px;
  line-height: 1.5833333333;
  letter-spacing: 0.15em;
  text-align: center;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .common-footer__management {
    font-size: 6px;
    font-size: 3.2vw;
    margin: 7.4666666667vw 0 0;
  }
}
.common-footer__copyright {
  font-size: 12px;
  line-height: 1.5833333333;
  letter-spacing: 0.15em;
  text-align: center;
  display: block;
  margin-top: 4px;
}
@media (max-width: 767px) {
  .common-footer__copyright {
    font-size: 2.9333333333vw;
    line-height: 1.7272727273;
    margin-top: 0.8vw;
  }
}

/* layout > front page （TOP,HOME）
============================================================================================================ */
/* layout > archive
============================================================================================================ */
.archive-news {
  max-width: 764px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .archive-news {
    max-width: 178.9333333333vw;
  }
}

/*  layout > container
============================================================================================================ */
.l-container--1000 {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1024px) {
  .l-container--1000 {
    max-width: 95%;
  }
}
@media (max-width: 767px) {
  .l-container--1000 {
    max-width: 184vw;
  }
}

/* layout > contact
============================================================================================================ */
.page-contact__inner {
  max-width: 584px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .page-contact__inner {
    max-width: 168vw;
  }
}
.page-contact .common-heading {
  margin-bottom: 71px;
}
@media (max-width: 767px) {
  .page-contact .common-heading {
    margin-bottom: 17.3333333333vw;
  }
}
.page-contact__intro {
  font-size: 14px;
  font-size: 0.9333333333rem;
}
@media (max-width: 767px) {
  .page-contact__intro {
    font-size: 14px;
    font-size: 7.4666666667vw;
  }
}
.page-contact__intro a {
  color: blue;
  text-decoration: underline;
}
.page-contact__note {
  font-size: 11px;
  font-size: 0.7333333333rem;
  display: block;
  margin: 71px 0 25px;
}
@media (max-width: 767px) {
  .page-contact__note {
    font-size: 14px;
    font-size: 7.4666666667vw;
    margin: 21.3333333333vw 0 16vw;
  }
}

.page.confirm .page-contact__intro {
  text-align: center;
  margin-bottom: 71px;
}
@media (max-width: 767px) {
  .page.confirm .page-contact__intro {
    margin-bottom: 26.6666666667vw;
  }
}

.page.thanks .page-contact .common-heading {
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .page.thanks .page-contact .common-heading {
    margin-bottom: 21.3333333333vw;
  }
}
.page.thanks .page-contact__thanksLogo {
  width: 260px;
  margin: 0 auto 41px;
}
@media (max-width: 767px) {
  .page.thanks .page-contact__thanksLogo {
    width: 105.0666666667vw;
    margin-bottom: 22.6666666667vw;
  }
}
.page.thanks .page-contact__intro {
  text-align: center;
  line-height: 2.2857142857;
  margin-bottom: 69px;
}
@media (max-width: 767px) {
  .page.thanks .page-contact__intro {
    line-height: 2.0714285714;
    margin-bottom: 26.6666666667vw;
  }
}

/*  layout > form
============================================================================================================ */
.form__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: normal;
  align-content: normal;
  flex-direction: row;
}
@media (max-width: 767px) {
  .form__row {
    align-items: flex-start;
  }
}
.form__row:nth-of-type(n + 2) {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .form__row:nth-of-type(n + 2) {
    margin-top: 16vw;
  }
}
.form__row.kinds .form__col:nth-of-type(2) {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: normal;
  align-content: normal;
  flex-direction: row;
}
.form__row.content {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .form__row.content {
    margin-top: 16vw;
  }
}
.form__col:first-of-type {
  font-size: 14px;
  font-size: 0.9333333333rem;
  line-height: 2;
  width: 173px;
}
@media (max-width: 767px) {
  .form__col:first-of-type {
    font-size: 14px;
    font-size: 7.4666666667vw;
    line-height: 1.25;
    width: 100%;
    margin-bottom: 5.3333333333vw;
  }
}
.form__col:nth-of-type(2) {
  font-size: 14px;
  font-size: 0.9333333333rem;
  width: 411px;
}
@media (max-width: 767px) {
  .form__col:nth-of-type(2) {
    font-size: 14px;
    font-size: 7.4666666667vw;
    width: 100%;
  }
}
.form__note {
  font-size: 14px;
  font-size: 0.9333333333rem;
  display: block;
  width: 100%;
  margin-top: 16px;
}
@media (max-width: 767px) {
  .form__note {
    font-size: 14px;
    font-size: 7.4666666667vw;
    text-indent: -1em;
    padding-left: 1em;
    margin-top: 8vw;
  }
}
.form__note a {
  color: blue;
  text-decoration: underline;
}
.form__btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: normal;
  align-content: normal;
  flex-direction: row;
  margin-top: 70px;
}
@media (max-width: 767px) {
  .form__btn {
    align-items: center;
    flex-direction: column-reverse;
    margin-top: 26.6666666667vw;
  }
}
.form__btn-col.submit {
  margin-top: 0;
}
.form__btn-col.back {
  margin-top: 0;
}
.form__btn-col.back:before {
  left: auto;
  right: 0;
  transform: rotateY(180deg);
}

/* layout > privacy-policy
============================================================================================================ */
.page-privacy {
  padding-top: 166px;
}
@media (max-width: 767px) {
  .page-privacy {
    padding-top: 24.2666666667vw;
  }
}
.page-privacy__inner {
  max-width: 660px;
  width: 100%;
  padding-top: 50px;
  padding-right: 20px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .page-privacy__inner {
    max-width: 89.3333333333vw;
    padding-top: 8vw;
    padding-right: 0;
  }
}
.page-privacy__intro {
  margin-bottom: 49px;
}
@media (max-width: 767px) {
  .page-privacy__intro {
    margin-bottom: 13.0666666667vw;
  }
}
.page-privacy__editor > *:first-child {
  margin-top: 0;
}
.page-privacy__editor > *:last-child {
  margin-bottom: 0;
}
.page-privacy__editorHeading {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.6818181818;
  letter-spacing: 0em;
  padding-left: 42px;
  margin-top: 49px;
  margin-bottom: 21px;
  position: relative;
}
@media (max-width: 767px) {
  .page-privacy__editorHeading {
    font-size: 8.5px;
    font-size: 4.5333333333vw;
    line-height: 1.7058823529;
    padding-left: 9.0666666667vw;
    margin-top: 13.0666666667vw;
    margin-bottom: 3.2vw;
  }
}
.page-privacy__editorHeading > span {
  line-height: 1;
  width: 30px;
  position: absolute;
  top: 5px;
  left: 0;
}
@media (max-width: 767px) {
  .page-privacy__editorHeading > span {
    width: 6.4vw;
  }
}
.page-privacy__editorHeading > span > svg {
  width: 100%;
  height: 100%;
  display: block;
}
.page-privacy__editorCont {
  line-height: 1.73;
  text-align: justify;
  padding-left: 42px;
}
@media (max-width: 767px) {
  .page-privacy__editorCont {
    line-height: 1.72;
    padding-left: 0;
  }
}
.page-privacy__editorCont ul {
  padding-left: 1rem;
}
.page-privacy__editorCont ul li {
  list-style-type: disc;
}
.page-privacy__editorCont a {
  text-decoration: underline;
  word-wrap: break-word;
}
.page-privacy__ena {
  margin-top: 51px;
  display: inline-block;
}
@media (max-width: 767px) {
  .page-privacy__ena {
    margin-top: 13.6vw;
  }
}

/* layout > 404
============================================================================================================ */
.page-404 {
  padding: 103px 0 0;
}
@media (max-width: 767px) {
  .page-404 {
    padding: 24.5333333333vw 0 0;
  }
}
.page-404__heading {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .page-404__heading {
    max-width: 100%;
  }
}
.page-404__headingIcn {
  line-height: 1;
  display: block;
  position: absolute;
}
@media (max-width: 767px) {
  .page-404__headingIcn {
    display: none;
  }
}
.page-404__headingIcn.left {
  width: 89px;
  top: 59px;
  left: 50%;
  transform: translateX(-630%) rotate(20deg);
}
.page-404__headingIcn.right {
  width: 70px;
  top: 439px;
  right: 50%;
  transform: translateX(785%) rotate(-125deg);
}
.page-404__headingIcn > svg {
  width: 100%;
  height: 100%;
  display: block;
}
.page-404__headingInner {
  width: 602px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: stretch;
  flex-direction: row;
  -moz-column-gap: 96px;
       column-gap: 96px;
}
@media (max-width: 767px) {
  .page-404__headingInner {
    width: 75.7333333333vw;
    padding-right: 6.1333333333vw;
    flex-direction: column;
    -moz-column-gap: 0;
         column-gap: 0;
  }
}
.page-404__headingInnerTxt {
  width: 253px;
  line-height: 1;
  margin-top: 67px;
}
@media (max-width: 767px) {
  .page-404__headingInnerTxt {
    width: 41.6vw;
    margin-top: 0;
  }
}
.page-404__headingInnerTxt > svg {
  width: 100%;
  height: 100%;
  display: block;
}
.page-404__headingInnerIcn {
  width: 201px;
  line-height: 1;
  transform: rotate(22deg);
}
@media (max-width: 767px) {
  .page-404__headingInnerIcn {
    width: 34.4vw;
    margin-top: -1.8666666667vw;
    margin-left: auto;
  }
}
.page-404__headingInnerIcn > svg {
  width: 100%;
  height: 100%;
  display: block;
}
.page-404__inner {
  padding-top: 36px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  flex-direction: column;
  row-gap: 225px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1024px) {
  .page-404__inner {
    padding-top: 3.515625vw;
    row-gap: 21.97265625vw;
  }
}
@media (max-width: 767px) {
  .page-404__inner {
    padding-top: 0;
    margin-top: -4.8vw;
    row-gap: 37.3333333333vw;
  }
}
.page-404__innerIcn {
  line-height: 1;
  width: 71px;
  display: block;
  position: absolute;
  left: 50%;
  bottom: 99px;
  transform: translate(-51%) rotate(-172deg);
}
@media (max-width: 1024px) {
  .page-404__innerIcn {
    bottom: 9.66796875vw;
  }
}
@media (max-width: 767px) {
  .page-404__innerIcn {
    width: 10.1333333333vw;
    bottom: 20.2666666667vw;
    transform: translate(-48%) rotate(-137deg);
  }
}
.page-404__innerIcn > svg {
  width: 100%;
  height: 100%;
  display: block;
}
.page-404__inner .c-sb {
  padding: 0 30px;
  margin: 0 auto;
  background: transparent;
  border-radius: 0;
}
@media (max-width: 1024px) {
  .page-404__inner .c-sb {
    padding: 0 2.9296875vw;
  }
}
@media (max-width: 767px) {
  .page-404__inner .c-sb {
    padding: 0 7.7333333333vw 0 8vw;
  }
}
.page-404__inner .c-sb__item {
  width: 533px;
}
@media (max-width: 1024px) {
  .page-404__inner .c-sb__item {
    width: 52.05078125vw;
  }
}
@media (max-width: 767px) {
  .page-404__inner .c-sb__item {
    width: 100%;
  }
}
.page-404__inner .c-sb__item:nth-of-type(odd) {
  padding-right: 0;
}
.page-404__inner .c-sb__item:nth-of-type(even) {
  padding-left: 0;
  margin-left: auto;
}
.page-404__inner .c-sb__itemIcnInner {
  top: 13px;
}
@media (max-width: 1024px) {
  .page-404__inner .c-sb__itemIcnInner {
    top: 1.26953125vw;
  }
}
@media (max-width: 767px) {
  .page-404__inner .c-sb__itemIcnInner {
    top: 0;
  }
}
.page-404__inner .c-sb__itemCont {
  width: 430px;
}
@media (max-width: 1024px) {
  .page-404__inner .c-sb__itemCont {
    width: 41.9921875vw;
  }
}
@media (max-width: 767px) {
  .page-404__inner .c-sb__itemCont {
    width: 100%;
  }
}
.page-404__inner .c-btn {
  padding: 9px 78px;
}
@media (max-width: 767px) {
  .page-404__inner .c-btn {
    padding: 2.1333333333vw 20.8vw;
  }
}

/* layout > page
============================================================================ */
/* layout > page > about
============================================================================================================ */
.page-about {
  padding-top: 80px;
}
.page-about__intro {
  width: 680px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .page-about__intro {
    width: 89.3333333333vw;
  }
}
.page-about__intro .c-heading {
  position: relative;
  z-index: 2;
}
.page-about__introCont {
  background: white;
  padding: 51px 90px 40px 90px;
  margin-top: -22px;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .page-about__introCont {
    padding: 12.5333333333vw 5.3333333333vw 8vw;
    margin-top: -6.9333333333vw;
    box-shadow: 0 1.0666666667vw 2.6666666667vw 0 rgba(0, 0, 0, 0.1);
  }
}
.page-about__aboutBasic {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .page-about__aboutBasic {
    padding-top: 16vw;
  }
}
.page-about__aboutBasicSb {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .page-about__aboutBasicSb {
    margin-top: 8vw;
  }
}
.page-about__aboutBasicSb.low {
  margin-top: 0;
}
.page-about__aboutBasicThumb {
  max-width: 1077px;
  width: 100%;
  margin: 98px auto 106px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: normal;
  flex-direction: row;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .page-about__aboutBasicThumb {
    max-width: 84.140625vw;
    margin: 7.65625vw auto 8.28125vw;
  }
}
@media (max-width: 767px) {
  .page-about__aboutBasicThumb {
    max-width: 87.2vw;
    padding-left: 1.3333333333vw;
    margin: 19.2vw auto 21.8666666667vw;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 22.9333333333vw;
  }
}
.page-about__aboutBasicThumbItem {
  width: 426px;
  height: 232px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1280px) {
  .page-about__aboutBasicThumbItem {
    width: 33.28125vw;
    height: 18.125vw;
  }
}
@media (max-width: 767px) {
  .page-about__aboutBasicThumbItem {
    width: 59.4666666667vw;
    height: 32.5333333333vw;
    box-shadow: 0 1.0666666667vw 2.6666666667vw 0 rgba(0, 0, 0, 0.1);
  }
}
.page-about__aboutBasicThumbItem:first-of-type {
  transform: rotate(-5.97deg);
}
@media (max-width: 767px) {
  .page-about__aboutBasicThumbItem:first-of-type {
    transform: rotate(-11.85deg);
  }
}
.page-about__aboutBasicThumbItem:first-of-type span.icn {
  left: -29px;
  bottom: -22px;
  transform: rotate(-21deg);
}
@media screen and (max-width: 1280px) {
  .page-about__aboutBasicThumbItem:first-of-type span.icn {
    left: -2.265625vw;
    bottom: -1.71875vw;
  }
}
@media (max-width: 767px) {
  .page-about__aboutBasicThumbItem:first-of-type span.icn {
    left: calc(100% + 10.1333333333vw);
    bottom: 7.7333333333vw;
    transform: rotate(-1deg);
  }
}
.page-about__aboutBasicThumbItem:nth-of-type(2) {
  position: absolute;
  top: 34px;
  left: 50%;
  transform: translateX(-48%) rotate(5.86deg);
  z-index: 2;
}
@media screen and (max-width: 1280px) {
  .page-about__aboutBasicThumbItem:nth-of-type(2) {
    top: 2.65625vw;
  }
}
@media (max-width: 767px) {
  .page-about__aboutBasicThumbItem:nth-of-type(2) {
    top: 50%;
    left: auto;
    right: 0;
    transform: translateY(-52%) rotate(5.86deg);
  }
}
.page-about__aboutBasicThumbItem:nth-of-type(2) span.icn {
  display: none;
}
@media (max-width: 767px) {
  .page-about__aboutBasicThumbItem:nth-of-type(2) span.icn {
    display: block;
    right: calc(100% + 13.0666666667vw);
    bottom: 10.4vw;
    transform: rotate(4deg);
  }
}
.page-about__aboutBasicThumbItem:last-of-type {
  transform: rotate(5.58deg);
}
@media (max-width: 767px) {
  .page-about__aboutBasicThumbItem:last-of-type {
    transform: rotate(-1.17deg);
  }
}
.page-about__aboutBasicThumbItem:last-of-type span.icn {
  right: -16px;
  top: -55px;
  transform: rotate(19deg);
}
@media screen and (max-width: 1280px) {
  .page-about__aboutBasicThumbItem:last-of-type span.icn {
    right: -1.25vw;
    top: -4.296875vw;
  }
}
@media (max-width: 767px) {
  .page-about__aboutBasicThumbItem:last-of-type span.icn {
    top: auto;
    bottom: 4vw;
    right: -10.6666666667vw;
    transform: rotate(30deg);
  }
}
.page-about__aboutBasicThumbItem span.icn {
  width: 77px;
  display: block;
  position: absolute;
}
@media screen and (max-width: 1280px) {
  .page-about__aboutBasicThumbItem span.icn {
    width: 6.015625vw;
  }
}
@media (max-width: 767px) {
  .page-about__aboutBasicThumbItem span.icn {
    width: 12.5333333333vw;
  }
}
.page-about__aboutBasicThumbItem span.icn svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}
@media (max-width: 767px) {
  .page-about__aboutBasicThumbItem span.icn svg {
    filter: drop-shadow(0 1.0666666667vw 2.6666666667vw rgba(0, 0, 0, 0.1));
  }
}
.page-about__history {
  margin-top: 180px;
}
.page-about__historyInner {
  padding-top: 80px;
}
.page-about__historyNmSb {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .page-about__historyNmSb {
    margin-top: 8vw;
  }
}
.page-about__historyNmCont {
  max-width: 1160px;
  width: 100%;
  padding-top: 80px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: normal;
  flex-direction: row;
}
@media screen and (max-width: 1280px) {
  .page-about__historyNmCont {
    max-width: 90.625vw;
  }
}
@media (max-width: 767px) {
  .page-about__historyNmCont {
    max-width: 89.3333333333vw;
    padding-top: 16vw;
    flex-direction: column;
  }
}
.page-about__historyNmContInner {
  width: 405px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: normal;
  flex-direction: column;
  row-gap: 68px;
}
@media screen and (max-width: 1280px) {
  .page-about__historyNmContInner {
    width: 31.640625vw;
    row-gap: 5.3125vw;
  }
}
@media (max-width: 1024px) {
  .page-about__historyNmContInner {
    width: 39.55078125vw;
    row-gap: 6.640625vw;
  }
}
@media (max-width: 767px) {
  .page-about__historyNmContInner {
    width: 100%;
    align-items: center;
    row-gap: 7.4666666667vw;
  }
}
.page-about__historyNmContTxt {
  text-align: justify;
}
.page-about__historyNmContImg {
  width: calc(100% - 435px);
  height: 397px;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1280px) {
  .page-about__historyNmContImg {
    width: calc(100% - 33.984375vw);
  }
}
@media (max-width: 1024px) {
  .page-about__historyNmContImg {
    width: calc(100% - 42.48046875vw);
  }
}
@media (max-width: 767px) {
  .page-about__historyNmContImg {
    width: 100%;
    height: 49.0666666667vw;
    margin-bottom: 4.5333333333vw;
    box-shadow: 0 1.0666666667vw 2.6666666667vw 0 rgba(0, 0, 0, 0.1);
  }
}
.page-about__history .c-newsList__wrap {
  margin-top: 120px;
}
@media (max-width: 767px) {
  .page-about__history .c-newsList__wrap {
    margin-top: 16vw;
  }
}
.page-about__historyFamous {
  margin-top: 120px;
}
@media (max-width: 767px) {
  .page-about__historyFamous {
    margin-top: 21.3333333333vw;
  }
}
.page-about__historyFamousSb {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .page-about__historyFamousSb {
    margin-top: 8vw;
  }
}
.page-about__historyFamousCont {
  max-width: 1160px;
  width: 100%;
  padding-top: 80px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: normal;
  flex-direction: row;
}
@media screen and (max-width: 1280px) {
  .page-about__historyFamousCont {
    max-width: 90.625vw;
  }
}
@media (max-width: 767px) {
  .page-about__historyFamousCont {
    max-width: 89.3333333333vw;
    padding-top: 16vw;
    flex-direction: column-reverse;
  }
}
.page-about__historyFamousContInner {
  width: 405px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: normal;
  flex-direction: column;
  row-gap: 68px;
}
@media screen and (max-width: 1280px) {
  .page-about__historyFamousContInner {
    width: 31.640625vw;
    row-gap: 5.3125vw;
  }
}
@media (max-width: 1024px) {
  .page-about__historyFamousContInner {
    width: 39.55078125vw;
    row-gap: 6.640625vw;
  }
}
@media (max-width: 767px) {
  .page-about__historyFamousContInner {
    width: 100%;
    align-items: center;
    row-gap: 7.4666666667vw;
  }
}
.page-about__historyFamousContTxt {
  text-align: justify;
}
.page-about__historyFamousContImg {
  width: calc(100% - 435px);
  height: 397px;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1280px) {
  .page-about__historyFamousContImg {
    width: calc(100% - 33.984375vw);
  }
}
@media (max-width: 1024px) {
  .page-about__historyFamousContImg {
    width: calc(100% - 42.48046875vw);
  }
}
@media (max-width: 767px) {
  .page-about__historyFamousContImg {
    width: 100%;
    height: 49.0666666667vw;
    margin-bottom: 4.5333333333vw;
    box-shadow: 0 1.0666666667vw 2.6666666667vw 0 rgba(0, 0, 0, 0.1);
  }
}
.page-about__historyHound {
  margin-top: 120px;
}
@media (max-width: 767px) {
  .page-about__historyHound {
    margin-top: 21.0666666667vw;
  }
}
.page-about__historyHoundSb {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .page-about__historyHoundSb {
    margin-top: 8vw;
  }
}
.page-about__historyHoundCont {
  padding: 70px 0 60px;
  margin-top: 80px;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .page-about__historyHoundCont {
    padding: 5.46875vw 0 4.6875vw;
  }
}
.page-about__historyHoundContInner {
  text-align: justify;
  width: 666px;
  padding-right: 261px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: normal;
  flex-direction: column;
  row-gap: 68px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1280px) {
  .page-about__historyHoundContInner {
    width: 52.03125vw;
    padding-right: 20.390625vw;
    row-gap: 5.3125vw;
  }
}
@media (max-width: 767px) {
  .page-about__historyHoundContInner {
    width: 89.3333333333vw;
    margin-top: 8.2666666667vw;
    padding-right: 33.3333333333vw;
    row-gap: 7.4666666667vw;
  }
}
.page-about__historyHoundContInner span.icn {
  line-height: 1;
  width: 291px;
  display: block;
  position: absolute;
  top: calc(100% - 34px);
  left: 115px;
  transform: rotate(-14deg);
}
@media screen and (max-width: 1280px) {
  .page-about__historyHoundContInner span.icn {
    width: 22.734375vw;
    left: 8.984375vw;
  }
}
@media (max-width: 767px) {
  .page-about__historyHoundContInner span.icn {
    width: 41.0666666667vw;
    top: calc(100% - 83.2vw);
    left: auto;
    right: -1.0666666667vw;
    transform: rotate(0deg);
  }
}
.page-about__historyHoundContInner span.icn > svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}
@media (max-width: 767px) {
  .page-about__historyHoundContInner span.icn > svg {
    filter: drop-shadow(0 1.0666666667vw 2.6666666667vw rgba(0, 0, 0, 0.1));
  }
}
.page-about__historyHoundContImg {
  width: 1240px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
@media screen and (max-width: 1280px) {
  .page-about__historyHoundContImg {
    width: 96.875vw;
  }
}
@media (max-width: 767px) {
  .page-about__historyHoundContImg {
    width: 89.0666666667vw;
    height: 66.6666666667vw;
    margin: 0 auto;
    position: relative;
    top: auto;
    left: auto;
    transform: translate(0%);
  }
}
.page-about__historyHoundContImgItem {
  width: 240px;
  height: 372px;
  position: absolute;
}
@media screen and (max-width: 1280px) {
  .page-about__historyHoundContImgItem {
    width: 18.75vw;
  }
}
@media (max-width: 767px) {
  .page-about__historyHoundContImgItem {
    width: 27.7333333333vw;
    aspect-ratio: 0.52;
  }
}
.page-about__historyHoundContImgItem:first-of-type {
  left: 0;
  bottom: 0;
}
.page-about__historyHoundContImgItem:nth-of-type(2) {
  top: 0;
  left: 50%;
  transform: translateX(50%);
}
@media (max-width: 767px) {
  .page-about__historyHoundContImgItem:nth-of-type(2) {
    transform: translateX(-50%);
  }
}
.page-about__historyHoundContImgItem:last-of-type {
  top: 50%;
  right: 0;
  transform: translateY(-43%);
}
@media (max-width: 767px) {
  .page-about__historyHoundContImgItem:last-of-type {
    transform: translateY(3%);
  }
}
.page-about__history .c-newsList__wrap {
  margin-top: 120px;
}
@media (max-width: 767px) {
  .page-about__history .c-newsList__wrap {
    margin-top: 16vw;
  }
}
.page-about__wh {
  margin-top: 180px;
}
@media (max-width: 767px) {
  .page-about__wh {
    margin-top: 21.3333333333vw;
  }
}
.page-about__whInner {
  padding-top: 80px;
}
.page-about__whExCont {
  max-width: 1001px;
  width: 100%;
  padding-top: 80px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: normal;
  flex-direction: row;
}
@media screen and (max-width: 1280px) {
  .page-about__whExCont {
    max-width: 78.203125vw;
  }
}
@media (max-width: 1024px) {
  .page-about__whExCont {
    max-width: 88.671875vw;
  }
}
@media (max-width: 767px) {
  .page-about__whExCont {
    max-width: 89.3333333333vw;
    padding-top: 16vw;
    flex-direction: column;
  }
}
.page-about__whExContInner {
  width: 405px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: normal;
  flex-direction: column;
  row-gap: 68px;
}
@media screen and (max-width: 1280px) {
  .page-about__whExContInner {
    width: 31.640625vw;
    row-gap: 5.3125vw;
  }
}
@media (max-width: 1024px) {
  .page-about__whExContInner {
    width: 35.83984375vw;
    row-gap: 2.63671875vw;
  }
}
@media (max-width: 767px) {
  .page-about__whExContInner {
    width: 100%;
    align-items: center;
    row-gap: 7.4666666667vw;
  }
}
.page-about__whExContTxt {
  text-align: justify;
}
.page-about__whExContImg {
  width: calc(100% - 435px);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: normal;
  flex-direction: row;
  gap: 10px;
}
@media screen and (max-width: 1280px) {
  .page-about__whExContImg {
    width: calc(100% - 33.90625vw);
    gap: 0.78125vw;
  }
}
@media (max-width: 1024px) {
  .page-about__whExContImg {
    width: calc(100% - 35.83984375vw);
    gap: 0.87890625vw;
  }
}
@media (max-width: 767px) {
  .page-about__whExContImg {
    width: 100%;
    margin-bottom: 8.2666666667vw;
    gap: 2.6666666667vw;
  }
}
.page-about__whExContImgItem {
  width: 182px;
  aspect-ratio: 1;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1280px) {
  .page-about__whExContImgItem {
    width: 14.21875vw;
  }
}
@media (max-width: 1024px) {
  .page-about__whExContImgItem {
    width: 16.11328125vw;
  }
}
@media (max-width: 767px) {
  .page-about__whExContImgItem {
    width: 28vw;
    box-shadow: 0 1.0666666667vw 2.6666666667vw 0 rgba(0, 0, 0, 0.1);
  }
}
.page-about__whCurrent {
  margin-top: 120px;
}
.page-about__whCurrentCont {
  max-width: 1203px;
  width: 100%;
  padding-top: 80px;
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  align-content: normal;
  flex-direction: row;
}
@media screen and (max-width: 1280px) {
  .page-about__whCurrentCont {
    max-width: 93.984375vw;
  }
}
@media (max-width: 767px) {
  .page-about__whCurrentCont {
    max-width: 100%;
    padding-top: 16vw;
    flex-direction: column-reverse;
  }
}
.page-about__whCurrentContInner {
  width: 485px;
  padding-top: 335px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: normal;
  flex-direction: column;
  position: relative;
  row-gap: 68px;
}
@media screen and (max-width: 1280px) {
  .page-about__whCurrentContInner {
    width: 37.890625vw;
    row-gap: 5.3125vw;
  }
}
@media (max-width: 1024px) {
  .page-about__whCurrentContInner {
    width: 47.36328125vw;
    row-gap: 6.640625vw;
  }
}
@media (max-width: 767px) {
  .page-about__whCurrentContInner {
    width: 89.3333333333vw;
    padding-top: 0;
    padding-left: 29.0666666667vw;
    margin: 0 auto;
    align-items: flex-end;
    row-gap: 7.4666666667vw;
  }
}
.page-about__whCurrentContInner span.icn {
  width: 290px;
  position: absolute;
  left: 50%;
  bottom: calc(100% - 256px);
  transform: translateX(-43%) rotate(-146deg);
}
@media (max-width: 767px) {
  .page-about__whCurrentContInner span.icn {
    width: 89.3333333333vw;
    bottom: calc(100% - 31.2vw);
    transform: translateX(-51%) rotate(0deg);
  }
}
.page-about__whCurrentContInner span.icn svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}
@media (max-width: 767px) {
  .page-about__whCurrentContInner span.icn svg {
    filter: drop-shadow(0 1.0666666667vw 2.6666666667vw rgba(0, 0, 0, 0.1));
  }
}
.page-about__whCurrentContTxt {
  text-align: justify;
}
.page-about__whCurrentContImg {
  width: calc(100% - 563px);
}
@media screen and (max-width: 1280px) {
  .page-about__whCurrentContImg {
    width: calc(100% - 43.984375vw);
  }
}
@media (max-width: 1024px) {
  .page-about__whCurrentContImg {
    width: calc(100% - 54.98046875vw);
  }
}
@media (max-width: 767px) {
  .page-about__whCurrentContImg {
    width: 60.5333333333vw;
    height: 81.0666666667vw;
    margin-bottom: 8.2666666667vw;
  }
}
.page-about__whCurrentContImgItem {
  height: 600px;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1280px) {
  .page-about__whCurrentContImgItem {
    height: 46.875vw;
  }
}
@media (max-width: 1024px) {
  .page-about__whCurrentContImgItem {
    height: 58.59375vw;
  }
}
@media (max-width: 767px) {
  .page-about__whCurrentContImgItem {
    width: 100%;
    height: 100%;
    box-shadow: 0 1.0666666667vw 2.6666666667vw 0 rgba(0, 0, 0, 0.1);
  }
}
.page-about__whCs {
  margin-top: 120px;
}
@media (max-width: 767px) {
  .page-about__whCs {
    margin-top: 21.3333333333vw;
  }
}
.page-about__whCsCont {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 71px 0 68px;
  margin-top: 80px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: normal;
  flex-direction: row;
}
@media (max-width: 767px) {
  .page-about__whCsCont {
    padding: 10.9333333333vw 0 10.4vw;
    margin-top: 16vw;
  }
}
.page-about__whCsCont:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  background-blend-mode: multiply;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.page-about__whCsContInner {
  text-align: center;
  color: white;
  width: 485px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: normal;
  flex-direction: column;
  row-gap: 48px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .page-about__whCsContInner {
    text-align: justify;
    width: 78.1333333333vw;
    row-gap: 8vw;
  }
}
.page-about__wh .c-newsList__wrap {
  margin-top: 120px;
}
@media (max-width: 767px) {
  .page-about__wh .c-newsList__wrap {
    margin-top: 16vw;
  }
}
.page-about__ftf {
  margin-top: 180px;
}
@media (max-width: 767px) {
  .page-about__ftf {
    margin-top: 26.6666666667vw;
  }
}
.page-about__ftfInner {
  padding-top: 101px;
}
@media (max-width: 767px) {
  .page-about__ftfInner {
    padding-top: 16vw;
  }
}
.page-about__ftfOnlineCont {
  width: 100%;
  height: 642px;
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: normal;
  flex-direction: row;
  position: relative;
}
@media (max-width: 767px) {
  .page-about__ftfOnlineCont {
    height: 141.6vw;
    margin-top: 8vw;
  }
}
.page-about__ftfOnlineContBg {
  width: 100%;
  height: 100%;
  background-image: url(./img/page/about-akitainu/bg_online.png);
  background-size: auto;
  background-repeat: repeat-x;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .page-about__ftfOnlineContBg {
    background-image: url(./img/page/about-akitainu/bg_online-sp.png);
    height: 100%;
    background-size: contain;
  }
}
.page-about__ftfOnlineContInner {
  text-align: center;
  background: #f8f8f8;
  width: 498px;
  height: 336px;
  padding: 21px 12px 0px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: normal;
  flex-direction: column;
  row-gap: 47px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .page-about__ftfOnlineContInner {
    text-align: justify;
    width: 63.4666666667vw;
    height: 104.2666666667vw;
    padding: 0.5333333333vw 7.7333333333vw 0;
    row-gap: 7.4666666667vw;
  }
}
.page-about__ftf .c-future {
  margin-top: 100px;
}
@media (max-width: 767px) {
  .page-about__ftf .c-future {
    margin-top: 26.6666666667vw;
  }
}
.page-about__ftf .c-newsList__wrap {
  margin-top: 100px;
}
@media (max-width: 767px) {
  .page-about__ftf .c-newsList__wrap {
    margin-top: 16vw;
  }
}

/* layout > page > activity
============================================================================================================ */
.page-activity__about {
  padding: 70px 0 80px;
  background-color: rgba(222, 222, 222, 0.3);
}
@media (max-width: 767px) {
  .page-activity__about {
    padding: 10.6666666667vw 0 13.3333333333vw;
  }
}
.page-activity__about-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: row;
  margin-bottom: 42px;
}
@media (max-width: 1024px) {
  .page-activity__about-top {
    margin-bottom: 4.1015625vw;
  }
}
@media (max-width: 767px) {
  .page-activity__about-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-direction: column;
    margin-bottom: 8vw;
  }
}
.page-activity__about-topG {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: row;
  margin-right: 26px;
}
@media (max-width: 1024px) {
  .page-activity__about-topG {
    margin-right: 2.5390625vw;
  }
}
@media (max-width: 767px) {
  .page-activity__about-topG {
    margin: 0;
  }
}
.page-activity__about-topG > p {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.7;
}
@media (max-width: 1024px) {
  .page-activity__about-topG > p {
    font-size: 12.5px;
    font-size: 2.44140625vw;
  }
}
@media (max-width: 767px) {
  .page-activity__about-topG > p {
    font-size: 5.8666666667vw;
  }
}
.page-activity__about-topG > img {
  width: 143px;
  margin-left: 6px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}
@media (max-width: 1024px) {
  .page-activity__about-topG > img {
    width: 13.96484375vw;
    margin-left: 0.5859375vw;
  }
}
@media (max-width: 767px) {
  .page-activity__about-topG > img {
    width: 35.2vw;
    margin-left: 1.6vw;
    filter: drop-shadow(0 1.0666666667vw 2.6666666667vw rgba(0, 0, 0, 0.1));
  }
}
@media (max-width: 767px) {
  .page-activity__about-topG:nth-of-type(2) {
    margin-top: 5.3333333333vw;
  }
}
.page-activity__about-topG:nth-of-type(2) > img {
  width: 220px;
  margin-left: 7px;
}
@media (max-width: 1024px) {
  .page-activity__about-topG:nth-of-type(2) > img {
    width: 21.484375vw;
    margin-left: 0.68359375vw;
  }
}
@media (max-width: 767px) {
  .page-activity__about-topG:nth-of-type(2) > img {
    width: 54.6666666667vw;
    margin-left: 1.8666666667vw;
  }
}
.page-activity__about-topG:nth-of-type(3) {
  margin: 0;
}
@media (max-width: 767px) {
  .page-activity__about-topG:nth-of-type(3) {
    margin-top: 5.3333333333vw;
  }
}
.page-activity__about-topG:nth-of-type(3) > img {
  width: 140px;
  margin-left: 5px;
}
@media (max-width: 1024px) {
  .page-activity__about-topG:nth-of-type(3) > img {
    width: 13.671875vw;
    margin-left: 0.48828125vw;
  }
}
@media (max-width: 767px) {
  .page-activity__about-topG:nth-of-type(3) > img {
    width: 34.9333333333vw;
    margin-left: 1.3333333333vw;
  }
}
.page-activity__about-bottom {
  font-size: 20px;
  line-height: 2;
  text-align: center;
  width: 580px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .page-activity__about-bottom {
    font-size: 10px;
    font-size: 1.953125vw;
    width: 56.640625vw;
  }
}
@media (max-width: 767px) {
  .page-activity__about-bottom {
    font-size: 8px;
    font-size: 4.2666666667vw;
    text-align: justify;
    width: 78.6666666667vw;
    line-height: 2;
  }
}
.page-activity__purpose {
  background-color: #f8f8f8;
  padding-top: 120px;
}
@media (max-width: 767px) {
  .page-activity__purpose {
    padding: 16vw 0 0;
  }
}
.page-activity__purpose-subTtl {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: row;
  -moz-column-gap: 20px;
       column-gap: 20px;
  padding: 76px 0 49px;
}
@media (max-width: 767px) {
  .page-activity__purpose-subTtl {
    -moz-column-gap: 3.2vw;
         column-gap: 3.2vw;
    padding: 8vw 0;
  }
}
.page-activity__purpose-subTtl > p {
  font-size: 37px;
  line-height: 1.4594594595;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .page-activity__purpose-subTtl > p {
    font-size: 6.9333333333vw;
    line-height: 1.4615384615;
  }
}
.page-activity__purpose-icn {
  line-height: 1;
  width: 67px;
  display: block;
  position: relative;
}
@media (max-width: 767px) {
  .page-activity__purpose-icn {
    width: 11.4666666667vw;
  }
}
.page-activity__purpose-icn.left {
  top: -16px;
  transform: rotate(-7.13deg);
}
@media (max-width: 767px) {
  .page-activity__purpose-icn.left {
    top: -0.8vw;
    left: -2.4vw;
  }
}
.page-activity__purpose-icn.right {
  transform: rotate(28.79deg);
}
@media (max-width: 767px) {
  .page-activity__purpose-icn.right {
    transform: rotate(22.6deg);
  }
}
.page-activity__purpose-icn > svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}
@media (max-width: 767px) {
  .page-activity__purpose-icn > svg {
    filter: drop-shadow(0 1.0666666667vw 2.6666666667vw rgba(0, 0, 0, 0.1));
  }
}
.page-activity__know {
  max-width: 1105px;
  width: 100%;
  padding-right: 78px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  flex-direction: row;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .page-activity__know {
    max-width: 86.328125vw;
    padding-right: 6.09375vw;
  }
}
@media (max-width: 767px) {
  .page-activity__know {
    max-width: 89.3333333333vw;
    padding-right: 0;
  }
}
.page-activity__know-img {
  width: 580px;
}
@media screen and (max-width: 1280px) {
  .page-activity__know-img {
    width: 45.3125vw;
  }
}
@media (max-width: 767px) {
  .page-activity__know-img {
    width: 100%;
    height: 52.8vw;
    top: auto;
    left: auto;
    transform: translateY(0);
    position: relative;
  }
}
.page-activity__know-txt {
  width: 405px;
}
@media screen and (max-width: 1280px) {
  .page-activity__know-txt {
    width: 31.640625vw;
  }
}
@media (max-width: 767px) {
  .page-activity__know-txt {
    text-align: justify;
    width: 100%;
    margin-top: 5.3333333333vw;
    margin-right: auto;
  }
}
.page-activity__know-txt > span.under {
  position: relative;
}
.page-activity__know-txt > span.under::after {
  position: absolute;
  content: "";
  width: 86%;
  height: 3px;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #de6c38;
}
@media (max-width: 767px) {
  .page-activity__know-txt > span.under::after {
    height: 0.8vw;
    bottom: -0.8vw;
  }
}
.page-activity__fromNow {
  position: relative;
  margin: 189px 0 0;
}
@media (max-width: 767px) {
  .page-activity__fromNow {
    margin: 21.6vw 0 0;
  }
}
.page-activity__fromNow-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.page-activity__fromNow-inner > img {
  position: absolute;
  width: 366px;
  height: 366px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1280px) {
  .page-activity__fromNow-inner > img {
    width: 28.59375vw;
  }
}
@media screen and (max-width: 1200px) {
  .page-activity__fromNow-inner > img {
    width: 25.46875vw;
  }
}
@media (max-width: 1024px) {
  .page-activity__fromNow-inner > img {
    width: 23.90625vw;
  }
}
@media screen and (max-width: 960px) {
  .page-activity__fromNow-inner > img {
    width: 22.34375vw;
  }
}
@media screen and (max-width: 900px) {
  .page-activity__fromNow-inner > img {
    width: 19.21875vw;
  }
}
@media (max-width: 767px) {
  .page-activity__fromNow-inner > img {
    width: 44.2666666667vw;
    height: 44.2666666667vw;
  }
}
.page-activity__fromNow-inner > img:nth-of-type(1) {
  left: 0;
  top: -60px;
}
@media (max-width: 767px) {
  .page-activity__fromNow-inner > img:nth-of-type(1) {
    top: 29.6vw;
  }
}
.page-activity__fromNow-inner > img:nth-of-type(2) {
  right: 0;
}
@media (max-width: 767px) {
  .page-activity__fromNow-inner > img:nth-of-type(2) {
    top: 37.8666666667vw;
  }
}
.page-activity__fromNow-cont {
  width: 464px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .page-activity__fromNow-cont {
    width: 89.3333333333vw;
  }
}
.page-activity__fromNow-txt {
  text-align: center;
  font-style: normal;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .page-activity__fromNow-txt {
    text-align: justify;
    margin-top: 69.6vw;
    font-size: 3.7333333333vw;
  }
}
.page-activity__fromNow-btn {
  text-align: center;
  margin: 69px 0 178px;
}
@media (max-width: 767px) {
  .page-activity__fromNow-btn {
    margin: 8vw 0 16vw;
  }
}
.page-activity__ourActivity {
  padding: 180px 0 0;
}
@media (max-width: 767px) {
  .page-activity__ourActivity {
    padding: 26.6666666667vw 0 0;
  }
}
.page-activity__ourActivity .c-hwaa {
  margin-top: 100px;
}
@media (max-width: 767px) {
  .page-activity__ourActivity .c-hwaa {
    margin-top: 21.3333333333vw;
  }
}
.page-activity__ourActivity-inner {
  max-width: 1104px;
  width: 100%;
  padding-top: 80px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  align-content: center;
  flex-direction: row;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .page-activity__ourActivity-inner {
    max-width: 86.25vw;
    padding-top: 6.25vw;
  }
}
@media (max-width: 767px) {
  .page-activity__ourActivity-inner {
    max-width: 89.8666666667vw;
    padding-top: 16vw;
    padding-bottom: 38.4vw;
  }
}
.page-activity__ourActivity-inner.familiar, .page-activity__ourActivity-inner.shibuya {
  padding-left: 85px;
}
@media screen and (max-width: 1280px) {
  .page-activity__ourActivity-inner.familiar, .page-activity__ourActivity-inner.shibuya {
    padding-left: 6.640625vw;
  }
}
@media (max-width: 767px) {
  .page-activity__ourActivity-inner.familiar, .page-activity__ourActivity-inner.shibuya {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .page-activity__ourActivity-inner.familiar .page-activity__ourActivity-img {
    right: -3.7333333333vw;
  }
}
.page-activity__ourActivity-inner.feel {
  flex-direction: row-reverse;
  padding-top: 100px;
  padding-right: 85px;
}
@media screen and (max-width: 1280px) {
  .page-activity__ourActivity-inner.feel {
    padding-top: 7.8125vw;
    padding-right: 6.640625vw;
  }
}
@media (max-width: 767px) {
  .page-activity__ourActivity-inner.feel {
    padding-top: 21.6vw;
    padding-right: 0;
  }
}
.page-activity__ourActivity-inner.feel .h3_underLine {
  text-align: right;
}
@media (max-width: 767px) {
  .page-activity__ourActivity-inner.feel .h3_underLine {
    text-align: center;
  }
}
.page-activity__ourActivity-inner.feel .h3_underLine:after {
  left: auto;
  right: 0;
}
@media (max-width: 767px) {
  .page-activity__ourActivity-inner.feel .h3_underLine:after {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}
.page-activity__ourActivity-inner.feel .page-activity__ourActivity-img {
  width: 410px;
}
@media screen and (max-width: 1280px) {
  .page-activity__ourActivity-inner.feel .page-activity__ourActivity-img {
    width: 32.03125vw;
  }
}
@media (max-width: 767px) {
  .page-activity__ourActivity-inner.feel .page-activity__ourActivity-img {
    width: 68vw;
    left: 1.3333333333vw;
  }
}
.page-activity__ourActivity-inner.feel .page-activity__ourActivity-btn {
  text-align: right;
  margin-top: 43px;
}
@media screen and (max-width: 1280px) {
  .page-activity__ourActivity-inner.feel .page-activity__ourActivity-btn {
    margin-top: 3.359375vw;
  }
}
@media (max-width: 767px) {
  .page-activity__ourActivity-inner.feel .page-activity__ourActivity-btn {
    text-align: center;
    margin-top: 8vw;
  }
}
.page-activity__ourActivity-inner.shibuya {
  padding-top: 100px;
}
@media (max-width: 767px) {
  .page-activity__ourActivity-inner.shibuya {
    padding-top: 21.3333333333vw;
    padding-bottom: 74.6666666667vw;
  }
}
.page-activity__ourActivity-inner.shibuya .h3_underLine {
  white-space: nowrap;
}
.page-activity__ourActivity-cont {
  width: 508px;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .page-activity__ourActivity-cont {
    width: 39.6875vw;
  }
}
@media (max-width: 767px) {
  .page-activity__ourActivity-cont {
    width: 100%;
  }
}
.page-activity__ourActivity-cont > .h3_underLine {
  text-align: start;
  padding-bottom: 23px;
  margin-bottom: 51px;
}
@media (max-width: 767px) {
  .page-activity__ourActivity-cont > .h3_underLine {
    text-align: center;
    padding-bottom: 4.8vw;
    margin-bottom: 8.2666666667vw;
  }
}
.page-activity__ourActivity-cont > .h3_underLine::after {
  transform: none;
  left: 0;
}
@media (max-width: 767px) {
  .page-activity__ourActivity-cont > .h3_underLine::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
.page-activity__ourActivity-txt {
  text-align: justify;
}
.page-activity__ourActivity-img {
  width: 431px;
  display: block;
}
@media screen and (max-width: 1280px) {
  .page-activity__ourActivity-img {
    width: 33.671875vw;
  }
}
@media (max-width: 767px) {
  .page-activity__ourActivity-img {
    width: 72vw;
    position: absolute;
    bottom: 0;
  }
}
.page-activity__ourActivity-btn {
  margin-top: 68px;
  margin-bottom: 66px;
}
@media (max-width: 767px) {
  .page-activity__ourActivity-btn {
    text-align: center;
    margin-top: 7.4666666667vw;
    margin-bottom: 0;
  }
}
.page-activity__ourActivity-btn-sp {
  display: none;
}
.page-activity__ourActivity-feel {
  display: flex;
  flex-direction: row-reverse;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 1077px) {
  .page-activity__ourActivity-feel {
    flex-direction: column;
    align-items: flex-end;
  }
}
@media (max-width: 767px) {
  .page-activity__ourActivity-feel {
    display: block;
    flex-direction: unset;
  }
}
.page-activity__ourActivity-feel-img {
  width: 408px;
  margin-right: 103px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  margin-left: unset;
}
@media screen and (max-width: 1077px) {
  .page-activity__ourActivity-feel-img {
    margin: 25px 13.5vw 0 7.5vw;
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .page-activity__ourActivity-feel-img {
    margin: 16vw 6.4vw 0;
  }
}
.page-activity__ourActivity-slide-wrap {
  padding: 50px 0;
  background-color: #fde8de;
  position: relative;
}
@media (max-width: 767px) {
  .page-activity__ourActivity-slide-wrap {
    padding: 10.6666666667vw 0 0;
  }
}
.page-activity__ourActivity-slide-wrap-inner {
  padding-left: 173px;
  position: relative;
}
@media (max-width: 767px) {
  .page-activity__ourActivity-slide-wrap-inner {
    padding: 0;
  }
}
.page-activity__ourActivity-slide-wrap.feel {
  padding: 50px 0;
}
@media (max-width: 767px) {
  .page-activity__ourActivity-slide-wrap.feel {
    padding: 10.6666666667vw 0;
  }
}
@media (max-width: 767px) {
  .page-activity__ourActivity-slide-wrap.feel .page-activity__ourActivity-slide {
    margin-bottom: 6.9333333333vw;
  }
}
.page-activity__ourActivity-slide-wrap.feel .page-activity__ourActivity-slide-wrap-inner {
  padding-left: 0;
  padding-right: 170px;
}
@media (max-width: 767px) {
  .page-activity__ourActivity-slide-wrap.feel .page-activity__ourActivity-slide-wrap-inner {
    padding-right: 0;
  }
}
.page-activity__ourActivity-slide-wrap.feel .swiper-wrapper .swiper-slide {
  margin-right: auto;
  margin-left: 16px;
}
@media (max-width: 767px) {
  .page-activity__ourActivity-slide-wrap.feel .swiper-wrapper .swiper-slide {
    margin: 0 1.3333333333vw;
  }
}
.page-activity__ourActivity-slide-wrap.feel .swiper-wrapper .swiper-slide a.not-hover:hover {
  opacity: 1;
}
.page-activity__ourActivity-slide-wrap.feel .button-next,
.page-activity__ourActivity-slide-wrap.feel .button-prev {
  transform: translateY(-88%);
}
@media (max-width: 767px) {
  .page-activity__ourActivity-slide-wrap.feel .button-next,
  .page-activity__ourActivity-slide-wrap.feel .button-prev {
    transform: translateY(0);
  }
}
.page-activity__ourActivity-slide-wrap.feel .button-next {
  right: 85px;
}
@media (max-width: 767px) {
  .page-activity__ourActivity-slide-wrap.feel .button-next {
    right: 2.6666666667vw;
  }
}
@media (max-width: 767px) {
  .page-activity__ourActivity-slide-wrap.feel .page-activity__ourActivity-slide-btn {
    margin-top: 0;
  }
}
.page-activity__ourActivity-slide-wrap .button-next,
.page-activity__ourActivity-slide-wrap .button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: unset;
  width: 65px;
  z-index: 99;
}
@media (max-width: 767px) {
  .page-activity__ourActivity-slide-wrap .button-next,
  .page-activity__ourActivity-slide-wrap .button-prev {
    width: 12.5333333333vw;
    top: 8vw;
    transform: translateY(0);
  }
}
.page-activity__ourActivity-slide-wrap .button-next:hover svg path:first-of-type,
.page-activity__ourActivity-slide-wrap .button-prev:hover svg path:first-of-type {
  fill: #de6c38;
}
.page-activity__ourActivity-slide-wrap .button-next:hover svg path:nth-of-type(2),
.page-activity__ourActivity-slide-wrap .button-prev:hover svg path:nth-of-type(2) {
  fill: white;
}
.page-activity__ourActivity-slide-wrap .button-next > svg,
.page-activity__ourActivity-slide-wrap .button-prev > svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.1));
}
@media (max-width: 767px) {
  .page-activity__ourActivity-slide-wrap .button-next > svg,
  .page-activity__ourActivity-slide-wrap .button-prev > svg {
    filter: drop-shadow(0 0 2.1333333333vw rgba(0, 0, 0, 0.1));
  }
}
.page-activity__ourActivity-slide-wrap .button-next > svg path,
.page-activity__ourActivity-slide-wrap .button-prev > svg path {
  transition: 0.4s;
}
.page-activity__ourActivity-slide-wrap .button-next > svg path:first-of-type,
.page-activity__ourActivity-slide-wrap .button-prev > svg path:first-of-type {
  fill: white;
}
.page-activity__ourActivity-slide-wrap .button-next > svg path:nth-of-type(2),
.page-activity__ourActivity-slide-wrap .button-prev > svg path:nth-of-type(2) {
  fill: #de6c38;
}
.page-activity__ourActivity-slide-wrap .button-next {
  right: 91px;
}
@media (max-width: 767px) {
  .page-activity__ourActivity-slide-wrap .button-next {
    right: 2.6666666667vw;
  }
}
.page-activity__ourActivity-slide-wrap .button-prev {
  left: 88px;
}
@media (max-width: 767px) {
  .page-activity__ourActivity-slide-wrap .button-prev {
    left: 2.6666666667vw;
  }
}
.page-activity__ourActivity-slide-inner {
  overflow: hidden;
  position: relative;
}
.page-activity__ourActivity-slide-inner.feel {
  direction: rtl;
}
@media (max-width: 767px) {
  .page-activity__ourActivity-slide-inner.feel {
    direction: ltr;
  }
}
.page-activity__ourActivity-slide-inner .swiper-wrapper .swiper-slide {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: flex-start;
  flex-direction: column;
  width: 266px;
  margin-right: 20px;
}
@media (max-width: 767px) {
  .page-activity__ourActivity-slide-inner .swiper-wrapper .swiper-slide {
    width: 59.2vw;
    margin: 0 1.3333333333vw;
  }
}
.page-activity__ourActivity-slide-inner .swiper-wrapper .swiper-slide.is-overlapped img {
  opacity: 0.25;
}
.page-activity__ourActivity-slide-inner .swiper-wrapper .swiper-slide a {
  width: 100%;
}
.page-activity__ourActivity-slide-inner .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 129px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: opacity 0.3s;
}
@media (max-width: 767px) {
  .page-activity__ourActivity-slide-inner .swiper-wrapper .swiper-slide img {
    height: 28.8vw;
  }
}
.page-activity__ourActivity-slide-inner .swiper-wrapper .swiper-slide p {
  margin-top: 10px;
  width: 266px;
  height: 51px;
  font-size: 15px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media (max-width: 767px) {
  .page-activity__ourActivity-slide-inner .swiper-wrapper .swiper-slide p {
    width: 59.2vw;
    height: 12.8vw;
    font-size: 3.7333333333vw;
  }
}
.page-activity__ourActivity-slide-inner .swiper-wrapper .swiper-slide.feel {
  width: 153px;
  height: 203px;
}
@media (max-width: 767px) {
  .page-activity__ourActivity-slide-inner .swiper-wrapper .swiper-slide.feel {
    width: 28.8vw;
    height: 42.1333333333vw;
  }
}
.page-activity__ourActivity-slide-inner .swiper-wrapper .swiper-slide.feel img {
  height: 153px;
}
@media (max-width: 767px) {
  .page-activity__ourActivity-slide-inner .swiper-wrapper .swiper-slide.feel img {
    height: 28.8vw;
  }
}
.page-activity__ourActivity-slide-inner .swiper-wrapper .swiper-slide.feel p {
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 0.1em;
  text-align: center;
  width: 153px;
  height: 40px;
  margin-top: 10px;
  direction: ltr;
}
@media (max-width: 767px) {
  .page-activity__ourActivity-slide-inner .swiper-wrapper .swiper-slide.feel p {
    font-size: 3.2vw;
    width: 100%;
    height: 10.6666666667vw;
  }
}
.page-activity__ourActivity-slide-inner .swiper-pagination-bullets {
  display: none;
  height: 20px;
  margin: 30px 0 0;
  -moz-column-gap: 22px;
       column-gap: 22px;
  top: calc(100% + 23px);
  bottom: auto;
}
@media (max-width: 767px) {
  .page-activity__ourActivity-slide-inner .swiper-pagination-bullets {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: normal;
    flex-direction: row;
    -moz-column-gap: 5.8666666667vw;
         column-gap: 5.8666666667vw;
    top: calc(100% + 6.1333333333vw);
    margin: 4.8vw 0 10.4vw;
  }
}
.page-activity__ourActivity-slide-inner .swiper-pagination-bullets .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 !important;
  background: #dbdbdb;
  opacity: 1;
  position: relative;
  transition: color 0.2s;
}
.page-activity__ourActivity-slide-inner .swiper-pagination-bullets .swiper-pagination-bullet:before {
  content: "";
  width: 23px;
  height: 20px;
  background-image: url(./img/common/icn_footprints-slider.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
}
@media (max-width: 767px) {
  .page-activity__ourActivity-slide-inner .swiper-pagination-bullets .swiper-pagination-bullet:before {
    width: 6.1333333333vw;
    height: 5.3333333333vw;
  }
}
.page-activity__ourActivity-slide-inner .swiper-pagination-bullets .swiper-pagination-bullet-active {
  background: transparent;
}
.page-activity__ourActivity-slide-inner .swiper-pagination-bullets .swiper-pagination-bullet-active:before {
  opacity: 1;
  pointer-events: auto;
}
.page-activity__ourActivity-slide-btn {
  text-align: center;
  margin-top: 38px;
}
.page-activity__ourActivity-grid {
  width: 347px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: space-between;
  flex-direction: row;
  gap: 17px;
  position: absolute;
  top: calc(100% - 154px);
  right: 51px;
  z-index: 2;
}
@media screen and (max-width: 1280px) {
  .page-activity__ourActivity-grid {
    width: 27.109375vw;
    gap: 1.328125vw;
    top: calc(100% - 12.03125vw);
    right: 3.984375vw;
  }
}
@media (max-width: 767px) {
  .page-activity__ourActivity-grid {
    width: 79.2vw;
    height: 79.2vw;
    right: auto;
    left: 50%;
    top: calc(100% - 60.5333333333vw);
    transform: translate(-50%, 0);
  }
}
.page-activity__ourActivity-grid-item {
  width: 165px;
  height: 165px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1280px) {
  .page-activity__ourActivity-grid-item {
    width: 12.890625vw;
    height: 12.890625vw;
  }
}
@media (max-width: 767px) {
  .page-activity__ourActivity-grid-item {
    width: 37.3333333333vw;
    height: 37.3333333333vw;
  }
}
.page-activity__ourActivity-shibuya {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .page-activity__ourActivity-shibuya {
    margin-top: 0;
  }
}
.page-activity__ourActivity-shibuya:before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.page-activity__ourActivity-shibuya-inner {
  max-width: 934px;
  width: 100%;
  padding: 48px 0 49px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1280px) {
  .page-activity__ourActivity-shibuya-inner {
    max-width: 72.96875vw;
  }
}
@media (max-width: 767px) {
  .page-activity__ourActivity-shibuya-inner {
    max-width: 78.6666666667vw;
    padding: 26.6666666667vw 0 10.9333333333vw;
  }
}
.page-activity__ourActivity-shibuya-txt {
  color: white;
  width: 562px;
}
@media screen and (max-width: 1280px) {
  .page-activity__ourActivity-shibuya-txt {
    width: 43.90625vw;
  }
}
@media (max-width: 767px) {
  .page-activity__ourActivity-shibuya-txt {
    width: 100%;
  }
}
.page-activity__ourActivity-shibuya-txt > p {
  font-size: 30px;
  letter-spacing: 0.115em;
  margin-bottom: 26px;
}
@media (max-width: 767px) {
  .page-activity__ourActivity-shibuya-txt > p {
    text-align: center;
    font-size: 5.8666666667vw;
    letter-spacing: 0.01em;
    margin-bottom: 5.0666666667vw;
  }
}
.page-activity__ourActivity-shibuya-txtG {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  flex-direction: row;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .page-activity__ourActivity-shibuya-txtG {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-direction: column;
    margin-bottom: 5.8666666667vw;
  }
}
.page-activity__ourActivity-shibuya-txtG:last-of-type {
  margin-bottom: 0;
}
.page-activity__ourActivity-shibuya-txtG > p {
  font-size: 19px;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .page-activity__ourActivity-shibuya-txtG > p {
    font-size: 4.2666666667vw;
    text-align: center;
  }
}
.page-activity__ourActivity-shibuya-txtG > p:first-of-type {
  margin-right: 26px;
  min-width: 79px;
}
@media (max-width: 767px) {
  .page-activity__ourActivity-shibuya-txtG > p:first-of-type {
    margin-right: 0;
    min-width: auto;
    margin-bottom: 2.1333333333vw;
  }
}
.page-activity__yourActivity {
  padding-top: 180px;
}
@media (max-width: 767px) {
  .page-activity__yourActivity {
    padding-top: 21.3333333333vw;
  }
}
.page-activity__yourActivity > h3 {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .page-activity__yourActivity > h3 {
    margin: 8vw 0;
  }
}
.page-activity__yourActivity > p {
  text-align: center;
  font-size: 16px;
  line-height: 2.12;
  letter-spacing: 1.6px;
  width: 580px;
  padding-top: 51px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .page-activity__yourActivity > p {
    font-size: 4vw;
    line-height: 1.9;
    padding: 0;
    letter-spacing: unset;
    width: 89.3333333333vw;
  }
}
.page-activity__yourActivity > p > span {
  padding-left: 35px;
  margin-top: -3px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: row;
}
@media (max-width: 767px) {
  .page-activity__yourActivity > p > span {
    flex-direction: column;
    padding: 0;
  }
}
.page-activity__yourActivity > p > span > span {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: row;
}
@media (max-width: 767px) {
  .page-activity__yourActivity > p > span > span {
    padding-right: 4.8vw;
    margin-top: 0.8vw;
  }
}
.page-activity__yourActivity > p > span > span > span {
  color: white;
  font-weight: 700;
  font-size: 19px;
  margin-right: 18px;
  position: relative;
  top: 2px;
  z-index: 1;
}
@media (max-width: 767px) {
  .page-activity__yourActivity > p > span > span > span {
    font-size: 4vw;
    margin-right: 3.2vw;
    top: auto;
  }
}
.page-activity__yourActivity > p > span > span > span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 132px;
  height: 41px;
  background-image: url(./img/page/activity/img-tag-bg.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media (max-width: 767px) {
  .page-activity__yourActivity > p > span > span > span::after {
    width: 24.5333333333vw;
    height: 7.7333333333vw;
  }
}
.page-activity__yourActivity-imgs {
  margin-top: 84px;
}
.page-activity__yourActivity-imgs-top {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: row;
  width: 100%;
  margin-top: 86px;
  gap: 0.78125vw;
  width: 98.59375vw;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .page-activity__yourActivity-imgs-top {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .page-activity__yourActivity-imgs-top {
    gap: 2.6666666667vw;
    margin-top: 8vw;
  }
}
.page-activity__yourActivity-imgs-item {
  min-width: 11.640625vw !important;
  height: 15.625vw !important;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .page-activity__yourActivity-imgs-item {
    min-width: 149px !important;
    height: 200px !important;
  }
}
@media (max-width: 767px) {
  .page-activity__yourActivity-imgs-item {
    min-width: 36.5333333333vw !important;
    height: 49.6vw !important;
  }
}
.page-activity__yourActivity-imgs-item > iframe {
  min-width: 12.890625vw !important;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -55px);
}
@media screen and (max-width: 1280px) {
  .page-activity__yourActivity-imgs-item > iframe {
    min-width: 165px !important;
  }
}
@media (max-width: 767px) {
  .page-activity__yourActivity-imgs-item > iframe {
    min-width: 36.5333333333vw !important;
    top: 0;
    left: 50%;
    transform: translate(-50%, -14.6666666667vw);
  }
}
.page-activity__yourActivity-imgs #sb_instagram #sbi_images {
  padding: 10px 0 !important;
  gap: 11px !important;
}
.page-activity__yourActivity-imgs #sb_instagram #sbi_images .sbi_item {
  min-width: 11.640625vw !important;
  height: 15.625vw !important;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .page-activity__yourActivity-imgs #sb_instagram #sbi_images .sbi_item {
    min-width: 149px !important;
    height: 200px !important;
  }
}
@media (max-width: 767px) {
  .page-activity__yourActivity-imgs #sb_instagram #sbi_images .sbi_item {
    min-width: 36.5333333333vw !important;
    height: 49.6vw !important;
  }
}
.page-activity__yourActivity-imgs #sb_instagram #sbi_images .sbi_item:nth-of-type(-n + 9) {
  left: 0;
  transform: translate(-50%, 0);
}
@media (max-width: 767px) {
  .page-activity__yourActivity-imgs #sb_instagram #sbi_images .sbi_item:nth-of-type(-n + 9) {
    left: unset;
    transform: unset;
  }
}
.page-activity__yourActivity-imgs #sb_instagram #sbi_images .sbi_item:nth-of-type(n + 10) {
  left: 0.78125vw;
}
@media (max-width: 767px) {
  .page-activity__yourActivity-imgs #sb_instagram #sbi_images .sbi_item:nth-of-type(n + 10) {
    left: unset;
    transform: unset;
  }
}
@media (max-width: 767px) {
  .page-activity__yourActivity-imgs #sb_instagram #sbi_images .sbi_item:nth-of-type(-n + 3) {
    left: 0;
    transform: translate(-25%, 0);
  }
}
@media (max-width: 767px) {
  .page-activity__yourActivity-imgs #sb_instagram #sbi_images .sbi_item:nth-of-type(n + 4) {
    left: 0;
    transform: translate(-70%, 0);
  }
}
.page-activity__yourActivity-imgs-mid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: row;
  gap: 0.78125vw;
  width: 100%;
  margin: 0.78125vw 0;
  position: relative;
  transform: translate(0%, 0);
}
@media screen and (max-width: 1280px) {
  .page-activity__yourActivity-imgs-mid {
    gap: 10px;
    margin: 10px 0;
  }
}
@media (max-width: 767px) {
  .page-activity__yourActivity-imgs-mid {
    margin: 2.6666666667vw auto;
    transform: translate(-2%, 0);
  }
}
.page-activity__yourActivity-imgs-mid > iframe {
  min-width: 11.640625vw;
  height: 15.625vw;
}
@media screen and (max-width: 1280px) {
  .page-activity__yourActivity-imgs-mid > iframe {
    min-width: 149px;
    height: 200px;
  }
}
@media (max-width: 767px) {
  .page-activity__yourActivity-imgs-mid > iframe {
    min-width: 36.5333333333vw;
    height: 49.6vw;
  }
}
.page-activity__yourActivity_wrap {
  margin-top: 84px;
}
@media (max-width: 767px) {
  .page-activity__yourActivity_wrap {
    margin-top: 8vw;
  }
}
.page-activity__yourActivity_inner {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: row;
  gap: 10px;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .page-activity__yourActivity_inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-direction: row;
    width: -moz-max-content;
    width: max-content;
    gap: 2.6666666667vw;
  }
}
.page-activity__yourActivity_inner a {
  width: 11.794vw;
  height: 15.625vw;
}
@media (max-width: 767px) {
  .page-activity__yourActivity_inner a {
    width: 36.5333333333vw;
    height: 49.6vw;
  }
}
.page-activity__yourActivity_inner a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .page-activity__yourActivity_inner:first-of-type, .page-activity__yourActivity_inner:last-of-type {
    left: -24.72vw;
  }
}
.page-activity__yourActivity_inner:nth-of-type(2) {
  margin: 10px 0;
  width: 112%;
  left: -5.742vw;
}
@media (max-width: 767px) {
  .page-activity__yourActivity_inner:nth-of-type(2) {
    width: -moz-max-content;
    width: max-content;
    left: -8.72vw;
  }
}
.page-activity__yourActivity-x {
  --x-dur: 0.8s;
  --x-hand-up: 1.1;
  --x-hand-down: 0.9;
  --x-main-down: 0.95;
  --x-ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  display: block;
  width: 426px;
  position: relative;
  margin: 180px auto 0;
  cursor: pointer;
}
@media (max-width: 767px) {
  .page-activity__yourActivity-x {
    width: 79.2vw;
    margin-top: 34.1333333333vw;
  }
}
.page-activity__yourActivity-x:hover {
  opacity: 1;
}
.page-activity__yourActivity-x:hover .page-activity__yourActivity-x-wanko {
  transform: translateY(-18%);
}
@media (max-width: 767px) {
  .page-activity__yourActivity-x:hover .page-activity__yourActivity-x-wanko {
    transform: translateY(0%);
  }
}
.page-activity__yourActivity-x span {
  line-height: 1;
  display: block;
}
.page-activity__yourActivity-x span svg {
  width: 100%;
  height: 100%;
  display: block;
}
.page-activity__yourActivity-x-main {
  will-change: transform;
  transform: translateZ(0);
  transform-origin: center center;
}
.page-activity__yourActivity-x-wanko {
  width: 172px;
  position: absolute;
  top: -97px;
  right: 62px;
  z-index: 1;
  transition: transform 0.5s ease;
}
@media (max-width: 767px) {
  .page-activity__yourActivity-x-wanko {
    width: 31.4666666667vw;
    top: -17.8666666667vw;
    right: 11.2vw;
  }
}
.page-activity__yourActivity-x-wanko > svg {
  width: 100%;
  height: 100%;
}
.page-activity__yourActivity-x-hand {
  width: 68px;
  height: 79px;
  position: absolute;
  top: -20px;
  right: 32px;
  will-change: transform;
  transform: translateZ(0);
  transform-origin: center center;
  z-index: 3;
}
@media (max-width: 767px) {
  .page-activity__yourActivity-x-hand {
    width: 13.8666666667vw;
    top: -4.2666666667vw;
    right: 5.3333333333vw;
  }
}
.page-activity__yourActivity-x-hand-icn {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(1.6deg);
}
.page-activity__yourActivity-x-hand-icn img {
  -o-object-fit: contain;
     object-fit: contain;
}
.page-activity__yourActivity-x-hand-txt {
  width: 59px;
  position: absolute;
  top: -25px;
  right: -32px;
  transform: rotate(-21.28deg);
}
@media (max-width: 767px) {
  .page-activity__yourActivity-x-hand-txt {
    width: 11.7333333333vw;
    top: -5.3333333333vw;
    right: -4.8vw;
  }
}
.page-activity__yourActivity-x-txt {
  width: 174px;
  position: absolute;
  left: 27px;
  bottom: calc(100% + 2px);
  z-index: 3;
}
@media (max-width: 767px) {
  .page-activity__yourActivity-x-txt {
    width: 38.4vw;
    left: 0.2666666667vw;
    bottom: 100%;
  }
}
.page-activity__yourActivity-x-main {
  width: 100%;
  position: relative;
  z-index: 2;
}
.page-activity__yourActivity-x-main > svg {
  width: 100%;
  height: 100%;
  display: block;
}
.page-activity__introCont {
  margin: -20px auto 0;
  width: 680px;
  padding: 51px 90px 39px 90px;
  justify-content: center;
  align-items: flex-start;
  background-color: white;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .page-activity__introCont {
    width: 89.3333333333vw;
    height: 39.4666666667vw;
    padding: 12.2666666667vw 5.3333333333vw 8vw;
    margin-top: -6.9333333333vw;
    font-size: 3.7333333333vw;
    box-shadow: 0 1.0666666667vw 2.6666666667vw 0 rgba(0, 0, 0, 0.1);
  }
}
.page-activity__intro .c-newsList__result {
  padding-top: 54px;
}
@media (max-width: 767px) {
  .page-activity__intro .c-newsList__result {
    padding-top: 8.2666666667vw;
  }
}

/* layout > card
============================================================================ */
/* layout > card > post
============================================================================================================ */
.c-card {
  width: 266px;
}
@media screen and (max-width: 1280px) {
  .c-card {
    width: 20.78125vw;
  }
}
@media (max-width: 767px) {
  .c-card {
    width: 78.6666666667vw;
  }
}
.c-card__link {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: stretch;
  flex-direction: column;
  row-gap: 10px;
}
@media screen and (max-width: 1280px) {
  .c-card__link {
    row-gap: 0.78125vw;
  }
}
@media (max-width: 767px) {
  .c-card__link {
    row-gap: 2.6666666667vw;
  }
}
.c-card__thumb {
  width: 100%;
}
.c-card__thumb > img {
  aspect-ratio: 2.0620155039;
}
@media (max-width: 767px) {
  .c-card__thumb > img {
    aspect-ratio: 2.0629370629;
  }
}
.c-card__heading {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.1em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media (max-width: 767px) {
  .c-card__heading {
    font-size: 7px;
    font-size: 3.7333333333vw;
  }
}

/* layout > single
============================================================================ */
/* layout > single > post
============================================================================================================ */
.single-post.single-wrap {
  padding-top: 142px;
}
@media (max-width: 767px) {
  .single-post.single-wrap {
    padding-top: 24.5333333333vw;
  }
}
.single-post__sidebar {
  width: 100%;
  height: calc(100vh - 56px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  align-content: stretch;
  flex-direction: row;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 1024px) {
  .single-post__sidebar {
    height: auto;
    position: relative;
    top: auto;
    left: auto;
  }
}
.single-post__sidebarItem {
  height: 100%;
  overflow-y: auto;
  pointer-events: auto;
}
.single-post__sidebarItem--left {
  width: 212px;
}
@media (max-width: 1024px) {
  .single-post__sidebarItem--left {
    display: none;
  }
}
.single-post__sidebarItem--right {
  background: rgba(222, 108, 56, 0.05);
  width: 226px;
}
@media screen and (max-width: 1280px) {
  .single-post__sidebarItem--right {
    width: 17.65625vw;
  }
}
@media (max-width: 1024px) {
  .single-post__sidebarItem--right {
    width: 100%;
  }
}
.single-post__sidebarNav {
  padding: 11.40625vw 18px 38px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: stretch;
  flex-direction: column;
  row-gap: 24px;
}
@media screen and (max-width: 1280px) {
  .single-post__sidebarNav {
    padding: 146px 18px 38px;
  }
}
.single-post__sidebarNavSb {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: stretch;
  flex-direction: column;
  row-gap: 20px;
}
.single-post__sidebarNavSbItem {
  width: 100%;
  padding-bottom: 28px;
  display: block;
  position: relative;
}
.single-post__sidebarNavSbItem:hover {
  opacity: 1;
}
.single-post__sidebarNavSbItem:hover .single-post__sidebarNavSbItemIcn > svg path:first-of-type {
  fill: #de6c38;
}
.single-post__sidebarNavSbItem:hover .single-post__sidebarNavSbItemTxt {
  color: white;
}
.single-post__sidebarNavSbItemWanko {
  line-height: 1;
  width: 63px;
  display: block;
  position: absolute;
  left: 0px;
  bottom: 0;
  z-index: 2;
}
.single-post__sidebarNavSbItemIcn {
  line-height: 1;
  width: 133px;
  display: block;
  margin-left: auto;
  position: relative;
  z-index: 1;
}
.single-post__sidebarNavSbItemIcn > svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}
.single-post__sidebarNavSbItemIcn > svg path {
  transition: 0.3s ease-out;
}
.single-post__sidebarNavSbItemIcn > svg path:first-of-type {
  fill: white;
}
.single-post__sidebarNavSbItemTxt {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4166666667;
  letter-spacing: 0em;
  text-align: center;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -63%);
  transition: color 0.3s ease-out;
}
.single-post__sidebarNavShop {
  width: 172px;
  padding-left: 2px;
}
.single-post__sidebarNavShop.is-open .single-post__sidebarNavShopTabIcn {
  transform: translateY(-50%) rotate(180deg);
}
.single-post__sidebarNavShopTab {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5833333333;
  letter-spacing: 0.15em;
  text-align: center;
  color: white;
  background: #de6c38;
  padding: 4px;
  position: relative;
  cursor: pointer;
}
.single-post__sidebarNavShopTabIcn {
  line-height: 1;
  width: 17px;
  display: block;
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-40%) rotate(0deg);
  transition: transform 0.3s ease-out;
}
.single-post__sidebarNavShopTabIcn > svg {
  width: 100%;
  height: 100%;
  display: block;
}
.single-post__sidebarNavShopPanel {
  width: 100%;
  display: none;
}
.single-post__sidebarNavShopPanelItem {
  font-size: 13px;
  line-height: 1.4615384615;
  text-align: center;
  padding: 10px 0 9px;
  display: block;
}
.single-post__sidebarNavShopPanelItem:nth-of-type(n + 2) {
  border-top: solid 1px #fde8de;
}
.single-post__sidebarLatest {
  padding: 11.40625vw 28px 38px;
}
@media screen and (max-width: 1280px) {
  .single-post__sidebarLatest {
    padding: 146px 2.1875vw 2.96875vw;
  }
}
@media (max-width: 1024px) {
  .single-post__sidebarLatest {
    padding: 48px 48px 64px;
  }
}
@media (max-width: 767px) {
  .single-post__sidebarLatest {
    padding: 8vw 8vw 13.3333333333vw;
  }
}
.single-post__sidebarLatestTtl {
  color: white;
  background: #de6c38;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5833333333;
  letter-spacing: 0.15em;
  text-align: center;
  width: 100%;
  padding: 4px;
  margin-bottom: 14px;
  border-radius: 30px;
}
@media (max-width: 1024px) {
  .single-post__sidebarLatestTtl {
    display: none;
  }
}
.single-post__sidebarLatestList {
  width: 166px;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .single-post__sidebarLatestList {
    width: 12.96875vw;
  }
}
@media (max-width: 1024px) {
  .single-post__sidebarLatestList {
    width: 620px;
  }
}
@media (max-width: 767px) {
  .single-post__sidebarLatestList {
    width: 100%;
  }
}
.single-post__sidebarLatestItem {
  padding: 10px 0 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: stretch;
  flex-direction: column;
  row-gap: 5px;
}
@media (max-width: 767px) {
  .single-post__sidebarLatestItem {
    padding: 2.6666666667vw 0 2.4vw;
    row-gap: 1.3333333333vw;
  }
}
.single-post__sidebarLatestItem:nth-of-type(n + 2) {
  border-top: solid 1px #d5d5d5;
}
@media (max-width: 767px) {
  .single-post__sidebarLatestItem:nth-of-type(n + 2) {
    border-top-width: 0.2666666667vw;
  }
}
.single-post__sidebarLatestItem:first-of-type {
  padding-top: 0;
}
.single-post__sidebarLatestItem:last-of-type {
  padding-bottom: 0;
}
.single-post__sidebarLatestItemDate {
  color: #de6c38;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .single-post__sidebarLatestItemDate {
    font-size: 7px;
    font-size: 3.7333333333vw;
  }
}
.single-post__sidebarLatestItemTtl {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.1em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media (max-width: 767px) {
  .single-post__sidebarLatestItemTtl {
    font-size: 7px;
    font-size: 3.7333333333vw;
  }
}
.single-post__sidebarLatestSearch {
  margin-top: 58px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: stretch;
  flex-direction: column;
  row-gap: 23px;
}
@media screen and (max-width: 1280px) {
  .single-post__sidebarLatestSearch {
    margin-top: 4.53125vw;
    row-gap: 1.796875vw;
  }
}
@media (max-width: 1024px) {
  .single-post__sidebarLatestSearch {
    margin-top: 58px;
    row-gap: 23px;
  }
}
@media (max-width: 767px) {
  .single-post__sidebarLatestSearch {
    margin-top: 15.4666666667vw;
    row-gap: 4.8vw;
  }
}
.single-post__sidebarLatestSearchSelect {
  width: 166px;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .single-post__sidebarLatestSearchSelect {
    width: 12.96875vw;
  }
}
@media (max-width: 1024px) {
  .single-post__sidebarLatestSearchSelect {
    width: 166px;
  }
}
@media (max-width: 767px) {
  .single-post__sidebarLatestSearchSelect {
    width: 83.7333333333vw;
  }
}
.single-post__sidebarLatestSearchSelectWrap {
  width: 100%;
  position: relative;
}
.single-post__sidebarLatestSearchSelectBox {
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4285714286;
  letter-spacing: 0.1em;
  height: auto;
  padding: 19px 40px 19px 14px;
  background-image: none;
  border: none;
}
@media screen and (max-width: 1280px) {
  .single-post__sidebarLatestSearchSelectBox {
    font-size: 7px;
    font-size: 1.09375vw;
    padding: 1.484375vw 3.125vw 1.484375vw 1.09375vw;
  }
}
@media (max-width: 1024px) {
  .single-post__sidebarLatestSearchSelectBox {
    font-size: 14px;
    padding: 19px 40px 19px 14px;
  }
}
@media (max-width: 767px) {
  .single-post__sidebarLatestSearchSelectBox {
    text-align: center;
    font-size: 7.5px;
    font-size: 4vw;
    padding: 4.8vw 10.6666666667vw 5.0666666667vw;
  }
}
.single-post__sidebarLatestSearchSelectBox:has(> option[disabled]:checked), .single-post__sidebarLatestSearchSelectBox:required:invalid {
  color: #9d9d9d;
}
.single-post__sidebarLatestSearchSelectIcn {
  line-height: 1;
  width: 25px;
  display: block;
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-38%);
}
@media (max-width: 1024px) {
  .single-post__sidebarLatestSearchSelectIcn {
    width: 25px;
    right: 8px;
  }
}
@media (max-width: 767px) {
  .single-post__sidebarLatestSearchSelectIcn {
    width: 8vw;
    right: 2.6666666667vw;
    transform: translateY(-50%);
  }
}
.single-post__sidebarLatestSearchSelectIcn > svg {
  width: 100%;
  height: 100%;
  display: block;
}
.single-post__sidebarLatestSearchSelectIcn > svg path {
  fill: #de6c38;
}
.single-post__sidebarLatestSearch .c-btn {
  font-size: 15px;
  padding: 9px 27px;
  background: white;
}
@media screen and (max-width: 1280px) {
  .single-post__sidebarLatestSearch .c-btn {
    font-size: 7.5px;
    font-size: 1.171875vw;
    padding: 0.703125vw 2.109375vw;
  }
}
@media (max-width: 1024px) {
  .single-post__sidebarLatestSearch .c-btn {
    font-size: 15px;
    padding: 9px 27px;
  }
}
@media (max-width: 767px) {
  .single-post__sidebarLatestSearch .c-btn {
    font-size: 7.5px;
    font-size: 4vw;
    padding: 2.4vw 10.9333333333vw;
  }
}
.single-post__sidebarLatestSearch .c-btn:hover {
  background: #de6c38;
}
.single-post__inner {
  max-width: 1000px;
  width: 100%;
  padding-bottom: 98px;
  margin: 0 auto;
  border-bottom: solid 1px #a4a4a4;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1280px) {
  .single-post__inner {
    max-width: 78.125vw;
    padding-bottom: 7.65625vw;
  }
}
@media (max-width: 1024px) {
  .single-post__inner {
    max-width: 97.65625vw;
    padding-bottom: 98px;
  }
}
@media (max-width: 767px) {
  .single-post__inner {
    max-width: 89.3333333333vw;
    padding-bottom: 15.4666666667vw;
  }
}
.single-post__cont {
  width: 620px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1280px) {
  .single-post__cont {
    width: 48.4375vw;
  }
}
@media (max-width: 1024px) {
  .single-post__cont {
    width: 620px;
  }
}
@media (max-width: 767px) {
  .single-post__cont {
    width: 100%;
  }
}
.single-post__contBg {
  width: 100vw;
  height: 100vh;
  min-height: 640px;
  position: fixed;
  top: auto;
  left: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 1024px) {
  .single-post__contBg {
    min-height: auto;
  }
}
.single-post__contBgItem {
  width: 176px;
  padding-bottom: 47px;
  display: block;
  position: absolute;
  left: -21px;
  bottom: 16vh;
  transform: translate(0%, 0%);
}
@media (max-width: 1024px) {
  .single-post__contBgItem {
    bottom: 26px;
    transform: translate(0%, 0%);
  }
}
@media (max-width: 767px) {
  .single-post__contBgItem {
    width: 55.4666666667vw;
    padding-bottom: 17.0666666667vw;
    left: -5.6vw;
    bottom: 6.9333333333vw;
  }
}
.single-post__contBgItemWanko {
  line-height: 1;
  width: 70px;
  display: block;
  position: absolute;
  left: -8px;
  bottom: 0;
  transform: translateY(20%) rotate(18deg);
  z-index: 2;
  opacity: 0;
}
@media (max-width: 767px) {
  .single-post__contBgItemWanko {
    width: 20.2666666667vw;
    left: 0.2666666667vw;
  }
}
.single-post__contBgItemIcn {
  line-height: 1;
  width: 133px;
  display: block;
  margin-left: auto;
  position: relative;
  transform: scale(0);
  transform-origin: top left;
  z-index: 1;
  opacity: 0;
}
@media (max-width: 767px) {
  .single-post__contBgItemIcn {
    width: 39.7333333333vw;
  }
}
.single-post__contBgItemIcn > svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}
.single-post__contBgItemIcn > svg path {
  transition: 0.3s ease-out;
}
.single-post__contBgItemIcn > svg path:first-of-type {
  fill: #de6c38;
}
.single-post__contBgItemTxt {
  color: white;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4545454545;
  letter-spacing: 0em;
  text-align: center;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-49%, -63%);
  transition: color 0.3s ease-out;
}
@media (max-width: 767px) {
  .single-post__contBgItemTxt {
    font-size: 6.5px;
    font-size: 3.4666666667vw;
    line-height: 1.4615384615;
  }
}
.single-post__cont .editor-content {
  margin-top: 70px;
}
@media (max-width: 767px) {
  .single-post__cont .editor-content {
    margin-top: 8vw;
  }
}
.single-post__info {
  color: #969696;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  align-content: stretch;
  flex-direction: row;
}
@media (max-width: 767px) {
  .single-post__info {
    margin-bottom: 2.6666666667vw;
    justify-content: flex-start;
    align-items: stretch;
    flex-direction: column;
    row-gap: 1.6vw;
  }
}
.single-post__infoDate {
  font-size: 14px;
}
@media (max-width: 767px) {
  .single-post__infoDate {
    font-size: 6px;
    font-size: 3.2vw;
  }
}
.single-post__infoCat {
  font-size: 13px;
}
@media (max-width: 767px) {
  .single-post__infoCat {
    font-size: 6.5px;
    font-size: 3.4666666667vw;
  }
}
.single-post__heading {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0em;
  text-align: justify;
}
@media (max-width: 767px) {
  .single-post__heading {
    font-size: 12px;
    font-size: 6.4vw;
  }
}
.single-post__thumb {
  width: 100%;
  height: 300px;
  margin-top: 39px;
}
@media screen and (max-width: 1280px) {
  .single-post__thumb {
    height: 23.4375vw;
    margin-top: 3.046875vw;
  }
}
@media (max-width: 1024px) {
  .single-post__thumb {
    height: 300px;
    margin-top: 39px;
  }
}
@media (max-width: 767px) {
  .single-post__thumb {
    height: 43.2vw;
    margin-top: 8vw;
  }
}
.single-post__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.single-post__tags {
  padding: 30px;
  margin-top: 60px;
  background: white;
  border-radius: 20px;
}
@media screen and (max-width: 1280px) {
  .single-post__tags {
    padding: 2.34375vw;
    margin-top: 4.6875vw;
  }
}
@media (max-width: 1024px) {
  .single-post__tags {
    padding: 30px;
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .single-post__tags {
    padding: 8vw 5.3333333333vw;
    margin-top: 16vw;
    border-radius: 5.3333333333vw;
  }
}
.single-post__tagsList {
  font-size: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  align-content: stretch;
  flex-direction: row;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 10px;
}
@media screen and (max-width: 1280px) {
  .single-post__tagsList {
    -moz-column-gap: 1.5625vw;
         column-gap: 1.5625vw;
    row-gap: 0.78125vw;
  }
}
@media (max-width: 1024px) {
  .single-post__tagsList {
    -moz-column-gap: 20px;
         column-gap: 20px;
    row-gap: 10px;
  }
}
@media (max-width: 767px) {
  .single-post__tagsList {
    font-size: 8px;
    font-size: 4.2666666667vw;
    -moz-column-gap: 4.2666666667vw;
         column-gap: 4.2666666667vw;
    row-gap: 3.7333333333vw;
  }
}
.single-post__author {
  padding-top: 29px;
  margin-top: 142px;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .single-post__author {
    padding-top: 2.265625vw;
    margin-top: 11.09375vw;
  }
}
@media (max-width: 1024px) {
  .single-post__author {
    padding-top: 29px;
    margin-top: 142px;
  }
}
@media (max-width: 767px) {
  .single-post__author {
    padding-top: 0;
    margin-top: 42.6666666667vw;
  }
}
.single-post__authorImg {
  width: 133px;
  aspect-ratio: 1;
  display: block;
  position: absolute;
  left: 42px;
  bottom: calc(100% - 58px);
  transform: rotate(-3deg);
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1280px) {
  .single-post__authorImg {
    width: 10.390625vw;
    left: 3.28125vw;
    bottom: calc(100% - 4.53125vw);
  }
}
@media (max-width: 1024px) {
  .single-post__authorImg {
    width: 133px;
    left: 42px;
    bottom: calc(100% - 58px);
  }
}
@media (max-width: 767px) {
  .single-post__authorImg {
    width: 38.1333333333vw;
    left: 50%;
    bottom: calc(100% - 12.5333333333vw);
    transform: translateX(-50%) rotate(-3deg);
    box-shadow: 0 1.0666666667vw 2.6666666667vw 0 rgba(0, 0, 0, 0.1);
  }
}
.single-post__authorName {
  position: absolute;
  right: 30px;
  bottom: calc(100% - 36px);
}
@media screen and (max-width: 1280px) {
  .single-post__authorName {
    right: 2.34375vw;
    bottom: calc(100% - 2.8125vw);
  }
}
@media (max-width: 1024px) {
  .single-post__authorName {
    right: 30px;
    bottom: calc(100% - 36px);
  }
}
@media (max-width: 767px) {
  .single-post__authorName {
    position: relative;
    right: auto;
    bottom: auto;
  }
}
.single-post__authorName .c-heading--01 {
  width: 401px;
}
@media screen and (max-width: 1280px) {
  .single-post__authorName .c-heading--01 {
    width: 31.328125vw;
  }
}
@media (max-width: 1024px) {
  .single-post__authorName .c-heading--01 {
    width: 401px;
  }
}
@media (max-width: 767px) {
  .single-post__authorName .c-heading--01 {
    width: 77.0666666667vw;
  }
}
.single-post__authorName .c-heading--01 .c-heading__txt {
  font-size: 26px;
}
@media (max-width: 767px) {
  .single-post__authorName .c-heading--01 .c-heading__txt {
    font-size: 9px;
    font-size: 4.8vw;
  }
}
.single-post__authorInner {
  text-align: justify;
  background: white;
  padding: 82px 30px 30px;
  position: relative;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1280px) {
  .single-post__authorInner {
    padding: 6.40625vw 2.34375vw 2.34375vw;
  }
}
@media (max-width: 1024px) {
  .single-post__authorInner {
    padding: 82px 30px 30px;
  }
}
@media (max-width: 767px) {
  .single-post__authorInner {
    padding: 18.6666666667vw 5.3333333333vw 8vw;
    box-shadow: 0 1.0666666667vw 2.6666666667vw 0 rgba(0, 0, 0, 0.1);
  }
}
@media (max-width: 767px) {
  .single-post__authorTxt {
    margin-top: 5.3333333333vw;
  }
}
.single-post__nav {
  width: 632px;
  margin: 152px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: stretch;
  flex-direction: column;
  row-gap: 77px;
}
@media (max-width: 1024px) {
  .single-post__nav {
    width: 61.71875vw;
    width: 632px;
    margin-top: 152px;
    row-gap: 77px;
  }
}
@media (max-width: 767px) {
  .single-post__nav {
    width: 78.6666666667vw;
    margin-top: 27.2vw;
    row-gap: 12.8vw;
  }
}
.single-post__navInner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  align-content: stretch;
  flex-direction: row;
  position: relative;
}
@media (max-width: 767px) {
  .single-post__navInner {
    row-gap: 16.5333333333vw;
  }
}
.single-post__navItem.prev .single-post__navIcn {
  right: calc(100% + 30px);
}
@media screen and (max-width: 1280px) {
  .single-post__navItem.prev .single-post__navIcn {
    right: calc(100% + 2.34375vw);
  }
}
.single-post__navItem.next {
  margin-left: auto;
}
.single-post__navItem.next .single-post__navIcn {
  left: calc(100% + 30px);
}
@media screen and (max-width: 1280px) {
  .single-post__navItem.next .single-post__navIcn {
    left: calc(100% + 2.34375vw);
  }
}
.single-post__navIcn {
  width: 65px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}
@media screen and (max-width: 1280px) {
  .single-post__navIcn {
    width: 5.078125vw;
  }
}
@media (max-width: 1024px) {
  .single-post__navIcn {
    width: 6.34765625vw;
  }
}
@media (max-width: 767px) {
  .single-post__navIcn {
    display: none;
  }
}
.single-post__navIcn:hover {
  opacity: 1;
}
.single-post__navIcn:hover svg path:first-of-type {
  fill: #de6c38;
}
.single-post__navIcn:hover svg path:nth-of-type(2) {
  fill: white;
}
.single-post__navIcn svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.1));
}
@media (max-width: 767px) {
  .single-post__navIcn svg {
    filter: drop-shadow(0 0 2.1333333333vw rgba(0, 0, 0, 0.1));
  }
}
.single-post__navIcn svg path {
  transition: 0.4s;
}
.single-post__navIcn svg path:first-of-type {
  fill: white;
}
.single-post__navIcn svg path:nth-of-type(2) {
  fill: #de6c38;
}
.single-post__navCont {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: stretch;
  flex-direction: column;
  row-gap: 23px;
}
@media screen and (max-width: 1280px) {
  .single-post__navCont {
    row-gap: 1.796875vw;
  }
}
@media (max-width: 1024px) {
  .single-post__navCont {
    row-gap: 23px;
  }
}
@media (max-width: 767px) {
  .single-post__navCont {
    row-gap: 4.8vw;
  }
}
.single-post__navContTtl {
  width: 150px;
}
@media screen and (max-width: 1280px) {
  .single-post__navContTtl {
    width: 11.71875vw;
  }
}
@media (max-width: 1024px) {
  .single-post__navContTtl {
    width: 150px;
  }
}
@media (max-width: 767px) {
  .single-post__navContTtl {
    width: 33.6vw;
  }
}
.single-post__navContTtl > svg {
  width: 100%;
  height: 100%;
  display: block;
}
@media (max-width: 1024px) {
  .single-post__navCont .c-card {
    width: 266px;
  }
}
@media (max-width: 767px) {
  .single-post__navCont .c-card {
    width: 78.6666666667vw;
  }
}
@media (max-width: 1024px) {
  .single-post__navCont .c-card__link {
    row-gap: 10px;
  }
}
@media (max-width: 767px) {
  .single-post__navCont .c-card__link {
    row-gap: 2.6666666667vw;
  }
}
.single-post__bottom {
  margin-top: 84px;
}
@media (max-width: 1024px) {
  .single-post__bottom {
    padding-bottom: 83px;
  }
}
@media (max-width: 767px) {
  .single-post__bottom {
    padding-bottom: 15.4666666667vw;
    margin-top: 15.7333333333vw;
  }
}
.single-post__bottomInner {
  max-width: 1154px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: stretch;
  flex-direction: column;
  row-gap: 104px;
}
@media screen and (max-width: 1280px) {
  .single-post__bottomInner {
    max-width: 90.15625vw;
    row-gap: 8.125vw;
  }
}
@media (max-width: 767px) {
  .single-post__bottomInner {
    max-width: 89.3333333333vw;
    row-gap: 21.0666666667vw;
  }
}
.single-post__bottomCont {
  width: 100%;
}
.single-post__bottomCont .common-dogHeading {
  padding: 0 92px;
}
@media screen and (max-width: 1280px) {
  .single-post__bottomCont .common-dogHeading {
    padding: 0 7.1875vw;
  }
}
@media (max-width: 767px) {
  .single-post__bottomCont .common-dogHeading {
    padding: 0;
    justify-content: flex-start;
  }
}
.single-post__bottomContList {
  padding-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  align-content: stretch;
  flex-direction: row;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media screen and (max-width: 1280px) {
  .single-post__bottomContList {
    padding-top: 3.125vw;
    -moz-column-gap: 2.34375vw;
         column-gap: 2.34375vw;
  }
}
@media (max-width: 767px) {
  .single-post__bottomContList {
    padding-top: 9.0666666667vw;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 8vw;
  }
}
@media (max-width: 767px) {
  .single-post__bottomContList {
    width: 78.6666666667vw;
    margin: 0 auto;
    flex-direction: column;
  }
}

/* layout > archive
============================================================================ */
.category .common-main, .tax-story_cat .common-main, .tag .common-main, .tax-story_tag .common-main, .search .common-main {
  padding-bottom: 176px;
}
@media (max-width: 767px) {
  .category .common-main, .tax-story_cat .common-main, .tag .common-main, .tax-story_tag .common-main, .search .common-main {
    padding-bottom: 45.6vw;
  }
}
.category .archive-post.archive-wrap, .tax-story_cat .archive-post.archive-wrap, .tag .archive-post.archive-wrap, .tax-story_tag .archive-post.archive-wrap, .search .archive-post.archive-wrap {
  padding-top: 150px;
}
@media (max-width: 767px) {
  .category .archive-post.archive-wrap, .tax-story_cat .archive-post.archive-wrap, .tag .archive-post.archive-wrap, .tax-story_tag .archive-post.archive-wrap, .search .archive-post.archive-wrap {
    padding-top: 24.5333333333vw;
  }
}
.category .archive-post__recent, .tax-story_cat .archive-post__recent, .tag .archive-post__recent, .tax-story_tag .archive-post__recent, .search .archive-post__recent {
  margin-top: 178px;
}
@media (max-width: 767px) {
  .category .archive-post__recent, .tax-story_cat .archive-post__recent, .tag .archive-post__recent, .tax-story_tag .archive-post__recent, .search .archive-post__recent {
    margin-top: 26.6666666667vw;
  }
}
.category .archive-post__recent-icn, .tax-story_cat .archive-post__recent-icn, .tag .archive-post__recent-icn, .tax-story_tag .archive-post__recent-icn, .search .archive-post__recent-icn {
  width: 66px;
  top: calc(100% - 30px);
  left: 50%;
  transform: translateX(535%) rotate(-156.17deg);
}
@media (max-width: 767px) {
  .category .archive-post__recent-icn, .tax-story_cat .archive-post__recent-icn, .tag .archive-post__recent-icn, .tax-story_tag .archive-post__recent-icn, .search .archive-post__recent-icn {
    width: 10.1333333333vw;
    top: calc(100% + 2.9333333333vw);
    transform: translateX(332%) rotate(-24.3deg);
  }
}
@media (max-width: 767px) {
  .category .archive-post__popular, .tax-story_cat .archive-post__popular, .tag .archive-post__popular, .tax-story_tag .archive-post__popular, .search .archive-post__popular {
    margin-top: 27.4666666667vw;
  }
}
.category .archive-post__popular__icn, .tax-story_cat .archive-post__popular__icn, .tag .archive-post__popular__icn, .tax-story_tag .archive-post__popular__icn, .search .archive-post__popular__icn {
  top: auto;
  bottom: calc(100% - 86px);
  transform: translateX(-598%) rotate(-125.4deg);
}
.category .archive-post__writers-icn, .tax-story_cat .archive-post__writers-icn, .tag .archive-post__writers-icn, .tax-story_tag .archive-post__writers-icn, .search .archive-post__writers-icn {
  transform: translateX(712%) rotate(-156.17deg);
}
@media (max-width: 767px) {
  .category .archive-post__writers-icn, .tax-story_cat .archive-post__writers-icn, .tag .archive-post__writers-icn, .tax-story_tag .archive-post__writers-icn, .search .archive-post__writers-icn {
    transform: translateX(190%) rotate(-24.3deg);
  }
}

.post-type-archive-story .archive-post__all {
  margin-top: 87px;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .post-type-archive-story .archive-post__all {
    margin-top: 6.796875vw;
  }
}
@media (max-width: 1024px) {
  .post-type-archive-story .archive-post__all {
    margin-top: 8.49609375vw;
  }
}
@media (max-width: 767px) {
  .post-type-archive-story .archive-post__all {
    margin-top: 27.7333333333vw;
  }
}
@media (max-width: 767px) {
  .post-type-archive-story .archive-post__all-icn {
    top: calc(100% + 2.4vw);
    transform: translateX(-415%) rotateY(180deg) rotateZ(-43.76deg);
  }
}

.archive-post__recent {
  margin-top: 80px;
  position: relative;
}
@media (max-width: 767px) {
  .archive-post__recent {
    margin-top: 13.3333333333vw;
  }
}
.archive-post__recent-wrap {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .archive-post__recent-wrap {
    margin-top: 8vw;
  }
}
.archive-post__recent-icn {
  width: 98px;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-420%) rotate(-125.4deg);
}
@media (max-width: 767px) {
  .archive-post__recent-icn {
    width: 10.1333333333vw;
    top: calc(100% + 3.4666666667vw);
    transform: translateX(-410%) rotate(-136.76deg);
  }
}
.archive-post__recent-icn > svg {
  width: 100%;
  height: 100%;
  display: block;
}
.archive-post__all {
  margin-top: 183px;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .archive-post__all {
    margin-top: 14.296875vw;
  }
}
@media (max-width: 1024px) {
  .archive-post__all {
    margin-top: 17.87109375vw;
  }
}
@media (max-width: 767px) {
  .archive-post__all {
    margin-top: 27.7333333333vw;
  }
}
.archive-post__all-wrap {
  max-width: 1154px;
  width: 100%;
  padding-top: 78px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1280px) {
  .archive-post__all-wrap {
    max-width: 90.15625vw;
    padding-top: 6.09375vw;
  }
}
@media (max-width: 767px) {
  .archive-post__all-wrap {
    max-width: 83.7333333333vw;
    padding-top: 8vw;
  }
}
.archive-post__all-wrap > .c-btn {
  margin-top: 46px;
}
@media screen and (max-width: 1280px) {
  .archive-post__all-wrap > .c-btn {
    margin-top: 3.59375vw;
  }
}
@media (max-width: 767px) {
  .archive-post__all-wrap > .c-btn {
    margin-top: 7.4666666667vw;
  }
}
.archive-post__all-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  flex-direction: row;
  gap: 50px 30px;
}
@media screen and (max-width: 1280px) {
  .archive-post__all-inner {
    gap: 3.90625vw 2.34375vw;
  }
}
@media (max-width: 767px) {
  .archive-post__all-inner {
    width: 78.6666666667vw;
    margin: 0 auto;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 8vw;
  }
}
.archive-post__all-icn {
  width: 66px;
  position: absolute;
  top: calc(100% - 51px);
  left: 50%;
  transform: translateX(257%) rotate(-126.55deg);
}
@media (max-width: 767px) {
  .archive-post__all-icn {
    width: 10.1333333333vw;
    top: calc(100% + 9.3333333333vw);
    transform: translateX(190%) rotate(-24.3deg);
  }
}
.archive-post__all-icn > svg {
  width: 100%;
  height: 100%;
  display: block;
}
.archive-post__popular {
  margin-top: 183px;
}
@media (max-width: 767px) {
  .archive-post__popular {
    margin-top: 27.7333333333vw;
  }
}
.archive-post__popular-wrap {
  margin-top: 80px;
  position: relative;
}
@media (max-width: 767px) {
  .archive-post__popular-wrap {
    margin-top: 8vw;
  }
}
.archive-post__popular-wrap .c-popular_story__wrap {
  margin-top: 100px;
}
@media (max-width: 767px) {
  .archive-post__popular-wrap .c-popular_story__wrap {
    margin-top: 13.3333333333vw;
  }
}
.archive-post__popular-btn {
  text-align: center;
}
.archive-post__popular-sb {
  position: relative;
}
.archive-post__popular-sb-icn {
  width: 66px;
  display: block;
  position: absolute;
  bottom: -56px;
  left: 50%;
  transform: translateX(780%) rotate(-156.17deg);
}
@media (max-width: 767px) {
  .archive-post__popular-sb-icn {
    display: none;
  }
}
.archive-post__popular-sb-icn > svg {
  width: 100%;
  height: 100%;
  display: block;
}
.archive-post__writers {
  margin-top: 180px;
  position: relative;
}
@media (max-width: 767px) {
  .archive-post__writers {
    margin-top: 26.6666666667vw;
  }
}
.archive-post__writers-icn {
  width: 66px;
  display: block;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(633%) rotate(-156.17deg);
}
@media (max-width: 767px) {
  .archive-post__writers-icn {
    width: 10.1333333333vw;
    bottom: calc(100% + 9.3333333333vw);
    transform: translateX(190%) rotate(-24.3deg);
  }
}
.archive-post__writers-icn > svg {
  width: 100%;
  height: 100%;
  display: block;
}
.archive-post__tag {
  margin-top: 180px;
  position: relative;
}
@media (max-width: 767px) {
  .archive-post__tag {
    margin-top: 26.6666666667vw;
  }
}
.archive-post__tag-wrap {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .archive-post__tag-wrap {
    margin-top: 8vw;
  }
}
.archive-post__tag-sb {
  position: relative;
}
.archive-post__tag-sb-icn {
  width: 43px;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  pointer-events: none;
}
@media (max-width: 767px) {
  .archive-post__tag-sb-icn {
    display: none;
  }
}
.archive-post__tag-sb-icn.left {
  left: 50%;
  transform: translateX(-1318%);
}
.archive-post__tag-sb-icn.left .archive-post__tag-sb-icn-item.icn-footprints {
  left: 0;
  bottom: calc(100% - 19px);
  transform: rotate(-126.55deg);
}
.archive-post__tag-sb-icn.left .archive-post__tag-sb-icn-item.icn-sharp {
  width: 100%;
  top: 50%;
  transform: translateY(-43%) rotate(25.15deg);
}
.archive-post__tag-sb-icn.right {
  right: 50%;
  transform: translateX(1366%);
}
.archive-post__tag-sb-icn.right .archive-post__tag-sb-icn-item.icn-footprints {
  left: -21px;
  bottom: -42px;
  transform: rotate(-156.17deg);
}
.archive-post__tag-sb-icn.right .archive-post__tag-sb-icn-item.icn-sharp {
  width: 100%;
  top: 32px;
  transform: rotate(-40.42deg);
}
.archive-post__tag-sb-icn-item {
  position: absolute;
}
.archive-post__tag-sb-icn-item.icn-footprints {
  width: 66px;
}
@media (max-width: 767px) {
  .archive-post__tag-sb-icn-item.icn-footprints {
    width: 10.1333333333vw;
  }
}
.archive-post__tag-sb-icn-item.icn-sharp {
  width: 100%;
}
.archive-post__tag-sb-icn-item > svg {
  width: 100%;
  height: 100%;
  display: block;
}
.archive-post__tag-inner {
  position: relative;
  margin-top: 100px;
}
@media (max-width: 767px) {
  .archive-post__tag-inner {
    margin-top: 13.3333333333vw;
  }
}
.archive-post__tag-inner-icn {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  position: absolute;
  pointer-events: none;
}
.archive-post__tag-inner-icn-item {
  position: absolute;
}
.archive-post__tag-inner-icn-item-left {
  width: 43px;
  top: 41px;
  left: 50%;
  transform: translateX(-1336%) rotate(-40.42deg);
}
@media (max-width: 767px) {
  .archive-post__tag-inner-icn-item-left {
    width: 7.2vw;
    top: auto;
    bottom: -31.2vw;
    left: 50%;
    transform: translateX(-492%) rotate(-33.37deg);
  }
}
.archive-post__tag-inner-icn-item-center {
  width: 66px;
  bottom: -146px;
  right: 50%;
  transform: translateX(792%) rotate(-126.55deg);
}
@media (max-width: 767px) {
  .archive-post__tag-inner-icn-item-center {
    width: 10.1333333333vw;
    left: 50%;
    bottom: -35.7333333333vw;
    right: auto;
    transform: translateX(-50%) rotate(-24.3deg);
  }
}
.archive-post__tag-inner-icn-item-right {
  display: none;
}
@media (max-width: 767px) {
  .archive-post__tag-inner-icn-item-right {
    width: 7.2vw;
    display: block;
    bottom: -16.5333333333vw;
    right: 50%;
    transform: translateX(496%) rotate(25.15deg);
  }
}
.archive-post__tag-inner-icn-item > svg {
  width: 100%;
  height: 100%;
  display: block;
}
.archive-post__cont {
  max-width: 1154px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .archive-post__cont {
    max-width: 90.15625vw;
  }
}
@media (max-width: 767px) {
  .archive-post__cont {
    max-width: 78.6666666667vw;
  }
}
.archive-post__contIcn {
  width: 98px;
  position: absolute;
  top: calc(100% + 3px);
  left: 50%;
  transform: translateX(-444%) rotate(-125.4deg);
}
@media (max-width: 767px) {
  .archive-post__contIcn {
    width: 10.1333333333vw;
    top: calc(100% + 2.6666666667vw);
    transform: translateX(-415%) rotate(-136.76deg);
  }
}
.archive-post__contIcn > svg {
  width: 100%;
  height: 100%;
  display: block;
}
.archive-post__contHead {
  margin-bottom: 49px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: flex-start;
  flex-direction: column;
}
@media (max-width: 767px) {
  .archive-post__contHead {
    margin-bottom: 8vw;
  }
}
.archive-post__contHeadTtl {
  width: 100%;
  margin-bottom: 51px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
  flex-direction: row;
}
@media (max-width: 767px) {
  .archive-post__contHeadTtl {
    margin-bottom: 8vw;
  }
}
.archive-post__contHeadTtl > span {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4333333333;
  letter-spacing: 0.1em;
  display: inline-block;
  padding-bottom: 22px;
  position: relative;
}
@media (max-width: 767px) {
  .archive-post__contHeadTtl > span {
    font-size: 11px;
    font-size: 5.8666666667vw;
    line-height: 1.4545454545;
    padding-bottom: 4.5333333333vw;
  }
}
.archive-post__contHeadTtl > span:before {
  content: "";
  background: #de6c38;
  width: 110px;
  height: 8px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .archive-post__contHeadTtl > span:before {
    width: 18.4vw;
    height: 2.1333333333vw;
  }
}
.archive-post__contHeadSubTtl {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4333333333;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (max-width: 767px) {
  .archive-post__contHeadSubTtl {
    font-size: 11px;
    font-size: 5.8666666667vw;
    line-height: 1.4545454545;
  }
}
.archive-post__contGrid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  flex-direction: column;
}
.archive-post__contGridInner {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  flex-direction: row;
  gap: 50px 30px;
}
@media screen and (max-width: 1280px) {
  .archive-post__contGridInner {
    gap: 3.90625vw 2.34375vw;
  }
}
@media (max-width: 767px) {
  .archive-post__contGridInner {
    width: 78.6666666667vw;
    margin: 0 auto;
    justify-content: center;
    align-content: column;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 8vw;
  }
}
.archive-post__contGrid .c-btn {
  margin-top: 46px;
}
@media screen and (max-width: 1280px) {
  .archive-post__contGrid .c-btn {
    margin-top: 3.59375vw;
  }
}
@media (max-width: 767px) {
  .archive-post__contGrid .c-btn {
    margin-top: 7.4666666667vw;
  }
}

/* module > common
============================================================================ */
/* module > Page FV
============================================================================ */
.post-type-archive .c-pageFv {
  height: 27.5vw;
  position: relative;
}
@media (max-width: 1024px) {
  .post-type-archive .c-pageFv {
    height: 32.51953125vw;
  }
}
@media (max-width: 767px) {
  .post-type-archive .c-pageFv {
    height: 65.6vw;
  }
}
@media (max-width: 767px) {
  .post-type-archive .c-pageFv:before {
    height: 30.1333333333vw;
  }
}
.post-type-archive .c-pageFv__inner {
  padding: 0 54px;
  transform: translate(-50%, -5%);
}
@media screen and (max-width: 1280px) {
  .post-type-archive .c-pageFv__inner {
    padding: 0 4.21875vw;
  }
}
@media (max-width: 1024px) {
  .post-type-archive .c-pageFv__inner {
    padding: 0 5.2734375vw;
  }
}
@media (max-width: 767px) {
  .post-type-archive .c-pageFv__inner {
    padding: 0 5.3333333333vw;
    transform: translateX(-50%);
  }
}
.post-type-archive .c-pageFv__heading {
  color: white;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.44;
  letter-spacing: 0.1em;
  padding: 0 91px;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .post-type-archive .c-pageFv__heading {
    font-size: 25px;
    font-size: 3.90625vw;
    padding: 0 7.109375vw;
  }
}
@media (max-width: 1024px) {
  .post-type-archive .c-pageFv__heading {
    padding: 0 8.88671875vw;
  }
}
@media (max-width: 767px) {
  .post-type-archive .c-pageFv__heading {
    font-size: 16px;
    font-size: 8.5333333333vw;
    line-height: 1.4375;
    padding: 0 14.4vw;
  }
}
.post-type-archive .c-pageFv__heading > span {
  line-height: 1;
  width: 71px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-47%) rotate(-15deg);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}
@media screen and (max-width: 1280px) {
  .post-type-archive .c-pageFv__heading > span {
    width: 5.546875vw;
  }
}
@media (max-width: 1024px) {
  .post-type-archive .c-pageFv__heading > span {
    width: 6.93359375vw;
  }
}
@media (max-width: 767px) {
  .post-type-archive .c-pageFv__heading > span {
    width: 11.4666666667vw;
    transform: translateY(-50%) rotate(-15deg);
    filter: drop-shadow(0 1.0666666667vw 2.6666666667vw rgba(0, 0, 0, 0.1));
  }
}
.post-type-archive .c-pageFv__heading > span > svg {
  width: 100%;
  height: 100%;
  display: block;
}

.c-pageFv {
  width: 100%;
  height: 35.9375vw;
  position: relative;
}
@media (max-width: 1024px) {
  .c-pageFv {
    height: 44.921875vw;
  }
}
@media (max-width: 767px) {
  .c-pageFv {
    height: 112.8vw;
  }
}
.c-pageFv:before {
  content: "";
  width: 35.9375vw;
  height: 100%;
  opacity: 0.5;
  background: linear-gradient(to left, rgba(26, 26, 26, 0) 0%, #1a1a1a 70%);
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .c-pageFv:before {
    width: 100%;
    height: 63.2vw;
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0) 0%, #1a1a1a 70%);
    top: auto;
    bottom: 0;
  }
}
.c-pageFv__inner {
  width: 100%;
  padding: 0 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1280px) {
  .c-pageFv__inner {
    padding: 0 3.125vw;
  }
}
@media (max-width: 1024px) {
  .c-pageFv__inner {
    padding: 0 3.90625vw;
  }
}
@media (max-width: 767px) {
  .c-pageFv__inner {
    padding: 0 2.6666666667vw;
    top: auto;
    bottom: 5.3333333333vw;
    transform: translateX(-50%);
  }
}
.c-pageFv__heading {
  color: white;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1280px) {
  .c-pageFv__heading {
    font-size: 30px;
    font-size: 4.6875vw;
  }
}
@media (max-width: 767px) {
  .c-pageFv__heading {
    font-size: 16px;
    font-size: 8.5333333333vw;
    line-height: 1.4375;
  }
}

/* module > form
============================================================================ */
/*////////////////////////// 基本スタイル //////////////////////////*/
input[type=text], input[type=email], input[type=tel], select, textarea {
  font-size: 14px;
  font-size: 0.9333333333rem;
  width: 100%;
  padding: 2px 7px;
  min-height: auto;
  outline: none;
  background: white;
  border: 1px solid gray;
  box-sizing: border-box;
  -webkit-appearance: none; /* ベンダープレフィックス(Google Chrome、Safari用) */
  -moz-appearance: none; /* ベンダープレフィックス(Firefox用) */
  vertical-align: bottom;
}
input[type=text]:-moz-placeholder, input[type=email]:-moz-placeholder, input[type=tel]:-moz-placeholder, select:-moz-placeholder, textarea:-moz-placeholder {
  color: #aaa;
}
input[type=text]:placeholder-shown, input[type=email]:placeholder-shown, input[type=tel]:placeholder-shown, select:placeholder-shown, textarea:placeholder-shown {
  color: #aaa;
}
input[type=text]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, select::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #aaa;
}
input[type=text]:-moz-placeholder, input[type=email]:-moz-placeholder, input[type=tel]:-moz-placeholder, select:-moz-placeholder, textarea:-moz-placeholder {
  color: #aaa;
  opacity: 1;
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #aaa;
  opacity: 1;
}
input[type=text]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #aaa;
}
@media (max-width: 767px) {
  input[type=text], input[type=email], input[type=tel], select, textarea {
    font-size: 14px;
    font-size: 7.4666666667vw;
    padding: 0 3.7333333333vw;
  }
}

/*////////////////////////// テキストエリア //////////////////////////*/
textarea {
  height: 238px;
}
@media (max-width: 767px) {
  textarea {
    height: 144vw;
  }
}

/*////////////////////////// セレクトボックス //////////////////////////*/
select {
  height: 39px;
  -webkit-appearance: none; /* ベンダープレフィックス(Google Chrome、Safari用) */
  -moz-appearance: none; /* ベンダープレフィックス(Firefox用) */
  appearance: none; /* 標準のスタイルを無効にする */
  position: relative;
  background-image: url("./img/common/arw_select.svg");
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center right 10px;
  box-sizing: border-box;
}

::-ms-expand { /* select要素のデザインを無効にする（IE用） */
  display: none;
}

/*////////////////////////// ラジオボタン //////////////////////////*/
.mw_wp_form .mwform-radio-field.horizontal-item {
  position: relative;
  margin-right: 30px;
}
@media (max-width: 767px) {
  .mw_wp_form .mwform-radio-field.horizontal-item {
    margin-right: 8vw;
  }
}
.mw_wp_form .mwform-radio-field.horizontal-item + .horizontal-item {
  margin-left: 0;
  margin-right: 30px;
}
@media (max-width: 767px) {
  .mw_wp_form .mwform-radio-field.horizontal-item + .horizontal-item {
    margin-right: 8vw;
  }
}
.mw_wp_form .mwform-radio-field-text {
  display: inline-flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: normal;
  flex-direction: row;
  font-size: 14px;
  font-size: 0.9333333333rem;
  font-weight: 300;
}
@media (max-width: 767px) {
  .mw_wp_form .mwform-radio-field-text {
    font-size: 15px;
    font-size: 8vw;
    line-height: 1.5;
  }
}
.mw_wp_form input[type=radio] {
  position: absolute;
  opacity: 0;
}
.mw_wp_form input[type=radio] + .mwform-radio-field-text:before {
  content: "";
  background: white;
  border-radius: 50%;
  border: 1px solid black;
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 10px;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}
.mw_wp_form input[type=radio]:checked + .mwform-radio-field-text:before {
  background-color: #3197EE;
  box-shadow: inset 0 0 0 2px white;
}
.mw_wp_form input[type=radio]:focus + .mwform-radio-field-text:before {
  outline: none;
  border-color: #3197EE;
}
.mw_wp_form input[type=radio] + .mwform-radio-field-text:empty:before {
  margin-right: 0;
}

.wpcf7-form .wpcf7-radio .wpcf7-list-item {
  position: relative;
  margin-right: 30px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .wpcf7-form .wpcf7-radio .wpcf7-list-item {
    margin-right: 8vw;
  }
}
.wpcf7-form .wpcf7-radio .wpcf7-list-item:first-of-type {
  margin-left: 0;
}

.wpcf7-radio .wpcf7-list-item-label {
  display: inline-flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: normal;
  flex-direction: row;
  font-size: 14px;
  font-size: 0.9333333333rem;
  font-weight: 300;
}
@media (max-width: 767px) {
  .wpcf7-radio .wpcf7-list-item-label {
    font-size: 15px;
    font-size: 8vw;
    line-height: 1.5;
  }
}
.wpcf7-radio input[type=radio] {
  position: absolute;
  opacity: 0;
}
.wpcf7-radio input[type=radio] + .wpcf7-list-item-label:before {
  content: "";
  background: white;
  border-radius: 50%;
  border: 1px solid black;
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 10px;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}
.wpcf7-radio input[type=radio]:checked + .wpcf7-list-item-label:before {
  background-color: #3197EE;
  box-shadow: inset 0 0 0 2px white;
}
.wpcf7-radio input[type=radio]:focus + .wpcf7-list-item-label:before {
  outline: none;
  border-color: #3197EE;
}
.wpcf7-radio input[type=radio] + .wpcf7-list-item-label:empty:before {
  margin-right: 0;
}
.wpcf7-radio input[type=radio] {
  position: absolute;
  opacity: 0;
}
.wpcf7-radio input[type=radio] + .wpcf7-list-item-label:before {
  content: "";
  background: white;
  border-radius: 50%;
  border: 1px solid black;
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 10px;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}
.wpcf7-radio input[type=radio]:checked + .wpcf7-list-item-label:before {
  background-color: #3197EE;
  box-shadow: inset 0 0 0 2px white;
}
.wpcf7-radio input[type=radio]:focus + .wpcf7-list-item-label:before {
  outline: none;
  border-color: #3197EE;
}
.wpcf7-radio input[type=radio] + .wpcf7-list-item-label:empty:before {
  margin-right: 0;
}

/*///////////////// チェックボックス //////////////////////////*/
.mw_wp_form .mwform-checkbox-field.horizontal-item {
  display: block;
}
.mw_wp_form .mwform-checkbox-field.horizontal-item + .horizontal-item {
  margin-left: 0;
}
.mw_wp_form .mwform-checkbox-field.horizontal-item:nth-of-type(n + 2) {
  margin-top: 20px;
}
.mw_wp_form .mwform-checkbox-field-text {
  font-size: 14px;
  font-size: 0.9333333333rem;
  line-height: 1.5;
  font-weight: 300;
}
@media (max-width: 767px) {
  .mw_wp_form .mwform-checkbox-field-text {
    font-size: 15px;
    font-size: 8vw;
    line-height: 1.5;
  }
}
.mw_wp_form input[type=checkbox] {
  position: absolute;
  opacity: 0;
}
.mw_wp_form input[type=checkbox] + .mwform-checkbox-field-text {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: normal;
  flex-direction: row;
  position: relative;
}
.mw_wp_form input[type=checkbox] + .mwform-checkbox-field-text:before {
  content: "";
  display: inline-block;
  background: white;
  width: 30px;
  height: 30px;
  border: 1px solid #000;
  border-radius: 10px;
  margin-right: 18px;
  cursor: pointer;
  transition: all 250ms ease;
}
@media (max-width: 767px) {
  .mw_wp_form input[type=checkbox] + .mwform-checkbox-field-text:before {
    width: 13.3333333333vw;
    height: 13.3333333333vw;
    border-radius: 4vw;
    margin-right: 6.4vw;
  }
}
.mw_wp_form input[type=checkbox] + .mwform-checkbox-field-text:after {
  content: "";
  position: absolute;
  top: 7px;
  left: 5px;
  z-index: 1;
  width: 20px;
  height: 17px;
  background: #3197EE;
  border-radius: 10px;
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 767px) {
  .mw_wp_form input[type=checkbox] + .mwform-checkbox-field-text:after {
    top: 3.2vw;
    left: 2.4vw;
    width: 8.5333333333vw;
    height: 7.2vw;
    border-radius: 4vw;
  }
}
.mw_wp_form input[type=checkbox]:checked + .mwform-checkbox-field-text:after {
  opacity: 1;
}
.mw_wp_form input[type=checkbox]:focus + .mwform-checkbox-field-text:before {
  outline: none;
  border-color: #3197EE;
}
.mw_wp_form input[type=checkbox] + .mwform-checkbox-field-text:empty:before {
  margin-right: 0;
}

.wpcf7-form .wpcf7-checkbox .wpcf7-list-item {
  display: block;
  margin-left: 0;
}
.wpcf7-form .wpcf7-checkbox .wpcf7-list-item:nth-of-type(n + 2) {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .wpcf7-form .wpcf7-checkbox .wpcf7-list-item:nth-of-type(n + 2) {
    margin-top: 8vw;
  }
}
.wpcf7-form .wpcf7-list-item-label {
  font-size: 14px;
  font-size: 0.9333333333rem;
  line-height: 1.5;
  font-weight: 300;
}
@media (max-width: 767px) {
  .wpcf7-form .wpcf7-list-item-label {
    font-size: 15px;
    font-size: 8vw;
    line-height: 1.5;
  }
}
.wpcf7-form input[type=checkbox] {
  position: absolute;
  opacity: 0;
}
.wpcf7-form input[type=checkbox] + .wpcf7-list-item-label {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: normal;
  flex-direction: row;
  position: relative;
}
.wpcf7-form input[type=checkbox] + .wpcf7-list-item-label:before {
  content: "";
  display: inline-block;
  background: white;
  width: 30px;
  height: 30px;
  border: 1px solid #000;
  border-radius: 10px;
  margin-right: 18px;
  cursor: pointer;
  transition: all 250ms ease;
}
@media (max-width: 767px) {
  .wpcf7-form input[type=checkbox] + .wpcf7-list-item-label:before {
    width: 13.3333333333vw;
    height: 13.3333333333vw;
    border-radius: 4vw;
    margin-right: 6.4vw;
  }
}
.wpcf7-form input[type=checkbox] + .wpcf7-list-item-label:after {
  content: "";
  position: absolute;
  top: 7px;
  left: 5px;
  z-index: 1;
  width: 20px;
  height: 17px;
  background: #3197EE;
  border-radius: 10px;
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 767px) {
  .wpcf7-form input[type=checkbox] + .wpcf7-list-item-label:after {
    top: 3.2vw;
    left: 2.4vw;
    width: 8.5333333333vw;
    height: 7.2vw;
    border-radius: 4vw;
  }
}
.wpcf7-form input[type=checkbox]:checked + .wpcf7-list-item-label:after {
  opacity: 1;
}
.wpcf7-form input[type=checkbox]:focus + .wpcf7-list-item-label:before {
  outline: none;
  border-color: #3197EE;
}
.wpcf7-form input[type=checkbox] + .wpcf7-list-item-label:empty:before {
  margin-right: 0;
}

/*////////////////////////// ファイル添付 //////////////////////////*/
.mw_wp_form .form__row.file input[type=file] {
  display: none;
}
.mw_wp_form .form__row.file .form__col {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: normal;
  flex-direction: row;
}
.mw_wp_form .form__row.file .form__col .file_name {
  display: inline-block;
  word-break: break-all;
  line-height: 1.2;
  max-width: 40%;
  margin-left: 20px;
}
@media (max-width: 767px) {
  .mw_wp_form .form__row.file .form__col .file_name {
    max-width: 60%;
    margin-top: 5.3333333333vw;
    margin-left: 0;
  }
}
.mw_wp_form .form__row.file .mw-wp-form_file a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.mw_wp_form .file_label {
  font-size: 16px;
  font-size: 1.0666666667rem;
  display: block;
  width: 172px;
  padding: 2px 7px;
  min-height: auto;
  border-radius: 10px;
  outline: none;
  text-align: center;
  background: #ddd;
  cursor: pointer;
}
.mw_wp_form .file_label:-moz-placeholder {
  color: #aaa;
}
.mw_wp_form .file_label:placeholder-shown {
  color: #aaa;
}
.mw_wp_form .file_label::-webkit-input-placeholder {
  color: #aaa;
}
.mw_wp_form .file_label:-moz-placeholder {
  color: #aaa;
  opacity: 1;
}
.mw_wp_form .file_label::-moz-placeholder {
  color: #aaa;
  opacity: 1;
}
.mw_wp_form .file_label:-ms-input-placeholder {
  color: #aaa;
}
@media (max-width: 767px) {
  .mw_wp_form .file_label {
    font-size: 14px;
    font-size: 7.4666666667vw;
    padding: 0 3.7333333333vw;
    border-radius: 4vw;
  }
}
.mw_wp_form .mwform-file-delete {
  margin-left: 15px;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .mw_wp_form .mwform-file-delete {
    margin-left: 8vw;
    margin-right: 5.3333333333vw;
  }
}

.mw_wp_form_confirm .file_label {
  display: none;
}

.wpcf7-form .form__row.file input[type=file] {
  display: none;
}
.wpcf7-form .form__row.file .form__col {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: normal;
  flex-direction: row;
}
.wpcf7-form .form__row.file .form__col .file_name {
  display: inline-block;
  word-break: break-all;
  line-height: 1.2;
  max-width: 40%;
  margin-left: 20px;
}
@media (max-width: 767px) {
  .wpcf7-form .form__row.file .form__col .file_name {
    max-width: 60%;
    margin-top: 5.3333333333vw;
    margin-left: 0;
  }
}
.wpcf7-form .form__row.file a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.wpcf7-form .file_label {
  font-size: 16px;
  font-size: 1.0666666667rem;
  display: block;
  width: 172px;
  padding: 2px 7px;
  min-height: auto;
  border-radius: 10px;
  outline: none;
  text-align: center;
  background: #ddd;
  cursor: pointer;
}
.wpcf7-form .file_label:-moz-placeholder {
  color: #aaa;
}
.wpcf7-form .file_label:placeholder-shown {
  color: #aaa;
}
.wpcf7-form .file_label::-webkit-input-placeholder {
  color: #aaa;
}
.wpcf7-form .file_label:-moz-placeholder {
  color: #aaa;
  opacity: 1;
}
.wpcf7-form .file_label::-moz-placeholder {
  color: #aaa;
  opacity: 1;
}
.wpcf7-form .file_label:-ms-input-placeholder {
  color: #aaa;
}
@media (max-width: 767px) {
  .wpcf7-form .file_label {
    font-size: 14px;
    font-size: 7.4666666667vw;
    padding: 0 3.7333333333vw;
    border-radius: 4vw;
  }
}

.page-contact.confirm .file_label {
  display: none;
}

/*////////////////////////// ボタン //////////////////////////*/
input[type=button], input[type=reset], input[type=submit] {
  cursor: pointer;
}

/*////////////////////////// 入力画面・確認画面 //////////////////////////*/
.mw_wp_form_input .error {
  width: 100%;
}
.mw_wp_form_input .form__btn-col:first-of-type {
  display: none;
}

.mw_wp_form_confirm .form__row {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .mw_wp_form_confirm .form__row {
    margin-top: 17.0666666667vw;
  }
}
.mw_wp_form_confirm .form__row.mail_confirm {
  display: none;
}
.mw_wp_form_confirm .form__col:nth-of-type(2) {
  font-size: 14px;
  font-size: 0.9333333333rem;
}
@media (max-width: 767px) {
  .mw_wp_form_confirm .form__col:nth-of-type(2) {
    font-size: 14px;
    font-size: 7.4666666667vw;
  }
}
.mw_wp_form_confirm .form__btn {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .mw_wp_form_confirm .form__btn {
    margin-top: 24vw;
  }
}
.mw_wp_form_confirm .form__btn-col.btn__more {
  margin: 0;
}
.mw_wp_form_confirm .form__btn-col:first-of-type {
  display: block;
}
@media (max-width: 767px) {
  .mw_wp_form_confirm .form__btn-col.back {
    margin-top: 18.6666666667vw;
  }
}
.mw_wp_form_confirm .form__note {
  display: none;
}

.wpcf7-spinner {
  display: none;
}

/* module > btn
============================================================================ */
.c-btn {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4666666667;
  letter-spacing: 0.1em;
  padding: 9px 27px;
  display: inline-block;
  border: solid 3px #de6c38;
  transition: 0.4s ease-out;
}
@media (max-width: 767px) {
  .c-btn {
    font-size: 7.5px;
    font-size: 4vw;
    padding: 2.1333333333vw 7.2vw;
    border-width: 0.8vw;
  }
}
.c-btn:hover {
  color: white;
  background: #de6c38;
  opacity: 1;
}

/*  module > cursor
============================================================================================================ */
.c-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 42px;
  pointer-events: none;
  z-index: 9999;
  opacity: 1;
  will-change: transform;
  transform: translate3d(var(--x, -9999px), var(--y, -9999px), 0) translate(-50%, -50%) scale(1);
}
@media (max-width: 1024px) {
  .c-cursor {
    display: none;
  }
}
.c-cursor--hover .c-cursor__icn {
  transform: translate(-34%, -20%) rotate(-30deg) scale(0.8);
}
.c-cursor--hover .c-cursor__icn > svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 0 9px rgba(26, 26, 26, 0.2));
}
.c-cursor--hover .c-cursor__icn > svg path {
  transition: 0.3s ease-out;
}
.c-cursor--hover .c-cursor__icn > svg > path:first-of-type {
  fill: white;
  stroke-width: 3px;
  stroke: #DD6C90;
}
.c-cursor--hover .c-cursor__icn > svg g path {
  fill: #DD6C90;
}
.c-cursor__icn {
  width: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-34%, -20%) rotate(-30deg);
  transform-origin: center;
  transition: transform 0.3s ease-out;
}
.c-cursor__icn > svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 0 9px rgba(26, 26, 26, 0.2));
}
.c-cursor__icn > svg path {
  transition: 0.3s ease-out;
}
.c-cursor__icn > svg > path:first-of-type {
  fill: #DD6C90;
  stroke-width: 3px;
  stroke: #DD6C90;
}
.c-cursor__icn > svg g path {
  fill: white;
}

/*  module > breadcrumbs
============================================================================================================ */
/* module > pagination （WP-Pagenavi）
============================================================================ */
.common-dogHeading {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: center;
  flex-direction: row;
  padding: 0 10.234375vw;
}
@media (max-width: 767px) {
  .common-dogHeading {
    padding: 0 5.3333333333vw;
  }
}
.common-dogHeading__left {
  max-width: 260px;
  width: 20.3125vw;
  height: auto;
}
@media (max-width: 767px) {
  .common-dogHeading__left {
    width: 22.6666666667vw;
    height: auto;
    margin-top: 12.2666666667vw;
  }
}
.common-dogHeading__left > img {
  width: 100%;
  height: 100%;
}
.common-dogHeading__right {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  flex-direction: column;
  max-width: 470px;
  width: 36.71875vw;
  margin-top: 35px;
  margin-left: -22px;
}
@media (max-width: 767px) {
  .common-dogHeading__right {
    width: 64vw !important;
    margin-top: 0;
    margin-left: -1.6vw;
  }
}
.common-dogHeading__right-top > svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}
@media (max-width: 767px) {
  .common-dogHeading__right-top > svg {
    filter: none;
  }
}
.common-dogHeading__right-top.sp-only {
  width: 100%;
}
.common-dogHeading__right-bottom {
  margin: 21px 0 0 25px;
}
@media screen and (max-width: 1280px) {
  .common-dogHeading__right-bottom {
    margin: 1.640625vw 0 0 1.953125vw;
  }
}
@media (max-width: 767px) {
  .common-dogHeading__right-bottom {
    margin: 1.8666666667vw 0 0 4.2133333333vw;
  }
}
.common-dogHeading__right-bottom > p {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.24rem;
  transform: rotate(6deg);
}
@media screen and (max-width: 1280px) {
  .common-dogHeading__right-bottom > p {
    font-size: 2.03125vw;
  }
}
@media (max-width: 767px) {
  .common-dogHeading__right-bottom > p {
    font-size: 3.4666666667vw;
    letter-spacing: 0;
  }
}

.h3_underLine {
  position: relative;
  text-align: center;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.1em;
  font-size: 30px;
  padding-bottom: 23px;
}
@media (max-width: 1024px) {
  .h3_underLine {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .h3_underLine {
    font-size: 5.8666666667vw;
    padding-bottom: 4.5333333333vw;
  }
}
.h3_underLine::after {
  position: absolute;
  content: "";
  width: 110px;
  height: 8px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #de6c38;
}
@media (max-width: 767px) {
  .h3_underLine::after {
    width: 18.4vw;
    height: 2.1333333333vw;
  }
}

.c-heading--01 {
  width: 617px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 767px) {
  .c-heading--01 {
    width: 85.6vw;
  }
}
.c-heading--01 .c-heading__bg {
  line-height: 1;
  width: 100%;
  display: block;
}
.c-heading--01 .c-heading__bg > svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}
@media (max-width: 767px) {
  .c-heading--01 .c-heading__bg > svg {
    filter: drop-shadow(0 1.0666666667vw 2.6666666667vw rgba(0, 0, 0, 0.1));
  }
}
.c-heading--01 .c-heading__txt {
  color: white;
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .c-heading--01 .c-heading__txt {
    font-size: 12px;
    font-size: 6.4vw;
  }
}
.c-heading--02 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  align-content: center;
  flex-direction: row;
  position: relative;
}
.c-heading--02 .c-heading__inner {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4333333333;
  letter-spacing: 0.1em;
  text-align: center;
  padding-bottom: 23px;
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .c-heading--02 .c-heading__inner {
    font-size: 11px;
    font-size: 5.8666666667vw;
    line-height: 1.4545454545;
    padding-bottom: 4.5333333333vw;
  }
}
.c-heading--02 .c-heading__inner:before {
  content: "";
  background: #de6c38;
  width: 110px;
  height: 8px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .c-heading--02 .c-heading__inner:before {
    width: 18.4vw;
    height: 2.1333333333vw;
  }
}

/*  module > common > loading
============================================================================================================ */
.c-loading {
  background: #f8f8f8;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
.c-loading__cont {
  width: 73.28125vw;
  line-height: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: normal;
  flex-direction: row;
  position: absolute;
  top: 52%;
  left: 0;
  transform: translateY(-30%);
  z-index: 2;
}
@media (max-width: 1024px) {
  .c-loading__cont {
    width: 91.6015625vw;
  }
}
@media (max-width: 767px) {
  .c-loading__cont {
    width: 100vw;
    height: 100vh;
    height: 100svh;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.c-loading__contWanko {
  width: 29.375vw;
  position: relative;
}
@media (max-width: 1024px) {
  .c-loading__contWanko {
    width: 36.71875vw;
  }
}
@media (max-width: 767px) {
  .c-loading__contWanko {
    width: 87.2vw;
    padding-bottom: 0;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-48%);
    transform-origin: center bottom;
  }
}
.c-loading__contWankoHat {
  width: 8.828125vw;
  position: absolute;
  top: 50%;
  right: 5.078125vw;
  transform: translateY(-49%);
}
@media (max-width: 1024px) {
  .c-loading__contWankoHat {
    width: 11.03515625vw;
    right: 2.44140625vw;
  }
}
@media (max-width: 767px) {
  .c-loading__contWankoHat {
    width: 29.0666666667vw;
    top: 10.4vw;
    left: 50%;
    transform: translateX(-51%);
  }
}
.c-loading__contWankoHat > svg {
  overflow: visible;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}
@media (max-width: 767px) {
  .c-loading__contWankoHat > svg {
    filter: drop-shadow(0 1.0666666667vw 2.6666666667vw rgba(0, 0, 0, 0.1));
  }
}
.c-loading__contSb {
  width: 42.109375vw;
  position: relative;
  top: -13.125vw;
}
@media (max-width: 1024px) {
  .c-loading__contSb {
    width: 52.63671875vw;
    top: -9.86328125vw;
  }
}
@media (max-width: 767px) {
  .c-loading__contSb {
    width: 88vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -77%);
  }
}
.c-loading__contSbIcn {
  width: 100%;
}
.c-loading__contSbIcn > svg {
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}
@media (max-width: 767px) {
  .c-loading__contSbIcn > svg {
    filter: drop-shadow(0 1.0666666667vw 2.6666666667vw rgba(0, 0, 0, 0.1));
  }
}
.c-loading__contSbTxt {
  width: 32.421875vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-49%, -53%);
  z-index: 2;
}
@media (max-width: 1024px) {
  .c-loading__contSbTxt {
    width: 40.52734375vw;
  }
}
@media (max-width: 767px) {
  .c-loading__contSbTxt {
    width: 67.7333333333vw;
    transform: translate(-49%, -96%);
  }
}
.c-loading__contSbTxt > svg {
  overflow: visible;
}
.c-loading__fp {
  width: 30vw;
  line-height: 1;
  position: absolute;
  right: 4.296875vw;
  bottom: -2.8125vw;
  transform: rotate(-160.5deg);
  z-index: 1;
}
@media (max-width: 767px) {
  .c-loading__fp {
    width: 55.7333333333vw;
    top: -4vw;
    left: 5.8666666667vw;
    right: auto;
    bottom: auto;
    transform: rotate(-169.96deg);
  }
}
.c-loading__fp > svg {
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}
@media (max-width: 767px) {
  .c-loading__fp > svg {
    filter: drop-shadow(0 1.0666666667vw 2.6666666667vw rgba(0, 0, 0, 0.1));
  }
}
.c-loading svg {
  width: 100%;
  height: 100%;
  display: block;
}

/*  module > common > hwaa
============================================================================================================ */
.home .c-hwaa {
  margin-top: 154px;
}
@media (max-width: 767px) {
  .home .c-hwaa {
    margin-top: 30.9333333333vw;
  }
}

.c-hwaa {
  /* アニメーション */
}
.c-hwaa__heading {
  font-size: 74px;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 138px;
}
@media (max-width: 1024px) {
  .c-hwaa__heading {
    font-size: 37px;
    font-size: 7.2265625vw;
  }
}
@media (max-width: 767px) {
  .c-hwaa__heading {
    font-size: 21px;
    font-size: 11.2vw;
    line-height: 1.2380952381;
    margin-bottom: 27.4666666667vw;
  }
}
.c-hwaa__inner {
  padding: 30px 0 58px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: normal;
  flex-direction: column;
  row-gap: 45px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .c-hwaa__inner {
    padding: 8vw 0 13.8666666667vw;
    row-gap: 9.3333333333vw;
  }
}
.c-hwaa__inner--pc {
  display: flex;
}
@media (max-width: 767px) {
  .c-hwaa__inner--pc {
    display: none;
  }
}
.c-hwaa__inner--sp {
  display: none;
}
@media (max-width: 767px) {
  .c-hwaa__inner--sp {
    display: flex;
  }
}
.c-hwaa__inner:before {
  content: "";
  background: #fde8de;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.c-hwaa__message {
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%);
  z-index: -1;
}
@media (max-width: 767px) {
  .c-hwaa__message {
    width: 100%;
  }
}
.c-hwaa__messageCont {
  padding-right: 10px;
  padding-bottom: 21px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: normal;
  flex-direction: row;
  -moz-column-gap: 165px;
       column-gap: 165px;
}
@media (max-width: 767px) {
  .c-hwaa__messageCont {
    padding-bottom: 4.8vw;
    padding-right: 2.1333333333vw;
    -moz-column-gap: 29.6vw;
         column-gap: 29.6vw;
  }
}
.c-hwaa__messageContTxt {
  font-size: 26px;
  line-height: 1.2307692308;
  letter-spacing: 0.1em;
  text-align: right;
  color: black;
  -webkit-text-stroke-width: 0.3px;
  transform: rotate(8deg);
}
@media (max-width: 767px) {
  .c-hwaa__messageContTxt {
    font-size: 9.5px;
    font-size: 5.0666666667vw;
    line-height: 1.2105263158;
    -webkit-text-stroke-width: 0.08vw;
  }
}
.c-hwaa__messageContWanko {
  width: 156px;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(0%);
}
@media (max-width: 767px) {
  .c-hwaa__messageContWanko {
    width: 28.2666666667vw;
    top: -2.9333333333vw;
  }
}
.c-hwaa__messageContClick {
  width: 59px;
  margin-top: 4px;
  display: block;
  transform: rotate(-21.28deg);
}
@media (max-width: 767px) {
  .c-hwaa__messageContClick {
    width: 11.7333333333vw;
    margin-top: 3.2vw;
  }
}
.c-hwaa__messageContClick > svg {
  width: 100%;
  height: 100%;
  display: block;
}
.c-hwaa__messageHand {
  width: 68px;
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(157%);
  z-index: 3;
}
@media (max-width: 767px) {
  .c-hwaa__messageHand {
    width: 14.9333333333vw;
    top: -6.4vw;
    transform: translateX(140%);
  }
}
.c-hwaa__messageHand img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.c-hwaa__list {
  height: 211px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  align-content: normal;
  flex-direction: row;
  will-change: transform;
  backface-visibility: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .c-hwaa__list {
    height: 42.1333333333vw;
  }
}
.c-hwaa__list.high .c-hwaa__listItem:hover {
  transform: rotate(10deg);
}
@media (max-width: 1024px) {
  .c-hwaa__list.high .c-hwaa__listItem:hover {
    transform: rotate(0deg);
  }
}
.c-hwaa__list.high .c-hwaa__listItem.is-even {
  top: 40px;
}
@media (max-width: 767px) {
  .c-hwaa__list.high .c-hwaa__listItem.is-even {
    top: 8vw;
  }
}
@media (max-width: 767px) {
  .c-hwaa__list.middle .c-hwaa__listItem.is-even {
    top: 8vw;
  }
}
.c-hwaa__list.low .c-hwaa__listItem:hover {
  transform: rotate(-10deg);
}
@media (max-width: 1024px) {
  .c-hwaa__list.low .c-hwaa__listItem:hover {
    transform: rotate(0deg);
  }
}
.c-hwaa__list.low .c-hwaa__listItem.is-odd {
  top: 36px;
}
@media (max-width: 767px) {
  .c-hwaa__list.low .c-hwaa__listItem.is-odd {
    top: auto;
  }
}
@media (max-width: 767px) {
  .c-hwaa__list.low .c-hwaa__listItem.is-even {
    top: 8vw;
  }
}
.c-hwaa__listItem {
  width: 200px;
  margin: 0 5px;
  position: relative;
  cursor: pointer;
  transition: 0.2s ease-out;
}
@media (max-width: 767px) {
  .c-hwaa__listItem {
    width: 40vw;
    margin: 0;
  }
}
@keyframes hwaa-marquee-left {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  } /* コンテンツ2本分のうち半分だけ動かす */
}
@keyframes hwaa-marquee-right {
  from {
    transform: translate3d(-50%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.c-hwaa__modal {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 102;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.4s ease;
}
.c-hwaa__modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.c-hwaa__modalWrapper {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: normal;
  flex-direction: row;
}
.c-hwaa__modalInner {
  width: 774px;
  position: relative;
}
@media (max-width: 1024px) {
  .c-hwaa__modalInner {
    width: 75.5859375vw;
  }
}
@media (max-width: 767px) {
  .c-hwaa__modalInner {
    width: 64.2666666667vw;
  }
}
.c-hwaa__modalInner .swiper-button {
  width: 65px;
  height: 65px;
  margin: 0;
  position: absolute;
  top: 50%;
  bottom: auto;
  left: auto;
  right: auto;
  transform: translateY(-50%);
}
@media screen and (max-width: 1280px) {
  .c-hwaa__modalInner .swiper-button {
    width: 5.078125vw;
    height: 5.078125vw;
  }
}
@media (max-width: 767px) {
  .c-hwaa__modalInner .swiper-button {
    width: 12.5333333333vw;
    height: 12.5333333333vw;
  }
}
.c-hwaa__modalInner .swiper-button:after {
  display: none;
}
.c-hwaa__modalInner .swiper-button:hover svg path:first-of-type {
  fill: #de6c38;
}
.c-hwaa__modalInner .swiper-button:hover svg path:nth-of-type(2) {
  fill: white;
}
.c-hwaa__modalInner .swiper-button svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.1));
}
@media (max-width: 767px) {
  .c-hwaa__modalInner .swiper-button svg {
    filter: drop-shadow(0 0 2.1333333333vw rgba(0, 0, 0, 0.1));
  }
}
.c-hwaa__modalInner .swiper-button svg path {
  transition: 0.4s;
}
.c-hwaa__modalInner .swiper-button svg path:first-of-type {
  fill: white;
}
.c-hwaa__modalInner .swiper-button svg path:nth-of-type(2) {
  fill: #de6c38;
}
.c-hwaa__modalInner .swiper-button-prev {
  right: calc(100% + 20px);
}
@media (max-width: 767px) {
  .c-hwaa__modalInner .swiper-button-prev {
    right: calc(100% + 2.6666666667vw);
  }
}
.c-hwaa__modalInner .swiper-button-next {
  left: calc(100% + 20px);
}
@media (max-width: 767px) {
  .c-hwaa__modalInner .swiper-button-next {
    left: calc(100% + 2.6666666667vw);
  }
}
.c-hwaa__modalSlider {
  background: white;
  border-radius: 20px;
  overflow: visible;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .c-hwaa__modalSlider {
    box-shadow: 0 1.0666666667vw 2.6666666667vw 0 rgba(0, 0, 0, 0.1);
  }
}
.c-hwaa__modalSlider .swiper-pagination {
  margin: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: normal;
  flex-direction: row;
  -moz-column-gap: 22px;
       column-gap: 22px;
  top: calc(100% + 23px);
  bottom: auto;
}
@media (max-width: 767px) {
  .c-hwaa__modalSlider .swiper-pagination {
    top: calc(100% + 6.1333333333vw);
    -moz-column-gap: 5.8666666667vw;
         column-gap: 5.8666666667vw;
  }
}
.c-hwaa__modalSlider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 !important;
  background: #868686;
  opacity: 1;
  position: relative;
  transition: color 0.2s;
}
@media (max-width: 767px) {
  .c-hwaa__modalSlider .swiper-pagination-bullet {
    min-width: 2.6666666667vw;
    width: 2.6666666667vw;
    height: 2.6666666667vw;
  }
}
.c-hwaa__modalSlider .swiper-pagination-bullet:before {
  content: "";
  width: 23px;
  height: 20px;
  background-image: url(./img/common/icn_footprints-slider.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
}
@media (max-width: 767px) {
  .c-hwaa__modalSlider .swiper-pagination-bullet:before {
    width: 6.1333333333vw;
    height: 5.3333333333vw;
  }
}
.c-hwaa__modalSlider .swiper-pagination-bullet-active {
  background: transparent;
}
.c-hwaa__modalSlider .swiper-pagination-bullet-active:before {
  opacity: 1;
  pointer-events: auto;
}
.c-hwaa__modalSliderCont {
  padding: 48px 40px 32px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  align-content: normal;
  flex-direction: row;
}
@media (max-width: 767px) {
  .c-hwaa__modalSliderCont {
    padding: 5.3333333333vw 5.3333333333vw 8vw;
    flex-direction: column;
    align-items: center;
  }
}
.c-hwaa__modalSliderContImg {
  width: 324px;
  aspect-ratio: 1;
}
@media (max-width: 1024px) {
  .c-hwaa__modalSliderContImg {
    width: 31.640625vw;
  }
}
@media (max-width: 767px) {
  .c-hwaa__modalSliderContImg {
    width: 50.1333333333vw;
    margin: 0 auto;
  }
}
.c-hwaa__modalSliderContInner {
  width: 350px;
  padding-top: 23px;
}
@media (max-width: 1024px) {
  .c-hwaa__modalSliderContInner {
    width: 34.1796875vw;
    padding-top: 2.24609375vw;
  }
}
@media (max-width: 767px) {
  .c-hwaa__modalSliderContInner {
    width: 100%;
    padding-top: 2.6666666667vw;
  }
}
.c-hwaa__modalSliderContName {
  color: #de6c38;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.4347826087;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
  text-align: center;
}
@media (max-width: 767px) {
  .c-hwaa__modalSliderContName {
    font-size: 10px;
    font-size: 5.3333333333vw;
    line-height: 1.45;
    margin-bottom: 4.2666666667vw;
  }
}
.c-hwaa__modalSliderContTxt {
  text-align: justify;
}

/*  module > common > sb
============================================================================================================ */
.c-sb {
  background: #f0f0f0;
  width: 908px;
  padding: 30px;
  margin: 50px auto 0;
  border-radius: 20px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: normal;
  flex-direction: column;
  row-gap: 24px;
}
@media (max-width: 1024px) {
  .c-sb {
    width: 88.671875vw;
    padding: 2.9296875vw;
    row-gap: 2.34375vw;
  }
}
@media (max-width: 767px) {
  .c-sb {
    width: 100%;
    padding: 8vw 7.7333333333vw 8vw 8vw;
    margin-top: 8vw;
    border-radius: 0;
    row-gap: 7.7333333333vw;
  }
}
.c-sb__item {
  width: 803px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  align-content: normal;
  flex-direction: row;
}
@media (max-width: 1024px) {
  .c-sb__item {
    width: 78.41796875vw;
  }
}
@media (max-width: 767px) {
  .c-sb__item {
    width: 100%;
    padding-bottom: 11.4666666667vw;
    flex-direction: column;
    row-gap: 2.6666666667vw;
  }
}
@media (max-width: 767px) {
  .c-sb__item:nth-of-type(odd) .c-sb__itemIcn {
    left: -2.6666666667vw;
  }
}
.c-sb__item:nth-of-type(odd) .c-sb__itemIcnInner {
  left: 0;
}
@media (max-width: 767px) {
  .c-sb__item:nth-of-type(odd) .c-sb__itemContBg {
    background: #eca1b9;
  }
}
.c-sb__item:nth-of-type(odd) .c-sb__itemContBg > svg path {
  fill: #f1b8cb;
}
@media (max-width: 767px) {
  .c-sb__item:nth-of-type(odd) .c-sb__itemContBg > svg path {
    fill: #eca1b9;
  }
}
.c-sb__item:nth-of-type(odd) .c-sb__itemContBgItem:before {
  background: #f1b8cb;
}
@media (max-width: 767px) {
  .c-sb__item:nth-of-type(odd) .c-sb__itemContBgItem:before {
    background: #eca1b9;
  }
}
.c-sb__item:nth-of-type(odd) .c-sb__itemContBgItem > svg path {
  fill: #f1b8cb;
}
@media (max-width: 767px) {
  .c-sb__item:nth-of-type(odd) .c-sb__itemContBgItem > svg path {
    fill: #eca1b9;
  }
}
.c-sb__item:nth-of-type(odd) .c-sb__itemContTxt {
  padding-left: 56px;
}
@media (max-width: 1024px) {
  .c-sb__item:nth-of-type(odd) .c-sb__itemContTxt {
    padding-left: 5.46875vw;
  }
}
@media (max-width: 767px) {
  .c-sb__item:nth-of-type(odd) .c-sb__itemContTxt {
    padding-left: 8vw;
  }
}
.c-sb__item:nth-of-type(even) {
  margin-left: auto;
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .c-sb__item:nth-of-type(even) {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .c-sb__item:nth-of-type(even) .c-sb__itemIcn {
    margin-left: auto;
    right: -2.6666666667vw;
  }
}
.c-sb__item:nth-of-type(even) .c-sb__itemIcnInner {
  right: 0;
}
.c-sb__item:nth-of-type(even) .c-sb__itemContBg {
  transform: rotateY(180deg);
}
@media (max-width: 767px) {
  .c-sb__item:nth-of-type(even) .c-sb__itemContBg {
    background: #e1855a;
    transform: translate(-50%, -50%);
  }
}
.c-sb__item:nth-of-type(even) .c-sb__itemContBg > svg path {
  fill: #e1855a;
}
@media (max-width: 767px) {
  .c-sb__item:nth-of-type(even) .c-sb__itemContBgItem:before {
    background: #e1855a;
  }
}
.c-sb__item:nth-of-type(even) .c-sb__itemContBgItem > svg path {
  fill: #e1855a;
}
@media (max-width: 767px) {
  .c-sb__item:nth-of-type(even) .c-sb__itemContBgItem.high {
    transform: translateX(-50%) rotateY(180deg);
  }
}
@media (max-width: 767px) {
  .c-sb__item:nth-of-type(even) .c-sb__itemContBgItem.low {
    transform: translateX(-50%) rotateY(180deg);
  }
}
.c-sb__item:nth-of-type(even) .c-sb__itemContTxt {
  padding-right: 56px;
}
@media (max-width: 1024px) {
  .c-sb__item:nth-of-type(even) .c-sb__itemContTxt {
    padding-right: 5.46875vw;
  }
}
@media (max-width: 767px) {
  .c-sb__item:nth-of-type(even) .c-sb__itemContTxt {
    padding-right: 8vw;
  }
}
.c-sb__itemIcn {
  width: calc(100% - 700px);
  position: relative;
}
@media (max-width: 1024px) {
  .c-sb__itemIcn {
    width: calc(100% - 68.359375vw);
  }
}
@media (max-width: 767px) {
  .c-sb__itemIcn {
    width: 32vw;
    height: 32vw;
    z-index: 2;
  }
}
.c-sb__itemIcnInner {
  width: 120px;
  position: absolute;
  top: 38px;
}
@media (max-width: 1024px) {
  .c-sb__itemIcnInner {
    width: 11.71875vw;
  }
}
@media (max-width: 767px) {
  .c-sb__itemIcnInner {
    width: 32vw;
    top: 0;
  }
}
.c-sb__itemCont {
  width: 700px;
  position: relative;
}
@media (max-width: 1024px) {
  .c-sb__itemCont {
    width: 68.359375vw;
  }
}
@media (max-width: 767px) {
  .c-sb__itemCont {
    width: 100%;
    z-index: 1;
  }
}
.c-sb__itemContBg {
  display: block;
  position: relative;
}
@media (max-width: 767px) {
  .c-sb__itemContBg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.c-sb__itemContBg > svg {
  width: 100%;
  height: 100%;
  display: block;
}
.c-sb__itemContBgItem {
  width: 100%;
  line-height: 1;
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .c-sb__itemContBgItem:before {
    content: "";
    width: 99%;
    height: 0.5333333333vw;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}
.c-sb__itemContBgItem.high {
  bottom: 100%;
}
.c-sb__itemContBgItem.high:before {
  bottom: -0.2666666667vw;
}
.c-sb__itemContBgItem.low {
  top: 100%;
}
.c-sb__itemContBgItem.low:before {
  top: -0.2666666667vw;
}
.c-sb__itemContBgItem > svg {
  width: 100%;
  height: 100%;
  display: block;
}
.c-sb__itemContTxt {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.4210526316;
  letter-spacing: 0.1em;
  text-align: center;
  color: white;
  width: 100%;
  height: 100%;
  padding: 32px 39px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: normal;
  flex-direction: row;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1024px) {
  .c-sb__itemContTxt {
    font-size: 9.5px;
    font-size: 1.85546875vw;
    padding: 3.125vw 3.80859375vw;
  }
}
@media (max-width: 767px) {
  .c-sb__itemContTxt {
    font-size: 8px;
    font-size: 4.2666666667vw;
    line-height: 1.7;
    letter-spacing: 0em;
    text-align: justify;
    padding: 0 8vw;
    position: relative;
    top: auto;
    left: auto;
    transform: translate(0);
  }
}
.c-sb__itemContTxtInner > a {
  font-weight: 800;
  line-height: 1.7894736842; /* 178.947% */
  letter-spacing: 0.1em;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: 12%;
  text-underline-offset: 16%;
  text-underline-position: from-font;
}
@media (max-width: 767px) {
  .c-sb__itemContTxtInner > a {
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0em;
    text-underline-offset: 14%;
  }
}

/*  module > common > hwaa
============================================================================================================ */
.home .c-hwaa {
  margin-top: 154px;
}

.c-fixedBtn {
  background: white;
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  opacity: 1;
  visibility: visible;
  z-index: 101;
}
.c-fixedBtn.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.c-fixedBtn__wanko {
  display: none;
}
@media (max-width: 1024px) {
  .c-fixedBtn__wanko {
    width: 130px;
    display: block;
    bottom: -120%;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    z-index: 1;
    transition-duration: 0.4s;
    transition-delay: 0s;
  }
}
@media (max-width: 767px) {
  .c-fixedBtn__wanko {
    width: 34.6666666667vw;
  }
}
.c-fixedBtn__link {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4375;
  letter-spacing: 0.15em;
  color: white;
  background: #de6c38;
  width: 100%;
  padding: 16px 0 17px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: normal;
  flex-direction: row;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .c-fixedBtn__link {
    font-size: 8px;
    font-size: 4.2666666667vw;
    padding: 5.6vw 0 5.3333333333vw;
  }
}
.c-fixedBtn__linkTxt {
  display: inline-block;
  position: relative;
}
.c-fixedBtn__linkIcn {
  width: 101px;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: calc(100% + 19px);
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .c-fixedBtn__linkIcn {
    width: 16.5333333333vw;
    left: calc(100% + 2.1333333333vw);
  }
}
.c-fixedBtn__linkIcn > svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}
@media (max-width: 767px) {
  .c-fixedBtn__linkIcn > svg {
    filter: drop-shadow(0 1.0666666667vw 2.6666666667vw rgba(0, 0, 0, 0.1));
  }
}

.c-newsList__wrap {
  background-color: #fde8de;
  padding: 50px 0;
}
@media (max-width: 767px) {
  .c-newsList__wrap {
    padding: 10.6666666667vw 0;
  }
}
.c-newsList__result {
  max-width: 1154px;
  width: 100%;
  margin: 50px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
  flex-direction: row;
  gap: 50px 30px;
}
@media screen and (max-width: 1280px) {
  .c-newsList__result {
    max-width: 90.15625vw;
    margin-top: 3.90625vw;
    gap: 3.90625vw 2.34375vw;
  }
}
@media (max-width: 767px) {
  .c-newsList__result {
    width: 78.6666666667vw;
    margin-top: 8vw;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 8vw;
  }
}
.c-newsList__post {
  width: 266px;
}
@media (max-width: 767px) {
  .c-newsList__post {
    width: size_sop(295);
    margin: 0 0 8vw;
  }
}
@media (max-width: 767px) {
  .c-newsList__post:last-of-type {
    margin: 0;
  }
}
.c-newsList__post-img {
  width: 100%;
  height: 129px;
}
@media (max-width: 767px) {
  .c-newsList__post-img {
    height: 38.1333333333vw;
  }
}
.c-newsList__post-img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-newsList__post > p {
  margin-top: 10px;
  font-size: 15px;
}
@media (max-width: 767px) {
  .c-newsList__post > p {
    margin-top: 2.6666666667vw;
    font-size: 3.7333333333vw;
  }
}

.c-future {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .c-future {
    max-width: none;
  }
}
.c-future__group {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  align-content: center;
  flex-direction: row;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .c-future__group {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    align-content: flex-end;
    flex-direction: column;
    margin-bottom: 8vw;
  }
}
.c-future__group:nth-of-type(2n) {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  align-content: center;
  flex-direction: row-reverse;
  z-index: 2;
}
.c-future__group:nth-of-type(2n) .c-future__label {
  left: calc(100% - 112px);
  right: auto;
}
@media (max-width: 1024px) {
  .c-future__group:nth-of-type(2n) .c-future__label {
    left: calc(100% - 8.75vw);
  }
}
@media (max-width: 767px) {
  .c-future__group:nth-of-type(2n) .c-future__label {
    left: auto;
    margin-left: auto;
    margin-right: -22.1333333333vw;
  }
}
.c-future__group:nth-of-type(n + 2) {
  margin-top: -30px;
}
@media (max-width: 767px) {
  .c-future__group:nth-of-type(n + 2) {
    margin-top: 8vw;
  }
}
.c-future__group:last-of-type {
  margin-bottom: 0;
}
.c-future__label {
  background-color: white;
  width: 470px;
  min-height: 153px;
  padding: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: stretch;
  flex-direction: column;
  position: absolute;
  top: 50%;
  right: calc(100% - 112px);
  transform: translateY(-50%);
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
  pointer-events: all;
}
@media (max-width: 1024px) {
  .c-future__label {
    width: 45.8984375vw;
    min-height: 14.94140625vw;
    padding: 3.125vw;
    right: calc(100% - 10.9375vw);
  }
}
@media (max-width: 767px) {
  .c-future__label {
    width: 75.4666666667vw;
    height: 29.3333333333vw;
    padding: 5.3333333333vw;
    margin-top: -3.2vw;
    position: relative;
    right: unset;
    top: auto;
    left: -22.1333333333vw;
    transform: translateY(0%);
    z-index: -1;
  }
}
.c-future__label > p {
  text-align: center;
  letter-spacing: 0.1em;
  width: 100%;
  left: unset;
  font-weight: 700;
  font-size: 27px;
}
@media (max-width: 1024px) {
  .c-future__label > p {
    font-size: 13.5px;
    font-size: 2.63671875vw;
  }
}
@media (max-width: 767px) {
  .c-future__label > p {
    font-size: 4.5333333333vw;
  }
}
.c-future__label > span {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  position: absolute;
  bottom: 7px;
  right: 10px;
  color: #e1855a;
}
@media (max-width: 1024px) {
  .c-future__label > span {
    font-size: 7.5px;
    font-size: 1.46484375vw;
    bottom: 0.68359375vw;
    right: 0.9765625vw;
  }
}
@media (max-width: 767px) {
  .c-future__label > span {
    font-size: 2.6666666667vw;
    bottom: 0.5333333333vw;
    right: 0.5333333333vw;
  }
}
.c-future__image {
  width: 782px;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .c-future__image {
    width: 61.09375vw;
  }
}
@media (max-width: 1024px) {
  .c-future__image {
    width: 61.1328125vw;
  }
}
@media (max-width: 767px) {
  .c-future__image {
    width: 72.5333333333vw;
    height: auto;
    pointer-events: none;
  }
}
.c-future__image > img {
  height: 440px;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1280px) {
  .c-future__image > img {
    height: 34.375vw;
  }
}
@media (max-width: 1024px) {
  .c-future__image > img {
    height: 34.375vw;
  }
}
@media (max-width: 767px) {
  .c-future__image > img {
    height: 40.8vw;
    box-shadow: 0 1.0666666667vw 2.6666666667vw 0 rgba(0, 0, 0, 0.1);
  }
}

.c-pageTop {
  width: 52px;
  height: 100vh;
  height: 100svh;
  position: fixed;
  bottom: 50%;
  right: -5px;
  transform: translateY(50%);
  z-index: 99;
  pointer-events: none;
}
@media (max-width: 767px) {
  .c-pageTop {
    width: 13.8666666667vw;
    right: -1.3333333333vw;
  }
}
.c-pageTop:hover .c-pageTop__inner {
  color: white;
  background: #de6c38;
}
.c-pageTop:hover .c-pageTop__icn svg path {
  fill: white;
}
.c-pageTop__inner {
  width: 100%;
  height: 188px;
  padding-top: 7px;
  padding-right: 1px;
  background: white;
  border: solid 3px #de6c38;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: center;
  flex-direction: column;
  transition: 0.3s ease-out;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: all;
  cursor: pointer;
}
@media (max-width: 767px) {
  .c-pageTop__inner {
    height: 50.1333333333vw;
    padding-top: 1.8666666667vw;
    padding-right: 0.2666666667vw;
    border-width: 0.8vw;
  }
}
.c-pageTop__icn {
  line-height: 1;
  width: 27px;
}
@media (max-width: 767px) {
  .c-pageTop__icn {
    width: 7.2vw;
  }
}
.c-pageTop__icn > svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}
@media (max-width: 767px) {
  .c-pageTop__icn > svg {
    filter: drop-shadow(0 1.0666666667vw 2.6666666667vw rgba(0, 0, 0, 0.1));
  }
}
.c-pageTop__icn > svg path {
  fill: #de6c38;
  transition: 0.3s ease-out;
}
.c-pageTop__txt {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.12em;
  display: block;
  margin-top: 7px;
  writing-mode: vertical-rl;
  text-orientation: upright;
}
@media (max-width: 767px) {
  .c-pageTop__txt {
    font-size: 7.5px;
    font-size: 4vw;
  }
}

.c-popular_story__wrap {
  position: relative;
}
.c-popular_story__main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: row;
  margin-bottom: 42px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .c-popular_story__main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-direction: column;
    margin-bottom: 5.3333333333vw;
  }
}
.c-popular_story__main-image {
  width: 600px;
  height: 290px;
  overflow: hidden;
  margin-right: -45px;
}
@media screen and (max-width: 1280px) {
  .c-popular_story__main-image {
    width: 46.875vw;
    height: 22.65625vw;
    margin-right: -3.515625vw;
  }
}
@media (max-width: 767px) {
  .c-popular_story__main-image {
    width: 78.6666666667vw;
    height: 38.1333333333vw;
    margin-right: 0;
    margin-bottom: -13.3333333333vw;
  }
}
.c-popular_story__main-image .swiper-slide {
  width: 100%;
  height: 100%;
}
.c-popular_story__main-image .swiper-slide a {
  background: white;
  width: 100%;
  height: 100%;
  display: block;
}
.c-popular_story__main-image .swiper-slide a:hover {
  opacity: 1;
}
.c-popular_story__main-image .swiper-slide a:hover img {
  opacity: 0.7;
}
.c-popular_story__main-image .swiper-slide a img {
  opacity: 1;
  transition: 0.4s ease-out;
}
.c-popular_story__main-decs {
  position: relative;
  z-index: 0;
  width: 445px;
  height: 390px;
  background-color: white;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1280px) {
  .c-popular_story__main-decs {
    width: 34.765625vw;
    height: 30.46875vw;
  }
}
@media (max-width: 767px) {
  .c-popular_story__main-decs {
    width: 89.3333333333vw;
    height: 89.6vw;
    box-shadow: 0 1.0666666667vw 2.6666666667vw 0 rgba(0, 0, 0, 0.1);
  }
}
.c-popular_story__main-decs .swiper-slide {
  width: 100%;
  height: 100%;
  background-color: white;
  padding: 79px 24px 69px 71px;
}
@media screen and (max-width: 1280px) {
  .c-popular_story__main-decs .swiper-slide {
    padding: 6.171875vw 1.875vw 5.390625vw 5.546875vw;
  }
}
@media (max-width: 767px) {
  .c-popular_story__main-decs .swiper-slide {
    padding: 18.6666666667vw 5.3333333333vw 8vw;
  }
}
.c-popular_story__main-decs .swiper-slide > p:first-of-type {
  font-size: 23px;
  line-height: 1.4347826087;
  color: #de6c38;
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 1.3;
}
@media screen and (max-width: 1080px) {
  .c-popular_story__main-decs .swiper-slide > p:first-of-type {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .c-popular_story__main-decs .swiper-slide > p:first-of-type {
    font-size: 9px;
    font-size: 4.8vw;
    line-height: 1.4444444444;
    margin-bottom: 4.2666666667vw;
    width: 78.6666666667vw;
    height: 13.8666666667vw;
  }
}
.c-popular_story__main-decs .swiper-slide > p:last-of-type {
  font-size: 15px;
  line-height: 1.7;
  color: #1a1a1a;
  margin-top: 20px;
}
@media screen and (max-width: 1080px) {
  .c-popular_story__main-decs .swiper-slide > p:last-of-type {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .c-popular_story__main-decs .swiper-slide > p:last-of-type {
    font-size: 7px;
    font-size: 3.7333333333vw;
    margin-top: 4.2666666667vw;
  }
}
.c-popular_story__thumb {
  width: 1000px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .c-popular_story__thumb {
    width: 78.125vw;
  }
}
@media (max-width: 767px) {
  .c-popular_story__thumb {
    width: 100%;
  }
}
.c-popular_story__thumb-swiper {
  width: 100%;
  overflow: hidden;
}
.c-popular_story__thumb-swiper .swiper-wrapper .swiper-slide {
  width: 239px;
  height: 116px;
  margin-right: 15px;
  left: -254px;
  cursor: pointer;
}
@media screen and (max-width: 1280px) {
  .c-popular_story__thumb-swiper .swiper-wrapper .swiper-slide {
    width: 18.671875vw;
    height: 9.0625vw;
    margin-right: 1.171875vw;
    left: -19.84375vw;
  }
}
@media (max-width: 767px) {
  .c-popular_story__thumb-swiper .swiper-wrapper .swiper-slide {
    width: 59.2vw;
    height: 28.8vw;
    margin: 0;
  }
}
.c-popular_story__thumb-swiper .swiper-wrapper .swiper-slide > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-popular_story__swiper-pagination {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: normal;
  flex-direction: row;
  height: 20px;
  margin: 18px 0 48px 0;
  -moz-column-gap: 22px;
       column-gap: 22px;
  top: calc(100% + 23px);
  bottom: auto;
}
@media screen and (max-width: 1280px) {
  .c-popular_story__swiper-pagination {
    -moz-column-gap: 1.71875vw;
         column-gap: 1.71875vw;
    top: calc(100% + 1.796875vw);
  }
}
@media (max-width: 767px) {
  .c-popular_story__swiper-pagination {
    -moz-column-gap: 5.8666666667vw;
         column-gap: 5.8666666667vw;
    top: calc(100% + 6.1333333333vw);
    margin: 4.8vw 0 7.4666666667vw;
  }
}
.c-popular_story__swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 !important;
  background: #dbdbdb;
  opacity: 1;
  position: relative;
  transition: color 0.2s;
}
@media screen and (max-width: 1080px) {
  .c-popular_story__swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}
.c-popular_story__swiper-pagination .swiper-pagination-bullet:before {
  content: "";
  width: 23px;
  height: 20px;
  background-image: url(./img/common/icn_footprints-slider.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
}
@media screen and (max-width: 1080px) {
  .c-popular_story__swiper-pagination .swiper-pagination-bullet:before {
    width: 18.4px;
    height: 16px;
  }
}
@media (max-width: 767px) {
  .c-popular_story__swiper-pagination .swiper-pagination-bullet:before {
    width: 6.1333333333vw;
    height: 5.3333333333vw;
  }
}
.c-popular_story__swiper-pagination .swiper-pagination-bullet-active {
  background: transparent;
}
.c-popular_story__swiper-pagination .swiper-pagination-bullet-active:before {
  opacity: 1;
  pointer-events: auto;
}
.c-popular_story__swiper-button {
  width: 65px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 1080px) {
  .c-popular_story__swiper-button {
    width: 52px;
  }
}
@media (max-width: 767px) {
  .c-popular_story__swiper-button {
    width: 12.5333333333vw;
  }
}
.c-popular_story__swiper-button:hover svg path:first-of-type {
  fill: #de6c38;
}
.c-popular_story__swiper-button:hover svg path:nth-of-type(2) {
  fill: white;
}
.c-popular_story__swiper-button-prev {
  position: absolute;
  right: calc(100% + 20px);
  z-index: 99;
}
@media (max-width: 767px) {
  .c-popular_story__swiper-button-prev {
    left: 2.6666666667vw;
    right: auto;
  }
}
.c-popular_story__swiper-button-next {
  position: absolute;
  left: calc(100% + 20px);
  z-index: 99;
}
@media (max-width: 767px) {
  .c-popular_story__swiper-button-next {
    left: auto;
    right: 2.6666666667vw;
  }
}
.c-popular_story__swiper-button svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.1));
}
@media (max-width: 767px) {
  .c-popular_story__swiper-button svg {
    filter: drop-shadow(0 0 2.1333333333vw rgba(0, 0, 0, 0.1));
  }
}
.c-popular_story__swiper-button svg path {
  transition: 0.4s;
}
.c-popular_story__swiper-button svg path:first-of-type {
  fill: white;
}
.c-popular_story__swiper-button svg path:nth-of-type(2) {
  fill: #de6c38;
}
.c-popular_story__icn {
  width: 98px;
  position: absolute;
  top: calc(100% + 50px);
  left: 50%;
  transform: translateX(-444%) rotate(-125.4deg);
}
@media screen and (max-width: 1280px) {
  .c-popular_story__icn {
    width: 7.65625vw;
    top: calc(100% + 3.90625vw);
  }
}
@media (max-width: 767px) {
  .c-popular_story__icn {
    width: 10.1333333333vw;
    top: calc(100% + 16.5333333333vw);
    transform: translateX(333%) rotateY(-180deg) rotateZ(-155.3deg);
  }
}
.c-popular_story__icn > svg {
  width: 100%;
  height: 100%;
  display: block;
}

.c-search {
  width: 703px;
  text-align: center;
  margin: 0 auto 50px;
}
@media (max-width: 767px) {
  .c-search {
    width: 83.7333333333vw;
    margin-bottom: 10.6666666667vw;
  }
}
.c-search__form {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  align-content: stretch;
  flex-direction: row;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media (max-width: 767px) {
  .c-search__form {
    justify-content: flex-start;
    flex-direction: column;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 4.8vw;
  }
}
.c-search__formSelect {
  width: 363px;
  position: relative;
}
@media (max-width: 767px) {
  .c-search__formSelect {
    width: 100%;
  }
}
.c-search__formSelectBox {
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.1333333333;
  text-align: center;
  letter-spacing: 0.1em;
  height: auto;
  padding: 14px 40px 14px 14px;
  background-image: none;
  border: none;
}
@media (max-width: 767px) {
  .c-search__formSelectBox {
    font-size: 7.5px;
    font-size: 4vw;
    line-height: 1.2;
    padding: 4.8vw 10.6666666667vw 5.0666666667vw;
  }
}
.c-search__formSelectBox:has(> option[disabled]:checked), .c-search__formSelectBox:required:invalid {
  color: #1a1a1a;
}
.c-search__formSelectIcn {
  line-height: 1;
  width: 30px;
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-38%);
}
@media (max-width: 767px) {
  .c-search__formSelectIcn {
    width: 8vw;
    right: 2.9333333333vw;
    transform: translateY(-50%);
  }
}
.c-search__formSelectIcn > svg {
  width: 100%;
  height: 100%;
  display: block;
}
.c-search__formSelectIcn > svg path {
  fill: #de6c38;
}
.c-search .c-btn {
  font-size: 15px;
  padding: 9px 39px;
  background: white;
  cursor: pointer;
}
@media (max-width: 767px) {
  .c-search .c-btn {
    font-size: 7.5px;
    font-size: 4vw;
    padding: 2.4vw 10.9333333333vw;
  }
}
.c-search .c-btn:hover {
  background: #de6c38;
}

.c-writer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: row;
  position: relative;
}
.c-writer__firstLeft {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-550%, -80%) rotate(-3.004deg);
  width: 133px;
  height: 133px;
}
@media (max-width: 767px) {
  .c-writer__firstLeft {
    display: none;
  }
}
.c-writer__firstLeft-swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  width: 100%;
  background-color: white;
}
.c-writer__firstLeft-swiper .swiper-wrapper .swiper-slide > img {
  width: 133px;
  height: 133px;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-writer__secondLeft {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-422%, -80%) rotate(-3.004deg);
  width: 133px;
  height: 133px;
}
@media (max-width: 767px) {
  .c-writer__secondLeft {
    display: none;
  }
}
.c-writer__secondLeft-swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  width: 100%;
  background-color: white;
}
.c-writer__secondLeft-swiper .swiper-wrapper .swiper-slide > img {
  width: 133px;
  height: 133px;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-writer__main {
  width: 620px;
  margin: 158px 0 238px;
}
@media (max-width: 767px) {
  .c-writer__main {
    width: 89.3333333333vw;
    margin: 35.4666666667vw auto 45.8666666667vw;
  }
}
.c-writer__main-swiper {
  overflow: visible;
}
.c-writer__main-swiper .swiper-wrapper .swiper-slide {
  position: relative;
  width: 620px;
  height: 216px;
  background-color: white;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .c-writer__main-swiper .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 88.8vw;
    box-shadow: 0 1.0666666667vw 2.6666666667vw 0 rgba(0, 0, 0, 0.1);
  }
}
.c-writer__main-img {
  position: absolute;
  width: 133px;
  height: 133px;
  transform: rotate(-3.004deg);
  top: -78px;
  left: 39px;
}
@media (max-width: 767px) {
  .c-writer__main-img {
    width: 37.8666666667vw;
    height: 37.8666666667vw;
    left: 50%;
    top: -26.6666666667vw;
    transform: translate(-50%, 0) rotate(-3.004deg);
  }
}
.c-writer__main-img > img {
  width: 133px;
  height: 133px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .c-writer__main-img > img {
    width: 37.8666666667vw;
    height: 37.8666666667vw;
  }
}
.c-writer__main-name {
  position: absolute;
  top: 0;
  right: 30px;
  transform: translate(0, -50%);
  width: 400px;
  height: 65px;
  padding: 15px 0;
  text-align: center;
  background-image: url("./img/common/img-writer-name-bg.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 767px) {
  .c-writer__main-name {
    width: 77.0666666667vw;
    height: 12vw;
    padding: 2.6666666667vw 0;
    right: 50%;
    top: 17.8666666667vw;
    transform: translate(50%, 0);
  }
}
.c-writer__main-name > p {
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.16rem;
  color: white;
}
@media (max-width: 767px) {
  .c-writer__main-name > p {
    font-size: 4.8vw;
  }
}
.c-writer__main-decs {
  position: absolute;
  top: 82px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 560px;
  height: 103px;
}
@media (max-width: 767px) {
  .c-writer__main-decs {
    top: 35.4666666667vw;
    width: 78.6666666667vw;
    height: 44.8vw;
  }
}
.c-writer__main-decs > p {
  font-size: 15px;
  line-height: 1.7;
  font-weight: 500;
}
@media (max-width: 767px) {
  .c-writer__main-decs > p {
    font-size: 3.7333333333vw;
  }
}
.c-writer__main-btn {
  position: absolute;
  bottom: -92px;
  left: 50%;
  transform: translate(-50%, 0);
}
@media (max-width: 767px) {
  .c-writer__main-btn {
    bottom: -19.2vw;
    width: 68.8vw;
  }
}
.c-writer__main-button {
  position: absolute;
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: unset;
  height: 65px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
}
@media (max-width: 767px) {
  .c-writer__main-button {
    width: 12.5333333333vw;
    height: 12.5333333333vw;
    top: -19.7333333333vw;
    transform: translateY(0);
  }
}
.c-writer__main-button:hover svg path:first-of-type {
  fill: #de6c38;
}
.c-writer__main-button:hover svg path:nth-of-type(2) {
  fill: white;
}
.c-writer__main-button svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.1));
}
@media (max-width: 767px) {
  .c-writer__main-button svg {
    filter: drop-shadow(0 0 2.1333333333vw rgba(0, 0, 0, 0.1));
  }
}
.c-writer__main-button svg path {
  transition: 0.4s;
}
.c-writer__main-button svg path:first-of-type {
  fill: white;
}
.c-writer__main-button svg path:nth-of-type(2) {
  fill: #de6c38;
}
.c-writer__main-button-next {
  right: -85px;
}
@media (max-width: 767px) {
  .c-writer__main-button-next {
    right: 6.9333333333vw;
  }
}
.c-writer__main-button-prev {
  left: -85px;
}
@media (max-width: 767px) {
  .c-writer__main-button-prev {
    left: 6.9333333333vw;
  }
}
.c-writer__secondRight {
  position: absolute;
  right: 50%;
  transform: translate(422%, -30%) rotate(-3.004deg);
  width: 133px;
  height: 133px;
}
@media (max-width: 767px) {
  .c-writer__secondRight {
    display: none;
  }
}
.c-writer__secondRight-swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  width: 100%;
  background-color: white;
}
.c-writer__secondRight-swiper .swiper-wrapper .swiper-slide > img {
  width: 133px;
  height: 133px;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-writer__firstRight {
  position: absolute;
  right: 50%;
  transform: translate(550%, -30%) rotate(-3.004deg);
  width: 133px;
  height: 133px;
}
@media (max-width: 767px) {
  .c-writer__firstRight {
    display: none;
  }
}
.c-writer__firstRight-swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  width: 100%;
  background-color: white;
}
.c-writer__firstRight-swiper .swiper-wrapper .swiper-slide > img {
  width: 133px;
  height: 133px;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-recent {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: row;
  position: relative;
}
.c-recent__firstLeft {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-325%, -85%);
  width: 266px;
  height: 129px;
}
@media (max-width: 767px) {
  .c-recent__firstLeft {
    display: none;
  }
}
.c-recent__firstLeft-swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  width: 100%;
}
.c-recent__firstLeft-swiper .swiper-wrapper .swiper-slide > img {
  width: 266px;
  height: 129px;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-recent__secondLeft {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-214%, -85%);
  width: 266px;
  height: 129px;
}
@media (max-width: 767px) {
  .c-recent__secondLeft {
    display: none;
  }
}
.c-recent__secondLeft-swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  width: 100%;
}
.c-recent__secondLeft-swiper .swiper-wrapper .swiper-slide > img {
  width: 266px;
  height: 129px;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-recent__main {
  width: 377px;
  margin: 0;
  position: relative;
}
@media (max-width: 767px) {
  .c-recent__main {
    width: 100%;
  }
}
.c-recent__main-swiper {
  overflow: visible;
}
.c-recent__main-swiper .swiper-wrapper .swiper-slide {
  position: relative;
  width: 377px;
  height: auto;
}
@media (max-width: 767px) {
  .c-recent__main-swiper .swiper-wrapper .swiper-slide {
    width: 59.2vw;
  }
}
.c-recent__main-swiper .swiper-wrapper .swiper-slide > a {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  flex-direction: column;
}
.c-recent__main-swiper .swiper-wrapper .swiper-slide > a > img {
  width: 100%;
  height: 183px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .c-recent__main-swiper .swiper-wrapper .swiper-slide > a > img {
    height: 28.8vw;
  }
}
.c-recent__main-swiper .swiper-wrapper .swiper-slide > a > p {
  visibility: hidden;
  margin-top: 10px;
  width: 100%;
  height: 51px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media (max-width: 767px) {
  .c-recent__main-swiper .swiper-wrapper .swiper-slide > a > p {
    margin-top: 2.6666666667vw;
    height: 12.8vw;
    font-size: 3.7333333333vw;
  }
}
.c-recent__main-swiper .swiper-wrapper .swiper-slide-active a p {
  visibility: visible;
}
.c-recent__main-pagination {
  margin: 23px 0 0 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: normal;
  flex-direction: row;
  -moz-column-gap: 22px;
       column-gap: 22px;
  top: calc(100% + 23px);
  bottom: auto;
}
@media screen and (max-width: 1280px) {
  .c-recent__main-pagination {
    -moz-column-gap: 1.71875vw;
         column-gap: 1.71875vw;
    top: calc(100% + 1.796875vw);
  }
}
@media (max-width: 767px) {
  .c-recent__main-pagination {
    margin: 5.8666666667vw 0 0 0;
    -moz-column-gap: 5.8666666667vw;
         column-gap: 5.8666666667vw;
    top: calc(100% + 6.1333333333vw);
  }
}
.c-recent__main-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 !important;
  background: #dbdbdb;
  opacity: 1;
  position: relative;
  transition: color 0.2s;
}
.c-recent__main-pagination .swiper-pagination-bullet:before {
  content: "";
  width: 23px;
  height: 20px;
  background-image: url(./img/common/icn_footprints-slider.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
}
@media (max-width: 767px) {
  .c-recent__main-pagination .swiper-pagination-bullet:before {
    width: 6.1333333333vw;
    height: 5.3333333333vw;
  }
}
.c-recent__main-pagination .swiper-pagination-bullet-active {
  background: transparent;
}
.c-recent__main-pagination .swiper-pagination-bullet-active:before {
  opacity: 1;
  pointer-events: auto;
}
.c-recent__main .button-next,
.c-recent__main .button-prev {
  line-height: 1;
  position: absolute;
  border-radius: unset;
  width: 65px;
  z-index: 99;
  bottom: 150px;
}
@media (max-width: 767px) {
  .c-recent__main .button-next,
  .c-recent__main .button-prev {
    width: 12.5333333333vw;
    bottom: unset;
    top: 7.7333333333vw;
  }
}
.c-recent__main .button-next:hover svg path:first-of-type,
.c-recent__main .button-prev:hover svg path:first-of-type {
  fill: #de6c38;
}
.c-recent__main .button-next:hover svg path:nth-of-type(2),
.c-recent__main .button-prev:hover svg path:nth-of-type(2) {
  fill: white;
}
.c-recent__main .button-next > svg,
.c-recent__main .button-prev > svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.1));
}
@media (max-width: 767px) {
  .c-recent__main .button-next > svg,
  .c-recent__main .button-prev > svg {
    filter: drop-shadow(0 0 2.1333333333vw rgba(0, 0, 0, 0.1));
  }
}
.c-recent__main .button-next > svg path,
.c-recent__main .button-prev > svg path {
  transition: 0.4s;
}
.c-recent__main .button-next > svg path:first-of-type,
.c-recent__main .button-prev > svg path:first-of-type {
  fill: white;
}
.c-recent__main .button-next > svg path:nth-of-type(2),
.c-recent__main .button-prev > svg path:nth-of-type(2) {
  fill: #de6c38;
}
.c-recent__main-button-next {
  right: -85px;
}
@media (max-width: 767px) {
  .c-recent__main-button-next {
    right: 2.6666666667vw;
  }
}
.c-recent__main-button-prev {
  left: -85px;
}
@media (max-width: 767px) {
  .c-recent__main-button-prev {
    left: 2.6666666667vw;
  }
}
.c-recent__secondRight {
  position: absolute;
  right: 50%;
  transform: translate(214%, -35%);
  width: 266px;
  height: 129px;
}
@media (max-width: 767px) {
  .c-recent__secondRight {
    display: none;
  }
}
.c-recent__secondRight-swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  width: 100%;
}
.c-recent__secondRight-swiper .swiper-wrapper .swiper-slide > img {
  width: 266px;
  height: 129px;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-recent__firstRight {
  position: absolute;
  right: 50%;
  transform: translate(326%, -35%);
  width: 266px;
  height: 129px;
}
@media (max-width: 767px) {
  .c-recent__firstRight {
    display: none;
  }
}
.c-recent__firstRight-swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  width: 100%;
}
.c-recent__firstRight-swiper .swiper-wrapper .swiper-slide > img {
  width: 266px;
  height: 129px;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-hachiTag__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: column;
  width: 908px;
  padding: 50px 30px;
  margin: 0 auto;
  border-radius: 20px;
  background-color: white;
  position: relative;
}
@media (max-width: 1024px) {
  .c-hachiTag__inner {
    width: 88.671875vw;
  }
}
@media (max-width: 767px) {
  .c-hachiTag__inner {
    width: 89.3333333333vw;
    padding: 8vw 5.3333333333vw;
    border-radius: 5.3333333333vw;
  }
}
.c-hachiTag__inner-listWrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
  flex-direction: row;
  gap: 0 20px;
  padding: 18px 0;
  border-bottom: 1px solid #c6a99c;
}
@media (max-width: 767px) {
  .c-hachiTag__inner-listWrap {
    gap: 0 4.2666666667vw;
    padding: 3.7333333333vw 0;
  }
}
.c-hachiTag__inner-listWrap:first-of-type {
  padding: 0 0 18px 0;
}
@media (max-width: 767px) {
  .c-hachiTag__inner-listWrap:first-of-type {
    padding: 0 0 3.7333333333vw 0;
  }
}
.c-hachiTag__inner-listWrap:last-of-type {
  padding: 18px 0 0 0;
  border-bottom: unset;
}
@media (max-width: 767px) {
  .c-hachiTag__inner-listWrap:last-of-type {
    padding: 3.7333333333vw 0 0 0;
  }
}
.c-hachiTag__inner-listWrap > a {
  font-size: 20px;
  color: #de6c38;
}
@media (max-width: 767px) {
  .c-hachiTag__inner-listWrap > a {
    font-size: 4.2666666667vw;
  }
}
.c-hachiTag__inner > svg {
  width: 59px;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translate(-35%, 35%) rotate(-27.26deg);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}
@media (max-width: 767px) {
  .c-hachiTag__inner > svg {
    width: 10.9333333333vw;
    transform: translate(-25%, 42%) rotate(-27.26deg);
    filter: drop-shadow(0 1.0666666667vw 2.6666666667vw rgba(0, 0, 0, 0.1));
  }
}
.c-hachiTag__inner > svg:last-of-type {
  left: unset;
  right: 0;
  top: 0;
  transform: translate(30%, -30%) rotate(30deg);
}
@media (max-width: 767px) {
  .c-hachiTag__inner > svg:last-of-type {
    transform: translate(24%, -39%) rotate(30deg);
  }
}

/* module > infinite scroll （Page Navi）
============================================================================ */
.scroller-status {
  display: none;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .scroller-status {
    margin-top: 16vw;
  }
}

.infinite-scroll-request {
  animation: scroll-request 1.1s infinite linear;
  border-radius: 50%;
  height: 48px;
  margin: auto;
  width: 48px;
}

@keyframes scroll-request {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.infinite-scroll-last,
.infinite-scroll-error {
  line-height: 1;
  text-align: center;
}
@media (max-width: 767px) {
  .infinite-scroll-last,
  .infinite-scroll-error {
    font-size: 12px;
    font-size: 6.4vw;
  }
}

.archives__gallery--infinite-scroll {
  text-align: center;
}

/* module > top
============================================================================ */
/* module > top > kv
============================================================================ */
.top-kv {
  width: 100%;
  height: calc(100vh - 41px);
  height: calc(100svh - 41px);
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: normal;
  flex-direction: column;
}
@media (max-width: 767px) {
  .top-kv {
    height: calc(100vh - 11.7333333333vw);
    height: calc(100svh - 11.7333333333vw);
  }
}
.top-kv__img {
  width: 100%;
  height: calc(100% - 304px);
}
@media screen and (max-width: 1280px) {
  .top-kv__img {
    height: calc(100% - 27.34375vw);
  }
}
@media (max-width: 1024px) {
  .top-kv__img {
    height: calc(100% - 29.6875vw);
  }
}
@media (max-width: 767px) {
  .top-kv__img {
    height: calc(100% - 80.8vw);
  }
}
.top-kv__bnr {
  width: 100%;
  min-height: 304px;
  padding: 40px 0 86px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: normal;
  flex-direction: column;
  row-gap: 30px;
}
@media screen and (max-width: 1280px) {
  .top-kv__bnr {
    min-height: 23.75vw;
    padding: 3.125vw 0 6.71875vw;
    row-gap: 2.34375vw;
  }
}
@media (max-width: 1024px) {
  .top-kv__bnr {
    min-height: 29.6875vw;
    padding: 3.90625vw 0 8.3984375vw;
    row-gap: 2.9296875vw;
  }
}
@media (max-width: 767px) {
  .top-kv__bnr {
    min-height: 80.8vw;
    padding: 8vw 0 24.8vw;
    row-gap: 8vw;
  }
}
.top-kv__bnrSlider {
  max-width: 1170px;
  width: 100%;
  height: 116px;
  padding: 0 85px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .top-kv__bnrSlider {
    max-width: 91.40625vw;
    height: 9.0625vw;
    padding: 0 6.640625vw;
  }
}
@media (max-width: 1024px) {
  .top-kv__bnrSlider {
    max-width: 89.453125vw;
    height: 11.328125vw;
    padding: 0 8.30078125vw;
  }
}
@media (max-width: 767px) {
  .top-kv__bnrSlider {
    max-width: none;
    height: 28.8vw;
    padding: 0;
  }
}
.top-kv__bnrSlider .swiper-button {
  width: 65px;
  height: 65px;
  margin: 0;
  position: absolute;
  top: 50%;
  bottom: auto;
  left: auto;
  right: auto;
  transform: translateY(-50%);
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}
@media screen and (max-width: 1280px) {
  .top-kv__bnrSlider .swiper-button {
    width: 5.078125vw;
    height: 5.078125vw;
  }
}
@media (max-width: 767px) {
  .top-kv__bnrSlider .swiper-button {
    width: 12.5333333333vw;
    height: 12.5333333333vw;
  }
}
.top-kv__bnrSlider .swiper-button:after {
  display: none;
}
.top-kv__bnrSlider .swiper-button:hover svg path:first-of-type {
  fill: #de6c38;
}
.top-kv__bnrSlider .swiper-button:hover svg path:nth-of-type(2) {
  fill: white;
}
.top-kv__bnrSlider .swiper-button svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.1));
  pointer-events: none;
}
.top-kv__bnrSlider .swiper-button svg path {
  transition: 0.4s;
}
.top-kv__bnrSlider .swiper-button svg path:first-of-type {
  fill: white;
}
.top-kv__bnrSlider .swiper-button svg path:nth-of-type(2) {
  fill: #de6c38;
}
.top-kv__bnrSlider .swiper-button-prev {
  left: 0;
}
@media (max-width: 767px) {
  .top-kv__bnrSlider .swiper-button-prev {
    left: 2.6666666667vw;
  }
}
.top-kv__bnrSlider .swiper-button-next {
  right: 0;
}
@media (max-width: 767px) {
  .top-kv__bnrSlider .swiper-button-next {
    right: 2.6666666667vw;
  }
}
.top-kv__bnrSliderWrapper {
  height: 100%;
}
.top-kv__bnrSliderItem {
  width: 253px;
  padding-right: 14px;
}
@media screen and (max-width: 1280px) {
  .top-kv__bnrSliderItem {
    width: 19.765625vw;
    padding-right: 1.09375vw;
  }
}
@media (max-width: 1024px) {
  .top-kv__bnrSliderItem {
    width: 24.70703125vw;
    padding: 0 0.68359375vw;
  }
}
@media (max-width: 767px) {
  .top-kv__bnrSliderItem {
    width: 59.2vw;
    padding: 0 1.3333333333vw;
  }
}
.top-kv__bnrSliderItem figure {
  height: 100%;
}
/* module > top > afw
============================================================================ */
.top-afw {
  margin-top: 22px;
  position: relative;
}
.top-afw:before {
  content: "";
  background-image: url(./img/top/afw/bg_footprints.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 835px;
  height: 598px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-54%, -54%);
  z-index: 1;
}
@media screen and (max-width: 1280px) {
  .top-afw:before {
    width: 65.234375vw;
    height: 46.71875vw;
  }
}
@media (max-width: 767px) {
  .top-afw:before {
    background-image: url(./img/top/afw/bg_footprints-sp.png);
    width: 88.5333333333vw;
    height: 78.4vw;
    transform: translate(-45%, -81%);
  }
}
.top-afw__inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: normal;
  align-content: normal;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1280px) {
  .top-afw__inner {
    max-width: 78.125vw;
  }
}
@media (max-width: 767px) {
  .top-afw__inner {
    max-width: 90.6666666667vw;
  }
}
.top-afw__heading {
  width: 549px;
}
@media screen and (max-width: 1280px) {
  .top-afw__heading {
    width: 42.890625vw;
  }
}
@media (max-width: 767px) {
  .top-afw__heading {
    width: 74.1333333333vw;
  }
}
.top-afw__heading > svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
  transform: translateZ(0);
  backface-visibility: hidden;
}
.top-afw__cont {
  width: 568.5px;
  margin-top: 37px;
  margin-left: auto;
  position: relative;
  left: 26px;
}
@media screen and (max-width: 1280px) {
  .top-afw__cont {
    width: 44.4140625vw;
    margin-top: 2.890625vw;
    left: 2.03125vw;
  }
}
@media (max-width: 767px) {
  .top-afw__cont {
    width: 86.6666666667vw;
    margin-top: 42.4vw;
    left: auto;
  }
}
.top-afw__contWanko {
  width: 223px;
  position: absolute;
  bottom: calc(100% - 2px);
  right: 38.5px;
}
@media screen and (max-width: 1280px) {
  .top-afw__contWanko {
    width: 17.421875vw;
    bottom: calc(100% - 0.15625vw);
    right: 3.0078125vw;
  }
}
@media (max-width: 767px) {
  .top-afw__contWanko {
    width: 34.6666666667vw;
    right: 6.4vw;
    bottom: calc(100% - 0.5333333333vw);
  }
}
.top-afw__contTxtItem {
  margin-left: auto;
  display: block;
  position: relative;
}
.top-afw__contTxtItem.high {
  width: 469px;
}
@media screen and (max-width: 1280px) {
  .top-afw__contTxtItem.high {
    width: 36.640625vw;
  }
}
@media (max-width: 767px) {
  .top-afw__contTxtItem.high {
    width: 71.4666666667vw;
  }
}
.top-afw__contTxtItem.middle {
  width: 464px;
  margin-top: 11px;
}
@media screen and (max-width: 1280px) {
  .top-afw__contTxtItem.middle {
    width: 36.25vw;
    margin-top: 0.9375vw;
  }
}
@media (max-width: 767px) {
  .top-afw__contTxtItem.middle {
    width: 70.6666666667vw;
    margin-top: 1.8666666667vw;
  }
}
.top-afw__contTxtItem.low {
  width: 100%;
  margin-top: 9px;
}
@media screen and (max-width: 1280px) {
  .top-afw__contTxtItem.low {
    margin-top: 0.78125vw;
  }
}
@media (max-width: 767px) {
  .top-afw__contTxtItem.low {
    width: 86.6666666667vw;
    margin-top: 1.3333333333vw;
  }
}
.top-afw__contTxtItem > svg {
  width: 100%;
  height: 100%;
  display: block;
}
.top-afw__contTxtItem > span.txt {
  font-size: 32px;
  font-weight: 700;
  line-height: 2.1875;
  letter-spacing: 0.1em;
  text-align: center;
  color: white;
  width: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1280px) {
  .top-afw__contTxtItem > span.txt {
    font-size: 16px;
    font-size: 2.5vw;
  }
}
@media (max-width: 767px) {
  .top-afw__contTxtItem > span.txt {
    font-size: 9px;
    font-size: 4.8vw;
    line-height: 2.2222222222;
  }
}

/* module > top > about
============================================================================ */
.top-about {
  margin-top: 180px;
}
@media (max-width: 767px) {
  .top-about {
    margin-top: 27.2vw;
  }
}
.top-about .common-dogHeading__right {
  max-width: 465px;
  width: 36.328125vw;
}
@media (max-width: 767px) {
  .top-about .common-dogHeading__right {
    width: 64vw;
  }
}
.top-about__inner {
  max-width: 1160px;
  width: 100%;
  padding-top: 44px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: normal;
  flex-direction: row;
}
@media screen and (max-width: 1280px) {
  .top-about__inner {
    max-width: 90.625vw;
  }
}
@media (max-width: 767px) {
  .top-about__inner {
    max-width: 89.3333333333vw;
    padding-top: 6.4vw;
    flex-direction: column;
  }
}
.top-about__img {
  width: calc(100% - 435px);
  height: 408px;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1280px) {
  .top-about__img {
    width: calc(100% - 33.984375vw);
  }
}
@media (max-width: 1024px) {
  .top-about__img {
    width: calc(100% - 42.48046875vw);
  }
}
@media (max-width: 767px) {
  .top-about__img {
    width: 100%;
    height: 49.0666666667vw;
    margin-bottom: 4.5333333333vw;
    box-shadow: 0 1.0666666667vw 2.6666666667vw 0 rgba(0, 0, 0, 0.1);
  }
}
.top-about__cont {
  width: 405px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: normal;
  flex-direction: column;
  row-gap: 68px;
}
@media screen and (max-width: 1280px) {
  .top-about__cont {
    width: 31.640625vw;
    row-gap: 5.3125vw;
  }
}
@media (max-width: 1024px) {
  .top-about__cont {
    width: 39.55078125vw;
    row-gap: 6.640625vw;
  }
}
@media (max-width: 767px) {
  .top-about__cont {
    width: 100%;
    align-items: center;
    row-gap: 7.4666666667vw;
  }
}
.top-about__contTxt {
  text-align: justify;
  line-height: 175%;
}
.top-about__cont .btn {
  width: 148px;
  height: 45px;
  display: block;
  border: 3px solid #de6c38;
  margin-top: 68px;
}

/* module > top > activity
============================================================================ */
.top-activity {
  margin-top: 120px;
}
@media (max-width: 767px) {
  .top-activity {
    margin-top: 26.6666666667vw;
  }
}
.top-activity .common-dogHeading__right {
  max-width: 607px;
  width: 47.421875vw;
}
@media (max-width: 767px) {
  .top-activity .common-dogHeading__right {
    width: 64vw;
  }
}
.top-activity__inner {
  max-width: 1160px;
  width: 100%;
  padding-top: 42px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: normal;
  flex-direction: row;
}
@media screen and (max-width: 1280px) {
  .top-activity__inner {
    max-width: 90.625vw;
  }
}
@media (max-width: 1024px) {
  .top-activity__inner {
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .top-activity__inner {
    max-width: 100%;
    padding-top: 6.6666666667vw;
    flex-direction: column;
    align-items: center;
    row-gap: 8vw;
  }
}
.top-activity__cont {
  width: 455px;
  padding-top: 36px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-end;
  align-content: normal;
  flex-direction: column;
  row-gap: 68px;
}
@media screen and (max-width: 1280px) {
  .top-activity__cont {
    width: 35.546875vw;
    padding-top: 2.8125vw;
    row-gap: 5.3125vw;
  }
}
@media (max-width: 767px) {
  .top-activity__cont {
    width: 89.3333333333vw;
    padding-top: 0;
    margin: 0 auto;
    align-items: center;
    row-gap: 7.4666666667vw;
  }
}
.top-activity__contTxt {
  text-align: justify;
}
.top-activity__slider {
  width: 675px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: normal;
  flex-direction: column;
  row-gap: 16px;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .top-activity__slider {
    width: 52.734375vw;
    row-gap: 1.25vw;
  }
}
@media (max-width: 767px) {
  .top-activity__slider {
    width: 100%;
    row-gap: 5.3333333333vw;
  }
}
.top-activity__sliderMain {
  width: 100%;
}
@media (max-width: 767px) {
  .top-activity__sliderMain {
    width: 89.3333333333vw;
    margin: 0 auto;
  }
}
.top-activity__sliderMainWrapper {
  aspect-ratio: 1.7763157895;
}
.top-activity__sliderSub {
  width: 100%;
  padding: 0 86px;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .top-activity__sliderSub {
    padding: 0 6.71875vw;
  }
}
@media (max-width: 767px) {
  .top-activity__sliderSub {
    padding: 0;
  }
}
.top-activity__sliderSub .swiper-pagination {
  margin: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: normal;
  flex-direction: row;
  -moz-column-gap: 22px;
       column-gap: 22px;
  top: calc(100% + 23px);
  bottom: auto;
}
@media screen and (max-width: 1280px) {
  .top-activity__sliderSub .swiper-pagination {
    -moz-column-gap: 1.71875vw;
         column-gap: 1.71875vw;
    top: calc(100% + 1.796875vw);
  }
}
@media (max-width: 767px) {
  .top-activity__sliderSub .swiper-pagination {
    -moz-column-gap: 5.8666666667vw;
         column-gap: 5.8666666667vw;
    top: calc(100% + 6.1333333333vw);
  }
}
.top-activity__sliderSub .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 !important;
  background: #dbdbdb;
  opacity: 1;
  position: relative;
  transition: color 0.2s;
}
.top-activity__sliderSub .swiper-pagination-bullet:before {
  content: "";
  width: 23px;
  height: 20px;
  background-image: url(./img/common/icn_footprints-slider.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
}
@media (max-width: 767px) {
  .top-activity__sliderSub .swiper-pagination-bullet:before {
    width: 6.1333333333vw;
    height: 5.3333333333vw;
  }
}
.top-activity__sliderSub .swiper-pagination-bullet-active {
  background: transparent;
}
.top-activity__sliderSub .swiper-pagination-bullet-active:before {
  opacity: 1;
  pointer-events: auto;
}
.top-activity__sliderSub .swiper-button {
  width: 65px;
  height: 65px;
  margin: 0;
  position: absolute;
  top: 50%;
  bottom: auto;
  left: auto;
  right: auto;
  transform: translateY(-50%);
}
@media screen and (max-width: 1280px) {
  .top-activity__sliderSub .swiper-button {
    width: 5.078125vw;
    height: 5.078125vw;
  }
}
@media (max-width: 767px) {
  .top-activity__sliderSub .swiper-button {
    width: 12.5333333333vw;
    height: 12.5333333333vw;
  }
}
.top-activity__sliderSub .swiper-button:after {
  display: none;
}
.top-activity__sliderSub .swiper-button:hover svg path:first-of-type {
  fill: #de6c38;
}
.top-activity__sliderSub .swiper-button:hover svg path:nth-of-type(2) {
  fill: white;
}
.top-activity__sliderSub .swiper-button svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.1));
}
@media (max-width: 767px) {
  .top-activity__sliderSub .swiper-button svg {
    filter: drop-shadow(0 0 2.1333333333vw rgba(0, 0, 0, 0.1));
  }
}
.top-activity__sliderSub .swiper-button svg path {
  transition: 0.4s;
}
.top-activity__sliderSub .swiper-button svg path:first-of-type {
  fill: white;
}
.top-activity__sliderSub .swiper-button svg path:nth-of-type(2) {
  fill: #de6c38;
}
.top-activity__sliderSub .swiper-button-prev {
  left: 0;
}
@media (max-width: 767px) {
  .top-activity__sliderSub .swiper-button-prev {
    left: 2.6666666667vw;
  }
}
.top-activity__sliderSub .swiper-button-next {
  right: 0;
}
@media (max-width: 767px) {
  .top-activity__sliderSub .swiper-button-next {
    right: 2.6666666667vw;
  }
}
.top-activity__sliderSubWrapper {
  height: 120px;
}
@media screen and (max-width: 1280px) {
  .top-activity__sliderSubWrapper {
    height: 9.375vw;
  }
}
@media (max-width: 767px) {
  .top-activity__sliderSubWrapper {
    height: 18.1333333333vw;
  }
}
.top-activity__sliderSubList {
  left: -136px;
}
@media screen and (max-width: 1280px) {
  .top-activity__sliderSubList {
    left: -10.625vw;
  }
}
@media (max-width: 767px) {
  .top-activity__sliderSubList {
    left: -20.8vw;
  }
}
.top-activity__sliderSubItem {
  width: 136px;
  padding-right: 16px;
}
@media screen and (max-width: 1280px) {
  .top-activity__sliderSubItem {
    width: 10.625vw;
    padding-right: 1.25vw;
  }
}
@media (max-width: 767px) {
  .top-activity__sliderSubItem {
    width: 20.8vw;
    padding-right: 2.6666666667vw;
  }
}

/* module > top > story
============================================================================ */
.top-story__inner {
  padding-top: 120px;
}
@media (max-width: 767px) {
  .top-story__inner {
    padding-top: 21.3333333333vw;
  }
}
.top-story__inner .c-popular_story__wrap {
  padding-top: 50px;
}
@media (max-width: 767px) {
  .top-story__inner .c-popular_story__wrap {
    padding-top: 13.6vw;
  }
}
.top-story__inner .c-popular_story__wrap .h3_underLine {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .top-story__inner .c-popular_story__wrap .h3_underLine {
    margin-bottom: 8vw;
  }
}
.top-story__inner .c-newsList__wrap .h3_underLine {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .top-story__inner .c-newsList__wrap .h3_underLine {
    margin-bottom: 8vw;
  }
}
.top-story__inner .c-newsList__result {
  margin-top: 0;
}
.top-story__wrap.h3_underLine {
  margin-bottom: 72px;
}
.top-story__btn {
  text-align: center;
  margin: 50px auto 100px;
}
@media (max-width: 767px) {
  .top-story__btn {
    margin: 8vw auto 21.3333333333vw;
  }
}
.top-story__newsBtn {
  width: 100%;
  text-align: center;
  background-color: #fde8de;
  padding-bottom: 50px;
}
@media (max-width: 767px) {
  .top-story__newsBtn {
    padding-bottom: 10.6666666667vw;
  }
}

/* module > top > online
============================================================================ */
.top-online {
  position: relative;
}
.top-online__inner {
  margin: 120px 0 150px;
}
@media screen and (max-width: 1280px) {
  .top-online__inner {
    margin: 9.375vw 0 11.71875vw;
  }
}
@media (max-width: 767px) {
  .top-online__inner {
    margin: 26.6666666667vw 0;
  }
}
.top-online__inner .common-dogHeading__right {
  max-width: 646px;
  width: 50.46875vw;
}
.top-online__item {
  position: relative;
}
.top-online__item.campaign {
  margin-top: 50px;
}
@media screen and (max-width: 1280px) {
  .top-online__item.campaign {
    margin-top: 3.90625vw;
  }
}
@media (max-width: 767px) {
  .top-online__item.campaign {
    margin-top: 13.3333333333vw;
  }
}
.top-online__item.campaign .top-online__item-icn {
  right: -173px;
  transform: translateY(-106%);
}
@media screen and (max-width: 1280px) {
  .top-online__item.campaign .top-online__item-icn {
    right: -13.515625vw;
  }
}
@media (max-width: 767px) {
  .top-online__item.campaign .top-online__item-icn {
    right: -25.0666666667vw;
  }
}
.top-online__item.items {
  margin-right: 2px;
}
@media (max-width: 767px) {
  .top-online__item.items {
    margin: 15.4666666667vw 0 0;
  }
}
@media (max-width: 767px) {
  .top-online__item.items .top-online__desc {
    margin-left: auto;
    margin-right: 5.3333333333vw;
  }
}
.top-online__item.items .top-online__item-icn {
  left: -153px;
  transform: translateY(-34%);
}
@media screen and (max-width: 1280px) {
  .top-online__item.items .top-online__item-icn {
    left: -11.953125vw;
  }
}
@media (max-width: 767px) {
  .top-online__item.items .top-online__item-icn {
    left: -22.1333333333vw;
    transform: translateY(-124%);
  }
}
.top-online__item-icn {
  position: absolute;
  height: 420px;
  display: block;
  top: 50%;
  width: auto;
}
@media screen and (max-width: 1280px) {
  .top-online__item-icn {
    height: 32.8125vw;
  }
}
@media (max-width: 767px) {
  .top-online__item-icn {
    height: 60.8vw;
  }
}
.top-online__item-icn img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.top-online__desc {
  margin-left: 140px;
  letter-spacing: 0.018em;
  width: 535px;
  font-size: 15px;
}
@media (max-width: 767px) {
  .top-online__desc {
    text-align: justify;
    margin-left: 5.3333333333vw;
    width: 50.6666666667vw;
    font-size: 3.7333333333vw;
  }
}
.top-online__slide {
  width: 63.984375vw;
  margin: 45px 0 0 auto;
  position: relative;
}
@media (max-width: 767px) {
  .top-online__slide {
    width: 100%;
    margin: 6.4vw 0 0;
  }
}
.top-online__slide.second {
  margin: 50px 0 0 auto;
}
@media (max-width: 767px) {
  .top-online__slide.second {
    margin-top: 7.4666666667vw;
  }
}
.top-online__slide.second .top-online__slide-txt {
  left: -32px;
  bottom: 5px;
}
@media (max-width: 767px) {
  .top-online__slide.second .top-online__slide-txt {
    left: 34.6666666667vw;
    bottom: 2.1333333333vw;
    width: 22.4vw;
  }
}
.top-online__slide-inner {
  position: relative;
}
.top-online__slide-txt {
  position: relative;
  left: -40px;
  bottom: 0;
}
@media (max-width: 767px) {
  .top-online__slide-txt {
    left: 17.6vw;
    bottom: 1.3333333333vw;
    width: 40vw;
  }
}
.top-online__slide .swiper-wrapper .swiper-slide {
  width: 322px;
  height: 156px;
  margin-right: 16px;
}
@media (max-width: 767px) {
  .top-online__slide .swiper-wrapper .swiper-slide {
    width: 59.2vw;
    height: 28.8vw;
    margin: 0 1.3333333333vw;
  }
}
.top-online__slide .swiper-wrapper .swiper-slide.is-overlapped img {
  opacity: 0.25;
}
.top-online__slide .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: opacity 0.3s;
}
.top-online__slide .top-online__swiper01 {
  overflow: hidden;
  position: relative;
}
.top-online__slide .top-online__swiper01 .swiper-slide a.not-hover:hover {
  opacity: 1;
}
.top-online__slide .top-online__swiper02 {
  overflow: hidden;
}
.top-online__slide .top-online__swiper02 .swiper-slide {
  width: 153px;
  height: auto;
}
@media (max-width: 767px) {
  .top-online__slide .top-online__swiper02 .swiper-slide {
    width: 28.8vw;
    height: 42.1333333333vw;
  }
}
.top-online__slide .top-online__swiper02 .swiper-slide a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: column;
}
.top-online__slide .top-online__swiper02 .swiper-slide a.not-hover:hover {
  opacity: 1;
}
.top-online__slide .top-online__swiper02 .swiper-slide a img {
  width: 100%;
  height: 153px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .top-online__slide .top-online__swiper02 .swiper-slide a img {
    width: 28.8vw;
    height: 28.8vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.top-online__slide .top-online__swiper02 .swiper-slide a p {
  margin-top: 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  width: 150px;
  height: 40px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  letter-spacing: 0.02em;
}
@media (max-width: 767px) {
  .top-online__slide .top-online__swiper02 .swiper-slide a p {
    width: 28.8vw;
    height: 10.6666666667vw;
    font-size: 3.2vw;
  }
}
.top-online__slide .swiper-pagination-bullets {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: normal;
  flex-direction: row;
  height: 20px;
  margin: 30px 0 0;
  -moz-column-gap: 22px;
       column-gap: 22px;
  top: calc(100% + 23px);
  bottom: auto;
}
@media screen and (max-width: 1280px) {
  .top-online__slide .swiper-pagination-bullets {
    -moz-column-gap: 1.71875vw;
         column-gap: 1.71875vw;
    top: calc(100% + 1.796875vw);
  }
}
@media (max-width: 767px) {
  .top-online__slide .swiper-pagination-bullets {
    -moz-column-gap: 5.8666666667vw;
         column-gap: 5.8666666667vw;
    top: calc(100% + 6.1333333333vw);
  }
}
@media (max-width: 767px) {
  .top-online__slide .swiper-pagination-bullets {
    margin: 5.3333333333vw 0 0;
  }
}
.top-online__slide .swiper-pagination-bullets .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 !important;
  background: #dbdbdb;
  opacity: 1;
  position: relative;
  transition: color 0.2s;
}
@media (max-width: 767px) {
  .top-online__slide .swiper-pagination-bullets .swiper-pagination-bullet {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
  }
}
.top-online__slide .swiper-pagination-bullets .swiper-pagination-bullet:before {
  content: "";
  width: 23px;
  height: 20px;
  background-image: url(./img/common/icn_footprints-slider.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
}
@media screen and (max-width: 1080px) {
  .top-online__slide .swiper-pagination-bullets .swiper-pagination-bullet:before {
    width: 18.4px;
    height: 16px;
  }
}
@media (max-width: 767px) {
  .top-online__slide .swiper-pagination-bullets .swiper-pagination-bullet:before {
    width: 6.1333333333vw;
    height: 5.3333333333vw;
  }
}
.top-online__slide .swiper-pagination-bullets .swiper-pagination-bullet-active {
  background: transparent;
}
.top-online__slide .swiper-pagination-bullets .swiper-pagination-bullet-active:before {
  opacity: 1;
  pointer-events: auto;
}
.top-online__slide .button-next,
.top-online__slide .button-prev {
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: unset;
  width: 65px;
  position: absolute;
  z-index: 99;
}
@media (max-width: 767px) {
  .top-online__slide .button-next,
  .top-online__slide .button-prev {
    width: 12.5333333333vw;
  }
}
.top-online__slide .button-next:hover svg path:first-of-type,
.top-online__slide .button-prev:hover svg path:first-of-type {
  fill: #de6c38;
}
.top-online__slide .button-next:hover svg path:nth-of-type(2),
.top-online__slide .button-prev:hover svg path:nth-of-type(2) {
  fill: white;
}
.top-online__slide .button-next > svg,
.top-online__slide .button-prev > svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.1));
}
@media (max-width: 767px) {
  .top-online__slide .button-next > svg,
  .top-online__slide .button-prev > svg {
    filter: drop-shadow(0 0 2.1333333333vw rgba(0, 0, 0, 0.1));
  }
}
.top-online__slide .button-next > svg path,
.top-online__slide .button-prev > svg path {
  transition: 0.4s;
}
.top-online__slide .button-next > svg path:first-of-type,
.top-online__slide .button-prev > svg path:first-of-type {
  fill: white;
}
.top-online__slide .button-next > svg path:nth-of-type(2),
.top-online__slide .button-prev > svg path:nth-of-type(2) {
  fill: #de6c38;
}
.top-online__slide .top-online__swiper01 ~ .button-next,
.top-online__slide .top-online__swiper01 ~ .button-prev {
  top: 46px;
}
@media (max-width: 767px) {
  .top-online__slide .top-online__swiper01 ~ .button-next,
  .top-online__slide .top-online__swiper01 ~ .button-prev {
    top: 8vw;
  }
}
.top-online__slide .top-online__swiper02 ~ .button-next,
.top-online__slide .top-online__swiper02 ~ .button-prev {
  top: 44px;
}
@media (max-width: 767px) {
  .top-online__slide .top-online__swiper02 ~ .button-next,
  .top-online__slide .top-online__swiper02 ~ .button-prev {
    top: 8vw;
  }
}
.top-online__slide .button-next {
  right: 29px;
}
@media (max-width: 767px) {
  .top-online__slide .button-next {
    right: 2.6666666667vw;
  }
}
.top-online__slide .button-prev {
  left: -84px;
}
@media (max-width: 767px) {
  .top-online__slide .button-prev {
    left: 2.6666666667vw;
  }
}
.top-online__btn {
  text-align: center;
  margin: 43px 0 0 26.953125vw;
}
@media screen and (max-width: 1280px) {
  .top-online__btn {
    margin-left: 345px;
  }
}
@media (max-width: 767px) {
  .top-online__btn {
    margin: 7.4666666667vw auto 0;
  }
}

/* module > top > store
============================================================================ */
.top-store {
  position: relative;
}
.top-store__inner {
  position: relative;
  z-index: 2;
}
.top-store__inner .common-dogHeading__right {
  max-width: 683px;
  width: 53.359375vw;
}
.top-store__inner .common-dogHeading__right-bottom > p {
  color: white;
}
.top-store__decs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: column;
  width: 562px;
  margin: 48px auto 100px;
}
@media (max-width: 1024px) {
  .top-store__decs {
    margin: 4.6875vw auto 9.765625vw;
  }
}
@media (max-width: 767px) {
  .top-store__decs {
    width: 78.6666666667vw;
    margin: 8vw auto 10.9333333333vw;
  }
}
.top-store__decs-item {
  width: 100%;
  margin: 0 0 16px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  align-content: center;
  flex-direction: row;
}
@media (max-width: 767px) {
  .top-store__decs-item {
    margin-bottom: 6.1333333333vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-direction: column;
    row-gap: 1.8666666667vw;
  }
}
.top-store__decs-item:last-of-type {
  margin: 0;
}
.top-store__decs-item > span {
  color: white;
  font-size: 19px;
  display: block;
}
@media (max-width: 767px) {
  .top-store__decs-item > span {
    line-height: 1.7;
    text-align: center;
    font-size: 4.2666666667vw;
  }
}
.top-store__decs-item > span:first-of-type {
  width: 77px;
}
@media (max-width: 767px) {
  .top-store__decs-item > span:first-of-type {
    text-align: center;
  }
}
.top-store__decs-item > span:last-of-type {
  width: 458px;
}
@media (max-width: 767px) {
  .top-store__decs-item > span:last-of-type {
    width: 100%;
    text-align: center;
  }
}
.top-store__banner {
  width: 768px;
  margin: 0 auto 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: row;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media (max-width: 1024px) {
  .top-store__banner {
    width: 75vw;
    margin-bottom: 9.765625vw;
    -moz-column-gap: 1.5625vw;
         column-gap: 1.5625vw;
  }
}
@media (max-width: 767px) {
  .top-store__banner {
    width: 100%;
    margin: 0 auto 10.6666666667vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-direction: column;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 5.3333333333vw;
  }
}
.top-store__bannerItem {
  background: white;
  width: 245px;
  height: 119px;
}
@media (max-width: 1024px) {
  .top-store__bannerItem {
    width: 23.92578125vw;
    height: 11.62109375vw;
  }
}
@media (max-width: 767px) {
  .top-store__bannerItem {
    width: 73.0666666667vw;
    height: 31.7333333333vw;
  }
}
.top-store__bannerItem > a {
  width: 100%;
  height: 100%;
  display: block;
}
.top-store__map {
  margin: 0 auto;
  width: 766px;
  height: 420px;
}
@media (max-width: 1024px) {
  .top-store__map {
    width: 74.8046875vw;
    height: 41.2109375vw;
  }
}
@media (max-width: 767px) {
  .top-store__map {
    width: 89.3333333333vw;
    height: 66.9333333333vw;
  }
}
.top-store__map > iframe {
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .top-store__map > iframe {
    box-shadow: 0 1.0666666667vw 2.6666666667vw 0 rgba(0, 0, 0, 0.1);
  }
}
.top-store__map-btn {
  text-align: center;
  margin-top: 48px;
}
@media (max-width: 767px) {
  .top-store__map-btn {
    margin-top: 7.4666666667vw;
  }
}
.top-store__bg {
  width: 100%;
  padding: 0 30px;
  position: absolute;
  top: 112px;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, 0);
}
@media (max-width: 1024px) {
  .top-store__bg {
    padding: 0 2.9296875vw;
    top: 10.9375vw;
  }
}
@media (max-width: 767px) {
  .top-store__bg {
    padding: 0;
    top: 22.4vw;
  }
}
.top-store__bgFill {
  width: 100%;
  height: 883px;
  position: relative;
}
@media (max-width: 1024px) {
  .top-store__bgFill {
    height: 86.23046875vw;
  }
}
@media (max-width: 767px) {
  .top-store__bgFill {
    height: 235.4666666667vw;
  }
}
.top-store__bgFill > span {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.top-store__bgFill > img {
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* module > top > news
============================================================================ */
.top-news {
  padding: 218px 0 120px;
}
@media (max-width: 767px) {
  .top-news {
    padding: 45.8666666667vw 0 26.6666666667vw;
  }
}
.top-news__inner .common-dogHeading__right {
  max-width: 216px;
  width: 100%;
}
@media (max-width: 767px) {
  .top-news__inner .common-dogHeading__right {
    max-width: 65.6vw;
  }
}
.top-news__wrap {
  width: 768px;
  margin: 50px auto 0;
}
@media (max-width: 767px) {
  .top-news__wrap {
    width: 89.3333333333vw;
    margin: 13.3333333333vw auto 0;
  }
}
.top-news__result {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  flex-direction: row;
  width: 100%;
  padding-bottom: 20px;
  border-bottom: 2px solid #fde8de;
}
@media (max-width: 767px) {
  .top-news__result {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-direction: column;
    padding-bottom: 3.7333333333vw;
    border-bottom: 0.5333333333vw solid #fde8de;
  }
}
.top-news__result:nth-of-type(n + 2) {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .top-news__result:nth-of-type(n + 2) {
    margin-top: 4.2666666667vw;
  }
}
.top-news__result:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}
.top-news__date {
  background-color: #de6c38;
  padding: 0 10px;
  color: white;
}
@media (max-width: 767px) {
  .top-news__date {
    padding: 0 2.6666666667vw;
  }
}
.top-news__date > p {
  font-size: 18px;
  letter-spacing: 0.1rem;
}
@media (max-width: 767px) {
  .top-news__date > p {
    font-size: 4.2666666667vw;
  }
}
.top-news__txt {
  font-size: 18px;
  margin-left: 20px;
}
@media (max-width: 767px) {
  .top-news__txt {
    font-size: 8px;
    font-size: 4.2666666667vw;
    margin-left: 0;
    margin-top: 2.6666666667vw;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
}
.top-news__btn {
  text-align: center;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .top-news__btn {
    margin-top: 7.4666666667vw;
  }
}

/* module > top > future
============================================================================ */
.top-future__inner > h2 {
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .top-future__inner > h2 {
    margin-bottom: 9.8666666667vw;
  }
}
.top-future__inner .common-dogHeading__right {
  width: 457px;
}
@media screen and (max-width: 1280px) {
  .top-future__inner .common-dogHeading__right {
    width: 35.703125vw;
  }
}
@media (max-width: 767px) {
  .top-future__inner .common-dogHeading__right {
    width: 64vw;
  }
}
.top-future__main-btn {
  text-align: center;
  margin-top: 49px;
}
@media (max-width: 767px) {
  .top-future__main-btn {
    margin-top: 7.7333333333vw;
  }
}
.top-future__message {
  max-width: 1280px;
  width: 100%;
  padding-left: 140px;
  margin: 78px auto 50px;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .top-future__message {
    max-width: none;
    padding-left: 10.9375vw;
  }
}
@media (max-width: 1024px) {
  .top-future__message {
    display: none;
    margin: 78px auto 50px;
  }
}
@media (max-width: 767px) {
  .top-future__message {
    margin: 21.3333333333vw 0 13.3333333333vw;
  }
}
.top-future__message-text {
  font-weight: 500;
  line-height: 2.14;
  font-size: 18px;
  width: 563px;
}
@media screen and (max-width: 1280px) {
  .top-future__message-text {
    width: 43.984375vw;
  }
}
.top-future__message-text > p {
  margin-bottom: 2.5rem;
}
.top-future__message-text > p:last-of-type {
  margin-bottom: 0;
}
.top-future__message-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  align-content: center;
  flex-direction: column;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.top-future__message-images > img {
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .top-future__message-images > img {
    box-shadow: 0 1.0666666667vw 2.6666666667vw 0 rgba(0, 0, 0, 0.1);
  }
}
.top-future__message-images > img:first-of-type {
  width: 538px;
  aspect-ratio: 1.4986072423;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1280px) {
  .top-future__message-images > img:first-of-type {
    width: 42.03125vw;
  }
}
@media screen and (max-width: 1240px) {
  .top-future__message-images > img:first-of-type {
    width: 33.59375vw;
  }
}
.top-future__message-images > img:nth-of-type(2) {
  width: 330px;
  aspect-ratio: 1.5;
  -o-object-fit: cover;
     object-fit: cover;
  margin: -35px 52px 0 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1280px) {
  .top-future__message-images > img:nth-of-type(2) {
    width: 25.78125vw;
    margin: -2.734375vw 4.0625vw 0 0;
  }
}
@media screen and (max-width: 1240px) {
  .top-future__message-images > img:nth-of-type(2) {
    width: 20.625vw;
    margin: -2.1875vw 3.28125vw 0 0;
  }
}
.top-future__message-images > img:last-of-type {
  width: 330px;
  aspect-ratio: 1.5;
  -o-object-fit: cover;
     object-fit: cover;
  margin: -62px 289px 0 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1280px) {
  .top-future__message-images > img:last-of-type {
    width: 25.78125vw;
    margin: -4.84375vw 22.578125vw 0 0;
  }
}
@media screen and (max-width: 1240px) {
  .top-future__message-images > img:last-of-type {
    width: 20.625vw;
    margin: -3.90625vw 18.046875vw 0 0;
  }
}
.top-future__message.tabsp-only {
  padding-left: 0;
}
@media (max-width: 1024px) {
  .top-future__message.tabsp-only .top-future__message-tab {
    width: 563px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .top-future__message.tabsp-only .top-future__message-tab {
    width: 89.3333333333vw;
  }
}
@media (max-width: 1024px) {
  .top-future__message.tabsp-only .top-future__message-tab-text.f > p:last-of-type {
    margin-top: 1.6rem;
  }
}
@media (max-width: 1024px) {
  .top-future__message.tabsp-only .top-future__message-tab-text > p {
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
    letter-spacing: -0.01rem;
  }
}
@media (max-width: 767px) {
  .top-future__message.tabsp-only .top-future__message-tab-text > p {
    font-size: 4.5333333333vw;
  }
}
.top-future__message.tabsp-only .top-future__message-tab-img {
  width: 100%;
  position: relative;
}
@media (max-width: 1024px) {
  .top-future__message.tabsp-only .top-future__message-tab-img {
    margin: 32px 0;
  }
}
@media (max-width: 767px) {
  .top-future__message.tabsp-only .top-future__message-tab-img {
    margin: 5.3333333333vw 0;
  }
}
.top-future__message.tabsp-only .top-future__message-tab-img img {
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .top-future__message.tabsp-only .top-future__message-tab-img img {
    box-shadow: 0 1.0666666667vw 2.6666666667vw 0 rgba(0, 0, 0, 0.1);
  }
}
@media (max-width: 1024px) {
  .top-future__message.tabsp-only .top-future__message-tab-img.f {
    aspect-ratio: 1.509009009;
  }
}
@media (max-width: 767px) {
  .top-future__message.tabsp-only .top-future__message-tab-img.f {
    height: 59.2vw;
  }
}
.top-future__message.tabsp-only .top-future__message-tab-img.f img {
  width: 100%;
}
@media (max-width: 1024px) {
  .top-future__message.tabsp-only .top-future__message-tab-img.s {
    width: 79.4%;
    aspect-ratio: 1.5056179775;
    margin-left: auto;
  }
}
@media (max-width: 767px) {
  .top-future__message.tabsp-only .top-future__message-tab-img.s {
    width: 71.4666666667vw;
  }
}
.top-future__message.tabsp-only .top-future__message-tab-img.s img {
  right: 0;
  height: 100%;
}
@media (max-width: 1024px) {
  .top-future__message.tabsp-only .top-future__message-tab-img.t {
    width: 79.4%;
    aspect-ratio: 1.4973262032;
    margin-top: 32px;
  }
}
@media (max-width: 767px) {
  .top-future__message.tabsp-only .top-future__message-tab-img.t {
    width: 74.6666666667vw;
    margin-top: 5.3333333333vw;
  }
}
.top-future__message.tabsp-only .top-future__message-tab-img.t img {
  left: 0;
  height: 100%;
}
.top-future__message.tabsp-only .top-future__message-tab-img img {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
}/*# sourceMappingURL=style.css.map */