@charset "UTF-8";
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}

*, :after, :before {
  background-repeat: no-repeat;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

:after, :before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  padding: 0;
  margin: 0;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

hr {
  overflow: visible;
}

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

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden], template {
  display: none;
}

abbr[title] {
  border-bottom: 1px dotted;
  text-decoration: none;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:active, a:hover {
  outline-width: 0;
}

code, kbd, pre, samp {
  font-family: monospace,monospace;
}

b, strong {
  font-weight: bolder;
}

dfn {
  font-style: italic;
}

mark {
  background-color: #ff0;
  color: #000;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

input {
  border-radius: 0;
}

[role=button], [type=button], [type=reset], [type=submit], button {
  cursor: pointer;
}

[disabled] {
  cursor: default;
}

[type=number] {
  width: auto;
}

[type=search] {
  -webkit-appearance: textfield;
}

[type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button, input, optgroup, select, textarea {
  font: inherit;
}

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: 0;
  padding: 0;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=reset], [type=submit], button, html [type=button] {
  -webkit-appearance: button;
}

button, select {
  /*text-transform:none*/
}

button, input, select, textarea {
  /*background-color:transparent;border-style:none;color:inherit*/
}

select {
  /*-moz-appearance:none;-webkit-appearance:none*/
}

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

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

svg:not(:root) {
  overflow: hidden;
}

audio, canvas, progress, video {
  display: inline-block;
}

@media screen {
  [hidden~=screen] {
    display: inherit;
  }
  [hidden~=screen]:not(:active):not(:focus):not(:target) {
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled] {
  cursor: default;
}

::-moz-selection {
  background-color: #b3d4fc;
  color: #000;
  text-shadow: none;
}

::selection {
  background-color: #b3d4fc;
  color: #000;
  text-shadow: none;
}

html {
  font-size: 62.5%;
}

body {
  position: relative;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Verdana, Meiryo, sans-serif;
  font-size: 1.6rem;
  color: #000;
  min-width: 1170px;
}

@media screen and (max-width: 500px) {
  body {
    min-width: 375px;
    width: 100%;
  }
}

html, body {
  width: 100%;
}

main {
  display: block;
}

a {
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 1;
}

a:hover {
  opacity: 0.7;
}

input[type="date"],
input[type="datetime"],
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  resize: vertical;
}

input[type='checkbox'] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
}

input[type='radio'] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
}

input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer;
}

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

select {
  padding-right: 25px;
  background-image: url(../images/icon-chevdown.svg);
  background-position: 98%;
  background-size: 10px;
  background-repeat: no-repeat;
}

body {
  -webkit-animation: intro 1s ease;
          animation: intro 1s ease;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes intro {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes intro {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.anim {
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  opacity: 0;
  -webkit-transition: all 1s ease 0.3s;
  transition: all 1s ease 0.3s;
}

.anim.inview {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.cmn-inner {
  position: relative;
  width: 90%;
  margin: 0 auto;
  min-width: 1000px;
}

@media screen and (max-width: 500px) {
  .cmn-inner {
    min-width: auto;
  }
}

.cmn-inner--m {
  max-width: 70%;
}

@media screen and (max-width: 500px) {
  .cmn-inner--m {
    max-width: 90%;
  }
}

.cmn-inner--s {
  max-width: 40%;
  min-width: 0;
}

@media screen and (max-width: 500px) {
  .cmn-inner--s {
    max-width: 90%;
  }
}

.cmn-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 1000;
  min-width: 1170px;
}

@media screen and (max-width: 500px) {
  .cmn-header {
    display: none;
  }
}

.cmn-header_inner {
  position: relative;
  width: 90%;
  height: 60px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cmn-header ._logo {
  position: absolute;
  top: 100%;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cmn-header ._logo.hide {
  -webkit-transform: scale(0);
          transform: scale(0);
}

.cmn-header ._smallLogo {
  visibility: hidden;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cmn-header ._smallLogo.active {
  visibility: visible;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.cmn-header ._nav ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.cmn-header ._nav a {
  font-family: "Helvetica Neue", Helvetica, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Verdana, Meiryo, sans-serif;
  font-weight: bold;
  font-size: 1.4rem;
  color: #0F60AE;
}

.cmn-spHeader {
  display: none;
}

@media screen and (max-width: 500px) {
  .cmn-spHeader {
    display: block;
    width: 100%;
    height: 100px;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
  }
}

.cmn-spHeader_inner {
  width: 95%;
  height: 100px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cmn-spHeader_humb {
  margin-right: 15px;
}

.cmn-spHeader_logo a {
  display: block;
}

.cmn-spHeader_logo a img {
  display: block;
}

.cmn-main {
  padding-top: 60px;
}

@media screen and (max-width: 500px) {
  .cmn-main {
    padding-top: 100px;
  }
}

.cmn-main--page {
  padding-top: 200px;
  padding-bottom: 60px;
}

@media screen and (max-width: 500px) {
  .cmn-main--page {
    padding-top: 130px;
    padding-bottom: 40px;
  }
}

.cmn-footer {
  padding: 50px 0;
  padding-bottom: 10px;
}

@media screen and (max-width: 500px) {
  .cmn-footer {
    padding-bottom: 30px;
  }
}

.cmn-footer_logo {
  text-align: center;
  margin-bottom: 50px;
}

@media screen and (max-width: 500px) {
  .cmn-footer_logo img {
    width: 167px;
  }
}

.cmn-footer_sns {
  position: absolute;
  left: 0;
  bottom: 20px;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}

@media screen and (max-width: 500px) {
  .cmn-footer_sns {
    position: relative;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.cmn-footer_sns a {
  display: block;
}

.cmn-footer_sns a img {
  width: 35px;
}

@media screen and (max-width: 500px) {
  .cmn-footer_sns a img {
    width: 22px;
  }
}

.cmn-footer_copy {
  text-align: center;
  font-size: 1.3rem;
  color: #0F60AE;
}

@media screen and (max-width: 500px) {
  .cmn-footer_copy {
    font-size: 1rem;
  }
}

.cmn-floatBtns {
  position: fixed;
  top: 80px;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 500;
}

@media screen and (max-width: 500px) {
  .cmn-floatBtns {
    top: 15px;
    z-index: 1000;
    padding-bottom: 10px;
    padding-left: 15px;
    background-color: #fff;
    border-radius: 10px;
  }
}

.cmn-floatBtns a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100px;
  height: 50px;
  background-color: #0F60AE;
  color: #fff;
  border-radius: 8px 0 0 8px;
  font-size: 1.2rem;
  margin: 10px 0;
}

@media screen and (max-width: 500px) {
  .cmn-floatBtns a {
    height: 35px;
    font-size: 1rem;
    margin: 5px 0;
  }
}

.cmn-floatBtns_contact {
  font-weight: bold;
}

.cmn-floatBtns_contact span {
  width: 50px;
  margin-right: 5px;
  line-height: 1.2em;
}

@media screen and (max-width: 500px) {
  .cmn-floatBtns_contact span {
    width: auto;
    margin-right: 0;
  }
  .cmn-floatBtns_contact img {
    display: none;
  }
}

.cmn-floatBtns_search {
  font-family: "Helvetica Neue", Helvetica, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Verdana, Meiryo, sans-serif;
  font-weight: bold;
}

.cmn-floatBtns_search span {
  margin-left: 5px;
}

.cmn-goTop {
  position: fixed;
  right: 30px;
  bottom: 30px;
}

@media screen and (max-width: 500px) {
  .cmn-goTop {
    right: 20px;
    bottom: 20px;
  }
}

.cmn-inner {
  position: relative;
  width: 90%;
  margin: 0 auto;
}

.cmn-drawer {
  display: none;
}

@media screen and (max-width: 500px) {
  .cmn-drawer {
    display: block;
    width: 100%;
    height: 0vh;
    overflow-y: scroll;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #0F60AE;
    z-index: 1100;
    -webkit-transition: height 0.3s ease;
    transition: height 0.3s ease;
  }
  .cmn-drawer.active {
    height: 100vh;
  }
  .cmn-drawer_top {
    width: 95%;
    height: 100px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .cmn-drawer_close {
    margin-right: 15px;
  }
  .cmn-drawer_logo a {
    display: block;
  }
  .cmn-drawer_logo a img {
    display: block;
  }
  .cmn-drawer_floatBtns {
    position: absolute;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    top: 15px;
    z-index: 1000;
  }
  .cmn-drawer_floatBtns a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100px;
    background-color: #fff;
    color: #0F60AE;
    border-radius: 8px 0 0 8px;
    height: 35px;
    font-size: 1rem;
    margin: 5px 0;
  }
  .cmn-drawer_floatBtns ._contact {
    font-weight: bold;
  }
  .cmn-drawer_floatBtns ._contact span {
    width: auto;
    margin-right: 0;
  }
  .cmn-drawer_floatBtns ._contact img {
    display: none;
  }
  .cmn-drawer_floatBtns ._search {
    font-family: "Helvetica Neue", Helvetica, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Verdana, Meiryo, sans-serif;
    font-weight: bold;
  }
  .cmn-drawer_floatBtns ._search span {
    margin-left: 5px;
  }
  .cmn-drawer_content {
    width: 90%;
    margin: 0 auto;
    margin-top: 20px;
  }
  .cmn-drawer_sns {
    text-align: right;
    margin: 20px 0;
  }
  .cmn-drawer_sns a {
    margin-left: 10px;
  }
  .cmn-drawer_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .cmn-drawer_list a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100px;
    border-radius: 10px;
    border: 1px solid #fff;
    color: #fff;
  }
  .cmn-drawer_list a ._en {
    font-family: "Helvetica Neue", Helvetica, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Verdana, Meiryo, sans-serif;
    font-size: 2.8rem;
    font-weight: bold;
    text-align: center;
    line-height: 1em;
  }
  .cmn-drawer_list a ._jp {
    font-size: 1.2rem;
  }
  .cmn-drawer_list ._half {
    width: calc(50% - 10px);
  }
  .cmn-drawer_list ._full {
    width: 100%;
  }
}

.cmn-bread {
  position: absolute;
  top: 70px;
  left: 0px;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cmn-bread li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.2rem;
}

.cmn-bread li:after {
  content: ">";
  color: #0F60AE;
  padding: 0 5px;
}

.cmn-bread li:last-child::after {
  display: none;
}

.cmn-bread li a, .cmn-bread li span {
  color: #0F60AE;
}

.cmn-bread li a {
  text-decoration: underline;
}

.cmn-pageTtl {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 50px;
}

@media screen and (max-width: 500px) {
  .cmn-pageTtl {
    margin-bottom: 30px;
  }
}

.cmn-pageTtl ._en {
  font-family: "Helvetica Neue", Helvetica, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Verdana, Meiryo, sans-serif;
  font-size: 5rem;
  color: #0F60AE;
  margin-bottom: 10px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 500px) {
  .cmn-pageTtl ._en {
    font-size: 2.8rem;
    margin-bottom: 5px;
  }
}

.cmn-pageTtl ._jp {
  font-size: 1.3rem;
  font-weight: bold;
}

@media screen and (max-width: 500px) {
  .cmn-pageTtl ._jp {
    font-size: 1.2rem;
  }
}

.cmn-pageTopSearchForm {
  width: 100%;
  max-width: 400px;
  margin: 50px auto;
}

.cmn-pageTopSearchForm form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.cmn-pageTopSearchForm form input {
  width: calc(100% - 40px);
  height: 40px;
  border: none;
  padding: 5px 10px;
  border-radius: 8px 0 0 8px;
  background-color: #0F60AE;
  color: #fff;
  font-size: 1.2rem;
}

.cmn-pageTopSearchForm form input::-webkit-input-placeholder {
  color: #fff;
}

.cmn-pageTopSearchForm form input:-ms-input-placeholder {
  color: #fff;
}

.cmn-pageTopSearchForm form input::-ms-input-placeholder {
  color: #fff;
}

.cmn-pageTopSearchForm form input::placeholder {
  color: #fff;
}

.cmn-pageTopSearchForm form button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 0 8px 8px 0;
  background-color: #0F60AE;
  color: #fff;
}

.cmn-locationList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  list-style: none;
}

@media screen and (max-width: 500px) {
  .cmn-locationList {
    gap: 10px;
  }
}

.cmn-locationList_item {
  width: calc((100% - 30px) / 3);
  border-radius: 10px;
  overflow: hidden;
}

@media screen and (max-width: 500px) {
  .cmn-locationList_item {
    width: calc(50% - 5px);
  }
}

.cmn-locationList_item a {
  display: block;
  position: relative;
  width: 100%;
}

.cmn-locationList_item a:hover {
  opacity: 1;
}

.cmn-locationList_item a:hover ._screen {
  opacity: 1;
}

.cmn-locationList_item img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.cmn-locationList_item ._screen {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 96, 174, 0.7);
  color: #fff;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.cmn-locationList_item ._screen::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  height: 50px;
  border-left: 1px solid #fff;
}

@media screen and (max-width: 500px) {
  .cmn-locationList_item ._screen::before {
    height: 15px;
  }
}

.cmn-locationList_item ._screen p {
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.cmn-locationList_item ._screen h3 {
  font-size: 1.5rem;
}

.cmn-moreBtn {
  margin-top: 30px;
}

@media screen and (max-width: 500px) {
  .cmn-moreBtn {
    text-align: right;
  }
}

.cmn-moreBtn a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #0F60AE;
  font-size: 1.6rem;
  font-weight: bold;
}

@media screen and (max-width: 500px) {
  .cmn-moreBtn a {
    font-size: 1.2rem;
  }
}

.cmn-moreBtn a span {
  margin-right: 10px;
  display: inline-block;
  padding: 5px 0;
  border-bottom: 2px solid #0F60AE;
}

.home-hero_inner {
  position: relative;
  width: 90%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

@media screen and (max-width: 500px) {
  .home-hero_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.home-hero_left {
  width: 300px;
  padding-top: 200px;
}

@media screen and (max-width: 500px) {
  .home-hero_left {
    padding-top: 30px;
    width: 100%;
    padding-bottom: 30px;
  }
}

.home-hero_search {
  position: relative;
  padding-left: 30px;
  padding-right: 50px;
  border-left: 1px solid #0F60AE;
}

.home-hero_search ._ttl {
  position: absolute;
  font-family: "Helvetica Neue", Helvetica, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Verdana, Meiryo, sans-serif;
  font-size: 2rem;
  font-weight: bold;
  color: #0F60AE;
  left: -63px;
  top: calc(50% - 1rem);
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  background-color: #fff;
  padding: 0 20px;
}

.home-hero_search ._items dt {
  font-family: "Helvetica Neue", Helvetica, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Verdana, Meiryo, sans-serif;
  font-size: 2rem;
  color: #0F60AE;
  font-weight: bold;
  margin: 10px 0;
}

.home-hero_search ._items dt span {
  font-size: 1.1rem;
  font-weight: normal;
}

.home-hero_search ._items dd {
  position: relative;
}

.home-hero_search ._keyword {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.home-hero_search ._keyword input {
  width: calc(100% - 40px);
  height: 40px;
  border: none;
  padding: 5px 10px;
  border-radius: 8px 0 0 8px;
  background-color: #0F60AE;
  color: #fff;
  font-size: 1.2rem;
}

.home-hero_search ._keyword input::-webkit-input-placeholder {
  color: #fff;
}

.home-hero_search ._keyword input:-ms-input-placeholder {
  color: #fff;
}

.home-hero_search ._keyword input::-ms-input-placeholder {
  color: #fff;
}

.home-hero_search ._keyword input::placeholder {
  color: #fff;
}

.home-hero_search ._keyword button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 0 8px 8px 0;
  background-color: #0F60AE;
  color: #fff;
}

.home-hero_search ._listTtl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 40px;
  border-radius: 8px;
  background-color: #0F60AE;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}

.home-hero_search ._listTtl::after {
  content: url("../images/arrow.svg");
  position: absolute;
  right: 15px;
  top: calc(50%- 9px);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.home-hero_search ._listTtl.active {
  border-radius: 8px 8px 0 0;
}

.home-hero_search ._listTtl.active::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.home-hero_search ._list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: auto;
  border: 2px solid #0F60AE;
  max-height: 0px;
  overflow-y: scroll;
  list-style: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  z-index: 100;
  pointer-events: none;
}

.home-hero_search ._list.active {
  pointer-events: all;
  max-height: 200px;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.home-hero_search ._list li {
  border-bottom: 2px solid #0F60AE;
  font-size: 1.3rem;
}

.home-hero_search ._list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 20px;
  color: #0F60AE;
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.home-hero_search ._list li a:hover {
  color: #fff;
  background-color: #0F60AE;
  opacity: 1;
}

.home-hero_search ._all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 40px;
  border-radius: 8px;
  background-color: #0F60AE;
  color: #fff;
  font-family: "Helvetica Neue", Helvetica, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Verdana, Meiryo, sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
}

.home-hero_right {
  position: relative;
  width: calc(100% - 300px);
  padding-right: 40px;
}

.home-hero_right ._corner1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 106px;
  border-radius: 0 0 10px 0;
  background-color: #fff;
  z-index: 10;
}

@media screen and (max-width: 500px) {
  .home-hero_right ._corner1 {
    display: none;
  }
}

.home-hero_right ._corner1::before {
  content: "";
  background-image: url(../images/corne_tl.svg);
  width: 10px;
  height: 10px;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  right: -10px;
}

.home-hero_right ._corner1::after {
  content: "";
  background-image: url(../images/corne_tl.svg);
  width: 10px;
  height: 10px;
  background-size: cover;
  background-position: center;
  position: absolute;
  bottom: -10px;
  left: 0;
}

@media screen and (max-width: 500px) {
  .home-hero_right {
    width: 100%;
    padding-right: 0;
  }
  .home-hero_right::before {
    right: 0;
    left: auto;
    width: 100px;
    height: 20px;
    border-radius: 0 0 0 10px;
  }
}

.home-hero_slider {
  height: 100%;
}

@media screen and (max-width: 500px) {
  .home-hero_slider {
    aspect-ratio: 1;
  }
}

.home-hero_slide {
  position: relative;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  border-radius: 10px;
}

.home-hero_slide ._text {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px 0 0 0;
  color: #0F60AE;
}

@media screen and (max-width: 500px) {
  .home-hero_slide ._text {
    right: auto;
    left: 0;
    width: 200px;
    padding: 15px;
    border-radius: 0 10px 0 0;
  }
}

.home-hero_slide ._text h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

@media screen and (max-width: 500px) {
  .home-hero_slide ._text h2 {
    font-size: 1.3rem;
  }
}

.home-hero_slide ._text p {
  font-size: 1.2rem;
}

@media screen and (max-width: 500px) {
  .home-hero_slide ._text p {
    font-size: 0.9rem;
  }
}

.home-hero_slide ._text a {
  color: #0F60AE;
  font-weight: bold;
}

.home-hero_slide ._text::before {
  content: "";
  background-image: url(../images/cpurner_br.svg);
  width: 10px;
  height: 10px;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: -10px;
  right: 0;
}

@media screen and (max-width: 500px) {
  .home-hero_slide ._text::before {
    right: auto;
    left: 0;
    background-image: url(../images/courner_bl.svg);
  }
}

.home-hero_slide ._text::after {
  content: "";
  background-image: url(../images/cpurner_br.svg);
  width: 10px;
  height: 10px;
  background-size: cover;
  background-position: center;
  position: absolute;
  bottom: 0px;
  left: -10px;
}

@media screen and (max-width: 500px) {
  .home-hero_slide ._text::after {
    right: -10px;
    left: auto;
    background-image: url(../images/courner_bl.svg);
  }
}

.home-hero_sns {
  position: absolute;
  list-style: none;
  right: 0;
  top: 160px;
}

.home-hero_sns li {
  margin: 10px 0;
}

@media screen and (max-width: 500px) {
  .home-hero_sns {
    display: none;
  }
}

.home-pickup {
  padding: 40px 0;
}

@media screen and (max-width: 500px) {
  .home-pickup {
    background-color: #F0F5F8;
    padding: 30px 0;
  }
}

.home-pickup_ttl {
  font-family: "Helvetica Neue", Helvetica, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Verdana, Meiryo, sans-serif;
  font-size: 2rem;
  font-weight: bold;
  color: #0F60AE;
  margin-bottom: 10px;
}

.home-pickup_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 30px;
}

@media screen and (max-width: 500px) {
  .home-pickup_list {
    gap: 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.home-pickup_item {
  width: calc(calc(100% - 60px) / 3);
  border-radius: 8px;
  overflow: hidden;
}

@media screen and (max-width: 500px) {
  .home-pickup_item {
    width: calc(calc(100% - 20px) / 2);
    border-radius: 0;
  }
}

.home-pickup_item a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.home-pickup_item ._num {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 10px 10px 0;
  background-color: #fff;
  border-radius: 0 0 10px 0;
}

.home-pickup_item ._num::before {
  content: "";
  background-image: url(../images/corne_tl.svg);
  width: 10px;
  height: 10px;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  right: -10px;
}

@media screen and (max-width: 500px) {
  .home-pickup_item ._num::before {
    display: none;
  }
}

.home-pickup_item ._num::after {
  content: "";
  background-image: url(../images/corne_tl.svg);
  width: 10px;
  height: 10px;
  background-size: cover;
  background-position: center;
  position: absolute;
  bottom: -10px;
  left: 0;
}

@media screen and (max-width: 500px) {
  .home-pickup_item ._num::after {
    display: none;
  }
}

@media screen and (max-width: 500px) {
  .home-pickup_item ._num {
    padding: 0;
    background-color: none;
    border-radius: 10px;
  }
}

.home-pickup_item ._num span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 40px;
  height: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #0F60AE;
  color: #fff;
  font-family: "Helvetica Neue", Helvetica, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Verdana, Meiryo, sans-serif;
  font-size: 1.8rem;
  border-radius: 10px;
}

.home-pickup_item img {
  display: block;
  width: 100%;
}

@media screen and (max-width: 500px) {
  .home-pickup_item img {
    aspect-ratio: 1;
    border-radius: 10px;
    margin-bottom: 10px;
  }
}

.home-pickup_item ._text {
  position: absolute;
  left: 70px;
  top: 20px;
  width: calc(100% - 100px);
  padding: 5px 15px;
  background-color: #fff;
  font-size: 1.3rem;
  color: #000;
}

@media screen and (max-width: 500px) {
  .home-pickup_item ._text {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    padding: 5px 10px;
    font-size: 1rem;
    border-radius: 5px;
  }
}

.home-secTtl {
  font-family: "Helvetica Neue", Helvetica, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Verdana, Meiryo, sans-serif;
  font-size: 5rem;
  font-weight: bold;
  color: #0F60AE;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

@media screen and (max-width: 500px) {
  .home-secTtl {
    font-size: 2.8rem;
    margin-bottom: 5px;
    text-align: center;
  }
}

.home-secSubTtl {
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}

@media screen and (max-width: 500px) {
  .home-secSubTtl {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-align: center;
  }
}

@media screen and (max-width: 500px) {
  .home-moreBtn {
    text-align: right;
  }
}

.home-moreBtn a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #0F60AE;
  font-size: 1.6rem;
  font-weight: bold;
}

@media screen and (max-width: 500px) {
  .home-moreBtn a {
    font-size: 1.2rem;
  }
}

.home-moreBtn a span {
  margin-right: 10px;
  display: inline-block;
  padding: 5px 0;
  border-bottom: 2px solid #0F60AE;
}

.home-news {
  padding: 60px 0;
  background-color: #F0F5F8;
}

@media screen and (max-width: 500px) {
  .home-news {
    padding: 40px 0;
    background-color: #fff;
  }
}

.home-news_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 30px;
  margin-bottom: 30px;
}

@media screen and (max-width: 500px) {
  .home-news_row {
    display: block;
  }
}

.home-news_article {
  width: calc((100% - 60px) / 3);
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
}

@media screen and (max-width: 500px) {
  .home-news_article {
    border-radius: 0;
    width: 100%;
    margin: 20px 0;
  }
}

.home-news_article a {
  display: block;
}

@media screen and (max-width: 500px) {
  .home-news_article a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.home-news_article ._thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media screen and (max-width: 500px) {
  .home-news_article ._thumb {
    width: 80px;
    aspect-ratio: 1;
    border-radius: 8px;
  }
}

.home-news_article ._text {
  width: 100%;
  padding: 20px;
}

@media screen and (max-width: 500px) {
  .home-news_article ._text {
    width: calc(100% - 100px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding: 0;
  }
}

.home-news_article ._date {
  text-align: right;
  font-size: 1rem;
  color: #0F60AE;
  margin-bottom: 10px;
}

@media screen and (max-width: 500px) {
  .home-news_article ._date {
    margin-bottom: 0;
    margin-top: 10px;
    color: #000;
    text-align: left;
  }
}

.home-news_article ._ttl {
  font-size: 1.3rem;
  line-height: 1.7em;
  color: #000;
}

@media screen and (max-width: 500px) {
  .home-news_article ._ttl {
    font-size: 1.2rem;
    font-weight: normal;
    color: #0F60AE;
  }
}

.home-howto {
  padding: 60px 0;
  background-color: #fff;
}

@media screen and (max-width: 500px) {
  .home-howto {
    padding: 40px 0;
    background-color: #F0F5F8;
  }
}

.home-howto_body {
  margin-bottom: 30px;
}

.home-howto_body ._hdg {
  font-family: "Helvetica Neue", Helvetica, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Verdana, Meiryo, sans-serif;
  text-align: center;
  color: #0F60AE;
  font-size: 5rem;
  letter-spacing: 0.05em;
  margin-top: 50px;
  margin-bottom: 15px;
}

@media screen and (max-width: 500px) {
  .home-howto_body ._hdg {
    font-size: 1.8rem;
  }
}

.home-howto_body ._subHdg {
  position: relative;
  text-align: center;
  margin-bottom: 20px;
}

.home-howto_body ._subHdg::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  border-bottom: 1px dotted #0F60AE;
}

.home-howto_body ._subHdg span {
  position: relative;
  display: inline-block;
  padding: 8px 15px;
  background-color: #fff;
  color: #0F60AE;
  font-size: 2rem;
  font-weight: bold;
  border-radius: 10px;
  border: 2px solid #0F60AE;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 500px) {
  .home-howto_body ._subHdg span {
    width: 100%;
    font-size: 1.3rem;
  }
}

.home-howto_body ._intro {
  text-align: center;
  width: 500px;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 30px auto;
}

@media screen and (max-width: 500px) {
  .home-howto_body ._intro {
    width: 90%;
    font-size: 1rem;
  }
}

.home-howto_body ._intro span {
  display: block;
  border-bottom: 2px dotted #0F60AE;
  line-height: 2em;
}

.home-howto_body ._img {
  text-align: center;
  margin: 50px 0;
}

@media screen and (max-width: 500px) {
  .home-howto_body ._img img {
    display: block;
    width: 90%;
    margin: 0 auto;
  }
}

.home-howto_body ._btn {
  text-align: center;
  margin-top: 50px;
}

.home-howto_body ._btn a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 600px;
  height: 90px;
  background-color: #0F60AE;
  color: #fff;
  border-radius: 8px;
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 500px) {
  .home-howto_body ._btn a {
    width: 100%;
    height: auto;
    padding: 10px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 1.4rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
  }
  .home-howto_body ._btn a img {
    width: 70px;
  }
}

.home-faq {
  padding: 60px 0;
  background-color: #F0F5F8;
}

@media screen and (max-width: 500px) {
  .home-faq {
    background-color: #fff;
  }
}

.home-faq_cat {
  position: relative;
  margin: 40px 0;
}

@media screen and (max-width: 500px) {
  .home-faq_cat {
    margin: 20px 0;
  }
}

.home-faq_cat::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  border-bottom: 1px dotted #0F60AE;
}

.home-faq_cat span {
  position: relative;
  display: inline-block;
  padding-right: 100px;
  background-color: #F0F5F8;
  color: #0F60AE;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 500px) {
  .home-faq_cat span {
    display: block;
    font-size: 1.2rem;
    text-align: center;
    width: 100%;
    background-color: #fff;
    padding: 0;
  }
}

.home-faq_list {
  margin: 20px 0;
  border-radius: 8px;
  overflow: hidden;
}

@media screen and (max-width: 500px) {
  .home-faq_list {
    margin: 10px 0;
  }
}

.home-faq_question {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  color: #0F60AE;
  padding: 20px 40px;
  padding-right: 100px;
  cursor: pointer;
}

@media screen and (max-width: 500px) {
  .home-faq_question {
    background-color: #F0F5F8;
    padding: 10px 20px;
  }
}

.home-faq_question ._q {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 60px;
  height: 60px;
  font-family: "Helvetica Neue", Helvetica, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Verdana, Meiryo, sans-serif;
  font-size: 5rem;
  font-weight: bold;
  padding-right: 20px;
  border-right: 2px solid #0F60AE;
}

@media screen and (max-width: 500px) {
  .home-faq_question ._q {
    font-size: 2rem;
    width: 30px;
    height: 30px;
    padding-right: 10px;
  }
}

.home-faq_question ._text {
  font-size: 1.7rem;
  font-weight: bold;
  padding-left: 30px;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 500px) {
  .home-faq_question ._text {
    font-size: 1rem;
    padding-left: 10px;
  }
}

.home-faq_question ._arrow {
  position: absolute;
  top: calc(50% - 8px);
  right: 30px;
}

@media screen and (max-width: 500px) {
  .home-faq_question ._arrow {
    width: 14px;
    top: calc(50% - 4px);
    right: 10px;
  }
}

.home-faq_question.active ._arrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.home-faq_answer {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background-color: #0F60AE;
  color: #fff;
  padding: 20px 40px;
}

@media screen and (max-width: 500px) {
  .home-faq_answer {
    padding: 10px 20px;
  }
}

.home-faq_answer ._a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 60px;
  height: 60px;
  font-family: "Helvetica Neue", Helvetica, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Verdana, Meiryo, sans-serif;
  font-size: 5rem;
  font-weight: bold;
  padding-right: 20px;
  border-right: 2px solid #fff;
}

@media screen and (max-width: 500px) {
  .home-faq_answer ._a {
    font-size: 2rem;
    width: 30px;
    height: 30px;
    padding-right: 10px;
  }
}

.home-faq_answer ._text {
  font-size: 1.7rem;
  font-weight: bold;
  padding-left: 30px;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 500px) {
  .home-faq_answer ._text {
    font-size: 1rem;
    padding-left: 10px;
  }
}

.home-faq_answer ._btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 20px;
  border-radius: 8px;
  background-color: #fff;
  color: #0F60AE;
  font-size: 1.8rem;
  font-family: "Helvetica Neue", Helvetica, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Verdana, Meiryo, sans-serif;
  margin-left: 30px;
}

@media screen and (max-width: 500px) {
  .home-faq_answer ._btn {
    margin-top: 20px;
    margin-left: 0;
    font-size: 1.6rem;
  }
}

.home-faq_answer ._btn span {
  font-size: 1.2rem;
}

@media screen and (max-width: 500px) {
  .home-faq_answer ._btn span {
    font-size: 1rem;
  }
}

.home-about {
  padding: 60px 0;
  background-color: #fff;
}

@media screen and (max-width: 500px) {
  .home-about {
    padding: 40px 0;
    background-color: #fff;
  }
}

.home-about_body h3 {
  font-size: 2.5rem;
  color: #0F60AE;
  margin: 30px 0;
  letter-spacing: 0.1em;
}

.home-about_body h3 br {
  display: none;
}

@media screen and (max-width: 500px) {
  .home-about_body h3 {
    text-align: center;
    font-size: 1.6rem;
  }
  .home-about_body h3 br {
    display: block;
  }
}

.home-about_body h3 span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #F0F5F8));
  background: linear-gradient(transparent 60%, #F0F5F8 60%);
}

.home-about_body p {
  font-size: 2rem;
  line-height: 1.7em;
  color: #0F60AE;
}

@media screen and (max-width: 500px) {
  .home-about_body p {
    font-size: 1.2rem;
    text-align: center;
    font-weight: bold;
  }
}

.home-about_body h4 {
  font-size: 2.5rem;
  color: #0F60AE;
  font-weight: bold;
  margin: 50px 0 10px 0;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 500px) {
  .home-about_body h4 {
    font-size: 1.4rem;
    text-align: center;
  }
}

.home-about_body dl {
  border-top: 1px solid #0F60AE;
}

.home-about_body dl div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding: 10px 0;
  border-bottom: 1px solid #0F60AE;
}

.home-about_body dl dt {
  font-size: 1.3rem;
  color: #0F60AE;
  font-weight: bold;
  width: 100px;
  border-right: 1px solid #0F60AE;
  padding: 5px 0;
}

.home-about_body dl dd {
  width: calc(100% - 100px);
  padding: 5px 0;
  padding-left: 30px;
  font-size: 1.3rem;
}

.loc-ttl {
  text-align: center;
  font-size: 2.8rem;
  font-weight: bold;
  margin-top: 60px;
  margin-bottom: 10px;
}

@media screen and (max-width: 500px) {
  .loc-ttl {
    margin-top: 30px;
    font-size: 2rem;
    margin-bottom: 5px;
  }
}

.loc-subTtl {
  text-align: center;
  color: #0F60AE;
  font-size: 1.3rem;
  margin-bottom: 30px;
}

@media screen and (max-width: 500px) {
  .loc-subTtl {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
}

.loc-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

@media screen and (max-width: 500px) {
  .loc-tags {
    gap: 10px;
  }
}

.loc-tags a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 30px;
  padding: 15px;
  background-color: #0F60AE;
  border-radius: 50px;
  color: #fff;
  font-size: 1.3rem;
}

@media screen and (max-width: 500px) {
  .loc-tags a {
    font-size: 1rem;
    height: 20px;
    margin-bottom: 0;
  }
}

.loc-no {
  text-align: right;
  font-weight: bold;
  font-size: 1.3rem;
  margin-bottom: 20px;
  padding: 0 5%;
  display: none;
}

@media screen and (max-width: 500px) {
  .loc-no {
    font-size: 1rem;
    color: #0F60AE;
    font-weight: normal;
    padding: 0;
  }
}

.loc-intro {
  padding: 0 5%;
  margin-bottom: 50px;
}

@media screen and (max-width: 500px) {
  .loc-intro {
    padding: 0;
    margin-bottom: 30px;
  }
}

.loc-intro p {
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.7em;
}

@media screen and (max-width: 500px) {
  .loc-intro p {
    text-align: left;
    font-size: 1.2rem;
  }
}

.loc-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.loc-gallery li {
  width: calc((100% - 20px) / 3);
  border-radius: 10px;
  overflow: hidden;
}

@media screen and (max-width: 500px) {
  .loc-gallery li {
    width: calc(50% - 5px);
  }
}

.loc-gallery li img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
}

.loc-guideTtl {
  margin-top: 50px;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 80px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.8rem;
  border: 1px solid #000;
}

@media screen and (max-width: 500px) {
  .loc-guideTtl {
    border-color: #0F60AE;
    border-radius: 10px;
    height: 40px;
    font-size: 1.3rem;
    color: #0F60AE;
  }
}

.loc-guide {
  font-size: 1.3rem;
  font-weight: bold;
}

.loc-guide div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 15px 0;
  border-bottom: 1px solid #000;
  gap: 20px;
}

.loc-guide div:last-child {
  border-bottom: none;
}

.loc-guide dt {
  width: 30%;
}

.loc-guide dd {
  width: 70%;
}

@media screen and (max-width: 500px) {
  .loc-guide {
    font-size: 1rem;
  }
  .loc-guide div {
    border: none;
    padding: 10px 0;
  }
  .loc-guide dd {
    font-weight: normal;
  }
}

.loc-accessTtl {
  margin-top: 80px;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 4rem;
  font-weight: bold;
  font-family: "Helvetica Neue", Helvetica, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Verdana, Meiryo, sans-serif;
  color: #0F60AE;
}

@media screen and (max-width: 500px) {
  .loc-accessTtl {
    margin-top: 50px;
    font-size: 2.8rem;
  }
}

.loc-accessTtl span {
  font-size: 1.3rem;
  color: #000;
}

@media screen and (max-width: 500px) {
  .loc-accessTtl span {
    font-size: 1.2rem;
  }
}

.loc-address {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  font-size: 1.3rem;
  font-weight: bold;
}

@media screen and (max-width: 500px) {
  .loc-address {
    font-size: 1rem;
    border-top: 1px dotted #0F60AE;
    border-bottom: 1px dotted #0F60AE;
  }
}

.loc-map {
  margin-top: 30px;
  margin-bottom: 30px;
}

.loc-map iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}

.loc-contact {
  text-align: center;
  padding-bottom: 60px;
}

@media screen and (max-width: 500px) {
  .loc-contact {
    display: none;
  }
}

.loc-contact a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 280px;
  height: 100px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #0F60AE;
  border-radius: 10px;
  color: #fff;
}

.loc-contact a ._en {
  font-size: 3.4rem;
  font-family: "Helvetica Neue", Helvetica, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Verdana, Meiryo, sans-serif;
  font-weight: bold;
}

.loc-contact a ._jp {
  font-size: 1.2rem;
}

.loc-contactSp {
  text-align: center;
  padding-bottom: 50px;
  display: none;
}

@media screen and (max-width: 500px) {
  .loc-contactSp {
    display: block;
  }
}

.loc-contactSp span {
  font-size: 1.2rem;
  font-weight: bold;
}

.loc-contactSp a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.5rem;
  font-family: "Helvetica Neue", Helvetica, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Verdana, Meiryo, sans-serif;
  font-weight: bold;
  background-color: #0F60AE;
  border-radius: 10px;
  color: #fff;
  width: 200px;
  height: 40px;
  margin-top: 10px;
}

.loc-iarTop {
  display: none;
}

@media screen and (max-width: 500px) {
  .loc-iarTop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 60px;
    padding-bottom: 30px;
  }
}

.loc-iarTop a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #0F60AE;
  color: #0F60AE;
  width: 40%;
  height: 30px;
  margin: 0 10px;
  border-radius: 10px;
  font-size: 1.3rem;
}

.loc-catTtl {
  position: relative;
  width: 100%;
  max-width: 50%;
  margin: 40px auto;
  text-align: center;
}

.loc-catTtl::before {
  content: "";
  position: absolute;
  width: 100%;
  border-bottom: 2px dotted #0F60AE;
  left: 0;
  top: calc(50%  - 1px);
}

.loc-catTtl ._parent {
  position: relative;
  display: inline-block;
  padding: 0 20px;
  background-color: #fff;
  z-index: 1;
  font-size: 3rem;
  font-family: "Helvetica Neue", Helvetica, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Verdana, Meiryo, sans-serif;
  color: #0F60AE;
  letter-spacing: 0.05em;
}

.loc-catTtl ._parent ._jp {
  font-size: 2rem;
}

@media screen and (max-width: 500px) {
  .loc-catTtl {
    max-width: 100%;
    margin: 20px 0;
    padding: 10px 0;
    border-top: 2px dotted #0F60AE;
    border-bottom: 2px dotted #0F60AE;
  }
  .loc-catTtl::before {
    display: none;
  }
  .loc-catTtl ._parent {
    font-size: 1.3rem;
  }
  .loc-catTtl ._parent span {
    display: none;
  }
  .loc-catTtl ._parent ._jp {
    font-size: 1.3rem;
    display: inline-block;
  }
}

.news-newsList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

@media screen and (max-width: 500px) {
  .news-newsList {
    margin-top: 50px;
    gap: 10px;
  }
}

.news-newsList_item {
  width: calc((100% - 40px) / 3);
  border-radius: 10px;
  overflow: hidden;
}

@media screen and (max-width: 500px) {
  .news-newsList_item {
    width: calc(50% - 5px);
  }
}

.news-newsList_item a {
  display: block;
  height: 100%;
  background-color: #F0F5F8;
}

.news-newsList_item ._thumb {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
}

.news-newsList_item ._lower {
  width: 100%;
  padding: 15px;
}

@media screen and (max-width: 500px) {
  .news-newsList_item ._lower {
    padding: 10px;
  }
}

.news-newsList_item ._date {
  text-align: right;
  font-size: 1rem;
  color: #0F60AE;
  margin-bottom: 5px;
}

@media screen and (max-width: 500px) {
  .news-newsList_item ._date {
    font-size: 0.7rem;
  }
}

.news-newsList_item ._ttl {
  font-size: 1.3rem;
  color: #000;
  line-height: 1.6em;
  margin-bottom: 5px;
}

@media screen and (max-width: 500px) {
  .news-newsList_item ._ttl {
    font-size: 1rem;
  }
}

.news-newsList_item ._cats span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 18px;
  border-radius: 18px;
  background-color: #0F60AE;
  padding: 0 10px;
  color: #fff;
  font-size: 1rem;
}

@media screen and (max-width: 500px) {
  .news-newsList_item ._cats span {
    font-size: 0.7rem;
  }
}

.news-article {
  max-width: 80%;
  margin: 0 auto;
}

@media screen and (max-width: 500px) {
  .news-article {
    max-width: 100%;
    margin-top: 70px;
  }
}

.news-article_ttl {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

@media screen and (max-width: 500px) {
  .news-article_ttl {
    font-size: 1.8rem;
  }
}

.news-article_date {
  text-align: center;
  color: #0F60AE;
  font-size: 1.3rem;
  margin-bottom: 50px;
}

@media screen and (max-width: 500px) {
  .news-article_date {
    font-size: 1rem;
    margin-bottom: 30px;
  }
}

.news-article_eyecatch {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}

@media screen and (max-width: 500px) {
  .news-article_eyecatch {
    margin-bottom: 20px;
  }
}

.news-article_tag {
  text-align: center;
  margin-bottom: 30px;
}

@media screen and (max-width: 500px) {
  .news-article_tag {
    margin-bottom: 20px;
  }
}

.news-article_tag span, .news-article_tag a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 25px;
  font-size: 1.3rem;
  background-color: #0F60AE;
  border-radius: 25px;
  color: #fff;
  padding: 0 15px;
}

@media screen and (max-width: 500px) {
  .news-article_tag span, .news-article_tag a {
    height: 20px;
    font-size: 1rem;
  }
}

.news-article_body {
  margin-bottom: 80px;
}

@media screen and (max-width: 500px) {
  .news-article_body {
    margin-bottom: 50px;
  }
}

.news-article_body p {
  font-size: 1.5rem;
  line-height: 1.7em;
  margin: 15px 0;
}

@media screen and (max-width: 500px) {
  .news-article_body p {
    font-size: 1.2rem;
  }
}

.news-article_bottomNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 70px;
}

.news-article_bottomNav a {
  color: #000;
  font-weight: bold;
  font-size: 2rem;
}

@media screen and (max-width: 500px) {
  .news-article_bottomNav a {
    font-size: 1.4rem;
  }
}

.search-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 40px 0;
}

.search-ttl ._en {
  font-family: "Helvetica Neue", Helvetica, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Verdana, Meiryo, sans-serif;
  font-size: 4rem;
  color: #0F60AE;
  margin-right: 20px;
}

.search-ttl ._jp {
  font-size: 1.3rem;
}

@media screen and (max-width: 500px) {
  .search-ttl {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 30px;
  }
  .search-ttl ._en {
    font-size: 2.8rem;
    margin-bottom: 5px;
    font-weight: bold;
    letter-spacing: 0.05em;
    margin-right: 0;
  }
  .search-ttl ._jp {
    font-size: 1.2rem;
    font-weight: bold;
  }
}

.search-catLists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.search-catList {
  width: 25%;
  border-right: 1px dotted #0F60AE;
  padding: 0 30px;
  margin-bottom: 40px;
}

.search-catList:nth-of-type(4n + 1) {
  border-left: 1px dotted #0F60AE;
}

@media screen and (max-width: 500px) {
  .search-catList {
    width: 50%;
    padding: 0 20px;
    margin-bottom: 0;
  }
  .search-catList:nth-of-type(2n + 1) {
    border-left: 1px dotted #0F60AE;
  }
}

.search-catList dt {
  margin-bottom: 20px;
}

.search-catList dt a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 36px;
  color: #0F60AE;
  font-size: 1.3rem;
  border: 1px solid #0F60AE;
  border-radius: 10px;
  font-weight: bold;
}

.search-catList dd {
  padding-bottom: 20px;
}

.search-catList dd ul {
  list-style: none;
}

.search-catList dd ul li {
  text-align: center;
  padding: 10px 0;
}

.search-catList dd ul li a {
  font-size: 1.3rem;
  color: #000;
  font-weight: bold;
}

.search-catList dd ul li a:hover {
  color: #0F60AE;
  opacity: 1;
}

@media screen and (max-width: 500px) {
  .search-catList dd ul li {
    padding: 0;
  }
  .search-catList dd ul li a {
    display: block;
    padding: 10px 0;
    font-size: 1rem;
  }
}

.search-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  gap: 10px;
}

.search-tags li {
  width: calc((100% - 50px) / 6);
}

@media screen and (max-width: 500px) {
  .search-tags li {
    width: calc(50% - 5px);
  }
}

.search-tags a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 40px;
  font-size: 1.3rem;
  font-weight: bold;
  border: 1px solid #0F60AE;
  color: #000;
  border-radius: 10px;
}

.search-tags a:hover {
  background-color: #0F60AE;
  color: #fff;
  opacity: 1;
}

@media screen and (max-width: 500px) {
  .search-all {
    text-align: center;
  }
}

.search-all a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 200px;
  height: 40px;
  font-size: 1.3rem;
  font-weight: bold;
  border: 1px solid #0F60AE;
  background-color: #0F60AE;
  color: #fff;
  border-radius: 10px;
}

.howto-step {
  padding: 50px 0;
  background-color: #F0F5F8;
}

@media screen and (max-width: 500px) {
  .howto-step {
    padding: 30px 0;
    background-color: #fff;
  }
}

.howto-step_hdg {
  text-align: center;
  font-weight: bold;
  font-size: 3.2rem;
  margin-bottom: 50px;
  color: #0F60AE;
}

@media screen and (max-width: 500px) {
  .howto-step_hdg {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
}

.howto-steps {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 60px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 500px) {
  .howto-steps {
    gap: 40px;
  }
}

.howto-steps_item {
  position: relative;
  width: calc((100% - 180px) / 4);
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
}

@media screen and (max-width: 500px) {
  .howto-steps_item {
    width: 100%;
    border: 2px solid #0F60AE;
  }
}

.howto-steps_item--l {
  width: calc(100% - ((100% - 180px) / 4) - 60px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

@media screen and (max-width: 500px) {
  .howto-steps_item--l {
    width: 100%;
    display: block;
  }
}

.howto-steps_item--l ._left {
  width: 200px;
}

@media screen and (max-width: 500px) {
  .howto-steps_item--l ._left {
    width: 100%;
  }
}

.howto-steps_item--l ._right {
  width: calc(100% - 220px);
  padding-left: 20px;
  border-left: 2px dotted #0F60AE;
}

@media screen and (max-width: 500px) {
  .howto-steps_item--l ._right {
    width: 100%;
    padding: 0;
    border: none;
    margin-top: 15px;
  }
}

.howto-steps_item--l ._right h4 {
  font-size: 1.4rem;
  font-weight: bold;
  color: #0F60AE;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}

@media screen and (max-width: 500px) {
  .howto-steps_item--l ._right h4 {
    font-size: 1.2rem;
    text-align: center;
  }
}

.howto-steps_item--l ._right ul {
  list-style: none;
}

.howto-steps_item--l ._right ul li {
  color: #0F60AE;
  font-size: 1.2rem;
  text-indent: -1em;
  padding-left: 1em;
}

@media screen and (max-width: 500px) {
  .howto-steps_item--l ._right ul li {
    font-size: 1rem;
  }
}

.howto-steps_item ._num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
}

@media screen and (max-width: 500px) {
  .howto-steps_item ._num {
    padding: 0;
  }
}

.howto-steps_item ._num img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

@media screen and (max-width: 500px) {
  .howto-steps_item ._num img {
    width: 50px;
    height: 50px;
  }
}

.howto-steps_item ._ttl {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  border-bottom: 1px solid #0F60AE;
  font-weight: bold;
  color: #0F60AE;
  padding-bottom: 10px;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

@media screen and (max-width: 500px) {
  .howto-steps_item ._ttl {
    font-size: 1.3rem;
    padding: 7px 0;
    border-top: 2px dotted #0F60AE;
    border-bottom: 2px dotted #0F60AE;
    margin-top: 10px;
  }
}

.howto-steps_item ._sub {
  text-align: center;
  color: #0F60AE;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.howto-steps_item ._text {
  font-size: 1.2rem;
  color: #0F60AE;
}

@media screen and (max-width: 500px) {
  .howto-steps_item ._text {
    font-size: 1rem;
  }
}

.howto-steps_item::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-image: url(../images/step-arrow.svg);
  background-size: contain;
  background-position: center;
  position: absolute;
  top: calc(50% - 15px);
  right: -45px;
}

@media screen and (max-width: 500px) {
  .howto-steps_item::after {
    top: auto;
    width: 15px;
    height: 15px;
    bottom: -30px;
    right: auto;
    left: calc(50% - 7px);
    background-image: url(../images/step-arrow-down.svg);
  }
}

.howto-steps--u li:nth-child(4n)::after {
  display: none;
}

@media screen and (max-width: 500px) {
  .howto-steps--u li:nth-child(4n)::after {
    display: block;
  }
  .howto-steps--u li:last-child::after {
    display: none;
  }
}

.howto-steps--b li:nth-child(2)::after {
  display: none;
}

.howto-steps--b li:nth-child(6)::after {
  display: none;
}

@media screen and (max-width: 500px) {
  .howto-steps--b li:nth-child(2)::after {
    display: block;
  }
  .howto-steps--b li:nth-child(6)::after {
    display: block;
  }
  .howto-steps--b li:last-child::after {
    display: none;
  }
}

.contact-wrap {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  margin-top: 80px;
}

.contact-list dt {
  margin-top: 20px;
  font-size: 1.3rem;
  font-weight: bold;
}

.contact-list dt span {
  color: #0F60AE;
  margin-left: 10px;
}

.contact-list dt._bottom {
  position: relative;
  padding-left: 20px;
}

.contact-list dt._bottom::before {
  content: "";
  width: 15px;
  height: 2px;
  background-color: #0F60AE;
  position: absolute;
  left: 0;
  top: calc(50% - 1px);
}

.contact-list dd {
  margin: 10px 0;
}

.contact-list dd input {
  width: 100%;
  border: none;
  background-color: #F0F5F8;
  border-radius: 6px;
  padding: 5px 10px;
}

.contact-list dd select {
  width: 100%;
  border: none;
  background-color: #0F60AE;
  border-radius: 6px;
  padding: 5px 10px;
  color: #fff;
  height: 40px;
}

.contact-list dd textarea {
  width: 100%;
  height: 200px;
  border: none;
  background-color: #F0F5F8;
  border-radius: 6px;
  padding: 5px 10px;
}

.contact-list dd p {
  font-size: 1.3rem;
  font-weight: bold;
  margin-top: 5px;
}

.contact-list dd ._note {
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 1.7em;
}

.contact-submit {
  text-align: center;
  margin-top: 30px;
}

.contact-submit input {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 300px;
  height: 50px;
  border-radius: 8px;
  background-color: #0F60AE;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #fff;
  border: none;
}

.contact-submit .wpcf7-spinner {
  display: none;
}
/*# sourceMappingURL=main.css.map */