@charset "UTF-8";
/* 機能とパーツごとに分けたscssファイルをcssファイルにコンパイル */
/* function
------------------------------------------------ */
/* setting
------------------------------------------------ */
/* スマホ：~519px
　 タブレット：520px~959px
　 パソコン：960px~ */
html {
  /* ルートのフォントサイズを10pxに設定 */
  font-size: 62.5%;
}

body {
  /* bodyの基本サイズを18pxに設定 */
  font-size: 1.65rem;
  font-family: "メイリオ", Meiryo, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #000;
  text-align: justify;
  line-height: 2;
}
@media screen and (max-width: 959px) {
  body {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 519px) {
  body {
    font-size: 1.3rem;
  }
}

.f-meiryo {
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
}

/* foundation
------------------------------------------------ */
/*!
 * ress.css • v4.0.0
 * MIT License
 * github.com/filipelinhares/ress
 */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  word-break: normal;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}

*, :after, :before {
  background-repeat: no-repeat;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

:after, :before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  padding: 0;
  margin: 0;
}

hr {
  overflow: visible;
  height: 0;
  color: inherit;
}

details, main {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden] {
  display: none;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

a {
  background-color: transparent;
}

a:active, a:hover {
  outline-width: 0;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
}

pre {
  font-size: 1em;
}

b, strong {
  font-weight: bolder;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit;
  text-indent: 0;
}

input {
  border-radius: 0;
}

[disabled] {
  cursor: default;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button, input, optgroup, select, textarea {
  font: inherit;
}

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[role=button], [type=button], [type=reset], [type=submit], button {
  cursor: pointer;
  color: inherit;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=reset], [type=submit], button, html [type=button] {
  -webkit-appearance: button;
}

button, input, select, textarea {
  background-color: transparent;
  border-style: none;
}

a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline-width: 0;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  white-space: normal;
  max-width: 100%;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  color: inherit;
  font: inherit;
}

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true] {
  cursor: default;
}

body {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #fff;
  /* 印刷禁止 */
}
@media screen and (max-width: 519px) {
  body {
    background-size: contain;
    background-repeat: repeat;
  }
}

@media screen and (max-width: 959px) {
  .drawer--open {
    overflow: hidden;
  }
}

a {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  color: inherit;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  word-break: break-all;
}
a:hover {
  text-decoration: none;
  opacity: 0.8;
}

button:hover {
  opacity: 0.8;
}

img {
  font-size: 0;
  vertical-align: bottom;
  max-width: 100%;
  /* PCの右クリック禁止 */
  /* SPの長押し禁止 */
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.br-pc {
  display: block;
}
@media screen and (max-width: 959px) {
  .br-pc {
    display: none;
  }
}

.br-tab {
  display: none;
}
@media screen and (max-width: 959px) {
  .br-tab {
    display: block;
  }
}

.br-sp {
  display: none;
}
@media screen and (max-width: 519px) {
  .br-sp {
    display: block;
  }
}

.nonbr-tab {
  display: block;
}
@media screen and (max-width: 959px) {
  .nonbr-tab {
    display: none;
  }
}

.nonbr-sp {
  display: block;
}
@media screen and (max-width: 519px) {
  .nonbr-sp {
    display: none;
  }
}

.link-disable {
  pointer-events: none;
  background-color: #aaa !important;
}

@media screen and (max-width: 519px) {
  .sptop {
    overflow: hidden;
  }
}

.space-sp {
  display: none;
}
@media screen and (max-width: 519px) {
  .space-sp {
    display: inline-block;
  }
}

.anchor {
  margin-top: -10rem;
  padding-top: 10rem;
}
@media screen and (max-width: 519px) {
  .anchor {
    margin-top: -2rem;
    padding-top: 2rem;
  }
}

/* utility
------------------------------------------------ */
/* layout
------------------------------------------------ */
.l-inner {
  margin: 0 auto;
  max-width: 1300px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1340px) {
  .l-inner {
    padding: 0 20px;
  }
}
/* component
------------------------------------------------ */
.c-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  background-color: #fff;
}

.c-header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2rem 3rem;
  width: 100%;
}
@media screen and (max-width: 519px) {
  .c-header__container {
    padding: 1.5rem 2rem;
  }
}

.c-header__logo {
  width: 27rem;
}
@media screen and (max-width: 959px) {
  .c-header__logo {
    margin-right: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .c-header__logo {
    width: 43vw;
  }
}

.c-header__grobal {
  margin: 0 5.5rem 0 auto;
}
@media screen and (max-width: 1322px) {
  .c-header__grobal {
    margin-right: 2rem;
  }
}
@media screen and (max-width: 1130px) {
  .c-header__grobal {
    display: none;
  }
}
.c-header__grobal ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}
.c-header__grobal ul li {
  font-size: 0.9em;
  letter-spacing: 0.3rem;
  line-height: 1;
  border-left: solid 1px #000;
}
@media screen and (max-width: 1322px) {
  .c-header__grobal ul li {
    letter-spacing: 0;
  }
}
.c-header__grobal ul li:last-child {
  border-right: solid 1px #000;
}
.c-header__grobal ul li a {
  padding: 0 1.5rem;
}
@media screen and (max-width: 1322px) {
  .c-header__grobal ul li a {
    padding: 0 1rem;
  }
}

.c-header__trans {
  margin: 0 3rem 0 0;
  width: 123.25px;
}
@media screen and (max-width: 1130px) {
  .c-header__trans {
    margin: 0 3rem 0 auto;
  }
}
@media screen and (max-width: 519px) {
  .c-header__trans {
    margin: 0 2rem 0 auto;
    width: 95.3px;
  }
  .c-header__trans .goog-te-gadget-icon {
    aspect-ratio: 1;
    width: 1.5rem;
    height: auto;
    background-size: auto 100%;
    background-position: right center !important;
  }
  .c-header__trans .VIpgJd-ZVi9od-xl07Ob-lTBxed {
    margin-left: 0;
    font-size: 1rem;
    font-weight: 500;
  }
}

.c-header__hamburger {
  position: relative;
  right: 0;
  z-index: 100;
  width: 5.5rem;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
@media screen and (max-width: 519px) {
  .c-header__hamburger {
    width: 3.5rem;
  }
}
.c-header__hamburger:hover {
  opacity: 0.9;
}

.c-header__hamburger-border {
  position: relative;
  width: 100%;
  height: 1px;
  background-color: #797878;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.c-header__hamburger-border--top {
  top: 0;
}

.c-header__hamburger-border--middle {
  margin: 10px auto;
}
@media screen and (max-width: 519px) {
  .c-header__hamburger-border--middle {
    margin: 6px auto;
  }
}

.c-header__hamburger-border--bottom {
  bottom: 0;
}

.c-header__hamburger--open {
  right: 40rem;
}
@media screen and (max-width: 959px) {
  .c-header__hamburger--open {
    right: 35rem;
  }
}
@media screen and (max-width: 519px) {
  .c-header__hamburger--open {
    right: 75vw;
  }
}
.c-header__hamburger--open .c-header__hamburger-border {
  background-color: white;
}
.c-header__hamburger--open .c-header__hamburger-border--top {
  top: 11px;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
@media screen and (max-width: 519px) {
  .c-header__hamburger--open .c-header__hamburger-border--top {
    top: 7px;
  }
}
.c-header__hamburger--open .c-header__hamburger-border--middle {
  opacity: 0;
}
.c-header__hamburger--open .c-header__hamburger-border--bottom {
  bottom: 11px;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}
@media screen and (max-width: 519px) {
  .c-header__hamburger--open .c-header__hamburger-border--bottom {
    bottom: 7px;
  }
}

.c-header__drawer-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background-color: #000;
  opacity: 0.5;
  z-index: 40;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.c-header__drawer-modal--open {
  display: block;
}

.c-header__drawer {
  position: fixed;
  top: 0;
  right: -40rem;
  z-index: 40;
  padding: 4rem 0.5rem 6rem 3rem;
  width: 40rem;
  max-width: 100%;
  max-height: 100vh;
  max-height: 100dvh;
  background-color: #f9f6f0;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  overflow: auto;
}
@media screen and (max-width: 959px) {
  .c-header__drawer {
    right: -35rem;
    width: 35rem;
  }
}
@media screen and (max-width: 519px) {
  .c-header__drawer {
    right: -75vw;
    padding: 3rem 0.5rem 4rem 2rem;
    width: 75vw;
    height: 100vh;
    height: 100dvh;
  }
}
.c-header__drawer::-webkit-scrollbar {
  width: 5px;
}
.c-header__drawer::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.1);
}
.c-header__drawer::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 30px;
}

.c-header__drawer--open {
  right: 0;
}

.c-header__drawer-menus {
  list-style: none;
}

.c-header__drawer-menu {
  border-bottom: dotted 1px #000;
}
.c-header__drawer-menu a {
  display: block;
  position: relative;
  padding: 0.4rem 0 0;
  font-size: 1.15em;
  font-weight: bold;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 519px) {
  .c-header__drawer-menu a {
    padding: 0.4rem 0;
  }
}
.c-header__drawer-menu a::before {
  content: "■";
  margin-right: 0.9rem;
  color: #7f7867;
}
@media screen and (max-width: 959px) {
  .c-header__drawer-menu a::before {
    margin-right: 0.6rem;
  }
}

.c-header__drawer-menu--maru a::before {
  content: "●";
}

.c-header__drawer-menu--sankaku a::before {
  content: "▶";
}

.c-head2 {
  margin-top: 3rem;
  padding-left: 2.5rem;
  padding-bottom: 0.7rem;
  width: 100%;
  color: #7f7867;
  font-style: italic;
  font-size: 2.1em;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 519px) {
  .c-head2 {
    padding-left: 2rem;
    padding-bottom: 0;
    font-size: 1.6em;
  }
}
.c-head2::before {
  content: "";
  display: inline-block;
  margin-right: 1rem;
  -webkit-transform: translateY(0.4rem);
          transform: translateY(0.4rem);
  aspect-ratio: 1;
  width: 3.2rem;
  height: auto;
  background-image: url(https://ssl.samidare.jp/~tukiyamaf/asahimachi/p/renewal/icon_apple.png);
  background-size: contain;
}
@media screen and (max-width: 519px) {
  .c-head2::before {
    -webkit-transform: translateY(0.2rem);
            transform: translateY(0.2rem);
    margin-right: 0.5rem;
    width: 2.2rem;
  }
}

.c-head2--jp {
  font-size: 1.9em;
  font-style: normal;
}
@media screen and (max-width: 519px) {
  .c-head2--jp {
    font-size: 1.6em;
  }
}
.c-head2--jp small {
  padding-left: 2rem;
  font-size: 0.5em;
}
@media screen and (max-width: 519px) {
  .c-head2--jp small {
    padding-left: 1rem;
  }
}

.c-head2--access {
  font-size: 2rem;
  font-style: normal;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 959px) {
  .c-head2--access {
    font-size: 2.5vw !important;
  }
}
@media screen and (max-width: 519px) {
  .c-head2--access {
    font-size: 4.5vw !important;
  }
}
.c-head2--access::before {
  margin-right: 0.5rem;
  width: 2.3rem;
}
@media screen and (max-width: 959px) {
  .c-head2--access::before {
    width: 2.9vw !important;
  }
}
@media screen and (max-width: 519px) {
  .c-head2--access::before {
    width: 4.9vw !important;
  }
}

.c-footer {
  margin-top: 10rem;
}
@media screen and (max-width: 519px) {
  .c-footer {
    margin-top: 5rem;
  }
}

.c-footer__container {
  position: relative;
  margin-top: 5.5rem;
  padding: 19rem 6.5rem 9rem;
  width: 100%;
  background-image: url(https://ssl.samidare.jp/~tukiyamaf/asahimachi/p/renewal/footer_bg.png);
  background-size: cover;
  background-position: center top;
}
@media screen and (max-width: 959px) {
  .c-footer__container {
    padding: 17rem 4rem 5rem;
    background-position: 95% top;
  }
}
@media screen and (max-width: 519px) {
  .c-footer__container {
    margin-top: 1rem;
    padding: 4.5rem 1.5rem 3rem;
    background-image: url(https://ssl.samidare.jp/~tukiyamaf/asahimachi/p/renewal/footer_bg_sp.png);
    background-position: center;
  }
}

.c-footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  line-height: 1.7;
}
@media screen and (max-width: 519px) {
  .c-footer__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.c-footer__logo {
  margin-right: 2.5rem;
  width: 24rem;
}
@media screen and (max-width: 959px) {
  .c-footer__logo {
    width: 20%;
  }
}
@media screen and (max-width: 519px) {
  .c-footer__logo {
    margin-top: 1.5rem;
    padding-left: 1.5rem;
    width: 29%;
  }
}

.c-footer__credits {
  display: inline-block;
  width: 55rem;
  color: white;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 959px) {
  .c-footer__credits {
    width: calc(80% - 2.5rem);
  }
}
@media screen and (max-width: 519px) {
  .c-footer__credits {
    width: 92%;
    letter-spacing: 0;
  }
}

.c-footer__name {
  padding-left: 2.5rem;
  font-size: 1.8em;
  letter-spacing: 0.5rem;
  border-bottom: dashed 1px white;
}
@media screen and (max-width: 519px) {
  .c-footer__name {
    padding-left: 1.5rem;
    padding-bottom: 0.5rem;
    font-size: 1.3em;
    letter-spacing: 0.3rem;
  }
}

.c-footer__address {
  padding: 2rem 0 0 2.5rem;
}
@media screen and (max-width: 519px) {
  .c-footer__address {
    padding: 1rem 0 0 1.5rem;
  }
}

.c-footer__copy {
  margin-top: 3.7rem;
  padding-left: 2.5rem;
  font-size: 0.83em;
}
@media screen and (max-width: 519px) {
  .c-footer__copy {
    margin-top: 2rem;
    padding-left: 1.5rem;
    font-size: 1.1rem;
  }
}

.c-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.3rem;
}
@media screen and (max-width: 519px) {
  .c-sns {
    gap: 1.5rem;
  }
}

.c-sns__icon {
  width: 5.5rem;
}
@media screen and (max-width: 959px) {
  .c-sns__icon {
    width: 5rem;
  }
}
@media screen and (max-width: 519px) {
  .c-sns__icon {
    width: 3.5rem;
  }
}

.c-corner-head {
  padding: 0.3rem 1rem 0;
  width: 100%;
  color: white;
  text-align: center;
  letter-spacing: 0.4rem;
  background-color: #2e1e1a;
}
@media screen and (max-width: 519px) {
  .c-corner-head {
    padding: 0.3rem 1rem;
  }
}
.c-corner-head h1, .c-corner-head div {
  font-size: 2em;
  font-weight: 500;
}
@media screen and (max-width: 519px) {
  .c-corner-head h1, .c-corner-head div {
    font-size: 1.5em;
  }
}

@media screen and (max-width: 519px) {
  .c-db__title {
    margin-top: 1.5rem;
  }
}

.c-db__slides {
  margin-bottom: 0 !important;
  aspect-ratio: 640/426;
  width: 100%;
  height: auto;
  max-height: calc(100vh - 10rem);
}
@media screen and (max-width: 519px) {
  .c-db__slides {
    margin-top: 1rem;
  }
}
.c-db__slides .slick-list {
  height: 100%;
}
@media screen and (max-width: 519px) {
  .c-db__slides .slick-list {
    height: auto;
  }
}
.c-db__slides .slick-track {
  height: 100%;
}
@media screen and (max-width: 519px) {
  .c-db__slides .slick-track {
    height: auto;
  }
}
.c-db__slides img {
  aspect-ratio: 640/426;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.c-db__slides .slick-dots {
  bottom: 6rem;
}
@media screen and (max-width: 959px) {
  .c-db__slides .slick-dots {
    bottom: 3rem;
  }
}
@media screen and (max-width: 519px) {
  .c-db__slides .slick-dots {
    bottom: 1rem;
  }
}
.c-db__slides .slick-dots li {
  margin: 0 1.5rem;
  aspect-ratio: 1;
  width: 2.2rem;
  height: auto;
  background-color: #fff;
  border-radius: 50%;
}
@media screen and (max-width: 959px) {
  .c-db__slides .slick-dots li {
    margin: 0 1rem;
    width: 1.8rem;
  }
}
@media screen and (max-width: 519px) {
  .c-db__slides .slick-dots li {
    margin: 0 0.7rem;
    width: 1.5rem;
  }
}
.c-db__slides .slick-dots li button {
  padding: 0;
  width: 100%;
  height: 100%;
}
.c-db__slides .slick-dots li button::before {
  display: none;
}
.c-db__slides .slick-dots li.slick-active {
  background-color: #db3215;
}

.c-db__info1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 4rem;
}
@media screen and (max-width: 959px) {
  .c-db__info1 {
    gap: 3rem;
    margin-top: 2rem;
  }
}

.c-db__outline {
  width: calc(65% - 1.5rem);
}
@media screen and (max-width: 959px) {
  .c-db__outline {
    width: 100%;
  }
}
.c-db__outline table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1em;
}
.c-db__outline table th, .c-db__outline table td {
  padding: 0.2rem 0.3rem 0;
  font-size: 1.15em;
  font-weight: bold;
  text-align: justify;
  vertical-align: top;
  border-bottom: dashed 0.7px #000;
}
@media screen and (max-width: 519px) {
  .c-db__outline table th, .c-db__outline table td {
    padding: 0.7rem 0.3rem 0.6rem;
    font-size: 1.1em;
  }
}
.c-db__outline table th a, .c-db__outline table td a {
  text-decoration: underline;
}
.c-db__outline table th {
  min-width: 17rem;
}
@media screen and (max-width: 519px) {
  .c-db__outline table th {
    min-width: 12rem;
  }
}
.c-db__outline table th::before {
  content: "■";
  margin-right: 0.5rem;
}

.c-db__map {
  width: 35%;
}
@media screen and (max-width: 959px) {
  .c-db__map {
    width: 100%;
  }
}
.c-db__map iframe {
  aspect-ratio: 4/3;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 959px) {
  .c-db__map iframe {
    aspect-ratio: 1.618;
  }
}
@media screen and (max-width: 519px) {
  .c-db__map iframe {
    aspect-ratio: 1;
  }
}

.c-db__info2 {
  margin-top: 5rem;
  padding: 0 2rem;
}
@media screen and (max-width: 959px) {
  .c-db__info2 {
    padding: 0;
  }
}
@media screen and (max-width: 519px) {
  .c-db__info2 {
    margin-top: 4rem;
  }
}

.c-db__read {
  font-weight: bold;
  font-size: 1.2em;
}
.c-db__content {
  margin-top: 5rem;
}
@media screen and (max-width: 959px) {
  .c-db__content {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 519px) {
  .c-db__content {
    margin-top: 3rem;
  }
}

.c-db__btn {
  display: block;
  margin: 7rem auto 0;
  padding: 1.5rem;
  width: 40rem;
  max-width: 100%;
  color: white;
  font-size: 1.25em;
  text-align: center;
  background-color: #7f7867;
  border-radius: 5rem;
}
@media screen and (max-width: 959px) {
  .c-db__btn {
    width: 35rem;
    font-size: 1.2em;
  }
}
@media screen and (max-width: 519px) {
  .c-db__btn {
    margin-top: 5rem;
    padding: 1rem;
    width: 30rem;
  }
}

.c-corner-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4rem;
  margin-top: 3rem;
}
@media screen and (max-width: 959px) {
  .c-corner-menu {
    gap: 3rem;
  }
}
@media screen and (max-width: 519px) {
  .c-corner-menu {
    gap: 0rem 2rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 2rem;
    padding: 0 4rem;
  }
}

.c-corner-menu--access {
  padding: 0 2rem;
  gap: 2vw;
}
@media screen and (max-width: 959px) {
  .c-corner-menu--access {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0rem 4vw;
  }
}

.c-corner-menu__head {
  margin: 0;
  padding: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-weight: 600;
}
@media screen and (max-width: 959px) {
  .c-corner-menu__head {
    font-size: 3.3vw;
  }
}
@media screen and (max-width: 519px) {
  .c-corner-menu__head {
    width: calc(50% - 1rem);
    font-size: 4.8vw;
  }
}
.c-corner-menu__head:hover {
  color: #db3215;
  opacity: 1;
}
@media screen and (max-width: 959px) {
  .c-corner-menu__head::before {
    width: 4vw;
  }
}
@media screen and (max-width: 519px) {
  .c-corner-menu__head::before {
    width: 5.7vw;
  }
}

.c-corner-menu__head--current {
  color: #db3215;
}

.c-page {
  width: 100%;
}

.c-page__container {
  margin-top: 2rem;
  padding: 5rem;
  border: solid 1px #2e1e1a;
}
@media screen and (max-width: 959px) {
  .c-page__container {
    padding: 3rem;
  }
}
@media screen and (max-width: 519px) {
  .c-page__container {
    padding: 3rem 2rem;
  }
}

.c-arrow::before {
  content: "→";
  margin-right: 0.5rem;
  color: #db3215;
}

.c-means {
  margin: 0 auto;
  width: 100%;
}

.c-means__head01 {
  padding: 0 0 0.3rem 5.5rem;
  line-height: 1.1;
  background-image: url(https://ssl.samidare.jp/~tukiyamaf/asahimachi/c/asahimachi/images/asahi_access_title01.gif);
  background-size: auto 100%;
  background-position: bottom left;
}
@media screen and (max-width: 519px) {
  .c-means__head01 {
    padding-left: 4.5rem;
  }
}

.c-means__head02 {
  margin-top: 5rem;
  padding: 0 0 0.3rem 5.5rem;
  line-height: 1.1;
  background-image: url(https://ssl.samidare.jp/~tukiyamaf/asahimachi/c/asahimachi/images/asahi_access_title01.gif);
  background-size: auto 100%;
  background-position: bottom left;
}
@media screen and (max-width: 519px) {
  .c-means__head02 {
    padding-left: 3.5rem;
  }
}

.c-means__2col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 959px) {
  .c-means__2col {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .c-means__2col {
    gap: 0;
  }
}

.c-means__map {
  margin-top: 3rem;
}
.c-means__map img {
  width: 100%;
}

.c-means__section {
  margin-top: -6rem;
  padding-top: 6rem;
}
@media screen and (max-width: 519px) {
  .c-means__section {
    margin-top: -4rem;
    padding-top: 4rem;
  }
}

.c-means__root {
  margin-top: 3rem;
}

.c-means__root-map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  margin-top: 2rem;
}
@media screen and (max-width: 959px) {
  .c-means__root-map {
    gap: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .c-means__root-map {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.c-means__root-map-wrap {
  width: calc(50% - 2rem);
}
@media screen and (max-width: 959px) {
  .c-means__root-map-wrap {
    width: calc(50% - 1rem);
  }
}
@media screen and (max-width: 519px) {
  .c-means__root-map-wrap {
    width: 100%;
  }
}
.c-means__root-map-wrap iframe {
  aspect-ratio: 60/45;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 519px) {
  .c-means__root-map-wrap iframe {
    aspect-ratio: 1.1;
  }
}

.c-means__root-spot {
  margin-top: 3rem;
}
.c-means__root-spot h4 {
  text-align: center;
}

.c-means__root-spots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
  margin-top: 1rem;
}
@media screen and (max-width: 959px) {
  .c-means__root-spots {
    gap: 1rem;
  }
}
@media screen and (max-width: 519px) {
  .c-means__root-spots {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.c-means__root-spots dl {
  padding: 3rem;
  width: calc(33.333% - 2rem);
  font-size: 0.9em;
  background-color: #fcfbe0;
}
@media screen and (max-width: 959px) {
  .c-means__root-spots dl {
    padding: 2rem;
    width: calc(33.333% - 0.6666666667rem);
  }
}
@media screen and (max-width: 519px) {
  .c-means__root-spots dl {
    width: 100%;
    font-size: 1em;
  }
}
.c-means__root-spots dt {
  font-weight: 600;
}
.c-means__root-spots dd {
  margin-top: 1rem;
}
.c-means__root-spots dd img {
  aspect-ratio: 1.4;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/* project
------------------------------------------------ */
.p-top-mv {
  position: relative;
  width: 100%;
}

.p-top-mv__slides {
  margin-bottom: 0 !important;
  padding-bottom: 4rem;
  aspect-ratio: 206/106;
  width: 100%;
  height: 100%;
  max-height: calc(100% + 4rem);
  height: auto;
  max-height: 740px;
}
@media screen and (max-width: 519px) {
  .p-top-mv__slides {
    padding-bottom: 0;
    height: 70vh;
  }
}
.p-top-mv__slides .slick-list {
  height: 100%;
}
.p-top-mv__slides .slick-track {
  height: 100%;
}
.p-top-mv__slides img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
}
.p-top-mv__slides .slick-dots {
  bottom: 0;
}
.p-top-mv__slides .slick-dots li {
  margin: 0 0.6rem;
  width: 7.5rem;
  height: 0.25rem;
  background-color: #bfc0c0;
}
@media screen and (max-width: 959px) {
  .p-top-mv__slides .slick-dots li {
    width: 5rem;
  }
}
.p-top-mv__slides .slick-dots li button {
  padding: 0;
  width: 100%;
  height: 100%;
}
.p-top-mv__slides .slick-dots li button::before {
  display: none;
}
.p-top-mv__slides .slick-dots li.slick-active {
  background-color: #db3215;
}

.p-top-mv__slide {
  position: relative;
}

a.p-top-mv__slide:hover img {
  opacity: 0.8;
}

.p-top-mv__title {
  position: absolute;
  top: 45%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  color: white;
  font-family: YuKyo-Medium, "BIZ UDMincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: 9.5rem;
  letter-spacing: 1rem;
  -webkit-filter: drop-shadow(7px 7px 5px rgba(0, 0, 0, 0.75));
          filter: drop-shadow(7px 7px 5px rgba(0, 0, 0, 0.75));
}
@media screen and (max-width: 959px) {
  .p-top-mv__title {
    font-size: 10vw;
  }
}
@media screen and (max-width: 519px) {
  .p-top-mv__title {
    top: 33%;
    font-size: 14vw;
    letter-spacing: 0.5rem;
  }
}

.p-top-mv__usahi {
  position: absolute;
  bottom: -1.5rem;
  right: 3rem;
  width: 17vw;
  max-width: 24rem;
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 519px) {
  .p-top-mv__usahi {
    bottom: 0.7rem;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-53%);
            transform: translateX(-53%);
    width: 36vw;
  }
}
.p-top-mv__usahi div {
  margin: 1rem auto 0 4.3rem;
}
@media screen and (max-width: 959px) {
  .p-top-mv__usahi div {
    margin-left: 2.5rem;
  }
}
@media screen and (max-width: 519px) {
  .p-top-mv__usahi div {
    display: none;
  }
}

.p-top-mv__topics {
  position: absolute;
  bottom: -5.2rem;
  right: 6.5rem;
  padding: 0.2rem 1.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 0.2rem;
  border: solid 1px #000;
  border-radius: 3rem;
}
@media screen and (max-width: 1400px) {
  .p-top-mv__topics {
    right: 4.5vw;
  }
}
@media screen and (max-width: 959px) {
  .p-top-mv__topics {
    right: 2.5vw;
  }
}
@media screen and (max-width: 519px) {
  .p-top-mv__topics {
    bottom: -3.6rem;
    right: 2rem;
    padding: 0rem 1rem;
  }
}

.p-instagram {
  margin-top: 1.5rem;
}
@media screen and (max-width: 519px) {
  .p-instagram {
    margin-top: 1rem;
  }
}

.p-instagram__test {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 959px) {
  .p-instagram__test {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.p-instagram__test img {
  width: 16.666%;
}
@media screen and (max-width: 959px) {
  .p-instagram__test img {
    width: 33.333%;
  }
}

.p-symbol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 3.5rem;
}
@media screen and (max-width: 959px) {
  .p-symbol {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 3rem;
  }
}
@media screen and (max-width: 519px) {
  .p-symbol {
    gap: 2rem;
  }
}
.p-symbol:first-child {
  margin-top: 0;
}

.p-symbol__img {
  width: 38%;
}
@media screen and (max-width: 519px) {
  .p-symbol__img {
    width: 100%;
  }
}

.p-symbol__content {
  width: calc(62% - 8rem);
}
@media screen and (max-width: 959px) {
  .p-symbol__content {
    width: calc(62% - 3rem);
  }
}
@media screen and (max-width: 519px) {
  .p-symbol__content {
    width: 100%;
  }
}

.p-symbol__title {
  font-weight: 500;
  font-size: 1.8em;
}

.p-symbol__text {
  margin-top: 2.2rem;
}
@media screen and (max-width: 519px) {
  .p-symbol__text {
    margin-top: 1rem;
  }
}

.p-nature {
  margin-top: 7rem;
}
@media screen and (max-width: 519px) {
  .p-nature {
    margin-top: 5rem;
  }
}
.p-nature:first-child {
  margin-top: 0;
}

.p-nature__title {
  font-weight: 500;
  font-size: 1.8em;
}

.p-nature__info p {
  margin-top: 2.5rem;
}
@media screen and (max-width: 959px) {
  .p-nature__info p {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .p-nature__info p {
    margin-top: 1.5rem;
  }
}

.p-nature__image {
  margin-top: 4rem;
}
@media screen and (max-width: 519px) {
  .p-nature__image {
    margin-top: 2rem;
  }
}
.p-nature__image img {
  width: 100%;
}

.p-season__intro {
  padding-bottom: 3rem;
}
@media screen and (max-width: 959px) {
  .p-season__intro {
    padding-bottom: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .p-season__intro {
    padding-bottom: 0;
  }
}

.p-season__container {
  margin-top: 1rem;
}
@media screen and (max-width: 959px) {
  .p-season__container {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .p-season__container {
    margin-top: 3rem;
  }
}

.p-season__title {
  font-weight: 500;
  font-size: 2.2em;
}
@media screen and (max-width: 959px) {
  .p-season__title {
    font-size: 2em;
  }
}
.p-season__image {
  margin-top: 2rem;
}
@media screen and (max-width: 959px) {
  .p-season__image {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 519px) {
  .p-season__image {
    margin-top: 2rem;
  }
}
.p-season__image img {
  width: 100%;
}

.p-season__events {
  margin-top: 3rem;
  font-size: 1.3em;
  text-align: right;
}
@media screen and (max-width: 519px) {
  .p-season__events {
    text-align: justify;
  }
}
@media screen and (max-width: 519px) {
  .p-season__events span {
    display: block;
  }
}
.p-season__events a {
  margin-left: 2rem;
}
@media screen and (max-width: 959px) {
  .p-season__events a {
    margin-left: 1rem;
  }
}
@media screen and (max-width: 519px) {
  .p-season__events a {
    display: block;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
.p-season__events a::before {
  content: "→";
  margin-right: 0.5rem;
  color: #db3215;
}

.p-access__container {
  margin-top: 3rem;
}
@media screen and (max-width: 519px) {
  .p-access__container {
    margin-top: 4rem;
  }
}
.p-access__container:first-child {
  margin-top: 0;
}

.p-access__title {
  font-weight: 500;
  font-size: 1.8em;
}

.p-access__position {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5rem;
}
@media screen and (max-width: 959px) {
  .p-access__position {
    gap: 3rem;
  }
}
@media screen and (max-width: 519px) {
  .p-access__position {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.p-access__content {
  width: 60%;
}
@media screen and (max-width: 519px) {
  .p-access__content {
    width: 100%;
  }
}

.p-access__text {
  margin-top: 1.5rem;
}

.p-access__image {
  width: calc(40% - 5rem);
}
@media screen and (max-width: 959px) {
  .p-access__image {
    width: calc(40% - 3rem);
  }
}
@media screen and (max-width: 519px) {
  .p-access__image {
    width: 100%;
  }
}

.p-access__way {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
  list-style: none;
}
@media screen and (max-width: 519px) {
  .p-access__way {
    gap: 1rem 2rem;
    margin-top: 1rem;
  }
}

.p-access__map {
  margin-top: 5rem;
}
@media screen and (max-width: 959px) {
  .p-access__map {
    margin-top: 3rem;
  }
}
.p-access__map iframe {
  aspect-ratio: 2;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 959px) {
  .p-access__map iframe {
    aspect-ratio: 1.618;
  }
}
@media screen and (max-width: 519px) {
  .p-access__map iframe {
    aspect-ratio: 1;
  }
}

.p-faq__container {
  margin-top: 2.5rem;
  font-size: 1.2em;
}
@media screen and (max-width: 519px) {
  .p-faq__container {
    font-size: 1.1em;
  }
}

.p-faq__wrapper {
  margin-top: 0.3rem;
  padding: 1.5rem 2rem 1.5rem 2.5rem;
}
@media screen and (max-width: 959px) {
  .p-faq__wrapper {
    padding: 1.5rem;
  }
}
@media screen and (max-width: 519px) {
  .p-faq__wrapper {
    padding: 1.5rem 1rem;
  }
}
.p-faq__wrapper:first-of-type {
  margin-top: 0;
}

.p-faq__q {
  position: relative;
  display: block;
  padding-left: 7rem;
  padding-right: 6rem;
  cursor: pointer;
}
@media screen and (max-width: 959px) {
  .p-faq__q {
    padding-left: 6rem;
  }
}
@media screen and (max-width: 519px) {
  .p-faq__q {
    padding-left: 4.5rem;
    padding-right: 4rem;
  }
}
.p-faq__q:hover {
  opacity: 0.8;
}
.p-faq__q::before {
  content: "";
  position: absolute;
  top: -0.7rem;
  left: 0;
  display: inline-block;
  vertical-align: bottom;
  margin-right: 2rem;
  aspect-ratio: 81/84;
  width: 5rem;
  height: auto;
  background-image: url(https://ssl.samidare.jp/~tukiyamaf/asahimachi/p/renewal/icon_question.jpg);
  background-size: contain;
}
@media screen and (max-width: 959px) {
  .p-faq__q::before {
    width: 4.5rem;
  }
}
@media screen and (max-width: 519px) {
  .p-faq__q::before {
    width: 3.5rem;
  }
}
.p-faq__q::after {
  content: "+";
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  -ms-flex-line-pack: center;
      align-content: center;
  color: white;
  aspect-ratio: 1;
  width: 5rem;
  height: auto;
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  background-color: #9b9b9b;
}
@media screen and (max-width: 959px) {
  .p-faq__q::after {
    width: 4rem;
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 519px) {
  .p-faq__q::after {
    width: 3rem;
    font-size: 2.2rem;
  }
}

.p-faq__q--open::after {
  content: "ー";
}

.p-faq__wrap {
  display: grid;
  grid-template-rows: 0fr;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.p-faq__wrap--open {
  grid-template-rows: 1fr;
}

.p-faq__wrap-wrap {
  overflow: hidden;
}

.p-faq__a {
  position: relative;
  margin-top: 1rem;
  padding: 2rem 6rem 0 7rem;
}
@media screen and (max-width: 959px) {
  .p-faq__a {
    padding-left: 6rem;
  }
}
@media screen and (max-width: 519px) {
  .p-faq__a {
    padding: 1.3rem 1rem 0 4.5rem;
  }
}
.p-faq__a::before {
  content: "";
  position: absolute;
  top: 0.8rem;
  left: 0;
  display: inline-block;
  vertical-align: bottom;
  margin-right: 2rem;
  aspect-ratio: 81/84;
  width: 5rem;
  height: auto;
  background-image: url(https://ssl.samidare.jp/~tukiyamaf/asahimachi/p/renewal/icon_answer.jpg);
  background-size: contain;
}
@media screen and (max-width: 959px) {
  .p-faq__a::before {
    width: 4.5rem;
  }
}
@media screen and (max-width: 519px) {
  .p-faq__a::before {
    width: 3.5rem;
  }
}
.p-faq__a a {
  color: #3ac6ff;
  text-decoration: underline;
}

.p-link__container {
  margin-top: 2.5rem;
  font-size: 1.2em;
}
.p-link__sepa {
  margin-top: 5rem;
  font-size: 1.2em;
}

.p-link__sepa--mt0 {
  margin-top: 0;
}

.p-link__item {
  position: relative;
  display: block;
  margin-top: 3.5rem;
  padding: 0.3rem 6rem 0 7rem;
  cursor: pointer;
}
@media screen and (max-width: 959px) {
  .p-link__item {
    padding-left: 6rem;
  }
}
@media screen and (max-width: 519px) {
  .p-link__item {
    margin-top: 2.5rem;
    padding: 0 4rem 0 4.5rem;
  }
}
.p-link__item::before {
  content: "";
  position: absolute;
  top: -0.7rem;
  left: 0;
  display: inline-block;
  vertical-align: bottom;
  aspect-ratio: 81/84;
  width: 5rem;
  height: auto;
  background-image: url(https://ssl.samidare.jp/~tukiyamaf/asahimachi/p/renewal/icon_apple_big.png);
  background-size: contain;
}
@media screen and (max-width: 959px) {
  .p-link__item::before {
    width: 4.5rem;
  }
}
@media screen and (max-width: 519px) {
  .p-link__item::before {
    top: -0.4rem;
    width: 3.3rem;
  }
}
.p-link__item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  -ms-flex-line-pack: center;
      align-content: center;
  color: white;
  aspect-ratio: 1;
  width: 5rem;
  height: auto;
  background-image: url(https://ssl.samidare.jp/~tukiyamaf/asahimachi/p/renewal/icon_arrow.png);
  background-size: contain;
}
@media screen and (max-width: 959px) {
  .p-link__item::after {
    width: 4rem;
  }
}
@media screen and (max-width: 519px) {
  .p-link__item::after {
    width: 3rem;
  }
}
.p-link__item:first-of-type {
  margin-top: 2rem;
}
.p-link__item small {
  padding-left: 1rem;
}

/* external
------------------------------------------------ */
/* h1
----------------------------------- */
#page1 > h1 {
  font-size: 0;
}

/* ページ
----------------------------------- */
/* コンテンツ
----------------------------------- */
#content {
  margin-top: 10rem;
}
@media screen and (max-width: 519px) {
  #content {
    margin-top: 17.4vw;
  }
}

/* メイン
----------------------------------- */
/* footer
----------------------------------- */
/* toppage
----------------------------------- */
/* free
----------------------------------- */
.free {
  width: 100%;
}

/* image_スライド
----------------------------------- */
/* list
----------------------------------- */
.list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
.list h2 {
  margin-top: 3rem;
  padding-left: 2.5rem;
  padding-bottom: 0.7rem;
  width: 100%;
  color: #7f7867;
  font-style: italic;
  font-size: 2.1em;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 519px) {
  .list h2 {
    margin-top: 1.5rem;
    padding-left: 2rem;
    font-size: 1.6em;
  }
}
.list h2::before {
  content: "";
  display: inline-block;
  margin-right: 1rem;
  -webkit-transform: translateY(0.4rem);
          transform: translateY(0.4rem);
  aspect-ratio: 1;
  width: 3.2rem;
  height: auto;
  background-image: url(https://ssl.samidare.jp/~tukiyamaf/asahimachi/p/renewal/icon_apple.png);
  background-size: contain;
}
@media screen and (max-width: 519px) {
  .list h2::before {
    -webkit-transform: translateY(0.2rem);
            transform: translateY(0.2rem);
    margin-right: 0.5rem;
    width: 2.2rem;
  }
}
.list .kiji_contents {
  position: relative;
  margin: 1rem 0.3rem 0 0;
  width: calc(33.333% - 0.2rem);
}
@media screen and (max-width: 959px) {
  .list .kiji_contents {
    margin: 0.3rem 0.3rem 0 0;
    width: calc(50% - 0.15rem);
  }
}
.list .kiji_contents:nth-of-type(3n) {
  margin-right: 0;
}
@media screen and (max-width: 959px) {
  .list .kiji_contents:nth-of-type(3n) {
    margin-right: 0.3rem;
  }
}
@media screen and (max-width: 959px) {
  .list .kiji_contents:nth-of-type(2n) {
    margin-right: 0;
  }
}
.list .kiji_contents .kiji_image table, .list .kiji_contents .kiji_image tbody, .list .kiji_contents .kiji_image tr, .list .kiji_contents .kiji_image td {
  display: block;
}
.list .kiji_contents .kiji_image table a, .list .kiji_contents .kiji_image tbody a, .list .kiji_contents .kiji_image tr a, .list .kiji_contents .kiji_image td a {
  display: block;
}
.list .kiji_contents .kiji_image img {
  aspect-ratio: 167/113;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.list .kiji_contents .kiji_body {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1.5rem 0 1.2rem;
  width: 100%;
  background-color: rgba(46, 30, 26, 0.64);
}
@media screen and (max-width: 519px) {
  .list .kiji_contents .kiji_body {
    padding: 0.9rem 0 0.7rem;
  }
}
.list .kiji_contents .kiji_body .kiji_date {
  display: none;
}
.list .kiji_contents .kiji_body h3 {
  margin: 0 auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  text-align: center;
  color: white;
  font-weight: 500;
  font-size: 1.3em;
  line-height: 1.3;
}
@media screen and (max-width: 519px) {
  .list .kiji_contents .kiji_body h3 {
    font-size: 1.1em;
  }
}
.list .kiji_contents .kiji_body p {
  display: none;
}
.list .links {
  display: none;
}

/* list（トップページのトピックス）、トピックス一覧
----------------------------------- */
#toppage .list,
.parts51.list {
  margin: 0 auto;
  max-width: 130rem;
}
@media screen and (max-width: 1340px) {
  #toppage .list,
  .parts51.list {
    width: calc(100% - 4rem);
  }
}
@media screen and (max-width: 959px) {
  #toppage .list,
  .parts51.list {
    padding: 0 0.5rem;
  }
}
@media screen and (max-width: 519px) {
  #toppage .list,
  .parts51.list {
    padding: 0;
  }
}
#toppage .list h2,
.parts51.list h2 {
  margin-top: 0;
}
@media screen and (max-width: 959px) {
  #toppage .list h2,
  .parts51.list h2 {
    padding: 0;
  }
}
#toppage .list .kiji_contents,
.parts51.list .kiji_contents {
  margin: 3rem 3rem 0 0;
  width: calc(25% - 2.25rem);
}
@media screen and (max-width: 959px) {
  #toppage .list .kiji_contents,
  .parts51.list .kiji_contents {
    width: calc(50% - 1.5rem);
  }
}
@media screen and (max-width: 519px) {
  #toppage .list .kiji_contents,
  .parts51.list .kiji_contents {
    margin: 2rem 2rem 0 0;
    width: calc(50% - 1rem);
  }
}
@media screen and (max-width: 959px) {
  #toppage .list .kiji_contents:nth-of-type(2n),
  .parts51.list .kiji_contents:nth-of-type(2n) {
    margin-right: 0;
  }
}
#toppage .list .kiji_contents:nth-of-type(4n),
.parts51.list .kiji_contents:nth-of-type(4n) {
  margin-right: 0;
}
#toppage .list .kiji_contents .kiji_image img,
.parts51.list .kiji_contents .kiji_image img {
  aspect-ratio: 1;
  border-radius: 50%;
}
#toppage .list .kiji_contents .kiji_body,
.parts51.list .kiji_contents .kiji_body {
  position: initial;
  padding: 2.5rem 1.1rem 0;
  font-size: 0.9em;
  background-color: transparent;
}
@media screen and (max-width: 519px) {
  #toppage .list .kiji_contents .kiji_body,
  .parts51.list .kiji_contents .kiji_body {
    padding: 1rem 0.7rem 0;
  }
}
#toppage .list .kiji_contents .kiji_body .kiji_date,
.parts51.list .kiji_contents .kiji_body .kiji_date {
  display: block;
}
#toppage .list .kiji_contents .kiji_body h3,
.parts51.list .kiji_contents .kiji_body h3 {
  display: none;
  color: #000;
}
#toppage .list .kiji_contents .kiji_body p,
.parts51.list .kiji_contents .kiji_body p {
  display: block;
}
#toppage .list .links,
.parts51.list .links {
  display: none;
}

/* list（トピックス一覧
----------------------------------- */
.parts51.list .links {
  display: block !important;
  margin: 5rem 0 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 519px) {
  .parts51.list .links {
    margin: 3rem 0 0 auto;
  }
}

/* ページャー
----------------------------------- */
.pager {
  width: 100%;
  text-align: center;
}

.pager_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 7rem;
}
.pager_container .number {
  margin: 0 1rem;
}
@media screen and (max-width: 519px) {
  .pager_container .number {
    margin: 0 0.8rem;
  }
}
.pager_container .number .count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pager_container .number .count a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0.5rem;
  aspect-ratio: 1;
  width: 3rem;
  height: auto;
  line-height: 1;
  color: #fff;
  background-color: #fff;
  border: solid 1px #fff;
}
@media screen and (max-width: 519px) {
  .pager_container .number .count a {
    margin: 0 0.3rem;
    width: 2.5rem;
    font-size: 0.9em;
  }
}
.pager_container .number .count a:hover {
  color: white;
  background-color: #fff;
  opacity: 1;
}
.pager_container .number .count a.on {
  color: white;
  background-color: #fff;
  pointer-events: none;
}

/* kiji
----------------------------------- */
#kiji {
  margin: 0 auto 0;
  padding-top: 3rem;
  width: 100%;
  max-width: 1300px;
}
@media screen and (max-width: 1340px) {
  #kiji {
    width: calc(100% - 40px);
  }
}
@media screen and (max-width: 959px) {
  #kiji {
    padding-top: 1.5rem;
  }
}
#kiji h2 {
  padding-left: 2.5rem;
  padding-bottom: 0.7rem;
  width: 100%;
  color: #7f7867;
  font-size: 1.9em;
  letter-spacing: 0.3rem;
  line-height: 1.7;
  text-wrap: pretty;
}
@media screen and (max-width: 959px) {
  #kiji h2 {
    padding-left: 0;
  }
}
@media screen and (max-width: 519px) {
  #kiji h2 {
    padding-bottom: 0;
    font-size: 1.6em;
  }
}
#kiji h2::before {
  content: "";
  display: inline-block;
  margin-right: 1rem;
  -webkit-transform: translateY(0.4rem);
          transform: translateY(0.4rem);
  aspect-ratio: 1;
  width: 3.2rem;
  height: auto;
  background-image: url(https://ssl.samidare.jp/~tukiyamaf/asahimachi/p/renewal/icon_apple.png);
  background-size: contain;
}
@media screen and (max-width: 519px) {
  #kiji h2::before {
    -webkit-transform: translateY(0.2rem);
            transform: translateY(0.2rem);
    margin-right: 0.5rem;
    width: 2.2rem;
  }
}
#kiji h2 small {
  padding-left: 2rem;
  font-size: 0.5em;
}
@media screen and (max-width: 519px) {
  #kiji h2 small {
    padding-left: 1rem;
  }
}
#kiji .kiji_contents {
  margin-top: 0.5rem;
  padding: 5rem;
  border: solid 1px #2e1e1a;
}
@media screen and (max-width: 959px) {
  #kiji .kiji_contents {
    padding: 3rem;
  }
}
@media screen and (max-width: 519px) {
  #kiji .kiji_contents {
    padding: 3rem 2rem;
  }
}
#kiji .kiji_contents .kiji_image {
  margin-bottom: 2rem;
}
#kiji .kiji_contents .kiji_image img {
  max-width: 100% !important;
}
#kiji .kiji_contents h2 {
  padding: 0;
  font-size: 1.5em;
  color: inherit;
  text-align: inherit;
  background-color: inherit;
}
#kiji .kiji_contents div {
  max-width: 100%;
}
#kiji .kiji_contents img {
  max-width: 100%;
}
@media screen and (max-width: 519px) {
  #kiji .kiji_contents img {
    height: auto !important;
  }
}
#kiji .kiji_contents a {
  color: #db3215;
  word-wrap: break-word;
}
#kiji .kiji_contents iframe {
  aspect-ratio: 560/315;
  width: 100%;
  height: auto;
}
#kiji .kiji_contents table {
  max-width: 100%;
}
@media screen and (max-width: 519px) {
  #kiji .kiji_contents table.col_two td {
    display: block;
    width: 100% !important;
  }
}
#kiji .kiji_contents .kiji_date {
  margin-top: 5rem;
  font-size: 0.85em;
  text-align: right;
}
@media screen and (max-width: 519px) {
  #kiji .kiji_contents .kiji_date {
    margin-top: 3rem;
  }
}

#member {
  display: none;
}

#kiji.kiji_comment .kiji_date {
  display: none;
}

#kiji_comment {
  display: none;
}

#kiji_footer .kiji_back {
  display: block;
  margin: 6rem auto 0;
  padding: 1.5rem 1rem;
  width: 100%;
  max-width: 28rem;
  height: auto;
  font-weight: bold;
  color: white;
  text-align: center;
  letter-spacing: 3px;
  background-color: #db3215;
  border-radius: 1rem;
}
@media screen and (max-width: 519px) {
  #kiji_footer .kiji_back {
    margin-top: 4rem;
    padding: 1rem;
    width: 100%;
  }
}
#kiji_footer .kiji_back:hover {
  opacity: 0.8;
}

/* 記事（広報誌）
----------------------------------- */
#kiji.public {
  padding-bottom: 5rem;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}
#kiji.public h2 {
  padding: 0;
  font-size: 1.8em;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  background-color: transparent;
  border-bottom: solid 1.5px #fff;
  border-radius: 0;
}
@media screen and (max-width: 519px) {
  #kiji.public h2 {
    font-size: 1.6em;
  }
}
#kiji.public .kiji_contents {
  position: relative;
  margin-top: 3rem;
  padding: 1.5rem;
  background-color: #1B2339;
  border-radius: 1rem;
}
@media screen and (max-width: 519px) {
  #kiji.public .kiji_contents {
    margin-top: 2rem;
  }
}
#kiji.public .kiji_contents .kiji_image {
  display: none;
  margin: 0;
}
#kiji.public .kiji_contents .public_pdf {
  position: absolute;
  top: calc(100% + 3rem);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  min-width: 22rem;
  font-size: 0;
  text-decoration: none;
}
#kiji.public .kiji_contents .public_pdf::before {
  content: "PDF ダウンロード";
  display: inline-block;
  font-size: 1.5rem;
  color: white;
}
#kiji.public .kiji_contents .public_pdf:hover {
  opacity: 0.8;
}
#kiji.public .kiji_contents .public_slide {
  position: relative;
  padding: 0 12rem;
  -ms-touch-action: auto;
      touch-action: auto;
}
@media screen and (max-width: 959px) {
  #kiji.public .kiji_contents .public_slide {
    padding: 0 6rem;
  }
}
@media screen and (max-width: 519px) {
  #kiji.public .kiji_contents .public_slide {
    padding: 0 0.5rem;
  }
}
#kiji.public .kiji_contents .public_slide .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#kiji.public .kiji_contents .public_slide img {
  margin: auto;
  max-width: 100% !important;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 519px) {
  #kiji.public .kiji_contents .public_slide img {
    max-height: 70vh;
    max-height: 70dvh;
  }
}
#kiji.public .kiji_contents .public_slide .public_prev,
#kiji.public .kiji_contents .public_slide .public_next {
  position: absolute;
  top: 50%;
  left: 2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 25px solid transparent;
  border-bottom: 25px solid transparent;
  border-right: 30px solid #d78510;
  border-left: 0;
  cursor: pointer;
}
@media screen and (max-width: 959px) {
  #kiji.public .kiji_contents .public_slide .public_prev,
  #kiji.public .kiji_contents .public_slide .public_next {
    left: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-right: 25px solid #d78510;
  }
}
@media screen and (max-width: 519px) {
  #kiji.public .kiji_contents .public_slide .public_prev,
  #kiji.public .kiji_contents .public_slide .public_next {
    -webkit-transform: translateX(-120%) translateY(-50%);
            transform: translateX(-120%) translateY(-50%);
  }
}
#kiji.public .kiji_contents .public_slide .public_next {
  left: auto;
  right: 2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-left: 30px solid #d78510;
  border-right: 0;
}
@media screen and (max-width: 959px) {
  #kiji.public .kiji_contents .public_slide .public_next {
    right: 0;
    border-left: 25px solid #d78510;
  }
}
@media screen and (max-width: 519px) {
  #kiji.public .kiji_contents .public_slide .public_next {
    -webkit-transform: translateX(120%) translateY(-50%);
            transform: translateX(120%) translateY(-50%);
  }
}
#kiji.public .kiji_contents .kiji_date {
  display: none;
}

/* お問合せ
----------------------------------- */
#main1 .contact,
#main1 .contact_preview,
#main1 .contact_send,
#main1 .contact_error {
  position: relative;
  margin: 0 auto 0;
  width: 100%;
}
#main1 .contact h2,
#main1 .contact_preview h2,
#main1 .contact_send h2,
#main1 .contact_error h2 {
  padding: 0.3rem 1rem 0;
  width: 100%;
  color: white;
  font-size: 2em;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.4rem;
  background-color: #2e1e1a;
}
@media screen and (max-width: 519px) {
  #main1 .contact h2,
  #main1 .contact_preview h2,
  #main1 .contact_send h2,
  #main1 .contact_error h2 {
    padding: 0.3rem 1rem;
    font-size: 1.5em;
  }
}
#main1 .contact .contact_contents,
#main1 .contact_preview .contact_contents,
#main1 .contact_send .contact_contents,
#main1 .contact_error .contact_contents {
  margin: 5rem auto 0;
  padding: 3rem 4rem;
  max-width: 100rem;
  background-color: #fff;
  border: solid 1px #2e1e1a;
}
@media screen and (max-width: 1040px) {
  #main1 .contact .contact_contents,
  #main1 .contact_preview .contact_contents,
  #main1 .contact_send .contact_contents,
  #main1 .contact_error .contact_contents {
    width: calc(100% - 4rem);
  }
}
@media screen and (max-width: 959px) {
  #main1 .contact .contact_contents,
  #main1 .contact_preview .contact_contents,
  #main1 .contact_send .contact_contents,
  #main1 .contact_error .contact_contents {
    margin-top: 3rem;
    padding: 3rem;
  }
}
@media screen and (max-width: 519px) {
  #main1 .contact .contact_contents,
  #main1 .contact_preview .contact_contents,
  #main1 .contact_send .contact_contents,
  #main1 .contact_error .contact_contents {
    padding: 2rem;
  }
}
#main1 .contact .contact_text a.tel,
#main1 .contact_preview .contact_text a.tel,
#main1 .contact_send .contact_text a.tel,
#main1 .contact_error .contact_text a.tel {
  display: inline-block;
  margin: 1.5rem 1rem 0 0;
  color: #db3215;
  font-size: 1.8em;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 519px) {
  #main1 .contact .contact_text a.tel,
  #main1 .contact_preview .contact_text a.tel,
  #main1 .contact_send .contact_text a.tel,
  #main1 .contact_error .contact_text a.tel {
    margin-top: 1rem;
  }
}
#main1 .contact .contact_text a.tel img,
#main1 .contact_preview .contact_text a.tel img,
#main1 .contact_send .contact_text a.tel img,
#main1 .contact_error .contact_text a.tel img {
  margin-right: 0.8rem;
  width: 3rem;
  vertical-align: top;
}
@media screen and (max-width: 519px) {
  #main1 .contact .contact_text a.tel img,
  #main1 .contact_preview .contact_text a.tel img,
  #main1 .contact_send .contact_text a.tel img,
  #main1 .contact_error .contact_text a.tel img {
    margin-right: 0.3rem;
    width: 2.6rem;
  }
}
#main1 .contact .contact_form,
#main1 .contact_preview .contact_form,
#main1 .contact_send .contact_form,
#main1 .contact_error .contact_form {
  margin-top: 3rem;
  list-style: none;
}
#main1 .contact .contact_form li,
#main1 .contact_preview .contact_form li,
#main1 .contact_send .contact_form li,
#main1 .contact_error .contact_form li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  border-top: dashed 1px #2e1e1a;
}
@media screen and (max-width: 519px) {
  #main1 .contact .contact_form li,
  #main1 .contact_preview .contact_form li,
  #main1 .contact_send .contact_form li,
  #main1 .contact_error .contact_form li {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
#main1 .contact .contact_form li:last-child,
#main1 .contact_preview .contact_form li:last-child,
#main1 .contact_send .contact_form li:last-child,
#main1 .contact_error .contact_form li:last-child {
  display: block;
  text-align: center;
  border-top: none;
}
#main1 .contact .contact_form li:last-child .contact_index,
#main1 .contact_preview .contact_form li:last-child .contact_index,
#main1 .contact_send .contact_form li:last-child .contact_index,
#main1 .contact_error .contact_form li:last-child .contact_index {
  display: none;
}
#main1 .contact .contact_form li .contact_index,
#main1 .contact_preview .contact_form li .contact_index,
#main1 .contact_send .contact_form li .contact_index,
#main1 .contact_error .contact_form li .contact_index {
  padding: 2rem 0;
  width: 23rem;
  font-weight: bold;
  text-align: left;
}
@media screen and (max-width: 959px) {
  #main1 .contact .contact_form li .contact_index,
  #main1 .contact_preview .contact_form li .contact_index,
  #main1 .contact_send .contact_form li .contact_index,
  #main1 .contact_error .contact_form li .contact_index {
    padding: 1rem;
    width: 20rem;
  }
}
@media screen and (max-width: 519px) {
  #main1 .contact .contact_form li .contact_index,
  #main1 .contact_preview .contact_form li .contact_index,
  #main1 .contact_send .contact_form li .contact_index,
  #main1 .contact_error .contact_form li .contact_index {
    padding: 1.5rem 1rem 0.5rem;
    width: 100%;
  }
}
#main1 .contact .contact_form li .contact_index span,
#main1 .contact_preview .contact_form li .contact_index span,
#main1 .contact_send .contact_form li .contact_index span,
#main1 .contact_error .contact_form li .contact_index span {
  display: block;
  width: 100%;
  color: #e55295;
  font-size: 0.8em;
  line-height: 1.5;
}
#main1 .contact .contact_form li .contact_index small,
#main1 .contact_preview .contact_form li .contact_index small,
#main1 .contact_send .contact_form li .contact_index small,
#main1 .contact_error .contact_form li .contact_index small {
  display: block;
}
#main1 .contact .contact_form li .contact_body_needs,
#main1 .contact_preview .contact_form li .contact_body_needs,
#main1 .contact_send .contact_form li .contact_body_needs,
#main1 .contact_error .contact_form li .contact_body_needs {
  display: inline-block;
  font-size: 0.7em;
  color: #db3215;
}
#main1 .contact .contact_form li .contact_body,
#main1 .contact_preview .contact_form li .contact_body,
#main1 .contact_send .contact_form li .contact_body,
#main1 .contact_error .contact_form li .contact_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 2rem 2rem;
  width: calc(100% - 23rem);
  text-align: left;
  background-color: #fff;
}
@media screen and (max-width: 959px) {
  #main1 .contact .contact_form li .contact_body,
  #main1 .contact_preview .contact_form li .contact_body,
  #main1 .contact_send .contact_form li .contact_body,
  #main1 .contact_error .contact_form li .contact_body {
    padding: 1rem;
    width: calc(100% - 20rem);
  }
}
@media screen and (max-width: 519px) {
  #main1 .contact .contact_form li .contact_body,
  #main1 .contact_preview .contact_form li .contact_body,
  #main1 .contact_send .contact_form li .contact_body,
  #main1 .contact_error .contact_form li .contact_body {
    padding: 0 1rem 1.9rem;
    width: 100%;
  }
}
#main1 .contact .contact_form li .contact_body .contact_body_comment,
#main1 .contact_preview .contact_form li .contact_body .contact_body_comment,
#main1 .contact_send .contact_form li .contact_body .contact_body_comment,
#main1 .contact_error .contact_form li .contact_body .contact_body_comment {
  font-size: 0.7em;
  color: gray;
}
#main1 .contact .contact_form li input[type=text],
#main1 .contact_preview .contact_form li input[type=text],
#main1 .contact_send .contact_form li input[type=text],
#main1 .contact_error .contact_form li input[type=text] {
  padding: 0.3rem 0.8rem;
  width: 100% !important;
  height: 4rem;
  color: #000;
  font-family: inherit;
  font-size: 1em;
  background-color: #fff;
  background-image: none;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
@media screen and (max-width: 519px) {
  #main1 .contact .contact_form li input[type=text],
  #main1 .contact_preview .contact_form li input[type=text],
  #main1 .contact_send .contact_form li input[type=text],
  #main1 .contact_error .contact_form li input[type=text] {
    width: 100% !important;
  }
}
#main1 .contact .contact_form li input[type=text]:focus,
#main1 .contact_preview .contact_form li input[type=text]:focus,
#main1 .contact_send .contact_form li input[type=text]:focus,
#main1 .contact_error .contact_form li input[type=text]:focus {
  border: 1px solid rgba(0, 0, 0, 0.32);
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
#main1 .contact .contact_form li input[type=checkbox],
#main1 .contact_preview .contact_form li input[type=checkbox],
#main1 .contact_send .contact_form li input[type=checkbox],
#main1 .contact_error .contact_form li input[type=checkbox] {
  margin: 0 0.5rem 0 1.5rem;
}
#main1 .contact .contact_form li input[type=checkbox]:first-of-type,
#main1 .contact_preview .contact_form li input[type=checkbox]:first-of-type,
#main1 .contact_send .contact_form li input[type=checkbox]:first-of-type,
#main1 .contact_error .contact_form li input[type=checkbox]:first-of-type {
  margin-left: 0;
}
#main1 .contact .contact_form li input[type=radio],
#main1 .contact_preview .contact_form li input[type=radio],
#main1 .contact_send .contact_form li input[type=radio],
#main1 .contact_error .contact_form li input[type=radio] {
  margin-left: 2rem;
  margin-right: 0.5rem;
  width: auto !important;
}
#main1 .contact .contact_form li input[type=radio]:first-of-type,
#main1 .contact_preview .contact_form li input[type=radio]:first-of-type,
#main1 .contact_send .contact_form li input[type=radio]:first-of-type,
#main1 .contact_error .contact_form li input[type=radio]:first-of-type {
  margin-left: 0;
}
#main1 .contact .contact_form li textarea,
#main1 .contact_preview .contact_form li textarea,
#main1 .contact_send .contact_form li textarea,
#main1 .contact_error .contact_form li textarea {
  padding: 0.3rem 0.8rem;
  width: 100%;
  height: 15rem;
  color: #000;
  font-family: inherit;
  font-size: 1em;
  background-color: #fff;
  background-image: none;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
#main1 .contact .contact_form li textarea:focus,
#main1 .contact_preview .contact_form li textarea:focus,
#main1 .contact_send .contact_form li textarea:focus,
#main1 .contact_error .contact_form li textarea:focus {
  border: 1px solid rgba(0, 0, 0, 0.32);
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
#main1 .contact .contact_form li select,
#main1 .contact_preview .contact_form li select,
#main1 .contact_send .contact_form li select,
#main1 .contact_error .contact_form li select {
  position: relative;
  margin: 0 0.8rem;
  padding: 0.3rem 5rem 0.3rem 0.8rem;
  height: 4rem;
  font-family: inherit;
  font-size: 1em;
  color: #000;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: white url(https://ssl.samidare.jp/~tukiyamaf/y-woman/p/common/select.png);
  background-size: contain;
  background-position: right center;
  border: 1px solid rgba(0, 0, 0, 0.16);
  background-repeat: no-repeat;
  border-radius: 0;
  cursor: pointer;
}
@media screen and (max-width: 959px) {
  #main1 .contact .contact_form li select,
  #main1 .contact_preview .contact_form li select,
  #main1 .contact_send .contact_form li select,
  #main1 .contact_error .contact_form li select {
    height: auto;
  }
}
@media screen and (max-width: 519px) {
  #main1 .contact .contact_form li select,
  #main1 .contact_preview .contact_form li select,
  #main1 .contact_send .contact_form li select,
  #main1 .contact_error .contact_form li select {
    margin: 0;
    padding-right: 4rem;
    width: 100%;
  }
}
#main1 .contact .contact_form li select:first-of-type,
#main1 .contact_preview .contact_form li select:first-of-type,
#main1 .contact_send .contact_form li select:first-of-type,
#main1 .contact_error .contact_form li select:first-of-type {
  margin-left: 0;
}
#main1 .contact .contact_form li select::-ms-expand,
#main1 .contact_preview .contact_form li select::-ms-expand,
#main1 .contact_send .contact_form li select::-ms-expand,
#main1 .contact_error .contact_form li select::-ms-expand {
  display: none;
}
#main1 .contact .contact_form li select:focus,
#main1 .contact_preview .contact_form li select:focus,
#main1 .contact_send .contact_form li select:focus,
#main1 .contact_error .contact_form li select:focus {
  border: 1px solid rgba(0, 0, 0, 0.32);
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
#main1 .contact .contact_form li .formBtn,
#main1 .contact .contact_form li .backBtn,
#main1 .contact .contact_form li .sendBtn,
#main1 .contact_preview .contact_form li .formBtn,
#main1 .contact_preview .contact_form li .backBtn,
#main1 .contact_preview .contact_form li .sendBtn,
#main1 .contact_send .contact_form li .formBtn,
#main1 .contact_send .contact_form li .backBtn,
#main1 .contact_send .contact_form li .sendBtn,
#main1 .contact_error .contact_form li .formBtn,
#main1 .contact_error .contact_form li .backBtn,
#main1 .contact_error .contact_form li .sendBtn {
  display: inline-block;
  margin-top: 6rem;
  padding: 1.5rem 1rem;
  width: 28rem;
  height: auto;
  font-weight: bold;
  color: white;
  letter-spacing: 3px;
  background-color: #db3215;
  border-radius: 1rem;
}
@media screen and (max-width: 959px) {
  #main1 .contact .contact_form li .formBtn,
  #main1 .contact .contact_form li .backBtn,
  #main1 .contact .contact_form li .sendBtn,
  #main1 .contact_preview .contact_form li .formBtn,
  #main1 .contact_preview .contact_form li .backBtn,
  #main1 .contact_preview .contact_form li .sendBtn,
  #main1 .contact_send .contact_form li .formBtn,
  #main1 .contact_send .contact_form li .backBtn,
  #main1 .contact_send .contact_form li .sendBtn,
  #main1 .contact_error .contact_form li .formBtn,
  #main1 .contact_error .contact_form li .backBtn,
  #main1 .contact_error .contact_form li .sendBtn {
    width: 45%;
  }
}
@media screen and (max-width: 519px) {
  #main1 .contact .contact_form li .formBtn,
  #main1 .contact .contact_form li .backBtn,
  #main1 .contact .contact_form li .sendBtn,
  #main1 .contact_preview .contact_form li .formBtn,
  #main1 .contact_preview .contact_form li .backBtn,
  #main1 .contact_preview .contact_form li .sendBtn,
  #main1 .contact_send .contact_form li .formBtn,
  #main1 .contact_send .contact_form li .backBtn,
  #main1 .contact_send .contact_form li .sendBtn,
  #main1 .contact_error .contact_form li .formBtn,
  #main1 .contact_error .contact_form li .backBtn,
  #main1 .contact_error .contact_form li .sendBtn {
    margin-top: 4rem;
    width: 100%;
  }
}
#main1 .contact .contact_form li .formBtn:hover,
#main1 .contact .contact_form li .backBtn:hover,
#main1 .contact .contact_form li .sendBtn:hover,
#main1 .contact_preview .contact_form li .formBtn:hover,
#main1 .contact_preview .contact_form li .backBtn:hover,
#main1 .contact_preview .contact_form li .sendBtn:hover,
#main1 .contact_send .contact_form li .formBtn:hover,
#main1 .contact_send .contact_form li .backBtn:hover,
#main1 .contact_send .contact_form li .sendBtn:hover,
#main1 .contact_error .contact_form li .formBtn:hover,
#main1 .contact_error .contact_form li .backBtn:hover,
#main1 .contact_error .contact_form li .sendBtn:hover {
  opacity: 0.8;
}
#main1 .contact .contact_form li .backBtn,
#main1 .contact_preview .contact_form li .backBtn,
#main1 .contact_send .contact_form li .backBtn,
#main1 .contact_error .contact_form li .backBtn {
  margin-right: 2rem;
}
@media screen and (max-width: 519px) {
  #main1 .contact .contact_form li .backBtn,
  #main1 .contact_preview .contact_form li .backBtn,
  #main1 .contact_send .contact_form li .backBtn,
  #main1 .contact_error .contact_form li .backBtn {
    margin-right: 0;
  }
}
#main1 .contact .contact_form li .formBtn:hover,
#main1 .contact .contact_form li .formBtn:focus,
#main1 .contact .contact_form li .backBtn:hover,
#main1 .contact .contact_form li .backBtn:focus,
#main1 .contact .contact_form li .sendBtn:hover,
#main1 .contact .contact_form li .sendBtn:focus,
#main1 .contact_preview .contact_form li .formBtn:hover,
#main1 .contact_preview .contact_form li .formBtn:focus,
#main1 .contact_preview .contact_form li .backBtn:hover,
#main1 .contact_preview .contact_form li .backBtn:focus,
#main1 .contact_preview .contact_form li .sendBtn:hover,
#main1 .contact_preview .contact_form li .sendBtn:focus,
#main1 .contact_send .contact_form li .formBtn:hover,
#main1 .contact_send .contact_form li .formBtn:focus,
#main1 .contact_send .contact_form li .backBtn:hover,
#main1 .contact_send .contact_form li .backBtn:focus,
#main1 .contact_send .contact_form li .sendBtn:hover,
#main1 .contact_send .contact_form li .sendBtn:focus,
#main1 .contact_error .contact_form li .formBtn:hover,
#main1 .contact_error .contact_form li .formBtn:focus,
#main1 .contact_error .contact_form li .backBtn:hover,
#main1 .contact_error .contact_form li .backBtn:focus,
#main1 .contact_error .contact_form li .sendBtn:hover,
#main1 .contact_error .contact_form li .sendBtn:focus {
  outline: none;
}
#main1 .contact .contact_form li .formBtn::-moz-foucus-inner,
#main1 .contact .contact_form li .backBtn::-moz-foucus-inner,
#main1 .contact .contact_form li .sendBtn::-moz-foucus-inner,
#main1 .contact_preview .contact_form li .formBtn::-moz-foucus-inner,
#main1 .contact_preview .contact_form li .backBtn::-moz-foucus-inner,
#main1 .contact_preview .contact_form li .sendBtn::-moz-foucus-inner,
#main1 .contact_send .contact_form li .formBtn::-moz-foucus-inner,
#main1 .contact_send .contact_form li .backBtn::-moz-foucus-inner,
#main1 .contact_send .contact_form li .sendBtn::-moz-foucus-inner,
#main1 .contact_error .contact_form li .formBtn::-moz-foucus-inner,
#main1 .contact_error .contact_form li .backBtn::-moz-foucus-inner,
#main1 .contact_error .contact_form li .sendBtn::-moz-foucus-inner {
  border: none;
  padding: 0;
}
#main1 .contact .contact_ssl,
#main1 .contact_preview .contact_ssl,
#main1 .contact_send .contact_ssl,
#main1 .contact_error .contact_ssl {
  margin-top: 6rem;
  font-size: 0.8em;
  text-align: justify;
}
@media screen and (max-width: 519px) {
  #main1 .contact .contact_ssl,
  #main1 .contact_preview .contact_ssl,
  #main1 .contact_send .contact_ssl,
  #main1 .contact_error .contact_ssl {
    margin-top: 6rem;
  }
}
#main1 .contact .contact_ssl img,
#main1 .contact_preview .contact_ssl img,
#main1 .contact_send .contact_ssl img,
#main1 .contact_error .contact_ssl img {
  display: none;
}
#main1 .contact .contact_ssl a,
#main1 .contact_preview .contact_ssl a,
#main1 .contact_send .contact_ssl a,
#main1 .contact_error .contact_ssl a {
  color: inherit;
  text-decoration: underline;
}

/* プレビュー,エラー,送信完了画面
----------------------------------- */
#main1 .contact_preview .contact_body,
#main1 .contact_error .contact_body,
#main1 .contact_send .contact_body {
  font-weight: bold;
}
#main1 .contact_preview .backBtn,
#main1 .contact_error .backBtn,
#main1 .contact_send .backBtn {
  background-color: #9c9c9c !important;
  background-image: none !important;
}
@media screen and (max-width: 519px) {
  #main1 .contact_preview .sendBtn,
  #main1 .contact_error .sendBtn,
  #main1 .contact_send .sendBtn {
    margin-top: 2rem !important;
  }
}

/* エラー,送信完了画面のテキストとボタン
----------------------------------- */
/* プライバシーポリシー
----------------------------------- */
.parts6 {
  margin: 0 auto 0;
}
.parts6 h2 {
  padding: 0.3rem 1rem 0;
  width: 100%;
  color: white;
  font-size: 2em;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.4rem;
  background-color: #2e1e1a;
}
@media screen and (max-width: 519px) {
  .parts6 h2 {
    padding: 0.3rem 1rem;
    font-size: 1.5em;
  }
}
.parts6 #privacy {
  margin: 5rem auto 0;
  padding: 3rem 4rem;
  max-width: 100rem;
  background-color: #fff;
  border: solid 1px #2e1e1a;
}
@media screen and (max-width: 1040px) {
  .parts6 #privacy {
    width: calc(100% - 4rem);
  }
}
@media screen and (max-width: 959px) {
  .parts6 #privacy {
    margin-top: 3rem;
    padding: 3rem;
  }
}
@media screen and (max-width: 519px) {
  .parts6 #privacy {
    padding: 2rem;
  }
}
.parts6 p {
  margin-top: 2rem;
}

/* カウンター
----------------------------------- */
.counter12 {
  padding: 0 0 2rem 2rem;
  font-size: 1rem;
  color: #9fa0a0;
}/*# sourceMappingURL=style_asahimachi.css.map */