@charset "UTF-8";

@-webkit-keyframes drifty {
  0% {
    -webkit-transform: skewY(10deg) translate3d(-250%, 0, 0);
    transform: skewY(10deg) translate3d(-250%, 0, 0);
    display: block;
  }

  100% {
    -webkit-transform: skewY(-12deg) translate3d(250%, 0, 0);
    transform: skewY(-12deg) translate3d(250%, 0, 0);
    display: block;
  }
}

@keyframes drifty {
  0% {
    -webkit-transform: skewY(10deg) translate3d(-250%, 0, 0);
    transform: skewY(10deg) translate3d(-250%, 0, 0);
    display: block;
  }

  100% {
    -webkit-transform: skewY(-12deg) translate3d(250%, 0, 0);
    transform: skewY(-12deg) translate3d(250%, 0, 0);
    display: block;
  }
}

@-webkit-keyframes driftyRotate {
  0% {
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
    display: block;
  }

  100% {
    -webkit-transform: rotateX(359deg);
    transform: rotateX(359deg);
    display: block;
  }
}

@keyframes driftyRotate {
  0% {
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
    display: block;
  }

  100% {
    -webkit-transform: rotateX(359deg);
    transform: rotateX(359deg);
    display: block;
  }
}

@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 0.2rem, 0);
    transform: translate3d(0, 0.2rem, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 0.2rem, 0);
    transform: translate3d(0, 0.2rem, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

* {
  -webkit-tap-highlight-color: transparent;
}

body,
dd,
dl,
dt,
figure,
form,
h1,
h2,
h3,
h4,
h5,
h6,
html,
li,
ol,
p,
table,
td,
th,
tr,
ul {
  font-size: inherit;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

table {
  border-collapse: collapse;
  empty-cells: show;
}

td,
th {
  text-align: left;
  vertical-align: top;
}

li {
  list-style: none;
}

img {
  vertical-align: top;
}

input,
select,
textarea {
  font-family: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

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

[disabled] {
  cursor: not-allowed;
}

button[type=reset]:not([disabled]),
button[type=submit]:not([disabled]),
input[type=reset]:not([disabled]),
input[type=submit]:not([disabled]) {
  cursor: pointer;
}

button,
label {
  cursor: pointer;
}

input {
  line-height: 1;
}

:root,
html {
  font-size: 100px;
}

h1.new_logo {
  width: 1.9rem !important;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {

  :root,
  html {
    font-size: 8.33333vw;
  }
}

@media screen and (max-width: 750px) {

  :root,
  html {
    font-size: 26.66667vw;
  }

  img.new_logo {
    max-width: 1.2rem;
  }

}

body {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.14rem;
  line-height: 2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#wrap {
  overflow: hidden;
}

.bt01 {
  display: block;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  background: #3D62AD;
  color: #fff;
  font-weight: 700;
  text-align: center;
  overflow: hidden;
}

.bt01::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #5e75c3;
  border-radius: inherit;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

html:not(.mobile) .bt01:hover:after {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.bt02 {
  display: block;
  width: 2.4rem;
  color: #3D62AD;
  position: relative;
  font-weight: 700;
  line-height: 0.56rem;
  text-align: center;
  box-shadow: inset 0 0 0 1px #C3CEE6;
  transition: 0.3s;
  transition-property: background-color, box-shadow;
}

.bt02::before {
  content: '';
  display: block;
  width: 0.16rem;
  height: 1px;
  position: absolute;
  top: 50%;
  right: 0;
  background: #C3CEE6;
  -webkit-transform-origin: right;
  transform-origin: right;
  transition: 0.3s;
  transition-property: background-color, -webkit-transform;
  transition-property: background-color, transform;
  transition-property: background-color, transform, -webkit-transform;
}

.bt02 span {
  display: inline-block;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

html:not(.mobile) .bt02:hover {
  background: #F4F3F7;
  box-shadow: inset 0 0 0 0.01rem #F4F3F7;
}

html:not(.mobile) .bt02:hover::before {
  background: #ABB9DA;
  -webkit-transform: scale(1.875, 1);
  transform: scale(1.875, 1);
}

html:not(.mobile) .bt02:hover span {
  -webkit-transform: translate3d(-0.04rem, 0, 0);
  transform: translate3d(-0.04rem, 0, 0);
}

.wrap {
  max-width: 10.4rem;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 750px) {
  .wrap {
    padding-right: 0.18rem;
    padding-left: 0.18rem;
  }
}

img,
video {
  max-width: 100%;
}

img[src$="_sp.jpg"],
img[src$="_sp.png"],
img[src$="_sp.svg"] {
  display: none;
}

@media screen and (max-width: 750px) {

  img[src$="_sp.jpg"],
  img[src$="_sp.png"],
  img[src$="_sp.svg"] {
    display: inline-block;
  }

  img[src$="_sp.jpg"]+img,
  img[src$="_sp.png"]+img,
  img[src$="_sp.svg"]+img {
    display: none;
  }
}

.sp {
  display: none;
}

@media screen and (max-width: 750px) {
  .pc {
    display: none;
  }

  br.sp {
    display: inline;
  }
}

html:not(.mobile) a[href^="tel:"] {
  pointer-events: none;
}

html:not(.mobile) .hov {
  transition: opacity 0.3s;
}

html:not(.mobile) .hov:hover {
  opacity: 0.7;
}

.gHeader {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  height: 0.88rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9000;
  background: #fff;
}

@media screen and (max-width: 750px) {
  .gHeader {
    display: block;
    height: .56rem;
  }
}

.gHeader .branding .siteTitle {
  width: 1.15rem;
  padding: 0.25rem 0 0 0.4rem;
}

@media screen and (max-width: 750px) {
  .gHeader .branding .siteTitle {
    width: .74rem;
    padding: 0.19rem 0 0 0.16rem;
  }
}

.gHeader .navigation .bg {
  display: none;
}

@media screen and (max-width: 1200px) {
  .gHeader .navigation .bg {
    content: '';
    display: block;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 8999;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    transition: 0.3s;
    transition-property: -webkit-backdrop-filter, backdrop-filter;
  }
}

@media screen and (max-width: 1200px) {
  .gHeader .navigation .lang.sp {
    display: flex;
    position: absolute;
    top: .16rem;
    right: 1rem;
  }

  .gHeader .navigation .lang.sp a {
    display: block;
    box-sizing: border-box;
    height: .56rem;
    padding: .27rem 0 0;
    position: relative;
    font-size: .14rem;
    font-weight: 700;
    line-height: 1;
  }

  .gHeader .navigation .lang.sp a::before {
    content: '';
    display: block;
    width: .05rem;
    height: .05rem;
    position: absolute;
    top: .13rem;
    left: 50%;
    background: currentColor;
    border-radius: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    opacity: 0;
    transition: opacity .3s;
  }

  .gHeader .navigation .lang.sp a.active {
    color: #C7527B;
  }

  .gHeader .navigation .lang.sp a.active::before {
    opacity: 1;
  }

  .gHeader .navigation .lang.sp li+li {
    margin: 0 0 0 .14rem;
  }
}

@media screen and (max-width: 750px) {
  .gHeader .navigation .lang.sp {
    right: .6rem;
    top: 0;
    -webkit-transform: none;
    transform: none;
  }

  .gHeader .navigation .lang.sp a {
    font-size: .13rem;
  }

  .gHeader .navigation .lang.sp a::before {
    top: .15rem;
  }
}

@media screen and (max-width: 1200px) {
  .gHeader .navigation .search.pc {
    margin-top: 0.3rem;
    width: auto;
  }
}

.gHeader .navigation .btMenu {
  display: none;
}

@media screen and (max-width: 1200px) {
  .gHeader .navigation .btMenu {
    display: block;
    width: .48rem;
    height: .48rem;
    position: absolute;
    top: .2rem;
    right: .2rem;
    z-index: 9001;
    border-radius: 50%;
  }

  .gHeader .navigation .btMenu .bar {
    width: 0.32rem;
    height: 0.32rem;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .gHeader .navigation .btMenu .bar::after,
  .gHeader .navigation .btMenu .bar::before,
  .gHeader .navigation .btMenu .bar span {
    display: block;
    width: 100%;
    height: 0.04rem;
    position: absolute;
    top: 50%;
    left: 0;
    background: #3D62AD;
    transition: 0.2s;
  }

  .gHeader .navigation .btMenu .bar::after,
  .gHeader .navigation .btMenu .bar::before {
    content: '';
    transition-property: background-color, -webkit-transform;
    transition-property: transform, background-color;
    transition-property: transform, background-color, -webkit-transform;
  }

  .gHeader .navigation .btMenu .bar::before {
    -webkit-transform: translate3D(0, -0.16rem, 0);
    transform: translate3D(0, -0.16rem, 0);
  }

  .gHeader .navigation .btMenu .bar::after {
    -webkit-transform: translate3D(0, calc(0.32rem / 2 - 0.04rem), 0);
    transform: translate3D(0, calc(0.32rem / 2 - 0.04rem), 0);
  }

  .gHeader .navigation .btMenu .bar span {
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    transition-property: opacity;
  }
}

@media screen and (max-width: 750px) {
  .gHeader .navigation .btMenu {
    top: .04rem;
    right: .04rem;
  }
}

.gHeader .navigation.active .bg {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backdrop-filter: blur(0.05rem);
  backdrop-filter: blur(0.05rem);
}

.gHeader .navigation.active .btMenu {
  background: #3D62AD;
}

.gHeader .navigation.active .btMenu .bar::before {
  background: #fff;
  -webkit-transform: translate3D(0, -50%, 0) rotate(135deg);
  transform: translate3D(0, -50%, 0) rotate(135deg);
}

.gHeader .navigation.active .btMenu .bar::after {
  background: #fff;
  -webkit-transform: translate3D(0, -50%, 0) rotate(45deg);
  transform: translate3D(0, -50%, 0) rotate(45deg);
}

.gHeader .navigation.active .btMenu .bar span {
  opacity: 0;
}

.gHeader .navigation.active nav {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.gHeader .navigation nav {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1200px) {
  .gHeader .navigation nav {
    display: block;
    box-sizing: border-box;
    width: 3.2rem;
    max-height: 100vh;
    padding: 0.64rem 0.4rem calc(.4rem + 40px);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9000;
    background: #fff;
    overflow: scroll;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }

  .gHeader .navigation nav .logo {
    display: block;
    width: 0.8rem;
  }

  .gHeader .navigation nav .logo img {
    width: 100%;
  }
}

.gHeader .navigation nav ul {
  display: flex;
  align-items: center;
  height: 0.88rem;
  font-weight: 700;
}

body.about .gHeader .navigation nav ul:not(.lang) li:nth-child(1) a,
body.jftd_hanacupid .gHeader .navigation nav ul:not(.lang) li:nth-child(1) a,
body.history .gHeader .navigation nav ul:not(.lang) li:nth-child(1) a,
body.recruit .gHeader .navigation nav ul:not(.lang) li:nth-child(1) a,
body.flower_college .gHeader .navigation nav ul:not(.lang) li:nth-child(1) a,
body.hanacupid .gHeader .navigation nav ul:not(.lang) li:nth-child(2) a,
body.member .gHeader .navigation nav ul:not(.lang) li:nth-child(3) a,
body.flowerdesign .gHeader .navigation nav ul:not(.lang) li:nth-child(4) a,
body.news .gHeader .navigation nav ul:not(.lang) li:nth-child(5) a {
  color: #3D62AD;
}

@media screen and (max-width: 1200px) {
  .gHeader .navigation nav ul {
    display: block;
    height: auto;
    margin: 0.36rem 0 0;
    color: #3D62AD;
    font-size: 0.16rem;
    line-height: 0.28rem;
  }
}

.gHeader .navigation nav ul li {
  margin: 0 0 0 0.24rem;
}

@media screen and (max-width: 1200px) {
  .gHeader .navigation nav ul li {
    margin: 0;
  }

  .gHeader .navigation nav ul li span.sp {
    display: inline;
  }
}

.gHeader .navigation nav ul li a {
  transition: color 0.3s;
}

@media screen and (max-width: 1200px) {
  .gHeader .navigation nav ul li a {
    display: block;
    padding: 0 0 0 0.2rem;
    background: url("../imgs/ico-flower.svg") 0 50%/1em auto no-repeat;
  }
}

html:not(.mobile) .gHeader .navigation nav ul li a:hover {
  color: #3D62AD;
}

.gHeader .navigation nav ul li ul {
  display: none;
}

@media screen and (max-width: 1200px) {
  .gHeader .navigation nav ul li ul {
    display: block;
    margin: 0.12rem 0 0.3rem;
    font-size: 0.14rem;
    font-weight: 400;
  }

  .gHeader .navigation nav ul li ul li {
    margin: 0.08rem 0 0;
  }

  .gHeader .navigation nav ul li ul li a {
    padding: 0;
    background: none;
  }
}

.gHeader .navigation nav .lang.pc {
  align-items: flex-start;
  height: .4rem;
  margin: 0 0 0 .3rem;
  border-left: 1px solid #E4E9F2;
  padding: 0 .3rem 0 .02rem;
}

@media screen and (max-width: 1200px) {
  .gHeader .navigation nav .lang.pc {
    display: none;
  }
}

.gHeader .navigation nav .lang.pc a {
  display: block;
  box-sizing: border-box;
  height: .4rem;
  padding: .2rem 0 0;
  position: relative;
  line-height: 1;
}

.gHeader .navigation nav .lang.pc a::before {
  content: '';
  display: block;
  width: .05rem;
  height: .05rem;
  position: absolute;
  top: .06rem;
  left: 50%;
  background: currentColor;
  border-radius: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  opacity: 0;
  transition: opacity .3s;
}

.gHeader .navigation nav .lang.pc a.active,
html:not(.mobile) .gHeader .navigation nav .lang.pc a:hover {
  color: #C7527B;
}

.gHeader .navigation nav .lang.pc a.active::before,
html:not(.mobile) .gHeader .navigation nav .lang.pc a:hover::before {
  opacity: 1;
}

.gHeader .navigation nav .lang.pc li+li {
  margin: 0 0 0 .14rem;
}

.gHeader .navigation nav .search {
  width: 2rem;
}

.gHeader .navigation nav .search .btSearch {
  display: flex;
  align-items: center;
  height: .88rem;
  padding: 0 0 0 .7rem;
  position: relative;
  line-height: 1.71429;
  text-align: left;
}

.gHeader .navigation nav .search .btSearch::before {
  content: '';
  display: block;
  width: .24rem;
  height: .24rem;
  position: absolute;
  top: 50%;
  left: .32rem;
  background: url(../imgs/ico-shop.svg) 0 0/contain no-repeat;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

@media screen and (min-width: 751px) and (max-width: 1200px) {
  .gHeader .navigation nav {
    min-height: 100%;
    width: 66vw;
  }

  .gHeader .navigation nav .logo {
    width: 1.6rem;
  }

  .gHeader .navigation nav ul {
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
    font-size: .2rem;
    margin-top: 0.5rem;
  }

  .gHeader .navigation nav ul li {
    width: 50%;
  }

  .gHeader .navigation nav ul li a {
    padding-left: 0.3rem;
  }

  .gHeader .navigation nav ul li ul {
    margin-top: 0.24rem;
    margin-bottom: 0.6rem;
    font-size: 0.18rem;
  }

  .gHeader .navigation nav ul li ul li {
    margin-top: 0.24rem;
    width: auto;
  }

  .gHeader .navigation nav .search.pc {
    margin-top: -0.17rem;
    margin-left: 50%;
    width: 2.3rem !important;
  }

  .gHeader .navigation nav .search.pc a {
    font-size: 0.18rem;
  }
}

.main {
  padding: 0.88rem 0 0;
}

@media screen and (max-width: 750px) {
  .main {
    padding: 0.56rem 0 0;
  }
}

.main .mainHeader .headline {
  background: 50% 0 / cover no-repeat;
}

.main .mainHeader .headline .title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 3.6rem;
  line-height: 1;
}

@media screen and (max-width: 750px) {
  .main .mainHeader .headline .title {
    box-sizing: border-box;
    height: 2.6rem;
  }
}

.main .mainHeader .headline .title .line01 {
  margin: 0 0 0.18rem;
  font-size: 0.2rem;
  font-weight: 700;
}

@media screen and (max-width: 750px) {
  .main .mainHeader .headline .title .line01 {
    margin: 0 0 0.14rem;
    font-size: 0.16rem;
  }
}

.main .mainHeader .headline .title .line02 {
  font-family: "Noto Serif JP", serif;
  font-size: 0.46rem;
  font-weight: 600;
}

@media screen and (max-width: 750px) {
  .main .mainHeader .headline .title .line02 {
    font-size: 0.34rem;
  }
}

.main .mainHeader .headline .title .line03 {
  margin: 0.28rem 0 0;
  color: #3D62AD;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media screen and (max-width: 750px) {
  .main .mainHeader .headline .title .line03 {
    margin: 0.18rem 0 0;
    font-size: 0.16rem;
  }
}

.main .mainHeader .headline .title .small {
  margin: 0 0 .32rem;
  font-family: "Noto Serif JP", serif;
  font-size: .2rem;
  font-weight: 600;
  line-height: 1.5;
}

.main .mainHeader .headline .title .small::before,
.main .mainHeader .headline .title .small::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

.main .mainHeader .headline .title .small::before {
  margin-bottom: -0.25em;
}

.main .mainHeader .headline .title .small::after {
  margin-top: -0.25em;
}

@media screen and (max-width: 750px) {
  .main .mainHeader .headline .title .small {
    font-size: 0.14rem;
    margin-bottom: 0.16rem;
  }
}

.main .mainHeader .headline .title .ja {
  font-family: "Noto Serif JP", serif;
  font-size: .46rem;
  font-weight: 600;
  line-height: 1.4;
}

.main .mainHeader .headline .title .ja::before,
.main .mainHeader .headline .title .ja::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

.main .mainHeader .headline .title .ja::before {
  margin-bottom: -0.2em;
}

.main .mainHeader .headline .title .ja::after {
  margin-top: -0.2em;
}

@media screen and (max-width: 750px) {
  .main .mainHeader .headline .title .ja {
    font-size: .24rem;
  }
}

.main .mainHeader .headline .title .en {
  margin: .3rem 0 0;
  color: #3D62AD;
  font-family: "Roboto", sans-serif;
  font-size: .16rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media screen and (max-width: 750px) {
  .main .mainHeader .headline .title .en {
    font-size: 0.12rem;
    margin-top: 0.16rem;
  }
}

.main .mainHeader .headline02 .title {
  display: flex;
  align-items: center;
  padding: .82rem 0 .04rem;
  line-height: 1;
}

@media screen and (max-width: 750px) {
  .main .mainHeader .headline02 .title {
    padding: .4rem 0 0;
  }
}

.main .mainHeader .headline02 .title .ja {
  margin: 0 .16rem 0 0;
  font-family: "Noto Serif JP", serif;
  font-size: .46rem;
  font-weight: 600;
  line-height: 1.4;
}

.main .mainHeader .headline02 .title .ja::before,
.main .mainHeader .headline02 .title .ja::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

.main .mainHeader .headline02 .title .ja::before {
  margin-bottom: -0.2em;
}

.main .mainHeader .headline02 .title .ja::after {
  margin-top: -0.2em;
}

@media screen and (max-width: 750px) {
  .main .mainHeader .headline02 .title .ja {
    font-size: .34rem;
  }
}

.main .mainHeader .headline02 .title .en {
  margin: 0 .26rem 0 0;
  color: #3D62AD;
  font-family: "Roboto", sans-serif;
  font-size: .16rem;
  font-weight: 500;
  letter-spacing: .08em;
}

.main .mainHeader .headline02 .title::after {
  content: '';
  display: block;
  height: 1px;
  flex-grow: 1;
  background: #E4E9F2;
}

.main .mainHeader .breadcrumb {
  padding: 0.3rem 0 0.8rem;
}

@media screen and (max-width: 750px) {
  .main .mainHeader .breadcrumb {
    font-size: 0.12rem;
    padding: 0.15rem 0 0.2rem;
  }
}

.main .mainHeader .breadcrumb ul {
  line-height: 1.5;
  display: flex;
  flex-wrap: wrap;
  color: #9AA8D8;
}

.main .mainHeader .breadcrumb ul::before,
.main .mainHeader .breadcrumb ul::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

.main .mainHeader .breadcrumb ul::before {
  margin-bottom: -0.25em;
}

.main .mainHeader .breadcrumb ul::after {
  margin-top: -0.25em;
}

.main .mainHeader .breadcrumb ul li {
  padding: 0.1rem calc(2em + .04rem) 0 0;
  background: url("../imgs/arrow01.svg") calc(100% - 1em) 0.174rem/0.04rem auto no-repeat;
}

@media screen and (max-width: 750px) {
  .main .mainHeader .breadcrumb ul li {
    padding: 0.05rem 1.5em 0 0;
    background-position: calc(100% - .6em) 0.11rem;
  }
}

.main .mainHeader .breadcrumb ul li:last-child {
  padding-right: 0;
  background: none;
}

.main .mainHeader .breadcrumb ul a {
  color: #3D62AD;
}

html:not(.mobile) .main .mainHeader .breadcrumb ul a:hover {
  text-decoration: underline;
}

.main .mainHeader.small .headline {
  height: 2rem;
}

@media screen and (max-width: 750px) {
  .main .mainHeader.small .headline {
    height: 1.4rem;
  }
}

.main .mainHeader.page404 .title {
  align-items: flex-start;
  flex-direction: column-reverse;
}

.main .mainHeader.page404 .title .en {
  margin-bottom: .2rem;
}

.main .title01 {
  line-height: 1;
}

.main .title01 .ja {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 0.26rem;
  font-weight: 600;
}

@media screen and (max-width: 750px) {
  .main .title01 .ja {
    font-size: 0.22rem;
  }
}

.main .title01 .en {
  display: block;
  margin: 0.2rem 0 0;
  border-top: 0.01rem solid #E4E9F2;
  padding: 0.2rem 0 0;
  color: #3D62AD;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media screen and (max-width: 750px) {
  .main .title01 .en {
    margin: 0.12rem 0 0;
    padding: 0.14rem 0 0;
    font-size: 0.12rem;
  }
}

.main .title02 {
  line-height: 1;
}

.main .title02 .ja {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 0.26rem;
  font-weight: 600;
}

@media screen and (max-width: 750px) {
  .main .title02 .ja {
    font-size: 0.22rem;
  }
}

.main .title02 .en {
  display: block;
  margin: 0.2rem 0 0;
  color: #3D62AD;
  font-size: 0.16rem;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media screen and (max-width: 750px) {
  .main .title02 .en {
    margin: 0.12rem 0 0;
    padding: 0.14rem 0 0;
    font-size: 0.12rem;
  }
}

.main .anchor {
  position: absolute;
  top: -.88rem;
  left: 0;
}

@media screen and (max-width: 750px) {
  .main .anchor {
    top: -.56rem;
  }
}

.main form.keywords,
.main div.keywords {
  display: flex;
}

.main form.keywords input[type="text"],
.main form.keywords input[type="search"],
.main div.keywords input[type="text"],
.main div.keywords input[type="search"] {
  box-sizing: border-box;
  width: calc(100% - .4rem);
  border: none;
  padding: 0 0.26rem;
  border-radius: 0;
}

@media screen and (max-width: 750px) {

  .main form.keywords input[type="text"],
  .main form.keywords input[type="search"],
  .main div.keywords input[type="text"],
  .main div.keywords input[type="search"] {
    width: calc(100% - .48rem);
    border: 0.01rem solid #E4E9F2;
    border-right: none;
    padding: 0 0.15rem;
    font-size: 16px;
  }
}

.main form.keywords input[type="text"]::-webkit-input-placeholder,
.main form.keywords input[type="search"]::-webkit-input-placeholder,
.main div.keywords input[type="text"]::-webkit-input-placeholder,
.main div.keywords input[type="search"]::-webkit-input-placeholder {
  color: #9AA8D8;
}

.main form.keywords input[type="text"]:-ms-input-placeholder,
.main form.keywords input[type="search"]:-ms-input-placeholder,
.main div.keywords input[type="text"]:-ms-input-placeholder,
.main div.keywords input[type="search"]:-ms-input-placeholder {
  color: #9AA8D8;
}

.main form.keywords input[type="text"]::-ms-input-placeholder,
.main form.keywords input[type="search"]::-ms-input-placeholder,
.main div.keywords input[type="text"]::-ms-input-placeholder,
.main div.keywords input[type="search"]::-ms-input-placeholder {
  color: #9AA8D8;
}

.main form.keywords input[type="text"]::placeholder,
.main form.keywords input[type="search"]::placeholder,
.main div.keywords input[type="text"]::placeholder,
.main div.keywords input[type="search"]::placeholder {
  color: #9AA8D8;
}

@media screen and (max-width: 750px) {

  html.iPhone .main form.keywords input[type="text"]::-webkit-input-placeholder,
  html.iPhone .main form.keywords input[type="search"]::-webkit-input-placeholder,
  html.iPhone .main div.keywords input[type="text"]::-webkit-input-placeholder,
  html.iPhone .main div.keywords input[type="search"]::-webkit-input-placeholder {
    -webkit-transform: translate(0, 20%);
    transform: translate(0, 20%);
  }

  html.iPhone .main form.keywords input[type="text"]:-ms-input-placeholder,
  html.iPhone .main form.keywords input[type="search"]:-ms-input-placeholder,
  html.iPhone .main div.keywords input[type="text"]:-ms-input-placeholder,
  html.iPhone .main div.keywords input[type="search"]:-ms-input-placeholder {
    transform: translate(0, 20%);
  }

  html.iPhone .main form.keywords input[type="text"]::-ms-input-placeholder,
  html.iPhone .main form.keywords input[type="search"]::-ms-input-placeholder,
  html.iPhone .main div.keywords input[type="text"]::-ms-input-placeholder,
  html.iPhone .main div.keywords input[type="search"]::-ms-input-placeholder {
    transform: translate(0, 20%);
  }

  html.iPhone .main form.keywords input[type="text"]::placeholder,
  html.iPhone .main form.keywords input[type="search"]::placeholder,
  html.iPhone .main div.keywords input[type="text"]::placeholder,
  html.iPhone .main div.keywords input[type="search"]::placeholder {
    -webkit-transform: translate(0, 20%);
    transform: translate(0, 20%);
  }
}

.main form.keywords input[type="submit"],
.main div.keywords input[type="submit"] {
  box-sizing: border-box;
  width: 0.4rem;
  height: 0.4rem;
  border: none;
  background: #3D62AD url("../imgs/ico-loupe.svg") 50% 50%/100% no-repeat;
  border-radius: 0;
  color: transparent;
  overflow: hidden;
  transition-duration: 0.3s, 0.15s;
  transition-property: background-color, background-size;
  transition-timing-function: ease-out;
}

html:not(.mobile) .main form.keywords input[type="submit"]:hover,
html:not(.mobile) .main div.keywords input[type="submit"]:hover {
  background-color: #5e75c3;
  background-size: 120%;
}

@media screen and (max-width: 750px) {

  .main form.keywords input[type="submit"],
  .main div.keywords input[type="submit"] {
    width: 0.48rem;
    height: 0.48rem;
    background-image: url("../imgs/ico-loupe_sp.svg");
  }
}

.main .fBanner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media screen and (max-width: 750px) {
  .main .fBanner {
    display: block;
  }
}

.main .fBanner a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  box-sizing: border-box;
  width: 5.08rem;
  height: 1.2rem;
  margin: .24rem 0 0;
  padding: 0 0 0 0.56rem;
  background: 0 0 / cover no-repeat;
  line-height: 1;
}

@media screen and (max-width: 750px) {
  .main .fBanner a {
    width: auto;
    margin: .08rem 0 0;
    height: .8rem;
    padding: 0 0 0 0.24rem;
  }
}

.main .fBanner a:nth-child(-n+2) {
  margin-top: 0;
}

@media screen and (max-width: 750px) {
  .main .fBanner a:nth-child(-n+2) {
    margin-top: .08rem;
  }
}

.main .fBanner a .ja {
  display: block;
  font-size: 0.18rem;
  font-weight: 700;
  line-height: 1.75;
}

.main .fBanner a .ja::before,
.main .fBanner a .ja::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

.main .fBanner a .ja::before {
  margin-bottom: -0.375em;
}

.main .fBanner a .ja::after {
  margin-top: -0.375em;
}

@media screen and (max-width: 750px) {
  .main .fBanner a .ja {
    font-size: 0.14rem;
    line-height: 1.4;
  }
}

.main .fBanner a .ja+.small {
  margin: 0.14rem 0 0;
}

.main .fBanner a .en {
  display: block;
  margin: 0.14rem 0 -.05rem;
  color: #3D62AD;
  font-size: 0.12rem;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
}

.main .fBanner a .small {
  display: block;
  margin: 0 0 0.1rem;
  color: #3D62AD;
  font-size: 0.12rem;
  font-weight: 700;
}

@media screen and (max-width: 750px) {
  .main .fBanner a .small {
    margin-bottom: 0.05rem;
  }
}

.main .fBanner a .small.fdc {
  padding: 0 0 0 .2rem;
  background: url(../imgs/ico-crown02.svg) 0 50%/0.12rem auto no-repeat;
}

.main .fBanner a.access {
  background-image: url("../imgs/bn-access@2x.jpg");
}

.main .fBanner a.branches {
  background-image: url("../imgs/bn-branches@2x.jpg");
}

.main .fBanner a.fdc {
  width: 100%;
  background-image: url("../imgs/bn-fdc@2x.jpg");
  background-position: 60% center;
}

.main .fBanner a.grand_champion {
  background-image: url("../imgs/bn-grand_champion@2x.jpg");
}

.main .fBanner a.hanacupid_grandprix {
  background-image: url("../imgs/bn-hanacupid_grandprix@2x.jpg");
}

.main .fBanner a.japancup {
  background-image: url("../imgs/bn-japancup@2x.jpg");
}

.main .fBanner a.member {
  background-image: url("../imgs/bn-member@2x.jpg");
}

.main .fBanner a.organization {
  background-image: url("../imgs/bn-organization@2x.jpg");
}

.main .fBanner a.recruit {
  background-image: url("../imgs/bn-recruit@2x.jpg");
}

.main .fBanner a.search {
  background-image: url("../imgs/bn-search@2x.jpg");
}

.main .fBanner a.topics {
  background-image: url("../imgs/bn-topics@2x.jpg");
}

.main .fBanner a.contact {
  background-image: url("../imgs/member/bnr-contact@2x.jpg");
  background-position: 12% center;
  padding-left: 1.05rem;
  position: relative;
  width: 100%;
}

.main .fBanner a.contact::before {
  background: url("../imgs/ico-mail2.svg") 0 0/contain no-repeat;
  content: '';
  height: 0.3rem;
  position: absolute;
  left: 0.4rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0.41rem;
}

@media screen and (min-width: 751px) {
  .main .fBanner a.contact .small {
    font-size: 0.16rem;
  }

  .main .fBanner a.contact .small span {
    font-size: 0.2rem;
  }

  .main .fBanner a.contact .ja {
    color: #3D62AD;
    font-size: 0.24rem;
  }
}

@media screen and (max-width: 750px) {
  .main .fBanner a.contact .small {
    margin-bottom: 0.1rem;
  }
}

.main .fBanner a.flower_college {
  background-image: url("../imgs/flower_college/bnr-colleage@2x.jpg");
  background-position: 40% 0;
  padding-left: 0.34rem;
  width: 100%;
}

.main .fBanner a.flower_college .logo {
  width: 3.08rem;
}

@media screen and (max-width: 750px) {
  .main .fBanner a.flower_college .logo {
    width: 2rem;
  }
}

.main .nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
}

.main .nav-links .page-numbers {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 0.48rem;
  height: 0.48rem;
  margin: 0 0.08rem;
  border: 0.01rem solid #E4E9F2;
  border-radius: 50%;
  color: #3D62AD;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  text-align: center;
  transition: 0.3s;
  transition-property: border-color, background-color, color;
}

@media screen and (max-width: 750px) {
  .main .nav-links .page-numbers {
    margin: 0 0.06rem;
  }

  .main .nav-links .page-numbers.pc {
    display: none;
  }
}

.main .nav-links .page-numbers.current,
html:not(.mobile) .main .nav-links .page-numbers:not(.dots):hover {
  border-color: #9AA8D8;
  background-color: #9AA8D8;
  color: #fff;
}

.main .nav-links .page-numbers.dots {
  width: auto;
  height: auto;
  border: none;
  border-radius: 0;
}

.main .nav-links .page-numbers.next,
.main .nav-links .page-numbers.prev {
  background: url("../imgs/arrow03.svg") 50% 50%/0.08rem auto no-repeat;
  color: transparent !important;
}

html:not(.mobile) .main .nav-links .page-numbers.next:hover,
html:not(.mobile) .main .nav-links .page-numbers.prev:hover {
  background-image: url("../imgs/arrow03_w.svg");
}

.main .nav-links .page-numbers.next {
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

body.home .main .mainVisual {
  overflow: hidden;
  position: relative;
  width: 100%;
}

body.home .main .mainVisual .slide {
  vertical-align: top;
}

body.home .main .mainVisual .slide .inner {
  position: relative;
}

@media screen and (min-width: 751px) {
  body.home .main .mainVisual .slide .inner {
    height: calc(100vh - .88rem);
    max-height: 55.625vw;
    position: relative;
  }

  body.home .main .mainVisual .slide .inner img {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
  }
}

body.home .main .mainVisual .slide .inner .text {
  width: 100%;
  max-width: 10.40rem;
  padding: 0 0 1rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 750px) {
  body.home .main .mainVisual .slide .inner .text {
    padding: 0;
    top: auto;
    bottom: 0.44rem;
    left: 0;
    -webkit-transform: none;
    transform: none;
  }
}

body.home .main .mainVisual .slide .inner .text .bt,
body.home .main .mainVisual .slide .inner .text .line01,
body.home .main .mainVisual .slide .inner .text .line02 {
  opacity: 0;
  -webkit-transform: translate3d(0, 0.2rem, 0);
  transform: translate3d(0, 0.2rem, 0);
  transition: 1s ease-out;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}

body.home .main .mainVisual .slide .inner .text .line01 {
  font-family: "Noto Serif JP", serif;
  font-size: 0.42rem;
  font-weight: 600;
  line-height: 1.80952;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 750px) {
  body.home .main .mainVisual .slide .inner .text .line01 {
    font-size: 0.22rem;
    line-height: 2;
    text-align: center;
  }
}

body.home .main .mainVisual .slide .inner .text .line02 {
  margin: 0.2rem 0 0;
  font-family: "Noto Serif JP", serif;
  font-size: 0.16rem;
  font-weight: 600;
  line-height: 2;
  transition-delay: 0.6s;
}

@media screen and (max-width: 750px) {
  body.home .main .mainVisual .slide .inner .text .line02 {
    margin: 0.08rem 0 0;
    font-size: 0.14rem;
    line-height: 1.85714;
    text-align: center;
  }
}

body.home .main .mainVisual .slide .inner .text .bt {
  margin: 0.34rem 0 0;
  width: 2.42rem;
  border-radius: 0.28rem;
  font-size: 0.18rem;
  line-height: 0.56rem;
  transition-delay: 1.2s;
}

@media screen and (max-width: 750px) {
  body.home .main .mainVisual .slide .inner .text .bt {
    margin: 0.2rem auto 0;
    width: 2.08rem;
    border-radius: 0.2rem;
    font-size: 0.16rem;
    line-height: 0.4rem;
  }
}

body.home .main .mainVisual .slide .inner .text .bt:focus {
  outline: none;
}

body.home .main .mainVisual .slide .inner .text .bt::before {
  content: '';
  display: inline-block;
  width: 0.08rem;
  height: 0.56rem;
  margin: 0 0.08rem 0 0;
  background: url("../imgs/arrow03.svg") 0 50%/100% auto no-repeat;
  vertical-align: top;
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

@media screen and (max-width: 750px) {
  body.home .main .mainVisual .slide .inner .text .bt::before {
    height: 0.4rem;
  }
}

@media screen and (max-width: 750px) {
  body.home .main .mainVisual .slide .sdgs .line01 {
    color: #fff;
  }
}

@media screen and (max-width: 750px) {
  body.home .main .mainVisual .slide .sdgs .line02 {
    display: flex;
    flex-direction: column-reverse;
  }
}

body.home .main .mainVisual .slide .sdgs .logo {
  align-items: center;
  background-color: #fff;
  color: #000;
  display: flex;
  flex-direction: column;
  margin-top: 0.25rem;
  padding-top: 0.25rem;
  padding-bottom: 0.19rem;
  position: relative;
  width: 4.3rem;
}

@media screen and (max-width: 750px) {
  body.home .main .mainVisual .slide .sdgs .logo {
    box-sizing: border-box;
    margin-top: 0.08rem;
    margin-bottom: 0.11rem;
    padding-top: 0.17rem;
    padding-right: 0.22rem;
    padding-bottom: 0.11rem;
    padding-left: 0.22rem;
    width: 2rem;
  }
}

body.home .main .mainVisual .slide .sdgs .logo img {
  min-height: 0%;
  margin-bottom: 0.14rem;
  position: static;
  -webkit-transform: none;
  transform: none;
  width: 3.1773rem;
}

@media screen and (max-width: 750px) {
  body.home .main .mainVisual .slide .sdgs .logo img {
    margin-bottom: 0.09rem;
    width: 1.5564rem;
  }
}

body.home .main .mainVisual .slide .sdgs .logo span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.11rem;
  line-height: 1;
}

@media screen and (max-width: 750px) {
  body.home .main .mainVisual .slide .sdgs .logo span {
    font-size: 0.10rem;
    text-align: left;
    line-height: 1.77778;
  }

  body.home .main .mainVisual .slide .sdgs .logo span::before,
  body.home .main .mainVisual .slide .sdgs .logo span::after {
    content: '';
    display: table;
    height: 0;
    width: 0;
  }

  body.home .main .mainVisual .slide .sdgs .logo span::before {
    margin-bottom: -0.38889em;
  }

  body.home .main .mainVisual .slide .sdgs .logo span::after {
    margin-top: -0.38889em;
  }
}

body.home .main .mainVisual .init .slick-active .slide .inner .text .bt,
body.home .main .mainVisual .init .slick-active .slide .inner .text .line01,
body.home .main .mainVisual .init .slick-active .slide .inner .text .line02 {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

body.home .main .mainVisual .init .slick-active .slide .sdgs .bt,
body.home .main .mainVisual .init .slick-active .slide .sdgs .title,
body.home .main .mainVisual .init .slick-active .slide .sdgs .container {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

body.home .main .mainVisual .slick-dots {
  display: flex;
  position: absolute;
  right: 0.76rem;
  bottom: 1.06rem;
  z-index: +1;
}

@media screen and (max-width: 750px) {
  body.home .main .mainVisual .slick-dots {
    right: 50%;
    bottom: 0.16rem;
    -webkit-transform: translate(50%, 0);
    transform: translate(50%, 0);
  }
}

body.home .main .mainVisual .slick-dots li {
  margin: 0 0.04rem;
}

body.home .main .mainVisual .slick-dots li button {
  display: block;
  box-sizing: border-box;
  width: 0.08rem;
  height: 0.08rem;
  border: none;
  padding: 0;
  background: #9AA8D8;
  border-radius: 50%;
  color: transparent;
  overflow: hidden;
}

body.home .main .mainVisual .slick-dots li.slick-active button {
  background: #3D62AD;
}

body.home .main .mainVisual .search {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.9);
}

@media screen and (max-width: 750px) {
  body.home .main .mainVisual .search {
    padding: 0.24rem 0 0;
    position: static;
  }
}

body.home .main .mainVisual .search .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 0.9rem;
}

@media screen and (max-width: 750px) {
  body.home .main .mainVisual .search .inner {
    display: block;
    height: auto;
  }
}

body.home .main .mainVisual .search .prepend {
  font-size: 0.14rem;
  font-weight: 700;
  line-height: 1.85714;
}

@media screen and (max-width: 750px) {
  body.home .main .mainVisual .search .prepend {
    line-height: 1;
    text-align: center;
  }
}

body.home .main .mainVisual .search .body {
  display: flex;
}

@media screen and (max-width: 750px) {
  body.home .main .mainVisual .search .body {
    padding: 0.16rem 0 0;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

body.home .main .mainVisual .search .keywords {
  width: 3.52rem;
}

body.home .main .mainVisual .search .keywords input[type="text"],
body.home .main .mainVisual .search .keywords input[type="search"] {
  box-sizing: border-box;
  border: 1px solid #9AA8D8;
  border-right: none;
}

@media screen and (max-width: 750px) {
  body.home .main .mainVisual .search .keywords {
    width: 100%;
  }
}

body.home .main .mainVisual .search .btLocation {
  width: 2.6rem;
  margin: 0 0 0 0.24rem;
}

body.home .main .mainVisual .search .btLocation::before {
  width: 0.12rem;
  margin: 0 0.16rem 0 0;
  background: url("../imgs/ico-marker_w.svg") 0 50%/100% auto no-repeat;
}

body.home .main .mainVisual .search .btPrefecture {
  width: 1.9rem;
  margin: 0 0 0 0.08rem;
}

body.home .main .mainVisual .search .btPrefecture::before {
  width: 0.2rem;
  margin: 0 0.08rem 0 0;
  background: url("../imgs/ico-map.svg") 0 50%/100% auto no-repeat;
}

body.home .main .mainVisual .search .btLocation,
body.home .main .mainVisual .search .btPrefecture {
  border-radius: 0.2rem;
  line-height: 0.4rem;
}

@media screen and (max-width: 750px) {

  body.home .main .mainVisual .search .btLocation,
  body.home .main .mainVisual .search .btPrefecture {
    width: 1.67rem;
    margin: 0.16rem 0 0;
    border-radius: 0.24rem;
    line-height: 0.48rem;
  }
}

body.home .main .mainVisual .search .btLocation::before,
body.home .main .mainVisual .search .btPrefecture::before {
  content: '';
  display: inline-block;
  height: 0.4rem;
  vertical-align: top;
}

@media screen and (max-width: 750px) {

  body.home .main .mainVisual .search .btLocation::before,
  body.home .main .mainVisual .search .btPrefecture::before {
    height: 0.48rem;
  }
}

body.home .main .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  min-height: 1.64rem;
  margin: 0.8rem 0 0;
  padding: 0.4rem 0.6rem 0.4rem 0.56rem;
  background: #FAF4F7;
}

@media screen and (max-width: 750px) {
  body.home .main .info {
    display: block;
    width: 100vw;
    min-height: 0;
    margin: 0.16rem -.18rem 0;
    padding: 0.4rem 0.24rem 0.48rem;
  }
}

body.home .main .info .title02 .en {
  color: #C7527B;
}

body.home .main .info .item {
  width: 6.24rem;
  font-size: 0.16rem;
  line-height: 2;
}

body.home .main .info .item+.item {
  margin-top: 2em;
}

body.home .main .info .item .date {
  font-weight: 700;
}

body.home .main .info .item a {
  color: #3D62AD;
  text-decoration: underline;
}

body.home .main .info .item a:hover {
  text-decoration: none;
}

@media screen and (max-width: 750px) {
  body.home .main .info .item {
    width: auto;
    margin: 0.22rem 0 0;
  }
}

body.home .main .topics {
  display: flex;
  flex-wrap: wrap;
  margin: 1.2rem 0 0;
}

@media screen and (max-width: 750px) {
  body.home .main .topics {
    display: block;
    margin: .5rem 0 0;
  }
}

body.home .main .topics .prepend {
  width: 1.84rem;
}

@media screen and (max-width: 750px) {
  body.home .main .topics .prepend {
    width: auto;
  }

  body.home .main .topics .prepend .title02 {
    display: flex;
    align-items: flex-end;
  }

  body.home .main .topics .prepend .title02 .ja {
    margin: 0 .16rem 0 0;
    font-size: .26rem;
  }

  body.home .main .topics .prepend .title02 .en {
    font-size: .16rem;
  }
}

body.home .main .topics .body {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: calc(100% - 1.84rem);
}

@media screen and (max-width: 750px) {
  body.home .main .topics .body {
    display: block;
    width: auto;
  }
}

body.home .main .topics .body .item {
  display: flex;
  justify-content: space-between;
  width: 4.08rem;
  margin: 0.4rem 0 0;
  position: relative;
  transition: .3s opacity;
}

@media screen and (max-width: 750px) {
  body.home .main .topics .body .item {
    width: auto;
    margin: .24rem 0 0;
  }
}

body.home .main .topics .body .item:nth-child(-n + 2) {
  margin-top: 0;
}

@media screen and (max-width: 750px) {
  body.home .main .topics .body .item:nth-child(-n + 2) {
    margin-top: .24rem;
  }
}

body.home .main .topics .body .item:hover {
  opacity: 0.7;
}

body.home .main .topics .body .item:hover .summary {
  text-decoration: underline;
}

body.home .main .topics .body .item .image {
  width: 1.2rem;
}

@media screen and (max-width: 750px) {
  body.home .main .topics .body .item .image {
    width: .88rem;
  }
}

body.home .main .topics .body .item .text {
  width: 2.65rem;
}

@media screen and (max-width: 750px) {
  body.home .main .topics .body .item .text {
    width: 2.36rem;
  }
}

body.home .main .topics .body .item .text .data {
  display: flex;
  align-items: center;
  line-height: 0.24rem;
}

@media screen and (max-width: 750px) {
  body.home .main .topics .body .item .text .data {
    line-height: 0.2rem;
  }
}

body.home .main .topics .body .item .text .data .category {
  margin: 0 0.16rem 0 0;
  padding: 0 .1rem;
  background: #C3CFEA;
  color: #fff;
  font-size: 0.12rem;
  font-weight: 700;
}

@media screen and (max-width: 750px) {
  body.home .main .topics .body .item .text .data .category {
    margin: 0 0.12rem 0 0;
    font-size: 0.1rem;
  }
}

body.home .main .topics .body .item .text .data .date {
  color: #3D62AD;
  font-family: "Roboto", sans-serif;
  font-size: 0.14rem;
  font-weight: 400;
}

body.home .main .topics .body .item .text .summary {
  line-height: 1.875;
  margin: 0.14rem 0 0;
  font-size: 0.16rem;
  position: relative;
}

body.home .main .topics .body .item .text .summary::before,
body.home .main .topics .body .item .text .summary::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.home .main .topics .body .item .text .summary::before {
  margin-bottom: -0.4375em;
}

body.home .main .topics .body .item .text .summary::after {
  margin-top: -0.4375em;
}

@media screen and (max-width: 750px) {
  body.home .main .topics .body .item .text .summary {
    margin: 0.16rem 0 0;
  }
}

body.home .main .topics .body .item.ext .summary::after,
body.home .main .topics .body .item.pdf .summary::after {
  content: '';
  display: inline-block;
  width: 0.14rem;
  height: 0.14rem;
  background: 0 0 / contain no-repeat;
  margin: 0 0 0 .25em;
}

body.home .main .topics .body .item.pdf .summary::after {
  background-image: url("../imgs/ico-pdf.svg");
}

body.home .main .topics .body .item.ext .summary::after {
  background-image: url("../imgs/ico-ext.svg");
}

body.home .main .topics .append {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin: 0.6rem 0 0;
}

@media screen and (max-width: 750px) {
  body.home .main .topics .append {
    display: block;
    margin: .16rem 0 0;
  }

  body.home .main .topics .append .bt02 {
    width: auto;
  }
}

body.home .main .fBanner {
  margin: 0.64rem 0 0;
}

body.home .main .case .prepend,
body.hanacupid .main .case .prepend {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 750px) {

  body.home .main .case .prepend,
  body.hanacupid .main .case .prepend {
    display: block;
    padding: 0 0.06rem;
  }
}

body.home .main .case .prepend .title,
body.hanacupid .main .case .prepend .title {
  display: flex;
  align-items: center;
  width: 3.54rem;
}

@media screen and (max-width: 750px) {

  body.home .main .case .prepend .title,
  body.hanacupid .main .case .prepend .title {
    display: block;
    width: auto;
  }
}

body.home .main .case .prepend .title .ja,
body.hanacupid .main .case .prepend .title .ja {
  display: block;
  margin: -.15rem 0.16rem -.15rem 0;
  position: relative;
  font-family: "Noto Serif JP", serif;
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.42857;
}

@media screen and (max-width: 750px) {

  body.home .main .case .prepend .title .ja,
  body.hanacupid .main .case .prepend .title .ja {
    margin: 0;
    font-size: 0.5rem;
    line-height: 1;
  }
}

body.home .main .case .prepend .title .ja em,
body.hanacupid .main .case .prepend .title .ja em {
  color: #3D62AD;
  font-style: normal;
}

body.home .main .case .prepend .title .ja::before,
body.hanacupid .main .case .prepend .title .ja::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  background: #E4E9F2;
}

@media screen and (max-width: 750px) {

  body.home .main .case .prepend .title .ja::before,
  body.hanacupid .main .case .prepend .title .ja::before {
    content: none;
  }
}

body.home .main .case .prepend .title .en,
body.hanacupid .main .case .prepend .title .en {
  display: block;
  color: #3D62AD;
  font-size: 0.16rem;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media screen and (max-width: 750px) {

  body.home .main .case .prepend .title .en,
  body.hanacupid .main .case .prepend .title .en {
    margin: 0.2rem 0 0;
  }
}

body.home .main .case .prepend p,
body.hanacupid .main .case .prepend p {
  width: calc(100% - 3.54rem);
  font-size: 0.16rem;
  line-height: 2;
}

@media screen and (max-width: 750px) {

  body.home .main .case .prepend p,
  body.hanacupid .main .case .prepend p {
    width: auto;
    margin: 0.3rem 0 0;
  }
}

body.home .main .case .body,
body.hanacupid .main .case .body {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 750px) {

  body.home .main .case .body,
  body.hanacupid .main .case .body {
    display: block;
  }
}

body.home .main .case .body .item,
body.hanacupid .main .case .body .item {
  position: relative;
}

body.home .main .case .body .item .bt,
body.hanacupid .main .case .body .item .bt {
  display: flex;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

body.home .main .case .body .item .bt .bt01,
body.hanacupid .main .case .body .item .bt .bt01 {
  padding: 0 0.14rem;
  font-size: 0.16rem;
  line-height: 0.48rem;
}

body.home .main .case .body .item .bt .bt01::before,
body.hanacupid .main .case .body .item .bt .bt01::before {
  content: '';
  display: inline-block;
  width: 0.08rem;
  height: 0.48rem;
  margin: 0 0.08rem 0 0;
  background: url("../imgs/arrow03.svg") 0 50%/100% auto no-repeat;
  vertical-align: top;
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

body.home .main .case .body .item .bt .bt01+.bt01,
body.hanacupid .main .case .body .item .bt .bt01+.bt01 {
  margin: 0 0 0 0.08rem;
}

body.home .main .case.gift,
body.hanacupid .main .case.gift {
  margin: 0.9rem 0 0;
}

@media screen and (max-width: 750px) {

  body.home .main .case.gift,
  body.hanacupid .main .case.gift {
    margin: 0.5rem 0 0;
  }
}

body.home .main .case.gift .body,
body.hanacupid .main .case.gift .body {
  flex-wrap: wrap;
  margin: 0.16rem 0 0;
}

@media screen and (max-width: 750px) {

  body.home .main .case.gift .body,
  body.hanacupid .main .case.gift .body {
    margin: 0.56rem 0 0;
  }
}

body.home .main .case.gift .body .item,
body.hanacupid .main .case.gift .body .item {
  width: 3.32rem;
  margin: 0.64rem 0 0;
  padding: 0 0 0.24rem;
}

@media screen and (max-width: 750px) {

  body.home .main .case.gift .body .item,
  body.hanacupid .main .case.gift .body .item {
    width: auto;
    margin: 0.16rem 0 0;
    padding: 0 0 0.24rem;
  }
}

body.home .main .case.gift .body .item .bt01,
body.hanacupid .main .case.gift .body .item .bt01 {
  font-size: 0.16rem;
}

body.home .main .case.about,
body.hanacupid .main .case.about {
  margin: 1.24rem 0 0;
}

@media screen and (max-width: 750px) {

  body.home .main .case.about,
  body.hanacupid .main .case.about {
    margin: 0.5rem 0 0;
  }
}

body.home .main .case.about .body,
body.hanacupid .main .case.about .body {
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0.16rem -.3rem 0 0;
}

@media screen and (max-width: 750px) {

  body.home .main .case.about .body,
  body.hanacupid .main .case.about .body {
    margin: 0.56rem 0 0;
  }
}

body.home .main .case.about .body .item,
body.hanacupid .main .case.about .body .item {
  width: 3.32rem;
  margin: 0.64rem .22rem 0 0;
  padding: 0 0 0.24rem;
}

@media screen and (max-width: 750px) {

  body.home .main .case.about .body .item,
  body.hanacupid .main .case.about .body .item {
    width: auto;
    margin: 0.16rem 0 0;
    padding: 0 0 0.24rem;
  }
}

body.home .main .case.about .body .item .bt01,
body.hanacupid .main .case.about .body .item .bt01 {
  font-size: 0.16rem;
}

body.news .main .prepend.input {
  padding: .48rem;
  background: #F4F3F7;
}

@media screen and (max-width: 750px) {
  body.news .main .prepend.input {
    padding: .18rem;
  }
}

body.news .main .prepend.input .box01 {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 750px) {
  body.news .main .prepend.input .box01 {
    display: block;
  }
}

body.news .main .prepend.input .box01 .keywords {
  width: 5.8rem;
}

@media screen and (max-width: 750px) {
  body.news .main .prepend.input .box01 .keywords {
    width: auto;
  }
}

body.news .main .prepend.input .box01 .keywords input[type="text"] {
  width: calc(100% - .48rem);
}

@media screen and (max-width: 750px) {
  body.news .main .prepend.input .box01 .keywords input[type="text"] {
    border: none;
  }
}

body.news .main .prepend.input .box01 .keywords input[type="submit"] {
  width: .48rem;
  height: .48rem;
}

body.news .main .prepend.input .box01 .year {
  display: flex;
  width: 3.4rem;
  height: .48rem;
  position: relative;
}

@media screen and (max-width: 750px) {
  body.news .main .prepend.input .box01 .year {
    margin: .16rem 0 0;
    width: auto;
  }
}

body.news .main .prepend.input .box01 .year select {
  box-sizing: border-box;
  width: 100%;
  border: none;
  padding: 0 .65rem 0 .24rem;
  background: #fff;
  border-radius: 0;
}

@media screen and (max-width: 750px) {
  body.news .main .prepend.input .box01 .year select {
    padding-left: .15rem;
    font-size: 16px;
  }
}

body.news .main .prepend.input .box01 .year::after {
  content: '';
  display: block;
  width: .48rem;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: #5E75C3 url(../imgs/arrow02_w.svg) 50% 50%/0.08rem auto no-repeat;
  pointer-events: none;
}

body.news .main .prepend.input .box02 {
  display: flex;
  flex-wrap: wrap;
  margin: .16rem 0 0;
}

body.news .main .prepend.input .box02 label {
  margin: .08rem .08rem 0 0;
  position: relative;
}

body.news .main .prepend.input .box02 label input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

body.news .main .prepend.input .box02 label input:checked+span {
  background: #9AA8D8;
  color: #fff;
  font-weight: 700;
}

body.news .main .prepend.input .box02 label span {
  display: block;
  padding: .13rem .18rem;
  background: #fff;
  border-radius: .2rem;
  color: #3D62AD;
  font-weight: 500;
  line-height: 1;
  transition: .3s;
  transition-property: background-color, color;
}

@media screen and (max-width: 750px) {
  body.news .main .prepend.input .box02 label span {
    padding: .1rem .18rem;
    border-radius: .17rem;
  }
}

body.news .main .body.list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: .8rem 0 0;
}

@media screen and (max-width: 750px) {
  body.news .main .body.list {
    display: block;
    margin: .4rem 0 0;
  }
}

body.news .main .body.list .label {
  width: 100%;
  font-size: .22rem;
  font-weight: 700;
  line-height: 1.8;
}

body.news .main .body.list .label::before,
body.news .main .body.list .label::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.news .main .body.list .label::before {
  margin-bottom: -0.4em;
}

body.news .main .body.list .label::after {
  margin-top: -0.4em;
}

@media screen and (max-width: 750px) {
  body.news .main .body.list .label {
    font-size: 0.18rem;
  }
}

body.news .main .body.list .item {
  display: flex;
  justify-content: space-between;
  width: 5rem;
  margin: 0.4rem 0 0;
  position: relative;
  transition: .3s opacity;
}

@media screen and (max-width: 750px) {
  body.news .main .body.list .item {
    width: auto;
    margin: .24rem 0 0;
  }
}

body.news .main .body.list .item:hover {
  opacity: 0.7;
}

body.news .main .body.list .item:hover .summary {
  text-decoration: underline;
}

body.news .main .body.list .item:nth-of-type(-n + 2) {
  margin-top: .3rem;
}

@media screen and (max-width: 750px) {
  body.news .main .body.list .item:nth-of-type(-n + 2) {
    margin-top: .24rem;
  }
}

body.news .main .body.list .item .image {
  width: 1.6rem;
}

@media screen and (max-width: 750px) {
  body.news .main .body.list .item .image {
    width: .88rem;
  }
}

body.news .main .body.list .item .text {
  width: 3.2rem;
}

@media screen and (max-width: 750px) {
  body.news .main .body.list .item .text {
    width: 2.36rem;
  }
}

body.news .main .body.list .item .text .data {
  display: flex;
  align-items: center;
  line-height: 0.24rem;
}

@media screen and (max-width: 750px) {
  body.news .main .body.list .item .text .data {
    line-height: 0.2rem;
  }
}

body.news .main .body.list .item .text .data .category {
  margin: 0 0.16rem 0 0;
  padding: 0 .1rem;
  background: #C3CFEA;
  color: #fff;
  font-size: 0.12rem;
  font-weight: 700;
}

@media screen and (max-width: 750px) {
  body.news .main .body.list .item .text .data .category {
    margin: 0 0.12rem 0 0;
    font-size: 0.1rem;
  }
}

body.news .main .body.list .item .text .data .date {
  color: #3D62AD;
  font-family: "Roboto", sans-serif;
  font-size: 0.14rem;
  font-weight: 400;
}

body.news .main .body.list .item .text .summary {
  line-height: 1.875;
  margin: 0.3rem 0 0;
  font-size: 0.16rem;
}

body.news .main .body.list .item .text .summary::before,
body.news .main .body.list .item .text .summary::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.news .main .body.list .item .text .summary::before {
  margin-bottom: -0.4375em;
}

body.news .main .body.list .item .text .summary::after {
  margin-top: -0.4375em;
}

@media screen and (max-width: 750px) {
  body.news .main .body.list .item .text .summary {
    margin: 0.16rem 0 0;
  }
}

body.news .main .body.list .item.ext .summary::after,
body.news .main .body.list .item.pdf .summary::after {
  content: '';
  display: inline-block;
  width: 0.14rem;
  height: 0.14rem;
  background: 0 0 / contain no-repeat;
  margin: 0 0 0 .25em;
}

body.news .main .body.list .item.pdf .summary::after {
  background-image: url("../imgs/ico-pdf.svg");
}

body.news .main .body.list .item.ext .summary::after {
  background-image: url("../imgs/ico-ext.svg");
}

body.news .main .append {
  margin: .8rem 0 0;
}

@media screen and (max-width: 750px) {
  body.news .main .append {
    margin: 0.4rem 0 0;
  }
}

body.news .main .body.post {
  width: 9.8rem;
  margin: -.4rem auto 0;
}

@media screen and (max-width: 750px) {
  body.news .main .body.post {
    margin-top: 0;
    width: auto;
  }
}

body.news .main .body.post .data {
  display: flex;
  line-height: .32rem;
}

@media screen and (max-width: 750px) {
  body.news .main .body.post .data {
    flex-wrap: wrap;
  }
}

body.news .main .body.post .data .category {
  margin: 0 0.24rem 0 0;
  padding: 0 .32rem;
  background: #9AA8D8;
  color: #fff;
  font-size: 0.14rem;
  font-weight: 700;
}

@media screen and (max-width: 750px) {
  body.news .main .body.post .data .category {
    font-size: 0.12rem;
    margin: 0 0.12rem 0 0;
    padding: 0 .12rem;
  }
}

body.news .main .body.post .data .date {
  color: #3D62AD;
  font-family: "Roboto", sans-serif;
  font-size: 0.18rem;
  font-weight: 400;
}

@media screen and (max-width: 750px) {
  body.news .main .body.post .data .date {
    font-size: 0.12rem;
  }
}

body.news .main .body.post .data .sns {
  display: flex;
  width: 1.8rem;
  margin: 0 0 0 auto;
}

@media screen and (max-width: 750px) {
  body.news .main .body.post .data .sns {
    margin-top: .1rem;
    margin-left: calc(100% - 1.8rem);
  }
}

body.news .main .body.post .data .sns .facebook,
body.news .main .body.post .data .sns .twitter,
body.news .main .body.post .data .sns .x-twitter {
  box-sizing: border-box;
  width: 50%;
  border: 1px solid currentcolor;
  padding: 0;
  font-size: .12rem;
  font-weight: 700;
  line-height: calc(.32rem - 2px);
  text-align: center;
}

body.news .main .body.post .data .sns .facebook::before,
body.news .main .body.post .data .sns .twitter::before ,
body.news .main .body.post .data .sns .x-twitter::before{
  content: '';
  display: inline-block;
  height: 100%;
  margin: 0 .05rem 0 0;
  background: 0 50% / 100% auto no-repeat;
  vertical-align: top;
}

body.news .main .body.post .data .sns .facebook::after,
body.news .main .body.post .data .sns .twitter::after,
body.news .main .body.post .data .sns .x-twitter::after {
  content: none;
}

body.news .main .body.post .data .sns .facebook {
  border-right: none;
  border-radius: .04rem 0 0 .04rem;
  color: #1877F2;
}

body.news .main .body.post .data .sns .facebook::before {
  width: .06rem;
  background-image: url(../imgs/ico-facebook02.svg);
}

body.news .main .body.post .data .sns .twitter {
  border-radius: 0 .04rem .04rem 0;
  color: #1DA1F2;
}

body.news .main .body.post .data .sns .x-twitter {
  border-radius: 0 .04rem .04rem 0;
  color: #000;
}

body.news .main .body.post .data .sns .twitter::before {
  width: .14rem;
  background-image: url(../imgs/ico-twitter02.svg);
}

body.news .main .body.post .data .sns .x-twitter::before {
  width: .12rem;
  background-image: url(../imgs/x-twitter.png);
}

body.news .main .body.post .post h1 {
  line-height: 1.8;
  padding: .3rem 0 .4rem;
  font-family: "Noto Serif JP", serif;
  font-size: .24rem;
  font-weight: 600;
}

body.news .main .body.post .post h1::before,
body.news .main .body.post .post h1::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.news .main .body.post .post h1::before {
  margin-bottom: -0.4em;
}

body.news .main .body.post .post h1::after {
  margin-top: -0.4em;
}

@media screen and (max-width: 750px) {
  body.news .main .body.post .post h1 {
    padding-bottom: 0.3rem;
  }
}

body.news .main .body.post .post h1~* {
  padding: .8rem 0 0;
}

@media screen and (max-width: 750px) {
  body.news .main .body.post .post h1~* {
    padding: .3rem 0 0;
  }
}

body.news .main .body.post .post h1+* {
  padding-top: 0;
}

body.news .main .body.post .post h2 {
  line-height: 1.90909;
  padding: .9rem 0 0;
  font-size: .24rem;
  font-weight: 700;
}

body.news .main .body.post .post h2::before,
body.news .main .body.post .post h2::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.news .main .body.post .post h2::before {
  margin-bottom: -0.45455em;
}

body.news .main .body.post .post h2::after {
  margin-top: -0.45455em;
}

@media screen and (max-width: 750px) {
  body.news .main .body.post .post h2 {
    padding-top: .4rem;
  }
}

body.news .main .body.post .post h2+* {
  padding-top: .3rem;
}

body.news .main .body.post .post h3 {
  padding: .72rem 0 0 .18rem;
  position: relative;
  font-size: .2rem;
  font-weight: 700;
  line-height: 1.88889;
}

body.news .main .body.post .post h3::before {
  content: '';
  display: block;
  width: 1px;
  position: absolute;
  top: .8rem;
  bottom: .08rem;
  left: 0;
  background: #9AA8D8;
}

@media screen and (max-width: 750px) {
  body.news .main .body.post .post h3 {
    padding-top: .32rem;
  }
}

body.news .main .body.post .post h3+* {
  padding-top: .22rem;
}

body.news .main .body.post .post h4 {
  line-height: 2;
  padding: .8rem 0 0;
  font-size: .18rem;
  font-weight: 700;
}

body.news .main .body.post .post h4::before,
body.news .main .body.post .post h4::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.news .main .body.post .post h4::before {
  margin-bottom: -0.5em;
}

body.news .main .body.post .post h4::after {
  margin-top: -0.5em;
}

@media screen and (max-width: 750px) {
  body.news .main .body.post .post h4 {
    padding-top: .4rem;
  }
}

body.news .main .body.post .post h4+* {
  padding-top: .3rem;
}

body.news .main .body.post .post h5 {
  line-height: 2.28571;
  padding: .6rem 0 0;
  font-size: .16rem;
  font-weight: 700;
}

body.news .main .body.post .post h5::before,
body.news .main .body.post .post h5::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.news .main .body.post .post h5::before {
  margin-bottom: -0.64286em;
}

body.news .main .body.post .post h5::after {
  margin-top: -0.64286em;
}

@media screen and (max-width: 750px) {
  body.news .main .body.post .post h5 {
    padding-top: .3rem;
  }
}

body.news .main .body.post .post h5+* {
  padding-top: .2rem;
}

body.news .main .body.post .post h6 {
  line-height: 2.28571;
  padding: .4rem 0 0;
}

body.news .main .body.post .post h6::before,
body.news .main .body.post .post h6::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.news .main .body.post .post h6::before {
  margin-bottom: -0.64286em;
}

body.news .main .body.post .post h6::after {
  margin-top: -0.64286em;
}

@media screen and (max-width: 750px) {
  body.news .main .body.post .post h6 {
    padding-top: .2rem;
  }
}

body.news .main .body.post .post h6+* {
  padding-top: .2rem;
}

body.news .main .body.post .post picture {
  display: block;
}

body.news .main .body.post .post p,
body.news .main .body.post .post ul,
body.news .main .body.post .post ol {
  line-height: 2;
  font-size: .16rem;
}

body.news .main .body.post .post p::before,
body.news .main .body.post .post p::after,
body.news .main .body.post .post ul::before,
body.news .main .body.post .post ul::after,
body.news .main .body.post .post ol::before,
body.news .main .body.post .post ol::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.news .main .body.post .post p::before,
body.news .main .body.post .post ul::before,
body.news .main .body.post .post ol::before {
  margin-bottom: -0.5em;
}

body.news .main .body.post .post p::after,
body.news .main .body.post .post ul::after,
body.news .main .body.post .post ol::after {
  margin-top: -0.5em;
}

body.news .main .body.post .post ul li {
  padding: 0 0 0 .2rem;
  position: relative;
}

body.news .main .body.post .post ul li::before {
  content: '';
  display: block;
  width: .04rem;
  height: .04rem;
  position: absolute;
  top: .14rem;
  left: 0;
  background: #9AA8D8;
  border-radius: 50%;
}

body.news .main .body.post .post ol {
  counter-reset: num;
}

body.news .main .body.post .post ol li {
  padding: 0 0 0 .2rem;
  position: relative;
  counter-increment: num;
}

body.news .main .body.post .post ol li::before {
  content: counter(num) ".";
  display: block;
  width: .2rem;
  height: .04rem;
  position: absolute;
  top: .09rem;
  left: 0;
  color: #9AA8D8;
  font-size: .14rem;
  font-weight: 500;
  line-height: 1;
}

body.news .main .body.post .post a {
  display: inline-block;
  color: #3D62AD;
}

body.news .main .body.post .post a[target="_blank"]::after {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  margin: 0 .25em;
  background: url(../imgs/ico-ext.svg) 0 0/contain no-repeat;
}

body.news .main .body.post .post a:not([class]):hover {
  text-decoration: underline;
}

body.news .main .body.post .post p+p,
body.news .main .body.post .post p+ul,
body.news .main .body.post .post p+ol,
body.news .main .body.post .post ul+p,
body.news .main .body.post .post ul+ul,
body.news .main .body.post .post ul+ol,
body.news .main .body.post .post ol+p,
body.news .main .body.post .post ol+ul,
body.news .main .body.post .post ol+ol {
  padding: .4rem 0 0;
}

body.news .main .body.post .post .wp-block-columns,
body.news .main .body.post .post .col2 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: .95rem 0 0;
  margin-bottom: 0;
}

@media screen and (max-width: 750px) {

  body.news .main .body.post .post .wp-block-columns,
  body.news .main .body.post .post .col2 {
    display: block;
    padding: 0;
  }
}

body.news .main .body.post .post .wp-block-columns.r,
body.news .main .body.post .post .wp-block-columns.reverse,
body.news .main .body.post .post .col2.r,
body.news .main .body.post .post .col2.reverse {
  flex-direction: row-reverse;
}

body.news .main .body.post .post .wp-block-columns .wp-block-image,
body.news .main .body.post .post .col2 .wp-block-image {
  margin-bottom: 0;
}

body.news .main .body.post .post .wp-block-columns .wp-block-column,
body.news .main .body.post .post .wp-block-columns>*,
body.news .main .body.post .post .col2 .wp-block-column,
body.news .main .body.post .post .col2>* {
  width: 4.7rem;
  display: block;
  margin: 0;
  flex-grow: 0;
  flex-basis: auto;
}

@media screen and (max-width: 750px) {

  body.news .main .body.post .post .wp-block-columns .wp-block-column,
  body.news .main .body.post .post .wp-block-columns>*,
  body.news .main .body.post .post .col2 .wp-block-column,
  body.news .main .body.post .post .col2>* {
    width: auto;
    padding: .4rem 0 0;
  }
}

body.news .main .body.post .post .wp-block-columns h2:first-child,
body.news .main .body.post .post .wp-block-columns h3:first-child,
body.news .main .body.post .post .wp-block-columns h4:first-child,
body.news .main .body.post .post .wp-block-columns h5:first-child,
body.news .main .body.post .post .col2 h2:first-child,
body.news .main .body.post .post .col2 h3:first-child,
body.news .main .body.post .post .col2 h4:first-child,
body.news .main .body.post .post .col2 h5:first-child {
  padding-top: 0;
}

body.news .main .body.post .post .wp-block-columns h3:first-child,
body.news .main .body.post .post .col2 h3:first-child {
  margin-top: -.08rem;
}

body.news .main .body.post .post .wp-block-columns h3:first-child::before,
body.news .main .body.post .post .col2 h3:first-child::before {
  top: .08rem;
}

body.news .main .body.post .post .wp-block-columns+.col2,
body.news .main .body.post .post .col2+.col2 {
  padding-top: .8rem;
}

@media screen and (max-width: 750px) {

  body.news .main .body.post .post .wp-block-columns+.col2,
  body.news .main .body.post .post .col2+.col2 {
    padding-top: 0;
  }
}

body.news .main .body.post .post .notice {
  margin: .8rem 0 0;
  padding: .32rem .26rem .26rem;
  background: #F4F3F7;
  text-align: center;
}

@media screen and (max-width: 750px) {
  body.news .main .body.post .post .notice {
    margin: .4rem 0 0;
    padding: .2rem;
  }
}

body.news .main .body.post .post .notice .label {
  font-family: "Noto Serif JP", serif;
  font-size: .26rem;
  font-weight: 600;
  line-height: 1;
}

body.news .main .body.post .post .notice .text {
  line-height: 2;
  padding: .2rem 0 0;
  font-size: .16rem;
}

body.news .main .body.post .post .notice .text::before,
body.news .main .body.post .post .notice .text::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.news .main .body.post .post .notice .text::before {
  margin-bottom: -0.5em;
}

body.news .main .body.post .post .notice .text::after {
  margin-top: -0.5em;
}

@media screen and (max-width: 750px) {
  body.news .main .body.post .post .notice .text {
    text-align: left;
  }
}

body.news .main .body.post .post .brancheList {
  padding: .4rem .48rem;
  background: #F4F3F7;
  font-size: .16rem;
  line-height: 2.125;
}

@media screen and (max-width: 750px) {
  body.news .main .body.post .post .brancheList {
    padding: 0 .2rem .2rem;
  }
}

body.news .main .body.post .post .brancheList dl {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 750px) {
  body.news .main .body.post .post .brancheList dl {
    display: block;
  }
}

body.news .main .body.post .post .brancheList dt {
  font-weight: 700;
  width: 1.6rem;
}

@media screen and (max-width: 750px) {
  body.news .main .body.post .post .brancheList dt {
    width: auto;
    padding: .2rem 0 0;
  }
}

body.news .main .body.post .post .brancheList dd {
  width: calc(100% - 1.6rem);
}

@media screen and (max-width: 750px) {
  body.news .main .body.post .post .brancheList dd {
    width: auto;
  }
}

body.news .main .body.post .post .brancheList ul {
  display: flex;
  flex-wrap: wrap;
}

body.news .main .body.post .post .brancheList ul::before,
body.news .main .body.post .post .brancheList ul::after {
  content: none;
}

body.news .main .body.post .post .brancheList li {
  padding: 0;
}

body.news .main .body.post .post .brancheList li::before {
  content: none;
}

body.news .main .body.post .post .brancheList li::after {
  content: '│';
  color: #3D62AD;
  margin: 0 .5em;
}

body.news .main .body.post .post .brancheList a {
  padding: 0;
  line-height: inherit;
}

body.news .main .body.post .post .branch {
  padding: .4rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}

@media screen and (max-width: 750px) {
  body.news .main .body.post .post .branch {
    display: block;
  }
}

body.news .main .body.post .post .branch+.branch {
  border-top: .01rem solid #E4E9F2;
  padding-top: 0;
}

body.news .main .body.post .post .branch:last-child {
  padding-bottom: 0;
}

body.news .main .body.post .post .branch h2 {
  width: 100%;
  padding: .4rem 0 .2rem;
}

body.news .main .body.post .post .branch picture {
  width: 2.6rem;
  padding-top: 0;
}

@media screen and (max-width: 750px) {
  body.news .main .body.post .post .branch picture {
    display: block;
    width: auto;
  }

  body.news .main .body.post .post .branch picture img {
    width: 100%;
  }
}

body.news .main .body.post .post .branch .text {
  width: 6.8rem;
}

@media screen and (max-width: 750px) {
  body.news .main .body.post .post .branch .text {
    width: auto;
    padding: .2rem 0 0;
  }
}

body.news .main .body.post .post .branch .text .data {
  margin: .32rem 0 0;
  font-size: .16rem;
  line-height: .32rem;
}

body.news .main .body.post .post .branch .text .data .date,
body.news .main .body.post .post .branch .text .data .number,
body.news .main .body.post .post .branch .text .data .location {
  padding: 0 0 0 .2rem;
  background: 0 50% / .12rem auto no-repeat;
}

body.news .main .body.post .post .branch .text .data .date,
body.news .main .body.post .post .branch .text .data .number {
  margin: 0 .24rem 0 0;
  color: inherit;
  font-family: "Roboto", sans-serif;
  font-size: .14rem;
}

body.news .main .body.post .post .branch .text .data .date {
  background-image: url(../imgs/ico-calendar.svg);
}

body.news .main .body.post .post .branch .text .data .number {
  background-image: url(../imgs/ico-person.svg);
}

body.news .main .body.post .post .branch .text .data .number span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: .12rem;
}

body.news .main .body.post .post .branch .text .data .location {
  background-image: url(../imgs/ico-marker.svg);
}

body.news .main .body.post .post .branch .text .data+.data {
  margin: 0;
}

body.news .main .body.post .post .prizebox {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 750px) {
  body.news .main .body.post .post .prizebox {
    display: block;
  }
}

body.news .main .body.post .post .prizebox .text,
body.news .main .body.post .post .prizebox picture {
  width: 4.45rem;
}

@media screen and (max-width: 750px) {

  body.news .main .body.post .post .prizebox .text,
  body.news .main .body.post .post .prizebox picture {
    width: auto;
  }
}

body.news .main .body.post .post .prizebox .text {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 750px) {
  body.news .main .body.post .post .prizebox .text {
    display: block;
  }
}

body.news .main .body.post .post .prizebox .text .rank {
  width: 1.4rem;
}

@media screen and (max-width: 750px) {
  body.news .main .body.post .post .prizebox .text .rank {
    margin: 0 auto;
    width: 1rem;
  }
}

body.news .main .body.post .post .prizebox .text .rank div {
  box-sizing: border-box;
  height: 1.4rem;
  padding: .76rem 0 0;
  background: #F4F3F7 url(../imgs/ico-crown.svg) 50% 0.4rem/0.33rem auto no-repeat;
  border-radius: 50%;
  font-family: "Noto Serif JP", serif;
  font-size: .28rem;
  font-weight: 600;
  letter-spacing: .1em;
  line-height: 1;
  text-align: center;
}

@media screen and (max-width: 750px) {
  body.news .main .body.post .post .prizebox .text .rank div {
    background-position: 50% .25rem;
    background-size: .25rem auto;
    padding-top: .45rem;
    height: 1rem;
  }
}

body.news .main .body.post .post .prizebox .text .rank div span {
  font-size: .2rem;
}

body.news .main .body.post .post .prizebox .text .data {
  display: block;
  width: 2.71rem;
}

@media screen and (max-width: 750px) {
  body.news .main .body.post .post .prizebox .text .data {
    width: auto;
    padding: .2rem 0 0;
    text-align: center;
  }
}

body.news .main .body.post .post .prizebox .text .data .prize {
  line-height: 1.6;
  font-family: "Noto Serif JP", serif;
  font-size: .2rem;
  font-weight: 600;
  white-space: nowrap;
}

body.news .main .body.post .post .prizebox .text .data .prize::before,
body.news .main .body.post .post .prizebox .text .data .prize::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.news .main .body.post .post .prizebox .text .data .prize::before {
  margin-bottom: -0.3em;
}

body.news .main .body.post .post .prizebox .text .data .prize::after {
  margin-top: -0.3em;
}

body.news .main .body.post .post .prizebox .text .data .prize strong {
  color: #3D62AD;
  font-weight: inherit;
}

body.news .main .body.post .post .prizebox .text .data .address {
  padding: .32rem 0 0;
  color: #3D62AD;
  font-weight: 700;
  line-height: 1;
}

body.news .main .body.post .post .prizebox .text .data .name {
  padding: .16rem 0 0;
  font-size: .28rem;
  font-weight: 700;
  line-height: 1;
}

body.news .main .body.post .post .prizebox .text .data .name span {
  font-size: .2rem;
}

@media screen and (max-width: 750px) {
  body.news .main .body.post .post .prizebox picture {
    display: block;
    padding: .3rem 0 0;
  }
}

body.news .main .body.post .post .prizebox~.col2 {
  padding-top: .8rem;
}

@media screen and (max-width: 750px) {
  body.news .main .body.post .post .prizebox~.col2 {
    padding-top: 0;
  }
}

body.news .main .body.post .post .col2 .prizebox {
  width: 4.45rem;
  align-items: flex-start;
}

@media screen and (max-width: 750px) {
  body.news .main .body.post .post .col2 .prizebox {
    width: auto;
  }
}

body.news .main .body.post .post .col2 .prizebox .text {
  display: block;
  width: 1.4rem;
}

@media screen and (max-width: 750px) {
  body.news .main .body.post .post .col2 .prizebox .text {
    width: auto;
  }
}

body.news .main .body.post .post .col2 .prizebox .text .data {
  padding: .26rem 0 0;
}

body.news .main .body.post .post .col2 .prizebox .text .data .address {
  line-height: 1.85714;
}

body.news .main .body.post .post .col2 .prizebox .text .data .address::before,
body.news .main .body.post .post .col2 .prizebox .text .data .address::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.news .main .body.post .post .col2 .prizebox .text .data .address::before {
  margin-bottom: -0.42857em;
}

body.news .main .body.post .post .col2 .prizebox .text .data .address::after {
  margin-top: -0.42857em;
}

body.news .main .body.post .post .col2 .prizebox .text .data .name {
  font-size: .26rem;
}

body.news .main .body.post .post .col2 .prizebox picture {
  width: 2.4rem;
}

@media screen and (max-width: 750px) {
  body.news .main .body.post .post .col2 .prizebox picture {
    width: auto;
    text-align: center;
  }
}

body.news .main .body.post .post .col2 .prizebox picture .price {
  display: inline-block;
  margin: .13rem 0 0;
  padding: 0 .1rem;
  background: #3D62AD;
  color: #fff;
  font-weight: 500;
  line-height: .3rem;
}

body.news .main .body.post .post .finalist {
  padding: 1rem 0 .4rem;
}

body.news .main .body.post .post .finalist .label {
  background: #F4F3F7;
  font-family: "Noto Serif JP", serif;
  font-size: .28rem;
  font-weight: 600;
  line-height: .55rem;
  text-align: center;
}

body.news .main .body.post .post .finalist .col2 {
  padding: 0;
}

@media screen and (max-width: 750px) {
  body.news .main .body.post .post .finalist .col2>* {
    padding: 0;
  }
}

body.news .main .body.post .post .finalist .winner {
  display: flex;
  align-items: center;
  padding: .4rem 0 0;
  line-height: 1;
}

@media screen and (max-width: 750px) {
  body.news .main .body.post .post .finalist .winner {
    display: block;
    text-align: center;
  }
}

body.news .main .body.post .post .finalist .winner .address {
  width: 1.8rem;
  color: #3D62AD;
  font-weight: 700;
}

@media screen and (max-width: 750px) {
  body.news .main .body.post .post .finalist .winner .address {
    display: block;
    width: auto;
  }
}

body.news .main .body.post .post .finalist .winner .name {
  width: calc(100% - 1.8rem);
  font-size: .26rem;
  font-weight: 700;
}

@media screen and (max-width: 750px) {
  body.news .main .body.post .post .finalist .winner .name {
    display: block;
    width: auto;
    padding: .16rem 0 0;
  }
}

body.news .main .body.post .post .finalist .winner .name span {
  font-size: .2rem;
}

body.news .main .body.post .post .jcwinner,
body.news .main .body.post .post .gcwinner,
body.news .main .body.post .post .hcwinner {
  display: flex;
  align-items: center;
  height: .8rem;
  margin: .8rem 0 0;
  padding: 0 .32rem 0 .88rem;
  background: #F4F3F7 url(../imgs/ico-crown.svg) 0.32rem 0.32rem/0.33rem auto no-repeat;
}

@media screen and (max-width: 750px) {

  body.news .main .body.post .post .jcwinner,
  body.news .main .body.post .post .gcwinner,
  body.news .main .body.post .post .hcwinner {
    display: block;
    height: auto;
    margin: .4rem 0 0;
    padding: .4rem .2rem .2rem;
    background-position: 50% .15rem;
  }
}

body.news .main .body.post .post .jcwinner::before,
body.news .main .body.post .post .jcwinner:after,
body.news .main .body.post .post .gcwinner::before,
body.news .main .body.post .post .gcwinner:after,
body.news .main .body.post .post .hcwinner::before,
body.news .main .body.post .post .hcwinner:after {
  content: none;
}

body.news .main .body.post .post .jcwinner .prize,
body.news .main .body.post .post .gcwinner .prize,
body.news .main .body.post .post .hcwinner .prize {
  font-family: "Noto Serif JP", serif;
  font-size: .2rem;
  font-weight: 600;
}

@media screen and (max-width: 750px) {

  body.news .main .body.post .post .jcwinner .prize,
  body.news .main .body.post .post .gcwinner .prize,
  body.news .main .body.post .post .hcwinner .prize {
    display: block;
    font-size: .18rem;
    line-height: 1.5;
  }
}

body.news .main .body.post .post .jcwinner .prize strong,
body.news .main .body.post .post .gcwinner .prize strong,
body.news .main .body.post .post .hcwinner .prize strong {
  font-size: 1.4em;
  font-weight: inherit;
}

body.news .main .body.post .post .jcwinner .name,
body.news .main .body.post .post .gcwinner .name,
body.news .main .body.post .post .hcwinner .name {
  margin: 0 0 0 auto;
  font-size: .2rem;
  font-weight: 700;
}

@media screen and (max-width: 750px) {

  body.news .main .body.post .post .jcwinner .name,
  body.news .main .body.post .post .gcwinner .name,
  body.news .main .body.post .post .hcwinner .name {
    display: block;
    font-size: .18rem;
    line-height: 1.5;
  }
}

body.news .main .body.post .post .jcwinner .name strong,
body.news .main .body.post .post .gcwinner .name strong,
body.news .main .body.post .post .hcwinner .name strong {
  margin: 0 .06rem 0 0;
  font-size: 1.4em;
  font-weight: inherit;
}

body.news .main .body.post .post .jcwinner+.col2,
body.news .main .body.post .post .gcwinner+.col2,
body.news .main .body.post .post .hcwinner+.col2 {
  padding: .4rem 0 0;
}

@media screen and (max-width: 750px) {

  body.news .main .body.post .post .jcwinner+.col2,
  body.news .main .body.post .post .gcwinner+.col2,
  body.news .main .body.post .post .hcwinner+.col2 {
    padding: 0;
  }

  body.news .main .body.post .post .jcwinner+.col2 picture,
  body.news .main .body.post .post .gcwinner+.col2 picture,
  body.news .main .body.post .post .hcwinner+.col2 picture {
    padding: 0;
  }
}

body.news .main .body.post .post .jcwinner+.jcwinner {
  margin-top: 0.4rem;
}

body.news .main .body.post .post .jcwinner+.bottom {
  padding-top: 0.8rem;
}

@media screen and (max-width: 750px) {
  body.news .main .body.post .post .jcwinner+.bottom {
    padding-top: 0.24rem;
  }
}

body.news .main .body.post .post .jcwinner .data,
body.news .main .body.post .post .hcwinner .data {
  display: block;
  min-width: .88rem;
  margin: 0 0 0 .32rem;
  font-size: .14rem;
  font-weight: 500;
  line-height: 1.57143;
  text-align: right;
}

@media screen and (max-width: 750px) {

  body.news .main .body.post .post .jcwinner .data,
  body.news .main .body.post .post .hcwinner .data {
    width: auto;
  }
}

body.news .main .body.post .post .gcwinner .name {
  line-height: 1;
}

body.news .main .body.post .post .gcwinner .name .data {
  display: inline;
  margin: 0 0 0 .32rem;
  font-size: .16rem;
  font-weight: 500;
}

body.news .main .body.post .post .hctheme {
  padding: 1.3rem 0 0;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: .26rem;
  font-weight: 600;
  line-height: 1;
}

@media screen and (max-width: 750px) {
  body.news .main .body.post .post .hctheme {
    line-height: 1.5;
  }
}

body.news .main .body.post .post .hctheme span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1.8rem;
  margin: 0 auto .2rem;
  padding: .36rem 0 0;
  background: url(../imgs/ico-crown.svg) 50% 0/0.3rem auto no-repeat;
  color: #3D62AD;
  font-family: "Noto Sans JP", sans-serif;
  font-size: .16rem;
  font-weight: 700;
}

body.news .main .body.post .post .hctheme span::before,
body.news .main .body.post .post .hctheme span::after {
  content: '';
  display: block;
  width: .54rem;
  height: .01rem;
  background: #9AA8D8;
}

body.news .main .body.post .post .hcdetail p+h3 {
  margin: .3rem 0 0;
  border-top: .01rem solid #E4E9F2;
  padding-top: .24rem;
}

body.news .main .body.post .post .hcdetail p+h3::before {
  top: .32rem;
}

body.news .main .body.post .post .hcdetail .price {
  display: inline-block;
  margin: .3rem 0 0;
  padding: 0 .1rem;
  background: #3D62AD;
  color: #fff;
  font-weight: 500;
  line-height: .3rem;
}

body.news .main .body.post .post .winnerList {
  padding: .6rem 0 0;
}

@media screen and (max-width: 750px) {
  body.news .main .body.post .post .winnerList {
    padding: .4rem 0 0;
  }
}

body.news .main .body.post .post .winnerList .item {
  display: flex;
  border-top: 0.01rem solid #F4F3F7;
  padding: .2rem .32rem;
  font-size: .16rem;
  line-height: 1;
}

@media screen and (max-width: 750px) {
  body.news .main .body.post .post .winnerList .item {
    flex-wrap: wrap;
    justify-content: flex-end;
    padding: .2rem 0;
  }
}

body.news .main .body.post .post .winnerList .item:first-child {
  border-top: none;
}

body.news .main .body.post .post .winnerList .item .year {
  width: .72rem;
  font-family: "Roboto", sans-serif;
}

body.news .main .body.post .post .winnerList .item .name {
  padding: 0 0 0 .36rem;
  background: url(../imgs/ico-crown.svg) 0 0/0.18rem auto no-repeat;
  font-weight: 700;
}

@media screen and (max-width: 750px) {
  body.news .main .body.post .post .winnerList .item .name {
    box-sizing: border-box;
    width: calc(100% - .72rem);
  }
}

body.news .main .body.post .post .winnerList .item .shop {
  margin: 0 0 0 auto;
}

@media screen and (max-width: 750px) {
  body.news .main .body.post .post .winnerList .item .shop {
    margin: .2rem 0 0 auto;
  }
}

body.news .main .body.post .post .winnerList .item .area {
  width: .96rem;
  text-align: right;
}

@media screen and (max-width: 750px) {
  body.news .main .body.post .post .winnerList .item .area {
    margin: .2rem 0 0;
  }
}

body.news .main .body.post .post .bottom .bt02 {
  display: block;
  width: 100%;
  max-width: 6.4rem;
  margin: 0 auto .8rem;
  font-size: .16rem;
  line-height: .64rem;
  padding: 0;
}

@media screen and (max-width: 750px) {
  body.news .main .body.post .post .bottom .bt02 {
    margin: 0 0 .24rem;
  }
}

body.news .main .body.post .post .bottom .bt02::before {
  content: '';
  display: block;
  width: 0.16rem;
  height: 0.01rem;
}

body.news .main .body.post .post .bottom .bt02::after {
  content: none;
}

body.news .main .body.post .post .bottom .fBanner {
  margin: 0 -.3rem 0.8rem;
}

@media screen and (max-width: 750px) {
  body.news .main .body.post .post .bottom .fBanner {
    margin: 0 0 .24rem;
  }
}

body.news .main .body.post .post .bottom .fBanner a {
  color: inherit;
  display: flex;
  padding: 0 0 0 0.56rem;
}

@media screen and (max-width: 750px) {
  body.news .main .body.post .post .bottom .fBanner a {
    padding: 0 0 0 0.24rem;
  }
}

body.news .main .body.post+.append .pager {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 750px) {
  body.news .main .body.post+.append .pager {
    justify-content: space-between;
  }
}

body.news .main .body.post+.append .pager a {
  display: block;
  box-sizing: border-box;
  width: 1.4rem;
  margin: 0 0.08rem;
  border: 0.01rem solid #E4E9F2;
  border-radius: .24rem;
  color: #3D62AD;
  font-weight: 700;
  text-align: center;
  line-height: .46rem;
  transition: 0.3s;
  transition-property: border-color, background-color, color;
}

@media screen and (max-width: 750px) {
  body.news .main .body.post+.append .pager a {
    width: calc((100% - .24rem) / 3);
    margin: 0;
  }
}

html:not(.mobile) body.news .main .body.post+.append .pager a:not(.dots):hover {
  border-color: #9AA8D8;
  background-color: #9AA8D8;
  color: #fff;
}

body.news .main .body.post+.append .pager a.prev::before,
body.news .main .body.post+.append .pager a.next::after {
  content: '';
  display: inline-block;
  width: .08rem;
  height: 100%;
  background: url("../imgs/arrow03.svg") 0 50%/100% auto no-repeat;
  vertical-align: top;
}

html:not(.mobile) body.news .main .body.post+.append .pager a.prev::before:hover,
html:not(.mobile) body.news .main .body.post+.append .pager a.next::after:hover {
  background-image: url("../imgs/arrow03_w.svg");
}

body.news .main .body.post+.append .pager a.prev::before {
  margin: 0 .1rem 0 0;
}

body.news .main .body.post+.append .pager a.next::after {
  margin: 0 0 0 .1rem;
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

body.about .main .mainHeader .headline {
  background-image: url("../imgs/mv-about@2x.jpg");
}

body.about .main .lead {
  max-width: 8.8rem;
  margin: 0 auto;
}

body.about .main .lead .catch {
  font-family: "Noto Serif JP", serif;
  font-size: .26rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}

@media screen and (max-width: 750px) {
  body.about .main .lead .catch {
    font-size: .22rem;
    line-height: 1.5;
    margin-top: 0.15rem;
  }
}

body.about .main .lead .catch em {
  color: #C7527B;
  font-style: normal;
}

body.about .main .lead p {
  line-height: 2;
  padding: .5rem 0 0;
  font-size: .16rem;
}

body.about .main .lead p::before,
body.about .main .lead p::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.about .main .lead p::before {
  margin-bottom: -0.5em;
}

body.about .main .lead p::after {
  margin-top: -0.5em;
}

@media screen and (max-width: 750px) {
  body.about .main .lead p {
    padding-top: 0.4rem;
  }
}

body.about .main .primary {
  margin: 1.2rem 0 0;
  position: relative;
}

@media screen and (max-width: 750px) {
  body.about .main .primary {
    margin: 1rem 0 0;
  }
}

body.about .main .primary::before {
  content: '';
  display: block;
  width: 5.68rem;
  height: 5.33rem;
  position: absolute;
  right: 0;
  bottom: 0;
  background: #fff;
}

@media screen and (max-width: 750px) {
  body.about .main .primary::before {
    content: none;
  }
}

body.about .main .primary .title {
  width: 4.88rem;
  position: absolute;
  top: 2.22rem;
  right: 0;
}

@media screen and (max-width: 750px) {
  body.about .main .primary .title {
    width: auto;
    top: 0;
    position: relative;
    text-align: center;
  }
}

body.about .main .primary .title::before {
  content: '';
  display: block;
  width: 2.1rem;
  height: .01rem;
  position: absolute;
  top: 50%;
  left: 0;
  background: #E4E9F2;
}

@media screen and (max-width: 750px) {
  body.about .main .primary .title::before {
    content: none;
  }
}

body.about .main .primary .title .ja {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: .7rem;
  font-weight: 600;
  line-height: 1.42857;
}

@media screen and (max-width: 750px) {
  body.about .main .primary .title .ja {
    border-bottom: .01rem solid #E4E9F2;
    padding: 0 0 .24rem;
    font-size: .4rem;
    line-height: 1;
  }
}

body.about .main .primary .title .ja em {
  color: #3D62AD;
  font-style: normal;
}

body.about .main .primary .title .en {
  display: block;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 2.2rem;
  color: #3D62AD;
  font-family: "Roboto", sans-serif;
  font-size: .16rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: left;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

@media screen and (max-width: 750px) {
  body.about .main .primary .title .en {
    margin: .14rem 0 0;
    position: static;
    -webkit-transform: none;
    transform: none;
    text-align: center;
  }
}

body.about .main .primary picture {
  display: block;
}

@media screen and (max-width: 750px) {
  body.about .main .primary picture {
    padding: .4rem 0 0;
  }
}

body.about .main .primary p {
  width: 4.88rem;
  position: absolute;
  top: 4.42rem;
  right: 0;
  font-size: .16rem;
  line-height: 2;
}

@media screen and (max-width: 750px) {
  body.about .main .primary p {
    line-height: 2;
    width: auto;
    padding: .4rem 0 0;
    position: static;
  }

  body.about .main .primary p::before,
  body.about .main .primary p::after {
    content: '';
    display: table;
    height: 0;
    width: 0;
  }

  body.about .main .primary p::before {
    margin-bottom: -0.5em;
  }

  body.about .main .primary p::after {
    margin-top: -0.5em;
  }
}

body.about .main .secondary {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1.24rem auto;
  grid-template-rows: 1.24rem auto;
  -ms-grid-columns: 50% 50%;
  grid-template-columns: 50% 50%;
  margin: 1.2rem 0 0;
}

@media screen and (max-width: 750px) {
  body.about .main .secondary {
    display: block;
    margin: 1rem 0 0;
  }
}

body.about .main .secondary .title {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1 / 2;
  line-height: 1;
}

@media screen and (max-width: 750px) {
  body.about .main .secondary .title {
    text-align: center;
  }
}

body.about .main .secondary .title .ja {
  display: block;
  border-bottom: .01rem solid #E4E9F2;
  padding: 0 0 .24rem;
  font-family: "Noto Serif JP", serif;
  font-size: .26rem;
  font-weight: 600;
}

@media screen and (max-width: 750px) {
  body.about .main .secondary .title .ja {
    margin: -.25em 0 0;
    padding-bottom: calc(.24rem - .25em);
    line-height: 1.5;
  }
}

body.about .main .secondary .title .en {
  display: block;
  margin: .18rem 0 0;
  color: #3D62AD;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media screen and (max-width: 750px) {
  body.about .main .secondary .title .en {
    margin: .24rem 0 0;
  }
}

body.about .main .secondary .text p {
  line-height: 2;
  font-size: .16rem;
}

body.about .main .secondary .text p::before,
body.about .main .secondary .text p::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.about .main .secondary .text p::before {
  margin-bottom: -0.5em;
}

body.about .main .secondary .text p::after {
  margin-top: -0.5em;
}

body.about .main .secondary .text .link {
  display: flex;
  padding: .4rem 0 0;
}

body.about .main .secondary picture {
  display: block;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1 / 3;
}

@media screen and (max-width: 750px) {
  body.about .main .secondary picture {
    margin: .4rem 0 0;
  }
}

body.about .main .secondary .text {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2 / 3;
}

@media screen and (max-width: 750px) {
  body.about .main .secondary .text {
    margin: .4rem 0 0;
  }
}

body.about .main .secondary:nth-of-type(odd) .title,
body.about .main .secondary:nth-of-type(odd) .text {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2 / 3;
  padding-left: .36rem;
}

@media screen and (max-width: 750px) {

  body.about .main .secondary:nth-of-type(odd) .title,
  body.about .main .secondary:nth-of-type(odd) .text {
    padding-left: 0;
  }
}

body.about .main .secondary:nth-of-type(odd) .link {
  justify-content: flex-end;
}

@media screen and (max-width: 750px) {
  body.about .main .secondary:nth-of-type(odd) .link {
    justify-content: center;
  }
}

body.about .main .secondary:nth-of-type(odd) picture {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1 / 2;
  padding-right: .36rem;
}

@media screen and (max-width: 750px) {
  body.about .main .secondary:nth-of-type(odd) picture {
    padding-right: 0;
  }
}

body.about .main .secondary:nth-of-type(even) .title,
body.about .main .secondary:nth-of-type(even) .text {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1 / 2;
  padding-right: .36rem;
}

@media screen and (max-width: 750px) {

  body.about .main .secondary:nth-of-type(even) .title,
  body.about .main .secondary:nth-of-type(even) .text {
    padding-right: 0;
  }
}

body.about .main .secondary:nth-of-type(even) picture {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2 / 3;
  padding-left: .36rem;
}

@media screen and (max-width: 750px) {
  body.about .main .secondary:nth-of-type(even) picture {
    padding-left: 0;
  }
}

body.about .main .secondary:nth-of-type(2) .link .bt02 {
  width: 2rem;
}

body.about .main .secondary:nth-of-type(2) .link .bt02+.bt02 {
  margin: 0 0 0 .16rem;
}

@media screen and (max-width: 750px) {
  body.about .main .secondary:nth-of-type(4) .link {
    justify-content: center;
  }
}

body.about .main .fBanner {
  padding: 2.52rem 0 0;
}

@media screen and (max-width: 750px) {
  body.about .main .fBanner {
    padding: 1rem 0 0;
  }
}

body.jftd_hanacupid .main .mainHeader .headline {
  background-image: url("../imgs/mv-jftd_hanacupid@2x.jpg");
}

body.jftd_hanacupid .main .message {
  padding: 1.04rem;
  background: #F4F3F7;
  position: relative;
}

@media screen and (max-width: 750px) {
  body.jftd_hanacupid .main .message {
    padding: .4rem .2rem;
  }
}

body.jftd_hanacupid .main .message .image {
  width: 1.8rem;
  margin: 0 0 0.2rem .6rem;
  float: right;
}

@media screen and (max-width: 750px) {
  body.jftd_hanacupid .main .message .image {
    display: block;
    margin: .5rem auto 0;
    float: none;
  }
}

body.jftd_hanacupid .main .message .title {
  padding: .14rem 0 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  line-height: 1;
  float: left;
}

@media screen and (max-width: 750px) {
  body.jftd_hanacupid .main .message .title {
    float: none;
  }
}

body.jftd_hanacupid .main .message .title .line01 {
  display: block;
  font-size: .22rem;
}

body.jftd_hanacupid .main .message .title .line02 {
  display: block;
  margin: .22rem 0 0;
  font-size: .3rem;
  line-height: 1.4;
}

body.jftd_hanacupid .main .message .title .line02::before,
body.jftd_hanacupid .main .message .title .line02::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.jftd_hanacupid .main .message .title .line02::before {
  margin-bottom: -0.2em;
}

body.jftd_hanacupid .main .message .title .line02::after {
  margin-top: -0.2em;
}

@media screen and (max-width: 750px) {
  body.jftd_hanacupid .main .message .title .line02 {
    font-size: 0.27rem;
  }
}

body.jftd_hanacupid .main .message .title+p {
  padding: .72rem 0 0;
}

body.jftd_hanacupid .main .message p {
  clear: left;
  line-height: 2;
  padding: .48rem 0 0;
  font-size: .16rem;
}

body.jftd_hanacupid .main .message p::before,
body.jftd_hanacupid .main .message p::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.jftd_hanacupid .main .message p::before {
  margin-bottom: -0.5em;
}

body.jftd_hanacupid .main .message p::after {
  margin-top: -0.5em;
}

body.jftd_hanacupid .main .message .signature {
  line-height: 2;
  padding: .1rem 0 0;
  font-size: .16rem;
  text-align: right;
}

body.jftd_hanacupid .main .message .signature::before,
body.jftd_hanacupid .main .message .signature::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.jftd_hanacupid .main .message .signature::before {
  margin-bottom: -0.5em;
}

body.jftd_hanacupid .main .message .signature::after {
  margin-top: -0.5em;
}

body.jftd_hanacupid .main .primary {
  margin: 1.2rem 0 0;
  position: relative;
}

@media screen and (max-width: 750px) {
  body.jftd_hanacupid .main .primary {
    margin: 1rem 0 0;
  }
}

body.jftd_hanacupid .main .primary::before {
  content: '';
  display: block;
  width: 5.68rem;
  height: 4.26rem;
  position: absolute;
  right: 0;
  bottom: 0;
  background: #fff;
}

@media screen and (max-width: 750px) {
  body.jftd_hanacupid .main .primary::before {
    content: none;
  }
}

body.jftd_hanacupid .main .primary .title {
  width: 4.88rem;
  position: absolute;
  top: 2.12rem;
  right: 0;
  line-height: 1;
  font-size: .25rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 800;
}

@media screen and (max-width: 750px) {
  body.jftd_hanacupid .main .primary .title {
    width: auto;
    top: 0;
    position: relative;
    text-align: center;
  }
}

body.jftd_hanacupid .main .primary .title .ja {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  margin-top: 0.4rem;
}

@media screen and (max-width: 750px) {
  body.jftd_hanacupid .main .primary .title .ja {
    display: inline;
    font-size: .4rem;
  }
}

body.jftd_hanacupid .main .primary .title .ja em {
  color: #3D62AD;
  font-style: normal;
}

body.jftd_hanacupid .main .primary .title .en {
  display: block;
  color: #3D62AD;
  font-family: "Roboto", sans-serif;
  font-size: .16rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-top: .01rem solid #E4E9F2;
  width: 2.78rem;
  text-align: right;
  padding: .2rem 0 0 0;
  position: absolute;
  left: 0;
  top: .5rem;
}

@media screen and (max-width: 750px) {
  body.jftd_hanacupid .main .primary .title .en {
    margin-top: 0.24rem;
    padding-top: 0.22rem;
    position: static;
    text-align: center;
    width: auto;
  }
}

body.jftd_hanacupid .main .primary picture {
  display: block;
}

@media screen and (max-width: 750px) {
  body.jftd_hanacupid .main .primary picture {
    padding: .4rem 0 0;
  }
}

body.jftd_hanacupid .main .primary p {
  width: 4.88rem;
  position: absolute;
  right: 0;
  bottom: -.16rem;
  font-size: .16rem;
  line-height: 2;
}

@media screen and (max-width: 750px) {
  body.jftd_hanacupid .main .primary p {
    line-height: 2;
    width: auto;
    padding: .4rem 0 0;
    position: static;
  }

  body.jftd_hanacupid .main .primary p::before,
  body.jftd_hanacupid .main .primary p::after {
    content: '';
    display: table;
    height: 0;
    width: 0;
  }

  body.jftd_hanacupid .main .primary p::before {
    margin-bottom: -0.5em;
  }

  body.jftd_hanacupid .main .primary p::after {
    margin-top: -0.5em;
  }
}

body.jftd_hanacupid .main .secondary {
  margin: 1.2rem 0 0;
}

@media screen and (max-width: 750px) {
  body.jftd_hanacupid .main .secondary {
    margin: 1rem 0 0;
  }
}

body.jftd_hanacupid .main .secondary .title {
  line-height: 1;
  text-align: center;
}

body.jftd_hanacupid .main .secondary .title .ja {
  display: block;
  border-bottom: .01rem solid #E4E9F2;
  padding: 0 0 .24rem;
  font-family: "Noto Serif JP", serif;
  font-size: .34rem;
  font-weight: 600;
}

body.jftd_hanacupid .main .secondary .title .en {
  display: block;
  margin: .22rem 0 0;
  color: #3D62AD;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
}

body.jftd_hanacupid .main .secondary p {
  line-height: 2;
  font-size: .16rem;
}

body.jftd_hanacupid .main .secondary p::before,
body.jftd_hanacupid .main .secondary p::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.jftd_hanacupid .main .secondary p::before {
  margin-bottom: -0.5em;
}

body.jftd_hanacupid .main .secondary p::after {
  margin-top: -0.5em;
}

body.jftd_hanacupid .main .secondary .inner02,
body.jftd_hanacupid .main .secondary .inner03 {
  display: flex;
  justify-content: space-between;
  margin: .6rem 0 0;
}

@media screen and (max-width: 750px) {

  body.jftd_hanacupid .main .secondary .inner02,
  body.jftd_hanacupid .main .secondary .inner03 {
    display: block;
    margin: .4rem 0 0;
  }
}

body.jftd_hanacupid .main .secondary .inner02 p,
body.jftd_hanacupid .main .secondary .inner02 picture {
  width: 4.84rem;
}

@media screen and (max-width: 750px) {

  body.jftd_hanacupid .main .secondary .inner02 p,
  body.jftd_hanacupid .main .secondary .inner02 picture {
    width: auto;
  }
}

@media screen and (max-width: 750px) {
  body.jftd_hanacupid .main .secondary .inner02 picture {
    display: block;
    margin: .4rem 0 0;
  }
}

body.jftd_hanacupid .main .secondary .inner03 {
  flex-wrap: wrap;
}

body.jftd_hanacupid .main .secondary .inner03 .item {
  width: 3.2rem;
  margin: 1rem 0 0;
}

@media screen and (max-width: 750px) {
  body.jftd_hanacupid .main .secondary .inner03 .item {
    width: auto;
    margin: .4rem 0 0;
  }

  body.jftd_hanacupid .main .secondary .inner03 .item picture img {
    width: 100%;
  }
}

body.jftd_hanacupid .main .secondary .inner03 .item:nth-child(-n + 3) {
  margin-top: 0;
}

@media screen and (max-width: 750px) {
  body.jftd_hanacupid .main .secondary .inner03 .item:nth-child(n + 2) {
    margin-top: .4rem;
  }
}

body.jftd_hanacupid .main .secondary .inner03 .item .title {
  padding: .4rem 0;
  font-family: "Noto Serif JP", serif;
  font-size: .2rem;
  font-weight: 600;
}

body.jftd_hanacupid .main .fBanner {
  margin: 1.6rem 0 0;
}

@media screen and (max-width: 750px) {
  body.jftd_hanacupid .main .fBanner {
    margin: 1rem 0 0;
  }
}

body.history .main .mainHeader .headline {
  background-image: url("../imgs/mv-history@2x.jpg");
}

body.history .main .lead {
  line-height: 2.2;
  font-family: "Noto Serif JP", serif;
  font-size: .2rem;
}

body.history .main .lead::before,
body.history .main .lead::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.history .main .lead::before {
  margin-bottom: -0.6em;
}

body.history .main .lead::after {
  margin-top: -0.6em;
}

@media screen and (max-width: 750px) {
  body.history .main .lead {
    font-size: .18rem;
  }
}

body.history .main section {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 750px) {
  body.history .main section {
    display: block;
  }
}

body.history .main section .title {
  width: 1.4rem;
  line-height: 1;
}

@media screen and (max-width: 750px) {
  body.history .main section .title {
    text-align: center;
    width: auto;
  }
}

body.history .main section .title .ja {
  display: block;
  border-bottom: .01rem solid #E4E9F2;
  padding: 0 0 .24rem;
  font-family: "Noto Serif JP", serif;
  font-size: .34rem;
  font-weight: 600;
}

body.history .main section .title .en {
  display: block;
  margin: .22rem 0 0;
  color: #3D62AD;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

body.history .main section .main {
  width: 7.8rem;
  padding: 0;
}

@media screen and (max-width: 750px) {
  body.history .main section .main {
    width: auto;
    padding: .4rem 0 0;
  }
}

body.history .main .activity {
  padding: 1.2rem 0 0;
}

@media screen and (max-width: 750px) {
  body.history .main .activity {
    padding: .8rem 0 0;
  }
}

body.history .main .activity .main {
  display: flex;
  flex-wrap: wrap;
  margin: -.12rem 0;
  font-size: .16rem;
  line-height: 2.5;
}

body.history .main .activity .main dt {
  width: .8rem;
}

body.history .main .activity .main dd {
  width: calc(100% - .8rem);
}

body.history .main .organization {
  padding: 1.2rem 0;
}

@media screen and (max-width: 750px) {
  body.history .main .organization {
    padding: .8rem 0;
  }
}

body.history .main .organization .main {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 750px) {
  body.history .main .organization .main {
    display: block;
  }
}

body.history .main .organization .main li {
  width: 3.7rem;
}

@media screen and (max-width: 750px) {
  body.history .main .organization .main li {
    width: auto;
  }

  body.history .main .organization .main li+li {
    margin: .2rem 0 0;
  }
}

body.history .main .organization .main li figcaption {
  margin: 1em 0 0;
  font-size: .16rem;
  line-height: 1;
}

@media screen and (max-width: 750px) {
  body.history .main .organization .main li figcaption {
    text-align: center;
  }
}

body.history .main .history {
  display: block;
  padding: 1.4rem 0 .2rem;
  position: relative;
  z-index: 1;
  background: #F4F3F7;
}

@media screen and (max-width: 750px) {
  body.history .main .history {
    padding: .8rem 0;
  }
}

body.history .main .history::before {
  content: '';
  display: block;
  width: .01rem;
  position: absolute;
  top: 0;
  left: calc(50% - 2.6rem);
  bottom: 0;
  z-index: -1;
  background: #C3CFEA;
}

@media screen and (max-width: 750px) {
  body.history .main .history::before {
    content: none;
  }
}

body.history .main .history .wrap {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 750px) {
  body.history .main .history .wrap {
    display: block;
  }
}

body.history .main .history .main {
  width: 8.38rem;
}

@media screen and (max-width: 750px) {
  body.history .main .history .main {
    width: auto;
  }
}

body.history .main .history .main .item {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  min-height: 2.2rem;
}

@media screen and (max-width: 750px) {
  body.history .main .history .main .item {
    display: block;
    min-height: 0;
  }

  body.history .main .history .main .item+.item {
    margin: .8rem 0 0;
  }
}

body.history .main .history .main .item .year {
  display: block;
  width: 1.16rem;
  position: relative;
  background: #F4F3F7;
  color: #C3CFEA;
  font-family: 'Pinyon Script', cursive;
  font-size: .44rem;
  text-align: center;
}

@media screen and (max-width: 750px) {
  body.history .main .history .main .item .year {
    margin: .48rem auto 0;
    padding: .15rem 0 0 0;
    position: relative;
    line-height: 1;
  }

  body.history .main .history .main .item .year::after {
    content: '';
    display: block;
    height: 0.48rem;
    width: 1px;
    position: absolute;
    top: -.48rem;
    left: 50%;
    background: #C3CFEA;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

body.history .main .history .main .item .year::before {
  content: '';
  display: block;
  width: .08rem;
  height: .08rem;
  position: absolute;
  top: 0;
  left: calc(50% - .04rem);
  background: #C3CFEA;
  border-radius: 50%;
}

body.history .main .history .main .item .text {
  width: 4.3rem;
  margin: 0 0 0 .6rem;
}

@media screen and (max-width: 750px) {
  body.history .main .history .main .item .text {
    width: auto;
    margin: 0 0 .24rem 0;
    text-align: center;
  }
}

body.history .main .history .main .item .text .date {
  color: #3D62AD;
  font-family: "Noto Serif JP", serif;
  font-size: .18rem;
  font-weight: 600;
  line-height: 1;
}

@media screen and (max-width: 750px) {
  body.history .main .history .main .item .text .date {
    padding: .2rem 0 0;
  }
}

body.history .main .history .main .item .text p {
  padding: .12rem 0 0;
  font-size: .16rem;
  font-weight: 500;
  line-height: 2;
}

body.history .main .history .main .item .text:nth-of-type(n+2) {
  padding: .26rem 0 0;
}

@media screen and (max-width: 750px) {
  body.history .main .history .main .item .text:nth-of-type(n+2) {
    padding: 0;
  }
}

body.history .main .history .main .item .image {
  width: 1.8rem;
  min-height: 1.9rem;
  margin: 0 0 0 calc(100% - 7.86rem);
}

@media screen and (max-width: 750px) {
  body.history .main .history .main .item .image {
    min-height: 0;
    margin: 0 auto;
    text-align: center;
  }
}

body.history .main .history .main .item .image figcaption {
  margin: .1rem 0 0;
  line-height: 2;
}

body.history .main .history .main .item .image:nth-of-type(n+2) {
  padding: .26rem 0 0;
}

body.history .main .history .main .item .image+.text {
  margin-left: 1.76rem;
  padding-top: .52rem;
}

@media screen and (max-width: 750px) {
  body.history .main .history .main .item .image+.text {
    margin-left: 0;
    padding-top: 0;
  }
}

body.history .main .access {
  padding: 1.2rem 0;
  position: relative;
}

@media screen and (max-width: 750px) {
  body.history .main .access {
    padding: .8rem 0;
  }
}

body.history .main .access .main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media screen and (max-width: 750px) {
  body.history .main .access .main {
    display: block;
  }
}

body.history .main .access .map {
  width: 100%;
}

body.history .main .access .map iframe {
  width: 100%;
  height: 4rem;
  border: none;
}

@media screen and (max-width: 750px) {
  body.history .main .access .map iframe {
    height: 3.6rem;
    max-height: 50vh;
  }
}

body.history .main .access .train,
body.history .main .access .bus {
  padding: .62rem 0 0;
}

@media screen and (max-width: 750px) {

  body.history .main .access .train,
  body.history .main .access .bus {
    padding: .4rem 0 0;
  }
}

body.history .main .access .train .label,
body.history .main .access .bus .label {
  font-family: "Noto Serif JP", serif;
  font-size: .18rem;
  font-weight: 600;
  line-height: 1;
}

body.history .main .access .train .text,
body.history .main .access .bus .text {
  line-height: 2;
  padding: .24rem 0 0;
  font-size: .16rem;
}

body.history .main .access .train .text::before,
body.history .main .access .train .text::after,
body.history .main .access .bus .text::before,
body.history .main .access .bus .text::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.history .main .access .train .text::before,
body.history .main .access .bus .text::before {
  margin-bottom: -0.5em;
}

body.history .main .access .train .text::after,
body.history .main .access .bus .text::after {
  margin-top: -0.5em;
}

body.recruit .main .mainHeader .headline {
  background-image: url("../imgs/mv-recruit@2x.jpg");
}

body.recruit .main .catch {
  font-family: "Noto Serif JP", serif;
  font-size: .26rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}

@media screen and (max-width: 750px) {
  body.recruit .main .catch {
    font-size: .22rem;
    line-height: 1.5;
    margin-top: 0.1rem;
  }
}

body.recruit .main .catch em {
  color: #C7527B;
  font-style: normal;
}

body.recruit .main .sNav {
  display: flex;
  flex-wrap: wrap;
  margin: .38rem -.2rem .9rem;
}

@media screen and (max-width: 750px) {
  body.recruit .main .sNav {
    margin: .2rem 0 .4rem;
  }
}

body.recruit .main .sNav a {
  margin: .14rem .12rem 0 0;
  font-size: .16rem;
  line-height: .6rem;
  padding: 0 1em;
}

@media screen and (max-width: 750px) {
  body.recruit .main .sNav a {
    font-size: .14rem;
    line-height: .4rem;
  }
}

body.recruit .main .sNav a::before {
  content: '';
  display: inline-block;
  width: .08rem;
  margin: 0 .08rem 0 0;
  height: 100%;
  background: url(../imgs/arrow04.svg) 0 50%/100% auto no-repeat;
  vertical-align: top;
}

body.recruit .main .box {
  box-sizing: border-box;
  max-width: 9.8rem;
  margin: .5rem auto 0;
  padding: .56rem .66rem;
  position: relative;
  background: #F4F3F7;
}

@media screen and (max-width: 750px) {
  body.recruit .main .box {
    margin: .4rem 0 0;
    padding: .2rem;
  }
}

body.recruit .main .box .title {
  color: #3D62AD;
  font-size: .22rem;
  font-weight: 700;
  line-height: 1;
}

body.recruit .main .box dl {
  display: flex;
  flex-wrap: wrap;
  margin: .2rem 0 0;
  font-size: .16rem;
  line-height: 2;
}

@media screen and (max-width: 750px) {
  body.recruit .main .box dl {
    display: block;
  }
}

body.recruit .main .box dl dt,
body.recruit .main .box dl dd {
  border-top: .01rem solid #C3CFEA;
  padding: .16rem 0;
}

body.recruit .main .box dl dt {
  width: 2.2rem;
  color: #3D62AD;
  font-weight: 700;
}

@media screen and (max-width: 750px) {
  body.recruit .main .box dl dt {
    width: auto;
  }
}

body.recruit .main .box dl dd {
  width: calc(100% - 2.2rem);
}

body.recruit .main .box dl dd p+p {
  padding: 2em 0 0;
}

@media screen and (max-width: 750px) {
  body.recruit .main .box dl dd {
    width: auto;
    border-top: none;
    padding-top: 0;
  }
}

body.recruit .main .contact {
  background: url("../imgs/img-recruit01@2x.jpg") center 0/cover no-repeat;
  box-sizing: border-box;
  color: #fff;
  font-size: 0.16rem;
  margin: 1.2rem auto 0;
  padding: 0.6rem 0.9rem;
  max-width: 9.8rem;
}

@media screen and (max-width: 750px) {
  body.recruit .main .contact {
    background-size: auto 100%;
    margin-top: 0.4rem;
    padding: 0.25rem;
  }
}

body.recruit .main .contact .title {
  background: url("../imgs/ico-mail02.svg") 0 center/0.32rem auto no-repeat;
  font-family: "Noto Serif JP", serif;
  font-size: .3rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.23rem;
  padding-left: 0.45rem;
}

@media screen and (max-width: 750px) {
  body.recruit .main .contact .title {
    background-size: .2rem auto;
    font-size: 0.21rem;
    padding-left: 0.3rem;
  }
}

body.recruit .main .contact .tel {
  margin: 0.28rem 0 0;
}

@media screen and (max-width: 750px) {
  body.recruit .main .contact .tel {
    margin: 0;
  }
}

body.recruit .main .contact .tel .line01 {
  font-weight: 700;
}

@media screen and (max-width: 750px) {
  body.recruit .main .contact .tel .line01 {
    margin: 0;
    font-size: 0.12rem;
  }
}

body.recruit .main .contact .tel .line02 {
  margin: 0.1rem 0 0;
}

@media screen and (max-width: 750px) {
  body.recruit .main .contact .tel .line02 {
    margin: 0.08rem 0 0;
  }
}

body.recruit .main .contact .tel .line02 .small {
  font-size: 0.16rem;
  font-weight: 700;
  margin-left: -0.1rem;
  white-space: nowrap;
}

@media screen and (max-width: 750px) {
  body.recruit .main .contact .tel .line02 .small {
    font-size: 0.12rem;
    margin-left: 0;
  }
}

body.recruit .main .contact .tel .line02 .note {
  display: block;
  margin: 0.1rem 0 0;
}

@media screen and (max-width: 750px) {
  body.recruit .main .contact .tel .line02 .note {
    margin: 0.08rem 0 0;
    font-size: 0.12rem;
  }
}

body.recruit .main .contact a.tel {
  margin: 0 0.1rem 0 0;
  padding: 0 0 0 0.2rem;
  position: relative;
  font-size: 0.24rem;
  font-weight: 700;
  white-space: nowrap;
}

@media screen and (max-width: 750px) {
  body.recruit .main .contact a.tel {
    margin: 0;
    font-size: 0.21rem;
  }
}

body.recruit .main .contact a.tel::before {
  content: '';
  display: block;
  width: 0.16rem;
  height: 0.16rem;
  position: absolute;
  top: calc(50% - .08rem);
  left: 0;
  background: url("../imgs/ico-tel01.svg") 0 0/contain no-repeat;
  opacity: 0.5;
}

body.l-page .main em {
  font-style: normal;
}

body.l-page .main .flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media screen and (max-width: 750px) {
  body.l-page .main .col-2 {
    display: block;
  }
}

body.l-page .main .col-2 div {
  width: 4.96rem;
}

@media screen and (max-width: 750px) {
  body.l-page .main .col-2 div {
    width: auto;
  }

  body.l-page .main .col-2 div+div {
    margin-top: .5rem;
  }
}

@media screen and (max-width: 750px) {
  body.l-page .main .col-3 {
    display: block;
  }
}

body.l-page .main .col-3 div {
  width: 3.2rem;
}

@media screen and (max-width: 750px) {
  body.l-page .main .col-3 div {
    width: auto;
  }

  body.l-page .main .col-3 div+div {
    margin-top: .5rem;
  }
}

body.l-page .main .sec-catch {
  font-size: 0.16rem;
  width: 8.8rem;
  margin: 0 auto 0.56rem;
  line-height: 2;
}

body.l-page .main .sec-catch::before,
body.l-page .main .sec-catch::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.l-page .main .sec-catch::before {
  margin-bottom: -0.5em;
}

body.l-page .main .sec-catch::after {
  margin-top: -0.5em;
}

@media screen and (max-width: 750px) {
  body.l-page .main .sec-catch {
    width: auto;
  }
}

body.l-page .main article .sec {
  font-size: 0.16rem;
  padding: 1.2rem 0;
  position: relative;
}

@media screen and (max-width: 750px) {
  body.l-page .main article .sec {
    padding: 0.5rem 0;
  }
}

body.l-page .main article .title {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  line-height: 1.42857;
  text-align: center;
  margin-bottom: 0.4rem;
}

body.l-page .main article .title .base {
  display: inline-block;
  font-size: .7rem;
  border-bottom: 1px solid #E4E9F2;
  padding-left: 0.5em;
  padding-right: 0.5em;
  padding-bottom: 0.08em;
}

@media screen and (max-width: 750px) {
  body.l-page .main article .title .base {
    font-size: 0.4rem;
    padding-bottom: 0.16rem;
  }
}

body.l-page .main article .title .sup {
  display: block;
  font-size: .25rem;
  font-weight: bold;
  letter-spacing: .08em;
}

body.l-page .main article .title em {
  color: #3D62AD;
}

body.l-page .main article .title .en {
  display: block;
  color: #3D62AD;
  font-family: "Roboto", sans-serif;
  font-size: .14rem;
  font-weight: 400;
  letter-spacing: .08em;
  margin-top: .18rem;
  text-transform: uppercase;
}

body.l-page .main article .title.fr {
  background-image: url("../../assets/imgs/member/flower-right@2x.png");
  background-repeat: no-repeat;
  background-size: 15%;
  background-position: 100% center;
}

@media screen and (max-width: 750px) {
  body.l-page .main article .title.fr {
    background: none;
  }
}

body.l-page .main article .title.fl {
  background-image: url("../../assets/imgs/member/flower-left@2x.png");
  background-repeat: no-repeat;
  background-size: 15%;
  background-position: 0 center;
}

@media screen and (max-width: 750px) {
  body.l-page .main article .title.fl {
    background: none;
  }
}

body.l-page .main .lead {
  width: 8.8rem;
  margin: 0 auto;
}

@media screen and (max-width: 750px) {
  body.l-page .main .lead {
    width: auto;
  }
}

body.l-page .main .lead .catch {
  font-family: "Noto Serif JP", serif;
  font-size: .26rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.84615;
}

body.l-page .main .lead .catch::before,
body.l-page .main .lead .catch::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.l-page .main .lead .catch::before {
  margin-bottom: -0.42308em;
}

body.l-page .main .lead .catch::after {
  margin-top: -0.42308em;
}

@media screen and (max-width: 750px) {
  body.l-page .main .lead .catch {
    font-size: .22rem;
    line-height: 1.5;
    margin-top: 0.15rem;
  }
}

body.l-page .main .lead .catch em {
  color: #C7527B;
  font-style: normal;
}

body.l-page .main .lead p {
  line-height: 2;
  padding: .4rem 0 0;
  font-size: .16rem;
}

body.l-page .main .lead p::before,
body.l-page .main .lead p::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.l-page .main .lead p::before {
  margin-bottom: -0.5em;
}

body.l-page .main .lead p::after {
  margin-top: -0.5em;
}

body.hanacupid .main .mainHeader .headline {
  background-image: url("../imgs/hanacupid/mv-back@2x.jpg");
}

body.hanacupid .main #introduction {
  padding-bottom: .8rem;
  background-image: url("../imgs/hanacupid/intro-back@2x.png");
  background-size: 1.76rem;
  background-position: right bottom .3rem;
  background-repeat: no-repeat;
}

@media screen and (max-width: 750px) {
  body.hanacupid .main #introduction {
    padding-bottom: 1.2rem;
  }
}

body.hanacupid .main #introduction p {
  font-size: .16rem;
}

body.hanacupid .main #introduction p.txt-bottom {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  margin-top: .24rem;
}

body.hanacupid .main #introduction h2 {
  width: 2.1rem;
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: .7rem;
  font-weight: 600;
  line-height: 1.42857;
  text-align: left;
  margin-bottom: 0.4rem;
}

@media screen and (max-width: 750px) {
  body.hanacupid .main #introduction h2 {
    margin-top: 0.15rem;
  }
}

body.hanacupid .main #introduction h2 .base {
  color: #3D62AD;
  padding-bottom: 0.08em;
  white-space: nowrap;
}

body.hanacupid .main #introduction h2 .sup {
  display: block;
  font-size: .16rem;
  letter-spacing: .08em;
}

body.hanacupid .main #introduction h2 em {
  color: #C7527B;
}

body.hanacupid .main #introduction h2 .b-sup {
  display: block;
  font-size: .26rem;
  letter-spacing: .08em;
}

@media screen and (max-width: 750px) {
  body.hanacupid .main #introduction .flex {
    align-items: center;
    flex-direction: column;
  }
}

body.hanacupid .main #introduction .flex div {
  width: 75%;
  line-height: 2;
}

body.hanacupid .main #introduction .flex div::before,
body.hanacupid .main #introduction .flex div::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.hanacupid .main #introduction .flex div::before {
  margin-bottom: -0.5em;
}

body.hanacupid .main #introduction .flex div::after {
  margin-top: -0.5em;
}

@media screen and (max-width: 750px) {
  body.hanacupid .main #introduction .flex div {
    width: auto;
  }
}

@media screen and (max-width: 750px) {
  body.hanacupid .main #sec01 .title .base {
    font-size: .4rem;
  }

  body.hanacupid .main #sec01 .title .sup {
    font-size: .2rem;
  }
}

body.hanacupid .main .sNav {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 750px) {
  body.hanacupid .main .sNav {
    display: block;
    margin-top: .2rem;
  }
}

body.hanacupid .main .sNav a {
  flex-grow: 1;
  margin: .14rem .12rem 0 0;
  font-size: .16rem;
  line-height: .6rem;
}

@media screen and (max-width: 750px) {
  body.hanacupid .main .sNav a {
    font-size: .14rem;
  }

  body.hanacupid .main .sNav a:nth-child(n) {
    margin-right: 0;
  }
}

body.hanacupid .main .sNav a:nth-child(5n) {
  margin-right: 0;
}

body.hanacupid .main .sNav a::before {
  content: '';
  display: inline-block;
  width: .08rem;
  margin: 0 .08rem 0 0;
  height: 100%;
  background: url(../imgs/arrow04.svg) 0 50%/100% auto no-repeat;
  vertical-align: top;
}

body.hanacupid .main .secondary {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1.24rem auto;
  grid-template-rows: 1.24rem auto;
  -ms-grid-columns: 50% 50%;
  grid-template-columns: 50% 50%;
}

@media screen and (max-width: 750px) {
  body.hanacupid .main .secondary {
    display: block;
  }
}

body.hanacupid .main .secondary+.secondary {
  margin: 1.2rem 0 0;
}

@media screen and (max-width: 750px) {
  body.hanacupid .main .secondary+.secondary {
    margin: .5rem 0 0;
  }
}

body.hanacupid .main .secondary .title {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1 / 2;
  line-height: 1;
  text-align: left;
  margin-bottom: 0.2rem;
}

@media screen and (max-width: 750px) {
  body.hanacupid .main .secondary .title {
    text-align: center;
  }
}

body.hanacupid .main .secondary .title .ja {
  display: block;
  border-bottom: .01rem solid #E4E9F2;
  padding: 0 0 .24rem;
  font-family: "Noto Serif JP", serif;
  font-size: .26rem;
  font-weight: 600;
}

@media screen and (max-width: 750px) {
  body.hanacupid .main .secondary .title .ja {
    margin: -.25em 0 0;
    padding-bottom: calc(.24rem - .25em);
    line-height: 1.5;
  }
}

body.hanacupid .main .secondary .title .en {
  display: block;
  margin: .18rem 0 0;
  color: #3D62AD;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media screen and (max-width: 750px) {
  body.hanacupid .main .secondary .title .en {
    margin: .24rem 0 0;
  }
}

body.hanacupid .main .secondary .text {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2 / 3;
}

@media screen and (max-width: 750px) {
  body.hanacupid .main .secondary .text {
    margin: .2rem 0 0;
  }
}

body.hanacupid .main .secondary .text p {
  line-height: 2;
  font-size: .16rem;
}

body.hanacupid .main .secondary .text p::before,
body.hanacupid .main .secondary .text p::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.hanacupid .main .secondary .text p::before {
  margin-bottom: -0.5em;
}

body.hanacupid .main .secondary .text p::after {
  margin-top: -0.5em;
}

body.hanacupid .main .secondary .text .link {
  display: flex;
  padding: .4rem 0 0;
}

body.hanacupid .main .secondary picture {
  display: block;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1 / 3;
}

body.hanacupid .main .secondary:nth-of-type(odd) .title,
body.hanacupid .main .secondary:nth-of-type(odd) .text {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2 / 3;
  padding-left: .36rem;
}

@media screen and (max-width: 750px) {

  body.hanacupid .main .secondary:nth-of-type(odd) .title,
  body.hanacupid .main .secondary:nth-of-type(odd) .text {
    padding-left: 0;
  }
}

body.hanacupid .main .secondary:nth-of-type(odd) .link {
  justify-content: flex-end;
}

@media screen and (max-width: 750px) {
  body.hanacupid .main .secondary:nth-of-type(odd) .link {
    justify-content: center;
  }
}

body.hanacupid .main .secondary:nth-of-type(odd) picture {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1 / 2;
  padding-right: .36rem;
}

@media screen and (max-width: 750px) {
  body.hanacupid .main .secondary:nth-of-type(odd) picture {
    padding-right: 0;
  }
}

body.hanacupid .main .secondary:nth-of-type(even) .title,
body.hanacupid .main .secondary:nth-of-type(even) .text {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1 / 2;
  padding-right: .36rem;
}

@media screen and (max-width: 750px) {

  body.hanacupid .main .secondary:nth-of-type(even) .title,
  body.hanacupid .main .secondary:nth-of-type(even) .text {
    padding-right: 0;
  }
}

body.hanacupid .main .secondary:nth-of-type(even) picture {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2 / 3;
  padding-left: .36rem;
}

@media screen and (max-width: 750px) {
  body.hanacupid .main .secondary:nth-of-type(even) picture {
    padding-left: 0;
  }
}

body.hanacupid .main .secondary:nth-of-type(2) .link .bt02 {
  width: 2rem;
}

body.hanacupid .main .secondary:nth-of-type(2) .link .bt02+.bt02 {
  margin: 0 0 0 .16rem;
}

@media screen and (max-width: 750px) {
  body.hanacupid .main .secondary:nth-of-type(4) .link {
    justify-content: center;
  }
}

body.hanacupid .main .message {
  padding: 1.04rem;
  background: #F4F3F7;
  box-sizing: border-box;
  position: relative;
}

@media screen and (max-width: 750px) {
  body.hanacupid .main .message {
    margin-right: -0.18rem;
    margin-left: -0.18rem;
  }
}

body.hanacupid .main .message .pic-area {
  width: 2.28rem;
  float: right;
  margin: 0 0 0 .53rem;
}

@media screen and (max-width: 750px) {
  body.hanacupid .main .message .pic-area {
    margin-bottom: .4rem;
    width: auto;
    float: none;
    margin-left: 0;
  }
}

body.hanacupid .main .message .pic-area h3 {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  line-height: 1;
  text-align: left;
  margin-bottom: 0.26rem;
  position: relative;
}

@media screen and (max-width: 750px) {
  body.hanacupid .main .message .pic-area h3 {
    line-height: 1.42857;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
    width: 1.8rem;
  }
}

body.hanacupid .main .message .pic-area h3 .base {
  font-size: .7rem;
  display: block;
}

@media screen and (max-width: 750px) {
  body.hanacupid .main .message .pic-area h3 .base {
    font-size: 0.4rem;
  }
}

body.hanacupid .main .message .pic-area h3 .sup {
  display: block;
  font-size: .25rem;
  margin-bottom: 0.4rem;
  white-space: nowrap;
}

@media screen and (max-width: 750px) {
  body.hanacupid .main .message .pic-area h3 .sup {
    font-size: 0.2rem;
    margin-bottom: 0;
  }
}

body.hanacupid .main .message .pic-area h3 em {
  color: #3D62AD;
}

body.hanacupid .main .message .pic-area h3 .en {
  border-top: 1px solid #E4E9F2;
  display: block;
  color: #3D62AD;
  font-family: "Roboto", sans-serif;
  font-size: .16rem;
  font-weight: 400;
  letter-spacing: .08em;
  padding-top: 0.2rem;
  position: absolute;
  top: .45rem;
  right: 0;
  left: 0;
  text-align: right;
}

@media screen and (max-width: 750px) {
  body.hanacupid .main .message .pic-area h3 .en {
    margin-top: 0.16rem;
    position: static;
    text-align: center;
  }
}

body.hanacupid .main .message .image {
  display: block;
  margin: .26rem auto 0;
  width: 2.19rem;
}

@media screen and (max-width: 750px) {
  body.hanacupid .main .message .image {
    margin-top: .4rem;
  }
}

body.hanacupid .main .message .title {
  padding: 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  line-height: 1.84615;
  float: left;
  text-align: left;
  margin-bottom: .4rem;
}

@media screen and (max-width: 750px) {
  body.hanacupid .main .message .title {
    float: none;
  }
}

body.hanacupid .main .message .title .line02 {
  display: block;
  margin: 0;
  padding: 0;
  font-size: .3rem;
  line-height: 1.84615;
}

body.hanacupid .main .message .title .line02::before,
body.hanacupid .main .message .title .line02::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.hanacupid .main .message .title .line02::before {
  margin-bottom: -0.42308em;
}

body.hanacupid .main .message .title .line02::after {
  margin-top: -0.42308em;
}

@media screen and (max-width: 750px) {
  body.hanacupid .main .message .title .line02 {
    font-size: 0.22rem;
    text-align: center;
  }
}

body.hanacupid .main .message .text {
  line-height: 2;
}

body.hanacupid .main .message .text::before,
body.hanacupid .main .message .text::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.hanacupid .main .message .text::before {
  margin-bottom: -0.5em;
}

body.hanacupid .main .message .text::after {
  margin-top: -0.5em;
}

body.hanacupid .main .message .text p {
  clear: left;
  font-size: .16rem;
}

body.hanacupid .main .message .text p+p {
  padding: 2em 0 0;
}

body.hanacupid .main .message .text .clear {
  clear: both;
}

body.hanacupid .main .message .signature {
  line-height: 2;
  padding: .2rem 0 0;
  font-size: .16rem;
  text-align: center;
}

body.hanacupid .main .message .signature::before,
body.hanacupid .main .message .signature::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.hanacupid .main .message .signature::before {
  margin-bottom: -0.5em;
}

body.hanacupid .main .message .signature::after {
  margin-top: -0.5em;
}

@media screen and (max-width: 750px) {
  body.hanacupid .main .message {
    padding: .4rem .2rem;
  }

  body.hanacupid .main .message .pic-area {
    float: none;
  }
}

body.hanacupid .main #sec02 {
  font-size: 0.16rem;
}

body.hanacupid .main #sec02 h4 {
  line-height: 1;
  margin-top: .26rem;
}

body.hanacupid .main #sec02 h4 img {
  vertical-align: middle;
}

body.hanacupid .main #sec02 .text {
  background-color: #F4F3F7;
  margin-top: 0.22rem;
  padding: .37rem 1em;
  line-height: 1.875;
}

body.hanacupid .main #sec02 .text::before,
body.hanacupid .main #sec02 .text::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.hanacupid .main #sec02 .text::before {
  margin-bottom: -0.4375em;
}

body.hanacupid .main #sec02 .text::after {
  margin-top: -0.4375em;
}

body.hanacupid .main #sec02 .text em {
  color: #C7527B;
  font-weight: 700;
}

body.hanacupid .main #sec02 .flex.f01 {
  align-items: flex-start;
  margin-bottom: .8rem;
}

body.hanacupid .main #sec02 .flex.f01 div {
  width: 3.2rem;
  margin-left: .4rem;
}

body.hanacupid .main #sec02 .flex.f01 div p {
  margin-top: .24rem;
  line-height: 1.875;
}

body.hanacupid .main #sec02 .flex.f01 div p::before,
body.hanacupid .main #sec02 .flex.f01 div p::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.hanacupid .main #sec02 .flex.f01 div p::before {
  margin-bottom: -0.4375em;
}

body.hanacupid .main #sec02 .flex.f01 div p::after {
  margin-top: -0.4375em;
}

body.hanacupid .main #sec02 .flex.f01 div:nth-last-child(1) {
  margin-left: inherit;
  width: 2.7rem;
  background: #F4F3F7;
  padding: .4rem 0 .3rem;
  box-sizing: border-box;
}

body.hanacupid .main #sec02 .flex.f01 div:nth-last-child(1) dl {
  text-align: center;
  font-weight: bold;
}

body.hanacupid .main #sec02 .flex.f01 div:nth-last-child(1) dl dt {
  font-size: .16rem;
  padding-bottom: 1em;
}

body.hanacupid .main #sec02 .flex.f01 div:nth-last-child(1) dl dd {
  color: #C7527B;
  font-size: .20rem;
  line-height: 0;
  padding-bottom: 1em;
}

body.hanacupid .main #sec02 .flex.f01 div:nth-last-child(1) dl dd span {
  font-size: .30rem;
}

body.hanacupid .main #sec02 .flex.f01 div:nth-last-child(1) dl dd em {
  font-size: .1rem;
  vertical-align: top;
}

body.hanacupid .main #sec02 .flex.f02 div {
  text-align: center;
}

body.hanacupid .main #sec02 .flex.f02 div img {
  width: 1.6rem;
}

body.hanacupid .main #sec02 .flex.f02 div.systemflow01 {
  width: 2.24rem;
  position: relative;
}

body.hanacupid .main #sec02 .flex.f02 div.systemflow01 h4 img {
  width: .44rem;
}

body.hanacupid .main #sec02 .flex.f02 div.systemflow01:before {
  content: "";
  display: block;
  position: absolute;
  right: -.3rem;
  border-right: 2px solid #F4F3F7;
  height: 1.60rem;
}

body.hanacupid .main #sec02 .flex.f02 div.systemflow01 .sf-order {
  max-width: 1.0rem;
  position: absolute;
  display: block;
  top: .58rem;
  right: -.76rem;
  background: #fff;
  padding: 1em 0.5em;
  box-sizing: border-box;
  border-radius: 10px;
}

body.hanacupid .main #sec02 .flex.f02 div.systemflow01 .sf-order img {
  margin-left: 0.05rem;
  width: .54rem;
}

body.hanacupid .main #sec02 .flex.f02 div.systemflow02 {
  width: 4.72rem;
}

body.hanacupid .main #sec02 .flex.f02 div.systemflow02 .flex {
  align-items: center;
  justify-content: center;
}

body.hanacupid .main #sec02 .flex.f02 div.systemflow02 .flex picture {
  background: #F4F3F7;
  border-radius: 50%;
  width: 1.6rem;
  height: 1.6rem;
  text-align: center;
  display: block;
  padding: .52rem;
  box-sizing: border-box;
  margin: 0 .1rem;
}

body.hanacupid .main #sec02 .flex.f02 div.systemflow02 .flex picture img {
  width: .56rem;
}

body.hanacupid .main #sec02 .flex.f02 div.systemflow02 .flex>div:first-child h4 img {
  width: 1.55rem;
}

body.hanacupid .main #sec02 .flex.f02 div.systemflow02 .flex>div:last-child h4 img {
  width: 1.23rem;
}

body.hanacupid .main #sec02 .flex.f02 div.systemflow02 .flex .sf-arrow {
  display: block;
  margin-top: -.35rem;
}

body.hanacupid .main #sec02 .flex.f02 div.systemflow03 {
  width: 2.8rem;
  position: relative;
}

body.hanacupid .main #sec02 .flex.f02 div.systemflow03 h4 img {
  width: 0.9rem;
}

body.hanacupid .main #sec02 .flex.f02 div.systemflow03:before {
  content: "";
  display: block;
  position: absolute;
  left: -.22rem;
  border-right: 2px solid #F4F3F7;
  height: 1.60rem;
}

body.hanacupid .main #sec02 .flex.f02 div.systemflow03 .sf-delivery {
  max-width: 1.0rem;
  position: absolute;
  display: block;
  top: .58rem;
  left: -.62rem;
  background: #fff;
  padding: 1em 0.5em;
  box-sizing: border-box;
  border-radius: 10px;
}

body.hanacupid .main #sec02 .flex.f02 div.systemflow03 .sf-delivery img {
  margin-left: 0.05rem;
  width: .54rem;
}

body.hanacupid .main #sec02 .flex.f02 .sf-arrow {
  width: 0.12rem !important;
}

body.hanacupid .main #sec02 .flex.f03 {
  margin-top: 0.78rem;
  align-items: center;
}

body.hanacupid .main #sec02 .flex.f03 p {
  width: 7.8rem;
  line-height: 2;
}

body.hanacupid .main #sec02 .flex.f03 p::before,
body.hanacupid .main #sec02 .flex.f03 p::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.hanacupid .main #sec02 .flex.f03 p::before {
  margin-bottom: -0.5em;
}

body.hanacupid .main #sec02 .flex.f03 p::after {
  margin-top: -0.5em;
}

body.hanacupid .main #sec02 .flex.f03 p span {
  display: block;
  font-size: .14rem;
}

body.hanacupid .main #sec02 .flex.f03 .bt01 {
  width: 2.43rem;
  border-radius: .5rem;
  line-height: 0.56rem;
}

body.hanacupid .main #sec02 .flex.f03 .bt01:before {
  content: '';
  display: inline-block;
  width: .08rem;
  margin: 0 .08rem 0 0;
  height: .56rem;
  background: url(../imgs/arrow05.svg) 0 50%/100% auto no-repeat;
  vertical-align: top;
}

body.hanacupid .main #sec02 h2 {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  line-height: 1;
  text-align: left;
  position: relative;
  width: 2.93rem;
}

@media screen and (max-width: 750px) {
  body.hanacupid .main #sec02 h2 {
    line-height: 1.42857;
    text-align: center;
    margin-right: auto;
    margin-bottom: .3rem;
    margin-left: auto;
    width: 1.8rem;
  }
}

body.hanacupid .main #sec02 h2 .base {
  font-size: .7rem;
  display: block;
}

@media screen and (max-width: 750px) {
  body.hanacupid .main #sec02 h2 .base {
    font-size: 0.4rem;
  }
}

body.hanacupid .main #sec02 h2 .sup {
  display: block;
  font-size: .25rem;
  margin-bottom: 0.4rem;
  white-space: nowrap;
}

@media screen and (max-width: 750px) {
  body.hanacupid .main #sec02 h2 .sup {
    font-size: 0.2rem;
    margin-bottom: 0;
  }
}

body.hanacupid .main #sec02 h2 em {
  color: #3D62AD;
}

body.hanacupid .main #sec02 h2 .en {
  border-top: 1px solid #E4E9F2;
  display: block;
  color: #3D62AD;
  font-family: "Roboto", sans-serif;
  font-size: .16rem;
  font-weight: 400;
  letter-spacing: .08em;
  padding-top: 0.2rem;
  position: absolute;
  top: .45rem;
  right: 0;
  left: 0;
  text-align: right;
}

@media screen and (max-width: 750px) {
  body.hanacupid .main #sec02 h2 .en {
    margin-top: 0.16rem;
    position: static;
    text-align: center;
  }
}

body.hanacupid .main #sec02 h3 {
  font-family: "Noto Serif JP", serif;
  font-size: .26rem;
  line-height: 1.84615;
}

body.hanacupid .main #sec02 h3::before,
body.hanacupid .main #sec02 h3::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.hanacupid .main #sec02 h3::before {
  margin-bottom: -0.42308em;
}

body.hanacupid .main #sec02 h3::after {
  margin-top: -0.42308em;
}

@media screen and (max-width: 750px) {
  body.hanacupid .main #sec02 h3 {
    font-size: 0.22rem;
    margin-bottom: 0.3rem;
    text-align: center;
  }
}

@media screen and (max-width: 750px) {
  body.hanacupid .main #sec02 .flex.f01 {
    margin-bottom: 0.4rem;
  }

  body.hanacupid .main #sec02 .flex.f01 div {
    width: 100%;
    margin-left: 0;
  }

  body.hanacupid .main #sec02 .flex.f01 div:nth-last-child(1) {
    width: 100%;
    margin-top: .3rem;
  }

  body.hanacupid .main #sec02 .flex.f02 div.systemflow01,
  body.hanacupid .main #sec02 .flex.f02 div.systemflow02,
  body.hanacupid .main #sec02 .flex.f02 div.systemflow03 {
    width: 100%;
  }

  body.hanacupid .main #sec02 .flex.f02 div.systemflow01 {
    padding-bottom: .5rem;
  }

  body.hanacupid .main #sec02 .flex.f02 div.systemflow01:before {
    content: "";
    display: block;
    position: absolute;
    right: inherit;
    bottom: 0;
    border-right: none;
    border-bottom: 2px solid #F4F3F7;
    width: 100%;
  }

  body.hanacupid .main #sec02 .flex.f02 div.systemflow01 .sf-order {
    max-width: 1.0rem;
    position: absolute;
    display: block;
    top: inherit;
    bottom: -.36rem;
    right: inherit;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    background: #fff;
    padding: 0 1em;
    box-sizing: border-box;
    border-radius: 0;
    text-align: center;
  }

  body.hanacupid .main #sec02 .flex.f02 div.systemflow01 .sf-order img {
    display: block;
    margin: -.15rem 0 .15rem;
  }

  body.hanacupid .main #sec02 .flex.f02 div.systemflow01 .sf-order img:nth-child(2) {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    margin: 0 auto;
  }

  body.hanacupid .main #sec02 .flex.f02 div.systemflow02 {
    padding: .5rem 0;
  }

  body.hanacupid .main #sec02 .flex.f02 div.systemflow02 .flex {
    display: block;
  }

  body.hanacupid .main #sec02 .flex.f02 div.systemflow02 .flex picture {
    margin: 0 auto;
  }

  body.hanacupid .main #sec02 .flex.f02 div.systemflow02 .flex .sf-arrow {
    margin-top: inherit;
    margin: .2rem auto;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  body.hanacupid .main #sec02 .flex.f02 div.systemflow03 {
    padding-top: .5rem;
  }

  body.hanacupid .main #sec02 .flex.f02 div.systemflow03:before {
    border-right: none;
    border-top: 2px solid #F4F3F7;
    height: inherit;
    top: 0;
    left: inherit;
    width: 100%;
  }

  body.hanacupid .main #sec02 .flex.f02 div.systemflow03 .sf-delivery {
    max-width: 1.0rem;
    position: absolute;
    display: block;
    top: .08rem;
    right: inherit;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    background: #fff;
    padding: 0 1em;
    box-sizing: border-box;
    border-radius: 0;
    text-align: center;
  }

  body.hanacupid .main #sec02 .flex.f02 div.systemflow03 .sf-delivery img {
    display: block;
    margin: -.15rem 0 .15rem;
  }

  body.hanacupid .main #sec02 .flex.f02 div.systemflow03 .sf-delivery img:nth-child(2) {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    margin: 0 auto;
  }

  body.hanacupid .main #sec02 .flex.f03 {
    margin-top: 0.3rem;
  }

  body.hanacupid .main #sec02 .flex.f03 p,
  body.hanacupid .main #sec02 .flex.f03 .bt01 {
    width: 100%;
  }

  body.hanacupid .main #sec02 .flex.f03 .bt01 {
    margin-top: .3rem;
  }
}

body.hanacupid .main #sec02 .etc {
  font-family: "Noto Serif JP", serif;
  font-size: 0.26rem;
  font-weight: 600;
  margin: 1.2rem 0 .4rem;
  text-align: center;
  line-height: 1.84615;
}

body.hanacupid .main #sec02 .etc::before,
body.hanacupid .main #sec02 .etc::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.hanacupid .main #sec02 .etc::before {
  margin-bottom: -0.42308em;
}

body.hanacupid .main #sec02 .etc::after {
  margin-top: -0.42308em;
}

@media screen and (max-width: 750px) {
  body.hanacupid .main #sec02 .etc {
    font-size: 0.22rem;
  }
}

body.hanacupid .main #sec02 .etc-container {
  background-color: #F4F3F7;
  margin-bottom: 0.32rem;
  padding: 0.8rem;
}

@media screen and (max-width: 750px) {
  body.hanacupid .main #sec02 .etc-container {
    padding: .4rem 0.18rem;
  }
}

body.hanacupid .main #sec02 .etc-container>.title {
  font-size: 0.2rem;
  margin-bottom: 0.29rem;
}

body.hanacupid .main #sec02 .etc-container>.title.pc span {
  align-items: center;
  display: inline-flex;
}

body.hanacupid .main #sec02 .etc-container>.title.pc span::before {
  background: url("../imgs/hanacupid/icon-pc.svg") 0 0/contain no-repeat;
  content: '';
  height: 0.26rem;
  margin: -.03rem 0.13rem -.03rem 0;
  width: 0.31rem;
}

body.hanacupid .main #sec02 .etc-container>.title.tel span {
  align-items: center;
  display: inline-flex;
}

body.hanacupid .main #sec02 .etc-container>.title.tel span::before {
  background: url("../imgs/hanacupid/icon-tel.svg") 0 0/contain no-repeat;
  content: '';
  height: 0.31rem;
  margin: -.055rem 0.15rem -.055rem 0;
  width: 0.31rem;
}

body.hanacupid .main #sec02 .etc-container .copy {
  font-family: "Noto Serif JP", serif;
  font-size: 0.26rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.4rem;
  line-height: 1.84615;
}

body.hanacupid .main #sec02 .etc-container .copy::before,
body.hanacupid .main #sec02 .etc-container .copy::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.hanacupid .main #sec02 .etc-container .copy::before {
  margin-bottom: -0.42308em;
}

body.hanacupid .main #sec02 .etc-container .copy::after {
  margin-top: -0.42308em;
}

@media screen and (max-width: 750px) {
  body.hanacupid .main #sec02 .etc-container .copy {
    font-size: 0.22rem;
  }
}

body.hanacupid .main #sec02 .etc-container .copy em {
  color: #C7527B;
}

body.hanacupid .main #sec02 .etc-container>.text {
  margin-bottom: 0.48rem;
  padding: 0;
  line-height: 2;
}

body.hanacupid .main #sec02 .etc-container>.text::before,
body.hanacupid .main #sec02 .etc-container>.text::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.hanacupid .main #sec02 .etc-container>.text::before {
  margin-bottom: -0.5em;
}

body.hanacupid .main #sec02 .etc-container>.text::after {
  margin-top: -0.5em;
}

body.hanacupid .main #sec02 .etc-container .container {
  background-color: #fff;
  padding: 0.48rem;
  position: relative;
}

@media screen and (max-width: 750px) {
  body.hanacupid .main #sec02 .etc-container .container {
    padding: 0.4rem .18rem;
  }
}

body.hanacupid .main #sec02 .etc-container .container+.container {
  margin-top: 0.16rem;
}

body.hanacupid .main #sec02 .etc-container .container .logo.hana {
  margin-top: 0.05rem;
  margin-bottom: 0.38rem;
  width: 2.92rem;
}

@media screen and (max-width: 750px) {
  body.hanacupid .main #sec02 .etc-container .container .logo.hana {
    width: auto;
  }
}

body.hanacupid .main #sec02 .etc-container .container .logo.town {
  margin-top: 0.04rem;
  margin-bottom: 0.32rem;
  width: 2.07rem;
}

@media screen and (max-width: 750px) {
  body.hanacupid .main #sec02 .etc-container .container .logo.town {
    width: auto;
  }
}

body.hanacupid .main #sec02 .etc-container .container .text {
  background-color: transparent;
  padding: 0;
}

body.hanacupid .main #sec02 .etc-container .container .btn {
  position: absolute;
  right: 0.48rem;
  top: 0.5rem;
}

@media screen and (max-width: 750px) {
  body.hanacupid .main #sec02 .etc-container .container .btn {
    font-size: 0.14rem;
    margin-top: 0.4rem;
    position: static;
  }
}

body.hanacupid .main #sec02 .etc-container .container .btn .bt01 {
  border-radius: 0.28rem;
  line-height: 0.56rem;
  padding: 0 0.24rem;
}

body.hanacupid .main #sec02 .etc-container .container .btn .bt01:before {
  content: '';
  display: inline-block;
  width: .08rem;
  margin: 0 .08rem 0 0;
  height: .56rem;
  background: url(../imgs/arrow05.svg) 0 50%/100% auto no-repeat;
  vertical-align: top;
}

body.hanacupid .main #sec02 .etc-container .tel-container {
  align-items: center;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  height: 1.6rem;
  justify-content: center;
  line-height: 1;
  width: 4.32rem;
}

@media screen and (max-width: 750px) {
  body.hanacupid .main #sec02 .etc-container .tel-container+.tel-container {
    margin-top: 0.16rem;
  }
}

body.hanacupid .main #sec02 .etc-container .tel-container .tit {
  font-size: 0.18rem;
  margin-top: 0;
  margin-bottom: 0.16rem;
}

body.hanacupid .main #sec02 .etc-container .tel-container .number {
  align-items: center;
  display: flex;
  font-size: 0.28rem;
  font-weight: 700;
}

body.hanacupid .main #sec02 .etc-container .tel-container .number.tel::before {
  background: url("../imgs/ico-tel02.svg") 0 0/contain no-repeat;
  content: '';
  height: 0.17rem;
  margin-top: 0.05rem;
  margin-right: .1rem;
  width: 0.17rem;
}

body.hanacupid .main #sec02 .etc-container .tel-container .number.mobile::before {
  background: url("../imgs/hanacupid/icon-mobile.svg") 0 0/contain no-repeat;
  content: '';
  height: 0.24rem;
  margin-right: .1rem;
  width: 0.14rem;
}

body.hanacupid .main #sec02 .etc-container .tel-container .note {
  margin-top: 0.2rem;
}

body.hanacupid .main #sec03 {
  background: #F4F3F7;
  padding-bottom: 1.2rem;
  font-size: 0.16rem;
}

body.hanacupid .main #sec03 .f01 {
  align-items: center;
  margin-bottom: .68rem;
  flex-direction: row-reverse;
  padding: 0 .4rem;
}

body.hanacupid .main #sec03 .f01 p {
  font-family: "Noto Serif JP", serif;
  font-size: .26rem;
  font-weight: 600;
  text-align: center;
  box-sizing: border-box;
}

body.hanacupid .main #sec03 .f01 h2 {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  line-height: 1;
  text-align: left;
  position: relative;
  width: 3.62rem;
}

body.hanacupid .main #sec03 .f01 h2 .base {
  font-size: .7rem;
  display: block;
}

@media screen and (max-width: 750px) {
  body.hanacupid .main #sec03 .f01 h2 .base {
    font-size: 0.5rem;
    display: inline;
  }
}

body.hanacupid .main #sec03 .f01 h2 .sup {
  display: block;
  font-size: .7rem;
  margin-bottom: 0.3rem;
  white-space: nowrap;
}

@media screen and (max-width: 750px) {
  body.hanacupid .main #sec03 .f01 h2 .sup {
    display: inline;
    font-size: 0.22rem;
  }
}

body.hanacupid .main #sec03 .f01 h2 em {
  color: #3D62AD;
}

body.hanacupid .main #sec03 .f01 h2 .en {
  border-top: 1px solid #E4E9F2;
  display: block;
  color: #3D62AD;
  font-family: "Roboto", sans-serif;
  font-size: .16rem;
  font-weight: 400;
  letter-spacing: .08em;
  line-height: 1.875;
  padding-top: 0.13rem;
  padding-left: 2.26rem;
  position: absolute;
  top: .85rem;
  right: 0;
  left: 0;
}

@media screen and (max-width: 750px) {
  body.hanacupid .main #sec03 .f01 h2 .en {
    margin-top: 0.2rem;
    position: static;
    text-align: center;
  }
}

body.hanacupid .main #sec03 .f02 div {
  width: 3.32rem;
}

body.hanacupid .main #sec03 .f02 div p {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  font-weight: 700;
  height: 1.12rem;
  line-height: 1.875;
  background: #fff;
  justify-content: center;
  text-align: center;
  position: relative;
}

body.hanacupid .main #sec03 .f02 div p:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-top: 10px solid #fff;
}

body.hanacupid .main #sec03 .btn {
  margin-top: 0.4rem;
}

@media screen and (max-width: 750px) {
  body.hanacupid .main #sec03 .btn {
    margin-top: 0.1rem;
    margin-bottom: 0.3rem;
  }
}

body.hanacupid .main #sec03 .btn li {
  width: 5.1rem;
}

@media screen and (max-width: 750px) {
  body.hanacupid .main #sec03 .btn li+li {
    margin-top: 0.1rem;
  }
}

body.hanacupid .main #sec03 .btn li .bt01 {
  line-height: 0.64rem;
  padding-left: 0.4rem;
  text-align: left;
}

body.hanacupid .main #sec03 .btn li .bt01:before {
  content: '';
  display: inline-block;
  width: .08rem;
  margin: 0 .08rem 0 0;
  height: .64rem;
  background: url(../imgs/arrow05.svg) 0 50%/100% auto no-repeat;
  vertical-align: top;
}

body.hanacupid .main #sec03 .f03 {
  margin-top: 0.5rem;
  align-items: center;
  flex-direction: row-reverse;
}

body.hanacupid .main #sec03 .f03 p {
  width: 7.3rem;
  line-height: 2;
}

body.hanacupid .main #sec03 .f03 p::before,
body.hanacupid .main #sec03 .f03 p::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.hanacupid .main #sec03 .f03 p::before {
  margin-bottom: -0.5em;
}

body.hanacupid .main #sec03 .f03 p::after {
  margin-top: -0.5em;
}

body.hanacupid .main #sec03 .f03 p span {
  display: block;
  font-size: .14rem;
}

body.hanacupid .main #sec03 .f03 .bt01 {
  align-items: center;
  display: flex;
  font-size: .18rem;
  height: 0.8rem;
  width: 2.5rem;
  border-radius: .5rem;
  justify-content: center;
  text-align: center;
  position: relative;
  line-height: 1.3;
}

body.hanacupid .main #sec03 .f03 .bt01 .sub {
  display: block;
  font-size: .12rem;
  font-weight: normal;
  margin-bottom: 0.05rem;
}

body.hanacupid .main #sec03 .f03 .bt01:before {
  content: '';
  display: inline-block;
  width: .08rem;
  margin: 0 .08rem 0 0;
  height: .56rem;
  background: url(../imgs/arrow05.svg) 0 50%/100% auto no-repeat;
  vertical-align: top;
}

@media screen and (max-width: 750px) {
  body.hanacupid .main #sec03 {
    padding: 0.5rem 0;
  }

  body.hanacupid .main #sec03 .f01 {
    margin-bottom: 0.3rem;
    padding: 0;
  }

  body.hanacupid .main #sec03 .f01 h2,
  body.hanacupid .main #sec03 .f01 p {
    width: 100%;
  }

  body.hanacupid .main #sec03 .f01 h2 {
    margin-bottom: 0.2rem;
    text-align: center;
  }

  body.hanacupid .main #sec03 .f01 h2 .base {
    font-size: .4rem;
    display: inline;
  }

  body.hanacupid .main #sec03 .f01 h2 .sup {
    font-size: .4rem;
    display: inline;
  }

  body.hanacupid .main #sec03 .f01 h2 .en {
    padding-left: 0;
  }

  body.hanacupid .main #sec03 .f01 p {
    font-size: 0.2rem;
  }

  body.hanacupid .main #sec03 .f02 div {
    width: 100%;
    margin-bottom: .2rem;
  }

  body.hanacupid .main #sec03 .f03 {
    margin-top: 0.1rem;
  }

  body.hanacupid .main #sec03 .f03 .bt01,
  body.hanacupid .main #sec03 .f03 p {
    width: 100%;
  }

  body.hanacupid .main #sec03 .f03 .bt01 {
    margin-top: .3rem;
  }
}

body.hanacupid .main .case .prepend .title {
  margin-bottom: 0;
}

body.hanacupid .main .case.gift {
  margin-top: 0;
  margin-bottom: 1.2rem;
  padding-top: 0.4rem;
  position: relative;
}

@media screen and (max-width: 750px) {
  body.hanacupid .main .case.gift {
    margin-bottom: 0.5rem;
  }
}

body.member .main .mainHeader .headline {
  background-image: url("../imgs/member/mv-back@2x.jpg");
}

body.member .main .lead {
  position: relative;
}

body.member .main .lead::before {
  background: url("../imgs/member/flower@2x.png") 0 0/contain no-repeat;
  content: '';
  height: 2.75rem;
  position: absolute;
  left: -3.16rem;
  top: 0.03rem;
  width: 3rem;
}

@media screen and (max-width: 750px) {
  body.member .main .lead::before {
    content: none;
  }
}

body.member .main .sNav {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.64rem;
}

@media screen and (max-width: 750px) {
  body.member .main .sNav {
    display: block;
    margin-top: .4rem;
  }
}

body.member .main .sNav a {
  flex-grow: 1;
  margin: .14rem .12rem 0 0;
  font-size: .16rem;
  line-height: .6rem;
}

@media screen and (max-width: 750px) {
  body.member .main .sNav a {
    font-size: .14rem;
  }

  body.member .main .sNav a:nth-child(n) {
    margin-right: 0;
  }
}

body.member .main .sNav a:nth-child(4n) {
  margin-right: 0;
}

body.member .main .sNav a::before {
  content: '';
  display: inline-block;
  width: .08rem;
  margin: 0 .08rem 0 0;
  height: .6rem;
  background: url(../imgs/arrow04.svg) 0 50%/100% auto no-repeat;
  vertical-align: top;
}

body.member .main #sec01 .sup {
  font-size: 0.25rem;
}

body.member .main #sec01 h3 {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  margin-bottom: .5em;
  font-size: 0.26rem;
  font-weight: 600;
}

body.member .main #sec01 p {
  margin-bottom: 2em;
}

@media screen and (max-width: 750px) {
  body.member .main #sec01 p {
    margin-bottom: 1em;
  }
}

body.member .main #sec02 {
  font-size: 0.16rem;
  background: #F4F3F7;
}

body.member .main #sec02 .sup {
  font-size: 0.25rem;
}

body.member .main #sec02 h3 {
  text-align: center;
  font-size: 0.2rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1;
  margin: .4rem 0 .32rem 0;
}

@media screen and (max-width: 750px) {
  body.member .main #sec02 h3 {
    margin: 0.32rem 0;
  }
}

body.member .main #sec02 p {
  line-height: 2;
}

body.member .main #sec02 p::before,
body.member .main #sec02 p::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.member .main #sec02 p::before {
  margin-bottom: -0.5em;
}

body.member .main #sec02 p::after {
  margin-top: -0.5em;
}

body.member .main #sec02 .title.fl {
  background-position: 10% center;
}

body.member .main #sec03 {
  padding-bottom: 0;
  position: relative;
}

body.member .main #sec03::before {
  background: url("../imgs/member/flower2@2x.png") 0 0/contain no-repeat;
  content: '';
  height: 1.96rem;
  position: absolute;
  right: -.58rem;
  top: -.82rem;
  width: 2.35rem;
}

@media screen and (max-width: 750px) {
  body.member .main #sec03::before {
    content: none;
  }
}

body.member .main #sec03 .question h3 {
  background-image: url("../../assets/imgs/member/icon-q.svg");
  background-size: 1.5em;
  background-repeat: no-repeat;
  background-position: 0 .1rem;
  font-family: "Noto Serif JP", serif;
  font-size: 0.2rem;
  padding-left: 2.5em;
  margin-bottom: 0.24rem;
}

@media screen and (max-width: 750px) {
  body.member .main #sec03 .question h3 {
    margin-bottom: 0.14rem;
  }
}

body.member .main #sec03 .question:nth-child(even) .flex {
  flex-direction: row-reverse;
}

body.member .main #sec03 .question+.question {
  margin-top: 0.8rem;
}

@media screen and (max-width: 750px) {
  body.member .main #sec03 .question+.question {
    margin-top: 0.4rem;
  }
}

body.member .main #sec03 .question .q-box {
  background: #F4F3F7;
  padding: .56rem;
}

@media screen and (max-width: 750px) {
  body.member .main #sec03 .question .q-box {
    padding: 0.25rem;
  }
}

body.member .main #sec03 .question .q-box+.q-box {
  margin-top: 0.8rem;
}

body.member .main #sec03 .question .q-box h4 {
  margin-bottom: .24rem;
  line-height: 2;
}

body.member .main #sec03 .question .q-box h4::before,
body.member .main #sec03 .question .q-box h4::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.member .main #sec03 .question .q-box h4::before {
  margin-bottom: -0.5em;
}

body.member .main #sec03 .question .q-box h4::after {
  margin-top: -0.5em;
}

body.member .main #sec03 .question .q-box p {
  line-height: 2;
}

body.member .main #sec03 .question .q-box p::before,
body.member .main #sec03 .question .q-box p::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.member .main #sec03 .question .q-box p::before {
  margin-bottom: -0.5em;
}

body.member .main #sec03 .question .q-box p::after {
  margin-top: -0.5em;
}

body.member .main #sec03 .question .q-box p+p {
  margin-top: .32rem;
}

body.member .main #sec03 .question .flex div {
  width: 5.66rem;
}

@media screen and (max-width: 750px) {
  body.member .main #sec03 .question .flex div {
    width: auto;
  }
}

body.member .main #sec03 .question .flex picture {
  width: 3.2rem;
}

@media screen and (max-width: 750px) {
  body.member .main #sec03 .question .flex picture {
    margin-top: .25rem;
    width: auto;
  }
}

body.member .main #sec04 {
  padding-bottom: 0.42rem;
}

@media screen and (max-width: 750px) {
  body.member .main #sec04 {
    padding-bottom: 0.32rem;
  }
}

body.member .main #sec04 .flow dl {
  align-items: center;
  background: #F4F3F7;
  padding: .49rem 0;
  display: flex;
}

@media screen and (max-width: 750px) {
  body.member .main #sec04 .flow dl {
    flex-wrap: wrap;
  }
}

body.member .main #sec04 .flow dl+dl {
  margin-top: 0.16rem;
}

body.member .main #sec04 .flow dl:nth-child(1) dd:nth-child(even) img {
  width: .41rem;
}

body.member .main #sec04 .flow dl:nth-child(2) dd:nth-child(even) img {
  width: .49rem;
}

body.member .main #sec04 .flow dl:nth-child(3) dd:nth-child(even) img {
  width: .45rem;
}

body.member .main #sec04 .flow dl:nth-child(4) dd:nth-child(even) img {
  width: .51rem;
}

body.member .main #sec04 .flow dl:nth-child(5) dd:nth-child(even) img {
  width: .54rem;
}

body.member .main #sec04 .flow dl dt {
  background: #3D62AD;
  margin: -0.17rem 0;
  width: .88rem;
  height: .88rem;
  text-align: center;
  font-family: "Roboto", sans-serif;
  color: #fff;
  align-items: center;
  display: flex;
  justify-content: center;
  line-height: 1;
  flex-direction: column;
}

body.member .main #sec04 .flow dl dt span {
  margin-bottom: 0.05rem;
}

body.member .main #sec04 .flow dl dt em {
  font-size: .3rem;
}

body.member .main #sec04 .flow dl dd:nth-child(even) {
  width: 1.78rem;
  text-align: center;
}

@media screen and (max-width: 750px) {
  body.member .main #sec04 .flow dl dd:nth-child(even) {
    width: calc(100% - .88rem);
  }
}

body.member .main #sec04 .flow dl dd:nth-child(odd) {
  width: calc(100% - 1.78rem - .88rem);
  padding-right: 2em;
}

@media screen and (max-width: 750px) {
  body.member .main #sec04 .flow dl dd:nth-child(odd) {
    margin-top: 0.4rem;
    padding: 0 0.18rem;
    width: 100%;
  }
}

body.member .main #sec04 .flow dl dd p {
  line-height: 2;
}

body.member .main #sec04 .flow dl dd p::before,
body.member .main #sec04 .flow dl dd p::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.member .main #sec04 .flow dl dd p::before {
  margin-bottom: -0.5em;
}

body.member .main #sec04 .flow dl dd p::after {
  margin-top: -0.5em;
}

body.member .main #sec04 .flow dl dd p+p {
  margin-top: 0.32rem;
}

body.member .main #sec04 .flow h3 {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: .22rem;
  line-height: 1;
  margin-bottom: 0.16rem;
}

@media screen and (max-width: 750px) {
  body.member .main #sec04 .flow h3 {
    line-height: 2;
  }
}

body.member .main #page-form {
  padding-top: 30px;
}

body.flower_college .main .mainHeader .headline {
  background-image: url("../imgs/flower_college/mv-back@2x.jpg");
}

body.flower_college .main .lead .catch {
  margin-top: 0.15rem;
  white-space: nowrap;
}

body.flower_college .main #sec01 {
  background: #F4F3F7;
  margin-top: .74rem;
  padding-top: .84rem;
  padding-bottom: .74rem;
}

@media screen and (max-width: 750px) {
  body.flower_college .main #sec01 {
    margin-top: 0.5rem;
    padding: 0.5rem 0;
  }
}

@media screen and (max-width: 750px) {
  body.flower_college .main #sec01 .flex {
    display: block;
  }
}

body.flower_college .main #sec01 .flex div {
  background: #fff;
  width: 3.32rem;
  margin-bottom: .22rem;
}

@media screen and (max-width: 750px) {
  body.flower_college .main #sec01 .flex div {
    margin-bottom: 0;
    width: auto;
  }

  body.flower_college .main #sec01 .flex div+div {
    margin-top: 0.22rem;
  }
}

body.flower_college .main #sec01 .flex div h3 {
  align-items: center;
  color: #3D62AD;
  display: flex;
  height: .82rem;
  text-align: center;
  line-height: 1.44444;
  justify-content: center;
}

body.flower_college .main #sec01 .flex div p {
  padding: .36rem;
  line-height: 2;
}

body.flower_college .main #sec01 .flex div p::before,
body.flower_college .main #sec01 .flex div p::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.flower_college .main #sec01 .flex div p::before {
  margin-bottom: -0.5em;
}

body.flower_college .main #sec01 .flex div p::after {
  margin-top: -0.5em;
}

@media screen and (max-width: 750px) {
  body.flower_college .main #sec01 .flex div p {
    padding: 0.25rem;
  }
}

body.flower_college .main #sec02 {
  font-size: 0.16rem;
  margin-bottom: 1.2rem;
  padding-top: 0.81rem;
  padding-bottom: 0;
}

@media screen and (max-width: 750px) {
  body.flower_college .main #sec02 {
    margin-bottom: 0.392rem;
    padding-top: 0.5rem;
  }
}

body.flower_college .main #sec02 .title {
  margin-bottom: 1rem;
}

@media screen and (max-width: 750px) {
  body.flower_college .main #sec02 .title {
    margin-bottom: 0.5rem;
  }
}

body.flower_college .main #sec02 .flex {
  align-items: center;
}

@media screen and (max-width: 750px) {
  body.flower_college .main #sec02 .flex {
    display: block;
  }
}

body.flower_college .main #sec02 .flex+.flex {
  margin-top: 1rem;
}

@media screen and (max-width: 750px) {
  body.flower_college .main #sec02 .flex+.flex {
    margin-top: 0.8rem;
  }
}

body.flower_college .main #sec02 .flex>div {
  width: 4.65rem;
}

@media screen and (max-width: 750px) {
  body.flower_college .main #sec02 .flex>div {
    width: auto;
  }
}

body.flower_college .main #sec02 .flex>div h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

body.flower_college .main #sec02 .flex>div h3 .badge {
  align-items: center;
  width: 1.4rem;
  height: 1.4rem;
  background: #3D62AD;
  border-radius: 50%;
  color: #fff;
  display: flex;
  text-align: center;
  justify-content: center;
}

@media screen and (max-width: 750px) {
  body.flower_college .main #sec02 .flex>div h3 .badge {
    font-size: 0.14rem;
    width: 1rem;
    height: 1rem;
  }
}

body.flower_college .main #sec02 .flex>div h3 dl {
  line-height: 1;
  width: calc(100% - 1.7rem);
}

@media screen and (max-width: 750px) {
  body.flower_college .main #sec02 .flex>div h3 dl {
    width: calc(100% - 1.2rem);
  }
}

body.flower_college .main #sec02 .flex>div h3 dl dt {
  font-family: "Noto Serif JP", serif;
  font-size: .2rem;
  color: #3D62AD;
  margin-bottom: 0.22rem;
}

body.flower_college .main #sec02 .flex>div h3 dl .v-addr {
  font-size: .14rem;
  color: #3D62AD;
  margin-bottom: 0.14rem;
}

body.flower_college .main #sec02 .flex>div h3 dl .v-name {
  font-size: .28rem;
  line-height: 1.4;
}

body.flower_college .main #sec02 .flex>div h3 dl .v-name::before,
body.flower_college .main #sec02 .flex>div h3 dl .v-name::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.flower_college .main #sec02 .flex>div h3 dl .v-name::before {
  margin-bottom: -0.2em;
}

body.flower_college .main #sec02 .flex>div h3 dl .v-name::after {
  margin-top: -0.2em;
}

body.flower_college .main #sec02 .flex>div h3 dl .v-name em {
  font-size: .2rem;
}

body.flower_college .main #sec02 .flex>div>p {
  margin-top: .47rem;
  line-height: 2;
}

body.flower_college .main #sec02 .flex>div>p::before,
body.flower_college .main #sec02 .flex>div>p::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.flower_college .main #sec02 .flex>div>p::before {
  margin-bottom: -0.5em;
}

body.flower_college .main #sec02 .flex>div>p::after {
  margin-top: -0.5em;
}

@media screen and (max-width: 750px) {
  body.flower_college .main #sec02 .flex>div>p {
    margin-top: 0.3rem;
  }
}

body.flower_college .main #sec02 .flex>picture {
  display: block;
  width: 5rem;
}

@media screen and (max-width: 750px) {
  body.flower_college .main #sec02 .flex>picture {
    margin-top: .3rem;
    width: 100%;
  }
}

body.flower_college .main #sec02 .flex:nth-child(odd) {
  flex-direction: row-reverse;
}

body.flowerdesign .main .mainHeader .headline {
  background-image: url("../imgs/flowerdesign/mv-back@2x.jpg");
}

body.flowerdesign .main #introduction {
  font-size: 0.16rem;
  margin-bottom: 0.74rem;
  line-height: 2;
}

body.flowerdesign .main #introduction::before,
body.flowerdesign .main #introduction::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.flowerdesign .main #introduction::before {
  margin-bottom: -0.5em;
}

body.flowerdesign .main #introduction::after {
  margin-top: -0.5em;
}

@media screen and (max-width: 750px) {
  body.flowerdesign .main #introduction {
    margin-bottom: 0.4rem;
  }
}

body.flowerdesign .main #introduction p {
  width: 8.0rem;
  margin: 0 auto;
}

@media screen and (max-width: 750px) {
  body.flowerdesign .main #introduction p {
    width: auto;
  }
}

body.flowerdesign .main .sNav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.68rem;
}

@media screen and (max-width: 750px) {
  body.flowerdesign .main .sNav {
    display: block;
    margin-bottom: 0.4rem;
  }
}

body.flowerdesign .main .sNav a {
  background-color: #F4F3F7;
  color: inherit;
  font-size: .16rem;
  line-height: .6rem;
  padding: 0.05rem;
  width: 3.38rem;
  z-index: 1;
}

@media screen and (max-width: 750px) {
  body.flowerdesign .main .sNav a {
    font-size: .14rem;
    width: auto;
  }

  body.flowerdesign .main .sNav a+a {
    margin-top: 0.14rem;
  }
}

body.flowerdesign .main .sNav a::after {
  opacity: 0.2;
}

body.flowerdesign .main .sNav a span {
  border: 1px solid #9AA8D8;
  display: block;
}

body.flowerdesign .main .sNav a span::before {
  content: '';
  display: inline-block;
  width: .08rem;
  margin: 0 .08rem 0 0;
  height: .62rem;
  background: url(../imgs/arrow06.svg) 0 50%/100% auto no-repeat;
  vertical-align: top;
}

body.flowerdesign .main .fdc {
  background: #F4F3F7;
  font-size: 0.16rem;
  padding: .2rem;
  position: relative;
}

body.flowerdesign .main .fdc+.fdc {
  margin-top: 0.6rem;
}

@media screen and (max-width: 750px) {
  body.flowerdesign .main .fdc+.fdc {
    margin-top: 0.3rem;
  }
}

body.flowerdesign .main .fdc h2 {
  padding-top: .2rem;
  background-image: url("../../assets/imgs/flowerdesign/crown.svg");
  background-size: .3rem;
  background-position: center 0;
  background-repeat: no-repeat;
  width: 4rem;
  margin: 0 auto .3rem auto;
  text-align: center;
}

@media screen and (max-width: 750px) {
  body.flowerdesign .main .fdc h2 {
    margin-bottom: 0.18rem;
  }
}

body.flowerdesign .main .fdc h2 .base {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: .26rem;
  padding-bottom: .2em;
}

@media screen and (max-width: 750px) {
  body.flowerdesign .main .fdc h2 .base {
    padding: 0.1rem 0;
    line-height: 1.4;
  }
}

body.flowerdesign .main .fdc h2 .en {
  border-top: 1px solid #9AA8D8;
  display: block;
  color: #3D62AD;
  font-family: "Roboto", sans-serif;
  font-size: .14rem;
  font-weight: 400;
  letter-spacing: .08em;
  padding-top: 1.1em;
  text-transform: uppercase;
}

@media screen and (max-width: 750px) {
  body.flowerdesign .main .fdc h2 {
    width: 100%;
  }
}

body.flowerdesign .main .fdc:before {
  content: "";
  position: absolute;
  top: .20rem;
  left: .20rem;
  width: 0;
  height: 0;
  border-top: .20rem solid #C3CFEA;
  border-right: .20rem solid transparent;
}

@media screen and (max-width: 750px) {
  body.flowerdesign .main .fdc:before {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
    -webkit-transform-origin: left top;
    transform-origin: left top;
  }
}

body.flowerdesign .main .fdc .fdc-wrap {
  border: 1px solid #9AA8D8;
  position: relative;
  padding: .32rem .75rem .75rem;
}

@media screen and (max-width: 750px) {
  body.flowerdesign .main .fdc .fdc-wrap {
    padding: .2rem 0.18rem .3rem;
  }
}

body.flowerdesign .main .fdc .fdc-wrap:before {
  content: "";
  position: absolute;
  bottom: .05rem;
  left: .05rem;
  width: 0;
  height: 0;
  border-bottom: .20rem solid #C3CFEA;
  border-right: .20rem solid transparent;
}

@media screen and (max-width: 750px) {
  body.flowerdesign .main .fdc .fdc-wrap:before {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
    -webkit-transform-origin: 0 bottom;
    transform-origin: 0 bottom;
  }
}

body.flowerdesign .main .fdc .fdc-wrap:after {
  content: "";
  position: absolute;
  bottom: .05rem;
  right: .05rem;
  width: 0;
  height: 0;
  border-bottom: .20rem solid #C3CFEA;
  border-left: .20rem solid transparent;
}

@media screen and (max-width: 750px) {
  body.flowerdesign .main .fdc .fdc-wrap:after {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }
}

body.flowerdesign .main .fdc .fdc-wrap .fdc-ribbon {
  font-weight: 700;
  position: absolute;
  top: -.27rem;
  right: -.27rem;
  width: 1.7747rem;
  height: 1.7783rem;
  overflow: hidden;
}

@media screen and (max-width: 750px) {
  body.flowerdesign .main .fdc .fdc-wrap .fdc-ribbon {
    -webkit-transform: scale(0.875);
    transform: scale(0.875);
    -webkit-transform-origin: right top;
    transform-origin: right top;
  }
}

body.flowerdesign .main .fdc .fdc-wrap .fdc-ribbon span {
  display: inline-block;
  position: absolute;
  padding: 1.0em 0;
  left: .21rem;
  top: .31rem;
  width: 2.03rem;
  text-align: center;
  font-size: .16rem;
  line-height: .16rem;
  background: #3D62AD;
  color: #fff;
  letter-spacing: 0.05em;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

body.flowerdesign .main .fdc .fdc-wrap .fdc-ribbon span:before,
body.flowerdesign .main .fdc .fdc-wrap .fdc-ribbon span:after {
  position: absolute;
  content: "";
  border-top: .04rem solid #3D62AD;
  border-left: .04rem solid transparent;
  border-right: .04rem solid transparent;
  bottom: -.04rem;
}

body.flowerdesign .main .fdc .fdc-wrap .fdc-ribbon span:before {
  left: .01rem;
}

body.flowerdesign .main .fdc .fdc-wrap .fdc-ribbon span:after {
  left: 1.95rem;
}

body.flowerdesign .main .fdc .fdc-wrap p {
  margin-top: .6rem;
  line-height: 2;
}

body.flowerdesign .main .fdc .fdc-wrap p::before,
body.flowerdesign .main .fdc .fdc-wrap p::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.flowerdesign .main .fdc .fdc-wrap p::before {
  margin-bottom: -0.5em;
}

body.flowerdesign .main .fdc .fdc-wrap p::after {
  margin-top: -0.5em;
}

@media screen and (max-width: 750px) {
  body.flowerdesign .main .fdc .fdc-wrap p {
    margin-top: 0.3rem;
  }
}

body.flowerdesign .main .fdc .fdc-wrap .fd-double {
  justify-content: center;
  margin-top: .6rem;
  line-height: 1.4;
  gap: .15rem;
}

@media screen and (max-width: 750px) {
  body.flowerdesign .main .fdc .fdc-wrap .fd-double {
    display: block;
    margin-top: 0.3rem;
  }
}

body.flowerdesign .main .fdc .fdc-wrap .fd-double li {
  width: 4rem;
  background-color: #3D62AD;
}

body.flowerdesign .main .fdc .fdc-wrap .fd-double li+li {
  /* margin-left: 0.15rem; */
}

@media screen and (max-width: 750px) {
  body.flowerdesign .main .fdc .fdc-wrap .fd-double li+li {
    /* margin-top: 0.15rem;
    margin-left: 0; */
  }
}

body.flowerdesign .main .fdc .fdc-wrap .fd-double li a {
  align-items: center;
  text-align: center;
  display: flex;
  color: #fff;
  height: 0.6rem;
  justify-content: center;
  font-weight: 700;
}

body.flowerdesign .main .fdc .fdc-wrap .fd-double li a:before {
  content: "";
  display: inline-block;
  width: .1229rem;
  height: .1229rem;
  margin-right: .06rem;
  background-image: url("../../assets/imgs/flowerdesign/crown.svg");
  background-size: .1233rem;
  background-position: center center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 750px) {
  body.flowerdesign .main .fdc .fdc-wrap .fd-double li a:before {
    content: none;
  }
}

@media screen and (max-width: 750px) {
  body.flowerdesign .main .fdc .fdc-wrap .fd-double li {
    width: 100%;
    margin-bottom: .2rem;
  }
}

body.privacy .main .mainHeader .headline,
body.antisocial .main .mainHeader .headline,
body.contact .main .f-privacy .mainHeader .headline {
  background-image: url("../imgs/mv-privacy@2x.jpg");
}

body.privacy .main .contents,
body.antisocial .main .contents,
body.contact .main .f-privacy .contents {
  font-size: 0.16rem;
  margin: 0 auto;
  max-width: 9.8rem;
}

body.privacy .main .contents>div>*+*,
body.antisocial .main .contents>div>*+*,
body.contact .main .f-privacy .contents>div>*+* {
  margin-top: 2em;
}

body.privacy .main .contents h2,
body.antisocial .main .contents h2,
body.contact .main .f-privacy .contents h2 {
  font-size: 0.22rem;
  font-weight: 700;
  line-height: 1.90909;
  margin-bottom: .06rem;
}

body.privacy .main .contents h2~h2,
body.antisocial .main .contents h2~h2,
body.contact .main .f-privacy .contents h2~h2 {
  margin-top: .32rem;
}

body.privacy .main .contents h2+*,
body.antisocial .main .contents h2+*,
body.contact .main .f-privacy .contents h2+* {
  margin-top: 0;
}

body.privacy .main .contents h3,
body.antisocial .main .contents h3,
body.contact .main .f-privacy .contents h3 {
  counter-increment: i;
  font-size: 0.18rem;
  font-weight: 700;
  line-height: 1.88889;
  margin-bottom: .07rem;
  padding-left: 1.5em;
  text-indent: -1.5em;
}

body.privacy .main .contents h3~h3,
body.antisocial .main .contents h3~h3,
body.contact .main .f-privacy .contents h3~h3 {
  margin-top: 0.34rem;
}

body.privacy .main .contents h3+*,
body.antisocial .main .contents h3+*,
body.contact .main .f-privacy .contents h3+* {
  margin-top: 0;
}

body.privacy .main .contents h3::before,
body.antisocial .main .contents h3::before,
body.contact .main .f-privacy .contents h3::before {
  content: counter(i) ".";
  display: inline-block;
  text-indent: 0;
  width: 1.5em;
}

body.privacy .main .contents ol,
body.antisocial .main .contents ol,
body.contact .main .f-privacy .contents ol {
  list-style: decimal;
  padding-left: 1.5em;
}

body.privacy .main .contents ol li,
body.antisocial .main .contents ol li,
body.contact .main .f-privacy .contents ol li {
  list-style: inherit;
}

body.privacy .main .contents .mark,
body.antisocial .main .contents .mark,
body.contact .main .f-privacy .contents .mark {
  align-items: center;
  border: 1px solid #C3CFFA;
  display: flex;
  padding: .45rem .4rem;
}

@media screen and (max-width: 750px) {

  body.privacy .main .contents .mark,
  body.antisocial .main .contents .mark,
  body.contact .main .f-privacy .contents .mark {
    flex-direction: column;
    padding: 0.25rem;
  }
}

body.privacy .main .contents .mark .img,
body.antisocial .main .contents .mark .img,
body.contact .main .f-privacy .contents .mark .img {
  flex-shrink: 0;
  margin-right: 0.67rem;
  margin-left: 0.15rem;
  width: .88rem;
}

@media screen and (max-width: 750px) {

  body.privacy .main .contents .mark .img,
  body.antisocial .main .contents .mark .img,
  body.contact .main .f-privacy .contents .mark .img {
    margin-right: 0;
    margin-bottom: .25rem;
    margin-left: 0;
  }
}

body.privacy .main .contents .mark .text,
body.antisocial .main .contents .mark .text,
body.contact .main .f-privacy .contents .mark .text {
  line-height: 2;
}

body.privacy .main .contents .mark .text::before,
body.privacy .main .contents .mark .text::after,
body.antisocial .main .contents .mark .text::before,
body.antisocial .main .contents .mark .text::after,
body.contact .main .f-privacy .contents .mark .text::before,
body.contact .main .f-privacy .contents .mark .text::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.privacy .main .contents .mark .text::before,
body.antisocial .main .contents .mark .text::before,
body.contact .main .f-privacy .contents .mark .text::before {
  margin-bottom: -0.5em;
}

body.privacy .main .contents .mark .text::after,
body.antisocial .main .contents .mark .text::after,
body.contact .main .f-privacy .contents .mark .text::after {
  margin-top: -0.5em;
}

body.search .main .btLocation,
body.search .main .btPrefecture {
  border-radius: 0.2rem;
  line-height: 0.4rem;
}

@media screen and (max-width: 750px) {

  body.search .main .btLocation,
  body.search .main .btPrefecture {
    border-radius: 0.24rem;
    line-height: 0.44rem;
  }
}

body.search .main .btLocation::before,
body.search .main .btPrefecture::before {
  content: '';
  display: inline-block;
  height: 0.4rem;
  background: 0 50% / 100% auto no-repeat;
  vertical-align: top;
}

@media screen and (max-width: 750px) {

  body.search .main .btLocation::before,
  body.search .main .btPrefecture::before {
    height: 0.44rem;
  }
}

body.search .main .btLocation {
  padding: 0 0.06rem 0 0;
}

body.search .main .btLocation::before {
  width: 0.11rem;
  margin: 0 0.2rem 0 0;
  background-image: url("../imgs/ico-marker_w.svg");
}

body.search .main .btPrefecture {
  padding: 0 0 0 0.2rem;
}

body.search .main .btPrefecture::before {
  width: 0.2rem;
  margin: 0 0.16rem 0 0;
  background-image: url("../imgs/ico-map.svg");
}

body.search .main .mainHeader .headline {
  background-image: url("../imgs/mv-search@2x.jpg");
}

@media screen and (max-width: 750px) {
  body.search .main .mainHeader .headline {
    background-image: url("../imgs/mv-search_sp@2x.jpg");
  }
}

body.search .main .inner {
  min-height: 5.74rem;
  position: relative;
}

@media screen and (max-width: 750px) {
  body.search .main .inner {
    height: auto;
  }
}

body.search .main .inner section.keywords {
  box-sizing: border-box;
  width: 4.76rem;
  padding: 0.5rem 0.48rem;
  background: #F4F3F7;
}

@media screen and (max-width: 750px) {
  body.search .main .inner section.keywords {
    width: 100vw;
    margin: 0 -.18rem;
    padding: 0.24rem 0.16rem;
  }
}

body.search .main .inner section.keywords .title {
  color: #3D62AD;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

@media screen and (max-width: 750px) {
  body.search .main .inner section.keywords .title {
    display: none;
  }
}

body.search .main .inner section.keywords form.keywords {
  margin: 0.18rem 0 0;
}

@media screen and (max-width: 750px) {
  body.search .main .inner section.keywords form.keywords {
    margin: 0;
  }
}

body.search .main .inner section.keywords .btLocation {
  margin: 0.16rem 0 0;
}

@media screen and (max-width: 750px) {
  body.search .main .inner section.keywords .btLocation {
    margin: 0.1rem 0 0;
  }
}

@media screen and (max-width: 750px) {
  body.search .main .inner .prefecture {
    padding: 0.4rem 0 0;
  }
}

body.search .main .inner .prefecture .title01 {
  width: 2.09rem;
  position: absolute;
  top: 0;
  left: 5.91rem;
}

@media screen and (max-width: 750px) {
  body.search .main .inner .prefecture .title01 {
    margin: 0 auto;
    position: static;
    text-align: center;
  }
}

@media screen and (max-width: 750px) {
  body.search .main .inner .prefecture form.sp {
    display: block;
    margin: 0.32rem 0 0;
    position: relative;
  }

  body.search .main .inner .prefecture form.sp::after {
    content: '';
    display: block;
    width: 0.48rem;
    height: 0.48rem;
    position: absolute;
    top: 0;
    right: 0;
    background: #3D62AD url("../imgs/ico-down.svg") 0 0/contain no-repeat;
    pointer-events: none;
  }

  body.search .main .inner .prefecture form.sp select {
    display: block;
    width: 100%;
    height: 0.48rem;
    border: none;
    padding: 0 0.64rem 0 0.16rem;
    background: #E4E9F2;
    border-radius: 0;
    font-size: 16px;
  }

  body.search .main .inner .prefecture form.sp select .placeholder {
    display: none;
  }
}

body.search .main .inner .prefecture .list a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.56rem;
  height: 0.48rem;
  position: absolute;
  background: #F4F3F7;
  border-radius: 0.06rem;
  color: #3D62AD;
  font-size: 0.16rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: 0.3s;
  transition-property: background-color, color;
}

html:not(.mobile) body.search .main .inner .prefecture .list a:hover {
  background-color: #C3CFEA;
  color: #fff;
}

body.search .main .inner .prefecture .list .hokkaido {
  width: 1.84rem;
  height: 1.1rem;
  top: 0;
  left: 8.56rem;
}

body.search .main .inner .prefecture .list .aomori {
  width: 1.84rem;
  top: 1.34rem;
  left: 8.56rem;
}

body.search .main .inner .prefecture .list .iwate {
  width: 0.88rem;
  top: 1.9rem;
  left: 9.52rem;
}

body.search .main .inner .prefecture .list .miyagi {
  width: 0.88rem;
  top: 2.46rem;
  left: 9.52rem;
}

body.search .main .inner .prefecture .list .akita {
  width: 0.88rem;
  top: 1.9rem;
  left: 8.56rem;
}

body.search .main .inner .prefecture .list .yamagata {
  width: 0.88rem;
  top: 2.46rem;
  left: 8.56rem;
}

body.search .main .inner .prefecture .list .fukushima {
  width: 1.84rem;
  top: 3.02rem;
  left: 8.56rem;
}

body.search .main .inner .prefecture .list .ibaraki {
  height: 0.79rem;
  top: 3.58rem;
  left: 9.84rem;
}

body.search .main .inner .prefecture .list .tochigi {
  top: 3.58rem;
  left: 9.2rem;
}

body.search .main .inner .prefecture .list .gunma {
  top: 3.58rem;
  left: 8.56rem;
}

body.search .main .inner .prefecture .list .saitama {
  width: 1.2rem;
  top: 4.14rem;
  left: 8.56rem;
}

body.search .main .inner .prefecture .list .chiba {
  height: 1.29rem;
  top: 4.45rem;
  left: 9.84rem;
}

body.search .main .inner .prefecture .list .tokyo {
  width: 1.2rem;
  top: 4.7rem;
  left: 8.56rem;
}

body.search .main .inner .prefecture .list .kanagawa {
  width: 1.2rem;
  top: 5.26rem;
  left: 8.56rem;
}

body.search .main .inner .prefecture .list .nigata {
  top: 3.02rem;
  left: 7.92rem;
}

body.search .main .inner .prefecture .list .toyama {
  top: 3.02rem;
  left: 7.28rem;
}

body.search .main .inner .prefecture .list .ishikawa {
  width: 1.22rem;
  top: 2.46rem;
  left: 5.98rem;
}

body.search .main .inner .prefecture .list .fukui {
  width: 1.22rem;
  top: 3.02rem;
  left: 5.98rem;
}

body.search .main .inner .prefecture .list .yamanashi {
  top: 4.7rem;
  left: 7.92rem;
}

body.search .main .inner .prefecture .list .nagano {
  height: 1.04rem;
  top: 3.58rem;
  left: 7.92rem;
}

body.search .main .inner .prefecture .list .gifu {
  height: 1.6rem;
  top: 3.58rem;
  left: 7.28rem;
}

body.search .main .inner .prefecture .list .shizuoka {
  top: 5.26rem;
  left: 7.92rem;
}

body.search .main .inner .prefecture .list .aichi {
  top: 5.26rem;
  left: 7.28rem;
}

body.search .main .inner .prefecture .list .mie {
  height: 1.58rem;
  top: 4.14rem;
  left: 6.64rem;
}

body.search .main .inner .prefecture .list .shiga {
  top: 3.58rem;
  left: 6.64rem;
}

body.search .main .inner .prefecture .list .kyoto {
  width: 1.2rem;
  top: 3.58rem;
  left: 5.36rem;
}

body.search .main .inner .prefecture .list .osaka {
  height: 1.04rem;
  top: 4.14rem;
  left: 5.36rem;
}

body.search .main .inner .prefecture .list .hyogo {
  height: 1.04rem;
  top: 3.58rem;
  left: 4.72rem;
}

body.search .main .inner .prefecture .list .nara {
  height: 1.04rem;
  top: 4.14rem;
  left: 6rem;
}

body.search .main .inner .prefecture .list .wakayama {
  width: 1.2rem;
  top: 5.26rem;
  left: 5.36rem;
}

body.search .main .inner .prefecture .list .tottori {
  top: 3.58rem;
  left: 4.08rem;
}

body.search .main .inner .prefecture .list .shimane {
  top: 3.58rem;
  left: 3.44rem;
}

body.search .main .inner .prefecture .list .okayama {
  top: 4.14rem;
  left: 4.08rem;
}

body.search .main .inner .prefecture .list .hiroshima {
  top: 4.14rem;
  left: 3.44rem;
}

body.search .main .inner .prefecture .list .yamaguchi {
  height: 1.04rem;
  top: 3.58rem;
  left: 2.8rem;
}

body.search .main .inner .prefecture .list .tokushima {
  width: 0.88rem;
  top: 5.26rem;
  left: 3.76rem;
}

body.search .main .inner .prefecture .list .kagawa {
  width: 0.88rem;
  top: 4.7rem;
  left: 3.76rem;
}

body.search .main .inner .prefecture .list .ehime {
  width: 0.88rem;
  top: 4.7rem;
  left: 2.8rem;
}

body.search .main .inner .prefecture .list .kochi {
  width: 0.88rem;
  top: 5.26rem;
  left: 2.8rem;
}

body.search .main .inner .prefecture .list .fukuoka {
  width: 1.2rem;
  top: 3.58rem;
  left: 1.28rem;
}

body.search .main .inner .prefecture .list .saga {
  top: 3.58rem;
  left: 0.64rem;
}

body.search .main .inner .prefecture .list .nagasaki {
  top: 3.58rem;
  left: 0;
}

body.search .main .inner .prefecture .list .kumamoto {
  height: 1.04rem;
  top: 4.14rem;
  left: 1.28rem;
}

body.search .main .inner .prefecture .list .oita {
  top: 4.14rem;
  left: 1.92rem;
}

body.search .main .inner .prefecture .list .miyazaki {
  top: 4.7rem;
  left: 1.92rem;
}

body.search .main .inner .prefecture .list .kagoshima {
  width: 1.2rem;
  top: 5.26rem;
  left: 1.28rem;
}

body.search .main .inner .prefecture .list .okinawa {
  top: 5.26rem;
  left: 0;
}

body.search.area .main .mainHeader .headline {
  background-image: url("../imgs/mv-search_2nd@2x.jpg");
}

@media screen and (max-width: 750px) {
  body.search.area .main .mainHeader .headline {
    background-image: url("../imgs/mv-search_sp@2x.jpg");
  }
}

body.search.area .main .footer .shortcut,
body.search.area .main .header .shortcut {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 750px) {

  body.search.area .main .footer .shortcut,
  body.search.area .main .header .shortcut {
    display: none;
  }
}

body.search.area .main .footer .shortcut li,
body.search.area .main .header .shortcut li {
  margin: 0 0.08rem;
}

body.search.area .main .footer .shortcut li a,
body.search.area .main .header .shortcut li a {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: 0.01rem solid #E4E9F2;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  color: #3D62AD;
  font-weight: 700;
  transition: 0.3s ease-out;
  transition-property: border-color, background-color, color;
}

html:not(.mobile) body.search.area .main .footer .shortcut li a:hover,
html:not(.mobile) body.search.area .main .header .shortcut li a:hover {
  border-color: #C3CFEA;
  background-color: #C3CFEA;
  color: #fff;
}

body.search.area .main .header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 0.8rem;
  position: relative;
}

@media screen and (max-width: 750px) {
  body.search.area .main .header {
    margin: 0.4rem 0 0;
    height: auto;
  }
}

body.search.area .main .header .title01 {
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 750px) {
  body.search.area .main .header .title01 {
    margin: 0 auto;
    position: static;
    text-align: center;
  }
}

body.search.area .main .list {
  margin: 0.6rem 0 0;
  color: #3D62AD;
}

@media screen and (max-width: 750px) {
  body.search.area .main .list {
    margin: 0.3rem 0 0;
  }
}

body.search.area .main .list dt {
  box-sizing: border-box;
  padding: 0.06rem 0.34rem;
  position: relative;
  background: #F4F3F7;
  border-radius: 0.06rem;
  font-size: 0.18rem;
  font-weight: 700;
}

@media screen and (max-width: 750px) {
  body.search.area .main .list dt {
    padding: 0.06rem 0.16rem;
  }

  body.search.area .main .list dt::after {
    content: '';
    display: block;
    width: 0.1rem;
    height: 0.05rem;
    position: absolute;
    top: calc(50% - .025rem);
    right: 0.24rem;
    background: url("../imgs/arrow02.svg") 50% 50%/contain no-repeat;
    transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
  }

  body.search.area .main .list dt.active::after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}

body.search.area .main .list dt:nth-of-type(n+2) {
  margin: 0.66rem 0 0;
}

@media screen and (max-width: 750px) {
  body.search.area .main .list dt:nth-of-type(n+2) {
    margin: 0.08rem 0 0;
  }
}

body.search.area .main .list dd {
  margin: 0.18rem 0 0;
}

@media screen and (min-width: 751px) {
  body.search.area .main .list dd {
    display: block !important;
  }
}

@media screen and (max-width: 750px) {
  body.search.area .main .list dd {
    display: none;
    margin: 0.12rem 0;
  }
}

body.search.area .main .list dd ul {
  display: flex;
  flex-wrap: wrap;
}

body.search.area .main .list dd ul li {
  width: 16.66667%;
  margin: 0.1rem 0 0;
}

@media screen and (max-width: 750px) {
  body.search.area .main .list dd ul li {
    width: 50%;
    margin: 0.06rem 0 0;
  }
}

html:not(.mobile) body.search.area .main .list a:hover {
  text-decoration: underline;
}

body.search.area .main .footer {
  margin: 0.72rem 0 0;
}

@media screen and (max-width: 750px) {
  body.search.area .main .footer {
    display: none;
  }
}

body.search.results .main .mainHeader .headline,
body.search.results_map .main .mainHeader .headline {
  background-image: url("../imgs/mv-search_2nd@2x.jpg");
}

@media screen and (max-width: 750px) {

  body.search.results .main .mainHeader .headline,
  body.search.results_map .main .mainHeader .headline {
    background-image: url("../imgs/mv-search_sp@2x.jpg");
  }
}

body.search.results .main .header .result,
body.search.results_map .main .header .result {
  display: flex;
  align-items: flex-end;
  padding: 0 0 0.32rem;
  line-height: 1;
}

@media screen and (max-width: 750px) {

  body.search.results .main .header .result,
  body.search.results_map .main .header .result {
    display: block;
    padding: 0.4rem 0;
    text-align: center;
  }
}

body.search.results .main .header .result .label,
body.search.results_map .main .header .result .label {
  line-height: 1.8;
  max-width: 6rem;
  margin: 0 1em 0 0;
  font-size: 0.22rem;
  font-weight: 700;
}

body.search.results .main .header .result .label::before,
body.search.results .main .header .result .label::after,
body.search.results_map .main .header .result .label::before,
body.search.results_map .main .header .result .label::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.search.results .main .header .result .label::before,
body.search.results_map .main .header .result .label::before {
  margin-bottom: -0.4em;
}

body.search.results .main .header .result .label::after,
body.search.results_map .main .header .result .label::after {
  margin-top: -0.4em;
}

@media screen and (max-width: 750px) {

  body.search.results .main .header .result .label,
  body.search.results_map .main .header .result .label {
    max-width: none;
    margin: 0 0 0.16rem;
    font-size: 0.2rem;
  }
}

body.search.results .main .header .result .number,
body.search.results_map .main .header .result .number {
  line-height: 1.8;
  white-space: nowrap;
}

body.search.results .main .header .result .number::before,
body.search.results .main .header .result .number::after,
body.search.results_map .main .header .result .number::before,
body.search.results_map .main .header .result .number::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.search.results .main .header .result .number::before,
body.search.results_map .main .header .result .number::before {
  margin-bottom: -0.4em;
}

body.search.results .main .header .result .number::after,
body.search.results_map .main .header .result .number::after {
  margin-top: -0.4em;
}

body.search.results .main .header .result .hanatown,
body.search.results_map .main .header .result .hanatown {
  margin: 0 0 0 auto;
  color: #469141;
  font-weight: 700;
  white-space: nowrap;
}

@media screen and (max-width: 750px) {

  body.search.results .main .header .result .hanatown,
  body.search.results_map .main .header .result .hanatown {
    margin: 0.2rem 0 0;
  }
}

body.search.results .main .header .result .hanatown img,
body.search.results_map .main .header .result .hanatown img {
  width: 0.88rem;
  margin: 0 0.06rem 0 0;
  vertical-align: bottom;
}

@media screen and (max-width: 750px) {

  body.search.results .main .header .result .hanatown img,
  body.search.results_map .main .header .result .hanatown img {
    width: 0.77rem;
  }
}

body.search.results .main .header .form,
body.search.results_map .main .header .form {
  display: flex;
  padding: 0.32rem;
  background: #F4F3F7;
}

@media screen and (max-width: 750px) {

  body.search.results .main .header .form,
  body.search.results_map .main .header .form {
    flex-wrap: wrap;
    box-sizing: border-box;
    width: 100vw;
    margin: 0 -.18rem;
    padding: 0.24rem 0.18rem;
  }
}

body.search.results .main .header .form .keywords,
body.search.results_map .main .header .form .keywords {
  width: 4.44rem;
  margin: 0 0.24rem 0 0;
}

@media screen and (max-width: 750px) {

  body.search.results .main .header .form .keywords,
  body.search.results_map .main .header .form .keywords {
    width: 100%;
    margin: 0 0 0.1rem;
  }
}

body.search.results .main .header .form .btLocation,
body.search.results_map .main .header .form .btLocation {
  width: 2.9rem;
}

@media screen and (max-width: 750px) {

  body.search.results .main .header .form .btLocation,
  body.search.results_map .main .header .form .btLocation {
    padding: 0 0.03rem 0 0;
  }

  body.search.results .main .header .form .btLocation::before,
  body.search.results_map .main .header .form .btLocation::before {
    width: 0.12rem;
    margin: 0 0.1rem 0 0;
  }
}

body.search.results .main .header .form .btPrefecture,
body.search.results_map .main .header .form .btPrefecture {
  width: 2.1rem;
  margin: 0 0 0 auto;
}

@media screen and (max-width: 750px) {

  body.search.results .main .header .form .btPrefecture,
  body.search.results_map .main .header .form .btPrefecture {
    padding: 0 0.1rem 0 0;
  }

  body.search.results .main .header .form .btPrefecture::before,
  body.search.results_map .main .header .form .btPrefecture::before {
    margin: 0 0.06rem 0 0;
  }
}

@media screen and (max-width: 750px) {

  body.search.results .main .header .form .btLocation,
  body.search.results .main .header .form .btPrefecture,
  body.search.results_map .main .header .form .btLocation,
  body.search.results_map .main .header .form .btPrefecture {
    width: 1.67rem;
    line-height: 0.48rem;
    border-radius: 0.24rem;
  }

  body.search.results .main .header .form .btLocation::before,
  body.search.results .main .header .form .btPrefecture::before,
  body.search.results_map .main .header .form .btLocation::before,
  body.search.results_map .main .header .form .btPrefecture::before {
    height: 0.48rem;
  }
}

body.search.results .main .nostore,
body.search.results_map .main .nostore {
  font-size: 0.16rem;
  margin: 0.32rem 0 0;
  line-height: 2;
}

body.search.results .main .nostore::before,
body.search.results .main .nostore::after,
body.search.results_map .main .nostore::before,
body.search.results_map .main .nostore::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.search.results .main .nostore::before,
body.search.results_map .main .nostore::before {
  margin-bottom: -0.5em;
}

body.search.results .main .nostore::after,
body.search.results_map .main .nostore::after {
  margin-top: -0.5em;
}

body.search.results .main .list,
body.search.results_map .main .list {
  margin: 0.16rem 0 0;
}

@media screen and (max-width: 750px) {

  body.search.results .main .list,
  body.search.results_map .main .list {
    width: 100vw;
    margin: 0.08rem -.18rem 0;
  }
}

body.search.results .main .list .item,
body.search.results_map .main .list .item {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 0.01rem solid #E4E9F2;
  padding: 0.32rem 0.24rem 0.32rem 0.4rem;
  line-height: 0.34rem;
}

@media screen and (max-width: 750px) {

  body.search.results .main .list .item,
  body.search.results_map .main .list .item {
    display: block;
    padding: 0.33rem 0.18rem 0.23rem;
  }
}

body.search.results .main .list .item .col01,
body.search.results_map .main .list .item .col01 {
  max-width: calc(100% - 3rem);
}

@media screen and (max-width: 750px) {

  body.search.results .main .list .item .col01,
  body.search.results_map .main .list .item .col01 {
    width: 100%;
    max-width: none;
    line-height: 0.28rem;
  }
}

body.search.results .main .list .item .col01 .name,
body.search.results_map .main .list .item .col01 .name {
  font-size: 0.18rem;
  font-weight: 700;
}

@media screen and (max-width: 750px) {

  body.search.results .main .list .item .col01 .name,
  body.search.results_map .main .list .item .col01 .name {
    font-size: 0.16rem;
  }
}

body.search.results .main .list .item .col01 .name a,
body.search.results_map .main .list .item .col01 .name a {
  color: #3D62AD;
  transition: color 0.3s;
}

html:not(.mobile) body.search.results .main .list .item .col01 .name a:hover,
html:not(.mobile) body.search.results_map .main .list .item .col01 .name a:hover {
  color: #9AA8D8;
  text-decoration: underline;
}

body.search.results .main .list .item .col01 .name .closed,
body.search.results .main .list .item .col01 .name .takeorder,
body.search.results_map .main .list .item .col01 .name .closed,
body.search.results_map .main .list .item .col01 .name .takeorder {
  display: inline-block;
  margin: 0 0 0 0.1rem;
  padding: 0 0.1rem;
  background: #F4F3F7;
  font-size: 0.14rem;
  font-weight: 700;
  line-height: 0.34rem;
  vertical-align: top;
}

@media screen and (max-width: 750px) {

  body.search.results .main .list .item .col01 .name .closed,
  body.search.results .main .list .item .col01 .name .takeorder,
  body.search.results_map .main .list .item .col01 .name .closed,
  body.search.results_map .main .list .item .col01 .name .takeorder {
    margin: 0.2rem 0;
  }
}

body.search.results .main .list .item .col01 .name .takeorder,
body.search.results_map .main .list .item .col01 .name .takeorder {
  color: #C7527B;
}

body.search.results .main .list .item .col01 .address,
body.search.results_map .main .list .item .col01 .address {
  font-size: 0.16rem;
  font-weight: 500;
}

@media screen and (max-width: 750px) {

  body.search.results .main .list .item .col01 .address,
  body.search.results_map .main .list .item .col01 .address {
    font-size: 0.14rem;
  }
}

body.search.results .main .list .item .col02,
body.search.results_map .main .list .item .col02 {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

body.search.results .main .list .item .col02 .hanatown,
body.search.results_map .main .list .item .col02 .hanatown {
  width: 1.16rem;
  margin: 0 0 0 auto;
  padding: 0 0 0.09rem;
}

@media screen and (max-width: 750px) {

  body.search.results .main .list .item .col02 .hanatown,
  body.search.results_map .main .list .item .col02 .hanatown {
    width: 0.8rem;
    padding: 0 0 0.09rem;
    line-height: 0.21rem;
  }
}

body.search.results .main .list .item .col02 .hanatown img,
body.search.results_map .main .list .item .col02 .hanatown img {
  vertical-align: bottom;
}

body.search.results .main .list .item .col02 .tel,
body.search.results_map .main .list .item .col02 .tel {
  margin: 0 0 0 0.24rem;
  font-family: "Roboto", sans-serif;
  font-size: 0.16rem;
  font-weight: 400;
}

@media screen and (max-width: 750px) {

  body.search.results .main .list .item .col02 .tel,
  body.search.results_map .main .list .item .col02 .tel {
    margin: 0 0 0 0.14rem;
  }
}

body.search.results .main .list .item .col02 .tel a,
body.search.results_map .main .list .item .col02 .tel a {
  padding: 0 0 0 0.17rem;
  background: url("../imgs/ico-tel02.svg") 0 50%/0.12rem auto no-repeat;
}

body.search.results .main .footer,
body.search.results_map .main .footer {
  margin: 0.8rem 0 0;
}

@media screen and (max-width: 750px) {

  body.search.results .main .footer,
  body.search.results_map .main .footer {
    margin: 0.4rem 0 0;
  }
}

body.search.results_map .main .inner {
  height: auto;
}

body.search.results_map .main .inner .map {
  width: 4rem;
  padding: 0.56rem 0 0;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 750px) {
  body.search.results_map .main .inner .map {
    width: auto;
    padding: 0.4rem 0 0;
    position: static;
  }
}

body.search.results_map .main .inner .map img {
  width: 100%;
}

body.search.results_map .main .inner .map.fix {
  position: fixed;
  top: 0.72rem;
  right: calc(50% + 1.2rem);
  left: auto;
}

@media screen and (max-width: 750px) {
  body.search.results_map .main .inner .map.fix {
    position: static;
  }
}

body.search.results_map .main .inner .map.fix.abBtm {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 0;
  left: 0;
}

@media screen and (max-width: 750px) {
  body.search.results_map .main .inner .map.fix.abBtm {
    position: static;
  }
}

body.search.results_map .main .inner .map .gm-style-iw-d .name a {
  color: #3D62AD;
  font-weight: 700;
  transition: color 0.3s;
}

body.search.results_map .main .inner .map .gm-style-iw-d .name a:hover {
  color: #9AA8D8;
  text-decoration: underline;
}

html.mobile body.search.results_map .main .inner .map .gm-style-iw-d .tel a {
  color: #3D62AD;
  transition: color 0.3s;
}

html.mobile body.search.results_map .main .inner .map .gm-style-iw-d .tel a:hover {
  color: #9AA8D8;
  text-decoration: underline;
}

body.search.results_map .main .inner .list {
  width: 5.92rem;
  margin: 0 0 0 calc(100% - 5.92rem);
  padding: 0.16rem 0 0;
}

@media screen and (max-width: 750px) {
  body.search.results_map .main .inner .list {
    width: auto;
    margin: 0;
    padding: 0;
  }
}

body.search.results_map .main .inner .list .item {
  padding-right: 0;
  padding-left: 0;
}

@media screen and (max-width: 750px) {
  body.search.results_map .main .inner .list .item {
    padding-right: 0.18rem;
    padding-left: 0.18rem;
  }
}

body.search.results_map .main .inner .list .item .col02 {
  flex-wrap: wrap;
}

body.search.results_map .main .inner .list .item .col02 .hanatown {
  width: 0.9rem;
  margin: 0 0 0 calc(100% - .9rem);
}

@media screen and (max-width: 750px) {
  body.search.results_map .main .inner .list .item .col02 .hanatown {
    width: 0.77rem;
    margin: 0 0 0 calc(100% - .77rem);
  }
}

body.search.results_map .main .inner .list .item .col02 .distance {
  padding: 0 0 0 0.18rem;
  background: url("../imgs/ico-marker.svg") 0 50%/0.1rem auto no-repeat;
  font-family: "Roboto", sans-serif;
  font-size: 0.16rem;
  font-weight: 500;
}

body.search.results_map .main .inner .list .item .col02 .tel {
  margin: 0 0 0 0.16rem;
}

body.search.store .main .mainHeader .headline {
  background-image: url("../imgs/mv-search_2nd@2x.jpg");
}

@media screen and (max-width: 750px) {
  body.search.store .main .mainHeader .headline {
    background-image: url("../imgs/mv-search_sp@2x.jpg");
  }
}

body.search.store .main .storeName {
  padding: 0.08rem 0 0.42rem;
  font-size: 0.22rem;
  font-weight: 700;
}

@media screen and (max-width: 750px) {
  body.search.store .main .storeName {
    padding: 0.4rem 0;
  }
}

body.search.store .main .storeName span {
  line-height: 1.8;
  display: block;
}

body.search.store .main .storeName span::before,
body.search.store .main .storeName span::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.search.store .main .storeName span::before {
  margin-bottom: -0.4em;
}

body.search.store .main .storeName span::after {
  margin-top: -0.4em;
}

body.search.store .main .storeName .yomi {
  padding: 0 0 1em;
  font-size: 0.12rem;
  font-weight: 400;
}

body.search.store .main .storeName .closed {
  display: inline-block;
  margin: 0.2rem 0 0;
  padding: 0.1rem;
  background: #F4F3F7;
  font-size: 0.14rem;
  font-weight: 700;
  line-height: 1;
  vertical-align: top;
}

body.search.store .main .storeName .closed::after,
body.search.store .main .storeName .closed::before {
  content: none;
}

@media screen and (max-width: 750px) {
  body.search.store .main .storeName .closed {
    margin: 0.2rem 0;
  }
}

body.search.store .main .inner {
  display: flex;
  align-items: flex-start;
  flex-direction: row-reverse;
  justify-content: space-between;
}

@media screen and (max-width: 750px) {
  body.search.store .main .inner {
    display: block;
  }
}

body.search.store .main .inner .data {
  width: 4.9rem;
}

@media screen and (max-width: 750px) {
  body.search.store .main .inner .data {
    width: auto;
  }
}

body.search.store .main .inner .data dl {
  line-height: 2;
  font-size: 0.16rem;
}

body.search.store .main .inner .data dl::before,
body.search.store .main .inner .data dl::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.search.store .main .inner .data dl::before {
  margin-bottom: -0.5em;
}

body.search.store .main .inner .data dl::after {
  margin-top: -0.5em;
}

body.search.store .main .inner .data dl dt {
  font-weight: 700;
}

body.search.store .main .inner .data dl dd+dt {
  margin: 2em 0 0;
}

@media screen and (max-width: 750px) {
  body.search.store .main .inner .data dl dd+dt {
    margin: 1em 0 0;
  }
}

body.search.store .main .inner .data .takeorder {
  box-sizing: border-box;
  width: 1.8rem;
  margin: 0.4rem 0 0;
  padding: 0 0 0 0.6rem;
  background: #F4F3F7 url("../imgs/ico-takeorder.svg") 0.24rem 50%/0.24rem auto no-repeat;
  color: #C7527B;
  font-weight: 700;
  line-height: 0.4rem;
}

body.search.store .main .inner .data .hanatown {
  margin: 0.4rem 0 0;
  color: #469141;
  font-weight: bold;
  line-height: 1;
}

body.search.store .main .inner .data .hanatown img {
  width: 0.88rem;
  margin: 0 0.06rem 0 0;
  vertical-align: bottom;
}

body.search.store .main .inner .map {
  width: 4.8rem;
  height: 4.8rem;
}

@media screen and (max-width: 750px) {
  body.search.store .main .inner .map {
    width: auto;
    height: calc(100vw - .36rem);
    margin: 0.4rem 0 0;
  }
}

body.search.store .main .footer {
  display: flex;
  justify-content: flex-end;
  margin: 0.4rem 0 0;
}

@media screen and (max-width: 750px) {
  body.search.store .main .footer {
    justify-content: center;
  }
}

body.search.store .main .footer .btBack {
  display: block;
  width: 2.4rem;
  color: #3D62AD;
  position: relative;
  font-weight: 700;
  line-height: 0.56rem;
  text-align: center;
  box-shadow: inset 0 0 0 0.01rem #C3CEE6;
  transition: 0.3s;
  transition-property: background-color, box-shadow;
}

body.search.store .main .footer .btBack::before {
  content: '';
  display: block;
  width: 0.16rem;
  height: 0.01rem;
  position: absolute;
  top: 50%;
  right: 0;
  background: #C3CEE6;
  -webkit-transform-origin: right;
  transform-origin: right;
  transition: 0.3s;
  transition-property: background-color, -webkit-transform;
  transition-property: background-color, transform;
  transition-property: background-color, transform, -webkit-transform;
}

body.search.store .main .footer .btBack span {
  display: inline-block;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

html:not(.mobile) body.search.store .main .footer .btBack:hover {
  background: #F4F3F7;
  box-shadow: inset 0 0 0 0.01rem #F4F3F7;
}

html:not(.mobile) body.search.store .main .footer .btBack:hover::before {
  background: #ABB9DA;
  -webkit-transform: scale(1.875, 1);
  transform: scale(1.875, 1);
}

html:not(.mobile) body.search.store .main .footer .btBack:hover span {
  -webkit-transform: translate3d(-0.04rem, 0, 0);
  transform: translate3d(-0.04rem, 0, 0);
}

body.contact .main .mainHeader .headline {
  background-image: url("../imgs/contact/mv-back@2x.jpg");
}

body.contact .main .mw_wp_form_input .confirm {
  display: none;
}

body.contact .main .mw_wp_form_confirm .contact-form {
  padding: .75rem 1.45rem 1rem;
}

@media screen and (max-width: 750px) {
  body.contact .main .mw_wp_form_confirm .contact-form {
    padding: 0.25rem;
  }
}

body.contact .main .mw_wp_form_confirm .contact-form .container {
  display: block;
}

body.contact .main .mw_wp_form_confirm .contact-form .container .text-area,
body.contact .main .mw_wp_form_confirm .contact-form .container .require {
  display: none;
}

body.contact .main .mw_wp_form_confirm .contact-form .container .confirm {
  margin-bottom: 0.6rem;
  text-align: center;
  line-height: 2;
}

body.contact .main .mw_wp_form_confirm .contact-form .container .confirm::before,
body.contact .main .mw_wp_form_confirm .contact-form .container .confirm::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.contact .main .mw_wp_form_confirm .contact-form .container .confirm::before {
  margin-bottom: -0.5em;
}

body.contact .main .mw_wp_form_confirm .contact-form .container .confirm::after {
  margin-top: -0.5em;
}

@media screen and (max-width: 750px) {
  body.contact .main .mw_wp_form_confirm .contact-form .container .confirm {
    margin-bottom: 0.125rem;
  }
}

body.contact .main .mw_wp_form_confirm .contact-form .container .form .field {
  display: flex;
  padding: .175rem 0;
}

@media screen and (max-width: 750px) {
  body.contact .main .mw_wp_form_confirm .contact-form .container .form .field {
    display: block;
  }
}

body.contact .main .mw_wp_form_confirm .contact-form .container .form .field+.field {
  border-top: 1px solid #C3CFEA;
  margin-top: 0;
}

body.contact .main .mw_wp_form_confirm .contact-form .container .form .field .label {
  flex-shrink: 0;
  line-height: 2;
  margin-bottom: 0;
  width: 1.9rem;
}

body.contact .main .mw_wp_form_confirm .contact-form .container .form .field .item {
  color: #3D62AD;
}

@media screen and (max-width: 750px) {
  body.contact .main .mw_wp_form_confirm .contact-form .container .form .f-name>.flex {
    display: flex;
  }
}

body.contact .main .mw_wp_form_confirm .contact-form .container .form .f-name>.flex .flex+.flex {
  margin-left: 0.5em;
}

@media screen and (max-width: 750px) {
  body.contact .main .mw_wp_form_confirm .contact-form .container .form .f-name>.flex .flex+.flex {
    margin-top: 0;
  }
}

body.contact .main .mw_wp_form_confirm .contact-form .container .form .f-name .name {
  display: none;
}

body.contact .main .mw_wp_form_confirm .contact-form .container .form .f-address .zip {
  margin-right: 1em;
  margin-bottom: 0;
  width: auto;
}

body.contact .main .mw_wp_form_confirm .contact-form .container .form .f-address .name {
  margin-right: 0;
}

body.contact .main .mw_wp_form_confirm .contact-form .container .form .f-address .f-sup {
  display: none;
}

body.contact .main .mw_wp_form_confirm .contact-form .f-privacy,
body.contact .main .mw_wp_form_confirm .contact-form .f-agree {
  display: none;
}

body.contact .main .mw_wp_form_confirm .contact-form .btn-area {
  margin-top: 0.8rem;
}

@media screen and (max-width: 750px) {
  body.contact .main .mw_wp_form_confirm .contact-form .btn-area {
    margin-top: 0.125rem;
    margin-bottom: 0.05rem;
  }
}

body.contact .main .mw_wp_form_complete {
  align-items: center;
  display: flex;
  flex-direction: column;
}

body.contact .main .mw_wp_form_complete .logo {
  margin-bottom: .63rem;
  width: 1.27rem;
}

@media screen and (max-width: 750px) {
  body.contact .main .mw_wp_form_complete .logo {
    margin-bottom: 0.4rem;
  }
}

body.contact .main .mw_wp_form_complete .text {
  font-family: "Noto Serif JP", serif;
  font-size: 0.26rem;
  font-weight: 600;
  margin-bottom: .7rem;
  text-align: center;
  line-height: 1.84615;
}

body.contact .main .mw_wp_form_complete .text::before,
body.contact .main .mw_wp_form_complete .text::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.contact .main .mw_wp_form_complete .text::before {
  margin-bottom: -0.42308em;
}

body.contact .main .mw_wp_form_complete .text::after {
  margin-top: -0.42308em;
}

@media screen and (max-width: 750px) {
  body.contact .main .mw_wp_form_complete .text {
    font-size: 0.16rem;
    margin-bottom: 0.4rem;
  }
}

@media screen and (max-width: 750px) {
  body.contact .main .mw_wp_form_input .contact-form {
    margin-bottom: 0.5rem;
    padding: 0.25rem .25rem 3rem;
    position: relative;
  }

  body.contact .main .mw_wp_form_input .contact-form .container .text-area .tel {
    position: absolute;
    bottom: 0.3rem;
    width: 2.89rem;
  }
}

body.contact .main .contact-form {
  background-color: #F4F3F7;
  padding: 0.7rem;
}

@media screen and (max-width: 750px) {
  body.contact .main .contact-form {
    padding: 0.25rem;
  }
}

body.contact .main .contact-form .container {
  display: flex;
}

@media screen and (max-width: 750px) {
  body.contact .main .contact-form .container {
    display: block;
  }
}

body.contact .main .contact-form .container .text-area {
  flex-shrink: 0;
  padding-right: 0.6rem;
  width: 2.9rem;
}

@media screen and (max-width: 750px) {
  body.contact .main .contact-form .container .text-area {
    margin-bottom: .25rem;
    padding-right: 0;
    width: auto;
  }
}

body.contact .main .contact-form .container .text-area .tel {
  background-color: #3D62AD;
  color: #fff;
  margin-top: 0.42rem;
  padding: .28rem 0 .37rem;
  text-align: center;
  position: relative;
}

body.contact .main .contact-form .container .text-area .tel::after {
  background: url("/wp-content/themes/hanacupid/assets/imgs/contact/form-img@2x.png") 0 0/contain no-repeat;
  content: '';
  height: 2.19rem;
  position: absolute;
  left: -0.81rem;
  bottom: -0.94rem;
  width: 1.89rem;
}

body.contact .main .contact-form .container .text-area .tel dt {
  font-size: 0.18rem;
  margin-bottom: 0.25rem;
  line-height: 1.55556;
}

body.contact .main .contact-form .container .text-area .tel dt::before,
body.contact .main .contact-form .container .text-area .tel dt::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.contact .main .contact-form .container .text-area .tel dt::before {
  margin-bottom: -0.27778em;
}

body.contact .main .contact-form .container .text-area .tel dt::after {
  margin-top: -0.27778em;
}

body.contact .main .contact-form .container .text-area .tel dd {
  align-items: center;
  display: flex;
  flex-direction: column;
  font-size: 0.16rem;
  line-height: 2;
  margin-bottom: -0.5em;
}

body.contact .main .contact-form .container .text-area .tel .number {
  font-size: 0.3rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 0.16rem;
  padding-left: 0.3rem;
  position: relative;
}

body.contact .main .contact-form .container .text-area .tel .number::before {
  content: '';
  display: block;
  width: 0.26rem;
  height: 0.26rem;
  position: absolute;
  top: calc(50% - .1rem);
  left: 0;
  background: url(../imgs/ico-tel01.svg) 0 0/contain no-repeat;
  opacity: 0.5;
}

body.contact .main .contact-form .container .form {
  font-size: 0.16rem;
}

body.contact .main .contact-form .container .form .field+.field {
  margin-top: 0.3rem;
}

body.contact .main .contact-form .container .form .flex {
  display: flex;
}

body.contact .main .contact-form .container .form .label {
  color: #3D62AD;
  display: block;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.15rem;
}

body.contact .main .contact-form .container .form .label .require {
  margin-left: 0.05rem;
}

body.contact .main .contact-form .container .form .name {
  color: #3D62AD;
  font-weight: 700;
  line-height: 1;
  margin-right: 0.11rem;
}

body.contact .main .contact-form .container .form .item {
  display: flex;
  flex-direction: column-reverse;
  position: relative;
}

body.contact .main .contact-form .container .form .item input,
body.contact .main .contact-form .container .form .item select,
body.contact .main .contact-form .container .form .item textarea {
  box-sizing: border-box;
  display: block;
  border: 0;
  padding: .104rem .12rem;
  width: 100%;
}

body.contact .main .contact-form .container .form .item input::-webkit-input-placeholder,
body.contact .main .contact-form .container .form .item textarea::-webkit-input-placeholder {
  color: #9AA8D8;
  opacity: 1;
}

body.contact .main .contact-form .container .form .item input:-ms-input-placeholder,
body.contact .main .contact-form .container .form .item textarea:-ms-input-placeholder {
  color: #9AA8D8;
  opacity: 1;
}

body.contact .main .contact-form .container .form .item input::-ms-input-placeholder,
body.contact .main .contact-form .container .form .item textarea::-ms-input-placeholder {
  color: #9AA8D8;
  opacity: 1;
}

body.contact .main .contact-form .container .form .item input::placeholder,
body.contact .main .contact-form .container .form .item textarea::placeholder {
  color: #9AA8D8;
  opacity: 1;
}

body.contact .main .contact-form .container .form .item select {
  background: #fff url(../imgs/contact/select-arrow.svg) right center/0.4rem auto no-repeat;
  padding-right: .52rem;
}

body.contact .main .contact-form .container .form .item textarea {
  height: 1rem;
}

body.contact .main .contact-form .container .form .item .error+select,
body.contact .main .contact-form .container .form .item .error+input,
body.contact .main .contact-form .container .form .item .error+textarea {
  outline: 1px solid #E272B6;
}

@media screen and (max-width: 750px) {
  body.contact .main .contact-form .container .form .f-name>.flex {
    display: block;
  }
}

body.contact .main .contact-form .container .form .f-name>.flex .flex {
  align-items: center;
}

body.contact .main .contact-form .container .form .f-name>.flex .flex+.flex {
  margin-left: 0.32rem;
}

@media screen and (max-width: 750px) {
  body.contact .main .contact-form .container .form .f-name>.flex .flex+.flex {
    margin-top: 0.15rem;
    margin-left: 0;
  }
}

body.contact .main .contact-form .container .form .f-address .flex {
  align-items: center;
}

body.contact .main .contact-form .container .form .f-address .zip {
  margin-bottom: 0.15rem;
  width: 2.59rem;
}

body.contact .main .contact-form .container .form .f-address .f-sup {
  color: #5E75C3;
  font-size: 0.14rem;
  margin-top: 0.07rem;
  line-height: 2;
}

body.contact .main .contact-form .container .form .f-address .f-sup::before,
body.contact .main .contact-form .container .form .f-address .f-sup::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.contact .main .contact-form .container .form .f-address .f-sup::before {
  margin-bottom: -0.5em;
}

body.contact .main .contact-form .container .form .f-address .f-sup::after {
  margin-top: -0.5em;
}

@media screen and (max-width: 750px) {
  body.contact .main .contact-form .container .form .f-address .f-sup {
    font-size: 0.13rem;
  }
}

body.contact .main .contact-form .f-privacy {
  font-size: 0.16rem;
  margin-top: 0.8rem;
}

@media screen and (max-width: 750px) {
  body.contact .main .contact-form .f-privacy {
    margin-top: 0.3rem;
  }
}

body.contact .main .contact-form .f-privacy .privacy-title {
  color: #3D62AD;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.15rem;
}

body.contact .main .contact-form .f-privacy .contents {
  background-color: #fff;
  color: #3D62AD;
  height: 2.52rem;
  margin-bottom: 0.34rem;
  padding: .3rem .42rem;
  overflow-y: auto;
}

@media screen and (max-width: 750px) {
  body.contact .main .contact-form .f-privacy .contents {
    font-size: 0.13rem;
    padding: .104rem 0.12rem;
  }
}

body.contact .main .contact-form .f-privacy .contents h2,
body.contact .main .contact-form .f-privacy .contents h3 {
  font-size: 0.16rem;
}

body.contact .main .contact-form .f-privacy .text {
  color: #3D62AD;
  margin-bottom: 0.3rem;
  text-align: center;
  line-height: 2;
}

body.contact .main .contact-form .f-privacy .text::before,
body.contact .main .contact-form .f-privacy .text::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.contact .main .contact-form .f-privacy .text::before {
  margin-bottom: -0.5em;
}

body.contact .main .contact-form .f-privacy .text::after {
  margin-top: -0.5em;
}

@media screen and (max-width: 750px) {
  body.contact .main .contact-form .f-privacy .text {
    text-align: left;
  }
}

body.contact .main .contact-form .f-agree {
  color: #3D62AD;
  font-size: 0.16rem;
  font-weight: 700;
  margin-bottom: 0.62rem;
}

@media screen and (max-width: 750px) {
  body.contact .main .contact-form .f-agree {
    margin-bottom: 0.3rem;
  }
}

body.contact .main .contact-form .f-agree .item {
  display: flex;
  flex-direction: column-reverse;
  margin: 0 auto;
  position: relative;
  width: 2rem;
}

body.contact .main .contact-form .f-agree .item .error+.mwform-checkbox-field label {
  outline: 1px solid #E272B6;
}

body.contact .main .contact-form .f-agree label {
  align-items: center;
  background-color: #fff;
  cursor: pointer;
  display: flex;
  height: 0.5rem;
  justify-content: center;
  padding-left: 0.36rem;
}

body.contact .main .contact-form .f-agree label input {
  display: none;
}

body.contact .main .contact-form .f-agree label input:checked+span::after {
  opacity: 1;
}

body.contact .main .contact-form .f-agree label span {
  align-items: center;
  display: flex;
  position: relative;
}

body.contact .main .contact-form .f-agree label span::before {
  border: 1px solid #C3CFEA;
  border-radius: 50%;
  content: '';
  height: 0.22rem;
  position: absolute;
  left: -.36rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0.22rem;
}

body.contact .main .contact-form .f-agree label span::after {
  background-color: #3D62AD;
  border-radius: 50%;
  content: '';
  height: 0.12rem;
  opacity: 0;
  position: absolute;
  left: -0.3rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: .2s opacity;
  width: 0.12rem;
}

body.contact .main .contact-form .btn-area {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 750px) {
  body.contact .main .contact-form .btn-area {
    margin-bottom: 0.05rem;
    margin-right: -0.1rem;
    margin-left: -0.1rem;
  }
}

body.contact .main .contact-form .btn-area button {
  background-color: transparent;
  border: none;
  margin: 0 .165rem;
  padding: 0;
}

@media screen and (max-width: 750px) {
  body.contact .main .contact-form .btn-area button {
    margin: 0 .1rem;
  }
}

body.contact .main .contact-form .btn-area button:hover {
  background-color: #fff;
}

body.contact .main .contact-form .error {
  color: #E272B6;
  font-size: 0.14rem;
  line-height: 1;
  margin-top: .15rem;
}

@media screen and (max-width: 750px) {
  body.contact .main .contact-form .error {
    font-size: 0.13rem;
  }
}

body.contact .main .contact-form .require {
  color: #E272B6;
}

body.sdgs .main .mainHeader .sdgs-headline {
  background-image: url("../imgs/sdgs/hero-bg@2x.jpg");
  background-position: center center;
  background-size: cover;
  color: #fff;
  padding-top: 0.8rem;
  padding-bottom: 0.4rem;
  position: relative;
  text-align: center;
  z-index: 1;
}

@media screen and (max-width: 750px) {
  body.sdgs .main .mainHeader .sdgs-headline {
    background-image: url("../imgs/sdgs/hero-bg-sp@2x.jpg");
    padding-top: 0.51rem;
    padding-bottom: 0.24rem;
  }
}

body.sdgs .main .mainHeader .sdgs-headline .title {
  -webkit-animation: fadeUp 1s 1s both;
  animation: fadeUp 1s 1s both;
  font-family: "Noto Serif JP", serif;
  font-size: 0.48rem;
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1;
  margin-bottom: 0.37rem;
}

@media screen and (max-width: 750px) {
  body.sdgs .main .mainHeader .sdgs-headline .title {
    font-size: 0.24rem;
    letter-spacing: 0;
    margin-bottom: 0.24rem;
  }
}

body.sdgs .main .mainHeader .sdgs-headline .container {
  -webkit-animation: fadeUp 1s 1.6s both;
  animation: fadeUp 1s 1.6s both;
  margin-bottom: 0.21rem;
  width: 4.5rem;
}

@media screen and (max-width: 750px) {
  body.sdgs .main .mainHeader .sdgs-headline .container {
    margin-bottom: 0.14rem;
    width: auto;
  }
}

body.sdgs .main .mainHeader .sdgs-headline .container .text {
  font-size: 0.2rem;
  font-weight: 700;
  /* margin-bottom: 0.21rem; */
  line-height: 1.8;
}

body.sdgs .main .mainHeader .sdgs-headline .container .text--mb {
  margin-bottom: 0.21rem;
}

body.sdgs .main .mainHeader .sdgs-headline .container .co2-emissions {
  width: 80%;
  margin: .09rem auto .165rem;
}

body.sdgs .main .mainHeader .sdgs-headline .container .text::before,
body.sdgs .main .mainHeader .sdgs-headline .container .text::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.sdgs .main .mainHeader .sdgs-headline .container .text::before {
  margin-bottom: -0.4em;
}

body.sdgs .main .mainHeader .sdgs-headline .container .text::after {
  margin-top: -0.4em;
}

@media screen and (max-width: 750px) {
  body.sdgs .main .mainHeader .sdgs-headline .container .text {
    font-size: 0.14rem;
    /* margin-bottom: 1.4rem; */
    line-height: 2;
  }

  body.sdgs .main .mainHeader .sdgs-headline .container .text--mb {
    margin-bottom: 1.4rem;
  }

  body.sdgs .main .mainHeader .sdgs-headline .container .text::before,
  body.sdgs .main .mainHeader .sdgs-headline .container .text::after {
    content: '';
    display: table;
    height: 0;
    width: 0;
  }

  body.sdgs .main .mainHeader .sdgs-headline .container .text::before {
    margin-bottom: -0.5em;
  }

  body.sdgs .main .mainHeader .sdgs-headline .container .text::after {
    margin-top: -0.5em;
  }
}

body.sdgs .main .mainHeader .sdgs-headline .container .text img {
  display: block;
  margin-top: 0.09rem;
  margin-right: auto;
  margin-bottom: 0.165rem;
  margin-left: auto;
  width: 2.7524rem;
}

@media screen and (max-width: 750px) {
  body.sdgs .main .mainHeader .sdgs-headline .container .text img {
    width: 1.7891rem;
  }
}

body.sdgs .main .mainHeader .sdgs-headline .container .text span {
  display: block;
  font-size: 0.16rem;
  line-height: 1;
  padding-bottom: 0.1rem;
  white-space: nowrap;
}

@media screen and (max-width: 750px) {
  body.sdgs .main .mainHeader .sdgs-headline .container .text span {
    font-size: 0.12rem;
    margin-left: -0.5em;
  }
}

body.sdgs .main .mainHeader .sdgs-headline .container .logo {
  align-items: center;
  background-color: #fff;
  color: #000;
  display: flex;
  flex-direction: column;
  padding-top: 0.25rem;
  padding-bottom: 0.19rem;
  position: relative;
}

@media screen and (max-width: 750px) {
  body.sdgs .main .mainHeader .sdgs-headline .container .logo {
    padding-top: 0.16rem;
    padding-bottom: 0.15rem;
  }
}

body.sdgs .main .mainHeader .sdgs-headline .container .logo img {
  min-height: 0%;
  margin-bottom: 0.14rem;
  width: 3.1773rem;
}

@media screen and (max-width: 750px) {
  body.sdgs .main .mainHeader .sdgs-headline .container .logo img {
    margin-bottom: 0.08rem;
    width: 1.946rem;
  }
}

body.sdgs .main .mainHeader .sdgs-headline .container .logo span {
  display: block;
  font-size: 0.11rem;
  line-height: 1;
}

@media screen and (max-width: 750px) {
  body.sdgs .main .mainHeader .sdgs-headline .container .logo span {
    font-size: 0.1rem;
    white-space: nowrap;
  }
}

body.sdgs .main .mainHeader .sdgs-headline .note {
  -webkit-animation: fadeUp 1s 2.2s both;
  animation: fadeUp 1s 2.2s both;
  color: #000;
  font-size: 0.12rem;
  padding-left: 1em;
  text-align: left;
  text-indent: -1em;
  line-height: 1.83333;
}

body.sdgs .main .mainHeader .sdgs-headline .note::before,
body.sdgs .main .mainHeader .sdgs-headline .note::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.sdgs .main .mainHeader .sdgs-headline .note::before {
  margin-bottom: -0.41667em;
}

body.sdgs .main .mainHeader .sdgs-headline .note::after {
  margin-top: -0.41667em;
}

@media screen and (max-width: 750px) {
  body.sdgs .main .mainHeader .sdgs-headline .note {
    height: 0.54rem;
    padding-left: 0;
    text-indent: 0;
  }
}

body.sdgs .main .mainHeader .sdgs-headline .note p::before {
  content: '※';
  display: inline-block;
  text-indent: 0;
  width: 1em;
}

@media screen and (max-width: 750px) {
  body.sdgs .main .mainHeader .sdgs-headline .note p {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    width: calc(12% / 9 * 100);
  }
}

body.sdgs .main .mainHeader .sdgs-headline .petals-container {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  pointer-events: none;
  z-index: -1;
}

body.sdgs .main .mainHeader .sdgs-headline .petal {
  width: .12rem;
  height: .12rem;
  display: inline-block;
  position: absolute;
  top: -.2rem;
  bottom: 0;
}

@media screen and (max-width: 750px) {
  body.sdgs .main .mainHeader .sdgs-headline .petal:nth-child(even) {
    display: none;
  }
}

body.sdgs .main .mainHeader .sdgs-headline .petal .rotate {
  -webkit-animation: driftyRotate 1s infinite both ease-in-out;
  animation: driftyRotate 1s infinite both ease-in-out;
  -webkit-perspective: 1000;
  perspective: 1000;
}

body.sdgs .main .mainHeader .sdgs-headline .petal .askew {
  -webkit-transform: skewY(10deg);
  transform: skewY(10deg);
  display: block;
  width: .24rem;
  height: .24rem;
  -webkit-animation: drifty 1s infinite alternate both ease-in-out;
  animation: drifty 1s infinite alternate both ease-in-out;
  -webkit-perspective: 1000;
  perspective: 1000;
}

body.sdgs .main .mainHeader .sdgs-headline .petal:nth-of-type(6n) .askew {
  -webkit-animation-delay: -.6s;
  animation-delay: -.6s;
  -webkit-animation-duration: 2.25s;
  animation-duration: 2.25s;
}

body.sdgs .main .mainHeader .sdgs-headline .petal:nth-of-type(6n + 1) .askew {
  -webkit-animation-delay: -.879s;
  animation-delay: -.879s;
  -webkit-animation-duration: 3.5s;
  animation-duration: 3.5s;
}

body.sdgs .main .mainHeader .sdgs-headline .petal:nth-of-type(6n + 2) .askew {
  -webkit-animation-delay: -.11s;
  animation-delay: -.11s;
  -webkit-animation-duration: 1.95s;
  animation-duration: 1.95s;
}

body.sdgs .main .mainHeader .sdgs-headline .petal:nth-of-type(6n + 3) .askew {
  -webkit-animation-delay: -.246s;
  animation-delay: -.246s;
  -webkit-animation-duration: .85s;
  animation-duration: .85s;
}

body.sdgs .main .mainHeader .sdgs-headline .petal:nth-of-type(6n + 4) .askew {
  -webkit-animation-delay: -.43s;
  animation-delay: -.43s;
  -webkit-animation-duration: 2.5s;
  animation-duration: 2.5s;
}

body.sdgs .main .mainHeader .sdgs-headline .petal:nth-of-type(6n + 5) .askew {
  -webkit-animation-delay: -.56s;
  animation-delay: -.56s;
  -webkit-animation-duration: 1.75s;
  animation-duration: 1.75s;
}

body.sdgs .main .mainHeader .sdgs-headline .petal:nth-of-type(4n) .rotate {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

body.sdgs .main .mainHeader .sdgs-headline .petal:nth-of-type(4n + 1) .rotate {
  -webkit-animation-duration: 2.3s;
  animation-duration: 2.3s;
}

body.sdgs .main .mainHeader .sdgs-headline .petal:nth-of-type(4n + 2) .rotate {
  -webkit-animation-duration: 1.1s;
  animation-duration: 1.1s;
}

body.sdgs .main .mainHeader .sdgs-headline .petal:nth-of-type(4n + 3) .rotate {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

body.sdgs .main .sNav {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -.2rem 0 0;
}

@media screen and (max-width: 750px) {
  body.sdgs .main .sNav {
    margin: .2rem 0 .4rem;
  }
}

body.sdgs .main .sNav a {
  margin: .14rem .12rem 0 0;
  font-size: .16rem;
  line-height: .6rem;
  padding: 0 1em;
  flex-grow: 1;
}

@media screen and (max-width: 750px) {
  body.sdgs .main .sNav a {
    font-size: .14rem;
    line-height: .4rem;
  }
}

body.sdgs .main .sNav a::before {
  content: '';
  display: inline-block;
  width: .08rem;
  margin: 0 .08rem 0 0;
  height: 100%;
  background: url(../imgs/arrow04.svg) 0 50%/100% auto no-repeat;
  vertical-align: top;
}

body.sdgs .main .sec {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  position: relative;
}

@media screen and (max-width: 750px) {
  body.sdgs .main .sec {
    padding-top: 0.72rem;
    padding-bottom: 0.72rem;
  }
}

body.sdgs .main .sec .title {
  align-items: center;
  display: flex;
  flex-direction: column;
  font-family: "Noto Serif JP", serif;
  font-size: 0.34rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.64rem;
  line-height: 1.4;
}

body.sdgs .main .sec .title::before,
body.sdgs .main .sec .title::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.sdgs .main .sec .title::before {
  margin-bottom: -0.2em;
}

body.sdgs .main .sec .title::after {
  margin-top: -0.2em;
}

@media screen and (max-width: 750px) {
  body.sdgs .main .sec .title {
    margin-bottom: 0.5rem;
  }
}

body.sdgs .main .sec .title .en {
  color: #3D62AD;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 0.16rem;
  line-height: 1;
  margin-top: 0.17rem;
  padding-bottom: 0.068rem;
  text-transform: uppercase;
}

body.sdgs .main .sec .title .en span {
  text-transform: lowercase;
}

body.sdgs .main .sec-initiatives .primary {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}

@media screen and (max-width: 750px) {
  body.sdgs .main .sec-initiatives .primary {
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
  }
}

body.sdgs .main .sec-initiatives .primary~.primary {
  flex-direction: row;
  margin-top: 0.48rem;
}

@media screen and (max-width: 750px) {
  body.sdgs .main .sec-initiatives .primary~.primary {
    flex-direction: column;
    margin-top: 0.4rem;
  }
}

body.sdgs .main .sec-initiatives .primary .sub {
  width: 1.6rem;
}

@media screen and (max-width: 750px) {
  body.sdgs .main .sec-initiatives .primary .sub {
    margin-bottom: 0.32rem;
  }
}

body.sdgs .main .sec-initiatives .primary .text {
  font-size: 0.16rem;
  width: 8.24rem;
  line-height: 2;
}

body.sdgs .main .sec-initiatives .primary .text::before,
body.sdgs .main .sec-initiatives .primary .text::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.sdgs .main .sec-initiatives .primary .text::before {
  margin-bottom: -0.5em;
}

body.sdgs .main .sec-initiatives .primary .text::after {
  margin-top: -0.5em;
}

@media screen and (max-width: 750px) {
  body.sdgs .main .sec-initiatives .primary .text {
    width: auto;
  }
}

body.sdgs .main .sec-initiatives .img {
  margin-top: 0.48rem;
}

@media screen and (max-width: 750px) {
  body.sdgs .main .sec-initiatives .img {
    margin-top: 0.4rem;
  }
}

body.sdgs .main .sec-feature {
  background-color: #F4F3F7;
}

body.sdgs .main .sec-feature .primary {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.56rem;
}

@media screen and (max-width: 750px) {
  body.sdgs .main .sec-feature .primary {
    display: block;
    margin-bottom: 0.28rem;
  }
}

body.sdgs .main .sec-feature .primary .text {
  font-size: 0.16rem;
  width: 4.8rem;
  line-height: 2;
}

body.sdgs .main .sec-feature .primary .text::before,
body.sdgs .main .sec-feature .primary .text::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.sdgs .main .sec-feature .primary .text::before {
  margin-bottom: -0.5em;
}

body.sdgs .main .sec-feature .primary .text::after {
  margin-top: -0.5em;
}

@media screen and (max-width: 750px) {
  body.sdgs .main .sec-feature .primary .text {
    margin-bottom: 0.32rem;
    width: auto;
  }
}

body.sdgs .main .sec-feature .primary .text>*+* {
  margin-top: 2em;
}

body.sdgs .main .sec-feature .primary .img {
  background-color: #fff;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  width: 4.8rem;
}

@media screen and (max-width: 750px) {
  body.sdgs .main .sec-feature .primary .img {
    padding-top: 0;
    padding-bottom: 0;
    width: auto;
  }
}

body.sdgs .main .sec-feature .note {
  padding-left: 1em;
  text-indent: -1em;
  margin-bottom: 0.8rem;
  line-height: 2;
}

body.sdgs .main .sec-feature .note::before,
body.sdgs .main .sec-feature .note::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.sdgs .main .sec-feature .note::before {
  margin-bottom: -0.5em;
}

body.sdgs .main .sec-feature .note::after {
  margin-top: -0.5em;
}

@media screen and (max-width: 750px) {
  body.sdgs .main .sec-feature .note {
    margin-bottom: 0.4rem;
  }
}

body.sdgs .main .sec-feature .note::before {
  content: '※';
  display: inline-block;
  text-indent: 0;
  width: 1em;
}

body.sdgs .main .sec-feature .profile {
  background-color: #EEECF4;
  font-size: 0.16rem;
  margin-bottom: 0.8rem;
  padding: 0.56rem;
  line-height: 2;
}

body.sdgs .main .sec-feature .profile::before,
body.sdgs .main .sec-feature .profile::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.sdgs .main .sec-feature .profile::before {
  margin-bottom: -0.5em;
}

body.sdgs .main .sec-feature .profile::after {
  margin-top: -0.5em;
}

@media screen and (max-width: 750px) {
  body.sdgs .main .sec-feature .profile {
    padding: 0.28rem;
  }
}

body.sdgs .main .sec-feature .profile .tit {
  font-weight: 700;
}

body.sdgs .main .sec-feature .body {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 750px) {
  body.sdgs .main .sec-feature .body {
    display: block;
  }
}

body.sdgs .main .sec-feature .body .item {
  position: relative;
}

body.sdgs .main .sec-feature .body .item .bt {
  display: flex;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

body.sdgs .main .sec-feature .body .item .bt .bt01 {
  padding: 0 0.14rem;
  font-size: 0.16rem;
  line-height: 0.48rem;
}

body.sdgs .main .sec-feature .body .item .bt .bt01::before {
  content: '';
  display: inline-block;
  width: 0.08rem;
  height: 0.48rem;
  margin: 0 0.08rem 0 0;
  background: url("../imgs/arrow03.svg") 0 50%/100% auto no-repeat;
  vertical-align: top;
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

body.sdgs .main .sec-feature .body .item .bt .bt01+.bt01 {
  margin: 0 0 0 0.08rem;
}

body.sdgs .main .sec-feature .body {
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: -0.64rem -.3rem 0 0;
}

@media screen and (max-width: 750px) {
  body.sdgs .main .sec-feature .body {
    margin-right: 0;
  }
}

body.sdgs .main .sec-feature .body .item {
  width: 3.32rem;
  margin: 0.64rem .22rem 0 0;
  padding: 0 0 0.24rem;
}

@media screen and (max-width: 750px) {
  body.sdgs .main .sec-feature .body .item {
    width: auto;
    margin: 0.16rem 0 0;
    padding: 0 0 0.24rem;
  }
}

body.sdgs .main .sec-feature .body .item .bt01 {
  font-size: 0.16rem;
}

body.sdgs .main .sec-notice .body {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media screen and (max-width: 750px) {
  body.sdgs .main .sec-notice .body {
    display: block;
    width: auto;
  }
}

body.sdgs .main .sec-notice .body .item {
  display: flex;
  justify-content: space-between;
  width: 4.9rem;
  margin: 0.4rem 0 0;
  position: relative;
  transition: .3s opacity;
}

@media screen and (max-width: 750px) {
  body.sdgs .main .sec-notice .body .item {
    width: auto;
    margin: .24rem 0 0;
  }
}

body.sdgs .main .sec-notice .body .item:nth-child(-n + 2) {
  margin-top: 0;
}

@media screen and (max-width: 750px) {
  body.sdgs .main .sec-notice .body .item:nth-child(-n + 2) {
    margin-top: .24rem;
  }
}

body.sdgs .main .sec-notice .body .item:hover {
  opacity: 0.7;
}

body.sdgs .main .sec-notice .body .item:hover .summary {
  text-decoration: underline;
}

body.sdgs .main .sec-notice .body .item .image {
  width: 1.6rem;
}

@media screen and (max-width: 750px) {
  body.sdgs .main .sec-notice .body .item .image {
    width: .88rem;
  }
}

body.sdgs .main .sec-notice .body .item .text {
  width: 3.07rem;
}

@media screen and (max-width: 750px) {
  body.sdgs .main .sec-notice .body .item .text {
    width: 2.36rem;
  }
}

body.sdgs .main .sec-notice .body .item .text .data {
  display: flex;
  align-items: center;
  line-height: 0.24rem;
}

@media screen and (max-width: 750px) {
  body.sdgs .main .sec-notice .body .item .text .data {
    line-height: 0.2rem;
  }
}

body.sdgs .main .sec-notice .body .item .text .data .category {
  margin: 0 0.16rem 0 0;
  padding: 0 .1rem;
  background: #C3CFEA;
  color: #fff;
  font-size: 0.12rem;
  font-weight: 700;
}

@media screen and (max-width: 750px) {
  body.sdgs .main .sec-notice .body .item .text .data .category {
    margin: 0 0.12rem 0 0;
    font-size: 0.1rem;
  }
}

body.sdgs .main .sec-notice .body .item .text .data .date {
  color: #3D62AD;
  font-family: "Roboto", sans-serif;
  font-size: 0.14rem;
  font-weight: 400;
}

body.sdgs .main .sec-notice .body .item .text .summary {
  line-height: 1.875;
  margin: 0.14rem 0 0;
  font-size: 0.16rem;
  position: relative;
}

body.sdgs .main .sec-notice .body .item .text .summary::before,
body.sdgs .main .sec-notice .body .item .text .summary::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.sdgs .main .sec-notice .body .item .text .summary::before {
  margin-bottom: -0.4375em;
}

body.sdgs .main .sec-notice .body .item .text .summary::after {
  margin-top: -0.4375em;
}

@media screen and (max-width: 750px) {
  body.sdgs .main .sec-notice .body .item .text .summary {
    margin: 0.16rem 0 0;
  }
}

body.sdgs .main .sec-notice .body .item.ext .summary::after,
body.sdgs .main .sec-notice .body .item.pdf .summary::after {
  content: '';
  display: inline-block;
  width: 0.14rem;
  height: 0.14rem;
  background: 0 0 / contain no-repeat;
  margin: 0 0 0 .25em;
}

body.sdgs .main .sec-notice .body .item.pdf .summary::after {
  background-image: url("../imgs/ico-pdf.svg");
}

body.sdgs .main .sec-notice .body .item.ext .summary::after {
  background-image: url("../imgs/ico-ext.svg");
}

body.sdgs .main .sec-about {
  background-color: #F4F3F7;
  margin-bottom: -1.2rem;
}

@media screen and (max-width: 750px) {
  body.sdgs .main .sec-about {
    margin-bottom: -0.4rem;
  }
}

body.sdgs .main .sec-about .text {
  font-size: 0.16rem;
  margin-bottom: 0.48rem;
  line-height: 2;
}

body.sdgs .main .sec-about .text::before,
body.sdgs .main .sec-about .text::after {
  content: '';
  display: table;
  height: 0;
  width: 0;
}

body.sdgs .main .sec-about .text::before {
  margin-bottom: -0.5em;
}

body.sdgs .main .sec-about .text::after {
  margin-top: -0.5em;
}

@media screen and (max-width: 750px) {
  body.sdgs .main .sec-about .text {
    margin-bottom: 0.32rem;
  }
}

.gFooter {
  margin: 1.2rem 0 0;
}

@media screen and (max-width: 750px) {
  .gFooter {
    margin: 0.4rem 0 0;
  }
}

.gFooter .contect {
  background: #3D62AD;
  /* background: linear-gradient(to right, #3D62AD 0%, #3D62AD 50%, #5E75C3 50%, #5E75C3 100%); */
}

@media screen and (max-width: 750px) {
  .gFooter .contect {
    background: #3D62AD;
  }

  .gFooter .contect .wrap {
    padding: 0;
  }
}

.gFooter .contect .inner {
  display: flex;
}

@media screen and (max-width: 750px) {
  .gFooter .contect .inner {
    display: block;
  }
}

.gFooter .contect .contect01,
.gFooter .contect .contect02 {
  box-sizing: border-box;
  color: #fff;
  line-height: 1;
}

.gFooter .contect .contect01 .label,
.gFooter .contect .contect02 .label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

@media screen and (max-width: 750px) {

  .gFooter .contect .contect01 .label,
  .gFooter .contect .contect02 .label {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: auto;
  }
}

.gFooter .contect .contect01 .label .ja,
.gFooter .contect .contect02 .label .ja {
  font-family: "Noto Serif JP", serif;
  font-size: 0.18rem;
  font-weight: 700;
}

.gFooter .contect .contect01 .label .en,
.gFooter .contect .contect02 .label .en {
  color: rgba(255, 255, 255, 0.5);
  font-family: "Roboto", sans-serif;
  font-size: 0.12rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media screen and (max-width: 750px) {

  .gFooter .contect .contect01 .label .en,
  .gFooter .contect .contect02 .label .en {
    display: none;
  }
}

.gFooter .contect .contect01 a.tel,
.gFooter .contect .contect02 a.tel {
  margin: 0 0.1rem 0 0;
  padding: 0 0 0 0.2rem;
  position: relative;
  font-size: 0.24rem;
  font-weight: 700;
  white-space: nowrap;
}

@media screen and (max-width: 750px) {

  .gFooter .contect .contect01 a.tel,
  .gFooter .contect .contect02 a.tel {
    margin: 0;
    font-size: 0.21rem;
  }
}

.gFooter .contect .contect01 a.tel::before,
.gFooter .contect .contect02 a.tel::before {
  content: '';
  display: block;
  width: 0.16rem;
  height: 0.16rem;
  position: absolute;
  top: calc(50% - .08rem);
  left: 0;
  background: url("../imgs/ico-tel01.svg") 0 0/contain no-repeat;
  opacity: 0.5;
}

.gFooter .contect .contect01 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 7.34rem;
  padding: 0.56rem 0.52rem 0.4rem 0;
  background: #3D62AD;
}

@media screen and (max-width: 750px) {
  .gFooter .contect .contect01 {
    width: auto;
    padding: 0.25rem 0.18rem;
  }

  .gFooter .contect .contect01 .label .ja {
    font-size: 0.13rem;
    line-height: 1.66667;
  }
}

.gFooter .contect .contect01 div.tel {
  margin: 0.29rem 0 0;
}

@media screen and (max-width: 750px) {
  .gFooter .contect .contect01 div.tel {
    margin: 0;
  }
}

.gFooter .contect .contect01 div.tel .line01 {
  font-weight: 700;
}

@media screen and (max-width: 750px) {
  .gFooter .contect .contect01 div.tel .line01 {
    font-size: 0.12rem;
  }
}

.gFooter .contect .contect01 div.tel .line02 {
  margin: 0.12rem 0 0;
  font-weight: 500;
}

@media screen and (max-width: 750px) {
  .gFooter .contect .contect01 div.tel .line02 {
    margin: 0.08rem 0 0;
  }

  .gFooter .contect .contect01 div.tel .line02 .note {
    display: block;
    margin: 0.08rem 0 0;
    font-size: 0.12rem;
  }
}

.gFooter .contect .contect01 .mail {
  width: 2.34rem;
  margin: 0.15rem 0 0;
}

@media screen and (max-width: 750px) {
  .gFooter .contect .contect01 .mail {
    width: 100%;
  }
}

.gFooter .contect .contect01 .mail a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 0.72rem;
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 1rem;
  font-weight: 700;
  line-height: 0.28rem;
  text-align: center;
  overflow: hidden;
}

.gFooter .contect .contect01 .mail a::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #5e75c3;
  border-radius: inherit;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

html:not(.mobile) .gFooter .contect .contect01 .mail a:hover::after {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

@media screen and (max-width: 750px) {
  .gFooter .contect .contect01 .mail a {
    height: 0.48rem;
    border-radius: 0.24rem;
    font-size: 0.16rem;
  }

  .gFooter .contect .contect01 .mail a .line01 {
    padding: 0 0 0 0.3rem;
    background: url("../imgs/ico-mail.svg") 0 50%/0.18rem auto no-repeat;
  }
}

.gFooter .contect .contect01 .mail a .line02 {
  padding: 0 0 0 0.3rem;
  background: url("../imgs/ico-mail.svg") 0 50%/0.18rem auto no-repeat;
  font-size: 0.2rem;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 750px) {
  .gFooter .contect .contect01 .mail a .line02 {
    display: none;
  }
}

.gFooter .contect .contect02 {
  width: 3.06rem;
  padding: 0.48rem 0 0 0.4rem;
  background: #5E75C3;
}

@media screen and (max-width: 750px) {
  .gFooter .contect .contect02 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: auto;
    margin: 0;
    padding: 0.24rem 0.18rem;
  }

  .gFooter .contect .contect02 .label .ja {
    font-size: 0.13rem;
  }
}

.gFooter .contect .contect02 .tel {
  margin: 0.28rem 0 0;
}

@media screen and (max-width: 750px) {
  .gFooter .contect .contect02 .tel {
    margin: 0;
  }
}

.gFooter .contect .contect02 .tel .line01 {
  font-weight: 700;
}

@media screen and (max-width: 750px) {
  .gFooter .contect .contect02 .tel .line01 {
    margin: 0;
    font-size: 0.12rem;
  }
}

.gFooter .contect .contect02 .tel .line02 {
  margin: 0.1rem 0 0;
}

@media screen and (max-width: 750px) {
  .gFooter .contect .contect02 .tel .line02 {
    margin: 0.08rem 0 0;
  }
}

.gFooter .contect .contect02 .tel .line02 .small {
  font-size: 0.16rem;
  font-weight: 700;
  margin-left: -0.1rem;
  white-space: nowrap;
}

@media screen and (max-width: 750px) {
  .gFooter .contect .contect02 .tel .line02 .small {
    font-size: 0.12rem;
    margin-left: 0;
  }
}

.gFooter .contect .contect02 .tel .line02 .note {
  display: block;
  margin: 0.1rem 0 0;
}

@media screen and (max-width: 750px) {
  .gFooter .contect .contect02 .tel .line02 .note {
    margin: 0.08rem 0 0;
    font-size: 0.12rem;
  }
}

.gFooter .footer {
  padding: 1.08rem 0 0.34rem;
  background: url("../imgs/bg-ftr@2x.jpg") 50% 0/cover no-repeat;
  color: #3D62AD;
}

@media screen and (max-width: 750px) {
  .gFooter .footer {
    padding: 0.3rem 0 0.26rem;
  }

  body.home .gFooter .footer {
    padding-bottom: .66rem;
  }
}

.gFooter .footer .inner {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 750px) {
  .gFooter .footer .inner {
    display: block;
    padding: 0 0.12rem;
  }
}

.gFooter .footer .ci {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}

.gFooter .footer .ci .logo {
  width: 2.1rem;
}

@media screen and (max-width: 750px) {
  .gFooter .footer .ci .logo {
    width: 1.2rem;
    padding: 0 0 0.1rem;
  }
}

.gFooter .footer .ci .sns ul {
  display: flex;
  align-items: center;
}

.gFooter .footer .ci .sns ul li+li {
  margin: 0 0 0 0.24rem;
}

.gFooter .footer .ci .sns ul .facebook {
  width: 0.1rem;
}

.gFooter .footer .ci .sns ul .instagram {
  width: 0.19rem;
}

.gFooter .footer .ci .sns ul .twitter {
  width: 0.2rem;
}

.gFooter .footer .navigation {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0.36rem 0.9rem 0 0;
}

@media screen and (max-width: 750px) {
  .gFooter .footer .navigation {
    display: none;
  }
}

.gFooter .footer .navigation dt {
  padding: 0 0 0.02rem 0.3rem;
  background: url("../imgs/ico-flower.svg") 0 0.03rem/0.16rem auto no-repeat;
  font-weight: 700;
}

.gFooter .footer .navigation dd {
  padding: 0 0 0 0.3rem;
}

.gFooter .footer .navigation a {
  position: relative;
}

.gFooter .footer .navigation a::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: transparent;
}

html:not(.mobile) .gFooter .footer .navigation a:hover:after {
  background: currentColor;
}

.gFooter .footer .link {
  width: 50%;
  margin: 0.44rem 0 0;
  font-size: 0.12rem;
  line-height: 1;
}

@media screen and (max-width: 750px) {
  .gFooter .footer .link {
    width: 100%;
    margin: 0.14rem 0 0;
    line-height: 2;
  }
}

.gFooter .footer .link ul {
  display: flex;
}

@media screen and (max-width: 750px) {
  .gFooter .footer .link ul {
    display: block;
  }
}

.gFooter .footer .link ul li+li {
  margin: 0 0 0 .18rem;
  border-left: 1px solid #3D62AD;
  padding: 0 0 0 .18rem;
}

@media screen and (max-width: 750px) {
  .gFooter .footer .link ul li+li {
    margin: 0;
    border-left: none;
    padding: 0;
  }
}

.gFooter .footer .link a {
  position: relative;
}

.gFooter .footer .link a::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: transparent;
}

html:not(.mobile) .gFooter .footer .link a:hover:after {
  background: currentColor;
}

.gFooter .footer .copyright {
  width: 50%;
  margin: 0.42rem 0 0;
  line-height: 1;
  text-align: right;
}

@media screen and (max-width: 750px) {
  .gFooter .footer .copyright {
    width: 100%;
    margin: 0.1rem 0 0;
    font-size: 0.12rem;
    text-align: left;
  }
}

.gFooter .pagetop {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  width: 0.76rem;
  height: 0.88rem;
  padding: 0.12rem 0 0;
  position: fixed;
  right: 0.24rem;
  bottom: 0.24rem;
  z-index: 1;
  background-image: url("../imgs/pagetop01.svg"), url("../imgs/pagetop02.svg");
  background-position: 50% 100%, 50% 100%;
  background-size: 100% auto;
  background-repeat: no-repeat;
  color: #3D62AD;
  font-family: "Roboto", sans-serif;
  font-size: 0.11rem;
  font-weight: 500;
  line-height: 1.45455;
  text-align: center;
  transition: 0.3s ease-out;
  transition-property: background-position, opacity;
}

html:not(.mobile) .gFooter .pagetop:hover {
  background-position: 50% 100%, 50% 0;
}

@media screen and (max-width: 750px) {
  .gFooter .pagetop {
    right: 0.08rem;
    bottom: 0.44rem;
    bottom: calc(env(safe-area-inset-bottom) + .44rem);
  }

  body.home .gFooter .pagetop {
    bottom: .6rem;
    bottom: calc(env(safe-area-inset-bottom) + .6rem);
  }
}

.gFooter .pagetop::before {
  content: '';
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  position: absolute;
  bottom: 0.08rem;
  left: 0.08rem;
  z-index: -1;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0.03rem 0.1rem rgba(4, 12, 111, 0.08);
}

.gFooter .pagetop.off {
  opacity: 0;
  pointer-events: none;
}

.fBnr {
  display: block;
  width: 0.72rem;
  height: 2.2rem;
  position: fixed;
  top: 2.32rem;
  right: 0;
  z-index: 1;
  background: #3D62AD;
  box-shadow: 0 0.1rem 0.16rem rgba(4, 12, 111, 0.16);
  overflow: hidden;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.fBnr::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #5e75c3;
  border-radius: inherit;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

html:not(.mobile) .fBnr:hover {
  -webkit-transform: translate3d(0.04rem, 0, 0);
  transform: translate3d(0.04rem, 0, 0);
}

html:not(.mobile) .fBnr:hover:after {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

@media screen and (max-width: 750px) {
  .fBnr {
    width: 100%;
    height: auto;
    top: auto;
    bottom: 0;
    box-shadow: 0 -0.03rem 0.16rem rgba(4, 12, 111, 0.16);
  }
}

.body404 {
  font-size: 0.16rem;
}

.body404 .btn .bt02 {
  margin: 1rem auto;
}

@media screen and (max-width: 750px) {
  .body404 .btn .bt02 {
    margin-top: 0.3rem;
  }
}

/*# sourceMappingURL=common.css.map */

.flexDir-row {
  flex-direction: row !important;
}

.width-100p {
  width: 100% !important;
}

.width-80p {
  width: 80% !important;
}

.sdgs-box__img {
  margin: 40px 0px;
  text-align: center;

}

.display-block {
  display: block !important;
}