@charset "UTF-8";
/*-------------------------------------------
 variable
-------------------------------------------*/
/***  color  ***/
/***  font-size  ***/
/***  screen  ***/
/***  font(google)  ***/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Noto+Serif+JP:wght@700;900&display=swap");
/***  point  ***/
/*-------------------------------------------
 reset
-------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video,
main {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: baseline;
  caret-color: transparent; }

ol, ul {
  list-style: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-appearance: none !important;
  border-radius: 0; }
  input[type="submit"]::-webkit-search-decoration,
  input[type="button"]::-webkit-search-decoration {
    display: none; }
  input[type="submit"]::focus,
  input[type="button"]::focus {
    outline-offset: -2px; }

/*-------------------------------------------
 style tag
-------------------------------------------*/
html {
  font-size: 62.5%; }
  @media screen and (max-width: 767px) {
    html {
      font-size: 52.5%; } }

body {
  font-family: 'Noto Sans JP','游ゴシック Medium',YuGothic,YuGothicM,'Hiragino Kaku Gothic ProN','Hiragino Kaku Gothic Pro',メイリオ,Meiryo,sans-serif;
  font-weight: 400;
  color: #333333;
  font-size: 2rem;
  line-height: 1;
  padding-top: 7.3rem; }

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

button {
  background: none;
  border: none;
  padding: 0; }

a {
  color: #333333;
  text-decoration: none;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s; }
  a:hover {
    opacity: 0.6;
    -webkit-transition: all ease-in-out .2s;
    transition: all ease-in-out .2s; }

img {
  width: 100%;
  height: auto; }

article {
  width: 100%; }

.bg.open {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5); }

/*-------------------------------------------
 header
-------------------------------------------*/
header {
  background-color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 100%;
  width: 100%;
  border-bottom: 1px solid #EEE;
  position: fixed;
  top: 0;
  z-index: 999; }
  @media screen and (max-width: 767px) {
    header {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; } }
  header .header-left {
    width: 250px;
    padding: 1.0rem 2.0rem; }
    header .header-left a {
      display: block; }
  header .header-right {
    width: calc(100% - 250px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end; }
    @media screen and (max-width: 767px) {
      header .header-right {
        display: none; }
        header .header-right.open {
          background-color: #FFFFFF;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          width: 30.0rem;
          position: fixed;
          right: 0;
          -webkit-transition: all .2s ease-in-out;
          transition: all .2s ease-in-out;
          -webkit-transform: none;
                  transform: none; } }
    header .header-right .nav-list {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      @media screen and (max-width: 767px) {
        header .header-right .nav-list {
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
          width: 100%; } }
      header .header-right .nav-list li {
        margin-left: 2.0rem; }
        @media screen and (max-width: 767px) {
          header .header-right .nav-list li {
            width: 100%;
            margin-left: 0;
            border-top: 1px solid #DDD; } }
        header .header-right .nav-list li:nth-last-of-type(1) {
          margin-right: 2.0rem; }
          @media screen and (max-width: 767px) {
            header .header-right .nav-list li:nth-last-of-type(1) {
              margin-right: 0; } }
        header .header-right .nav-list li a {
          font-size: 1.8rem;
          font-weight: 500;
          line-height: 1.0;
          padding: 0.5rem; }
          @media screen and (max-width: 767px) {
            header .header-right .nav-list li a {
              display: block;
              padding: 2.0rem 2.0rem;
              position: relative; }
              header .header-right .nav-list li a::after {
                content: '';
                width: 1.0rem;
                height: 1.0rem;
                border-top: solid 2px #f0e08b;
                border-right: solid 2px #f0e08b;
                -webkit-transform: rotate(45deg);
                        transform: rotate(45deg);
                position: absolute;
                top: calc(50% - 0.5rem);
                right: 2rem; } }

.header-icon {
  display: none; }
  @media screen and (max-width: 767px) {
    .header-icon {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      width: calc(100% - 250px);
      padding-right: 2.0rem; }
      .header-icon .icon-menu-wrap {
        background: #f0e08b;
        width: 6.4rem;
        height: 6.0rem;
        padding: 1.0rem;
        border-radius: 0.2rem;
        display: block;
        cursor: pointer;
        z-index: 999; }
        .header-icon .icon-menu-wrap .menu {
          position: relative;
          width: 100%;
          height: 100%; }
          .header-icon .icon-menu-wrap .menu.open span.line-1 {
            bottom: 0;
            margin: auto;
            -webkit-transform: rotate(45deg);
                    transform: rotate(45deg); }
          .header-icon .icon-menu-wrap .menu.open span.line-2 {
            opacity: 0.0;
            left: 6.0rem; }
          .header-icon .icon-menu-wrap .menu.open span.line-3 {
            top: 0;
            margin: auto;
            -webkit-transform: rotate(-45deg);
                    transform: rotate(-45deg); }
          .header-icon .icon-menu-wrap .menu span {
            background: #FFFFFF;
            display: block;
            width: 100%;
            height: 0.4rem;
            position: absolute;
            right: 0;
            -webkit-transition: all ease-out .3s;
            transition: all ease-out .3s; }
            .header-icon .icon-menu-wrap .menu span.line-1 {
              top: 0.2rem; }
            .header-icon .icon-menu-wrap .menu span.line-2 {
              opacity: 1.0;
              top: calc(50% - 0.2rem); }
            .header-icon .icon-menu-wrap .menu span.line-3 {
              bottom: 0.2rem; } }

/*-------------------------------------------
 main
-------------------------------------------*/
main {
  background-image: url(./../img/bk_02.jpg);
  background-position: bottom center;
  background-size: contain;
  background-repeat: no-repeat; }
  @media screen and (max-width: 767px) {
    main {
      background: none; } }

.view-wrap {
  background-image: url(./../img/bk_01.jpg);
  background-position: top center;
  background-size: cover;
  width: 100%;
  height: 75.0rem;
  border-bottom: #EEE;
  -webkit-box-shadow: 2px 2px 10px 1px rgba(0, 0, 0, 0.05);
          box-shadow: 2px 2px 10px 1px rgba(0, 0, 0, 0.05);
  margin-bottom: 8.0rem; }
  .view-wrap .view {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative; }
    .view-wrap .view h1 {
      max-width: 800px;
      height: auto;
      padding: 0 2.0rem 20.0rem;
      padding-bottom: 30.0rem; }
      @media screen and (max-width: 375px) {
        .view-wrap .view h1 .pc {
          display: none; } }
      .view-wrap .view h1 .sp {
        display: none; }
        @media screen and (max-width: 375px) {
          .view-wrap .view h1 .sp {
            display: block; } }
    .view-wrap .view .wrap {
      width: 100%;
      position: absolute;
      left: 0;
      bottom: 0; }
    .view-wrap .view .story {
      padding-left: 2.0rem;
      padding-right: 2.0rem; }
      .view-wrap .view .story p {
        background-color: #f0e08b;
        font-size: 1.6rem;
        font-weight: 400;
        line-height: 1.8;
        text-align: center;
        max-width: 700px;
        padding: 2.5rem 1.0rem;
        margin-left: auto;
        margin-right: auto; }
        .view-wrap .view .story p span {
          display: block; }
          @media screen and (max-width: 767px) {
            .view-wrap .view .story p span {
              display: inline; } }
        .view-wrap .view .story p b {
          font-size: 1.8rem;
          font-weight: 700;
          line-height: 1.6;
          display: block;
          margin-bottom: 0.5rem; }
    .view-wrap .view .arrow {
      max-width: 50px;
      margin: 3.0rem auto; }
    .view-wrap .view .sub-title {
      width: 300px;
      position: absolute;
      right: 0;
      bottom: 10%; }

section {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto; }

.arrow {
  max-width: 50px;
  margin: 3rem auto; }

.anchor {
  opacity: 0;
  display: block;
  margin-top: -100px;
  padding-top: 100px;
  position: relative;
  z-index: 1; }

.outline {
  margin-bottom: 7.0rem; }
  .outline h2 {
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
    margin: 0 auto 5.0rem; }
  .outline .box-large {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 700px;
    width: 100%;
    margin: 0 auto 5.0rem;
    padding-left: 2.0rem;
    padding-right: 2.0rem; }
    .outline .box-large .title {
      width: 60px; }
    .outline .box-large .cont-row {
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      width: calc(100% - 60px);
      padding-left: 3.0rem; }
      @media screen and (max-width: 767px) {
        .outline .box-large .cont-row {
          -ms-flex-wrap: wrap;
              flex-wrap: wrap; } }
      .outline .box-large .cont-row .day {
        width: 300px;
        padding-right: 2.0rem;
        margin-bottom: 1.0rem; }
        @media screen and (max-width: 767px) {
          .outline .box-large .cont-row .day {
            width: 100%;
            margin-bottom: 2.0rem; } }
      .outline .box-large .cont-row .time {
        font-family: 'Noto Serif JP', serif;
        font-size: 2.4rem;
        font-weight: 500;
        line-height: 1.4; }
        .outline .box-large .cont-row .time b {
          font-size: 3.2rem;
          font-weight: 700;
          display: block; }
          @media screen and (max-width: 767px) {
            .outline .box-large .cont-row .time b {
              display: block; } }
    .outline .box-large .cont-col {
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
      width: calc(100% - 60px);
      padding-left: 3.0rem; }
      .outline .box-large .cont-col .name {
        font-family: 'Noto Serif JP', serif;
        font-size: 2.8rem;
        font-weight: 500;
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: end;
            -ms-flex-align: end;
                align-items: flex-end;
        margin-bottom: 1.0rem; }
        @media screen and (max-width: 767px) {
          .outline .box-large .cont-col .name {
            -webkit-box-align: start;
                -ms-flex-align: start;
                    align-items: flex-start;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                -ms-flex-direction: column;
                    flex-direction: column; } }
        .outline .box-large .cont-col .name b {
          font-size: 3.8rem;
          font-weight: 700;
          padding-right: 1.0rem; }
          @media screen and (max-width: 767px) {
            .outline .box-large .cont-col .name b {
              display: block;
              margin-bottom: 1.0rem; } }
      .outline .box-large .cont-col .price-wrap .price {
        font-size: 2rem;
        line-height: 1.6;
        margin-bottom: 0.5rem; }
      .outline .box-large .cont-col .price-wrap .caution {
        background-color: #FFFFFF;
        font-size: 1.6rem;
        font-weight: 500;
        line-height: 1.4;
        border: 1px solid #333333;
        border-radius: 0.5rem;
        padding: 1.0rem 1.5rem; }
  .outline .box-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 700px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 2.0rem 2.0rem 1.0rem;
    border: 1px solid #999999;
    border-radius: 0.5rem; }
    @media screen and (max-width: 767px) {
      .outline .box-wrap {
        border-left: none;
        border-right: none;
        border-radius: 0; } }
    .outline .box-wrap .box-right {
      width: calc(100% - 200px);
      padding-left: 2.5rem; }
      @media screen and (max-width: 767px) {
        .outline .box-wrap .box-right {
          width: calc(100% - 150px); } }
      .outline .box-wrap .box-right dl dt {
        font-size: 1.8rem;
        font-weight: 700;
        line-height: 1.4;
        margin-bottom: 0.5rem; }
        .outline .box-wrap .box-right dl dt span {
          color: #F6A700; }
      .outline .box-wrap .box-right dl dd {
        font-size: 1.8rem;
        font-weight: 400;
        line-height: 1.4;
        margin-bottom: 1.0rem; }
    .outline .box-wrap .box-left {
      width: 200px; }
      @media screen and (max-width: 767px) {
        .outline .box-wrap .box-left {
          width: 150px; } }
      .outline .box-wrap .box-left .item {
        background-color: #000000;
        color: #FFFFFF;
        font-size: 1.8rem;
        font-weight: 500;
        text-align: center;
        padding: 1.0rem; }
      .outline .box-wrap .box-left .name {
        font-family: 'Noto Serif JP', serif;
        font-size: 2rem;
        font-weight: 500;
        letter-spacing: 0.2rem;
        line-height: 1.4;
        text-align: center; }
        .outline .box-wrap .box-left .name b {
          font-size: 2.4rem;
          font-weight: 700; }
      .outline .box-wrap .box-left .role {
        font-size: 1.8rem;
        font-weight: 500;
        line-height: 1.4;
        text-align: center; }
  .outline .box-medium {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 700px;
    width: 100%;
    margin: 0 auto 5.0rem; }
    .outline .box-medium .title {
      width: 60px; }
    .outline .box-medium .cont-row {
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      width: calc(100% - 60px);
      padding-left: 3.0rem; }

.request .title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 3.0rem; }
  .request .title-wrap img {
    width: 200px; }
.request .frame-wrap {
  background-color: rgba(255, 255, 255, 0.8);
  border: 2px solid #999999;
  border-radius: 5px;
  padding: 1.0rem;
  margin-bottom: 2.0rem; }
  @media screen and (max-width: 767px) {
    .request .frame-wrap {
      border: none;
      padding-left: 0;
      padding-right: 0; } }
  .request .frame-wrap .frame {
    border: 1px solid #999999;
    border-radius: 3px;
    padding: 2.5rem; }
    @media screen and (max-width: 767px) {
      .request .frame-wrap .frame {
        border-left: none;
        border-right: none;
        border-radius: 0; } }
.request .serious {
  color: #C7000B;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  border: 2px solid #C7000B;
  padding: 1.0rem 3.0rem;
  margin: 0 auto 3.0rem; }
.request .box-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  margin-bottom: 3.0rem; }
  .request .box-wrap .box-left {
    width: 50%;
    padding-right: 2.5rem;
    border-right: 1px solid #333333; }
    @media screen and (max-width: 767px) {
      .request .box-wrap .box-left {
        width: 100%;
        padding-right: 0;
        border-right: none;
        border-bottom: 1px dashed #CCC;
        padding-bottom: 3.0rem;
        margin-bottom: 3.0rem; } }
  .request .box-wrap .box-right {
    width: 50%;
    padding-left: 2.5rem; }
    @media screen and (max-width: 767px) {
      .request .box-wrap .box-right {
        width: 100%;
        padding-left: 0; } }
  .request .box-wrap .box-small {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 1.0rem; }
    .request .box-wrap .box-small .box-small-left {
      width: 60px; }
      .request .box-wrap .box-small .box-small-left.net {
        width: 90px; }
    .request .box-wrap .box-small .box-small-right {
      width: calc(100% - 60px);
      padding-left: 2.0rem; }
      .request .box-wrap .box-small .box-small-right.net {
        width: calc(100% - 90px); }
      .request .box-wrap .box-small .box-small-right .title {
        background-color: #000000;
        color: #FFFFFF;
        font-size: 1.8rem;
        font-weight: 500;
        line-height: 1.2;
        text-align: center;
        padding: 0.5rem 1.0rem;
        margin-bottom: 1.0rem; }
      .request .box-wrap .box-small .box-small-right .txt {
        font-size: 1.6rem;
        line-height: 1.4;
        margin-bottom: 0.5rem; }
  .request .box-wrap .kome {
    font-size: 1.6rem;
    line-height: 1.4;
    margin-bottom: 1.0rem; }
    .request .box-wrap .kome a {
      color: #C7000B;
      text-decoration: underline; }
  .request .box-wrap .button {
    text-align: center;
    margin-top: 2.0rem;
    margin-bottom: 2.0rem; }
    .request .box-wrap .button a {
      background-color: #C7000B;
      color: #FFFFFF;
      font-size: 2rem;
      font-weight: 700;
      line-height: 1.2;
      text-align: left;
      display: block;
      border-radius: 0.5rem;
      padding: 3.0rem 3.0rem;
      position: relative; }
      .request .box-wrap .button a::after {
        content: '';
        width: 1rem;
        height: 1rem;
        border-top: solid 3px #FFFFFF;
        border-right: solid 3px #FFFFFF;
        -webkit-transform: rotate(45deg);
                transform: rotate(45deg);
        position: absolute;
        top: calc(50% - 0.4rem);
        right: 2.5rem; }
  .request .box-wrap .line-wrap {
    border: 1px dashed #666666;
    padding: 1.5rem 2.0rem;
    margin-bottom: 1.5rem; }
    .request .box-wrap .line-wrap h4 {
      font-size: 1.8rem;
      line-height: 1.4;
      margin-bottom: 0.5rem; }
    .request .box-wrap .line-wrap ul li {
      font-size: 1.8rem;
      line-height: 1.4;
      margin-bottom: 0.5rem; }
      .request .box-wrap .line-wrap ul li span {
        color: #F6A700; }
  .request .box-wrap .address {
    font-size: 1.8rem;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 0.5rem; }
    .request .box-wrap .address span {
      color: #F6A700; }
  .request .box-wrap .supply {
    font-size: 1.6rem;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 2.0rem; }
    .request .box-wrap .supply span {
      color: #C7000B; }
  .request .box-wrap .closing {
    background-color: #FFFFFF;
    font-family: 'Noto Serif JP', serif;
    color: #C7000B;
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.2;
    border: 2px solid #C7000B;
    padding: 1.0rem; }
    .request .box-wrap .closing b {
      font-size: 3.2rem; }
    .request .box-wrap .closing u {
      text-decoration: none;
      margin-left: -1.5rem; }
    .request .box-wrap .closing span {
      color: #000000;
      font-family: 'Noto Sans JP';
      display: block;
      font-size: 1.8rem;
      font-weight: 500; }
.request ul.list.orange {
  padding-left: 2.0rem;
  padding-right: 2.0rem;
  padding-bottom: 0.5rem; }
  @media screen and (max-width: 767px) {
    .request ul.list.orange {
      padding-bottom: 2.5rem; } }
  .request ul.list.orange li {
    color: #F6A700; }
    @media screen and (max-width: 767px) {
      .request ul.list.orange li {
        color: #333333; } }
.request ul.list li {
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 0.5rem;
  padding-left: 2.0rem;
  text-indent: -2.0rem; }
  .request ul.list li span {
    color: #F6A700; }

main.policy {
  background: none; }
  main.policy section {
    margin-top: 8.0rem;
    margin-bottom: 10.0rem; }
    main.policy section h2 {
      font-size: 3.2rem;
      font-weight: 500;
      line-height: 1.4;
      margin-top: 5.0rem;
      margin-bottom: 5.0rem; }
    main.policy section h3 {
      font-size: 2.4rem;
      line-height: 1.4;
      font-weight: 500;
      margin-top: 2.0rem;
      margin-bottom: 2.0rem; }
    main.policy section ul {
      list-style: disc;
      padding-left: 3rem; }
    main.policy section p, main.policy section li {
      font-size: 1.8rem;
      line-height: 2.0;
      text-align: justify;
      margin-top: 1.0rem;
      margin-bottom: 1.0rem; }

main.close {
  background: none; }
  main.close .view-wrap {
    height: 100%;
    position: fixed; }
  main.close .title-wrap {
    padding: 5.0rem;
    position: relative;
    top: calc(50% - 25.0rem); }
    @media screen and (max-width: 375px) {
      main.close .title-wrap {
        padding-left: 2.0rem;
        padding-right: 2.0rem; } }
    @media screen and (max-width: 375px) {
      main.close .title-wrap {
        top: calc(50% - 35.0rem); } }
    main.close .title-wrap .title {
      background-color: #f0e08b;
      font-size: 2.4rem;
      font-weight: 700;
      line-height: 1.6;
      padding: 3.0rem;
      text-align: center; }
      main.close .title-wrap .title span {
        font-size: 5rem;
        font-weight: 500;
        line-height: 1.4;
        display: block;
        padding-top: 1.0rem; }

/*-------------------------------------------
 footer
-------------------------------------------*/
.other-wrap {
  background-color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 6.0rem;
  padding-bottom: 8.0rem; }
  @media screen and (max-width: 767px) {
    .other-wrap {
      padding: 2.0rem 2.0rem 0; } }
  .other-wrap .other {
    background-color: #111;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border: 2px solid #FFFFFF; }
    @media screen and (max-width: 767px) {
      .other-wrap .other {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
    .other-wrap .other h3 {
      background-color: #FFFFFF;
      color: #000000;
      font-family: 'Noto Serif JP', serif;
      font-weight: 500;
      line-height: 1.2;
      padding: 1.0rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      height: 100%;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      @media screen and (max-width: 767px) {
        .other-wrap .other h3 {
          width: 100%;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          text-align: center; } }
    .other-wrap .other .cont {
      padding: 1.0rem 3.5rem; }
      @media screen and (max-width: 767px) {
        .other-wrap .other .cont {
          padding-left: 2.0rem;
          padding-right: 2.0rem; } }
      .other-wrap .other .cont p {
        color: #FFFFFF;
        font-size: 1.8rem;
        line-height: 1.6; }
        .other-wrap .other .cont p strong {
          font-family: 'Noto Serif JP', serif;
          font-size: 2.4rem;
          font-weight: 500;
          line-height: 2.0;
          display: block; }
          @media screen and (max-width: 375px) {
            .other-wrap .other .cont p strong {
              line-height: 1.4;
              margin-top: 1.0rem;
              margin-bottom: 1.0rem; } }
      .other-wrap .other .cont .supply {
        text-align: right;
        margin-top: 1.0rem; }

footer.policy small {
  color: #FFFFFF;
  display: block;
  text-align: center;
  padding-top: 1.0rem;
  padding-bottom: 1.0rem; }

footer {
  background-color: #000000;
  border-top: 1px solid #CCC; }
  @media screen and (max-width: 767px) {
    footer {
      border-top: none; } }
  footer .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding: 3.0rem 2.0rem; }
    @media screen and (max-width: 767px) {
      footer .wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
    footer .wrap p {
      color: #FFFFFF;
      font-size: 1.8rem;
      font-weight: 400;
      line-height: 1.6; }
      footer .wrap p strong {
        font-weight: 500; }
        @media screen and (max-width: 767px) {
          footer .wrap p strong {
            display: block; } }
    @media screen and (max-width: 767px) {
      footer .wrap div {
        width: 100%;
        text-align: center;
        margin-top: 2.0rem; } }
    footer .wrap div a {
      color: #FFFFFF;
      text-decoration: underline; }
    footer .wrap small {
      color: #FFFFFF;
      text-align: center;
      padding: 1.0rem; }

/* */
