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

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

.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: 1000px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1040px) {
  .l-inner {
    padding: 0 20px;
  }
}
/* component
------------------------------------------------ */
.c-header {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 20;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 4rem 4rem 0 0;
  max-width: 100%;
}
@media screen and (max-width: 959px) {
  .c-header {
    padding: 3rem 2rem 0 0;
  }
}
@media screen and (max-width: 519px) {
  .c-header {
    padding: 2rem 1rem 0 0;
  }
}

.c-header__menu {
  display: inline-block;
  padding: 0 2rem;
  font-size: 2.6rem;
  border-left: solid 1.5px black;
  line-height: 1.1;
}
@media screen and (max-width: 959px) {
  .c-header__menu {
    font-size: 3vw;
  }
}
@media screen and (max-width: 519px) {
  .c-header__menu {
    padding: 0 0.7rem;
    font-size: 3.8vw;
  }
}
.c-header__menu:last-child {
  border-right: solid 1.5px black;
}

.c-header__hamburger {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  padding: 1.8rem;
  width: 7rem;
  background-color: #fff;
  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: 959px) {
  .c-header__hamburger {
    padding: 1.3rem 1.3rem;
    width: 5.5rem;
  }
}
@media screen and (max-width: 519px) {
  .c-header__hamburger {
    width: 5rem;
  }
}
.c-header__hamburger:hover {
  opacity: 0.9;
}

.c-header__hamburger-border {
  position: relative;
  width: 100%;
  height: 2px;
  background-color: white;
  -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;
  width: 85%;
}
@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: 37rem;
}
@media screen and (max-width: 959px) {
  .c-header__hamburger--open {
    right: 30rem;
  }
}
@media screen and (max-width: 519px) {
  .c-header__hamburger--open {
    right: 70vw;
  }
}
.c-header__hamburger--open .c-header__hamburger-border--top {
  top: 11.6px;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
@media screen and (max-width: 519px) {
  .c-header__hamburger--open .c-header__hamburger-border--top {
    top: 8px;
  }
}
.c-header__hamburger--open .c-header__hamburger-border--middle {
  opacity: 0;
}
.c-header__hamburger--open .c-header__hamburger-border--bottom {
  bottom: 11.6px;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}
@media screen and (max-width: 519px) {
  .c-header__hamburger--open .c-header__hamburger-border--bottom {
    bottom: 8px;
  }
}

.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: -370px;
  z-index: 40;
  padding: 4rem;
  width: 370px;
  max-width: 100%;
  max-height: 100vh;
  max-height: 100dvh;
  background-color: #fffde8;
  background-size: cover;
  background-repeat: repeat;
  border: solid 0.7px #231815;
  -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: -30rem;
    padding: 3rem;
    width: 30rem;
  }
}
@media screen and (max-width: 519px) {
  .c-header__drawer {
    right: -70vw;
    padding: 2.5rem;
    width: 70vw;
    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-title {
  display: block;
  position: relative;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #c30d23;
  font-weight: bold;
  font-size: 2.2em;
}
@media screen and (max-width: 519px) {
  .c-title {
    font-size: 7vw;
  }
}
.c-title::before, .c-title::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -2.5rem;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
  aspect-ratio: 58/108;
  width: auto;
  height: 80%;
  background-image: url(https://ssl.samidare.jp/~tukiyamaf/tuyahime/p/images/yajirushi_L.png);
  background-size: contain;
}
@media screen and (max-width: 519px) {
  .c-title::before, .c-title::after {
    left: -1.5rem;
  }
}
.c-title::after {
  left: auto;
  right: -2.5rem;
  -webkit-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
  background-image: url(https://ssl.samidare.jp/~tukiyamaf/tuyahime/p/images/yajirushi_R.png);
}
@media screen and (max-width: 519px) {
  .c-title::after {
    right: -1.5rem;
  }
}

.c-title--white {
  color: white;
}

.c-more {
  display: block;
  margin: 3rem 0 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.2em;
  text-align: right;
}

.c-copy {
  margin-top: 12rem;
  color: white;
  text-align: center;
}
@media screen and (max-width: 519px) {
  .c-copy {
    margin-top: 8rem;
  }
}

.c-copy--corner {
  margin-bottom: 5rem;
  color: #000;
}
@media screen and (max-width: 519px) {
  .c-copy--corner {
    margin-bottom: 3rem;
    font-size: 1.2rem;
  }
}

.c-bnr {
  margin-top: 4rem;
  width: 100%;
}

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

.p-top-mv__image {
  width: 100%;
}

.p-top-mv__bnr {
  margin-top: 4rem;
}

.p-top-tuyahime {
  padding-top: 5rem;
}
@media screen and (max-width: 519px) {
  .p-top-tuyahime {
    padding-top: 4rem;
  }
}

.p-top-tuyahime__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 4rem;
}
@media screen and (max-width: 519px) {
  .p-top-tuyahime__container {
    margin-top: 3rem;
  }
}

.p-top-tuyahime__image {
  width: 31%;
}
@media screen and (max-width: 959px) {
  .p-top-tuyahime__image {
    width: 28%;
  }
}
@media screen and (max-width: 519px) {
  .p-top-tuyahime__image {
    width: 100%;
  }
}

.p-top-tuyahime__content {
  width: 67%;
  font-size: 1.5em;
  font-weight: bold;
  letter-spacing: 1px;
}
@media screen and (max-width: 959px) {
  .p-top-tuyahime__content {
    width: 70%;
    font-size: 1.3em;
  }
}
@media screen and (max-width: 519px) {
  .p-top-tuyahime__content {
    margin-top: 2rem;
    width: 100%;
  }
}
.p-top-tuyahime__content ol {
  list-style: none;
}
.p-top-tuyahime__content ol li {
  position: relative;
  padding: 1.5rem 1rem 1.5rem 8rem;
  border-top: dashed 1.5px black;
}
@media screen and (max-width: 959px) {
  .p-top-tuyahime__content ol li {
    padding: 1rem 1rem 1rem 5rem;
  }
}
@media screen and (max-width: 519px) {
  .p-top-tuyahime__content ol li {
    padding: 1.3rem 1rem 1.3rem 5rem;
  }
}
.p-top-tuyahime__content ol li::before {
  position: absolute;
  left: 2.6rem;
}
@media screen and (max-width: 959px) {
  .p-top-tuyahime__content ol li::before {
    left: 1rem;
  }
}
.p-top-tuyahime__content ol li:nth-child(1)::before {
  content: "(1)";
}
.p-top-tuyahime__content ol li:nth-child(2)::before {
  content: "(2)";
}
.p-top-tuyahime__content ol li:nth-child(3)::before {
  content: "(3)";
}
.p-top-tuyahime__content ol li:nth-child(4)::before {
  content: "(4)";
}
.p-top-tuyahime__content ol li:nth-child(5)::before {
  content: "(5)";
}
.p-top-tuyahime__content ol li:last-child {
  border-bottom: dashed 1.5px black;
}

.p-top-profile {
  margin-top: 5rem;
  padding: 5rem 0;
  background-image: url(https://ssl.samidare.jp/~tukiyamaf/tuyahime/p/images/tanbo_min.jpg);
  background-size: cover;
  background-position: center;
}

.p-top-profile__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 4rem;
}
@media screen and (max-width: 519px) {
  .p-top-profile__cards {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2rem;
  }
}

.p-top-profile__card {
  padding: 3rem 2rem 5rem;
  width: 48.5%;
  background-color: #fff;
  border: solid 1px #6f9430;
}
@media screen and (max-width: 519px) {
  .p-top-profile__card {
    width: 100%;
  }
}

.p-top-profile__img {
  display: block;
  margin: 0 auto;
  width: auto;
  height: 33rem;
}
@media screen and (max-width: 519px) {
  .p-top-profile__img {
    height: 70vw;
  }
}

.p-top-profile__name {
  margin-top: 2rem;
  font-weight: bold;
  font-size: 1.9em;
}
@media screen and (max-width: 519px) {
  .p-top-profile__name {
    margin-top: 2.5rem;
  }
}

.p-top-profile__head {
  margin-top: 2.3rem;
  color: #c30d23;
  font-weight: bold;
  font-size: 1.8em;
  line-height: 1.2;
}

.p-top-profile__info {
  margin-top: 3rem;
  font-weight: bold;
  font-size: 1.08em;
}

.p-top-profile__message {
  margin-top: 4rem;
  padding: 5rem 4rem;
  font-weight: bold;
  font-size: 1.2em;
  line-height: 1.9;
  background-color: hsla(0, 0%, 100%, 0.727);
  border-radius: 2rem;
}
@media screen and (max-width: 519px) {
  .p-top-profile__message {
    padding: 4rem 2rem;
    font-size: 1.15em;
    border-radius: 1rem;
  }
}
.p-top-profile__message p {
  margin-top: 4rem;
}
@media screen and (max-width: 519px) {
  .p-top-profile__message p {
    margin-top: 3rem;
  }
}
.p-top-profile__message p:first-child {
  margin-top: 0;
}

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

/* ページ
----------------------------------- */
/* コンテンツ
----------------------------------- */
#content {
  padding-top: 0.1px;
}

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

/* image_スライド
----------------------------------- */
/* list(toppage)
----------------------------------- */
#toppage .list .links {
  display: none;
}

/* list
----------------------------------- */
.list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 5rem auto 0;
  width: 100%;
  max-width: 1000px;
}
@media screen and (max-width: 1040px) {
  .list {
    width: calc(100% - 40px);
  }
}
.list h2 {
  width: 100%;
  font-size: 2.2em;
}
.list h2 span {
  display: block;
  position: relative;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #c30d23;
  font-weight: bold;
}
@media screen and (max-width: 519px) {
  .list h2 span {
    font-size: 7vw;
  }
}
.list h2 span::before, .list h2 span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -2.5rem;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
  aspect-ratio: 58/108;
  width: auto;
  height: 80%;
  background-image: url(https://ssl.samidare.jp/~tukiyamaf/tuyahime/p/images/yajirushi_L.png);
  background-size: contain;
}
@media screen and (max-width: 519px) {
  .list h2 span::before, .list h2 span::after {
    left: -1.5rem;
  }
}
.list h2 span::after {
  left: auto;
  right: -2.5rem;
  -webkit-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
  background-image: url(https://ssl.samidare.jp/~tukiyamaf/tuyahime/p/images/yajirushi_R.png);
}
@media screen and (max-width: 519px) {
  .list h2 span::after {
    right: -1.5rem;
  }
}
.list .kiji_contents {
  display: inline-block;
  margin: 4rem 2rem 0 0;
  width: calc(33.333% - 1.3333333333rem);
}
@media screen and (max-width: 519px) {
  .list .kiji_contents {
    margin: 3rem 0 0;
    width: 100%;
  }
}
.list .kiji_contents:nth-of-type(3n) {
  margin-right: 0;
}
.list .kiji_contents .kiji_image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem;
  aspect-ratio: 1;
  background: #fffde8;
  border: solid 0.5px #cbcbcb;
}
.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: 368/247;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.list .kiji_contents .kiji_body {
  padding: 2rem 2rem 0;
  background-color: #fff;
  border-bottom-right-radius: 2rem;
}
@media screen and (max-width: 959px) {
  .list .kiji_contents .kiji_body {
    padding: 2rem 1rem 0;
  }
}
@media screen and (max-width: 519px) {
  .list .kiji_contents .kiji_body {
    padding: 1.5rem 2rem 1rem;
  }
}
.list .kiji_contents .kiji_body .kiji_date {
  display: none;
}
.list .kiji_contents .kiji_body h3 {
  font-weight: bold;
  font-size: 1.2em;
}
.list .kiji_contents .kiji_body p {
  display: none;
}
.list .links {
  margin-top: 5rem;
  width: 100%;
  text-align: right;
}

/* ページャー
----------------------------------- */
.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: 5rem auto 0;
  width: 100%;
  max-width: 1000px;
  background-color: #fff;
}
@media screen and (max-width: 1040px) {
  #kiji {
    width: calc(100% - 40px);
  }
}
@media screen and (max-width: 519px) {
  #kiji {
    margin-top: 4rem;
  }
}
#kiji h2 {
  display: block;
  position: relative;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #c30d23;
  font-weight: bold;
  font-size: 2.2em;
}
@media screen and (max-width: 519px) {
  #kiji h2 {
    max-width: 85%;
    font-size: 7vw;
  }
}
#kiji h2::before, #kiji h2::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -2.5rem;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
  aspect-ratio: 58/108;
  width: auto;
  height: min(80%, 6rem);
  background-image: url(https://ssl.samidare.jp/~tukiyamaf/tuyahime/p/images/yajirushi_L.png);
  background-size: contain;
}
@media screen and (max-width: 519px) {
  #kiji h2::before, #kiji h2::after {
    left: -1.5rem;
    height: min(80%, 4rem);
  }
}
#kiji h2::after {
  left: auto;
  right: -2.5rem;
  -webkit-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
  background-image: url(https://ssl.samidare.jp/~tukiyamaf/tuyahime/p/images/yajirushi_R.png);
}
@media screen and (max-width: 519px) {
  #kiji h2::after {
    right: -1.5rem;
  }
}
#kiji .kiji_contents {
  padding: 4rem 7rem;
  font-size: max(1em, 1.6rem);
}
@media screen and (max-width: 959px) {
  #kiji .kiji_contents {
    padding: 3rem 2rem;
  }
}
@media screen and (max-width: 519px) {
  #kiji .kiji_contents {
    padding: 3rem 0;
  }
}
#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: #c30d23;
  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;
}
#kiji .kiji_back {
  display: block;
  margin: 80px auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2rem;
}
@media screen and (max-width: 959px) {
  #kiji .kiji_back {
    font-size: 1.1em;
  }
}
@media screen and (max-width: 519px) {
  #kiji .kiji_back {
    margin-top: 50px;
  }
}
#kiji .kiji_back::after {
  content: "";
  display: inline-block;
  margin-left: 5px;
  aspect-ratio: 1;
  width: 14px;
  height: auto;
  border-top: solid 1px black;
  border-right: solid 1px black;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 519px) {
  #kiji .kiji_back::after {
    width: 11px;
  }
}

#member {
  display: none;
}

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

#kiji_comment {
  display: none;
}

#kiji_footer {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}

/* お問合せ
----------------------------------- */
#main1 .contact,
#main1 .contact_preview,
#main1 .contact_send,
#main1 .contact_error {
  position: relative;
  margin: 3rem auto 0;
  padding: 11rem 2rem;
  width: 100%;
  background-color: #fffde8;
}
@media screen and (max-width: 959px) {
  #main1 .contact,
  #main1 .contact_preview,
  #main1 .contact_send,
  #main1 .contact_error {
    padding: 7rem 2rem;
  }
}
@media screen and (max-width: 519px) {
  #main1 .contact,
  #main1 .contact_preview,
  #main1 .contact_send,
  #main1 .contact_error {
    padding: 5rem 2rem;
  }
}
#main1 .contact h2,
#main1 .contact_preview h2,
#main1 .contact_send h2,
#main1 .contact_error h2 {
  display: block;
  position: relative;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #c30d23;
  font-weight: bold;
  font-size: 2.2em;
}
@media screen and (max-width: 519px) {
  #main1 .contact h2,
  #main1 .contact_preview h2,
  #main1 .contact_send h2,
  #main1 .contact_error h2 {
    font-size: 5.8vw;
  }
}
#main1 .contact h2::before, #main1 .contact h2::after,
#main1 .contact_preview h2::before,
#main1 .contact_preview h2::after,
#main1 .contact_send h2::before,
#main1 .contact_send h2::after,
#main1 .contact_error h2::before,
#main1 .contact_error h2::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -2.5rem;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
  aspect-ratio: 58/108;
  width: auto;
  height: 80%;
  background-image: url(https://ssl.samidare.jp/~tukiyamaf/tuyahime/p/images/yajirushi_L.png);
  background-size: contain;
}
@media screen and (max-width: 519px) {
  #main1 .contact h2::before, #main1 .contact h2::after,
  #main1 .contact_preview h2::before,
  #main1 .contact_preview h2::after,
  #main1 .contact_send h2::before,
  #main1 .contact_send h2::after,
  #main1 .contact_error h2::before,
  #main1 .contact_error h2::after {
    left: -0.7rem;
  }
}
#main1 .contact h2::after,
#main1 .contact_preview h2::after,
#main1 .contact_send h2::after,
#main1 .contact_error h2::after {
  left: auto;
  right: -2rem;
  -webkit-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
  background-image: url(https://ssl.samidare.jp/~tukiyamaf/tuyahime/p/images/yajirushi_R.png);
}
@media screen and (max-width: 519px) {
  #main1 .contact h2::after,
  #main1 .contact_preview h2::after,
  #main1 .contact_send h2::after,
  #main1 .contact_error h2::after {
    right: -0.7rem;
  }
}
#main1 .contact .contact_contents,
#main1 .contact_preview .contact_contents,
#main1 .contact_send .contact_contents,
#main1 .contact_error .contact_contents {
  margin: 0 auto;
  max-width: 100rem;
  font-size: 1.2em;
}
#main1 .contact .contact_text,
#main1 .contact_preview .contact_text,
#main1 .contact_send .contact_text,
#main1 .contact_error .contact_text {
  margin-top: 5rem;
}
@media screen and (max-width: 959px) {
  #main1 .contact .contact_text,
  #main1 .contact_preview .contact_text,
  #main1 .contact_send .contact_text,
  #main1 .contact_error .contact_text {
    margin-top: 2rem;
  }
}
#main1 .contact .contact_form,
#main1 .contact_preview .contact_form,
#main1 .contact_send .contact_form,
#main1 .contact_error .contact_form {
  margin-top: 6rem;
  list-style: none;
}
@media screen and (max-width: 959px) {
  #main1 .contact .contact_form,
  #main1 .contact_preview .contact_form,
  #main1 .contact_send .contact_form,
  #main1 .contact_error .contact_form {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 519px) {
  #main1 .contact .contact_form,
  #main1 .contact_preview .contact_form,
  #main1 .contact_send .contact_form,
  #main1 .contact_error .contact_form {
    margin-top: 3rem;
  }
}
#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: solid 1px #9e9e9e;
}
@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;
  width: 22%;
  font-weight: 500;
  text-align: left;
  background-color: #fff;
  border-left: solid 1px #9e9e9e;
  border-right: solid 1px #9e9e9e;
}
@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 {
    width: 26%;
  }
}
@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-bottom: 1rem;
    width: 100%;
    font-weight: bold;
  }
}
#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: #c30d23;
}
#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: 2rem;
  width: 78%;
  text-align: left;
  background-color: #fff;
  border-right: solid 1px #9e9e9e;
}
@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 {
    width: 74%;
  }
}
@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-top: 0;
    width: 100%;
    border-left: solid 1px #9e9e9e;
  }
}
#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:nth-last-child(2),
#main1 .contact_preview .contact_form li:nth-last-child(2),
#main1 .contact_send .contact_form li:nth-last-child(2),
#main1 .contact_error .contact_form li:nth-last-child(2) {
  border-bottom: solid 1px #9e9e9e;
}
#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-right: 0.5rem;
  width: auto !important;
}
#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 6rem 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: 5rem;
  padding: 1.8rem 1rem;
  width: 28rem;
  width: min(100%, 39rem);
  height: auto;
  font-size: 1.3em;
  font-weight: 500;
  color: white;
  letter-spacing: 1px;
  background-color: #c30d23;
  border-radius: 1rem;
}
#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: 5rem;
  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: 4rem;
    font-size: 0.7em;
  }
}
#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;
  max-width: 100rem;
}
@media screen and (max-width: 1040px) {
  .parts6 {
    width: calc(100% - 4rem);
  }
}
.parts6 h2 {
  display: block;
  position: relative;
  margin: 5rem auto 4rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #c30d23;
  font-weight: bold;
  font-size: 2.2em;
}
@media screen and (max-width: 519px) {
  .parts6 h2 {
    margin: 4rem auto 3rem;
    max-width: 85%;
    font-size: 7vw;
  }
}
.parts6 h2::before, .parts6 h2::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -2.5rem;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
  aspect-ratio: 58/108;
  width: auto;
  height: min(80%, 6rem);
  background-image: url(https://ssl.samidare.jp/~tukiyamaf/tuyahime/p/images/yajirushi_L.png);
  background-size: contain;
}
@media screen and (max-width: 519px) {
  .parts6 h2::before, .parts6 h2::after {
    left: -1.5rem;
    height: min(80%, 4rem);
  }
}
.parts6 h2::after {
  left: auto;
  right: -2.5rem;
  -webkit-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
  background-image: url(https://ssl.samidare.jp/~tukiyamaf/tuyahime/p/images/yajirushi_R.png);
}
@media screen and (max-width: 519px) {
  .parts6 h2::after {
    right: -1.5rem;
  }
}
.parts6 #privacy {
  padding: 3rem 4rem;
  background-color: #fff;
  border: solid 1px #fffde8;
}
@media screen and (max-width: 959px) {
  .parts6 #privacy {
    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.css.map */