@charset "UTF-8";
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

:root {
  --gothic:
  	"Zen Kaku Gothic New",
  	"Hiragino Kaku Gothic ProN",
  	"Hiragino Sans",
  	"BIZ UDPGothic",
  	"YuGothic",
  	"Yu Gothic",
  	"游ゴシック体",
  	"Meiryo",
  	"Arial",
  	sans-serif;
  --black: #333;
  --gray: #666;
  --white: #FFF;
  --red: #DB0B20;
  --bg_red: #FEF4F1;
  --blue: #1D2088;
  --bg_blue: #F1F4FB;
  --light_blue: #E2E9F6;
}

/************************************************

	基本

*************************************************/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, input, select, textarea,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: var(--gothic);
  line-height: 1.75;
  font-size: 1.6em;
  color: var(--black);
  -webkit-font-smoothing: antialiased;
}

button:focus-visible,
a:focus-visible {
  outline: none;
  box-shadow: 0px 0px 0px 2px #fff, 0px 0px 0px 4px #000;
}

input,
textarea {
  font-family: var(--gothic);
}
input:focus-visible,
textarea:focus-visible {
  box-shadow: 0px 0px 0px 1px #fff inset, 0px 0px 0px 3px #333 inset;
}

ul {
  list-style: none;
}

a, a:link, a:active, a:visited, a:hover {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  border-radius: 0;
  background: none;
  font: inherit;
  padding: 0;
  cursor: pointer;
  text-transform: inherit;
}

img {
  max-width: 100%;
  vertical-align: top;
  height: auto;
}

.b-btn_skip {
  display: inline-block;
  position: absolute;
  top: 2px;
  left: 2px;
  z-index: 1000;
}

.b-btn_skip:focus-visible span {
  display: block;
}

.b-btn_skip span {
  display: none;
}

/************************************************

	block

*************************************************/
.b-unit_2col01 {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.b-unit_2col01 > .b-unit_2col01__unit {
  width: 49%;
}
.b-unit_2col01 > .b-unit_2col01__unit:nth-child(odd) {
  margin-right: 2%;
}
.b-unit_2col01 > .b-unit_2col01__unit:nth-child(n+3) {
  margin-top: 2%;
}

.b-unit_2col02 {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.b-unit_2col02 > .b-unit_2col02__unit {
  width: 100%;
}
.b-unit_2col02 > .b-unit_2col02__unit:nth-child(odd) {
  margin-right: 2%;
}
@media screen and (max-width: 960px) {
  .b-unit_2col02 > .b-unit_2col02__unit:nth-child(odd) {
    margin-right: 0;
  }
}
.b-unit_2col02 > .b-unit_2col02__unit:nth-child(n+3) {
  margin-top: 2%;
}
@media screen and (max-width: 960px) {
  .b-unit_2col02 > .b-unit_2col02__unit:nth-child(n+2) {
    margin-top: 2%;
  }
}

/************************************************

	modal

*************************************************/
/* モーダル */
.modal-overlay {
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
}

.modal-wrapper {
  width: 100%;
}

.modal-container {
  background-color: #fff;
  border-radius: 30px;
  max-height: 70vh;
  width: min(90%, 900px);
  overflow-y: auto;
  padding: 50px 55px;
  margin-left: auto;
  margin-right: auto;
  margin-inline: auto;
}
@media screen and (max-width: 960px) {
  .modal-container {
    padding: 30px 20px;
    max-height: 65vh;
  }
}
@media screen and (max-width: 640px) {
  .modal-container {
    border-radius: 20px;
  }
}

.modal-header {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.modal-close {
  background: transparent;
  border: 0;
  margin-left: auto;
  /*margin-right: auto;*/
  font-size: 2rem;
}

.modal-header .modal-close::before {
  content: "✕";
}

.modal-close02 {
  background: transparent;
  border: 0;
  margin-left: auto;
  margin-right: auto;
}

.modal-header .modal-close02::before {
  content: "✕";
}

.modal-content {
  line-height: 1.5;
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.modal-open {
  display: none;
}
@media screen and (max-width: 960px) {
  .modal-open.modal-open__footer {
    display: block;
    position: fixed;
    z-index: 1;
    bottom: 10px;
    left: 10px;
    text-align: center;
    color: var(--blue);
    background-color: var(--white);
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1.3;
    padding: 10px 15px;
    border: 1px solid;
    border-radius: 6px;
    transition: box-shadow 0.2s;
  }
  .modal-open.modal-open__footer span {
    background-image: url(/wp-content/themes/fuk-humanitude/common/images/ico_language01.svg);
    background-position: center left;
    background-repeat: no-repeat;
    background-size: 14px 14px;
    padding-left: 20px;
  }
}

.box01 {
  background-color: #ccc;
  height: 200px;
  margin: 0 auto;
  width: 80%;
}

.box02 {
  background-color: #ccc;
  height: 200px;
  margin: 0 auto;
  width: 80%;
}

.modal__copy {
  font-size: 1.8rem;
}
.modal__copy .modal__title {
  font-size: 2.6rem;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .modal__copy {
    font-size: 1.6rem;
  }
  .modal__copy .modal__title {
    font-size: 2rem;
  }
}

/* モーダルアニメーション */
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal-overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal-container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal-overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal-container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal-container,
.micromodal-slide .modal-overlay {
  will-change: transform;
}

/************************************************

	language

*************************************************/
.wovn-languages > div {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.wovn-languages > div button {
  width: calc((100% - 40px) / 3);
  border-radius: 10px;
}
@media screen and (max-width: 960px) {
  .wovn-languages > div button {
    width: calc(50% - 10px);
  }
}
.wovn-languages > div button span {
  display: inline-block;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  padding: 22px 40px;
  border-radius: 10px;
  color: var(--white);
  background-color: var(--blue);
  border: 2px solid var(--blue);
  transition: all 0.3s;
}
.wovn-languages > div button span:hover, .wovn-languages > div button span.selected {
  background-color: var(--white);
  color: var(--blue);
  cursor: pointer;
}
.wovn-languages > div button span:hover::before, .wovn-languages > div button span.selected::before {
  background-color: var(--blue);
}
.wovn-languages > div button span:hover::after, .wovn-languages > div button span.selected::after {
  border-color: var(--white);
}
@media screen and (max-width: 960px) {
  .wovn-languages > div button span {
    font-size: 1.6rem;
    padding: 15px;
  }
}

/************************************************

	utility

*************************************************/
.b-m0 {
  margin: 0px !important;
}

.b-mt0 {
  margin-top: 0px !important;
}

.b-mb0 {
  margin-bottom: 0px !important;
}

.b-ml0 {
  margin-left: 0px !important;
}

.b-mr0 {
  margin-right: 0px !important;
}

.b-p0 {
  padding: 0px !important;
}

.b-pt0 {
  padding-top: 0px !important;
}

.b-pb0 {
  padding-bottom: 0px !important;
}

.b-pl0 {
  padding-left: 0px !important;
}

.b-pr0 {
  padding-right: 0px !important;
}

.b-m5 {
  margin: 5px !important;
}

.b-mt5 {
  margin-top: 5px !important;
}

.b-mb5 {
  margin-bottom: 5px !important;
}

.b-ml5 {
  margin-left: 5px !important;
}

.b-mr5 {
  margin-right: 5px !important;
}

.b-p5 {
  padding: 5px !important;
}

.b-pt5 {
  padding-top: 5px !important;
}

.b-pb5 {
  padding-bottom: 5px !important;
}

.b-pl5 {
  padding-left: 5px !important;
}

.b-pr5 {
  padding-right: 5px !important;
}

.b-m10 {
  margin: 10px !important;
}

.b-mt10 {
  margin-top: 10px !important;
}

.b-mb10 {
  margin-bottom: 10px !important;
}

.b-ml10 {
  margin-left: 10px !important;
}

.b-mr10 {
  margin-right: 10px !important;
}

.b-p10 {
  padding: 10px !important;
}

.b-pt10 {
  padding-top: 10px !important;
}

.b-pb10 {
  padding-bottom: 10px !important;
}

.b-pl10 {
  padding-left: 10px !important;
}

.b-pr10 {
  padding-right: 10px !important;
}

.b-m15 {
  margin: 15px !important;
}

.b-mt15 {
  margin-top: 15px !important;
}

.b-mb15 {
  margin-bottom: 15px !important;
}

.b-ml15 {
  margin-left: 15px !important;
}

.b-mr15 {
  margin-right: 15px !important;
}

.b-p15 {
  padding: 15px !important;
}

.b-pt15 {
  padding-top: 15px !important;
}

.b-pb15 {
  padding-bottom: 15px !important;
}

.b-pl15 {
  padding-left: 15px !important;
}

.b-pr15 {
  padding-right: 15px !important;
}

.b-m20 {
  margin: 20px !important;
}

.b-mt20 {
  margin-top: 20px !important;
}

.b-mb20 {
  margin-bottom: 20px !important;
}

.b-ml20 {
  margin-left: 20px !important;
}

.b-mr20 {
  margin-right: 20px !important;
}

.b-p20 {
  padding: 20px !important;
}

.b-pt20 {
  padding-top: 20px !important;
}

.b-pb20 {
  padding-bottom: 20px !important;
}

.b-pl20 {
  padding-left: 20px !important;
}

.b-pr20 {
  padding-right: 20px !important;
}

.b-m25 {
  margin: 25px !important;
}

.b-mt25 {
  margin-top: 25px !important;
}

.b-mb25 {
  margin-bottom: 25px !important;
}

.b-ml25 {
  margin-left: 25px !important;
}

.b-mr25 {
  margin-right: 25px !important;
}

.b-p25 {
  padding: 25px !important;
}

.b-pt25 {
  padding-top: 25px !important;
}

.b-pb25 {
  padding-bottom: 25px !important;
}

.b-pl25 {
  padding-left: 25px !important;
}

.b-pr25 {
  padding-right: 25px !important;
}

.b-m30 {
  margin: 30px !important;
}

.b-mt30 {
  margin-top: 30px !important;
}

.b-mb30 {
  margin-bottom: 30px !important;
}

.b-ml30 {
  margin-left: 30px !important;
}

.b-mr30 {
  margin-right: 30px !important;
}

.b-p30 {
  padding: 30px !important;
}

.b-pt30 {
  padding-top: 30px !important;
}

.b-pb30 {
  padding-bottom: 30px !important;
}

.b-pl30 {
  padding-left: 30px !important;
}

.b-pr30 {
  padding-right: 30px !important;
}

.b-m35 {
  margin: 35px !important;
}

.b-mt35 {
  margin-top: 35px !important;
}

.b-mb35 {
  margin-bottom: 35px !important;
}

.b-ml35 {
  margin-left: 35px !important;
}

.b-mr35 {
  margin-right: 35px !important;
}

.b-p35 {
  padding: 35px !important;
}

.b-pt35 {
  padding-top: 35px !important;
}

.b-pb35 {
  padding-bottom: 35px !important;
}

.b-pl35 {
  padding-left: 35px !important;
}

.b-pr35 {
  padding-right: 35px !important;
}

.b-m40 {
  margin: 40px !important;
}

.b-mt40 {
  margin-top: 40px !important;
}

.b-mb40 {
  margin-bottom: 40px !important;
}

.b-ml40 {
  margin-left: 40px !important;
}

.b-mr40 {
  margin-right: 40px !important;
}

.b-p40 {
  padding: 40px !important;
}

.b-pt40 {
  padding-top: 40px !important;
}

.b-pb40 {
  padding-bottom: 40px !important;
}

.b-pl40 {
  padding-left: 40px !important;
}

.b-pr40 {
  padding-right: 40px !important;
}

.b-m45 {
  margin: 45px !important;
}

.b-mt45 {
  margin-top: 45px !important;
}

.b-mb45 {
  margin-bottom: 45px !important;
}

.b-ml45 {
  margin-left: 45px !important;
}

.b-mr45 {
  margin-right: 45px !important;
}

.b-p45 {
  padding: 45px !important;
}

.b-pt45 {
  padding-top: 45px !important;
}

.b-pb45 {
  padding-bottom: 45px !important;
}

.b-pl45 {
  padding-left: 45px !important;
}

.b-pr45 {
  padding-right: 45px !important;
}

.b-m50 {
  margin: 50px !important;
}

.b-mt50 {
  margin-top: 50px !important;
}

.b-mb50 {
  margin-bottom: 50px !important;
}

.b-ml50 {
  margin-left: 50px !important;
}

.b-mr50 {
  margin-right: 50px !important;
}

.b-p50 {
  padding: 50px !important;
}

.b-pt50 {
  padding-top: 50px !important;
}

.b-pb50 {
  padding-bottom: 50px !important;
}

.b-pl50 {
  padding-left: 50px !important;
}

.b-pr50 {
  padding-right: 50px !important;
}

.b-m55 {
  margin: 55px !important;
}

.b-mt55 {
  margin-top: 55px !important;
}

.b-mb55 {
  margin-bottom: 55px !important;
}

.b-ml55 {
  margin-left: 55px !important;
}

.b-mr55 {
  margin-right: 55px !important;
}

.b-p55 {
  padding: 55px !important;
}

.b-pt55 {
  padding-top: 55px !important;
}

.b-pb55 {
  padding-bottom: 55px !important;
}

.b-pl55 {
  padding-left: 55px !important;
}

.b-pr55 {
  padding-right: 55px !important;
}

.b-m60 {
  margin: 60px !important;
}

.b-mt60 {
  margin-top: 60px !important;
}

.b-mb60 {
  margin-bottom: 60px !important;
}

.b-ml60 {
  margin-left: 60px !important;
}

.b-mr60 {
  margin-right: 60px !important;
}

.b-p60 {
  padding: 60px !important;
}

.b-pt60 {
  padding-top: 60px !important;
}

.b-pb60 {
  padding-bottom: 60px !important;
}

.b-pl60 {
  padding-left: 60px !important;
}

.b-pr60 {
  padding-right: 60px !important;
}

.b-m65 {
  margin: 65px !important;
}

.b-mt65 {
  margin-top: 65px !important;
}

.b-mb65 {
  margin-bottom: 65px !important;
}

.b-ml65 {
  margin-left: 65px !important;
}

.b-mr65 {
  margin-right: 65px !important;
}

.b-p65 {
  padding: 65px !important;
}

.b-pt65 {
  padding-top: 65px !important;
}

.b-pb65 {
  padding-bottom: 65px !important;
}

.b-pl65 {
  padding-left: 65px !important;
}

.b-pr65 {
  padding-right: 65px !important;
}

.b-m70 {
  margin: 70px !important;
}

.b-mt70 {
  margin-top: 70px !important;
}

.b-mb70 {
  margin-bottom: 70px !important;
}

.b-ml70 {
  margin-left: 70px !important;
}

.b-mr70 {
  margin-right: 70px !important;
}

.b-p70 {
  padding: 70px !important;
}

.b-pt70 {
  padding-top: 70px !important;
}

.b-pb70 {
  padding-bottom: 70px !important;
}

.b-pl70 {
  padding-left: 70px !important;
}

.b-pr70 {
  padding-right: 70px !important;
}

.b-m75 {
  margin: 75px !important;
}

.b-mt75 {
  margin-top: 75px !important;
}

.b-mb75 {
  margin-bottom: 75px !important;
}

.b-ml75 {
  margin-left: 75px !important;
}

.b-mr75 {
  margin-right: 75px !important;
}

.b-p75 {
  padding: 75px !important;
}

.b-pt75 {
  padding-top: 75px !important;
}

.b-pb75 {
  padding-bottom: 75px !important;
}

.b-pl75 {
  padding-left: 75px !important;
}

.b-pr75 {
  padding-right: 75px !important;
}

.b-m80 {
  margin: 80px !important;
}

.b-mt80 {
  margin-top: 80px !important;
}

.b-mb80 {
  margin-bottom: 80px !important;
}

.b-ml80 {
  margin-left: 80px !important;
}

.b-mr80 {
  margin-right: 80px !important;
}

.b-p80 {
  padding: 80px !important;
}

.b-pt80 {
  padding-top: 80px !important;
}

.b-pb80 {
  padding-bottom: 80px !important;
}

.b-pl80 {
  padding-left: 80px !important;
}

.b-pr80 {
  padding-right: 80px !important;
}

.b-m85 {
  margin: 85px !important;
}

.b-mt85 {
  margin-top: 85px !important;
}

.b-mb85 {
  margin-bottom: 85px !important;
}

.b-ml85 {
  margin-left: 85px !important;
}

.b-mr85 {
  margin-right: 85px !important;
}

.b-p85 {
  padding: 85px !important;
}

.b-pt85 {
  padding-top: 85px !important;
}

.b-pb85 {
  padding-bottom: 85px !important;
}

.b-pl85 {
  padding-left: 85px !important;
}

.b-pr85 {
  padding-right: 85px !important;
}

.b-m90 {
  margin: 90px !important;
}

.b-mt90 {
  margin-top: 90px !important;
}

.b-mb90 {
  margin-bottom: 90px !important;
}

.b-ml90 {
  margin-left: 90px !important;
}

.b-mr90 {
  margin-right: 90px !important;
}

.b-p90 {
  padding: 90px !important;
}

.b-pt90 {
  padding-top: 90px !important;
}

.b-pb90 {
  padding-bottom: 90px !important;
}

.b-pl90 {
  padding-left: 90px !important;
}

.b-pr90 {
  padding-right: 90px !important;
}

.b-m95 {
  margin: 95px !important;
}

.b-mt95 {
  margin-top: 95px !important;
}

.b-mb95 {
  margin-bottom: 95px !important;
}

.b-ml95 {
  margin-left: 95px !important;
}

.b-mr95 {
  margin-right: 95px !important;
}

.b-p95 {
  padding: 95px !important;
}

.b-pt95 {
  padding-top: 95px !important;
}

.b-pb95 {
  padding-bottom: 95px !important;
}

.b-pl95 {
  padding-left: 95px !important;
}

.b-pr95 {
  padding-right: 95px !important;
}

.b-m100 {
  margin: 100px !important;
}

.b-mt100 {
  margin-top: 100px !important;
}

.b-mb100 {
  margin-bottom: 100px !important;
}

.b-ml100 {
  margin-left: 100px !important;
}

.b-mr100 {
  margin-right: 100px !important;
}

.b-p100 {
  padding: 100px !important;
}

.b-pt100 {
  padding-top: 100px !important;
}

.b-pb100 {
  padding-bottom: 100px !important;
}

.b-pl100 {
  padding-left: 100px !important;
}

.b-pr100 {
  padding-right: 100px !important;
}

@media screen and (max-width: 960px) {
  .b-m0 {
    margin: 0px !important;
  }
  .b-mt0 {
    margin-top: 0px !important;
  }
  .b-mb0 {
    margin-bottom: 0px !important;
  }
  .b-ml0 {
    margin-left: 0px !important;
  }
  .b-mr0 {
    margin-right: 0px !important;
  }
  .b-p0 {
    padding: 0px !important;
  }
  .b-pt0 {
    padding-top: 0px !important;
  }
  .b-pb0 {
    padding-bottom: 0px !important;
  }
  .b-pl0 {
    padding-left: 0px !important;
  }
  .b-pr0 {
    padding-right: 0px !important;
  }
  .b-m5 {
    margin: 2.5px !important;
  }
  .b-mt5 {
    margin-top: 2.5px !important;
  }
  .b-mb5 {
    margin-bottom: 2.5px !important;
  }
  .b-ml5 {
    margin-left: 2.5px !important;
  }
  .b-mr5 {
    margin-right: 2.5px !important;
  }
  .b-p5 {
    padding: 2.5px !important;
  }
  .b-pt5 {
    padding-top: 2.5px !important;
  }
  .b-pb5 {
    padding-bottom: 2.5px !important;
  }
  .b-pl5 {
    padding-left: 2.5px !important;
  }
  .b-pr5 {
    padding-right: 2.5px !important;
  }
  .b-m10 {
    margin: 5px !important;
  }
  .b-mt10 {
    margin-top: 5px !important;
  }
  .b-mb10 {
    margin-bottom: 5px !important;
  }
  .b-ml10 {
    margin-left: 5px !important;
  }
  .b-mr10 {
    margin-right: 5px !important;
  }
  .b-p10 {
    padding: 5px !important;
  }
  .b-pt10 {
    padding-top: 5px !important;
  }
  .b-pb10 {
    padding-bottom: 5px !important;
  }
  .b-pl10 {
    padding-left: 5px !important;
  }
  .b-pr10 {
    padding-right: 5px !important;
  }
  .b-m15 {
    margin: 7.5px !important;
  }
  .b-mt15 {
    margin-top: 7.5px !important;
  }
  .b-mb15 {
    margin-bottom: 7.5px !important;
  }
  .b-ml15 {
    margin-left: 7.5px !important;
  }
  .b-mr15 {
    margin-right: 7.5px !important;
  }
  .b-p15 {
    padding: 7.5px !important;
  }
  .b-pt15 {
    padding-top: 7.5px !important;
  }
  .b-pb15 {
    padding-bottom: 7.5px !important;
  }
  .b-pl15 {
    padding-left: 7.5px !important;
  }
  .b-pr15 {
    padding-right: 7.5px !important;
  }
  .b-m20 {
    margin: 10px !important;
  }
  .b-mt20 {
    margin-top: 10px !important;
  }
  .b-mb20 {
    margin-bottom: 10px !important;
  }
  .b-ml20 {
    margin-left: 10px !important;
  }
  .b-mr20 {
    margin-right: 10px !important;
  }
  .b-p20 {
    padding: 10px !important;
  }
  .b-pt20 {
    padding-top: 10px !important;
  }
  .b-pb20 {
    padding-bottom: 10px !important;
  }
  .b-pl20 {
    padding-left: 10px !important;
  }
  .b-pr20 {
    padding-right: 10px !important;
  }
  .b-m25 {
    margin: 12.5px !important;
  }
  .b-mt25 {
    margin-top: 12.5px !important;
  }
  .b-mb25 {
    margin-bottom: 12.5px !important;
  }
  .b-ml25 {
    margin-left: 12.5px !important;
  }
  .b-mr25 {
    margin-right: 12.5px !important;
  }
  .b-p25 {
    padding: 12.5px !important;
  }
  .b-pt25 {
    padding-top: 12.5px !important;
  }
  .b-pb25 {
    padding-bottom: 12.5px !important;
  }
  .b-pl25 {
    padding-left: 12.5px !important;
  }
  .b-pr25 {
    padding-right: 12.5px !important;
  }
  .b-m30 {
    margin: 15px !important;
  }
  .b-mt30 {
    margin-top: 15px !important;
  }
  .b-mb30 {
    margin-bottom: 15px !important;
  }
  .b-ml30 {
    margin-left: 15px !important;
  }
  .b-mr30 {
    margin-right: 15px !important;
  }
  .b-p30 {
    padding: 15px !important;
  }
  .b-pt30 {
    padding-top: 15px !important;
  }
  .b-pb30 {
    padding-bottom: 15px !important;
  }
  .b-pl30 {
    padding-left: 15px !important;
  }
  .b-pr30 {
    padding-right: 15px !important;
  }
  .b-m35 {
    margin: 17.5px !important;
  }
  .b-mt35 {
    margin-top: 17.5px !important;
  }
  .b-mb35 {
    margin-bottom: 17.5px !important;
  }
  .b-ml35 {
    margin-left: 17.5px !important;
  }
  .b-mr35 {
    margin-right: 17.5px !important;
  }
  .b-p35 {
    padding: 17.5px !important;
  }
  .b-pt35 {
    padding-top: 17.5px !important;
  }
  .b-pb35 {
    padding-bottom: 17.5px !important;
  }
  .b-pl35 {
    padding-left: 17.5px !important;
  }
  .b-pr35 {
    padding-right: 17.5px !important;
  }
  .b-m40 {
    margin: 20px !important;
  }
  .b-mt40 {
    margin-top: 20px !important;
  }
  .b-mb40 {
    margin-bottom: 20px !important;
  }
  .b-ml40 {
    margin-left: 20px !important;
  }
  .b-mr40 {
    margin-right: 20px !important;
  }
  .b-p40 {
    padding: 20px !important;
  }
  .b-pt40 {
    padding-top: 20px !important;
  }
  .b-pb40 {
    padding-bottom: 20px !important;
  }
  .b-pl40 {
    padding-left: 20px !important;
  }
  .b-pr40 {
    padding-right: 20px !important;
  }
  .b-m45 {
    margin: 22.5px !important;
  }
  .b-mt45 {
    margin-top: 22.5px !important;
  }
  .b-mb45 {
    margin-bottom: 22.5px !important;
  }
  .b-ml45 {
    margin-left: 22.5px !important;
  }
  .b-mr45 {
    margin-right: 22.5px !important;
  }
  .b-p45 {
    padding: 22.5px !important;
  }
  .b-pt45 {
    padding-top: 22.5px !important;
  }
  .b-pb45 {
    padding-bottom: 22.5px !important;
  }
  .b-pl45 {
    padding-left: 22.5px !important;
  }
  .b-pr45 {
    padding-right: 22.5px !important;
  }
  .b-m50 {
    margin: 25px !important;
  }
  .b-mt50 {
    margin-top: 25px !important;
  }
  .b-mb50 {
    margin-bottom: 25px !important;
  }
  .b-ml50 {
    margin-left: 25px !important;
  }
  .b-mr50 {
    margin-right: 25px !important;
  }
  .b-p50 {
    padding: 25px !important;
  }
  .b-pt50 {
    padding-top: 25px !important;
  }
  .b-pb50 {
    padding-bottom: 25px !important;
  }
  .b-pl50 {
    padding-left: 25px !important;
  }
  .b-pr50 {
    padding-right: 25px !important;
  }
  .b-m55 {
    margin: 27.5px !important;
  }
  .b-mt55 {
    margin-top: 27.5px !important;
  }
  .b-mb55 {
    margin-bottom: 27.5px !important;
  }
  .b-ml55 {
    margin-left: 27.5px !important;
  }
  .b-mr55 {
    margin-right: 27.5px !important;
  }
  .b-p55 {
    padding: 27.5px !important;
  }
  .b-pt55 {
    padding-top: 27.5px !important;
  }
  .b-pb55 {
    padding-bottom: 27.5px !important;
  }
  .b-pl55 {
    padding-left: 27.5px !important;
  }
  .b-pr55 {
    padding-right: 27.5px !important;
  }
  .b-m60 {
    margin: 30px !important;
  }
  .b-mt60 {
    margin-top: 30px !important;
  }
  .b-mb60 {
    margin-bottom: 30px !important;
  }
  .b-ml60 {
    margin-left: 30px !important;
  }
  .b-mr60 {
    margin-right: 30px !important;
  }
  .b-p60 {
    padding: 30px !important;
  }
  .b-pt60 {
    padding-top: 30px !important;
  }
  .b-pb60 {
    padding-bottom: 30px !important;
  }
  .b-pl60 {
    padding-left: 30px !important;
  }
  .b-pr60 {
    padding-right: 30px !important;
  }
  .b-m65 {
    margin: 32.5px !important;
  }
  .b-mt65 {
    margin-top: 32.5px !important;
  }
  .b-mb65 {
    margin-bottom: 32.5px !important;
  }
  .b-ml65 {
    margin-left: 32.5px !important;
  }
  .b-mr65 {
    margin-right: 32.5px !important;
  }
  .b-p65 {
    padding: 32.5px !important;
  }
  .b-pt65 {
    padding-top: 32.5px !important;
  }
  .b-pb65 {
    padding-bottom: 32.5px !important;
  }
  .b-pl65 {
    padding-left: 32.5px !important;
  }
  .b-pr65 {
    padding-right: 32.5px !important;
  }
  .b-m70 {
    margin: 35px !important;
  }
  .b-mt70 {
    margin-top: 35px !important;
  }
  .b-mb70 {
    margin-bottom: 35px !important;
  }
  .b-ml70 {
    margin-left: 35px !important;
  }
  .b-mr70 {
    margin-right: 35px !important;
  }
  .b-p70 {
    padding: 35px !important;
  }
  .b-pt70 {
    padding-top: 35px !important;
  }
  .b-pb70 {
    padding-bottom: 35px !important;
  }
  .b-pl70 {
    padding-left: 35px !important;
  }
  .b-pr70 {
    padding-right: 35px !important;
  }
  .b-m75 {
    margin: 37.5px !important;
  }
  .b-mt75 {
    margin-top: 37.5px !important;
  }
  .b-mb75 {
    margin-bottom: 37.5px !important;
  }
  .b-ml75 {
    margin-left: 37.5px !important;
  }
  .b-mr75 {
    margin-right: 37.5px !important;
  }
  .b-p75 {
    padding: 37.5px !important;
  }
  .b-pt75 {
    padding-top: 37.5px !important;
  }
  .b-pb75 {
    padding-bottom: 37.5px !important;
  }
  .b-pl75 {
    padding-left: 37.5px !important;
  }
  .b-pr75 {
    padding-right: 37.5px !important;
  }
  .b-m80 {
    margin: 40px !important;
  }
  .b-mt80 {
    margin-top: 40px !important;
  }
  .b-mb80 {
    margin-bottom: 40px !important;
  }
  .b-ml80 {
    margin-left: 40px !important;
  }
  .b-mr80 {
    margin-right: 40px !important;
  }
  .b-p80 {
    padding: 40px !important;
  }
  .b-pt80 {
    padding-top: 40px !important;
  }
  .b-pb80 {
    padding-bottom: 40px !important;
  }
  .b-pl80 {
    padding-left: 40px !important;
  }
  .b-pr80 {
    padding-right: 40px !important;
  }
  .b-m85 {
    margin: 42.5px !important;
  }
  .b-mt85 {
    margin-top: 42.5px !important;
  }
  .b-mb85 {
    margin-bottom: 42.5px !important;
  }
  .b-ml85 {
    margin-left: 42.5px !important;
  }
  .b-mr85 {
    margin-right: 42.5px !important;
  }
  .b-p85 {
    padding: 42.5px !important;
  }
  .b-pt85 {
    padding-top: 42.5px !important;
  }
  .b-pb85 {
    padding-bottom: 42.5px !important;
  }
  .b-pl85 {
    padding-left: 42.5px !important;
  }
  .b-pr85 {
    padding-right: 42.5px !important;
  }
  .b-m90 {
    margin: 45px !important;
  }
  .b-mt90 {
    margin-top: 45px !important;
  }
  .b-mb90 {
    margin-bottom: 45px !important;
  }
  .b-ml90 {
    margin-left: 45px !important;
  }
  .b-mr90 {
    margin-right: 45px !important;
  }
  .b-p90 {
    padding: 45px !important;
  }
  .b-pt90 {
    padding-top: 45px !important;
  }
  .b-pb90 {
    padding-bottom: 45px !important;
  }
  .b-pl90 {
    padding-left: 45px !important;
  }
  .b-pr90 {
    padding-right: 45px !important;
  }
  .b-m95 {
    margin: 47.5px !important;
  }
  .b-mt95 {
    margin-top: 47.5px !important;
  }
  .b-mb95 {
    margin-bottom: 47.5px !important;
  }
  .b-ml95 {
    margin-left: 47.5px !important;
  }
  .b-mr95 {
    margin-right: 47.5px !important;
  }
  .b-p95 {
    padding: 47.5px !important;
  }
  .b-pt95 {
    padding-top: 47.5px !important;
  }
  .b-pb95 {
    padding-bottom: 47.5px !important;
  }
  .b-pl95 {
    padding-left: 47.5px !important;
  }
  .b-pr95 {
    padding-right: 47.5px !important;
  }
  .b-m100 {
    margin: 50px !important;
  }
  .b-mt100 {
    margin-top: 50px !important;
  }
  .b-mb100 {
    margin-bottom: 50px !important;
  }
  .b-ml100 {
    margin-left: 50px !important;
  }
  .b-mr100 {
    margin-right: 50px !important;
  }
  .b-p100 {
    padding: 50px !important;
  }
  .b-pt100 {
    padding-top: 50px !important;
  }
  .b-pb100 {
    padding-bottom: 50px !important;
  }
  .b-pl100 {
    padding-left: 50px !important;
  }
  .b-pr100 {
    padding-right: 50px !important;
  }
}
.b-d_ib {
  display: inline-block;
}

.b-pc_br {
  display: inline;
}
@media screen and (max-width: 960px) {
  .b-pc_br {
    display: none;
  }
}

.b-sp_br {
  display: none;
}
@media screen and (max-width: 960px) {
  .b-sp_br {
    display: inline;
  }
}

.b-link__arrow01 {
  display: inline-block;
  padding-right: 30px;
  position: relative;
}
.b-link__arrow01::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: var(--blue);
  transition: all 0.3s;
}
.b-link__arrow01 span::before, .b-link__arrow01 span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.3s;
}
.b-link__arrow01 span::before {
  right: 0;
  width: 18px;
  height: 18px;
  background-color: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 10px;
}
.b-link__arrow01 span::after {
  right: 8px;
  width: 5px;
  height: 5px;
  border-top: 1px solid;
  border-right: 1px solid;
  border-color: var(--white);
  transform: rotate(45deg);
}
@media (any-hover: hover) and (pointer: fine) {
  .b-link__arrow01:hover::after {
    width: 100%;
  }
  .b-link__arrow01:hover span::before {
    background-color: var(--white);
  }
  .b-link__arrow01:hover span::after {
    border-color: var(--blue);
  }
}

.b-link_external01 {
  text-decoration: underline !important;
}
.b-link_external01 span {
  background-image: url("/wp-content/themes/fuk-humanitude/common/images/ico_window01.svg");
  background-position: center right;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  padding-right: 20px;
}
@media (any-hover: hover) and (pointer: fine) {
  .b-link_external01:hover {
    text-decoration: none !important;
  }
}

/************************************************

	text

*************************************************/
.b-center {
  text-align: center !important;
}

.b-left {
  text-align: left !important;
}

.b-right {
  text-align: right !important;
}

.b-small {
  font-size: 0.8em;
}

.b-big {
  font-size: 1.2em;
}

.b-bold {
  font-weight: bold;
}

/************************************************

	header

*************************************************/
.header {
  background-color: var(--white);
}
.header .haeder__inner {
  max-width: 1280px;
  width: 100%;
  margin-inline: auto;
  padding: 23px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .header .haeder__inner {
    padding: 20px;
  }
}
@media screen and (max-width: 640px) {
  .header .haeder__inner {
    padding: 12px;
  }
}
.header .header__logo {
  line-height: 1;
}
.header .header__logo a {
  display: inline-block;
}
.header .header__logo a img {
  transition: transform 0.3s;
}
@media screen and (min-width: 641px) {
  .header .header__logo a:hover img {
    transform: scale(1.05);
  }
}
@media screen and (max-width: 640px) {
  .header .header__logo a img {
    height: 24px;
    width: auto;
  }
}
.header {
  /************************************************

  	wovn language

  *************************************************/
}
@media screen and (max-width: 960px) {
  .header .wovn-languages {
    display: none !important;
  }
}
.header .wovn-languages > button {
  color: var(--blue);
  border-right: 1px solid var(--blue);
  padding: 0px 20px 0px 15px;
  line-height: 1.2;
}
.header .wovn-languages > button:first-child {
  border-left: 1px solid var(--blue);
}
@media screen and (min-width: 641px) {
  .header .wovn-languages > button:hover span::after {
    width: 100%;
  }
}
.header .wovn-languages .wovn-switch {
  display: inline-block;
  position: relative;
}
.header .wovn-languages .wovn-switch::after {
  content: "";
  display: block;
  width: 0px;
  height: 1px;
  background-color: var(--blue);
  transition: 0.3s;
  position: absolute;
  left: 0;
  bottom: -5px;
}

/************************************************

	footer

*************************************************/
.footer {
  background-color: var(--white);
}
.footer .footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1280px;
  width: 100%;
  margin-inline: auto;
  padding: 0 40px 60px;
}
.footer .footer__copy {
  text-align: right;
  color: var(--gray);
}
@media screen and (max-width: 960px) {
  .footer .footer__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 640px) {
  .footer .footer__inner {
    padding-top: 30px;
    flex-direction: column;
    align-items: center;
  }
  .footer .footer__copy {
    margin-top: 20px;
    text-align: center;
    font-size: 1.4rem;
  }
}

/************************************************

	section

*************************************************/
.section__inner {
  padding: 0 40px;
  max-width: 980px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 960px) {
  .section__inner {
    padding: 0 20px;
  }
}

.section__inner02 {
  padding: 0 40px;
  max-width: 1280px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 960px) {
  .section__inner02 {
    padding: 0 20px;
  }
}

.p-top .s-sec01 {
  background-image: url("/wp-content/themes/fuk-humanitude/images/top/bg_mv_img01.svg"), url("/wp-content/themes/fuk-humanitude/common/images/bg_img_red01.svg");
  background-repeat: no-repeat;
  background-position: top center, bottom center;
  background-size: 1920px auto, 1920px auto;
  padding: 45px 0 10px;
}
.p-top .s-sec01 picture {
  display: block;
  max-width: 980px;
  margin-inline: auto;
  position: relative;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .p-top .s-sec01 {
    background-size: 155% auto, 150% auto;
    padding: 3% 0 0;
  }
}
@media screen and (max-width: 640px) {
  .p-top .s-sec01 {
    background-size: 250% auto, 150% auto;
    background-position: top left 40%, bottom center;
    padding-top: 4%;
  }
  .p-top .s-sec01 .section__inner02 {
    padding: 0;
  }
}
.p-top .s-sec02 {
  background-image: url("/wp-content/themes/fuk-humanitude/common/images/bg_img_white01.svg");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 1920px auto;
  background-color: var(--bg_red);
  padding: 50px 0 150px;
  /*transform: translateY(-1px);*/ /*隙間ができる対策*/
}
@media screen and (max-width: 960px) {
  .p-top .s-sec02 {
    background-size: 150% auto;
    padding: 8% 0 20%;
  }
}
@media screen and (max-width: 640px) {
  .p-top .s-sec02 {
    padding: 15% 0 25%;
  }
}
.p-top .s-sec03 {
  background-image: url("/wp-content/themes/fuk-humanitude/common/images/bg_img_blue01.svg");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 1920px auto;
  padding: 50px 0 150px;
}
@media screen and (max-width: 960px) {
  .p-top .s-sec03 {
    background-size: 150% auto;
    padding: 8% 0 20%;
  }
}
@media screen and (max-width: 640px) {
  .p-top .s-sec03 {
    padding: 15% 0 25%;
  }
}
.p-top .s-sec04 {
  background-image: url("/wp-content/themes/fuk-humanitude/common/images/bg_img_white01.svg");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 1920px auto;
  background-color: var(--bg_blue);
  padding: 50px 0 150px;
}
@media screen and (max-width: 960px) {
  .p-top .s-sec04 {
    background-size: 150% auto;
    padding: 8% 0 20%;
  }
}
@media screen and (max-width: 640px) {
  .p-top .s-sec04 {
    padding: 15% 0 25%;
  }
}

/************************************************

	title

*************************************************/
/**[class*="ttl"] {
  font-feature-settings: "palt"; "Zen Kaku Gothic New"には効かない
}*/
.h1__ttl01 {
  line-height: 1.4;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 80px;
}
.h1__ttl01 p {
  font-size: 1.6rem;
  letter-spacing: 0.15rem;
}
.h1__ttl01 h1 {
  font-size: 3rem;
}
.h1__ttl01.h1__ttl01--light_blue p {
  color: var(--light_blue);
}
@media screen and (max-width: 960px) {
  .h1__ttl01 {
    margin-bottom: 50px;
  }
  .h1__ttl01 p {
    font-size: 1.4rem;
  }
  .h1__ttl01 h1 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 640px) {
  .h1__ttl01 {
    margin-bottom: 10vw;
  }
  .h1__ttl01 p {
    font-size: 1.2rem;
  }
  .h1__ttl01 h1 {
    font-size: 1.8rem;
  }
}

.h2__ttl01 {
  text-align: center;
  line-height: 1.4;
  margin-bottom: 50px;
}
.h2__ttl01 h2 {
  font-size: 3.8rem;
  color: var(--blue);
  letter-spacing: 0.2rem;
}
.h2__ttl01 p {
  font-size: 1.8rem;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.4rem;
  margin-top: 5px;
}
@media screen and (max-width: 960px) {
  .h2__ttl01 h2 {
    font-size: 3rem;
  }
  .h2__ttl01 p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 640px) {
  .h2__ttl01 {
    margin-bottom: 30px;
  }
  .h2__ttl01 h2 {
    font-size: 2.4rem;
  }
  .h2__ttl01 p {
    font-size: 1.4rem;
  }
}

.h3__ttl01 {
  font-size: 2.5rem;
  text-align: center;
  color: var(--white);
  margin-bottom: 50px;
}
.h3__ttl01 span.h3__ttl01__bg {
  display: inline-block;
  background-color: var(--red);
  color: var(--white);
  padding: 10px 50px 15px;
  border-radius: 50px;
}
.h3__ttl01 span:not([class]) {
  font-size: 1.2em;
}
.h3__ttl01 span:not([class]) b {
  font-size: 1.2em;
}
@media screen and (max-width: 960px) {
  .h3__ttl01 {
    font-size: 2rem;
  }
  .h3__ttl01 span.h3__ttl01__bg {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 960px) {
  .h3__ttl01 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    line-height: 1.4;
  }
  .h3__ttl01 span.h3__ttl01__bg {
    padding-top: 15px;
  }
}

.h3__ttl02 {
  font-size: 2.2rem;
  text-align: center;
  color: var(--blue);
  margin-bottom: 30px;
}
.h3__ttl02 span {
  position: relative;
  padding-bottom: 5px;
}
.h3__ttl02 span::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-image: linear-gradient(to right, var(--blue), var(--blue) 2px, #fff 2px, #fff 6px);
  background-size: 6px 2px;
}
@media screen and (max-width: 960px) {
  .h3__ttl02 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}

.h3__ttl03 {
  font-size: 2rem;
  color: var(--blue);
  margin: 50px 0 15px;
  padding-left: 1em;
  text-indent: -1em;
}
.h3__ttl03::before {
  content: "・";
  color: var(--red);
}
@media screen and (max-width: 960px) {
  .h3__ttl03 {
    font-size: 1.8rem;
    margin: 40px 0 10px;
  }
}

/************************************************

	copy

*************************************************/
.top__lead01 {
  font-size: 1.8rem;
  line-height: 2;
}
@media screen and (max-width: 960px) {
  .top__lead01 {
    font-size: 1.6rem;
  }
}

/*.top__lead02{
	font-size: 2.0rem;
	line-height: 2;
	font-weight: 700;

	@include mq(){
		font-size: 1.8rem;
	}
}*/
/************************************************

	list

*************************************************/
.top__list01 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 20px;
}
.top__list01 li {
  /*width: calc(50% - 10px);*/
  width: calc((100% - 60px) / 4);
}
.top__list01 li a {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90px;
  padding: 10px 50px 10px 20px;
  text-align: center;
  color: var(--blue);
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.3;
  border: 1px solid;
  border-radius: 10px;
  position: relative;
  transition: box-shadow 0.2s;
}
.top__list01 li a::before, .top__list01 li a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.3s;
}
.top__list01 li a::before {
  right: 20px;
  width: 18px;
  height: 18px;
  background-color: var(--blue);
  border: 1px solid;
  border-radius: 10px;
}
.top__list01 li a::after {
  right: 28px;
  width: 5px;
  height: 5px;
  border-top: 1px solid;
  border-right: 1px solid;
  border-color: var(--white);
  transform: rotate(45deg);
}
@media screen and (min-width: 641px) {
  .top__list01 li a:hover {
    box-shadow: 0 0 0 1px;
  }
  .top__list01 li a:hover::before {
    background-color: var(--white);
  }
  .top__list01 li a:hover::after {
    border-color: var(--blue);
  }
}
@media screen and (max-width: 1280px) {
  .top__list01 li a {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 960px) {
  .top__list01 li {
    width: calc((100% - 20px) / 2);
  }
  .top__list01 li a {
    /*font-size: 1.6rem;*/
    min-height: 70px;
  }
}
@media screen and (max-width: 640px) {
  .top__list01 li {
    width: 85%;
    margin-inline: auto;
  }
}

.dl__style01 {
  font-size: 1.8rem;
  line-height: 2;
}
.dl__style01 dt {
  font-weight: bold;
}
.dl__style01 dd {
  padding-left: 1em;
  text-indent: -1em;
}
.dl__style01 dd::before {
  content: "・";
}
@media screen and (max-width: 640px) {
  .dl__style01 {
    font-size: 1.6rem;
  }
}

/************************************************

	box

*************************************************/
.top__box01__outer {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 80px;
}
@media screen and (max-width: 1280px) {
  .top__box01__outer {
    gap: 50px 50px;
  }
}
@media screen and (max-width: 960px) {
  .top__box01__outer {
    flex-direction: column;
    align-items: center;
  }
}
.top__box01__outer {
  /*	@include mq() {
  		gap: 6% 8%;
  	}*/
}

.top__box01 {
  display: flex;
  justify-content: space-between;
  /*align-items: center;*/
  column-gap: 20px;
  width: calc(50% - 40px);
}
@media screen and (max-width: 1280px) {
  .top__box01 {
    column-gap: 10px;
    width: calc(50% - 25px);
  }
}
@media screen and (max-width: 960px) {
  .top__box01 {
    width: 80%;
  }
}
@media screen and (max-width: 640px) {
  .top__box01 {
    width: 100%;
  }
}
.top__box01 {
  /*&:first-of-type {
  	margin-top: 50px;

  	@include mq(){
  		margin-top: 40px;
  	}
  }

  &:not(:last-of-type){
  	margin-bottom: 60px;
  }*/
  /*&:nth-of-type(even){
  	flex-direction: row-reverse;

  	.top__box01__unit02{
  		margin-left: 20px;
  		margin-right: 0;
  	}
  }*/
}
.top__box01 .top__box01__unit01 {
  max-width: 300px;
  flex-shrink: 3;
}
.top__box01 .top__box01__unit01 dl dt {
  text-align: center;
  color: var(--red);
  margin-bottom: 20px;
  font-size: 2.6rem;
  font-weight: 700;
}
.top__box01 .top__box01__unit01 dl dd {
  line-height: 2;
  font-size: 1.8rem;
}
@media screen and (max-width: 960px) {
  .top__box01 .top__box01__unit01 dl dt {
    margin-bottom: 10px;
  }
}
.top__box01 .top__box01__unit02 {
  max-width: 250px;
  flex-shrink: 1;
}
@media screen and (max-width: 960px) {
  .top__box01 .top__box01__unit01 {
    max-width: none;
    width: 70%;
  }
  .top__box01 .top__box01__unit01 dl dt {
    font-size: 2rem;
  }
  .top__box01 .top__box01__unit01 dl dd {
    font-size: 1.6rem;
  }
  .top__box01 .top__box01__unit02 {
    max-width: none;
    width: 30%;
  }
}
@media screen and (max-width: 640px) {
  .top__box01 {
    flex-direction: column;
    row-gap: 20px;
  }
  .top__box01 .top__box01__unit01 {
    width: 100%;
  }
  .top__box01 .top__box01__unit02 {
    width: 60%;
    margin-inline: auto;
    text-align: center;
  }
}

.top__box02 {
  background-color: var(--white);
  padding: 40px;
  border-radius: 30px;
  margin-top: 30px;
  line-height: 2;
}
.top__box02.top__box02--blue {
  border: 1px solid var(--blue);
}
@media screen and (max-width: 960px) {
  .top__box02 {
    padding: 40px 20px;
    border-radius: 15px;
  }
}
.top__box02 dl {
  font-size: 1.8rem;
  display: flex;
}
.top__box02 dl:not(:last-of-type) {
  margin-bottom: 10px;
}
.top__box02 dl dt {
  font-weight: 700;
  width: 5.5em;
  flex-shrink: 0;
}
.top__box02 dl dt::after {
  content: "：";
}
.top__box02 dl dd .mail__link01 img {
  vertical-align: middle;
  width: 208px;
  height: 18px;
}
.top__box02 dl dd .mail__link01::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--black);
  transition: width 0.3s;
}
@media screen and (min-width: 641px) {
  .top__box02 dl dd .mail__link01:hover::after {
    width: 0;
  }
}
@media screen and (max-width: 960px) {
  .top__box02 dl {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 640px) {
  .top__box02 dl {
    flex-direction: column;
  }
  .top__box02 dl:not(:last-of-type) {
    margin-bottom: 20px;
  }
  .top__box02 dl dt {
    width: 100%;
  }
  .top__box02 dl dd {
    width: fit-content;
  }
}

.top__box03 {
  text-align: center;
  font-size: 1.8rem;
  color: var(--blue);
  font-size: 2rem;
  line-height: 2;
  font-weight: 700;
  padding: 150px 0 80px;
}
@media screen and (max-width: 960px) {
  .top__box03 {
    padding: 15% 0 0;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 640px) {
  .top__box03 {
    text-align: left;
  }
}

.top__box04 {
  width: fit-content;
  margin-inline: auto;
}

/************************************************

	under

*************************************************/
.p-under {
  background-color: var(--bg_blue);
}
.p-under .s-sec01 {
  background-image: url("/wp-content/themes/fuk-humanitude/common/images/bg_img_white01.svg");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 1920px auto;
  background-color: var(--bg_blue);
  padding: 0 0 150px;
}
@media screen and (max-width: 960px) {
  .p-under .s-sec01 {
    background-size: 150% auto;
    padding: 0 0 20%;
  }
}
@media screen and (max-width: 640px) {
  .p-under .s-sec01 {
    padding: 0 0 25%;
  }
}
.p-under .under__title__box01 {
  background-image: url("/wp-content/themes/fuk-humanitude/common/images/bg_under_title01.svg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 1920px auto;
  padding: 0;
  min-height: 250px;
  display: flex;
  align-items: center;
  margin-bottom: 80px;
}
.p-under .under__title__box01 .h1__ttl01 {
  margin-bottom: 20px;
}
.p-under .under__title__box01 .h1__ttl01 p {
  margin-top: 10px;
}
@media screen and (max-width: 960px) {
  .p-under .under__title__box01 {
    background-size: 180% auto;
    min-height: 24vw;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 640px) {
  .p-under .under__title__box01 {
    background-size: 280% auto;
    min-height: 37vw;
    margin-bottom: 30px;
  }
}
.p-under .under__box01 {
  background-color: #fff;
  border-radius: 30px;
  padding: 80px 0;
}
@media screen and (max-width: 960px) {
  .p-under .under__box01 {
    padding: 40px 0;
  }
}
@media screen and (max-width: 640px) {
  .p-under .under__box01 {
    border-radius: 20px;
  }
}

/************************************************

	privacy

*************************************************/
@media screen and (max-width: 640px) {
  .p-privacy .s-sec01 .h3__ttl02 {
    font-size: 1.6rem;
  }
}

/************************************************

	under

*************************************************/
.p-test .swiper {
  height: 53vw;
  width: 80%;
}
.p-test .swiper-slide {
  height: 50%;
}
@media screen and (max-width: 640px) {
  .p-test .swiper-slide {
    height: 100%;
  }
}
.p-test .swiper-slide img {
  height: auto;
  width: 100%;
}
/*# sourceMappingURL=style.css.map */
