@charset "UTF-8";

@font-face {
  font-family: 'kanata';
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/kanata.woff") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: 'zenkaku';
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/zenkaku.woff") format("opentype");
  font-display: swap;
}


/*================================================
 *  一般・共通設定
 ================================================*/
:root {
  --color-black: #333;
  --color-dark: #69645d;
  --color-white: #f9f9f9;
  --color-beige2: #B18A3F;
  --color-greige: #9f9481;
  --font-en: "Nanum Myeongjo", serif;
  --font-ttl: 'kanata';
  --easing: cubic-bezier(.2, 1, .2, 1);
  --transition: .8s var(--easing);
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-size: 1.5rem;
  font-family: 'zenkaku',
    游ゴシック体,
    "Yu Gothic",
    YuGothic,
    "ヒラギノ角ゴシック Pro",
    "Hiragino Kaku Gothic Pro",
    メイリオ,
    Meiryo,
    Osaka,
    "ＭＳ Ｐゴシック",
    "MS PGothic",
    sans-serif;
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: .07em;
  color: var(--color-black);
  background: url(../images/pattern-pc.jpg) repeat-y center top 15%/contain;
  position: relative;
  z-index: 1;
  overflow-x: hidden;
}

body.subPage {
  background: url(../images/pattern-pc.jpg) no-repeat center top/ cover;
}

.wrap {
  max-width: 1000px;
  margin: 0 auto;
}

.widewrap {
  max-width: 1150px;
  margin: 0 auto;
}

a {
  color: var(--color-black);
  text-decoration: none;
}

a:hover {
  opacity: .7;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

a.underline {
  text-decoration: underline;
}

p {
  margin: 0 0 0.5em 0;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

small {
  font-size: smaller;
}

ul,
ol,
dl {
  margin: 0;
}

ul li {
  list-style: none;
  margin: 0;
}

ol li {
  list-style: decimal;
}

/* タイトル */
h2 {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 30px;
}

h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
}

@media screen and (max-width:768px) {

  body,
  body.subPage {
    background: url(../images/pattern-sp.jpg) repeat-y center top/contain;
  }

  html {
    font-size: 60%;
  }

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

  .wrap,
  .widewrap {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }

  h3 {
    margin-bottom: 10px;
  }

}


/*================================================
 *  コンテンツ
 ================================================*/
header {
  display: flex;
  justify-content: space-between;
  padding: 20px 2%;
  position: fixed;
  top: 0;
  width: 100%;
  box-sizing: border-box;
  z-index: 3;
  align-items: baseline;
}

header h1 img {
  width: 250px;
  vertical-align: middle;
}

.nav-button {
  display: none;
}

.nav a {
  color: var(--color-black);
}

.nav li {
  display: inline-block;
  margin: 40px 10px 0;
}

/* sp非表示 */
.nav li.sp {
  display: none;
}

.nav-wrap.open {
  display: block;
}

.nav-wrap.close {
  display: none;
}

/* nav_contact */
.nav_contact a {
  background: var(--color-black);
  color: var(--color-white);
  border: 1px solid var(--color-black);
  padding: 5px 20px;
  font-size: 1.4rem;
}

.nav_contact a:hover {
  background: var(--color-white);
  color: var(--color-black);
}


/* ロゴチェンジ */
header h1 img.defaults {
  display: inline-block;
}

header h1 img.custom {
  display: none;
}

header.changeNav h1 img.defaults {
  display: none;
}

header.changeNav h1 img.custom {
  display: inline-block;
}

/* changeNav */
header.changeNav {
  background: var(--color-black);
  padding: 5px 2%;
  transition: .5s;
}

header.changeNav h1 img {
  width: 110px;
}

header.changeNav .nav li {
  margin: 10px;
  font-size: 1.4rem;
}

header.changeNav .nav li a {
  color: var(--color-white);
}

@media screen and (min-width: 950px) {
  .nav-wrap {
    display: block !important;
  }
}

@media screen and (max-width: 950px) {
  header {
    padding: 20px 15px
  }

  header h1 img {
    width: 110px;
  }

  header.changeNav {
    padding: 5px 3%;
  }

  header.changeNav h1 img {
    width: 80px;
  }

  header.changeNav .nav {
    border-bottom: none;
  }

  .nav-button {
    display: block;
    cursor: pointer;
  }

  .nav-wrap {
    position: fixed;
    left: 0;
    top: 0;
    display: none;
    z-index: 10;
    background: url(../images/pattern-nav.jpg) no-repeat center left 20% / cover;
    width: 100%;
    height: 100%;
  }

  .nav,
  header.changeNav .nav {
    position: relative;
    overflow-y: auto;
    padding: 80px 30px 50px;
    background: none;
  }

  .nav li {
    display: block;
    margin: 20px 10px 5px;
    text-align: center;
    font-size: 1.5rem;
  }

  header.changeNav .nav li {
    margin: 20px 10px 5px;
  }

  header.changeNav .nav li a {
    color: var(--color-black);
  }

  /* sp表示 */
  .nav li.sp {
    display: block;
  }

  .nav li i {
    display: inline-block;
  }

  /* nav_contact */
  .nav li.nav_contact a {
    width: 90%;
    display: block;
    padding: 15px 0;
    margin: 30px auto 20px;

  }

  .nav li.nav_sns a {
    border: 1px solid;
    width: 90%;
    display: block;
    padding: 15px 0;
    margin: 0px auto;
  }

  /*メニューボタンのエフェクト*/
  .nav-button,
  .nav-button span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
  }

  .nav-button {
    z-index: 20;
    position: relative;
    width: 40px;
    height: 20px;
  }

  .nav-button span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-black);
  }

  header.changeNav .nav-button span {
    background-color: var(--color-white);
  }

  .nav-button span:nth-of-type(1) {
    top: 10px;
  }

  .nav-button span:nth-of-type(2) {
    top: 20px;
  }

  .nav-button:hover {
    opacity: 1;
  }

  .nav-button.active span:nth-of-type(1) {
    -webkit-transform: translateY(6px) rotate(-45deg);
    transform: translateY(6px) rotate(-45deg);
    background: var(--color-black);
  }

  .nav-button.active span:nth-of-type(2) {
    top: 32px;
    -webkit-transform: translateY(-16px) rotate(45deg);
    transform: translateY(-16px) rotate(45deg);
    background: var(--color-black);
  }
}


/*================================================
 *  loader
 ================================================*/
#load {
  position: fixed;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  display: flex;
  top: 0;
  left: 0;
  z-index: 9999;
}

.loader {
  margin: auto;
  width: 40px;
  aspect-ratio: 1;
  color: var(--color-black);
  border: 1px solid;
  display: grid;
  box-sizing: border-box;
  animation: l1 4s infinite linear;
}

.loader::before,
.loader::after {
  content: "";
  grid-area: 1/1;
  margin: auto;
  width: 70.7%;
  aspect-ratio: 1;
  border: 1px solid;
  box-sizing: content-box;
  animation: inherit;
}

.loader::after {
  width: 50%;
  aspect-ratio: 1;
  border: 1px solid;
  animation-duration: 2s;
}

@keyframes l1 {
  100% {
    transform: rotate(1turn)
  }
}


/* =======================================================
* section・共通
* ======================================================= */
section {
  padding-bottom: 10rem;
  position: relative;
}

.section {
  padding-top: 10rem;
}

/* ボタン */
.linkBtn {
  text-align: center;
  margin: 40px auto 0;
}

.linkBtn.mt {
  margin: 80px auto 0;
}

.linkBtn a {
  background: var(--color-greige);
  color: var(--color-white);
  border: 1px solid var(--color-greige);
  opacity: 1;
  padding: 15px 50px;
  position: relative;
  font-size: 1.3rem;
}

.linkBtn a::before {
  position: absolute;
  content: "";
  width: 98%;
  height: 86%;
  border: 1px solid var(--color-white);
  top: 3px;
  left: 3px;
}

.linkBtn a:hover {
  background: var(--color-dark);
  color: var(--color-white);
}

@media screen and (max-width:768px) {
  section {
    padding-bottom: 7rem;
  }

  .section {
    padding-top: 7rem;
  }

}


/* =======================================================
* main
* ======================================================= */
.slide-media,
.thumb-media {
  position: relative;
  overflow: hidden;
}

.slide-media img,
.thumb-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

#main {
  padding-top: 18rem;
  margin: 0 10px;
}

#main .swiper-pagination {
  width: 35%;
  position: absolute;
  bottom: 2%;
  right: 0;
}

#main .swiper-pagination-bullet-active {
  background-color: var(--color-beige2);
}

#main .swiper-fade .swiper-slide {
  -webkit-transition-property: opacity, -webkit-transform !important;
  transition-property: opacity, -webkit-transform !important;
  transition-property: opacity, transform !important;
  transition-property: opacity, transform, -webkit-transform !important;
  pointer-events: none;
}

#main .swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

#main .slide {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: row-reverse;
  height: 73vh;
}

#main .slide-media {
  width: 67%;
  height: 73vh;
}

.swiper-slide-active .slide-media img,
.swiper-slide-duplicate-active .slide-media img,
.swiper-slide-prev .slide-media img {
  animation: zoom-in 10s linear 0s 1 normal both;
}

@keyframes zoom-in {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

#main .slide-txt {
  width: 30%;
  margin: auto;
}

#main .slide-title,
#main .slide-text,
#main .slide-link {
  -webkit-animation: 2s var(--easing) both;
  animation: 2s var(--easing) both;
}

#main .slide-title {
  font-size: 3.3rem;
  line-height: 1.3;
  font-family: var(--font-ttl);
}

#main .slide-text {
  font-size: 1.5rem;
  margin: 4rem 0;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

#main .slide-link {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

#main .slide-button {
  font-size: 1.2rem;
  font-weight: bold;
  display: inline-block;
  color: var(--color-theme);
}

#main .slide-button::before {
  display: inline-block;
  width: 6rem;
  height: 1px;
  margin: -2px 1.6rem 0 0;
  content: "";
  vertical-align: middle;
  background-color: currentColor;
}


#main .swiper-slide.anm-started .slide-title,
#main .swiper-slide.anm-started .slide-text,
#main .swiper-slide.anm-started .slide-link {
  -webkit-animation-name: mv02-fadeIn;
  animation-name: mv02-fadeIn;
}

#main .swiper-slide.anm-finished .slide-title,
#main .swiper-slide.anm-finished .slide-text,
#main .swiper-slide.anm-finished .slide-link {
  -webkit-animation-name: mv02-fadeOut;
  animation-name: mv02-fadeOut;
}

@-webkit-keyframes mv02-fadeIn {
  0% {
    -webkit-transform: translateY(6rem);
    transform: translateY(6rem);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes mv02-fadeIn {
  0% {
    -webkit-transform: translateY(6rem);
    transform: translateY(6rem);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@-webkit-keyframes mv02-fadeOut {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(-6rem);
    transform: translateY(-6rem);
    opacity: 0;
  }
}

@keyframes mv02-fadeOut {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(-6rem);
    transform: translateY(-6rem);
    opacity: 0;
  }
}

@media screen and (max-width:768px) {
  #main {
    padding-top: 10rem;
    margin: 0;
  }

  #main .slide {
    height: 80vh;
  }

  #main .slide-media {
    width: 100%;
    height: 40vh;
  }

  #main .slide-txt {
    width: 100%;
    margin: 0;
    height: 30vh;
  }

  #main .slide-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }

  #main .slide-text {
    margin: 1rem 0;
  }

  #main .swiper-pagination {
    width: 100%;
    bottom: 7%;
  }
}


/* =======================================================
* intro
* ======================================================= */
#intro .intro_txt {
  text-align: center;
  margin: 0 auto;
  line-height: 2.2;
  font-size: 1.7rem;
}

.photoArea {
  margin-top: 13rem;
  display: grid;
  gap: 0px;
  grid-template-columns: 1fr 1fr 1fr;
}

.photoArea p {
  position: absolute;
  background: var(--color-white);
  max-width: 300px;
  padding: 5px 10px;
  font-size: 1.3rem;
}

.photoArea li:first-child div:first-of-type {
  width: 80%;
  margin-top: 50px;
}

.photoArea li:first-child div:first-of-type p {
  bottom: -20px;
  right: -50px;
}

.photoArea li:first-child div:nth-child(2) {
  width: 85%;
  margin: 80px 0 0 auto;
}

.photoArea li:first-child div:nth-child(2) p {
  bottom: -40px;
  left: -40px;
}

.photoArea li:nth-child(2) div {
  width: 80%;
  margin: 0 auto;
}

.photoArea li:nth-child(2) div p {
  top: -20px;
  right: -50px;
}

.photoArea li:last-child div:first-of-type {
  width: 90%;
  margin: 120px 0 0 auto;
}

.photoArea li:last-child div:first-of-type p {
  bottom: -40px;
  left: -40px;
}

@media screen and (max-width:768px) {
  #intro {
    padding-top: 3rem;
  }

  #intro .intro_txt {
    line-height: 2.3;
    font-size: 1.5rem;
  }

  .photoArea {
    margin-top: 6rem;
    grid-template-columns: 1fr;
  }

  .photoArea p {
    font-size: 1.2rem;
    width: 250px;
  }

  .photoArea li:first-child div:nth-child(2) {
    width: 70%;
    margin: 50px 0 50px auto;
  }

  .photoArea li:first-child div:nth-child(2) p {
    bottom: auto;
    top: -25px;
  }

  .photoArea li:first-child div:first-of-type p {
    bottom: auto;
    right: auto;
    top: -20px;
  }

  .photoArea li:nth-child(2) div p {
    right: auto;
    top: -15px;
    left: -20px;
  }

  .photoArea li:last-child div:first-of-type {
    width: 80%;
    margin: 60px 0px 20px auto;
  }

  .photoArea li:last-child div:first-of-type p {
    bottom: auto;
    top: -30px;
  }
}

/* =======================================================
* link
* ======================================================= */
#link {
  margin-top: 5rem;
}

#link ul {
  display: flex;
  gap: 50px;
  justify-content: center;
}

#link ul a {
  position: relative;
  background-color: var(--color-greige);
  color: var(--color-white);
  display: flex;
  gap: 15px;
  border-radius: 50%;
  width: 180px;
  height: 180px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform .5s;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);

}

#link ul a::after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f063";
  font-weight: 900;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
}

#link ul a span {
  display: block;
  font-size: 1.3rem;
}

#link ul a:hover {
  opacity: 1;
  background: var(--color-dark);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

@media screen and (max-width:768px) {
  #link {
    margin-top: 2rem;
  }

  #link ul {
    gap: 10px;
  }

  #link ul a {
    height: 110px;
    font-size: 1.4rem;
    line-height: 1.8;
  }

  #link ul a span {
    font-size: 1rem;
  }

  #link ul a::after {
    bottom: 10px;
    font-size: 1.3rem;
  }
}


/* =======================================================
* shooting
* ======================================================= */
#shooting {
  background: url(../images/bg-plan.webp) no-repeat center/cover;
  position: sticky;
  top: 0px;
  height: 100vh;
  color: var(--color-white);
}

#shooting::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

#shooting h2 {
  margin-bottom: 70px;
}

#shooting .swiper-slide {
  background: var(--color-white);
  color: var(--color-black);
  height: 370px;
  padding: 50px;
  border-radius: 10px;
}

#shooting .swiper-slide ul {
  display: grid;
  gap: 15px;
  grid-template-columns: 1fr 1fr 1fr;
  text-align: center;
  margin-top: 30px;
}

#shooting .swiper-slide ul li {
  background: #dfdfdf;
  border-radius: 10px;
  font-size: 1.8rem;
  padding: 20px 0;
}

#shooting .swiper-slide ul li span {
  display: block;
  font-size: 1.3rem;
}

#shooting .swiper-slide ul li small {
  font-size: 1.1rem;
}

#shooting .swiper-pagination {
  bottom: 20px;
}

#shooting .swiper-pagination-bullet {
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 23px;
  font-size: 1.3rem;
  background: transparent;
  border: 1px solid var(--color-greige);
  color: var(--color-greige);
  opacity: 1;
}

#shooting .swiper-pagination-bullet-active {
  color: #fff;
  background: var(--color-greige);
}

@media screen and (max-width:768px) {
  #shooting {
    background: url(../images/bg-plan_sp.webp) no-repeat center/cover;
  }

  #shooting h2 {
    margin-bottom: 20px;
  }

  #shooting .swiper-slide {
    margin-top: 10px;
    height: 260px;
    padding: 20px;
  }

  #shooting .swiper-slide ul {
    margin-top: 10px;
  }

  #shooting .swiper-slide ul li {
    font-size: 1.6rem;
    padding: 10px 0;
  }

  #shooting .swiper-slide ul li span {
    font-size: 1.2rem;
  }
}


/* =======================================================
* benefit
* ======================================================= */
#benefit {
  background: url(../images/bg-question.webp) no-repeat center/cover;
  color: var(--color-white);
  z-index: 1;
}

#benefit::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

#benefit h2 {
  margin-bottom: 50px;
}

/* chat */
.chat-bubble {
  display: grid;
  gap: 10px;
  margin-bottom: 90px;
}

.chat-bubble__section {
  display: flex;
  align-items: center;
  gap: 0 15px;
}

.chat-bubble__img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  background: var(--color-white);
  border-radius: 50%;
  padding: 7px;
}

.chat-bubble__img.right {
  padding: 1.5px;
}

.chat-bubble__text {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 15px 20px;
  border-radius: 13px;
  font-size: 1.4rem;
  color: var(--color-black);
}

.chat-bubble__text li {
  list-style: disc;
  margin-bottom: 15px;
}

.chat-bubble__text.left {
  background-color: rgba(255, 255, 255, 0.9);
}

.chat-bubble__text.right {
  background-color: rgba(255, 255, 255, 0.9);
  margin: 0 10px 0 auto;
  line-height: 2;
}

.chat-bubble__text::before {
  position: absolute;
  top: -15px;
  width: 20px;
  height: 30px;
  content: '';
}

.chat-bubble__text.left::before {
  left: -10px;
  border-radius: 0 0 0 15px;
  box-shadow: -3px -15px 0 -7px rgba(255, 255, 255, 0.9) inset;
}

.chat-bubble__text.right::before {
  right: -10px;
  border-radius: 0 0 15px 0;
  box-shadow: 3px -15px 0 -7px rgba(255, 255, 255, 0.9) inset;
}


@media screen and (max-width:768px) {
  #benefit {
    background: url(../images/bg-question-sp.webp) no-repeat center/cover;
  }

  .chat-bubble {
    margin-bottom: -40px;
  }

  .chat-bubble__section {
    margin-bottom: 10px;
    align-items: flex-start;
    gap: 0 10px;
  }

  .chat-bubble__img {
    width: 50px;
    height: 50px;
  }

  .chat-bubble__text {
    padding: 7px 15px;
    width: 75%;
  }

  .chat-bubble__text.right {
    margin: 0 10px 25px auto;
    line-height: 1.7;
  }

}

/* =======================================================
* area
* ======================================================= */
#area {
  background: url(../images/bg-area.webp) no-repeat center/cover;
  position: sticky;
  top: 30px;
  height: 100vh;
  color: var(--color-white);
}

#area::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

#area p {
  line-height: 2;
}

@media screen and (max-width:768px) {
  #area {
    background: url(../images/bg-area_sp.webp) no-repeat center/cover;
  }

  #area p {
    line-height: 1.7;
  }
}


/* =======================================================
* news
* ======================================================= */
.bg {
  background: url(../images/pattern-pc.jpg) repeat-y center top / cover;
  position: relative;
}

#news iframe {
  width: 100%;
  height: 250px;
  margin-bottom: 30px;
}

/* =======================================================
* sns
* ======================================================= */
#sns {
  padding-bottom: 15rem;
}


/* =======================================================
* sub_main
* ======================================================= */
#sub_main {
  padding-top: 180px;
}

.sub_img {
  width: 70%;
  height: 500px;
}

.sub_ttl {
  width: 30%;
  text-align: center;
  font-family: var(--font-ttl);
  font-size: 4rem;
  padding-bottom: 200px;
}

.sub_ttl span {
  letter-spacing: -.15em;
  display: block;
}

@media screen and (max-width:768px) {
  #sub_main {
    padding-top: 130px;
  }

  .sub_img {
    width: 100%;
    height: 270px;
  }

  .sub_ttl {
    width: 100%;
    font-size: 3.5rem;
    padding-bottom: 20px;
    line-height: 1.2;
  }
}


/* =======================================================
* footer
* ======================================================= */
footer {
  position: relative;
  background: #000;
  padding: 5rem 0;
  text-align: center;
}

footer a {
  color: #ccc;
}

.footer_logo {
  width: 220px;
  margin: 0 auto 30px;
}

.footer_menu li {
  display: inline-block;
  font-size: 1.3rem;
  margin: 0 7px;
}

/* footer_sns */
.footer_sns {
  margin-top: 30px;
}

.footer_sns a {
  width: 300px;
  border: 1px solid #6f6f6f;
  padding: 20px 0px;
  margin: 0px 10px 15px;
  font-size: 1.4rem;
}

.footer_sns a:hover {
  background: var(--color-white);
  opacity: 1;
  color: var(--color-black);
}


.copyright {
  color: #ccc;
  font-size: 1.1rem;
  letter-spacing: .15em;
  margin-top: 50px;
}

@media screen and (max-width:768px) {
  footer {
    padding: 3rem 0;
  }

  .footer_logo {
    width: 160px;
    margin: 0 auto 20px;
  }

  .footer_menu li {
    display: block;
    font-size: 1.4rem;
    margin: 15px 0px;
  }

  .footer_sns a {
    width: 80%;
    padding: 15px 0;
    font-size: 1.3rem;
  }

}


/*================================================
 *  pagetop
 ================================================*/
#pagetop {
  padding: 20px 0 3px;
  cursor: pointer;
  text-align: center;
  font-size: 1rem;
  background: var(--color-greige);
  position: relative;
}

#pagetop .arrow-up {
  width: 20px;
  height: 20px;
  border: 1px solid;
  border-color: var(--color-black) var(--color-black) transparent transparent;
  transform: rotate(-45deg);
  margin: 0 auto;
}

@media screen and (max-width:768px) {
  #pagetop {
    padding: 15px 0 3px;
  }

  #pagetop .arrow-up {
    width: 15px;
    height: 15px;
  }
}