@charset "UTF-8";
/* common
----------------------------------------------------------- */
body {
  background: #faf9f2;
  font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", 游ゴシック, YuGothic, メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  color: #734a00;
  overflow: hidden; }

#wrapper {
  width: auto;
  margin: 0 auto;
  background: url("../images/common/head_bg_l.png") no-repeat top left;
  border-top: 1px solid transparent; }

@media screen and (min-width: 769px) and (max-width: 1280px) {
  #wrapper {
    background: url("../images/common/head_bg_l.png") no-repeat top left;
    background-size: 58vw; } }
@media screen and (min-width: 769px) {
  .sp {
    display: none; } }

p {
  line-height: 1.8; }

a {
  color: #5fb0b8;
  text-decoration: none;
  transition: all .3s; }

a:hover {
  text-decoration: underline; }

.en {
  font-family: 'Amatic SC', cursive, serif; }

.num {
  font-family: 'Amatic SC', cursive, serif; }

::-moz-selection {
  background: #ed8686;
  color: #fff; }

::selection {
  background: #ed8686;
  color: #fff; }

@media screen and (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none; } }
.btn-main {
  transition: all .3s; }
  .btn-main a {
    display: block;
    text-align: center;
    line-height: 70px;
    position: relative;
    border-radius: 70px;
    transition: all .3s; }
    .btn-main a span {
      color: #fff;
      font-size: 18px;
      font-size: 1.8rem;
      font-weight: 700;
      background: url("../images/common/icon_arrow_w.svg") no-repeat 90% 48%;
      line-height: 70px;
      letter-spacing: 0.1em;
      position: relative;
      z-index: 1;
      display: block;
      transition: all .3s; }
    .btn-main a:hover {
      text-decoration: none;
      filter: saturate(120%); }
      .btn-main a:hover span {
        background: url("../images/common/icon_arrow_w.svg") no-repeat 92% 48%; }

.btn-main.btn-pink a {
  background: #ed8686; }
  .btn-main.btn-pink a::before {
    content: '';
    position: absolute;
    background: url("../images/common/btn_corner_l.png") no-repeat top left;
    width: 78px;
    height: 70px;
    top: 0;
    left: -1px; }
  .btn-main.btn-pink a::after {
    content: '';
    position: absolute;
    background: url("../images/common/btn_corner_r.png") no-repeat top right;
    width: 78px;
    height: 70px;
    top: 0;
    right: -1px; }
  .btn-main.btn-pink a span {
    color: #fff;
    background: url("../images/common/icon_arrow_w.svg") no-repeat 90% 48%; }
  .btn-main.btn-pink a:hover span {
    background: url("../images/common/icon_arrow_w.svg") no-repeat 92% 48%; }

.btn-main.btn-white a {
  background: #fff; }
  .btn-main.btn-white a::before {
    content: '';
    position: absolute;
    background: url("../images/common/btn_corner_l_w.png") no-repeat top left;
    width: 78px;
    height: 70px;
    top: 0;
    left: -1px; }
  .btn-main.btn-white a::after {
    content: '';
    position: absolute;
    background: url("../images/common/btn_corner_r_w.png") no-repeat top right;
    width: 78px;
    height: 70px;
    top: 0;
    right: -1px; }
  .btn-main.btn-white a span {
    color: #ed8686;
    background: url("../images/common/icon_arrow_pink.svg") no-repeat 90% 48%; }
  .btn-main.btn-white a:hover span {
    background: url("../images/common/icon_arrow_pink.svg") no-repeat 92% 48%; }

.btn-sub {
  transition: all .3s; }
  .btn-sub a {
    display: block;
    text-align: center;
    line-height: 50px;
    position: relative;
    border-radius: 25px;
    transition: all .3s; }
    .btn-sub a span {
      font-size: 15px;
      font-size: 1.5rem;
      font-weight: 700;
      line-height: 50px;
      letter-spacing: 0.1em;
      position: relative;
      z-index: 1;
      display: block;
      transition: all .3s; }
    .btn-sub a:hover {
      text-decoration: none;
      filter: saturate(120%); }

.btn-sub.btn-blue a {
  background: #dff0ef; }
  .btn-sub.btn-blue a span {
    color: #5fb0b8;
    background: url("../images/common/icon_arrow_pink.svg") no-repeat 90% 48%; }
  .btn-sub.btn-blue a:hover span {
    background: url("../images/common/icon_arrow_pink.svg") no-repeat 92% 48%; }

.animated-swing {
  animation: swing 1s steps(2, start) infinite; }

@keyframes swing {
  0% {
    transform: rotate(4deg); }
  to {
    transform: rotate(-2deg); } }
.animated-fade {
  opacity: 0; }

.fade {
  animation-name: fadeUpAnime;
  animation-duration: .2s;
  animation-delay: .3s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out; }

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(60px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
/* header
----------------------------------------------------------- */
.top-head {
  width: 100%;
  clear: both;
  margin: 0 auto;
  padding: 0;
  line-height: 1;
  z-index: 999; }

.top-head-inner {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 999;
  transition: all .3s; }

/*logo*/
.head-logo {
  padding: 50px 0 0 50px; }
  .head-logo img {
    width: 293px;
    height: auto;
    transition: all .3s; }

@media screen and (min-width: 769px) and (max-width: 1280px) {
  .head-logo {
    padding: 50px 0 0 20px; }
    .head-logo img {
      width: 243px; } }
/*ヘッダー右*/
.head-nav {
  width: auto;
  position: relative;
  padding-right: 40px; }

.head-contact {
  display: flex;
  justify-content: flex-end; }

.head-contact-nav {
  padding-top: 24px;
  margin-right: 18px; }

.head-contact-tel {
  position: relative;
  padding: 33px 0 0 60px;
  margin-right: 24px; }
  .head-contact-tel::before {
    content: '';
    position: absolute;
    background: url("../images/common/head_tel@2x.png") no-repeat top left;
    background-size: 50px;
    width: 50px;
    height: 50px;
    top: 30px;
    left: 0; }
  .head-contact-tel a {
    font-size: 22px;
    font-size: 2.2rem;
    font-weight: 700;
    color: #734a00;
    display: block;
    letter-spacing: 0.04em; }
  .head-contact-tel .small {
    font-size: 12px;
    font-size: 1.2rem;
    margin-top: 0.2em;
    margin-left: -0.5em; }

.head-contact-btn {
  width: 200px;
  padding-top: 30px;
  transition: all .3s; }
  .head-contact-btn a {
    text-align: center;
    background: #ed8686;
    display: block;
    line-height: 50px;
    position: relative;
    transition: all .3s; }
    .head-contact-btn a::before {
      content: '';
      position: absolute;
      background: url("../images/common/head_contact_l.png") no-repeat top left;
      width: 50px;
      height: 50px;
      top: 0;
      left: 0; }
    .head-contact-btn a::after {
      content: '';
      position: absolute;
      background: url("../images/common/head_contact_r.png") no-repeat top right;
      width: 50px;
      height: 50px;
      top: 0;
      right: 0; }
    .head-contact-btn a span {
      color: #fff;
      font-size: 17px;
      font-size: 1.7rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      padding-left: 1.5em;
      display: block;
      position: relative;
      z-index: 1;
      background: url("../images/common/icon_contact.svg") no-repeat 16% 52%;
      background-size: 20px;
      transition: all .3s; }
    .head-contact-btn a:hover {
      text-decoration: none;
      filter: saturate(120%); }

/* nav
----------------------------------------------------------- */
.global-nav {
  display: block;
  margin-top: 1.2em; }
  .global-nav .menu {
    display: flex;
    justify-content: flex-end; }
    .global-nav .menu .gnav {
      margin-left: 2em; }
      .global-nav .menu .gnav a {
        color: #734a00;
        font-weight: 700;
        display: block;
        font-size: 16px;
        font-size: 1.6rem;
        padding: 0.7em 0 1em;
        letter-spacing: 0.1em;
        position: relative; }
        .global-nav .menu .gnav a::after {
          content: '';
          position: absolute;
          left: 0;
          bottom: 0;
          width: 100%;
          height: 1px;
          background: url("../images/common/gnav_dot.png") repeat-x;
          transition: all .3s; }
        .global-nav .menu .gnav a:hover {
          color: #ed8686;
          text-decoration: none; }
          .global-nav .menu .gnav a:hover::after {
            width: 20px; }
      .global-nav .menu .gnav.g-service a {
        background: url("../images/common/icon_g_service.svg") no-repeat 0 50%;
        padding-left: 1.8em; }
      .global-nav .menu .gnav.g-profile a {
        background: url("../images/common/icon_g_profile.svg") no-repeat 0 50%;
        padding-left: 1.8em; }
      .global-nav .menu .gnav.g-faq a {
        background: url("../images/common/icon_g_faq.svg") no-repeat 0 50%;
        padding-left: 2em; }
      .global-nav .menu .gnav.g-blog a {
        background: url("../images/common/icon_g_blog.svg") no-repeat 0 45%;
        padding-left: 1.6em; }
    .global-nav .menu .snsnav {
      position: relative;
      margin-left: 0.5em; }
      .global-nav .menu .snsnav a {
        width: 40px;
        height: 40px;
        background: #fff;
        border-radius: 20px;
        display: flex;
        justify-content: center;
        align-items: center; }
        .global-nav .menu .snsnav a:hover {
          background: #f7e7e4; }
      .global-nav .menu .snsnav.s-twitter {
        margin-left: 2.4em; }

@media screen and (min-width: 769px) {
  .top-head-inner.fixed {
    background: url("../images/common/bg_pink.png");
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    z-index: 999; }
    .top-head-inner.fixed .head-logo {
      padding: 15px 0 0 24px; }
      .top-head-inner.fixed .head-logo img {
        width: 233px;
        height: auto; }
    .top-head-inner.fixed .head-nav {
      width: auto;
      position: relative;
      padding-right: 40px; }
    .top-head-inner.fixed .head-contact {
      display: none; }
    .top-head-inner.fixed .global-nav {
      margin-top: 1.3em; }
      .top-head-inner.fixed .global-nav .menu .gnav a::after {
        display: none; }
      .top-head-inner.fixed .global-nav .menu .snsnav {
        display: none; } }
/* visual
----------------------------------------------------------- */
#tp-visual {
  width: 100%;
  clear: both;
  position: relative;
  margin-top: 18px; }
  #tp-visual::after {
    content: '';
    position: absolute;
    background: url("../images/common/head_bg_r.png") no-repeat top right;
    width: 855px;
    height: 822px;
    top: 70px;
    right: 0;
    z-index: -1; }

@media screen and (min-width: 769px) and (max-width: 1280px) {
  #tp-visual::after {
    background-size: 47vw; } }
.tp-visual-inner {
  display: flex;
  padding-left: 100px;
  position: relative; }

.tp-visual-img {
  width: 100%;
  max-width: 1146px; }

.tp-visual-copy {
  margin-top: 140px;
  margin-left: -14vw;
  padding-right: 40px;
  z-index: 3;
  position: relative; }

@media screen and (min-width: 2000px) {
  .tp-visual-inner {
    padding-left: 10vw; }

  .tp-visual-copy {
    margin-left: -8vw; } }
/*パーツ*/
.tp-parts01 {
  position: absolute;
  top: 50px;
  left: 0;
  z-index: 2; }

.tp-parts02 {
  position: absolute;
  top: 90px;
  right: 0;
  z-index: 2; }

/*固定ボタン*/
.side-contact {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 99; }
  .side-contact a img {
    width: 184px;
    height: 178px;
    transition: .2s ease; }
  .side-contact a:hover {
    filter: saturate(120%); }
    .side-contact a:hover img {
      transform: translateY(-10px);
      transition: .2s ease-out; }

/* #tp-what
----------------------------------------------------------- */
#tp-what {
  width: 100%;
  clear: both;
  padding: 160px 0;
  position: relative; }

.tp-what-inner {
  width: 1200px;
  margin: 0 auto;
  clear: both;
  display: flex;
  justify-content: space-between; }

.tp-what-content {
  width: 660px; }
  .tp-what-content .tp-what-en {
    text-align: center; }
  .tp-what-content h2 {
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.05em;
    margin-top: 2em;
    margin-bottom: 1.5em;
    padding-bottom: 1em;
    background: url("../images/common/line_dot.png") no-repeat bottom center;
    text-align: center; }
  .tp-what-content .tp-what-detail {
    display: flex;
    justify-content: space-between; }
  .tp-what-content .what-img {
    margin-left: -30px; }
  .tp-what-content .what-txt {
    flex: 1;
    padding-left: 1.5em; }
    .tp-what-content .what-txt p {
      margin-bottom: 1.5em; }

.tp-what-exam {
  position: relative;
  width: 540px;
  z-index: 3; }
  .tp-what-exam .what-exam01 {
    position: absolute;
    top: -60px;
    left: 0; }
  .tp-what-exam .what-exam02 {
    position: absolute;
    top: 220px;
    right: 200px; }
  .tp-what-exam .what-exam03 {
    position: absolute;
    top: 0;
    right: 0; }

/*パーツ*/
.tp-parts03 {
  position: absolute;
  top: 430px;
  right: 80px;
  z-index: 2; }

/* #tp-about
----------------------------------------------------------- */
#tp-about {
  width: 100%;
  clear: both;
  position: relative;
  background: url("../images/common/bg_pink.png");
  padding-bottom: 80px; }

.tp-about-inner {
  background: url("../images/tp_about_top.jpg") top center no-repeat;
  background-size: contain; }

.tp-about-ttl {
  text-align: center;
  position: relative; }
  .tp-about-ttl::before {
    content: '';
    position: absolute;
    background: url("../images/tp_about_parts02.png") no-repeat top right;
    width: 118px;
    height: 108px;
    bottom: 60px;
    right: 23vw; }
  .tp-about-ttl .tp-about-lead {
    position: relative;
    top: -30px; }
  .tp-about-ttl h2 {
    font-size: 42px;
    font-size: 4.2rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.1;
    padding-bottom: 1.4em;
    margin-bottom: 1.4em;
    position: relative;
    display: inline-block;
    z-index: 1; }
    .tp-about-ttl h2::before {
      content: '';
      position: absolute;
      background: url("../images/tp_about_parts01.png") no-repeat top left;
      width: 240px;
      height: 243px;
      top: -108px;
      left: -190px;
      z-index: -1; }
    .tp-about-ttl h2::after {
      content: '';
      position: absolute;
      background: url("../images/common/line_colorful.png") no-repeat bottom center;
      width: 360px;
      height: 24px;
      bottom: 0;
      left: 0;
      right: 0;
      margin: 0 auto; }
    .tp-about-ttl h2 strong {
      color: #ed8686;
      font-weight: 700; }
    .tp-about-ttl h2 span {
      font-size: 24px;
      font-size: 2.4rem;
      font-weight: 700; }

.tp-about-list {
  width: max(75vw, 1200px);
  margin: 0 auto;
  z-index: 9;
  position: relative; }
  .tp-about-list ul {
    display: flex;
    justify-content: space-between; }
  .tp-about-list li {
    width: max(30%, 360px); }
    .tp-about-list li:nth-child(2n) {
      margin-top: 40px; }
    .tp-about-list li:nth-child(3n) {
      margin-top: 80px; }
  .tp-about-list .tp-about-img {
    position: relative; }
    .tp-about-list .tp-about-img .about-img-txt {
      position: absolute;
      top: 0;
      left: 0;
      margin-top: -30px;
      z-index: 2; }
      .tp-about-list .tp-about-img .about-img-txt p {
        font-size: 18px;
        font-size: 1.8rem;
        font-weight: 700;
        -ms-writing-mode: tb-rl;
        -webkit-writing-mode: vertical-rl;
        writing-mode: vertical-rl;
        background: #fff;
        border-radius: 25px 25px 25px 0;
        padding: 1em 0.5em;
        display: inline-block;
        letter-spacing: 0.1em; }
        .tp-about-list .tp-about-img .about-img-txt p span {
          color: #ed8686;
          font-weight: 700; }
  .tp-about-list figure {
    position: relative;
    /*width: 360px;*/
    width: 100%;
    z-index: 1; }
    .tp-about-list figure::before {
      content: '';
      position: absolute;
      background: url("../images/common/parts_ribbon.png") no-repeat top center;
      width: 73px;
      height: 48px;
      bottom: -26px;
      left: 0;
      right: 0;
      margin: 0 auto;
      z-index: 3; }
    .tp-about-list figure::after {
      content: '';
      position: absolute;
      background: #fff;
      width: 100%;
      height: 100%;
      top: 10px;
      left: 10px;
      border-radius: 40px;
      z-index: -1; }
    .tp-about-list figure img {
      width: 100%;
      border-radius: 40px; }
  .tp-about-list h3 {
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: 700;
    margin-top: 2.2em;
    letter-spacing: 0.05em;
    text-align: center; }
  .tp-about-list .tp-about-comment {
    margin-top: 2.2em; }

.tp-about-en {
  position: absolute;
  top: 380px;
  right: 0; }

@media screen and (min-width: 769px) and (max-width: 1280px) {
  .tp-about-en {
    display: none; } }
/* #tp-service
----------------------------------------------------------- */
#tp-service {
  width: 100%;
  clear: both;
  position: relative;
  background: url("../images/common/bg_pink.png");
  padding-bottom: 80px;
  z-index: 2; }
  #tp-service::after {
    content: '';
    position: absolute;
    background: url("../images/tp_service_bg.png") no-repeat top left;
    width: 1431px;
    height: 1237px;
    top: 0;
    left: 0; }

@media screen and (min-width: 769px) and (max-width: 1280px) {
  #tp-service::after {
    content: '';
    position: absolute;
    background-size: 97vw; } }
.tp-service-inner {
  width: 1200px;
  margin: 0 auto;
  clear: both;
  position: relative;
  z-index: 1;
  padding-top: 150px; }

.tp-service-ttl {
  position: relative;
  display: flex;
  margin-bottom: 5em; }
  .tp-service-ttl::before {
    content: '';
    position: absolute;
    background: url("../images/tp_service_more.png") no-repeat top left;
    width: 128px;
    height: 107px;
    top: -100px;
    left: 470px; }
  .tp-service-ttl .ttl-en {
    color: #ed8686;
    font-size: 100px;
    font-size: 10rem;
    letter-spacing: 0.05em;
    font-family: 'Amatic SC', cursive, serif;
    line-height: 1.0; }
  .tp-service-ttl h2 {
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: 700;
    position: relative;
    line-height: 1.5;
    letter-spacing: 0.1em;
    padding-top: 0.6em;
    margin-left: 1.5em; }
    .tp-service-ttl h2::after {
      content: '';
      position: absolute;
      background: url("../images/tp_service_line.png") no-repeat left bottom;
      width: 340px;
      height: 11px;
      bottom: 6px;
      left: 0; }
    .tp-service-ttl h2 span {
      font-size: 18px;
      font-size: 1.8rem;
      font-weight: 700;
      display: block; }

.tp-service-point ul {
  display: flex;
  justify-content: space-between; }
.tp-service-point li {
  width: 280px; }
  .tp-service-point li figure {
    text-align: center; }
    .tp-service-point li figure img {
      width: auto; }
.tp-service-point h3 {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 1.6em; }
.tp-service-point p {
  margin-top: 2em; }

.tp-service-inner {
  z-index: 3; }
  .tp-service-inner .btn-main {
    width: 480px;
    margin: 6em auto 0; }

/*パーツ*/
.tp-parts04 {
  position: absolute;
  top: -110px;
  left: 30px;
  z-index: 2; }

.tp-parts05 {
  position: absolute;
  bottom: 100px;
  right: 0;
  z-index: 2; }

/* #tp-message
----------------------------------------------------------- */
#tp-message {
  width: 100%;
  clear: both;
  background: url("../images/common/bg_pink.png");
  padding-bottom: 240px;
  position: relative;
  z-index: 1; }
  #tp-message::after {
    content: '';
    position: absolute;
    background: url("../images/tp_message_bg.png") no-repeat top right;
    width: 1451px;
    height: 1306px;
    top: 0;
    right: 0; }

@media screen and (min-width: 769px) and (max-width: 1280px) {
  #tp-message::after {
    content: '';
    position: absolute;
    background-size: 97vw; } }
.tp-message-inner {
  width: 1200px;
  margin: 0 auto;
  clear: both;
  padding-top: 180px;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between; }

@media screen and (min-width: 769px) and (max-width: 1280px) {
  .tp-message-inner {
    padding-top: 160px; } }
.tp-message-img {
  width: 560px;
  position: relative;
  margin-top: 60px; }
  .tp-message-img img {
    border-radius: 40px; }
  .tp-message-img::after {
    content: '';
    position: absolute;
    background: #fff;
    width: 100%;
    height: 420px;
    top: 20px;
    left: 20px;
    border-radius: 40px;
    z-index: -1; }

.tp-message-detail {
  width: 530px; }

.tp-message-ttl {
  position: relative; }
  .tp-message-ttl .ttl-en {
    color: #ed8686;
    font-size: 100px;
    font-size: 10rem;
    letter-spacing: 0.05em;
    font-family: 'Amatic SC', cursive, serif;
    line-height: 1.0; }
  .tp-message-ttl h2 {
    position: relative;
    margin: 2em 0 1.5em; }

#tp-message .btn-main {
  width: 480px;
  margin: 6em auto 0;
  z-index: 4;
  position: relative; }

/*パーツ*/
.tp-parts06 {
  position: absolute;
  top: 300px;
  left: 100px;
  z-index: 2; }

.tp-parts07 {
  position: absolute;
  bottom: 170px;
  right: 40px;
  z-index: 2; }

@media screen and (min-width: 769px) and (max-width: 1600px) {
  .tp-parts06 {
    top: 80px;
    left: 0; }
    .tp-parts06 img {
      width: 220px; }

  .tp-parts07 {
    bottom: 170px;
    right: 20px; }
    .tp-parts07 img {
      width: 240px; } }
/* #tp-info
----------------------------------------------------------- */
#tp-info {
  width: 100%;
  clear: both;
  background: #faf9f2;
  padding-bottom: 140px;
  position: relative;
  z-index: 2; }
  #tp-info::before {
    content: '';
    position: absolute;
    background: url("../images/tp_info_top.png") no-repeat top center;
    width: 100%;
    height: 110px;
    margin: 0 auto;
    top: -110px;
    left: 0;
    right: 0;
    z-index: 2; }

.tp-info-inner {
  width: 1200px;
  margin: 0 auto;
  clear: both;
  display: flex;
  justify-content: space-between;
  position: relative;
  padding-top: 60px; }

.tp-info-area {
  width: 600px;
  position: relative; }
  .tp-info-area .tp-info-ttl {
    margin-bottom: 2em;
    position: relative; }
    .tp-info-area .tp-info-ttl::before {
      content: '';
      position: absolute;
      background: url("../images/common/icon_nikukyu.png") no-repeat top left;
      top: -50px;
      left: -50px;
      width: 91px;
      height: 108px;
      z-index: -1; }
    .tp-info-area .tp-info-ttl .ttl-en {
      color: #ed8686;
      font-family: 'Amatic SC', cursive, serif;
      line-height: 1.0;
      font-size: 70px;
      font-size: 7rem;
      letter-spacing: 0.05em; }
    .tp-info-area .tp-info-ttl h2 {
      font-size: 20px;
      font-size: 2rem;
      font-weight: 700;
      margin-top: 0.8em; }

.tp-info-list {
  margin-top: 4em; }
  .tp-info-list li {
    line-height: 1.8;
    padding-bottom: 1.5em;
    margin-bottom: 1.5em;
    border-bottom: 1px dotted #eb9696;
    display: flex; }
    .tp-info-list li .date {
      padding: 0 4em 0 1em;
      font-size: 13px;
      font-size: 1.3rem;
      font-weight: 700;
      position: relative; }
      .tp-info-list li .date::before {
        content: '';
        position: absolute;
        background: #eb9696;
        width: 6px;
        height: 6px;
        border-radius: 3px;
        left: 0;
        top: 0.7em; }
    .tp-info-list li a {
      display: block;
      flex: 1; }

/*twitter*/
.tp-info-twitter {
  width: 520px;
  background: #fff;
  border-radius: 10px;
  padding: 5px;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch; }

#tp-info .btn-sub {
  width: 320px;
  margin: 4em 0 0 0;
  position: relative; }

/* #tp-insta
----------------------------------------------------------- */
.tp-insta {
  width: 100%;
  clear: both;
  padding: 0 20px 180px; }

.tp-insta-inner {
  position: relative;
  overflow: hidden; }

.tp-insta-img {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative; }

.tp-insta-img01 {
  width: 50%; }
  .tp-insta-img01 img {
    width: 100%; }

.tp-insta-img02 {
  width: 50%; }
  .tp-insta-img02 img {
    width: 100%; }

.tp-insta-link {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }
  .tp-insta-link img {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden; }
  .tp-insta-link a:hover {
    opacity: 0.7;
    filter: alpha(opacity=70); }

/* footer
----------------------------------------------------------- */
.ft-inner {
  width: 100%;
  clear: both;
  background: url("../images/common/bg_pink.png");
  position: relative; }
  .ft-inner::after {
    content: '';
    position: absolute;
    background: url("../images/common/footer_bg_parts.png") no-repeat bottom left;
    width: 2560px;
    height: 468px;
    left: 0;
    bottom: 0; }

.ft-area-contact {
  display: flex;
  justify-content: center;
  position: relative; }

.ft-area {
  width: 46vw;
  background: url("../images/common/bg_blue.jpg");
  padding: 0 80px 230px 20px;
  border-radius: 0 0 200px 0;
  position: relative; }

.ft-area-inner {
  width: 460px;
  margin-left: auto;
  text-align: center;
  position: relative;
  z-index: 2; }
  .ft-area-inner h2 {
    font-size: 30px;
    font-size: 3rem;
    color: #5fb0b8;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1em;
    padding-top: 2.4em;
    position: relative; }
    .ft-area-inner h2::before {
      content: '';
      position: absolute;
      background: url("../images/common/ft_icon_area.png") no-repeat top center;
      width: 80px;
      height: 80px;
      top: -32px;
      left: 0;
      right: 0;
      margin: 0 auto; }
  .ft-area-inner span {
    font-size: 13px;
    font-size: 1.3rem; }
  .ft-area-inner .ft-area-img {
    margin: 1.5em 0; }
  .ft-area-inner .btn-main {
    width: 360px;
    margin: 1em auto 0; }
    .ft-area-inner .btn-main a {
      line-height: 50px;
      border-radius: 25px; }
      .ft-area-inner .btn-main a span {
        font-size: 15px;
        font-size: 1.5rem;
        line-height: 50px; }
      .ft-area-inner .btn-main a::before {
        background-size: 56px; }
      .ft-area-inner .btn-main a::after {
        background-size: 56px; }

.ft-contact {
  width: 54vw;
  background: url("../images/common/bg_pink.png");
  padding: 0 0 0 80px;
  position: relative; }

.ft-contact-inner {
  width: 85%;
  margin-right: auto;
  text-align: center;
  position: relative;
  z-index: 2; }
  .ft-contact-inner h2 {
    font-size: 30px;
    font-size: 3rem;
    color: #ed8686;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1em;
    padding-top: 2.4em;
    position: relative; }
    .ft-contact-inner h2::before {
      content: '';
      position: absolute;
      background: url("../images/common/ft_icon_contact.png") no-repeat top center;
      width: 80px;
      height: 80px;
      top: -32px;
      left: 0;
      right: 0;
      margin: 0 auto; }
  .ft-contact-inner .ft-contact-box {
    background: #fff;
    border-radius: 40px;
    text-align: center;
    margin-top: 1.5em;
    padding: 42px 80px; }
  .ft-contact-inner .btn-main span {
    font-size: 20px;
    font-size: 2rem; }
  .ft-contact-inner .ft-contact-tel {
    position: relative;
    margin-top: 2.4em; }
    .ft-contact-inner .ft-contact-tel a {
      font-size: 30px;
      font-size: 3rem;
      font-weight: 700;
      color: #734a00;
      display: inline-block;
      letter-spacing: 0.05em;
      position: relative; }
      .ft-contact-inner .ft-contact-tel a::before {
        content: '';
        position: absolute;
        background: url("../images/common/head_tel@2x.png") no-repeat top left;
        background-size: 50px;
        width: 50px;
        height: 50px;
        top: 0;
        left: -64px; }
    .ft-contact-inner .ft-contact-tel .small {
      font-size: 14px;
      font-size: 1.4rem;
      margin-top: 0.5em;
      margin-left: -0.5em; }

/*パーツ*/
.ft-area-en {
  position: absolute;
  top: 40px;
  left: 0;
  z-index: 1; }

.ft-contact-en {
  position: absolute;
  top: 40px;
  right: 0;
  z-index: 1; }

.ft-nikukyu {
  position: absolute;
  top: 540px;
  left: 39vw;
  z-index: 1; }

.ft-info {
  width: 100%;
  clear: both;
  position: relative;
  z-index: 2; }

.ft-info-inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 0 20px; }

.ft-info-base {
  width: auto;
  position: relative;
  padding-left: 15vw;
  padding-bottom: 60px; }
  .ft-info-base .ft-logo {
    margin-bottom: 3em; }
    .ft-info-base .ft-logo img {
      width: 293px; }
  .ft-info-base p {
    font-size: 14px;
    font-size: 1.4rem; }
  .ft-info-base .ft-copyright {
    margin-top: 4em; }

.ft-info-nav {
  flex: 1;
  padding-right: 12vw;
  margin-top: -0.8em; }
  .ft-info-nav nav {
    display: block; }
    .ft-info-nav nav ul {
      display: flex;
      justify-content: flex-end; }
    .ft-info-nav nav li {
      margin-left: 3em;
      white-space: nowrap; }
    .ft-info-nav nav a {
      color: #734a00;
      font-weight: 700;
      display: block;
      font-size: 14px;
      font-size: 1.4rem;
      padding: 0.7em 0;
      letter-spacing: 0.1em;
      position: relative; }
      .ft-info-nav nav a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 1px;
        background: url("../images/common/gnav_dot.png") repeat-x;
        transition: all .3s; }
      .ft-info-nav nav a:hover {
        color: #ed8686;
        text-decoration: none; }
        .ft-info-nav nav a:hover::after {
          width: 20px; }
  .ft-info-nav aside {
    display: block; }
    .ft-info-nav aside ul {
      display: flex;
      justify-content: flex-end;
      align-items: center; }
    .ft-info-nav aside li {
      margin-left: 32px;
      margin-top: 48px; }
      .ft-info-nav aside li.ft-twitter img {
        width: 24px; }
      .ft-info-nav aside li.ft-insta img {
        width: 22px; }
      .ft-info-nav aside li.ft-fb img {
        width: 24px; }

@media screen and (min-width: 769px) and (max-width: 1600px) {
  .ft-info-nav {
    padding-right: 15vw; }
    .ft-info-nav nav ul {
      flex-wrap: wrap; }
    .ft-info-nav nav li {
      margin-left: 1em;
      width: 40%; }
    .ft-info-nav nav a {
      font-size: 13px;
      font-size: 1.3rem; } }
