@charset "UTF-8";

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/*--カスタムプロパティ--*/
:root {
  /*--AccentColor: #937960; */
  /*--AccentColor: #a38d78;*/
  --AccentColor: #682A2B;
  --PointColor: #894f17;
  --SubColor: #682A2B;
  --TableBgColor: #f6f6f6;
  --GrayBgColor: #F2F4F6;
  --linkColor: #4472C4;
}

a {
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  color: #222;
  font-size: 1.0em;
}

/*--他共通--*/
img,
svg {
  max-width: 100%;
  vertical-align: bottom;
}

ul,
ol {
  list-style: none;
}

.wrap_mv {
  max-width: 100%;
  margin: 0 5.3vw;
}

.wrap_l {
  max-width: 88.6vw;
  margin: 0 auto;
}

.wrap_r {
  max-width: 75vw;
  margin: 0 auto;
}

.wrap_s {
  max-width: 65vw;
  margin: 0 auto;
}

.inline_block {
  display: inline-block;
}

.pc_none {
  display: none;
}

body {
  font-family: "inter", "Noto Sans JP", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Godthic Pro W3", sans-serif;
  font-weight: 400;
  line-height: 1.57;
  font-size: 1vw;
  color: #333;
  letter-spacing: 0.05vw;
}

a:hover {
  text-decoration: none;
  opacity: 0.7;
}

.mv_link_icon a:hover {
  text-decoration: none;
  opacity: 0.8;
}

/*--トップページ 各セクション上下余白--*/
.top_greeting{
  padding-top: 5vw;
  padding-bottom: 5vw;
}

.top_con01,
.top_con02,
.top_flow,
.top_info,
.top_news {
  padding-top: 7vw;
  padding-bottom: 5vw;
}

/*-------------------------------------------
header
--------------------------------------------*/
header {
  width: 100%;
  padding: 0 5.4% 0 5.25%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.h1_outer {
  /* padding-left: 2.7vw; */
  line-height: 1.23;
  display: flex;
  align-items: center;
  justify-content: center;
  /* ロゴ右側余白 */
  gap: 0.0em;
}
/* ロゴの横幅 */
.header__company-logo img {
  width: 16em;
}

.header__company-subTtl {
  font-size: 0.8em;
}

.header__company-logo p {
  font-size: 0.75em;
  line-height: 1.3;
  font-weight: 400;
}

/* .header__company-name p {
  font-size: 0.75em;
  line-height: 1.3;
  font-weight: 400;
} */

.header__company-ttl {
  font-size: 1.35em;
  font-weight: 400;
  line-height: 1.3;
}
header nav.pc_nav ul {
  line-height: 5vw;
  display: flex;
  align-items: center;
}

.hover_b {
  display: inline-block;
  padding-left: 2.4vw;
  height: 5vw;
}

.header-link:hover {
  opacity: 1;
  position: relative;
}

.header-link {
  position: relative;
}

.header-link::after {
  position: absolute;
  right: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: var(--AccentColor);
  bottom: -1.92vw;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
  z-index: 3;
}

.header-link:hover::after {
  transform: scale(1, 1);
}

.sp_nav {
  display: none;
}

/*-------------------------------------------
hamburger ハンバーガーメニューボタン
--------------------------------------------*/
.hamburger {
  display: none;
}

.hamburger span {
  display: none;
}

/* スマホメニューを開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 23px;
  left: 50%;
  background: #fff;
  transform: translate(-50%, 0) rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 23px;
  background: #fff;
  transform: translate(-50%, 0) rotate(45deg);
}

/* メニュー背景　*/
nav.globalMenuSp {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  color: #fff;
  background: rgba(71, 70, 73, 0.95);
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  transition: all 0.4s;
}

nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 70px 0 0;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  padding-left: 0.3em;
  width: 90%;
  margin: 0 auto;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.5);
  position: relative;
}

nav.globalMenuSp ul li::after {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  color: #fff;
  font-weight: 900;
  font-size: 0.8em;
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
}

nav.globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 1em 0;
  text-decoration: none;
}

.sp_nav_contact {
  text-align: center;
  margin-top: 2em;
}

.sp_nav_contact a {
  color: #fff;
  font-weight: 600;
  background-color: var(--SubColor);
  display: block;
  width: 70%;
  margin: 10px auto;
  padding: 1.2em;
  position: relative;
}

.sp_nav_contact a::after {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  color: #fff;
  font-weight: 900;
  font-size: 0.8em;
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
}

/* クリックでjQueryで追加・削除 */
nav.globalMenuSp.active {
  opacity: 100;
  display: block;
  transform: translateX(0%);
}

/*---スマホナビゲーションここまで--*/

/*-------------------------------------------
contact_area
--------------------------------------------*/
.contact_area {
  background: url("../images/contact_area_bg.jpg") no-repeat;
  background-size: cover;
  background-position: center top;
  padding: 3.5% 0 4.5%;
  color: #fff;
  text-align: center;
  position: relative;
}

.contact_area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
}

.contact_area_innre {
  position: relative;
  z-index: 1;
}

.contact_area_ttl {
  font-size: 2.5vw;
  font-family: var(--mincho);
  font-weight: 400;
}

.contact_point {
  font-size: 1vw;
  font-weight: 400;
  display: flex;
  justify-content: space-around;
  width: 75%;
  margin: 0 auto;
  padding-top: 2%;
  padding-bottom: 3%;
}

.contact_point li {
  width: 30%;
  padding: 1.3% 0;
  border: 1px solid #fff;
}

.contact_point li span.font_small {
  font-size: 0.8em;
}

.contact_linkbox {
  display: flex;
  align-items: center;
  background-color: #fff;
  position: relative;
  padding: 1.58vw 0;
}

.contact_linkbox::before {
  content: "";
  display: block;
  width: 1px;
  height: calc(100% - 3.1vw);
  background-color: #cccccc;
  position: absolute;
  left: 50%;
}

.contact_linkbox a {
  text-decoration: none;
}

.contact_linkbox li {
  width: 50%;
}

.contact_linkbox li:first-of-type a img {
  width: 2.5vw;
  height: auto;
  padding-bottom: 0.5vw;
  padding-right: 0.5vw;
}

.contact_linkbox li:first-of-type a {
  /*font-family: var(--mincho);*/
  font-family: 'Noto Serif JP', serif;
  font-size: 3vw;
  line-height: 1.25;
  color: #333333;
}

.contact_linkbox li:first-of-type a span {
  font-size: 0.9vw;
  display: block;
}

.contact_linkbox li:nth-of-type(2) a {
  font-size: 1.4vw;
  font-weight: 500;
  color: #fff;
  background: var(--SubColor);
  width: 72%;
  line-height: 4.1vw;
  margin: 0 auto;
  display: block;

  position: relative;
  overflow: hidden;
  transition: ease 0.2s;
}

.contact_linkbox li:nth-of-type(2) a:hover {
  opacity: 1;
}

.contact_linkbox li:nth-of-type(2) a div::before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  color: #fff;
  font-weight: 900;
  font-size: 1.15vw;
  padding-right: 0.6vw;
  position: relative;
  top: 0vw;
}

.contact_linkbox li:nth-of-type(2) a span {
  font-size: 0.95vw;
  margin-left: 1.2em;
}

/*-------------------------------------------
footer
--------------------------------------------*/
footer {
  background-color: var(--GrayBgColor);
  padding: 5vw 0;
}

.footer_top {
  display: flex;
  justify-content: space-between;
  padding: 0 6% 4%;
  border-bottom: 1px solid #999;
  font-size: 0.93vw;
}

.footer_logo_outer {
  display: flex;
  justify-content: left;
  align-items: center;
  /*ロゴの右側余白*/
  gap: 0.0vw;
}

.footer_company_name {
  font-size: 1.38vw;
  line-height: 1.3;
  font-weight: 400;
  /* padding-top: 1.4%; */
  color: #333;
}
/*ロゴの横幅*/
.footer__company-logo img {
  width: 16.5vw;
}

.footer_company_subName {
  font-size: 0.85em;
  /* font-weight: 400; */
  display: block;
}

.footer_access {
  width: 68.5%;
}
.footer_add {
  padding-bottom: 2%;
  font-size: 1em;
}

.footer_post_code {
  display: inline-block;
  padding-right: 1em;
}

.footer_howto {
  line-height: 1.8;
  font-size: 0.9em;
}

.footer_howto>ul li {
  display: inline;
}

.footer_howto>ul li+li::before {
  content: " ／ ";
}

.footer_bottom {
  padding: 4% 0 4.5%;
}

.footer_bottom a {
  text-decoration: none;
}

.footer_nav01 {
  display: flex;
  justify-content: center;
  padding-bottom: 1.8%;
}

.footer_nav02,
.footer_nav03 {
  display: flex;
  justify-content: center;
}

.footer_nav03 {
  padding-top: 0.3%;
}

.footer_nav01 a,
.footer_nav02 a,
.footer_nav03 a{
  font-size: 0.9em;
  color: #000;
  text-decoration: none;
}

.footer_nav01 li {
  padding: 0 1em;
}

.footer_nav02 li {
  padding: 0 1em;
}

.footer_nav03 li {
  padding: 0 1em;
}

.copyright {
  font-size: 0.85vw;
  text-align: center;
}

.footer_sp_nav {
  display: none;
}

/*== page top==*/

/*リンクの形状*/
#page-top a {
  background-color: var(--SubColor);
  width: 3.2vw;
  height: 3.2vw;
  border: 1px solid #f3f3f3;
  border-radius: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}

#page-top a img {
  width: 50%;
}

/*#page-top a:hover{
  background: #7E91AF;
}*/

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 1vw;
  bottom: 2.8vw;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}

/*　上に上がる動き　*/
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*　下に下がる動き　*/
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
  opacity: 0;
  bottom: 0
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 1;
    transform: translateY(100px);
  }
}

/*-------------------------------------------
thanks
--------------------------------------------*/

#thanks {
  color: #333333;
  font-family:'メイリオ', 'Meiryo', sans-serif;
}

#thanks a {
  color: #4472C4;
}

.thanks_table {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.thanks_head {
margin-bottom: 0.6em;
text-align: center;
font-size: 1.25em;
font-weight: 600;
}

.thanks_text {
  text-align: left;
  font-weight: 400;
  font-size: 1em;
  line-height: 2;
}

.thanks_text:nth-of-type(2) {
  margin-top: 0.7em;
}


/*-------------------------------------------
レスポンシブ
--------------------------------------------*/
@media screen and (max-width: 959px) {

  /*ヘッダーロゴ*/
  h1 a {
    font-size: 1.8em;
    font-weight: 400;
    line-height: 1;
    color: #333;
  }

  /*ハンバーガーメニュー*/
  .sp_nav {
    display: block;
  }

  .pc_nav {
    display: none;
  }

  .wrap_mv {
    margin: 0;
  }

  header {
    height: clamp(43px, 10vw, 70px);
    background-color: #fff;
    box-shadow: 0px 1px 3px -1px #ccc;
    position: fixed;
    top: 0;
    z-index: 999999;
  }

  header {
    width: 100%;
    padding: 0 4.5% 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /*　ハンバーガーメニューボタン　*/
  .hamburger {
    display: block;
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 0;
    width: clamp(44px, 10vw, 70px);
    height: clamp(43px, 10vw, 70px);
    cursor: pointer;
    text-align: center;
    background-color: var(--SubColor);
  }

  .hamburger span {
    display: block;
    position: absolute;
    width: 55%;
    height: 1.5px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    transition: 0.3s ease-in-out;
  }

  .hamburger span:nth-child(1) {
    top: 13px;
  }

  .hamburger span:nth-child(2) {
    top: 21px;
  }

  .hamburger span:nth-child(3) {
    top: 30px;
  }

  /* スマホメニューを開いてる時のボタン */
  .hamburger.active span:nth-child(1) {
    top: 23px;
    left: 50%;
    background: #fff;
    transform: translate(-50%, 0) rotate(-45deg);
  }

  .hamburger.active span:nth-child(2),
  .hamburger.active span:nth-child(3) {
    top: 23px;
    background: #fff;
    transform: translate(-50%, 0) rotate(45deg);
  }

  /* メニュー背景　*/
  nav.globalMenuSp {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    color: #fff;
    background: rgba(71, 70, 73, 0.95);
    width: 100%;
    height: 100vh;
    transform: translateX(100%);
    transition: all 0.4s;
  }

  nav.globalMenuSp ul {
    margin: 0 auto;
    padding: 70px 0 0;
    width: 100%;
  }

  nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    padding-left: 0.3em;
    width: 90%;
    margin: 0 auto;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.5);
    position: relative;
  }

  nav.globalMenuSp ul li::after {
    font-family: "Font Awesome 5 Free";
    content: "\f054";
    color: #fff;
    font-weight: 900;
    font-size: 0.8em;
    position: absolute;
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
  }

  nav.globalMenuSp ul li a {
    display: block;
    color: #fff;
    padding: 1em 0;
    text-decoration: none;
  }

  .sp_nav_contact {
    text-align: center;
    margin-top: 2em;
  }

  .sp_nav_contact a {
    color: #fff;
    font-weight: 600;
    background-color: var(--AccentColor);
    display: block;
    width: 70%;
    margin: 10px auto;
    padding: 1.2em;
    position: relative;
  }

  .sp_nav_contact a::after {
    font-family: "Font Awesome 5 Free";
    content: "\f054";
    color: #fff;
    font-weight: 900;
    font-size: 0.8em;
    position: absolute;
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
  }

  /* クリックでjQueryで追加・削除 */
  nav.globalMenuSp.active {
    opacity: 100;
    display: block;
    transform: translateX(0%);
  }

  /*---スマホナビゲーションここまで--*/


  /*--共通--*/
  .wrap_r {
    max-width: 90%;
  }

  .wrap_s {
    max-width: 90%;
  }

  .sp_nav .contact {
    text-align: center;
    margin-top: 2em;
  }

  .sp_nav .contact a {
    color: rgb(255, 255, 255);
    font-weight: bold;
    background-color: var(--SubColor);
    display: block;
    width: 70%;
    position: relative;
    margin: 10px auto;
    padding: 1.2em;
  }

  .sp_nav .contact a::after {
    font-family: "Font Awesome 5 Free";
    content: "";
    color: rgb(255, 255, 255);
    font-weight: 900;
    font-size: 0.8em;
    position: absolute;
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
  }

  /*----------header-----------*/
  /* ロゴ右側余白 */
  .h1_outer {
    gap: 0.0em;
}
  .header__company-logo img {
    width: 3em;
  }

  .header__company-subTtl {
    font-size: 1em;
  }

  .header__company-ttl {
    font-size: 1.6em;
  }
  .header__company-name p {
    font-size: 0.65em;
    line-height: 1.4;
  }

  /*---SP フッターメニューバー--*/
  .footer_sp_nav {
    display: block;
    position: fixed;
    z-index: 999;
    bottom: 0px;
    left: 0px;
    background-color: #222222;
    text-align: center;
    width: 100%;
    padding-top: 4px;
    padding-bottom: 7px;
    /*border-top:1px solid #f7f7f7;*/
  }

  .footer_sp_nav_inner {
    width: 100%;
    margin: 0 auto;
  }

  .footer_sp_nav01,
  .footer_sp_nav02,
  .footer_sp_nav03 {
    line-height: 1.6;
    display: inline-block;
    width: 24%;
    padding: 8px 0 2px;
  }

  #slide_menu {
    position: fixed;
    top: 0;
    left: -240px;
    width: 240px;
    height: 100%;
    background: #0c2755;
    color: #fff;
  }

  #slide_menu a {
    color: #fff;
    text-align: left;
    font-size: 14px;
    display: block;
    padding: 19px 0 17px 6%;
    border-bottom: 1px solid #546788;
  }

  #slide_menu a::before {
    content: "≫ ";
    display: inline-block;
    margin-right: 6px;
    vertical-align: top;
  }

  #slide_menu a#closemenu {
    text-align: center;
    padding-left: 0px;
    border-bottom: none;
  }

  #slide_menu a#closemenu::before {
    content: "";
  }

  button#button {
    line-height: 1.6;
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    appearance: none;
  }

  .footer_top {
    display: grid;
    grid-template-columns: 1fr 70%;
    justify-content: center;
    align-items: center;
    gap: 3vw;
    padding: 0 3% 5%;
    /*margin-bottom: 5%;*/
    border-bottom: 1px solid #aaa;
    font-size: 1rem;
    text-align: left;
    color: #555;
  }
}

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

  /*共通*/
  html {
    font-size: 62.5%;
  }

  body {
    font-size: max(1.1vw, 1.5rem);
    color: #333;
  }

  h1 {
    line-height: 1.2;
  }

  #home h1 {
    padding-bottom: 0px;
    font-size: 1.0em;
    font-weight: 400;
  }

  h1 a {
    font-size: 1.55rem;
    font-weight: 500;
  }

  .sp_none {
    display: none;
  }

  .pc_none {
    display: block;
  }

  /*----------header-----------*/
  /* ロゴの横幅 */
  .header__company-logo img {
    width: 53vw;
  }

  .header__company-subTtl {
    font-size: 0.6em;
  }

  .header__company-ttl {
    font-size: 1em;
  }

  /*----------section 余白-----------*/

  .top_greeting {
    padding-top: 10%;
    padding-bottom: 10%;
  }
  .top_con01,
  .top_flow,
  .top_news,
  .top_info{
    padding-top: 13%;
    padding-bottom: 10%;
  }
  .top_con02{
    padding-top: 13%;
    padding-bottom: 0;
  }
    /*--contact_area--*/
    .contact_area {
      background: url("../images/contact_area_bg_sp.jpg") no-repeat;
      background-size: cover;
      background-position: center top;
      padding: 9% 0 9%;
      /*color: #fff;*/
      text-align: center;
      /*position: relative;*/
    }
    /*.contact_area::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(10,30,0,0.5);
    }*/
    /*.contact_area_innre{
      font-family: 'Noto Serif JP', serif;
      position: relative;
      z-index: 1;
    }*/
    .contact_area_ttl {
      font-size: 1.55em;
      font-weight: 400;
      line-height: 1.3;
    }
  
    .contact_point {
      font-size: 1.3rem;
      /*display: flex;*/
      justify-content: space-between;
      width: 100%;
      /*margin: 0 auto;*/
      padding: 4.5% 0;
    }
  
    .contact_point li {
      width: 31.5%;
      padding: 1.3% 1%;
      border: 1px solid #fff;
      line-height: 1.35;
    }
  
    .contact_point li span.font_small {
      font-size: 0.8em;
    }
  
    .contact_linkbox {
      /*display: flex;*/
      /*align-items: center;*/
      flex-wrap: wrap;
      /*position: relative;*/
      padding: 6%;
    }
  
    .contact_linkbox::before {
      /*content: "";*/
      display: none;
      /*width: 1px;
      height: calc(100% - 3.1vw);
      background-color: #707070;
      position: absolute;
      left: 50%;*/
    }
  
    /*.contact_linkbox a{
    text-decoration: none;
  }*/
    .contact_linkbox li {
      width: 100%;
      background-color: #fff;
    }
  
    .contact_linkbox li:first-of-type {
      border: 1px solid #ccc;
      margin-bottom: 4%;
    }
  
    .contact_linkbox li:first-of-type a img {
      width: 0.92em;
      padding-right: 2%;
      padding-bottom: 1%;
    }
  
    .contact_linkbox li:first-of-type a {
      white-space: nowrap;
      display: inline-block;
      width: 100%;
      font-size: 3.2rem;
      line-height: 1.15;
      /*color: #333333;*/
      padding: 2% 0;
      /*padding-left: 12%;*/
      /*background: url("../images/icon_tel.svg") no-repeat;*/
      /*background-size: 3.0rem auto;
      background-position: 12% 45%;*/
    }
  
    .contact_linkbox li:first-of-type a span {
      font-size: 0.4em;
      line-height: 1.8;
      /*display: block;*/
    }
  
    .contact_linkbox li:nth-of-type(2) a {
      font-size: 1.25em;
      /*font-weight: 500;
      color: #fff;
      background-color: var(--SubColor);*/
      width: 100%;
      padding: 8% 0;
      /*line-height: 4.1vw;*/
      /*margin: 0 auto;
      display: block;*/
    }
  
    .contact_linkbox li:nth-of-type(2) a div::before {
      /*font-family: "Font Awesome 5 Free";
      content: '\f0e0';
      color: #fff;
      font-weight: 900;*/
      font-size: 0.95em;
      padding-right: 2.5%;
      /*position: relative;
      top: 0vw;*/
    }
  
    .contact_linkbox li:nth-of-type(2) a span {
      font-size: 0.6em;
      margin-left: 1em;
    }

/*----------footer-----------*/
footer {
  background-color: var(--GrayBgColor);
  padding: 9% 0 7%;
}

.footer_top {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 3% 5%;
  gap: 0;
  /*margin-bottom: 5%;*/
  border-bottom: 1px solid #aaa;
  font-size: 1.3rem;
  text-align: center;
  color: #555;
}

.footer_logo_outer {
  display: flex;
  justify-content: center;
  align-items: center;
  /*ロゴありの場合はleft*/
  text-align-last: center;
  /*ロゴの右側余白*/
  gap: 0.0vw;
  /* padding-bottom: 4%; */
}

.footer__company-logo img {
    width: 65.0vw;
}

.footer_company_name {
  font-size: 5.4vw;
  line-height: 1.4;
  font-weight: 500;
  padding-top: 0%;
  padding-bottom: 4%;
}

.footer_company_subName {
font-size: 0.9em;
font-weight: 400;
display: block;
padding-bottom: 0.5%;
}

.footer_access {
  width: 100%;
  padding-top: 6%;
}

.footer_add {
  padding-bottom: 4%;
}

.footer_post_code {
  display: block;
  padding: 0;
}

.footer_howto {
  line-height: 1.8;
}

.footer_howto ul {
  padding-bottom: 3.5%;
}

.footer_howto>ul li {
  display: block;
}

.footer_howto>ul li+li::before {
  content: none;
}

.footer_bottom {
  padding: 2% 0;
}

.footer_nav02,
.footer_nav03{
  display: none;
}

.footer_nav01 {
  flex-wrap: wrap;
  font-size: 1.3rem;
}

.footer_nav01 li {
  width: 49%;
}

.footer_bottom a {
  color: #555;
  text-decoration: none;
}

.footer_nav01 li,
.footer_nav02 li,
.footer_nav03 li {
  padding: 0.45em 1em;
}

/*.footer_nav01,.footer_nav02{
  display: flex;
  justify-content: center;
}
.footer_nav01{
  padding-bottom: 1.1%;
}
.footer_nav02{
}*/
.copyright {
  font-size: 1rem;
  padding-top: 3%;
  /*padding-top: 9%;*/
  /*text-align: center;*/
}

#contact .copyright {
  padding-top: 0;
}
  /*== page top==*/
  /*リンクの形状*/
  #page-top a {
    width: 3.5rem;
    height: 3.5rem;
  }

  #page-top a img {
    width: 50%;
  }

  /*リンクを右下に固定*/
  #page-top {
    /*position: fixed;*/
    right: 3%;
    bottom: 5%;
    /*z-index: 2;*/
    /*はじめは非表示*/
    /*opacity: 0;
	transform: translateY(100px);*/
  }

/*-------------------------------------------
thanks
--------------------------------------------*/

.thanks_table {
  width: 90vw;
}

.thanks_head {
  margin-bottom: 0.5em;
  text-align: center;
  font-size: 1.25em;
  font-weight: 700;
  }

.thanks_text {
  font-size: 1em;
}

.thanks_text:nth-of-type(2) {
  margin-top: 2vw;
}

}