/* --------------------------------------------------
	000.margin and padding
-------------------------------------------------- */
body, div, dl, dt, dd, ul, ol, li,
h1, h2, h3, h4, h5, h6,
object, iframe, pre, code, p, blockquote,
form, fieldset, legend,
table, th, td, caption, tbody, tfoot, thead,
article, aside, figure, footer, header,
hgroup, menu, nav, section, audio, video, canvas, main {
  margin: 0;
  padding: 0; }

article, aside, figure, figcaption, footer,
h1, h2, h3, h4, h5, h6, header, hgroup, menu, nav, section, main {
  display: block; }

* {
  box-sizing: border-box;
  -moz-box-sizing: border-box; }

/* --------------------------------------------------
	001.HTML, Body, Anchor
-------------------------------------------------- */
html {
  font-size: 62.5%;
  overflow-y: scroll;
  * overflow-x: hidden;
  _overflow: auto; }

html, body {
  width: 100%;
  min-height: 100%; }

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #434343;
  letter-spacing: 0;
  font-weight: 400; }

@media only screen and (min-width: 1080px) {
  .sp-visible {
    display: none !important; }

  .tablet-visible {
    display: none !important; } }
@media only screen and (max-width: 1080px) {
  html {
    font-size: .92vw; }

  .tablet-hidden {
    display: none; }

  .sp-visible {
    display: none !important; } }
@media only screen and (max-width: 1080px) and (max-width: 767px) {
  .sp-visible {
    display: block !important; } }
@media only screen and (max-width: 767px) {
  html {
    font-size: 2.75vw; }

  body {
    letter-spacing: 0; }

  .sp-hidden {
    display: none !important; }

  select,
  textarea,
  input[type='url'],
  input[type='text'],
  input[type='date'],
  input[type='tel'],
  input[type='email'],
  input[type='submit'] {
    -webkit-appearance: none; } }
span.link,
a {
  color: #434343;
  text-decoration: none;
  transition: all 0.5s;
  cursor: pointer; }
  span.link.none,
  a.none {
    opacity: 0.4;
    pointer-events: none; }

@media only screen and (min-width: 1080px) {
  a:hover {
    text-decoration: none; } }
/* --------------------------------------------------
	002.Heading, Paragraph
-------------------------------------------------- */
dt, h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: 700; }

p {
  line-height: 1.6; }

/* --------------------------------------------------
	003.List
-------------------------------------------------- */
ol, ul, li {
  list-style: none; }

/* --------------------------------------------------
	004.Table
-------------------------------------------------- */
table {
  font-size: 100%;
  border-collapse: collapse;
  border-spacing: 0; }

caption, th, td {
  text-align: left;
  vertical-align: top;
  font-weight: 400; }

/* --------------------------------------------------
	005.Form
-------------------------------------------------- */
fieldset {
  border: none; }

input, textarea, select, label {
  font-size: 100%;
  font-family: "Noto Sans JP", sans-serif;
  vertical-align: middle;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-weight: 400; }

@media only screen and (max-width: 767px) {
  input, textarea, select {
    font-size: 1.6rem;
    box-sizing: border-box; } }
button {
  font-family: "Noto Sans JP", sans-serif; }

label {
  cursor: pointer; }

textarea {
  overflow: auto; }

legend {
  display: none; }

/* --------------------------------------------------
	006.Other
-------------------------------------------------- */
img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: middle; }

object {
  vertical-align: middle;
  outline: none; }

em {
  font-style: italic; }

b,
strong {
  font-weight: 700; }

small {
  font-size: 100%; }

i {
  font-style: normal; }

u {
  text-decoration: none; }

abbr, acronym {
  border: none;
  font-variant: normal; }

address, caption, cite, code, dfn, var {
  font-weight: normal;
  font-style: normal; }

sup {
  font-size: 1em;
  vertical-align: text-top; }

sub {
  font-size: 1em;
  vertical-align: text-bottom; }

hr {
  display: none; }

/* --------------------------------------
		101 outline
-------------------------------------- */
#wrap {
  position: relative; }
  @media only screen and (max-width: 1080px) {
    #wrap {
      overflow: hidden; } }

div:focus,
img:focus,
textarea:focus,
a:focus,
button:focus,
input:focus {
  outline: none;
  box-shadow: none; }

/* --------------------------------------
		102 header
-------------------------------------- */
.header {
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 1.6rem; }
  @media only screen and (max-width: 767px) {
    .header {
      padding: 0 1.2rem;
      height: 6rem;
      position: fixed;
      left: 0;
      top: 0;
      width: 100%;
      background: #fff;
      z-index: 999; } }
  .header-ttl {
    width: 34.4rem; }
    @media only screen and (max-width: 767px) {
      .header-ttl {
        width: 24rem; } }
  @media only screen and (max-width: 767px) {
    .header-menu {
      position: fixed;
      top: 0;
      right: 0;
      display: flex;
      justify-content: center;
      flex-direction: column;
      align-items: center;
      z-index: -1;
      opacity: 0;
      transition: right .5s;
      width: 6rem;
      height: 6rem;
      opacity: 1;
      z-index: 10000; } }
  .header-menu span {
    width: 1.8rem;
    height: 2px;
    margin: .2rem auto;
    background: #434343; }
  .header-menu.on {
    z-index: 10001; }
    .header-menu.on span:nth-of-type(1) {
      position: absolute;
      transform: rotate(45deg);
      left: 50%;
      margin: 0 0 0 -0.9rem;
      top: 50%; }
    .header-menu.on span:nth-of-type(2) {
      position: absolute;
      transform: rotate(-45deg);
      right: 50%;
      margin: 0 -0.9rem 0 0;
      top: 50%; }
    .header-menu.on span:nth-of-type(3) {
      display: none; }
  @media only screen and (max-width: 767px) {
    .header-nav {
      position: fixed;
      width: 100%;
      background: #fff;
      height: calc(100vh - 6rem);
      overflow: auto;
      z-index: 10000;
      right: -100%;
      top: 6rem;
      transition: all .5s;
      border-top: 1px solid #ddd;
      /*			&:before {
      				content: "";
      				width: 100%;
      				height: 6rem;
      				background: url("../img/jibun/header-title.png") no-repeat #fff;
      				background-size: 24rem auto;
      				background-position: $sp $sp;
      				right: -100%;
      				top: 0;
      				display: block;
      				border-bottom: 1px solid #ddd;
      			} */ }
      .header-nav.on {
        right: 0; }
        .header-nav.on:before {
          right: 0; } }
  .header-nav ul {
    display: flex;
    justify-content: flex-end; }
    @media only screen and (max-width: 767px) {
      .header-nav ul {
        flex-wrap: wrap;
        justify-content: center; } }
    @media only screen and (max-width: 767px) {
      .header-nav ul li {
        width: 100%;
        padding-left: 3.2rem; }
        .header-nav ul li:nth-last-of-type(1) a, .header-nav ul li:nth-last-of-type(2) a {
          border: none; }
        .header-nav ul li:nth-last-of-type(1), .header-nav ul li:nth-last-of-type(2) {
          width: 6rem;
          margin: 4rem 1rem 1rem;
          padding: 0; }
          .header-nav ul li:nth-last-of-type(1) a, .header-nav ul li:nth-last-of-type(2) a {
            justify-content: center; } }
    .header-nav ul li a {
      height: 4.2rem;
      font-size: 1.4rem;
      font-weight: 500;
      line-height: 1.2;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 0 1.6rem;
      text-align: center; }
      .header-nav ul li a .fb {
        max-width: 2.8rem; }
      .header-nav ul li a .x {
        max-width: 2.3rem; }
      @media only screen and (max-width: 767px) {
        .header-nav ul li a {
          height: 5rem;
          font-size: 1.4rem;
          justify-content: flex-start;
          padding: 0;
          border-bottom: 1px solid #ddd; } }
      @media only screen and (min-width: 1080px) {
        .header-nav ul li a:hover {
          opacity: 0.7; } }

/* --------------------------------------
		103 content
-------------------------------------- */
.div-mv {
  background: #FDF7F9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  padding-bottom: 10.8rem; }
  @media only screen and (max-width: 767px) {
    .div-mv {
      padding: 4rem 0; } }
  .div-mv-mes {
    width: 102.4rem;
    height: 58rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1; }
    @media only screen and (max-width: 767px) {
      .div-mv-mes {
        height: auto;
        padding-top: 6rem; } }
    .div-mv-mes:after {
      content: "";
      width: 130rem;
      height: 100%;
      background: url("../img/jibun/fig_main.png") no-repeat 100% 100%;
      background-size: 71.6rem auto;
      position: absolute;
      z-index: -1;
      left: 50%;
      margin-left: -60rem;
      bottom: 0; }
      @media only screen and (max-width: 767px) {
        .div-mv-mes:after {
          aspect-ratio: 1432/1267;
          margin: 0;
          position: static;
          width: 100%;
          height: auto;
          background-size: 100% auto; } }
    .div-mv-mes-uluru {
      font-size: 2.2rem;
      font-weight: 600;
      color: #E24822; }
      @media only screen and (max-width: 767px) {
        .div-mv-mes-uluru {
          font-size: 1.4rem;
          padding: 0 2.4rem; } }
    .div-mv-mes-ttl {
      font-size: 4.8rem;
      line-height: 1.3;
      color: #173A87; }
      @media only screen and (max-width: 767px) {
        .div-mv-mes-ttl {
          font-size: 3.2rem;
          padding: 0 2.4rem; } }
      .div-mv-mes-ttl strong {
        font-weight: 500; }
    .div-mv-mes p {
      font-size: 2.4rem;
      font-weight: 500;
      padding-top: 0.8rem; }
      @media only screen and (max-width: 767px) {
        .div-mv-mes p {
          font-size: 1.5rem;
          padding: 0.8rem 2.4rem 0; } }
  .div-mv:after {
    content: "";
    width: 100%;
    height: 10.8rem;
    background: url("../img/jibun/nami.svg") repeat-x 0% 0% #fff;
    background-size: 151.2rem auto;
    position: absolute;
    left: 0;
    bottom: 0; }
    @media only screen and (max-width: 767px) {
      .div-mv:after {
        height: 5.4rem;
        background-size: 75.6rem auto;
        background-position: 50% 0%; } }
.div-guide {
  text-align: center;
  position: relative;
  padding-bottom: 14.4rem; }
  @media only screen and (max-width: 767px) {
    .div-guide {
      padding-top: 4rem;
      padding-bottom: 7.2rem; } }
  .div-guide p {
    font-size: 1.8rem;
    line-height: 2;
    padding-bottom: 1.6rem; }
    @media only screen and (max-width: 767px) {
      .div-guide p {
        font-size: 1.3rem;
        width: 75vw;
        margin: 0 auto; } }
  .div-guide-nav ul {
    display: flex;
    justify-content: center; }
    @media only screen and (max-width: 767px) {
      .div-guide-nav ul {
        flex-direction: column;
        align-items: center; } }
    .div-guide-nav ul li {
      padding: 0 0.8rem; }
      @media only screen and (max-width: 767px) {
        .div-guide-nav ul li {
          margin: 0 auto 1.6rem; } }
      .div-guide-nav ul li a {
        width: 28rem;
        height: 9rem;
        border-radius: 1.2rem;
        border: 1px solid #E5E5E5;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        line-height: 1.3;
        background: #EEEEEE;
        color: #173A87;
        padding-top: 1rem;
        position: relative;
        z-index: 1;
        overflow: hidden; }
        .div-guide-nav ul li a:after {
          content: "";
          width: 0%;
          height: 100%;
          position: absolute;
          left: 0;
          top: 0;
          z-index: -1;
          background: #DDDDDD;
          transition: all .5s; }
        @media only screen and (min-width: 1080px) {
          .div-guide-nav ul li a:hover:after {
            width: 100%; } }
        @media only screen and (max-width: 767px) {
          .div-guide-nav ul li a {
            width: 30rem;
            font-size: 1.5rem; } }
        .div-guide-nav ul li a span {
          color: #173A87; }
  .div-guide:before {
    content: "";
    width: 6rem;
    height: 1rem;
    border-top: .4rem dotted #DDB0C8;
    display: block;
    margin: 0 auto;
    padding-top: 8rem; }
    @media only screen and (max-width: 767px) {
      .div-guide:before {
        display: none; } }
  .div-guide:after {
    content: "";
    background: url("../img/jibun/nami.svg") repeat-x 50% 100%;
    background-size: 151.2rem auto;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 10.4rem;
    transform: scaleY(-1); }
    @media only screen and (max-width: 767px) {
      .div-guide:after {
        height: 5.2rem;
        background-size: 75.6rem auto; } }

.section-message {
  width: 100%;
  max-width: 102.4rem;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: flex-start;
  background: url("../img/jibun/fig_2.png") no-repeat 100% 100%;
  background-size: 43rem auto;
  top: -16rem;
  margin-bottom: -8rem; }
  @media only screen and (max-width: 767px) {
    .section-message {
      top: 0;
      margin-bottom: 0;
      flex-direction: column;
      padding: 1.2rem 1.6rem 50vw;
      background-size: 60% auto;
      background-position: 50% 100%; } }
  .section-message-header {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    margin-right: 2.4rem; }
    @media only screen and (max-width: 767px) {
      .section-message-header {
        -ms-writing-mode: unset;
        writing-mode: unset;
        margin: 0 0 1.2rem; } }
    .section-message-header-ttl {
      font-family: "Charmonman", cursive;
      font-size: 2.4rem;
      font-weight: 400;
      flex-shrink: 0;
      color: #CCCCCC;
      margin-bottom: 1.6rem; }
      @media only screen and (max-width: 767px) {
        .section-message-header-ttl {
          font-size: 1.3rem;
          margin: 0 0.8rem 0 0; } }
    .section-message-header:after {
      content: "";
      width: 1px;
      height: 100%;
      background: rgba(204, 204, 204, 0.5); }
      @media only screen and (max-width: 767px) {
        .section-message-header:after {
          width: 100%;
          height: 1px; } }
  .section-message-inner p {
    font-size: 1.8rem;
    line-height: 2.4;
    padding-bottom: 2.4em; }
    @media only screen and (max-width: 767px) {
      .section-message-inner p {
        font-size: 1.3rem; } }
  @media only screen and (max-width: 767px) {
    .section-message-inner {
      padding: 0 0.4rem; } }
  .section-message-fig {
    max-width: 43rem; }
.section-research {
  max-width: 102.4rem;
  margin: 0 auto;
  padding: 4rem 0; }
  @media only screen and (max-width: 767px) {
    .section-research {
      padding: 1.6rem 0 5rem; } }
  .section-research-header {
    text-align: center;
    padding-bottom: 4rem; }
    .section-research-header-en {
      font-family: "Charmonman", cursive;
      font-size: 2.4rem;
      display: flex;
      color: #ccc;
      justify-content: center;
      align-items: flex-end;
      margin-bottom: 0.8rem; }
      @media only screen and (max-width: 767px) {
        .section-research-header-en {
          font-size: 1.1rem; } }
      .section-research-header-en:before, .section-research-header-en:after {
        content: "";
        height: 5rem;
        width: 12.5rem;
        background-size: auto 100%;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        margin: 0 0.8rem; }
        @media only screen and (max-width: 767px) {
          .section-research-header-en:before, .section-research-header-en:after {
            height: 2.5rem;
            width: 6.3rem; } }
      .section-research-header-en:before {
        background-image: url("../img/jibun/bg_ttl_l.png"); }
      .section-research-header-en:after {
        background-image: url("../img/jibun/bg_ttl_r.png"); }
    .section-research-header-ttl {
      font-size: 4rem;
      font-weight: 500;
      color: #173A87; }
      @media only screen and (max-width: 767px) {
        .section-research-header-ttl {
          font-size: 2.7rem; } }
      .section-research-header-ttl sup {
        font-size: 1.6rem;
        vertical-align: text-top;
        position: relative;
        top: 1em; }
        @media only screen and (max-width: 767px) {
          .section-research-header-ttl sup {
            font-size: 1.2rem; } }
    .section-research-header p {
      font-size: 1.4rem;
      color: #173A87; }
      @media only screen and (max-width: 767px) {
        .section-research-header p {
          font-size: 1.1rem; } }
  .section-research-inner {
    padding-bottom: 4rem; }
    @media only screen and (max-width: 767px) {
      .section-research-inner {
        padding: 0 1.6rem 2.4rem; } }
    .section-research-inner p {
      font-size: 1.8rem;
      line-height: 2;
      padding-bottom: 2em;
      text-align: center; }
      @media only screen and (max-width: 767px) {
        .section-research-inner p {
          text-align: left;
          font-size: 1.4rem;
          line-height: 1.8;
          padding-bottom: 1.8em; } }
  .section-research-result {
    background: #fff;
    border-radius: 10rem;
    box-shadow: 0 0 3.6rem 0 rgba(148, 97, 144, 0.25);
    position: relative;
    padding: 8rem 1.6rem 1.6rem 1.6rem; }
    @media only screen and (max-width: 767px) {
      .section-research-result {
        border-radius: 0;
        padding: 3.2rem 2.4rem 1.6rem; } }
    .section-research-result:before {
      content: "";
      width: 100%;
      height: 4rem;
      background: url("../img/jibun/fukidashi.svg") no-repeat 50% 0%;
      background-size: auto 4rem;
      position: absolute;
      left: 0;
      top: -3.95rem; }
      @media only screen and (max-width: 767px) {
        .section-research-result:before {
          height: 3rem;
          background-size: auto 3rem;
          top: -2.95rem; } }
    .section-research-result .article-result {
      text-align: center;
      margin-bottom: 8rem; }
      @media only screen and (max-width: 767px) {
        .section-research-result .article-result {
          margin-bottom: 6.4rem; }
          .section-research-result .article-result:nth-last-of-type(1) {
            margin-bottom: 4.8rem; } }
      .section-research-result .article-result-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 1.6rem; }
        .section-research-result .article-result-header-mark {
          max-width: 15.7rem;
          margin: 0 auto 4rem; }
          @media only screen and (max-width: 767px) {
            .section-research-result .article-result-header-mark {
              margin-bottom: 2.4rem; } }
        .section-research-result .article-result-header-ttl {
          font-size: 2.4rem;
          font-weight: 500;
          color: #173A87; }
          @media only screen and (max-width: 767px) {
            .section-research-result .article-result-header-ttl {
              font-size: 1.8rem; } }
      .section-research-result .article-result-inner p {
        font-size: 1.6rem;
        padding-bottom: 4rem; }
        @media only screen and (max-width: 767px) {
          .section-research-result .article-result-inner p {
            font-size: 1.3rem;
            text-align: left;
            padding-bottom: 2.4rem; } }
      .section-research-result .article-result-inner dl {
        display: flex;
        flex-direction: column;
        align-items: center; }
        @media only screen and (max-width: 767px) {
          .section-research-result .article-result-inner dl {
            text-align: left; } }
        .section-research-result .article-result-inner dl dt {
          font-size: 1.6rem;
          font-weight: 400;
          margin-bottom: 1.6rem; }
          @media only screen and (max-width: 767px) {
            .section-research-result .article-result-inner dl dt {
              font-size: 1.4rem; } }
        .section-research-result .article-result-inner dl dd {
          margin-bottom: 2.4rem; }
          @media only screen and (max-width: 767px) {
            .section-research-result .article-result-inner dl dd .circlegraph {
              width: 70vw; } }
  .section-research-txt {
    margin-bottom: 2.4rem; }
    .section-research-txt p {
      font-size: 1.8rem;
      line-height: 2;
      text-align: center; }
      @media only screen and (max-width: 767px) {
        .section-research-txt p {
          font-size: 1.4rem;
          text-align: left;
          line-height: 1.8; } }
  .section-research-btn {
    margin-bottom: 2.4rem; }
    .section-research-btn a {
      width: 27rem;
      height: 5.6rem;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 5rem;
      background: #173A87;
      color: #fff;
      font-weight: 600;
      font-size: 1.6rem;
      margin: 0 auto;
      position: relative;
      z-index: 1;
      overflow: hidden; }
      .section-research-btn a:after {
        content: "";
        width: 0%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
        background: #0B1F4A;
        transition: all .5s; }
      .section-research-btn a span {
        margin-left: 0.8rem; }
      @media only screen and (min-width: 1080px) {
        .section-research-btn a:hover:after {
          width: 100%; } }
  .section-research-info {
    padding: 3.2rem; }
    @media only screen and (max-width: 767px) {
      .section-research-info {
        padding: 2.4rem 0; } }
    .section-research-info table {
      font-size: 1.4rem;
      border: 1px solid #EEEEEE;
      font-weight: 400; }
      @media only screen and (max-width: 767px) {
        .section-research-info table {
          font-size: 1.3rem; } }
      .section-research-info table th {
        width: 14%;
        background: #EEEEEE;
        vertical-align: middle;
        text-align: center; }
        @media only screen and (max-width: 767px) {
          .section-research-info table th {
            display: block !important;
            width: 100% !important;
            text-align: left;
            padding: 0.8rem; } }
      .section-research-info table td {
        width: 43%;
        text-align: left;
        padding: 0.8rem; }
        @media only screen and (max-width: 767px) {
          .section-research-info table td {
            width: 100% !important;
            display: block !important; } }
        .section-research-info table td:nth-of-type(1) {
          border-right: .3rem dotted #eee; }
        .section-research-info table td dl {
          display: flex;
          justify-content: flex-start; }
          .section-research-info table td dl dt {
            font-weight: 400;
            width: 4.3em;
            flex-shrink: 0; }
          .section-research-info table td dl dd {
            width: 100%;
            display: flex;
            justify-content: flex-start; }
            .section-research-info table td dl dd:before {
              content: ":";
              margin-right: 0.8rem; }
  .section-research-next {
    background: #FDF7F9;
    border-radius: 0 0 9rem 9rem;
    padding: 4rem; }
    @media only screen and (max-width: 767px) {
      .section-research-next {
        margin: 0 -2.4rem;
        padding: 2.4rem;
        border-radius: 0; } }
    .section-research-next p {
      text-align: center;
      line-height: 2;
      font-size: 1.8rem;
      font-weight: 700;
      color: #173A87; }
      @media only screen and (max-width: 767px) {
        .section-research-next p {
          text-align: left;
          font-size: 1.5rem; } }
.section-gallery {
  background: #fff;
  position: relative;
  padding: 15rem 0; }
  @media only screen and (max-width: 767px) {
    .section-gallery {
      padding: 6rem 0 8rem 0; } }
  .section-gallery:before {
    content: "";
    background: url("../img/jibun/nami.svg") repeat-x 50% 100%;
    background-size: 151.2rem auto;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 10.4rem; }
    @media only screen and (max-width: 767px) {
      .section-gallery:before {
        background-size: 75.6rem auto;
        background-position: 30% 100%;
        height: 5.2rem; } }
  .section-gallery:after {
    content: "";
    background: url("../img/jibun/nami.svg") repeat-x 50% 100%;
    background-size: 151.2rem auto;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 10.4rem;
    transform: scaleY(-1); }
    @media only screen and (max-width: 767px) {
      .section-gallery:after {
        background-size: 75.6rem auto;
        height: 5.2rem; } }
  .section-gallery-header {
    text-align: center;
    padding-bottom: 4rem; }
    @media only screen and (max-width: 767px) {
      .section-gallery-header {
        padding: 0 1.6rem 2.4rem; } }
    .section-gallery-header-en {
      font-family: "Charmonman", cursive;
      font-size: 2.4rem;
      display: flex;
      color: #ccc;
      justify-content: center;
      align-items: flex-end;
      margin-bottom: 0.8rem; }
      @media only screen and (max-width: 767px) {
        .section-gallery-header-en {
          font-size: 1.1rem; } }
      .section-gallery-header-en:before, .section-gallery-header-en:after {
        content: "";
        height: 5rem;
        width: 12.5rem;
        background-size: auto 100%;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        margin: 0 0.8rem; }
        @media only screen and (max-width: 767px) {
          .section-gallery-header-en:before, .section-gallery-header-en:after {
            height: 2.5rem;
            width: 6.3rem; } }
      .section-gallery-header-en:before {
        background-image: url("../img/jibun/bg_ttl_l.png"); }
      .section-gallery-header-en:after {
        background-image: url("../img/jibun/bg_ttl_r.png"); }
    .section-gallery-header-ttl {
      font-size: 4rem;
      font-weight: 500;
      color: #173A87; }
      @media only screen and (max-width: 767px) {
        .section-gallery-header-ttl {
          font-size: 2.7rem; } }
  .section-gallery-inner {
    padding-bottom: 4rem; }
    @media only screen and (max-width: 767px) {
      .section-gallery-inner {
        padding: 0 2.4rem 0.8rem; } }
    .section-gallery-inner p {
      font-size: 1.8rem;
      line-height: 2;
      padding-bottom: 2em;
      text-align: center; }
      @media only screen and (max-width: 767px) {
        .section-gallery-inner p {
          font-size: 1.4rem;
          line-height: 1.8;
          text-align: left; } }
  .section-gallery-list {
    max-width: 116rem;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap; }
    @media only screen and (max-width: 767px) {
      .section-gallery-list {
        padding-bottom: 2.4rem; }
        .section-gallery-list .slick-dots {
          width: 100%;
          display: flex;
          justify-content: center;
          padding-top: 1.6rem; }
          .section-gallery-list .slick-dots li {
            margin: 0 0.4rem; }
            .section-gallery-list .slick-dots li.slick-active button {
              opacity: 1; }

            .section-gallery-list .slick-dots li button {
              width: 0.8rem;
              height: 0.8rem;
              margin: 0;
              padding: 0;
              display: block;
              border-radius: 50%;
              letter-spacing: 0;
              text-indent: -999rem;
              background: #173A87;
              outline: none;
              border: none;
              overflow: hidden;
              opacity: 0.4; } }
    .section-gallery-list .article-time {
      width: calc(100% / 3 - 3.2rem);
      margin: 0 1.6rem 3.2rem;
      border-radius: 4.8rem;
      border: .8rem solid #eee; }
      @media only screen and (max-width: 767px) {
        .section-gallery-list .article-time {
          width: 88vw;
          margin: 0 0.4rem; } }
      .section-gallery-list .article-time-header {
        padding: 2.4rem 1.6rem;
        display: flex;
        justify-content: flex-start;
        align-items: center; }
        .section-gallery-list .article-time-header-name {
          font-size: 1.8rem;
          font-weight: 700;
          color: #173A87; }
          .section-gallery-list .article-time-header-name a {
            color: #173A87;
            text-decoration: underline; }
            @media only screen and (min-width: 1080px) {
              .section-gallery-list .article-time-header-name a:hover {
                text-decoration: none; } }
        .section-gallery-list .article-time-header p {
          font-size: 1.3rem;
          color: #808080;
          font-weight: 500; }
          @media only screen and (max-width: 767px) {
            .section-gallery-list .article-time-header p {
              line-height: 1.3;
              font-size: 1.2rem; } }
        .section-gallery-list .article-time-header-fig {
          width: 7.2rem;
          height: 7.2rem;
          display: flex;
          justify-content: center;
          align-items: center;
          overflow: hidden;
          border-radius: 50%;
          flex-shrink: 0;
          margin-right: 0.8rem; }
      .section-gallery-list .article-time-gra {
        padding: 0 0.8rem 2.4rem; }
      .section-gallery-list .article-time-inner {
        padding: 3.2rem 2.4rem 0;
        background: url("../img/jibun/logo_balance.png") 50% 0% no-repeat;
        background-size: 15.9rem auto; }
        @media only screen and (max-width: 767px) {
          .section-gallery-list .article-time-inner {
            min-height: 26.72rem;
            padding: 3.2rem 1.6rem 0; } }
        .section-gallery-list .article-time-inner p {
          font-size: 1.4rem;
          line-height: 1.4;
          padding-bottom: 1.4em; }
          @media only screen and (max-width: 767px) {
            .section-gallery-list .article-time-inner p {
              font-size: 1.3rem; }
              .section-gallery-list .article-time-inner p:nth-of-type(2) {
                min-height: 9.7em; } }
          .section-gallery-list .article-time-inner p strong {
            font-weight: 700;
            color: #173A87; }
  .section-gallery-message {
    text-align: center;
    padding-top: 2.4rem; }
    @media only screen and (max-width: 767px) {
      .section-gallery-message {
        padding: 0 2.4rem; } }
    .section-gallery-message:before {
      content: "";
      width: 6rem;
      height: .4rem;
      border-radius: 1rem;
      background: #DDB0C8;
      margin: 0 auto 8rem;
      display: block; }
      @media only screen and (max-width: 767px) {
        .section-gallery-message:before {
          margin-bottom: 4rem; } }
    .section-gallery-message p {
      font-size: 2rem;
      font-weight: 700;
      color: #173A87; }
.section-story {
  padding-bottom: 4rem; }
  @media only screen and (max-width: 767px) {
    .section-story {
      padding: 0 1.6rem; } }
  .section-story-header {
    text-align: center;
    padding: 4rem 0; }
    @media only screen and (max-width: 767px) {
      .section-story-header {
        padding-bottom: 2.4rem; } }
    .section-story-header-en {
      font-family: "Charmonman", cursive;
      font-size: 2.4rem;
      display: flex;
      color: #ccc;
      justify-content: center;
      align-items: flex-end;
      margin-bottom: 0.8rem; }
      @media only screen and (max-width: 767px) {
        .section-story-header-en {
          font-size: 1.1rem; } }
      .section-story-header-en:before, .section-story-header-en:after {
        content: "";
        height: 5rem;
        width: 12.5rem;
        background-size: auto 100%;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        margin: 0 0.8rem; }
        @media only screen and (max-width: 767px) {
          .section-story-header-en:before, .section-story-header-en:after {
            height: 2.5rem;
            width: 6.3rem; } }
      .section-story-header-en:before {
        background-image: url("../img/jibun/bg_ttl_l.png"); }
      .section-story-header-en:after {
        background-image: url("../img/jibun/bg_ttl_r.png"); }
    .section-story-header-ttl {
      font-size: 4rem;
      font-weight: 500;
      color: #173A87; }
      @media only screen and (max-width: 767px) {
        .section-story-header-ttl {
          font-size: 2.7rem; } }
  .section-story-inner {
    padding-bottom: 4rem; }
    @media only screen and (max-width: 767px) {
      .section-story-inner {
        padding-bottom: 2.4rem; } }
    .section-story-inner p {
      font-size: 1.8rem;
      line-height: 2;
      padding-bottom: 2em;
      text-align: center; }
      @media only screen and (max-width: 767px) {
        .section-story-inner p {
          font-size: 1.4rem;
          line-height: 1.8;
          text-align: left; } }
  .section-story-list {
    max-width: 102.4rem;
    margin: 0 auto; }
    .section-story-list .article-story {
      margin: 0 0 3.2rem;
      border-radius: 4.8rem;
      background: #fff;
      display: flex;
      justify-content: space-between;
      padding: 2.4rem;
      position: relative; }
      @media only screen and (max-width: 767px) {
        .section-story-list .article-story {
          flex-direction: column; } }
      @media only screen and (min-width: 1080px) {
        .section-story-list .article-story:hover .article-story-btn:after {
          width: 100%; } }
      .section-story-list .article-story.soon {
        height: 24.8rem;
        justify-content: center;
        align-items: center; }
        @media only screen and (max-width: 767px) {
          .section-story-list .article-story.soon {
            height: 14rem; } }
        .section-story-list .article-story.soon p {
          font-size: 2rem;
          color: #173A87; }
          @media only screen and (max-width: 767px) {
            .section-story-list .article-story.soon p {
              font-size: 1.6rem;
              text-align: center; } }
      .section-story-list .article-story > a {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 10; }
      .section-story-list .article-story-fig {
        width: 23.2rem;
        height: 20rem;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        border-radius: 3.2rem;
        flex-shrink: 0;
        margin-right: 1.6rem; }
        @media only screen and (max-width: 767px) {
          .section-story-list .article-story-fig {
            width: 28rem;
            height: 20rem;
            margin-bottom: 2.4rem; } }
      .section-story-list .article-story-ttl {
        font-size: 2rem;
        line-height: 1.4;
        color: #173A87;
        padding-bottom: 0.8rem; }
        @media only screen and (max-width: 767px) {
          .section-story-list .article-story-ttl {
            font-size: 1.6rem; } }
      .section-story-list .article-story-inner {
        width: 100%;
        padding: 2.4rem 0 0;
        background: url("../img/jibun/logo_balance.png") 0% 0% no-repeat;
        background-size: 15.9rem auto;
        display: flex;
        flex-direction: column;
        margin: 0.8rem; }
        @media only screen and (max-width: 767px) {
          .section-story-list .article-story-inner {
            margin: 0; } }
      .section-story-list .article-story-posi {
        font-weight: 500;
        font-size: 1.6rem;
        line-height: 1.4;
        padding-bottom: 1.4em; }
        @media only screen and (max-width: 767px) {
          .section-story-list .article-story-posi {
            font-size: 1.4rem; } }
      .section-story-list .article-story-btn {
        margin-left: auto;
        width: 18rem;
        height: 3.2rem;
        border-radius: 5rem;
        background: #173A87;
        color: #fff;
        font-size: 1.6rem;
        font-weight: 600;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: auto;
        position: relative;
        z-index: 1;
        overflow: hidden; }
        .section-story-list .article-story-btn:after {
          content: "";
          width: 0%;
          height: 100%;
          position: absolute;
          left: 0;
          top: 0;
          z-index: -1;
          background: #0B1F4A;
          transition: all .5s; }
        @media only screen and (max-width: 767px) {
          .section-story-list .article-story-btn {
            width: 100%;
            height: 5rem;
            margin: 2.4rem 0 0; } }
        .section-story-list .article-story-btn span {
          font-size: 1.8rem;
          margin-left: 0.8rem; }
        @media only screen and (min-width: 1080px) {
          .section-story-list .article-story-btn {
            transition: all 0.5s; } }
  .section-story-message {
    text-align: center;
    padding-top: 2.4rem; }
    .section-story-message:before {
      content: "";
      width: 6rem;
      height: .4rem;
      border-radius: 1rem;
      background: #DDB0C8;
      margin: 0 auto 8rem;
      display: block; }
    .section-story-message p {
      font-size: 2rem;
      font-weight: 700;
      color: #173A87; }
.section-end {
  background: #fff;
  position: relative;
  padding: 15rem 0 10rem; }
  @media only screen and (max-width: 767px) {
    .section-end {
      padding: 6rem 2.4rem; } }
  .section-end:before {
    content: "";
    background: url("../img/jibun/nami.svg") repeat-x 50% 100%;
    background-size: 151.2rem auto;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 10.4rem; }
    @media only screen and (max-width: 767px) {
      .section-end:before {
        height: 5.2rem;
        background-size: 75.6rem auto; } }
  .section-end-header {
    text-align: center;
    padding-bottom: 2.4rem;
    background: url("../img/jibun/logo_balance.png") 50% 100% no-repeat;
    background-size: 15.9rem auto;
    margin-bottom: 8rem; }
    @media only screen and (max-width: 767px) {
      .section-end-header {
        margin-bottom: 4rem; } }
    .section-end-header-ttl {
      font-size: 2.4rem;
      font-weight: 500;
      color: #173A87; }
      @media only screen and (max-width: 767px) {
        .section-end-header-ttl {
          font-size: 2rem; } }
  .section-end-inner {
    max-width: 102.4rem;
    margin: 0 auto 2.4rem; }
    @media only screen and (max-width: 767px) {
      .section-end-inner {
        margin-bottom: 1.6rem; } }
    .section-end-inner p {
      font-size: 1.8rem;
      line-height: 2;
      color: #173A87;
      text-align: center;
      padding-bottom: 2em; }
      @media only screen and (max-width: 767px) {
        .section-end-inner p {
          font-size: 1.5rem;
          text-align: left; } }
  .section-end-btn {
    margin-top: 2.4rem; }
    .section-end-btn a {
      width: 27rem;
      height: 5.6rem;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 5rem;
      background: #173A87;
      color: #fff;
      font-weight: 600;
      font-size: 1.6rem;
      margin: 0 auto;
      position: relative;
      z-index: 1;
      overflow: hidden; }
      .section-end-btn a:after {
        content: "";
        width: 0%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
        background: #0B1F4A;
        transition: all .5s; }
      .section-end-btn a span {
        margin-left: 0.8rem; }
      @media only screen and (min-width: 1080px) {
        .section-end-btn a:hover:after {
          width: 100%; } }

.container {
  background: #FDF7F9; }

/* --------------------------------------
		104 footer
-------------------------------------- */
.footer {
  width: 100%;
  height: 6.4rem;
  padding: 1.6rem;
  background: #F5F5F5;
  display: flex;
  justify-content: space-between;
  align-items: center; }
  @media only screen and (max-width: 767px) {
    .footer {
      height: 4.8rem; } }
  .footer-ttl {
    color: #173A87;
    font-weight: 500;
    font-size: 1.2rem; }
    @media only screen and (max-width: 767px) {
      .footer-ttl {
        font-size: .9rem; } }
  .footer-copy {
    font-size: 1rem; }
    @media only screen and (max-width: 767px) {
      .footer-copy {
        font-size: .9rem; } }
