@charset "UTF-8";
/*
+++++++++++++++++++++++++++++++++++++++++
                  共通部分
++++++++++++++++++++++++++++++++++++++++++++++
*/
html {
  /*16px*62.5%=10px*/
  font-size: 62.5%;
}

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

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #59493f;
  font-feature-settings: "palt";
  /*文字詰*/
  margin: 0;
  letter-spacing: 0.19em;
  line-height: 1.8;
}

body.noscroll {
  overflow: hidden;
}

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

.content__box {
  overflow: hidden;
}

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

p {
  font-size: 1.4rem;
}

.pc_br {
  display: none;
}

.sp_br {
  display: block;
}

.container {
  margin-top: 60px;
}

.overflow {
  overflow: hidden;
}

.section .sec__titile {
  text-align: center;
}

.bgimg {
  position: relative;
  margin-left: 10px;
}
.bgimg img {
  border-radius: 10px;
}
.bgimg::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #f19149;
  position: absolute;
  bottom: -10px;
  left: -10px;
  z-index: -1;
  border-radius: 10px;
}

.bgimg-rv {
  position: relative;
  margin-right: 10px;
}
.bgimg-rv img {
  border-radius: 10px;
}
.bgimg-rv::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #f19149;
  position: absolute;
  bottom: -10px;
  right: -10px;
  z-index: -1;
  border-radius: 10px;
}

.bgimg2 {
  position: relative;
  margin-left: 20px;
}
.bgimg2 img {
  border-radius: 10px;
}
.bgimg2::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #f19149;
  position: absolute;
  bottom: -20px;
  left: -20px;
  z-index: -1;
  border-radius: 10px;
}

.bgimg2-rv {
  position: relative;
  margin-right: 20px;
}
.bgimg2-rv img {
  border-radius: 10px;
}
.bgimg2-rv::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #f19149;
  position: absolute;
  bottom: -20px;
  right: -20px;
  z-index: -1;
  border-radius: 10px;
}

.p_bar {
  background: linear-gradient(transparent 50%, #fbdec8 50%);
}

@media screen and (min-width: 1024px) {
  body {
    font-size: 16px;
    line-height: 2.2;
    /*pcサイズ時のフォントサイズ指定*/
  }

  .pc_br {
    display: block;
  }

  .sp_br {
    display: none;
  }

  .contents {
    padding-top: 80px;
  }

  .container {
    margin-top: 120px;
  }

  .f__box {
    display: flex;
  }

  p {
    line-height: 2.2;
    font-size: 1.6rem;
  }

  .bgimg2 img {
    border-radius: 10px 10px 0 10px;
  }
  .bgimg2::after {
    width: calc(100% + 20px);
    border-radius: 10px 10px 0 10px;
  }

  .bgimg2-rv img {
    border-radius: 10px 10px 10px 0;
  }
  .bgimg2-rv::after {
    width: calc(100% + 20px);
    border-radius: 10px 10px 10px 0;
  }
}
/*
+++++++++++++++++++++++++++++++++++++++++
             アニメーション
++++++++++++++++++++++++++++++++++++++++++++
*/
/* fadeUp */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeLeft {
  -webkit-animation-name: fadeLeftAnime;
          animation-name: fadeLeftAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeRight {
  -webkit-animation-name: fadeRightAnime;
          animation-name: fadeRightAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    transform: translateY(-50%);
  }
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    transform: translateY(-50%);
  }
}
.fadeInTrigger,
.fadeLeftTrigger,
.fadeUpTrigger,
.fadeRightTrigger {
  opacity: 0;
}

.delay-time05 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.delay-time1 {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.delay-time2 {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.delay-time3 {
  -webkit-animation-delay: 3.2s;
          animation-delay: 3.2s;
}

.delay-time35 {
  -webkit-animation-delay: 3.5s;
          animation-delay: 3.5s;
}

/*
+++++++++++++++++++++++++++++++++++++++++
                 header
++++++++++++++++++++++++++++++++++++++++++++
++*/
#header {
  transition: ease-in-out 0.5s;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  border-bottom: 1px solid #fff;
}

.zdo_drawer_button.fixed .zdo_drawer_bar {
  background-color: #59493f;
}

.zdo_drawer_button.active .zdo_drawer_bar {
  background-color: #59493f;
}

.zdo_drawer_menu .zdo_drawer_button .zdo_drawer_nav .h_btn a {
  color: #fff !important;
}

.header.fixed {
  background: rgba(255, 255, 255, 0.8);
}
.header.fixed .up {
  display: none;
}
.header.fixed .down {
  display: block;
}
.header.fixed .header_inr .header_nav ul li a {
  color: #59493f;
}
.header.fixed .header_inr .header_nav ul .h_btn a {
  color: #fff;
}

.header .logo {
  transition: ease-in-out 0.5s;
}
.header .logo h1 {
  width: 90px;
}
.header .header_inr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  width: 100%;
  transition: ease-in-out 0.5s;
}
.header .down {
  display: none;
}

/*スマホ：・タブレット　ナビ*/
@media screen and (max-width: 1024px) {
  .header_nav {
    display: none;
  }
}
/*pc*/
@media screen and (min-width: 1025px) {
  .header .logo h1 {
    width: 182px;
  }
  .header .header_inr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 5.14%;
    width: 100%;
  }
  .header .header_inr .header_nav {
    letter-spacing: 0.2em;
  }
  .header .header_inr .header_nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header .header_inr .header_nav ul li {
    margin-right: 20px;
    font-size: 1.3rem;
  }
  .header .header_inr .header_nav ul li a {
    display: block;
    color: #fff;
  }
  .header .header_inr .header_nav ul li a:hover {
    transform: scale(1.2);
    /*                 color: $pt; */
  }
  .header .header_inr .header_nav ul li:last-child {
    margin-right: 0;
  }
  .header .header_inr .header_nav ul .h_btn {
    border: 1px solid #f19149;
    background: #f19149;
    border-radius: 22px;
    padding: 16px 0;
    text-align: center;
    width: 110px;
    max-width: 100%;
    transition: ease-in 0.3s;
    margin-right: 20px;
  }
  .header .header_inr .header_nav ul .h_btn a {
    display: block;
    color: #fff;
    line-height: 1;
    font-size: 1.3rem;
  }
  .header .header_inr .header_nav ul .h_btn:hover {
    background-color: #fff;
  }
  .header .header_inr .header_nav ul .h_btn:hover a {
    color: #f19149;
  }
  .header .header_inr .header_nav ul .h_btn.btn02 {
    background-color: #4a698c;
  }
  .header .header_inr .header_nav ul .h_btn.btn02 a {
    color: #fff;
  }
  .header .header_inr .header_nav ul .h_btn.btn02:hover {
    background-color: #fff;
  }
  .header .header_inr .header_nav ul .h_btn.btn02:hover a {
    color: #4a698c;
  }

  .zdo_drawer_menu {
    display: none;
  }

  .zdo_drawer_menu .zdo_drawer_button {
    display: none;
  }
}
@media screen and (min-width: 1400px) {
  .header .header_inr .header_nav ul li {
    margin-right: 40px;
    font-size: 1.6rem;
  }
  .header .header_inr .header_nav ul .h_btn {
    width: 150px;
    border-radius: 30px;
  }
}
/*
+++++++++++++++++++++++++++++++++++++++++
            見出し
++++++++++++++++++++++++++++++++++++++++++++
*/
.sec__titile {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.6;
  color: #59493f;
}
.sec__titile span {
  display: block;
  color: #f19149;
  font-size: 1.4rem;
  font-weight: normal;
}

@media screen and (min-width: 1024px) {
  .sec__titile {
    font-size: 3.2rem;
    font-weight: 500;
  }
  .sec__titile span {
    font-size: 1.6rem;
  }
}
/*
+++++++++++++++++++++++++++++++++++++++++
            下層タイトル
++++++++++++++++++++++++++++++++++++++++++++
*/
.page__header {
  height: 40vh;
  position: relative;
}
.page__header::after {
  content: "";
  display: block;
  background: url(../img/namisp_white.svg) repeat-x center/cover;
  margin: auto 0;
  height: 40px;
  width: 100%;
  background-size: 440px 40px;
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: 2;
  transform: translateY(1px);
}
.page__header h1 {
  max-width: 260px;
  position: absolute;
  top: 50%;
  left: 20px;
  font-size: 3.5rem;
  transform: translateY(-50%);
  /*     text-shadow: 0 0 25px #fff, 0 0 75px #fff, 0 0 20px #fff, 0 0 60px #fff;
  font-family: serif; */
}
.page__header .annotation {
  position: absolute;
  bottom: -30px;
  right: 20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #f19149;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  z-index: 10;
}
.page__header .annotation p {
  font-size: 1.8rem;
  text-align: center;
  color: #fff;
  font-weight: 600;
  line-height: 1.4;
}
.page__header .annotation p span {
  display: block;
  font-weight: normal;
  font-size: 1rem;
  padding-top: 4px;
}

.read__box {
  padding: 30px 0;
  text-align: center;
  display: inline-block;
}
.read__box p {
  text-align: left;
  color: #f19149;
  font-size: 1.8rem;
  font-weight: 600;
  padding-top: 20px;
}
.read__box p:first-child {
  padding-top: 0;
}

.big_title {
  font-size: 1.8rem;
  font-weight: 600;
}

.staff__title {
  border-top: 1px solid #59493f;
  border-bottom: 1px solid #59493f;
  display: inline-block;
  font-size: 1.8rem;
  padding: 10px 50px;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .page__header {
    height: 45vh;
  }
  .page__header h1 {
    max-width: 340px;
    left: 14.29%;
  }
  .page__header::after {
    content: "";
    display: block;
    background: url(../img/nami_white.svg) repeat-x center/cover;
    margin: auto 0;
    height: 60px;
    width: 100%;
    background-size: 1200px 60px;
    position: absolute;
    left: 0px;
    bottom: -1px;
    z-index: 2;
    transform: translateY(1px);
  }
  .page__header .annotation {
    right: 16%;
    width: 200px;
    height: 200px;
  }
  .page__header .annotation p {
    font-size: 2.6rem;
    font-weight: 500;
  }
  .page__header .annotation p span {
    font-size: 1.6rem;
  }

  .read__box {
    padding: 60px 0 50px;
  }
  .read__box p {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 500;
    padding-top: 40px;
    line-height: 1;
  }
  .read__box p:first-child {
    padding-top: 0;
  }

  .big_title {
    font-size: 2.4rem;
    font-weight: 500;
  }
}
/*
+++++++++++++++++++++++++++++++++++++++++
            ボタン
++++++++++++++++++++++++++++++++++++++++++++
*/
.btn__wrap {
  margin: 40px auto 0;
}
.btn__wrap .btn {
  color: #fff;
  background: #59493f;
  display: block;
  font-size: 1.4rem;
  border: 1px solid #59493f;
  width: 240px;
  max-width: 100%;
  height: 46px;
  line-height: 46px;
  border-radius: 24px;
  text-align: center;
  margin: 0 auto;
  cursor: pointer;
  transition: ease-in 0.3s;
}
.btn__wrap .btn:hover {
  background-color: #fff;
  color: #59493f;
}
.btn__wrap .btn.btn-w {
  color: #fff;
  border: 1px solid #fff;
}
.btn__wrap .btn.btn-w:hover {
  background-color: #fff;
  color: #4a698c;
}

.link_wrap {
  padding: 0 20px;
}
.link_wrap ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.link_wrap ul li {
  width: 48%;
  margin-top: 20px;
  cursor: pointer;
}
.link_wrap ul li a {
  display: block;
  color: #fff;
  border: 1px solid #59493f;
  background-color: #59493f;
  font-size: 1.4rem;
  border-radius: 20px;
  text-align: center;
  padding: 4px 0;
}
.link_wrap ul li a:hover {
  background-color: #fff;
  color: #59493f;
}

@media print, screen and (min-width: 1024px) {
  .btn__wrap {
    margin: 50px auto 0;
  }

  .link_wrap {
    max-width: 580px;
    margin: 0 auto 0;
    padding: 0;
  }
  .link_wrap ul {
    justify-content: center;
  }
  .link_wrap ul li {
    width: 40%;
    border-radius: 30px;
  }
  .link_wrap ul li:nth-child(odd) {
    margin: 20px 10px 0;
  }
  .link_wrap ul li a {
    font-size: 1.6rem;
  }
}
/*
+++++++++++++++++++++++++++++++++++++++++
            contact__bar
++++++++++++++++++++++++++++++++++++++++++++
*/
.contact__bar {
  padding: 40px 20px;
  background: #fff9f5;
  position: relative;
  margin-top: 80px;
}
.contact__bar .contact_img {
  position: absolute;
  right: -20%;
  top: -30px;
  transform: rotate(14deg);
  max-width: 530px;
  width: 70%;
}
.contact__bar .bar__inr .inr__left {
  max-width: 435px;
  margin: 0 auto;
}
.contact__bar .bar__inr .inr__left .sec__titile {
  text-align: center;
}
.contact__bar .bar__inr .inr__left p {
  padding-top: 30px;
}
.contact__bar .bar__inr .inr__left .contact_mini {
  font-size: 1.2rem;
  padding-top: 10px;
}
.contact__bar .bar__inr .inr__right {
  margin-top: 40px;
}
.contact__bar .bar__inr .inr__right .c__btn {
  border: 1px solid #59493f;
  border-radius: 40px;
  width: 380px;
  height: 86px;
  margin: 0 auto;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #59493f;
}
.contact__bar .bar__inr .inr__right .c__btn img {
  margin-right: 20px;
  width: 32px;
}
.contact__bar .bar__inr .inr__right .c__btn p {
  text-align: center;
  font-weight: 600;
  font-size: 2.2rem;
  line-height: 1.6;
}
.contact__bar .bar__inr .inr__right .c__btn p span {
  display: block;
  font-weight: normal;
  font-size: 1.2rem;
}
.contact__bar .bar__inr .inr__right .c__btn:last-child {
  margin-top: 40px;
}
.contact__bar .bar__inr .inr__right .c__btn:last-child p {
  font-size: 1.4rem;
}
.contact__bar .bar__inr .inr__right .c__btn:hover {
  background-color: #f19149;
  border-color: #f19149;
}

@media print, screen and (min-width: 1024px) {
  .contact__bar {
    padding: 100px 0;
    margin-top: 160px;
  }
  .contact__bar .contact_img {
    position: absolute;
    right: -8.29%;
    top: -30px;
    max-width: 530px;
  }
  .contact__bar .bar__inr {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .contact__bar .bar__inr .inr__left {
    max-width: 100%;
    margin: 0;
    margin-right: 50px;
  }
  .contact__bar .bar__inr .inr__left .sec__titile {
    text-align: left;
  }
  .contact__bar .bar__inr .inr__left p {
    line-height: 2.2;
    font-size: 1.6rem;
  }
  .contact__bar .bar__inr .inr__right {
    margin: 0;
  }
  .contact__bar .bar__inr .inr__right .c__btn p {
    font-size: 2.6rem;
    font-weight: 500;
  }
  .contact__bar .bar__inr .inr__right .c__btn:last-child {
    margin-top: 30px;
  }
  .contact__bar .bar__inr .inr__right .c__btn:last-child p {
    font-size: 1.6rem;
  }
}
/*
+++++++++++++++++++++++++++++++++++++++++
            footer
++++++++++++++++++++++++++++++++++++++++++++
*/
footer {
  padding: 40px 20px 0;
  background: url(../img/footer_bgsp.jpg) no-repeat center/cover;
}
footer .footer_logo {
  display: block;
  width: 200px;
  margin: 0 auto;
}
footer .fotter__nav {
  text-align: center;
}
footer .fotter__nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 1.4rem;
  text-align: left;
}
footer .fotter__nav ul li {
  width: 50%;
  text-align: center;
  margin-bottom: 10px;
}
footer .fotter__nav ul li a {
  color: #fff;
}
footer .fotter__nav ul li a:hover {
  color: #59493f;
}
footer .fotter__nav ul li:last-child {
  margin-bottom: 0;
}
footer .footer__adress {
  padding-top: 40px;
  text-align: center;
}
footer .footer__adress ul {
  padding-top: 20px;
  display: inline-block;
  text-align: left;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #fff;
}
footer .footer__adress ul a {
  color: #fff;
}
footer .footer__adress ul span {
  display: block;
}
footer .footer__copy {
  display: block;
  padding: 50px 0 20px;
  font-size: 1rem;
  text-align: center;
  letter-spacing: 0.05em;
  color: #fff;
}

@media print, screen and (min-width: 1024px) {
  footer {
    background: url(../img/footer_bg.jpg) no-repeat center/cover;
    padding: 80px 0 0;
  }
  footer .footer_logo {
    width: 220px;
  }
  footer .fotter__nav ul li {
    width: auto;
    margin-right: 40px;
  }
  footer .fotter__nav ul li:last-child {
    margin-right: 0;
  }
  footer .footer__adress ul span {
    display: inline-block;
    margin-left: 14px;
  }
}
/*
+++++++++++++++++++++++++++++++++++++++++
            テーブル
++++++++++++++++++++++++++++++++++++++++++++
*/
.table {
  font-size: 1.4rem;
  width: 100%;
  vertical-align: middle;
  font-family: "Noto Sans JP", sans-serif;
}
.table th {
  font-weight: normal;
  padding: 20px 20px;
  text-align: left;
  vertical-align: middle;
}
.table th span {
  display: block;
  font-size: 12px;
}
.table td {
  padding: 10px 20px 20px;
  text-align: left;
}

.tableshima {
  background-color: #fff;
  vertical-align: middle;
}
.tableshima tr:nth-child(odd) th,
.tableshima tr:nth-child(odd) td {
  background-color: #f7f6f5;
}
.tableshima th {
  vertical-align: middle;
  padding: 20px 20px 10px;
  font-weight: bold;
}
.tableshima td {
  vertical-align: middle;
  padding: 0 20px 20px;
}

@media screen and (max-width: 1023px) {
  .table th {
    display: block;
  }
  .table td {
    display: block;
  }
  .table td ul li {
    line-height: 2.2;
  }
  .table td ul li span {
    display: block;
    font-size: 12px;
  }

  .table__wrap {
    width: 100%;
    display: block;
    overflow-x: scroll;
    white-space: nowrap;
    display: none;
  }
  .table__wrap .sp_p {
    padding: 10px 0 20px;
    font-size: 1.4rem;
    font-weight: bold;
  }

  /*===========
  scrollbar
  ===========*/
  /* スクロールバーの幅と高さを設定する */
  .table__wrap::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }

  /* スクロールバーの形を設定する */
  .table__wrap::-webkit-scrollbar-thumb {
    border-radius: 0.25rem;
  }

  /* スクロールバーの色を設定する */
  .table__wrap::-webkit-scrollbar-thumb {
    --bg-opacity: 1;
    background-color: #f19149;
  }

  .tableshima {
    text-align: center;
    box-sizing: border-box;
  }
  .tableshima th {
    display: inline-block;
    width: 50%;
    padding: 20px;
    font-size: 1.3rem;
    text-align: center;
  }
  .tableshima td {
    display: inline-block;
    width: 50%;
    padding: 26px 20px 20px 10px;
    height: 80px;
    font-size: 1.3rem;
    text-align: center;
  }

  .tableshima.tablesp {
    margin-top: 30px;
  }
  .tableshima.tablesp th,
.tableshima.tablesp td {
    display: block;
    width: 100%;
    height: auto;
    text-align: left;
    padding: 10px 20px;
  }
  .tableshima.tablesp th {
    padding-top: 20px;
  }
  .tableshima.tablesp td {
    padding-bottom: 20px;
  }
}
@media print, screen and (min-width: 1024px) {
  .table {
    max-width: 800px;
    margin: 0 auto;
  }
  .table th {
    font-weight: normal;
    padding: 30px;
    text-align: center;
    vertical-align: middle;
    width: 30%;
  }
  .table th span {
    display: block;
    font-size: 12px;
  }
  .table td {
    padding: 30px 0;
    text-align: left;
    vertical-align: middle;
  }

  .tableshima.tablesp {
    display: none;
  }
  .tableshima.tablesp th,
.tableshima.tablesp td {
    display: block;
    width: 100%;
  }

  .tableshima th {
    text-align: center;
    padding: 20px 0;
  }
  .tableshima td {
    width: auto;
    text-align: center;
    line-height: 1.6;
    padding: 20px 0;
  }

  .table__wrap .sp_p {
    display: none;
  }
}
/*
+++++++++++++++++++++++++++++++++++++++++
            ページ トップボタン
++++++++++++++++++++++++++++++++++++++++++++
*/
/*リンクの形状*/
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #59493f;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  transition: all 0.3s;
  position: relative;
}
#page-top a:before {
  content: "";
  width: 14px;
  height: 14px;
  border: 0;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  position: absolute;
  top: 50%;
  left: 14px;
  margin-top: -4px;
  transform: rotate(-45deg);
}

#page-top a:hover {
  background: #f19149;
}
#page-top a:hover::before {
  border-color: #fff;
}

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

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

@-webkit-keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(200px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(200px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#page-top.DownMove {
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
}

@-webkit-keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(200px);
  }
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(200px);
  }
}
@media print, screen and (min-width: 1024px) {
  #page-top a {
    width: 72px;
    height: 72px;
    text-align: center;
  }
  #page-top a::before {
    left: 28px;
  }
}
/*
+++++++++++++++++++++++++++++++++++++++++
            背景付きリスト
++++++++++++++++++++++++++++++++++++++++++++
*/
.bg_list li {
  padding: 10px 0;
  text-align: center;
  font-size: 1.4rem;
  background-color: #f7f6f5;
}
.bg_list li:nth-child(even) {
  background-color: #fff;
}

@media print, screen and (min-width: 1024px) {
  .bg_list.list02 li {
    background-color: #fff;
  }
  .bg_list.list02 li:nth-child(even) {
    background-color: #f7f6f5;
  }

  .bg_list li {
    padding: 16px 0;
    font-size: 1.6rem;
  }
}
/*# sourceMappingURL=base.css.map */