@charset "UTF-8";
/*------------------------------------------------------------------------------
  reset PC
------------------------------------------------------------------------------*/
html,
input,
textarea,
select,
button {
  font: 10px/1.6 Verdana, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

html {
  color: #3b4043;
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
  word-break: break-all;
}

body {
  background: #fff;
  margin: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  border: 0;
  margin: 0;
  vertical-align: top;
  max-width: 100%;
}

p {
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

a {
  color: #000;
  text-decoration: none;
}

input,
select,
textarea,
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
          appearance: none;
}

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

textarea {
  resize: vertical;
}

::placeholder {
  color: #ccc;
}

button {
  border: none;
  cursor: pointer;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

.outer-block {
  min-width: 1005px;
}

.inner-block {
  position: relative;
  width: 965px;
}
@media only screen and (min-width: 768px) {
  .inner-block {
    margin: 0 auto;
  }
}

#wrapper {
  position: relative;
}

dl, dt, dd {
  padding: 0;
  margin: 0;
}

@media only screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }

  a[href^="tel:"] {
    pointer-events: none;
  }

  a,
a::before,
a::after,
button {
    transition: 0.3s ease-in-out;
  }
}
.c-svg {
  display: inline-block;
  fill: currentColor;
  vertical-align: top;
}

/*------------------------------------------------------------------------------
  reset SP
------------------------------------------------------------------------------*/
@media only screen and (max-width: 767px) {
  body {
    font-size: 14px;
    position: relative;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }

  .outer-block {
    min-width: 320px;
  }

  .inner-block {
    padding: 0 10px;
    width: auto;
  }

  #wrapper {
    min-width: 320px;
    position: relative;
    overflow: hidden;
  }

  input[type=submit] {
    -webkit-text-size-adjust: 100%;
  }

  input,
select,
textarea {
    font-size: 16px !important;
  }

  .pc {
    display: none !important;
  }
}
/*------------------------------------------------------------------------------
  animation
------------------------------------------------------------------------------*/
.anm-list > * {
  transform: translateY(30px);
  opacity: 0;
}

.anm-list > *.is-animated {
  animation: fadeInUp 1.5s forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeInDown {
  0% {
    transform: translateY(-20px);
    opacity: 0;
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeOutUp {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-20px);
    opacity: 0;
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
}
@keyframes fadeInLeft {
  0% {
    transform: translateX(30px);
    opacity: 0;
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeInRight {
  0% {
    transform: translateX(-30px);
    opacity: 0;
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes ballDrop {
  60% {
    transform: translate(0, 20px) rotate(-180deg) scale(0.5);
  }
  100% {
    transform: translate(0) rotate(0deg) scale(1);
    opacity: 1;
  }
}
@media not print {
  .anm {
    opacity: 0;
  }

  .anm.is-animated {
    animation: fadeIn 1.5s forwards;
  }

  .anm-up {
    transform: translateY(30px);
    opacity: 0;
  }

  .anm-up.is-animated {
    animation: fadeInUp 1.5s forwards;
  }

  .anm-left {
    transform: translateX(30px);
    opacity: 0;
  }

  .anm-left.is-animated {
    animation: fadeInLeft 1.5s forwards;
  }

  .anm-right {
    transform: translateX(-30px);
    opacity: 0;
  }

  .anm-right.is-animated {
    animation: fadeInRight 1.5s forwards;
  }
}
/* -----------------------------------------------
* c-btn
-------------------------------------------------- */
.c-btn01 {
  position: relative;
  font-size: 20px;
  color: #fff;
  background: #51b847;
  border-radius: 10px;
  display: block;
  padding: 20px;
  box-shadow: 0px 6px #97c93c;
  margin: 40px 0;
  letter-spacing: 0.02em;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .c-btn01 {
    text-align: center;
  }
  .c-btn01:hover {
    box-shadow: none;
    transform: translateY(6px);
  }
}
@media only screen and (max-width: 767px) {
  .c-btn01 {
    width: calc(100% - 40px);
    margin: 40px auto;
    font-size: 18px;
    line-height: 1.11;
    padding: 20px 30px 20px 50px;
  }
}
.c-btn01::before, .c-btn01::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.c-btn01::before {
  left: 26px;
  width: 20px;
  height: 20px;
  background: url(https://toto.imagewave.pictures/%2Freform%2Fcampaign%2Fanshin-stories%2Fgunosy2020%2Fimg%2Fico_arrow_right.svg) no-repeat center/contain;
}
@media only screen and (max-width: 767px) {
  .c-btn01::before {
    left: 16px;
    width: 18px;
    height: 18px;
  }
}
.c-btn01::after {
  right: 46px;
  width: 20px;
  height: 20px;
  background: url(https://toto.imagewave.pictures/%2Freform%2Fcampaign%2Fanshin-stories%2Fgunosy2020%2Fimg%2Fico_tab.svg) no-repeat center/contain;
}
@media only screen and (max-width: 767px) {
  .c-btn01::after {
    right: 26px;
    width: 16px;
    height: 16px;
  }
}

/* -----------------------------------------------
* c-marker
-------------------------------------------------- */
.c-marker {
  background: linear-gradient(transparent 60%, #fff200 60%);
}

/* -----------------------------------------------
* c-ttl
-------------------------------------------------- */
.c-ttl01 {
  position: relative;
  font-size: 30px;
  color: #193189;
  margin: 90px 0 30px;
  padding-bottom: 30px;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .c-ttl01 {
    font-size: 20px;
    padding: 0 30px 20px;
    line-height: 1.5;
  }
}
.c-ttl01::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 2px;
  background-color: #71b556;
}
@media only screen and (max-width: 767px) {
  .c-ttl01::before {
    left: 30px;
  }
}

.c-ttl02 {
  font-size: 24px;
  color: #26931b;
  line-height: 1.5;
  margin: 40px 0;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .c-ttl02 {
    font-size: 18px;
    line-height: 1.5;
    padding: 0 30px;
    margin: 20px 0;
  }
}

/* -----------------------------------------------
* gunosy
-------------------------------------------------- */
.p-gunosy {
  background: url(https://toto.imagewave.pictures/%2Freform%2Fcampaign%2Fanshin-stories%2Fgunosy2020%2Fimg%2Fbg_img_01.png) repeat-y top 200px center/contain;
  background-color: #f2f2f2;
}
.p-gunosy .inner-block {
  padding: 40px 0;
}
@media only screen and (max-width: 767px) {
  .p-gunosy .inner-block {
    padding: 30px 0;
  }
}
.p-gunosy b {
  font-weight: bold;
}
.p-gunosy__mv {
  background: linear-gradient(90deg, #51b847 0%, #51b847 60%, #193189 40%, #193189 100%);
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-gunosy__mv {
    background: linear-gradient(0deg, #51b847 0%, #51b847 60%, #193189 40%, #193189 100%);
    padding: 40px 0;
  }
}
.p-gunosy__mv::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(https://toto.imagewave.pictures/%2Freform%2Fcampaign%2Fanshin-stories%2Fgunosy2020%2Fimg%2Fmv_bg_01.png) repeat-y center/cover;
}
.p-gunosy__mv .inner-block {
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .p-gunosy__mv .inner-block {
    padding: 0;
  }
}
.p-gunosy__mv__ttl {
  position: absolute;
  left: 0;
  bottom: 60px;
}
@media only screen and (max-width: 767px) {
  .p-gunosy__mv__ttl {
    bottom: -20px;
  }
}
.p-gunosy__mv__ttl span {
  display: inline-block;
  background: #fff;
  font-size: 36px;
  color: #193189;
  letter-spacing: 0.05em;
  line-height: 1.72;
  margin: 2px 0;
  padding: 0 20px;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .p-gunosy__mv__ttl span {
    font-size: 20px;
    padding: 2px 10px;
  }
}
.p-gunosy__mv__img {
  display: block;
  margin-left: auto;
}
@media only screen and (min-width: 768px) {
  .p-gunosy__mv__img {
    width: 634.8px;
    height: 380px;
  }
}
.p-gunosy__intro {
  background: #fff;
  width: 860px;
  margin: 0 auto;
  border: solid 10px #e5e5e5;
  padding: 30px 70px 30px;
  margin-bottom: -130px;
  z-index: 2;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-gunosy__intro {
    width: 100%;
    padding: 30px 30px 30px;
  }
}
.p-gunosy__intro__main {
  font-size: 24px;
  color: #193189;
  line-height: 1.5;
  margin-bottom: 20px;
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  .p-gunosy__intro__main {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .p-gunosy__intro__main {
    font-size: 18px;
    line-height: 1.67;
  }
}
.p-gunosy__intro__sub {
  font-size: 16px;
  line-height: 1.88;
}
@media only screen and (max-width: 767px) {
  .p-gunosy__intro__sub {
    font-size: 14px;
    line-height: 1.71;
  }
}
.p-gunosy__main {
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.16);
  background-color: #ffffff;
  padding: 160px 158px 80px;
}
@media only screen and (min-width: 768px) {
  .p-gunosy__main {
    border-radius: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .p-gunosy__main {
    padding: 160px 0 80px;
  }
}
.p-gunosy__txt {
  font-size: 18px;
  margin: 1.5em 0;
  line-height: 1.89;
  text-align: justify;
}
@media only screen and (max-width: 767px) {
  .p-gunosy__txt {
    font-size: 14px;
    padding: 0 30px;
    line-height: 1.75;
  }
}
.p-gunosy__txt__big {
  font-size: 24px;
  margin: 1em 0;
}
@media only screen and (max-width: 767px) {
  .p-gunosy__txt__big {
    font-size: 18px;
    padding: 0 30px;
    line-height: 1.89;
  }
}
.p-gunosy__slash {
  margin: 40px 0;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-gunosy__slash {
    margin: 20px 0 30px;
  }
}
.p-gunosy__slash__txt {
  font-size: 24px;
  font-weight: bold;
  color: #26931b;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-gunosy__slash__txt::before, .p-gunosy__slash__txt::after {
  content: "";
  width: 32px;
  height: 1px;
  background: #71B556;
}
.p-gunosy__slash__txt::before {
  transform: rotate(60deg);
}
.p-gunosy__slash__txt::after {
  transform: rotate(-60deg);
}
@media only screen and (max-width: 767px) {
  .p-gunosy__slash__txt {
    font-size: 20px;
  }
}
.p-gunosy__slash__strings {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-gunosy__slash__strings::before, .p-gunosy__slash__strings::after {
  content: "";
  width: 32px;
  height: 1px;
  background: #71B556;
}
.p-gunosy__slash__strings::before {
  transform: rotate(60deg);
  margin-left: -26px;
}
.p-gunosy__slash__strings::after {
  transform: rotate(-60deg);
  margin-right: -26px;
}
.p-gunosy__img {
  margin: 40px 0;
}
@media only screen and (max-width: 767px) {
  .p-gunosy__img {
    margin: 20px 0;
  }
}
.p-gunosy__img__cap {
  font-size: 14px;
  color: #193189;
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  .p-gunosy__img__cap {
    font-size: 12px;
    padding: 0 30px;
  }
}
@media only screen and (max-width: 767px) {
  .p-gunosy__trivia {
    width: calc(100% - 30px);
    margin: 0 auto;
  }
}
.p-gunosy__trivia__ttl {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  background: #26931b;
  border-radius: 10px 10px 0 0;
  padding: 12px 30px 12px 60px;
  position: relative;
}
.p-gunosy__trivia__ttl::before {
  content: "";
  position: absolute;
  width: 32px;
  height: 40px;
  background: url(https://toto.imagewave.pictures/%2Freform%2Fcampaign%2Fanshin-stories%2Fgunosy2020%2Fimg%2Fico_bulb.svg) no-repeat center/contain;
  left: 20px;
  top: 6px;
}
.p-gunosy__trivia__txt {
  font-size: 16px;
  color: #26931b;
  border: solid 2px #71b556;
  border-width: 0 2px 2px;
  border-radius: 0 0 10px 10px;
  padding: 20px 30px;
  line-height: 1.88;
}
@media only screen and (max-width: 767px) {
  .p-gunosy__trivia__txt {
    font-size: 14px;
    line-height: 1.68;
  }
}
.p-gunosy__list {
  margin: 30px 0;
}
@media only screen and (max-width: 767px) {
  .p-gunosy__list {
    margin: 20px 30px;
  }
}
.p-gunosy__list li {
  position: relative;
  padding-left: 20px;
  line-height: 2;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .p-gunosy__list li {
    font-size: 15px;
  }
}
.p-gunosy__list li::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #193189;
  top: 12px;
  left: 0;
  border-radius: 50%;
}
.p-gunosy__address {
  margin-top: 40px;
  font-size: 14px;
  line-height: 1.71;
}
@media only screen and (max-width: 767px) {
  .p-gunosy__address {
    padding: 0 30px;
  }
}
