@charset "UTF-8";

/*--------------------
reset
--------------------*/


/*! destyle.css v1.0.13 | MIT License | https://github.com/nicolas-cusan/destyle.css */

@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Nunito+Sans:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap");
* {
  box-sizing: border-box;
}

:after, :before {
  box-sizing: inherit;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  margin: 0;
}

main {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

address, blockquote, dl, figure, form, iframe, ol, p, pre, table, ul {
  margin: 0;
}

ol, ul {
  padding: 0;
  list-style: none;
}

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border: 0;
  border-top: 1px solid;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  border-bottom: 0;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

img {
  border-style: none;
  vertical-align: bottom;
}

embed, iframe, object {
  border: 0;
  vertical-align: bottom;
}

button, input, optgroup, select, textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[type=button], [type=reset], [type=submit], button {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

[type="button"][disabled], [type="reset"][disabled], [type="submit"][disabled], button[disabled] {
  cursor: default;
}

[type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset, option {
  padding: 0;
}

fieldset {
  margin: 0;
  border: 0;
  min-width: 0;
}

legend {
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox], [type=radio] {
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

td, th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 700;
}

[hidden], template {
  display: none;
}


/*--------------------
/reset
--------------------*/


/*
疑似要素のバックグラウンド
*/


/*--------------------
Foundation
--------------------*/

* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  letter-spacing: inherit;
  font-size: inherit;
  word-break: normal;
}

body {
  font-family: 'Nunito Sans', sans-serif;
  color: #3A3A3A;
  letter-spacing: 0.06em;
}

img {
  width: 100%;
}


/*--------------------
/Foundation
--------------------*/


/*
疑似要素のバックグラウンド
*/


/*--------------------
layout
--------------------*/

.l-header {
  display: flex;
  align-items: center;
  padding: 0 40px;
  position: fixed;
  width: 100%;
  background-color: #fff;
  z-index: 5;
}

@media (max-width: 1200px) {
  .l-header {
    padding: 0 20px;
  }
}

@media (max-width: 1080px) {
  .l-header {
    display: block;
    padding: 0;
  }
}

@media (max-width: 1080px) {
  .l-header__topWrap {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
  }
}

.l-header__menu {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

@media (max-width: 1080px) {
  .l-header__menu {
    display: none;
    position: fixed;
    left: 100%;
    width: 100%;
    height: calc(100vh - 42px);
    z-index: 1;
    overflow-y: scroll;
    background-color: #05055A;
  }
}

@media (max-width: 1080px) {
  .l-header__menu.is-active {
    display: block;
    animation-name: menu_open;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: alternate;
    animation-fill-mode: forwards;
    animation-play-state: running;
  }
}

.l-header__menu.is-no-active {
  animation-name: menu_close;
  animation-duration: 0.5s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: alternate;
  animation-fill-mode: forwards;
  animation-play-state: running;
}

@keyframes menu_open {
  0% {
    left: 100%;
  }
  100% {
    left: 0;
  }
}

@keyframes menu_close {
  0% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}

.l-menuBtn {
  display: none;
  position: relative;
  width: 23px;
  height: 15px;
}

@media (max-width: 1080px) {
  .l-menuBtn {
    display: block;
  }
}

.l-menuBtn__line {
  width: 14px;
  height: 1px;
  background-color: #3A3A3A;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}

.l-menuBtn__line:nth-child(2) {
  width: 18px;
  top: 8px;
}

.l-menuBtn__line:nth-child(3) {
  width: 22px;
  top: 16px;
}

.l-menuBtn.is-active .l-menuBtn__line:nth-child(1) {
  animation-name: btn_line_1;
  animation-duration: 0.5s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: alternate;
  animation-fill-mode: forwards;
  animation-play-state: running;
}

.l-menuBtn.is-active .l-menuBtn__line:nth-child(2) {
  animation-name: btn_line_2;
  animation-duration: 0.5s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: alternate;
  animation-fill-mode: forwards;
  animation-play-state: running;
}

.l-menuBtn.is-active .l-menuBtn__line:nth-child(3) {
  animation-name: btn_line_3;
  animation-duration: 0.5s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: alternate;
  animation-fill-mode: forwards;
  animation-play-state: running;
}

.l-menuBtn.is-no-active .l-menuBtn__line:nth-child(1) {
  animation-name: btn_line_1_close;
  animation-duration: 0.5s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: alternate;
  animation-fill-mode: forwards;
  animation-play-state: running;
}

.l-menuBtn.is-no-active .l-menuBtn__line:nth-child(2) {
  animation-name: btn_line_2_close;
  animation-duration: 0.5s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: alternate;
  animation-fill-mode: forwards;
  animation-play-state: running;
}

.l-menuBtn.is-no-active .l-menuBtn__line:nth-child(3) {
  animation-name: btn_line_3_close;
  animation-duration: 0.5s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: alternate;
  animation-fill-mode: forwards;
  animation-play-state: running;
}

@keyframes btn_line_1 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(45deg);
    top: 8px;
    width: 22px;
  }
}

@keyframes btn_line_2 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes btn_line_3 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-45deg);
    top: 8px;
  }
}

@keyframes btn_line_1_close {
  0% {
    transform: rotate(45deg);
    top: 8px;
  }
  100% {
    transform: rotate(0deg);
    top: 0px;
  }
}

@keyframes btn_line_2_close {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes btn_line_3_close {
  0% {
    transform: rotate(-45deg);
    top: 8px;
  }
  100% {
    transform: rotate(0deg);
    top: 16px;
  }
}

.l-header__logo {
  width: 104px;
  display: block;
  transition: all 0.3s;
}

.l-header__logo:hover {
  opacity: 0.7;
}

@media (max-width: 1080px) {
  .l-header__logo {
    width: 96px;
  }
}

@media (max-width: 1023px) {
  .l-header__logo {
    width: 88px;
  }
}

.l-nav {
  margin-left: 44px;
}

@media (max-width: 1080px) {
  .l-nav {
    margin: 0;
    background-color: #fff;
    width: 100%;
  }
}

.l-nav__list {
  display: flex;
}

@media (max-width: 1080px) {
  .l-nav__list {
    display: block;
  }
}

.l-nav__link {
  display: block;
  font-size: 18px;
  transition: all 0.3s;
  padding: 40px 20px;
  min-width: 100px;
}

@media (max-width: 1200px) {
  .l-nav__link {
    font-size: 16px;
    padding: 40px 10px;
  }
}

@media (max-width: 1080px) {
  .l-nav__link {
    font-size: 16px;
  }
}

.l-nav__link.is-active {
  color: #05055A;
}

.l-nav__link:hover {
  color: #05055A;
}

@media (max-width: 1080px) {
  .l-nav__link {
    display: block;
    width: 100%;
    padding: 16px 0px;
    font-size: 16px;
  }
}

.l-nav__link.arrow::before {
  content: none;
}

@media (max-width: 1080px) {
  .l-nav__link.arrow::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 2px;
    background-color: #05055A;
    top: 0;
    bottom: 0;
    right: 24px;
    left: auto;
    margin: auto auto;
  }
}

.l-nav__link.arrow::after {
  content: none;
}

@media (max-width: 1080px) {
  .l-nav__link.arrow::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 24px;
    left: auto;
    margin: auto auto;
    width: 8px;
    height: 8px;
    border-top: 2px solid #05055A;
    border-right: 2px solid #05055A;
    transform: rotate(45deg);
  }
}

.l-nav__accordion {
  position: absolute;
  top: 45px;
  left: auto;
  right: 6px;
  margin: auto auto;
  width: 20px;
  height: 20px;
  display: block;
  z-index: 1;
}

@media (max-width: 1080px) {
  .l-nav__accordion {
    top: 0px;
    margin: auto auto;
    right: 0px;
    width: 50px;
    height: 50px;
  }
}

.l-nav__accordion::before {
  content: none;
}

@media (max-width: 1080px) {
  .l-nav__accordion::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 2px;
    background-color: #05055A;
    top: 0;
    bottom: 0;
    right: 6px;
    left: 0;
    margin: auto auto;
    transform: none;
  }
}

.l-nav__accordion::after {
  content: none;
}

@media (max-width: 1080px) {
  .l-nav__accordion::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 12px;
    background-color: #05055A;
    top: 0;
    bottom: 0;
    right: 6px;
    left: 0;
    margin: auto auto;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .l-nav__accordion.is-open::after {
    content: none;
  }
}

@media (max-width: 1080px) {
  .btn_language__wrap {
    background-color: #05055A;
    padding: 20px 0 130px 0;
    width: 100%;
  }
}

.btn_language {
  display: flex;
  align-items: center;
}

@media (max-width: 1080px) {
  .btn_language {
    width: 180px;
    margin: auto;
    background-color: #fff;
    border-radius: 40px;
    padding: 4px 0;
    justify-content: center;
  }
}

.btn_language .btn_languageItem:nth-child(2) {
  position: relative;
}

.btn_language .btn_languageItem:nth-child(2)::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: auto;
  left: 0px;
  margin: auto auto;
  width: 1px;
  height: 9px;
  display: block;
  background-color: #B2B2B2;
}

.btn_language .btn_languageItem:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: auto;
  margin: auto auto;
  width: 1px;
  height: 9px;
  display: block;
  background-color: #B2B2B2;
}

.btn_language .btn_languageBtn {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  color: #B2B2B2;
  width: 34px;
  padding: 10px 0;
  border-radius: 100%;
  margin: 0 13px;
  cursor: pointer;
  transition: all 0.3s;
  display: block;
  text-align: center;
}

@media (max-width: 1080px) {
  .btn_language .btn_languageBtn {
    margin: 0 10px;
  }
}

.btn_language .btn_languageBtn.is-active {
  background-color: #05055A;
  color: #fff;
}

.btn_language .btn_languageBtn:hover {
  background-color: #05055A;
  color: #fff;
}

.l-nav-list--nest {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: all 0.3s;
  padding: 25px 20px;
  background-color: #fff;
  box-shadow: 0px 8px 16px -2px rgba(10, 10, 10, 0.1), 0px 0px 0px 1px rgba(10, 10, 10, 0.02);
  top: 75px;
  left: -5px;
  display: block;
  width: 230px;
}

@media (max-width: 1080px) {
  .l-nav-list--nest {
    opacity: 1;
    position: static;
    width: 100%;
    box-shadow: none;
    display: none;
    pointer-events: all;
    top: 0;
    transition: none;
    padding: 0 0 12px 0;
  }
}

.l-nav-list--nest__item+.l-nav-list--nest__item {
  margin-top: 20px;
}

@media (max-width: 1080px) {
  .l-nav-list--nest__item+.l-nav-list--nest__item {
    margin-top: 10px;
  }
}

.l-nav-list--nest__item .l-nav-list--nest__link {
  padding-left: 16px;
  position: relative;
  transition: all 0.3s;
  display: block;
}

@media (max-width: 1080px) {
  .l-nav-list--nest__item .l-nav-list--nest__link {
    padding: 0px 0 0px 52px;
    font-size: 14px;
  }
}

.l-nav-list--nest__item .l-nav-list--nest__link::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 5px;
  top: 0;
  bottom: 0;
  right: auto;
  left: 0;
  margin: auto auto;
  display: block;
  background-color: #3A3A3A;
}

@media (max-width: 1080px) {
  .l-nav-list--nest__item .l-nav-list--nest__link::before {
    left: 40px;
  }
}

.l-nav-list--nest__item .l-nav-list--nest__link:hover {
  color: #05055A;
}

.l-nav-list--nest__item .l-nav-list--nest__link:hover::before {
  background-color: #05055A;
}

.l-nav__item {
  position: relative;
}

@media (max-width: 1080px) {
  .l-nav__item {
    border-top: #E6E6E6 1px solid;
  }
}

@media (max-width: 1080px) {
  .l-nav__item a {
    padding: 16px 20px;
  }
}

.l-nav__item:hover .l-nav-list--nest {
  opacity: 1;
  pointer-events: all;
  z-index: 1;
}

.crf-menu {
  position: fixed;
  top: 0;
  z-index: 3;
  width: 100%;
}

.crf-menu .crf-menu__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  background: #fff;
}

@media (max-width: 1080px) {
  .crf-menu .crf-menu__inner {
    padding: 23px 20px;
  }
}

.crf-menu .crf-menu__inner h1 {
  transition: all 0.3s;
}

.crf-menu .crf-menu__inner h1:hover {
  opacity: 0.7;
}

@media (max-width: 1080px) {
  .crf-menu .crf-menu__inner h1 {
    width: 210px;
  }
}

.crf-menu .crf-menu__inner>ul {
  display: flex;
}

@media (max-width: 1080px) {
  .crf-menu .crf-menu__inner>ul {
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: #13a5ee;
    left: 100%;
    top: 0;
    z-index: 1;
    color: #fff;
    padding-top: 60px;
    overflow-y: scroll;
  }
  .crf-menu .crf-menu__inner>ul.is-active {
    display: block;
    animation-name: menu_open;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: alternate;
    animation-fill-mode: forwards;
    animation-play-state: running;
  }
  .crf-menu .crf-menu__inner>ul.is-no-active {
    animation-name: menu_close;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: alternate;
    animation-fill-mode: forwards;
    animation-play-state: running;
  }
}

@keyframes menu_open {
  0% {
    left: 100%;
  }
  100% {
    left: 0;
  }
}

@keyframes menu_close {
  0% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}

.crf-menu .crf-menu__inner .crf-menu__btn {
  display: none;
}

@media (max-width: 1080px) {
  .crf-menu .crf-menu__inner .crf-menu__btn {
    display: block;
    position: relative;
    z-index: 1;
    width: 26px;
    height: 15px;
    cursor: pointer;
  }
  .crf-menu .crf-menu__inner .crf-menu__btn.is-active span:first-child {
    animation-name: menu-open-1;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: alternate;
    animation-fill-mode: forwards;
    animation-play-state: running;
  }
  .crf-menu .crf-menu__inner .crf-menu__btn.is-active span:nth-child(2) {
    animation-name: menu-open-2;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: alternate;
    animation-fill-mode: forwards;
    animation-play-state: running;
  }
  .crf-menu .crf-menu__inner .crf-menu__btn.is-active span:nth-child(3) {
    animation-name: menu-open-3;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: alternate;
    animation-fill-mode: forwards;
    animation-play-state: running;
  }
  .crf-menu .crf-menu__inner .crf-menu__btn.is-no-active span:first-child {
    animation-name: menu-close-1;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: alternate;
    animation-fill-mode: forwards;
    animation-play-state: running;
  }
  .crf-menu .crf-menu__inner .crf-menu__btn.is-no-active span:nth-child(2) {
    animation-name: menu-close-2;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: alternate;
    animation-fill-mode: forwards;
    animation-play-state: running;
  }
  .crf-menu .crf-menu__inner .crf-menu__btn.is-no-active span:nth-child(3) {
    animation-name: menu-close;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: alternate;
    animation-fill-mode: forwards;
    animation-play-state: running;
  }
  .crf-menu .crf-menu__inner .crf-menu__btn span {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    margin: auto auto;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: auto;
    top: 0;
    right: 15px;
    width: 26px;
    height: 1px;
    display: block;
    cursor: pointer;
    background-color: #000;
  }
  .crf-menu .crf-menu__inner .crf-menu__btn span:nth-child(2) {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    margin: auto auto;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: auto;
    top: 0;
    width: 20px;
    height: 1px;
    top: 7px;
    right: 9px;
  }
  .crf-menu .crf-menu__inner .crf-menu__btn span:nth-child(3) {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    margin: auto auto;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: auto;
    top: 0;
    width: 26px;
    height: 1px;
    top: 14px;
  }
}

@keyframes menu-open-1 {
  0% {
    transform: rotate(0deg);
    top: 0;
    background-color: #363636;
  }
  100% {
    transform: rotate(45deg);
    top: 7px;
    background-color: #fff;
  }
}

@keyframes menu-open-2 {
  0% {
    opacity: 1;
    background-color: #363636;
  }
  100% {
    opacity: 0;
    background-color: #fff;
  }
}

@keyframes menu-open-3 {
  0% {
    transform: rotate(0deg);
    top: 14px;
    background-color: #363636;
  }
  100% {
    transform: rotate(-45deg);
    top: 7px;
    background-color: #fff;
  }
}

@keyframes menu-close-1 {
  0% {
    background-color: #fff;
    transform: rotate(45deg);
    top: 7px;
  }
  100% {
    transform: rotate(0deg);
    top: 0px;
    background-color: #363636;
  }
}

@keyframes menu-close-2 {
  0% {
    opacity: 0;
    background-color: #fff;
  }
  100% {
    opacity: 1;
    background-color: #363636;
  }
}

@keyframes menu-close-3 {
  0% {
    transform: rotate(-45deg);
    top: 7px;
    background-color: #fff;
  }
  100% {
    transform: rotate(0deg);
    top: 14px;
    background-color: #363636;
  }
}

.l-main {
  padding-top: 100px;
}

@media (max-width: 1080px) {
  .l-main {
    padding-top: 56.11px;
  }
}

.l-main .l-container {
  max-width: 1224px;
  margin: auto;
}

.l-footer {
  background-color: #14232D;
  position: relative;
  z-index: 3;
}

@media (max-width: 1023px) {
  .l-footer {
    padding-top: 10px;
  }
}

.l-footer .l-nav__accordion {
  display: none;
}

@media (max-width: 1023px) {
  .l-footer .l-nav__accordion {
    display: block;
    top: 12px;
    bottom: auto;
    left: auto;
    right: 16px;
    margin: auto auto;
    top: 0px;
    right: 0;
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 1023px) {
  .l-footer .l-nav__accordion::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto auto;
  }
}

.l-footer .l-nav__accordion::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto auto;
}

@media (max-width: 1023px) {
  .l-footer .l-nav__accordion.is-open::after {
    content: none;
  }
}

.l-footer__list {
  max-width: 1110px;
  margin: auto;
  padding: 64px 15px;
  display: flex;
}

@media (max-width: 1023px) {
  .l-footer__list {
    padding: 10px 0 0 0;
    display: block;
  }
}

.l-footer__item {
  width: 25%;
}

@media (max-width: 1023px) {
  .l-footer__item {
    position: relative;
    width: 100%;
    border-top: 1px solid #23323C;
  }
}

@media (max-width: 1023px) {
  .l-footer__item a {
    padding: 16px 20px;
  }
}

@media (max-width: 1023px) {
  .l-footer__item.u-list {
    padding: 0;
  }
}

@media (max-width: 1023px) {
  .l-footer__item .l-footer__list--2__item {
    border-top: 1px solid #23323C;
  }
}

.l-footer__link {
  color: #fff;
  position: relative;
  display: block;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s;
}

@media (max-width: 1023px) {
  .l-footer__link {
    padding: 12px 0;
    font-size: 15px;
    font-weight: normal;
  }
}

.l-footer__link:hover {
  color: #05055A;
}

.l-footer__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  display: block;
  width: 20px;
  height: 2px;
  background-color: #05055A;
}

@media (max-width: 1023px) {
  .l-footer__link::after {
    content: none;
  }
}

.l-footer__link.arrow::before {
  content: none;
}

@media (max-width: 1023px) {
  .l-footer__link.arrow::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 2px;
    background-color: #05055A;
    top: 0;
    bottom: 0;
    right: 20px;
    left: auto;
    margin: auto auto;
  }
}

@media (max-width: 1023px) {
  .l-footer__link.arrow::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    left: auto;
    margin: auto auto;
    width: 8px;
    height: 8px;
    border-top: 2px solid #05055A;
    border-right: 2px solid #05055A;
    transform: rotate(45deg);
    background-color: transparent;
  }
}

.l-footer__list--nest__item .l-footer__list--nest__link {
  color: #fff;
  position: relative;
  padding-left: 12px;
  transition: all 0.3s;
}

.l-footer__list--nest__item .l-footer__list--nest__link:hover {
  color: #05055A;
}

@media (max-width: 1023px) {
  .l-footer__list--nest__item .l-footer__list--nest__link {
    font-size: 14px;
    padding-left: 50px;
    display: block;
    padding: 0 0 0 50px;
  }
}

.l-footer__list--nest__item .l-footer__list--nest__link::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto auto;
  left: 0;
  width: 5px;
  height: 1px;
  background-color: #fff;
}

@media (max-width: 1023px) {
  .l-footer__list--nest__item .l-footer__list--nest__link::before {
    left: 40px;
  }
}

.l-footer__list--nest {
  margin-top: 26px;
}

@media (max-width: 1023px) {
  .l-footer__list--nest {
    display: none;
    margin-top: 0;
    padding-bottom: 12px;
  }
}

.l-footer__list--nest__item+.l-footer__list--nest__item {
  margin-top: 12px;
}

@media (max-width: 1023px) {
  .l-footer__list--nest__item+.l-footer__list--nest__item {
    margin-top: 8px;
  }
}

.l-footer__list--2__item+.l-footer__list--2__item {
  margin-top: 36px;
}

@media (max-width: 1023px) {
  .l-footer__list--2__item+.l-footer__list--2__item {
    margin-top: 4px;
  }
}

.l-footer__list--2__link {
  color: #fff;
}

.l-footer__bottom {
  background-color: #23323C;
  padding: 40px 15px;
}

@media (max-width: 1023px) {
  .l-footer__bottom {
    padding: 32px 0;
  }
}

.l-footer__bottom__inner {
  max-width: 1080px;
  margin: auto;
}

.l-footer__bottom__linkWrap {
  display: flex;
  align-items: center;
}

@media (max-width: 1023px) {
  .l-footer__bottom__linkWrap {
    display: block;
  }
}

.l-footer__logoLink {
  display: inline-block;
  transition: all 0.3s;
}

@media (max-width: 1023px) {
  .l-footer__logoLink {
    display: inline-block;
    margin: auto;
  }
}

.l-footer__logoLink:hover {
  opacity: 0.7;
}
.l-footer__logoLink.logo-kel {
  width: 104px;
}
.l-footer__logoLink.logo-kg {
  width: 240px;
}

@media (max-width: 1023px) {
  .l-footer__logoLink.logo-kel {
    width: 88px;
  }
  .l-footer__logoLink {
    width: 160px;
  }
}

.l-footer__bottom__list {
  display: flex;
  margin-left: 58px;
  position: relative;
}

@media (max-width: 1023px) {
  .l-footer__bottom__list {
    margin-top: 20px;
    margin-left: 0;
    display: flex;
    justify-content: center;
  }
}

.l-footer__bottom__list::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 40px;
  background-color: #7D7D7D;
  top: 0;
  bottom: 0;
  right: auto;
  left: -20px;
  margin: auto auto;
}

@media (max-width: 1023px) {
  .l-footer__bottom__list::before {
    content: none;
  }
}

.l-footer__bottom__link {
  color: #fff;
  padding: 10px 24px;
  transition: all 0.3s;
}

.l-footer__bottom__link:hover {
  color: #05055A;
}

@media (max-width: 1023px) {
  .l-footer__bottom__link {
    font-size: 12px;
    padding: 0 12.5px;
    display: block;
  }
}

.l-footer__copy {
  margin-top: 20px;
  color: #B2B2B2;
  font-size: 12px;
}

@media (max-width: 1023px) {
  .l-footer__copy {
    text-align: center;
  }
}

.l-btn__pageTop {
  display: block;
  width: 60px;
  height: 60px;
  background-color: #05055A;
  position: fixed;
  bottom: 64px;
  right: 40px;
  left: auto;
  opacity: 0;
  z-index: 1;
  transition: all 0.3s;
}

@media (max-width: 1023px) {
  .l-btn__pageTop {
    position: relative;
    width: 100%;
    height: 30px;
    bottom: auto;
    right: auto;
    opacity: 1 !important;
  }
}

.l-btn__pageTop.is-active {
  animation-name: btn_pagetop;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: alternate;
  animation-fill-mode: forwards;
  animation-play-state: running;
}

@media (max-width: 1023px) {
  .l-btn__pageTop.is-active {
    animation-name: none;
  }
}

.l-btn__pageTop.is-no-active {
  animation-name: btn_pagetop_fadeout;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: alternate;
  animation-fill-mode: forwards;
  animation-play-state: running;
}

@media (max-width: 1023px) {
  .l-btn__pageTop.is-no-active {
    animation-name: none;
  }
}

.l-btn__pageTop::before {
  content: "";
  position: absolute;
  display: block;
  top: 10px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto auto;
  width: 18px;
  height: 18px;
  border-left: 2px solid #FFFFFF;
  border-top: 2px solid #FFFFFF;
  transform: rotate(45deg);
}

@media (max-width: 1023px) {
  .l-btn__pageTop::before {
    width: 12px;
    height: 12px;
  }
}

@keyframes btn_pagetop {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes btn_pagetop_fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}


/*--------------------
layout
--------------------*/


/* Slider */

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
}

.slick-slider .slick-track, .slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  min-height: 1px;
  outline: none;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-prev, .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

.slick-prev:hover:before, .slick-prev:focus:before, .slick-next:hover:before, .slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before, .slick-next.slick-disabled:before {
  opacity: .25;
}

.slick-prev:before, .slick-next:before {
  font-family: 'slick';
  font-size: 20px;
  line-height: 1;
  opacity: .75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir='rtl'] .slick-prev {
  right: -25px;
  left: auto;
}

.slick-next {
  right: -25px;
}

[dir='rtl'] .slick-next {
  right: auto;
  left: -25px;
}


/* Dots */

.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  font-family: 'slick';
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  text-align: center;
  opacity: .25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: .75;
  color: black;
}


/* 上下の余白調整 */

.crf--container.mt-0 {
  margin-top: 0;
}

.crf--container.mt-ss {
  margin-top: 20px;
}

@media (max-width: 1023px) {
  .crf--container.mt-ss {
    margin-top: 10px;
  }
}

.crf--container.mt-s {
  margin-top: 40px;
}

@media (max-width: 1023px) {
  .crf--container.mt-s {
    margin-top: 20px;
  }
}

.crf--container.mt-m {
  margin-top: 64px;
}

@media (max-width: 1023px) {
  .crf--container.mt-m {
    margin-top: 32px;
  }
}

.crf--container.mt-l {
  margin-top: 80px;
}

@media (max-width: 1023px) {
  .crf--container.mt-l {
    margin-top: 40px;
  }
}

.crf--container.mt-ll {
  margin-top: 120px;
}

@media (max-width: 1023px) {
  .crf--container.mt-ll {
    margin-top: 60px;
  }
}


/* /上下の余白調整 */


/* その他の共通パーツ */

.c-btn {
  display: block;
  width: 240px;
  background-color: #fff;
  color: #05055A;
  border-radius: 60px;
  text-align: center;
  font-size: 16px;
  padding: 14px 0;
  position: relative;
}

.c-btn::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: auto;
  right: 30px;
  margin: auto auto;
  background-color: #05055A;
  display: block;
  width: 15px;
  height: 2px;
}

.c-btn::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: auto;
  right: 30px;
  margin: auto auto;
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #05055A;
  border-right: 2px solid #05055A;
  transform: rotate(45deg);
}

.c-inner {
  max-width: 1110px;
  margin: auto;
  padding: 0 15px;
}


/* /その他の共通パーツ */


/*ヒーローイメージ*/

.crf-hero_images {
  overflow: hidden;
}
.crf-hero_images .slick-active img,
.crf-hero_images .slick-before img {
  -webkit-animation-name: hero_expanding;
          animation-name: hero_expanding;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
@-webkit-keyframes hero_expanding {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@keyframes hero_expanding {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.crf-hero_images .slider__wrap {
  position: relative;
}
.crf-hero_images .slider__wrap .c-btn {
  margin-top: 67px;
}
.crf-hero_images .crf--slider li {
  display: -webkit-box !important;
  display: flex !important;
  position: relative;
}
.crf-hero_images .crf--slider .c-btn {
  margin-top: 40px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: bold;
  padding: 14px 48px;
}
.crf-hero_images .crf--slider__img {
  width: calc(100% - 80px);
  max-height: calc(100vh - 114px);
}
.crf-hero_images .crf--slider__img .c-img-trimming {
  width: 360px;
  margin: auto;
  width: 100%;
}
.crf-hero_images .crf--slider__img .c-img-trimming > .img, .crf-hero_images .crf--slider__img .c-img-trimming .iframe {
  position: relative;
  overflow: hidden;
  padding-top: 66.6666666667%;
  width: 100%;
  display: block;
}
.crf-hero_images .crf--slider__img .c-img-trimming > .img img, .crf-hero_images .crf--slider__img .c-img-trimming > .img iframe, .crf-hero_images .crf--slider__img .c-img-trimming .iframe img, .crf-hero_images .crf--slider__img .c-img-trimming .iframe iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.crf-hero_images .crf--slider__img .c-img-trimming > .img img, .crf-hero_images .crf--slider__img .c-img-trimming .iframe img {
  -o-object-fit: cover;
     object-fit: cover;
}
.crf-hero_images .crf--slider__img .c-img-trimming img {
  left: 0 !important;
  top: 0 !important;
  -webkit-transform: none !important;
          transform: none !important;
}
.crf-hero_images .crf--slider__img .txt {
  position: absolute;
  bottom: 0;
  font-size: 34px;
  left: 60px;
  bottom: 60px;
  color: #fff;
}
.crf-hero_images .crf--slider__img .txt span {
  font-size: 16px;
  color: #fff;
}

.crf-hero_images .crf--slider__counter {
  position: relative;
  background: linear-gradient(150deg, #05055A 0%, #2E9EF1 41%, #36BAF8 51%, #ADE8F4 65%, #FFF79D 79%, #FF8C05 100%);
  padding: 40px 40px 200px 40px;
  width: 80px;
}
.crf-hero_images .slick-counter {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto auto;
  -webkit-box-align: center;
          align-items: center;
  font-size: 18px;
  color: #fff;
  height: 50px;
  width: 20px;
}
.crf-hero_images .slick-counter .current {
  font-size: 18px;
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
}
.crf-hero_images .slick-counter .current::before {
  content: "0";
}
.crf-hero_images .slick-counter .total {
  font-size: 18px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  position: relative;
  border-top: 1px solid #fff;
  margin-top: 5px;
  padding-top: 5px;
}
.crf-hero_images .slick-counter .total::before {
  content: "0";
}
.crf-hero_images .scroll {
  color: #fff;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
}
.crf-hero_images .scroll::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 50px;
  background-color: #fff;
  display: block;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  bottom: -17px;
  left: -38px;
}
.l-body.en .crf--slider__txt h1,
.l-body.vn .crf--slider__txt h1 {
  font-size: 35px;
}

/* /ヒーローイメージ */


/* 見出し */

.crf-heading {
  margin-top: 120px;
}

@media (max-width: 1023px) {
  .crf-heading {
    margin-top: 40px;
  }
}

.crf-heading .crf-heading__wraper {
  position: relative;
}

.crf-heading .crf-heading__wraper::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: auto auto;
  width: 100%;
  height: 3px;
  background-color: #F2F9FF;
}

.crf-heading .crf-heading__ttl {
  font-size: 34px;
  font-weight: bold;
  position: relative;
  letter-spacing: 0.06em;
  padding-bottom: 24px;
  text-align: center;
}

@media (max-width: 1023px) {
  .crf-heading .crf-heading__ttl {
    font-size: 18px;
  }
}

.crf-heading .crf-heading__ttl::before {
  content: "";
  position: absolute;
  display: block;
  width: 28px;
  height: 10px;
  border-left: 10px solid #E6E6E6;
  border-right: 10px solid #05055A;
  left: -38px;
  right: 0;
  margin: auto auto;
  top: auto;
  bottom: 0;
}

@media (max-width: 1023px) {
  .crf-heading .crf-heading__ttl::before {
    border-left: 6px solid #E6E6E6;
    border-right: 6px solid #05055A;
    width: 18px;
    height: 6px;
    bottom: 10px;
    left: -26px;
  }
}

.crf-heading .crf-heading__ttl::after {
  content: "";
  position: absolute;
  display: block;
  width: 28px;
  height: 10px;
  border-left: 10px solid #05055A;
  border-right: 10px solid #E6E6E6;
  left: 38px;
  right: 0;
  margin: auto auto;
  top: auto;
  bottom: 0;
}

@media (max-width: 1023px) {
  .crf-heading .crf-heading__ttl::after {
    border-left: 6px solid #05055A;
    border-right: 6px solid #E6E6E6;
    width: 18px;
    height: 6px;
    left: 26px;
    bottom: 10px;
  }
}


/* /見出し */


/* 小見出し*/


/* 見出し */

.crf-sub_heading {
  margin-top: 80px;
}

@media (max-width: 1023px) {
  .crf-sub_heading {
    margin-top: 30px;
  }
}

.crf-sub_heading .crf-sub_heading__ttl {
  font-size: 28px;
  font-weight: bold;
  position: relative;
  letter-spacing: 0.06em;
  padding-bottom: 19px;
  text-align: left;
  text-align: justify;
  text-align-last: left;
}

@media (max-width: 1023px) {
  .crf-sub_heading .crf-sub_heading__ttl {
    font-size: 18px;
    padding-bottom: 14px;
  }
}

.crf-sub_heading .crf-sub_heading__ttl::before {
  content: "";
  position: absolute;
  display: block;
  width: 24px;
  height: 8px;
  border-left: 8px solid #05055A;
  border-right: 8px solid #05055A;
  bottom: 0px;
  left: 0px;
  margin: 0;
}

@media (max-width: 1023px) {
  .crf-sub_heading .crf-sub_heading__ttl::before {
    border-left: 6px solid #05055A;
    border-right: 6px solid #05055A;
    width: 18px;
    height: 6px;
  }
}

.crf-sub_heading .crf-sub_heading__ttl::after {
  content: "";
  position: absolute;
  display: block;
  width: 24px;
  height: 8px;
  border-left: 8px solid #E6E6E6;
  border-right: 8px solid #E6E6E6;
  left: 32px;
  bottom: 0;
  margin: 0;
}

@media (max-width: 1023px) {
  .crf-sub_heading .crf-sub_heading__ttl::after {
    border-left: 6px solid #E6E6E6;
    border-right: 6px solid #E6E6E6;
    width: 18px;
    height: 6px;
    left: 26px;
  }
}


/* /小見出し */


/* サムネイル付きリスト（左） */

.contents-with_thumbnail-l {
  margin-top: 64px;
  max-width: 100vw;
  overflow: hidden;
}

.contents-with_thumbnail-l .c-inner+.c-inner {
  margin-top: 29px;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .contents-with_thumbnail-l .c-inner+.c-inner {
    margin-top: 32px;
  }
}

@media (max-width: 1023px) {
  .contents-with_thumbnail-l {
    max-width: none;
    margin-top: 32px;
  }
}

.contents-with_thumbnail-l .img {
  position: absolute;
  left: calc(50vw - 540px);
  z-index: 2;
}

@media (max-width: 1200px) {
  .contents-with_thumbnail-l .img {
    left: 60px;
  }
}

@media (max-width: 1100px) {
  .contents-with_thumbnail-l .img {
    left: 40px;
  }
}

@media (max-width: 1023px) {
  .contents-with_thumbnail-l .img {
    position: static;
    width: 100%;
    display: block;
    margin: auto;
    background-color: #F2F9FF;
    padding-bottom: 20px;
    background: linear-gradient(90deg, #f2f9ff 0%, #f2f9ff 40%, white 40%, white 100%);
    padding-bottom: 28px;
  }
}

@media (max-width: 660px) {
  .contents-with_thumbnail-l .img {
    background: linear-gradient(90deg, #f2f9ff 0%, #f2f9ff 60%, white 60%, white 100%);
  }
}

/*
.contents-with_thumbnail-l .img img {
  clip-path: polygon(20% 0%, 100% 0, 100% 20%, 100% 77%, 85% 100%, 20% 100%, 0 100%, 0 0);
}
*/

@media (max-width: 1023px) {
  .contents-with_thumbnail-l .img::before {
    content: "";
    position: absolute;
    display: block;
    opacity: 0.15;
    transform: rotate(-45deg);
    top: 10px;
    left: -90px;
    display: block;
    width: 278px;
    height: 147px;
    z-index: 1;
    background: -webkit-linear-gradient(-90deg, #1D6398 0px, #1D6398 49px, #71ACD4 49px, #71ACD4 98px, #A2D1E8 98px, #A2D1E8 147px);
  }
}

@media (max-width: 660px) {
  .contents-with_thumbnail-l .img::before {
    left: 0;
    width: 278px;
    height: 147px;
    z-index: 1;
    top: 0px;
    left: -100px;
    background: -webkit-linear-gradient(-90deg, #1D6398 0px, #1D6398 49px, #71ACD4 49px, #71ACD4 98px, #A2D1E8 98px, #A2D1E8 147px);
  }
}

@media (max-width: 1023px) {
  .contents-with_thumbnail-l .img::after {
    content: "";
    position: absolute;
    background-color: #fff;
    display: block;
    top: 0;
    width: 50px;
    height: 50px;
    left: 0;
    z-index: 1;
  }
}

/*
.contents-with_thumbnail-l .img__wrap {
  filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.2));
  display: block;
}
*/

@media (max-width: 1023px) {
  .contents-with_thumbnail-l .img__wrap {
    position: relative;
    z-index: 2;
  }
}

@media (max-width: 660px) {
  .contents-with_thumbnail-l .img__wrap {
    width: calc(100% - 100px);
  }
}

@media (max-width: 520px) {
  .contents-with_thumbnail-l .img__wrap {
    margin: auto;
    display: block;
  }
}

.contents-with_thumbnail-l .txt__wrap {
  padding: 35px 0 40px 0;
}

@media (max-width: 1200px) {
  .contents-with_thumbnail-l .txt__wrap {
    padding: 20px 0 40px 0;
  }
}

@media (max-width: 1023px) {
  .contents-with_thumbnail-l .txt__wrap {
    padding: 20px 0 0 0;
    margin-top: -35px;
  }
}

.contents-with_thumbnail-l .c-inner {
  width: auto;
  position: relative;
  max-width: none;
  padding: 0;
}

.contents-with_thumbnail-l .txt__wrap__cont {
  width: 440px;
  position: relative;
  left: auto;
  left: calc(50vw + 65px);
}

@media (max-width: 1200px) {
  .contents-with_thumbnail-l .txt__wrap__cont {
    left: 520px;
  }
}

@media (max-width: 1110px) {
  .contents-with_thumbnail-l .txt__wrap__cont {
    left: 500px;
    width: 440px;
  }
}

@media (max-width: 1023px) {
  .contents-with_thumbnail-l .txt__wrap__cont {
    width: 100%;
    position: static;
  }
}

.contents-with_thumbnail-l .ttl {
  position: relative;
  left: calc(50vw + 60px);
  display: inline-block;
  font-size: 28px;
  letter-spacing: 0.06em;
  padding-left: 20px;
  max-width: 48vw;
  padding-right: 15px;
  margin-top: 10px;
  max-width: 500px;
  min-height: 32px;
  word-break: break-word;
  text-align: justify;
  text-align-last: left;
}

@media (max-width: 1200px) {
  .contents-with_thumbnail-l .ttl {
    left: 520px;
    width: 440px;
  }
}

@media (max-width: 1110px) {
  .contents-with_thumbnail-l .ttl {
    left: 500px;
  }
}

@media (max-width: 1023px) {
  .contents-with_thumbnail-l .ttl {
    font-size: 16px;
    max-width: none;
    width: 100%;
    min-height: auto;
  }
}

.contents-with_thumbnail-l .ttl::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #05055A;
  top: 12px;
  right: auto;
  left: 0px;
  margin: auto auto;
}

@media (max-width: 1023px) {
  .contents-with_thumbnail-l .ttl::before {
    width: 6px;
    height: 6px;
    top: 0;
    bottom: 0;
    left: 25px;
    right: auto;
    margin: auto auto;
  }
}

.contents-with_thumbnail-l .ttl.u-empty::before {
  content: none;
}

@media (max-width: 1023px) {
  .contents-with_thumbnail-l .ttl {
    max-width: 50%;
    left: 0;
    max-width: none;
    display: block;
  }
}

@media (max-width: 1023px) {
  .contents-with_thumbnail-l .ttl {
    font-size: 16px;
    padding-left: 35px;
    left: 0;
  }
}

.contents-with_thumbnail-l img, .contents-with_thumbnail-l iframe {
  max-width: 560px;
  width: 50vw;
  height: 372px;
}

@media (max-width: 1200px) {
  .contents-with_thumbnail-l img, .contents-with_thumbnail-l iframe {
    max-width: 420px;
    height: 280px;
  }
}

@media (max-width: 1023px) {
  .contents-with_thumbnail-l img, .contents-with_thumbnail-l iframe {
    width: 100vw;
    display: block;
    margin-left: 47.5px;
  }
}

@media (max-width: 520px) {
  .contents-with_thumbnail-l img, .contents-with_thumbnail-l iframe {
    margin-left: 0;
    width: 100%;
    height: calc(66vw - 58px);
  }
}

.contents-with_thumbnail-l .txt__wrap__inner {
  position: relative;
  padding: 20px 0 40px 0;
  overflow: hidden;
  width: 100vw;
  min-height: 250px;
  margin-top: 16px;
}

@media (max-width: 1023px) {
  .contents-with_thumbnail-l .txt__wrap__inner {
    padding: 0px 35px 0px 35px;
    min-height: auto;
    margin-top: 10px;
  }
}

.contents-with_thumbnail-l .txt__wrap__inner::before {
  content: "";
  position: absolute;
  display: block;
  background-color: #F2F9FF;
  width: calc(50vw + 550px);
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}

@media (max-width: 1200px) {
  .contents-with_thumbnail-l .txt__wrap__inner::before {
    width: calc(48vw + 450px);
  }
}

@media (max-width: 1023px) {
  .contents-with_thumbnail-l .txt__wrap__inner::before {
    content: none;
  }
}

.contents-with_thumbnail-l .txt__wrap__inner::after {
  content: "";
  position: absolute;
  display: block;
  opacity: 0.15;
  transform: rotate(-45deg);
  top: -33px;
  left: -210px;
  display: block;
  width: 528px;
  height: 231px;
  z-index: 1;
  background: -webkit-linear-gradient(-90deg, #1D6398 0px, #1D6398 77px, #71ACD4 77px, #71ACD4 154px, #A2D1E8 154px, #A2D1E8 231px);
}

@media (max-width: 1023px) {
  .contents-with_thumbnail-l .txt__wrap__inner::after {
    content: none;
  }
}

.contents-with_thumbnail-l .txt {
  font-size: 16px;
  color: #3A3A3A;
  position: relative;
  z-index: 1;
  line-height: 1.6;
  text-align: justify;
  text-align-last: left;
}

@media (max-width: 1023px) {
  .contents-with_thumbnail-l .txt {
    font-size: 14px;
    line-height: 1.4;
  }
}

.contents-with_thumbnail-l .link {
  display: inline-block;
  color: #05055A;
  position: relative;
  padding-right: 10px;
  transition: all 0.3s;
  cursor: pointer;
  margin-top: 32px;
  letter-spacing: 0.06em;
  font-weight: bold;
  padding-right: 32px;
}

@media (max-width: 1023px) {
  .contents-with_thumbnail-l .link {
    margin-top: 16px;
    font-size: 14px;
    padding-right: 20px;
    display: flex;
    justify-content: flex-end;
  }
}

.contents-with_thumbnail-l .link::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 2px;
  background-color: #05055A;
  top: 0;
  bottom: 0;
  left: auto;
  right: 0;
  margin: auto auto;
}

@media (max-width: 1023px) {
  .contents-with_thumbnail-l .link::before {
    width: 12px;
  }
}

.contents-with_thumbnail-l .link::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: solid 2px #05055A;
  border-right: solid 2px #05055A;
  transform: rotate(45deg);
  top: 0;
  bottom: 0;
  left: auto;
  right: 0;
  margin: auto auto;
  transform-origin: right;
  top: 6px;
  right: 1px;
}

@media (max-width: 1023px) {
  .contents-with_thumbnail-l .link::after {
    width: 8px;
    height: 8px;
    top: 6px;
    right: 1px;
  }
}

.contents-with_thumbnail-l .link:hover {
  opacity: 0.7;
}


/* /サムネイル付きリスト（左） */


/* サムネイル付きリスト（右） */

.contents-with_thumbnail-r {
  margin-top: 64px;
  max-width: 100vw;
  overflow: hidden;
}

.contents-with_thumbnail-r .c-inner+.c-inner {
  margin-top: 29px;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .contents-with_thumbnail-r .c-inner+.c-inner {
    margin-top: 32px;
  }
}

@media (max-width: 1023px) {
  .contents-with_thumbnail-r {
    max-width: none;
    margin-top: 32px;
  }
}

.contents-with_thumbnail-r .img {
  position: absolute;
  right: calc(50vw - 560px);
  top: 0;
  z-index: 3;
}

@media (max-width: 1200px) {
  .contents-with_thumbnail-r .img {
    left: auto;
    right: 60px;
  }
}

@media (max-width: 1100px) {
  .contents-with_thumbnail-r .img {
    left: auto;
    right: 40px;
  }
}

@media (max-width: 1023px) {
  .contents-with_thumbnail-r .img {
    position: relative;
    left: calc(100vw - 600px);
    right: 0;
    width: 100%;
    display: block;
    margin: auto;
    background-color: transparent;
    padding-bottom: 20px;
    background: linear-gradient(90deg, white 0%, white 60%, #f2f9ff 60%, #f2f9ff 100%);
    overflow: hidden;
    padding-bottom: 33px;
    left: auto;
  }
}

@media (max-width: 1023px) and (max-width: 660px) {
  .contents-with_thumbnail-r .img {
    left: auto;
    right: auto;
    background: linear-gradient(90deg, white 0%, white 40%, #f2f9ff 40%, #f2f9ff 100%);
  }
}

/*
.contents-with_thumbnail-r .img img {
  clip-path: polygon(20% 0%, 100% 0, 100% 20%, 100% 77%, 85% 100%, 20% 100%, 0 100%, 0 0);
}
*/

@media (max-width: 520px) {
  .contents-with_thumbnail-r .img img {
    left: auto;
  }
}

@media (max-width: 1200px) {
  .contents-with_thumbnail-r .img::before {
    left: calc(100vw - 460px);
  }
}

@media (max-width: 1023px) {
  .contents-with_thumbnail-r .img::before {
    content: "";
    position: absolute;
    display: block;
    opacity: 0.15;
    transform: rotate(-45deg);
    bottom: -10px;
    display: block;
    z-index: 1;
    width: 278px;
    height: 147px;
    background: -webkit-linear-gradient(-90deg, #A2D1E8 0px, #A2D1E8 49px, #71ACD4 49px, #71ACD4 98px, #1D6398 98px, #1D6398 147px);
    left: calc(100vw - 325px);
    left: auto;
    right: -95px;
    bottom: -30px;
  }
}

@media (max-width: 660px) {
  .contents-with_thumbnail-r .img::before {
    left: auto;
    right: -122px;
    bottom: -26px;
    width: 278px;
    height: 147px;
    z-index: 1;
    background: -webkit-linear-gradient(-90deg, #A2D1E8 0px, #A2D1E8 49px, #71ACD4 49px, #71ACD4 98px, #1D6398 98px, #1D6398 147px);
  }
}

@media (max-width: 1023px) {
  .contents-with_thumbnail-r .img::after {
    content: "";
    position: absolute;
    background-color: #fff;
    display: block;
    top: 0;
    width: 47.5px;
    height: 50px;
    left: 560px;
    z-index: 1;
    left: auto;
    width: 50px;
    right: 0;
  }
}

/*
.contents-with_thumbnail-r .img__wrap {
  filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.2));
  display: block;
}
*/

@media (max-width: 1023px) {
  .contents-with_thumbnail-r .img__wrap {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    margin-right: 50px;
  }
}

@media (max-width: 520px) {
  .contents-with_thumbnail-r .img__wrap {
    margin: auto;
    display: block;
    width: calc(100% - 100px);
  }
}

.contents-with_thumbnail-r .txt__wrap {
  padding: 35px 0 40px 0;
}

@media (min-width: 1025px) {
  .contents-with_thumbnail-r .txt__wrap {
    min-height: 405px;
  }
}

@media (max-width: 1200px) {
  .contents-with_thumbnail-r .txt__wrap {
    margin-top: -10px;
    position: relative;
    z-index: 3;
    min-height: 405px;
  }
}

@media (max-width: 1023px) {
  .contents-with_thumbnail-r .txt__wrap {
    padding: 20px 0 0 0;
    margin-top: -5px;
    z-index: 4;
    min-height: auto;
  }
}

.contents-with_thumbnail-r .c-inner {
  width: auto;
  position: relative;
  max-width: none;
  padding: 0;
}

@media (max-width: 1200px) {
  .contents-with_thumbnail-r .c-inner {
    display: flex;
    flex-direction: column-reverse;
  }
}

.contents-with_thumbnail-r .txt__wrap__cont {
  width: 440px;
  position: relative;
  left: calc(50vw - 500px);
}

@media (max-width: 1200px) {
  .contents-with_thumbnail-r .txt__wrap__cont {
    left: calc(100vw - 965px);
    width: 440px;
  }
}

@media (max-width: 1110px) {
  .contents-with_thumbnail-r .txt__wrap__cont {
    left: calc(100vw - 920px);
    width: 440px;
  }
}

@media (max-width: 1023px) {
  .contents-with_thumbnail-r .txt__wrap__cont {
    width: 100%;
    position: static;
  }
}

.contents-with_thumbnail-r .ttl {
  position: relative;
  left: calc(50vw - 500px);
  display: inline-block;
  font-size: 28px;
  position: relative;
  letter-spacing: 0.06em;
  padding-left: 20px;
  max-width: 48vw;
  padding-right: 0px;
  max-width: 440px;
  word-break: break-word;
  text-align: justify;
  text-align-last: left;
  min-height: 32px;
}

@media (max-width: 1200px) {
  .contents-with_thumbnail-r .ttl {
    left: calc(100vw - 965px);
    width: 440px;
  }
}

@media (max-width: 1110px) {
  .contents-with_thumbnail-r .ttl {
    left: calc(100vw - 920px);
  }
}

@media (max-width: 1023px) {
  .contents-with_thumbnail-r .ttl {
    font-size: 16px;
    max-width: none;
    width: 100%;
    min-height: auto;
  }
}

.contents-with_thumbnail-r .ttl::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #05055A;
  top: 12px;
  right: auto;
  left: 0px;
  margin: auto auto;
}

@media (max-width: 1023px) {
  .contents-with_thumbnail-r .ttl::before {
    width: 6px;
    height: 6px;
    top: 0px;
    bottom: 0;
    margin: auto auto;
    left: 25px;
  }
}

@media (max-width: 1023px) {
  .contents-with_thumbnail-r .ttl {
    max-width: 50%;
    left: 0;
    display: block;
    max-width: none;
    font-size: 16px;
  }
}

@media (max-width: 1023px) {
  .contents-with_thumbnail-r .ttl {
    font-size: 16px;
    padding-left: 35px;
    left: 0;
    margin-top: -25px;
  }
}

.contents-with_thumbnail-r .ttl.u-empty::before {
  content: none;
}

.contents-with_thumbnail-r img {
  object-fit: cover;
}

.contents-with_thumbnail-r img, .contents-with_thumbnail-r iframe {
  max-width: 560px;
  width: 50vw;
  height: 372px;
}

@media (max-width: 1200px) {
  .contents-with_thumbnail-r img, .contents-with_thumbnail-r iframe {
    max-width: 420px;
    height: 280px;
  }
}

@media (max-width: 1023px) {
  .contents-with_thumbnail-r img, .contents-with_thumbnail-r iframe {
    width: 100vw;
    display: block;
    position: relative;
  }
}

@media (max-width: 520px) {
  .contents-with_thumbnail-r img, .contents-with_thumbnail-r iframe {
    margin-left: 0;
    width: 100%;
    height: calc(66vw - 58px);
  }
}

.contents-with_thumbnail-r .txt__wrap__inner {
  position: relative;
  padding: 20px 0 40px 0;
  overflow: hidden;
  width: 100vw;
  min-height: 250px;
  margin-top: 16px;
}

@media (max-width: 1023px) {
  .contents-with_thumbnail-r .txt__wrap__inner {
    padding: 0px 35px 0px 35px;
    min-height: auto;
    margin-top: 10px;
  }
}

.contents-with_thumbnail-r .txt__wrap__inner::before {
  content: "";
  position: absolute;
  display: block;
  background-color: #F2F9FF;
  width: calc(50vw + 550px);
  height: 100%;
  right: 0;
  top: 0;
  z-index: -1;
}

@media (max-width: 1200px) {
  .contents-with_thumbnail-r .txt__wrap__inner::before {
    width: calc(48vw + 450px);
  }
}

@media (max-width: 1023px) {
  .contents-with_thumbnail-r .txt__wrap__inner::before {
    content: none;
  }
}

.contents-with_thumbnail-r .txt__wrap__inner::after {
  content: "";
  position: absolute;
  display: block;
  opacity: 0.15;
  transform: rotate(-45deg);
  right: -220px;
  bottom: -15px;
  display: block;
  width: 528px;
  height: 231px;
  z-index: 1;
  background: -webkit-linear-gradient(-90deg, #A2D1E8 0px, #A2D1E8 77px, #71ACD4 77px, #71ACD4 154px, #1D6398 154px, #1D6398 231px);
}

@media (max-width: 1023px) {
  .contents-with_thumbnail-r .txt__wrap__inner::after {
    content: none;
  }
}

.contents-with_thumbnail-r .txt {
  font-size: 16px;
  color: #3A3A3A;
  position: relative;
  z-index: 1;
  text-align: justify;
  text-align-last: left;
  line-height: 1.6;
}

@media (max-width: 1023px) {
  .contents-with_thumbnail-r .txt {
    font-size: 14px;
    line-height: 1.4;
  }
}

.contents-with_thumbnail-r .link {
  display: inline-block;
  color: #05055A;
  position: relative;
  padding-right: 10px;
  transition: all 0.3s;
  cursor: pointer;
  margin-top: 32px;
  letter-spacing: 0.06em;
  font-weight: bold;
  padding-right: 32px;
}

@media (max-width: 1023px) {
  .contents-with_thumbnail-r .link {
    margin-top: 16px;
    font-size: 14px;
    padding-right: 20px;
    display: flex;
    justify-content: flex-end;
  }
}

.contents-with_thumbnail-r .link::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 2px;
  background-color: #05055A;
  top: 0;
  bottom: 0;
  left: auto;
  right: 0;
  margin: auto auto;
}

@media (max-width: 1023px) {
  .contents-with_thumbnail-r .link::before {
    width: 12px;
  }
}

.contents-with_thumbnail-r .link::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: solid 2px #05055A;
  border-right: solid 2px #05055A;
  transform: rotate(45deg);
  top: 0;
  bottom: 0;
  left: auto;
  right: 0;
  margin: auto auto;
  transform-origin: right;
  top: 6px;
  right: 1px;
}

@media (max-width: 1023px) {
  .contents-with_thumbnail-r .link::after {
    width: 8px;
    height: 8px;
    top: 6px;
    right: 1px;
  }
}

.contents-with_thumbnail-r .link:hover {
  opacity: 0.7;
}


/* /サムネイル付きリスト（右） */


/* カード型リスト */

.crf-bordered_cards {
  margin-top: 40px;
}

@media (max-width: 1023px) {
  .crf-bordered_cards {
    margin-top: 30px;
  }
}

.crf-bordered_cards a {
  display: block;
  transition: all 0.3s;
  height: 100%;
}

.crf-bordered_cards a:hover {
  opacity: 0.7;
}

@media (max-width: 1023px) {
  .crf-bordered_cards .c-inner {
    overflow-x: scroll;
  }
}

.crf-bordered_cards ul {
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 1023px) {
  .crf-bordered_cards ul {
    flex-wrap: nowrap;
    overflow-x: scroll;
  }
}

.crf-bordered_cards ul li {
  width: calc((100% - 80px) / 3);
  margin-left: 40px;
  border-bottom: 4px solid #05055A;
  box-shadow: 3px 0px 6px #0000001A;
  position: relative;
}

@media (max-width: 1023px) {
  .crf-bordered_cards ul li {
    width: 280px;
    display: block;
    margin-left: 0;
  }
  .crf-bordered_cards ul li:nth-child(n+2) {
    margin-left: 20px;
  }
}

.crf-bordered_cards ul li::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-right: 3px solid #05055A;
  border-bottom: 3px solid #05055A;
  right: 3px;
  bottom: 3px;
}

.crf-bordered_cards ul li:nth-child(n+4) {
  margin-top: 40px;
}

@media (max-width: 1023px) {
  .crf-bordered_cards ul li:nth-child(n+4) {
    margin-top: 0;
  }
}

.crf-bordered_cards ul li:nth-child(3n+1) {
  margin-left: 0;
}

@media (max-width: 1023px) {
  .crf-bordered_cards ul li:nth-child(3n+1) {
    margin-left: 20px;
  }
}

@media (max-width: 1023px) {
  .crf-bordered_cards ul li:nth-child(1) {
    margin-left: 0px;
  }
}

@media (max-width: 1023px) {
  .crf-bordered_cards ul li:last-child {
    margin-right: 20px;
  }
}

.crf-bordered_cards .ttl {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.06em;
}

@media (max-width: 1023px) {
  .crf-bordered_cards .ttl {
    font-size: 16px;
  }
}

.crf-bordered_cards .date {
  margin-top: 22px;
  font-size: 12px;
  color: #B2B2B2;
}

@media (max-width: 1023px) {
  .crf-bordered_cards .date {
    font-size: 10px;
    margin-top: 10px;
  }
}

.crf-bordered_cards .txt {
  margin-top: 15px;
  font-size: 16px;
  color: #7D7D7D;
  line-height: 1.6;
  text-align: justify;
  text-align-last: left;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .crf-bordered_cards .txt {
    font-size: 14px;
    margin-top: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
  }
}

.crf-bordered_cards .txt__wrap {
  padding: 24px 16px 22px 16px;
}

@media (max-width: 1023px) {
  .crf-bordered_cards .txt__wrap {
    padding: 13px 15px 22px 15px;
  }
}

.crf-bordered_cards img {
  object-fit: cover;
}

.crf-bordered_cards img, .crf-bordered_cards iframe {
  width: 100%;
  height: 222px;
}

@media (max-width: 1023px) {
  .crf-bordered_cards img, .crf-bordered_cards iframe {
    width: 260px;
    height: 173px;
  }
}


/* /カード型リスト */


/* リンクボタン */

.link-btn {
  margin-top: 40px;
}

@media (max-width: 1023px) {
  .link-btn {
    margin-top: 30px;
  }
}

.link-btn .c-btn {
  width: 280px;
  margin: auto;
  border: solid 1px #B2B2B2;
  font-weight: bold;
  padding: 20px 48px;
  transition: all 0.3s;
  letter-spacing: 0.06em;
  position: relative;
  display: block;
}

@media (max-width: 1023px) {
  .link-btn .c-btn {
    font-size: 14px;
    max-width: 220px;
    padding: 16px 48px;
    margin-top: 30px;
  }
}

.link-btn .c-btn::before {
  position: absolute;
  right: 23px;
}

@media (max-width: 1023px) {
  .link-btn .c-btn::before {
    width: 12px;
  }
}

.link-btn .c-btn::after {
  right: 24px;
  transform-origin: right;
  top: 6px;
  position: absolute;
}

@media (max-width: 1023px) {
  .link-btn .c-btn::after {
    width: 8px;
    height: 8px;
  }
}

.link-btn .c-btn:hover {
  opacity: 0.7;
}


/* /リンクボタン */


/* 画像リンクリスト */

.links-image {
  background-color: #F6F6F6;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

@media (max-width: 1023px) {
  .links-image {
    padding: 40px 0;
    margin-top: 40px;
  }
}

.links-image::before {
  opacity: 0.15;
  content: "";
  position: absolute;
  transform: rotate(-45deg);
  top: 22px;
  left: -464px;
  display: block;
  width: 902px;
  height: 345px;
  background: -webkit-linear-gradient(-90deg, #757575 0px, #757575 115px, #AFAFAF 115px, #AFAFAF 230px, #D1D1D1 230px, #D1D1D1 345px);
}

@media (max-width: 1023px) {
  .links-image::before {
    width: 278px;
    height: 147px;
    background: -webkit-linear-gradient(-90deg, #757575 0px, #757575 49px, #AFAFAF 49px, #AFAFAF 98px, #D1D1D1 98px, #D1D1D1 147px);
    left: -123px;
    top: -26px;
  }
}

.links-image .c-inner {
  position: relative;
}

.links-image li:nth-child(n+2) {
  margin-top: 32px;
}

.links-image a {
  display: block;
  width: 720px;
  margin: auto;
  transition: all 0.3s;
}

@media (max-width: 1023px) {
  .links-image a {
    width: 100%;
  }
}

.links-image a:hover {
  opacity: 0.7;
}

.links-image .img__wrap {
  position: relative;
  overflow: hidden;
  padding-top: 28%;
  /* 比率 */
}

.links-image img {
  object-fit: cover;
}

.links-image img, .links-image iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}


/* /画像リンクリスト */


/* ページタイトル */

.crf-page-title {
  margin-top: 0;
}

.crf-page-title .crf-page-title__wrap {
  position: relative;
  overflow: hidden;
}

/*
.crf-page-title .crf-page-title__wrap::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #0099FF;
  opacity: 0.5;
}

.crf-page-title .crf-page-title__wrap::after {
  content: "";
  position: absolute;
  display: block;
  opacity: 0.5;
  transform: rotate(-45deg);
  right: -220px;
  bottom: -15px;
  display: block;
  width: 528px;
  height: 231px;
  z-index: 1;
  background: -webkit-linear-gradient(-90deg, #A2D1E8 0px, #A2D1E8 77px, #71ACD4 77px, #71ACD4 154px, #1D6398 154px, #1D6398 231px);
}

@media (max-width: 1023px) {
  .crf-page-title .crf-page-title__wrap::after {
    width: 278px;
    height: 147px;
    background: -webkit-linear-gradient(-90deg, #A2D1E8 0px, #A2D1E8 49px, #71ACD4 49px, #71ACD4 98px, #1D6398 98px, #1D6398 147px);
    left: calc(100vw - 325px);
    left: auto;
    right: -95px;
    bottom: -30px;
  }
}
*/

.crf-page-title .crf-page-title__wrap p img {
  object-fit: cover;
  width: 100%;
  height: 184px;
}

@media (max-width: 1023px) {
  .crf-page-title .crf-page-title__wrap p img {
    height: 80px;
  }
}

.crf-page-title .crf-page-title__wrap .crf-page-title {
  position: absolute;
  color: #fff;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto auto;
  width: 1100px;
  padding-left: 20px;
  text-align: left;
  font-size: 40px;
  margin: auto auto;
  display: flex;
  align-items: center;
  font-weight: bold;
  letter-spacing: 0.06em;
}

@media (max-width: 1023px) {
  .crf-page-title .crf-page-title__wrap .crf-page-title {
    width: 100%;
    font-size: 20px;
    padding-left: 20px;
  }
}

/*
.crf-page-title img {
  opacity: 0.5;
}
*/


/* /ページタイトル */


/* パンくずリスト */

.crf-breadcrumb {
  margin-top: 18px;
}

@media (max-width: 1023px) {
  .crf-breadcrumb {
    margin-top: 10px;
  }
}

.crf-breadcrumb ul {
  display: flex;
  align-items: center;
  overflow-x: auto;
  overflow-y: hidden;
}

.crf-breadcrumb ul li:nth-child(n+2) {
  margin-left: 20px;
  padding-left: 20px;
  position: relative;
  font-size: 13px;
}

.crf-breadcrumb ul li:nth-child(n+2)::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-right: 2px solid #05055A;
  border-bottom: 2px solid #05055A;
  transform: rotate(-45deg);
  top: 3px;
  bottom: 0;
  right: auto;
  left: -4px;
}

@media (max-width: 1023px) {
  .crf-breadcrumb ul li:nth-child(n+2)::before {
    border-right: 1px solid #05055A;
    border-bottom: 1px solid #05055A;
  }
}

.crf-breadcrumb ul li:last-child {
  pointer-events: none;
}

.crf-breadcrumb ul li a {
  display: block;
  font-size: 13px;
  color: #7D7D7D;
  transition: all 0.3s;
  white-space: nowrap;
}

.crf-breadcrumb ul li a:hover {
  color: #05055A;
}


/* /パンくずリスト */


/* フリーテキスト */

.crf-free-text {
  font-size: 16px;
  line-height: 1.625;
  letter-spacing: 0.06em;
  padding: 0 40px;
  margin-top: 24px;
  text-align: justify;
  text-align-last: left;
}

@media (max-width: 1023px) {
  .crf-free-text {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.428;
    padding: 0;
  }
}

.crf-free-text .crf-free-text__txt {
  text-justify: inter-ideograph;
  word-break: break-word;
  padding: 0 40px;
  text-align: justify;
}

@media (max-width: 1023px) {
  .crf-free-text .crf-free-text__txt {
    padding: 0 10px;
  }
}

.crf-free-text .crf-free-text__txt.left {
  text-align-last: left;
}

.crf-free-text .crf-free-text__txt.center {
  text-align-last: center;
}

.crf-free-text .crf-free-text__txt.right {
  text-align-last: right;
}


/* /フリーテキスト */


/* 枠無しカード型リスト１ */

.crf--boderless_cards {
  margin-top: 64px;
}

@media (max-width: 1023px) {
  .crf--boderless_cards {
    margin-top: 32px;
  }
}

.crf--boderless_cards ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.crf--boderless_cards ul li {
  width: calc(50% - 22px);
  border-bottom: solid #05055A 3px;
  position: relative;
}

@media (max-width: 1023px) {
  .crf--boderless_cards ul li {
    width: calc(50% - 7.5px);
  }
}

.crf--boderless_cards ul li:nth-child(even) {
  margin-left: 44px;
}

@media (max-width: 1023px) {
  .crf--boderless_cards ul li:nth-child(even) {
    margin-left: 15px;
  }
}

.crf--boderless_cards ul li:nth-child(n+3) {
  margin-top: 40px;
}

@media (max-width: 1023px) {
  .crf--boderless_cards ul li:nth-child(n+3) {
    margin-top: 15px;
  }
}

.crf--boderless_cards ul li::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-right: 2px solid #05055A;
  border-bottom: 2px solid #05055A;
  right: 5px;
  bottom: 5px;
}

@media (max-width: 1023px) {
  .crf--boderless_cards ul li::after {
    width: 8px;
    height: 8px;
  }
}

.crf--boderless_cards ul a {
  transition: all 0.3s;
  display: block;
}

.crf--boderless_cards ul a:hover {
  opacity: 0.7;
}

.crf--boderless_cards .txt {
  font-size: 20px;
  font-weight: bold;
  margin: 24px 0;
  padding-left: 16px;
  min-height: 1px;
  text-align: justify;
  text-align-last: left;
}

@media (max-width: 1023px) {
  .crf--boderless_cards .txt {
    font-size: 12px;
    margin: 10px 0;
    padding-left: 10px;
  }
}

.crf--boderless_cards .img__wrap {
  position: relative;
  overflow: hidden;
  padding-top: 67%;
  /* 比率 */
}

.crf--boderless_cards img {
  object-fit: cover;
}

.crf--boderless_cards img, .crf--boderless_cards iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}


/* カテゴリーテイトル */

.crf-category-title {
  margin-top: 44px;
}

@media (max-width: 1023px) {
  .crf-category-title {
    margin-top: 20px;
  }
}

.crf-category-title h1 {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.06em;
}

@media (max-width: 1023px) {
  .crf-category-title h1 {
    font-size: 20px;
  }
}


/* /カテゴリーテイトル */


/* 投稿リスト（TOP用） */

.contents-title_more {
  background-color: #F6F6F6;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  margin-top: 64px;
}

@media (max-width: 1023px) {
  .contents-title_more {
    padding: 20px 0 40px 0;
    margin-top: 20px;
  }
}

.contents-title_more .c-inner {
  position: relative;
}

.contents-title_more::before {
  opacity: 0.15;
  content: "";
  position: absolute;
  transform: rotate(135deg);
  bottom: 0px;
  right: -464px;
  display: block;
  width: 902px;
  height: 345px;
  background: -webkit-linear-gradient(-90deg, #757575 0px, #757575 115px, #AFAFAF 115px, #AFAFAF 230px, #D1D1D1 230px, #D1D1D1 345px);
}

@media (max-width: 1023px) {
  .contents-title_more::before {
    width: 278px;
    height: 147px;
    background: -webkit-linear-gradient(-90deg, #757575 0px, #757575 49px, #AFAFAF 49px, #AFAFAF 98px, #D1D1D1 98px, #D1D1D1 147px);
    bottom: -35px;
    right: -105px;
  }
}

.contents-title_more li:nth-child(n+2) {
  margin-top: 10px;
}

.contents-title_more a, .contents-title_more .link_hash {
  background-color: #fff;
  display: flex;
  align-items: center;
  padding: 10px 32px 10px 10px;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s;
  cursor: pointer;
}

@media (max-width: 1023px) {
  .contents-title_more a, .contents-title_more .link_hash {
    padding: 8px 36px 8px 10px;
  }
}

.contents-title_more a:before, .contents-title_more .link_hash:before {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  background-color: #05055A;
  display: block;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto auto;
}

.contents-title_more a:after, .contents-title_more .link_hash:after {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 0;
  right: 22px;
  margin: auto auto;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  transform-origin: right;
  border-top: 2px solid #05055A;
  border-right: 2px solid #05055A;
}

.contents-title_more a:hover, .contents-title_more .link_hash:hover {
  opacity: 0.7;
}

@media (max-width: 1023px) {
  .contents-title_more a, .contents-title_more .link_hash {
    display: block;
  }
}

.contents-title_more .date__wrap {
  display: flex;
  align-items: center;
}

.contents-title_more .date {
  font-size: 12px;
  color: #B2B2B2;
}

.contents-title_more .category {
  margin-left: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 8px 0;
  border-radius: 4px;
  min-width: 80px;
  text-align: center;
  width: 240px;
}

@media (max-width: 1023px) {
  .contents-title_more .category {
    margin-left: 0;
    width: 166px;
    font-size: 10px;
    padding: 4px 0;
  }
}

.contents-title_more .category.is-red {
  background-color: #F15151;
}

.contents-title_more .category.is-green {
  background-color: #4CB283;
}

.contents-title_more .category.is-blue {
  background-color: #5473D6;
}

.contents-title_more .category.is-yellow {
  background-color: #F59246;
}

.contents-title_more .category.is-gray {
  background-color: #989898;
}

.contents-title_more .category.is-light-blue {
  background-color: #58CCD9;
}

.contents-title_more .category.is-black {
  background-color: #B2B2B2;
}

.contents-title_more .ttl {
  margin-left: 16px;
  font-size: 14px;
  width: calc(100% - 240px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 1023px) {
  .contents-title_more .ttl {
    margin-left: 0;
    margin-top: 8px;
    width: 100%;
  }
}

.contents-title_more .contents-title_more__inner {
  display: flex;
}

@media (max-width: 1023px) {
  .contents-title_more .contents-title_more__inner {
    display: block;
  }
}

.contents-title_more .list {
  width: 830px;
  padding-left: 25.5px;
  margin-left: 36px;
  border-left: 1px solid #E6E6E6;
}

@media (max-width: 1023px) {
  .contents-title_more .list {
    width: 100%;
    padding-left: 0;
    margin-left: 0;
    margin-top: 15px;
  }
}

.contents-title_more .main_ttl span {
  position: relative;
  font-size: 22px;
  font-weight: bold;
  padding-left: 20px;
  letter-spacing: 0.06em;
  display: block;
}

@media (max-width: 1023px) {
  .contents-title_more .main_ttl span {
    font-size: 16px;
    padding-left: 14px;
  }
}

.contents-title_more .main_ttl span::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  background-color: #05055A;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto auto;
}


/* /投稿リスト（TOP用） */


/* 投稿リスト（リストページ用） */

.contents-simple {
  background-color: #F6F6F6;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .contents-simple {
    padding: 20px 0 40px 0;
  }
}

.contents-simple .c-inner {
  position: relative;
}

.contents-simple::before {
  opacity: 0.15;
  content: "";
  position: absolute;
  transform: rotate(135deg);
  bottom: 0px;
  right: -464px;
  display: block;
  width: 902px;
  height: 345px;
  background: -webkit-linear-gradient(-90deg, #757575 0px, #757575 115px, #AFAFAF 115px, #AFAFAF 230px, #D1D1D1 230px, #D1D1D1 345px);
}

@media (max-width: 1023px) {
  .contents-simple::before {
    width: 278px;
    height: 147px;
    background: -webkit-linear-gradient(-90deg, #757575 0px, #757575 49px, #AFAFAF 49px, #AFAFAF 98px, #D1D1D1 98px, #D1D1D1 147px);
    bottom: -35px;
    right: -105px;
  }
}

.contents-simple li:nth-child(n+2) {
  margin-top: 10px;
}

@media (max-width: 1023px) {
  .contents-simple li:nth-child(n+2) {
    margin-top: 5px;
  }
}

.contents-simple a {
  background-color: #fff;
  display: flex;
  align-items: center;
  padding: 20px 32px 20px 24px;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s;
}

@media (max-width: 1023px) {
  .contents-simple a {
    padding: 8px 32px 8px 10px;
  }
}

.contents-simple a:hover {
  opacity: 0.7;
}

.contents-simple a:before {
  content: "";
  position: absolute;
  width: 16px;
  height: 2px;
  background-color: #05055A;
  top: 0;
  bottom: 0;
  left: auto;
  right: 10px;
  margin: auto auto;
}

@media (max-width: 1023px) {
  .contents-simple a:before {
    width: 12px;
  }
}

.contents-simple a:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: solid 2px #05055A;
  border-right: solid 2px #05055A;
  transform: rotate(45deg);
  top: 6px;
  bottom: 0;
  left: auto;
  right: 12px;
  margin: auto auto;
  transform-origin: right;
}

@media (max-width: 1023px) {
  .contents-simple a:after {
    width: 8px;
    height: 8px;
    top: 6px;
    right: 10px;
  }
}

@media (max-width: 1023px) {
  .contents-simple a {
    display: block;
  }
}

.contents-simple .date__wrap {
  display: flex;
  align-items: center;
}

.contents-simple .date {
  font-size: 12px;
  color: #B2B2B2;
  width: 80px;
}

@media (max-width: 1023px) {
  .contents-simple .date {
    font-size: 10px;
    width: 70px;
  }
}

.contents-simple .category {
  margin-left: 8px;
  color: #fff;
  font-size: 10px;
  padding: 4px 0;
  border-radius: 4px;
  min-width: 80px;
  text-align: center;
}

@media (max-width: 1023px) {
  .contents-simple .category {
    margin-left: 8px;
    min-width: 56px;
  }
}

.contents-simple .category.is-red {
  background-color: #F15151;
}

.contents-simple .category.is-green {
  background-color: #4CB283;
}

.contents-simple .category.is-blue {
  background-color: #5473D6;
}

.contents-simple .category.is-yellow {
  background-color: #F59246;
}

.contents-simple .category.is-gray {
  background-color: #989898;
}

.contents-simple .category.is-lightblue {
  background-color: #58CCD9;
}

.contents-simple .ttl {
  margin-left: 16px;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 1023px) {
  .contents-simple .ttl {
    margin-left: 0;
    margin-top: 4px;
    font-size: 12px;
  }
}


/* /投稿リスト（リストページ用） */


/*ページネーション*/

.crf-pagination {
  margin-top: 40px;
}

@media (max-width: 1023px) {
  .crf-pagination {
    margin-top: 20px;
  }
}

.crf-pagination ul {
  display: flex;
  justify-content: center;
}

.crf-pagination li {
  width: 40px;
  height: 40px;
  border: solid 1px #E6E6E6;
  border-right: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

@media (max-width: 1023px) {
  .crf-pagination li {
    width: 31.25px;
    height: 31.25px;
  }
}

.crf-pagination li:last-child {
  border-right: 1px solid #E6E6E6;
}

.crf-pagination li.is-abridgement {
  pointer-events: none;
}

.crf-pagination li.is-abridgement a {
  pointer-events: none;
}

.crf-pagination li:hover::before {
  border-color: #fff !important;
}

.crf-pagination li:hover::after {
  border-color: #fff !important;
}

.crf-pagination li:hover a {
  background-color: #05055A;
  color: #fff;
}

.crf-pagination li a {
  display: block;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  color: #B2B2B2;
}

@media (max-width: 1023px) {
  .crf-pagination li a {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
}

.crf-pagination li.is-active a {
  background-color: #05055A;
  color: #fff;
}

.crf-pagination li.is-first {
  position: relative;
}

.crf-pagination li.is-first::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto auto;
  display: block;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #B2B2B2;
  border-left: 2px solid #B2B2B2;
  transform: rotate(45deg);
  transition: all 0.3s;
}

@media (max-width: 1023px) {
  .crf-pagination li.is-first::before {
    width: 6px;
    height: 6px;
    left: -2px;
  }
}

.crf-pagination li.is-first::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  right: 0;
  margin: auto auto;
  display: block;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #B2B2B2;
  border-left: 2px solid #B2B2B2;
  transform: rotate(45deg);
  transition: all 0.3s;
}

@media (max-width: 1023px) {
  .crf-pagination li.is-first::after {
    width: 6px;
    height: 6px;
    left: 8px;
  }
}

.crf-pagination li.is-prev {
  position: relative;
}

.crf-pagination li.is-prev::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto auto;
  display: block;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #B2B2B2;
  border-left: 2px solid #B2B2B2;
  transform: rotate(45deg);
}

@media (max-width: 1023px) {
  .crf-pagination li.is-prev::before {
    width: 6px;
    height: 6px;
  }
}

.crf-pagination li.is-last {
  position: relative;
}

.crf-pagination li.is-last::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 10px;
  margin: auto auto;
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #B2B2B2;
  border-right: 2px solid #B2B2B2;
  transform: rotate(45deg);
}

@media (max-width: 1023px) {
  .crf-pagination li.is-last::before {
    width: 6px;
    height: 6px;
    right: 8px;
  }
}

.crf-pagination li.is-last::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0px;
  right: 0;
  margin: auto auto;
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #B2B2B2;
  border-right: 2px solid #B2B2B2;
  transform: rotate(45deg);
}

@media (max-width: 1023px) {
  .crf-pagination li.is-last::after {
    width: 6px;
    height: 6px;
    right: -2px;
  }
}

.crf-pagination li.is-next {
  position: relative;
}

.crf-pagination li.is-next::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto auto;
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #B2B2B2;
  border-right: 2px solid #B2B2B2;
  transform: rotate(45deg);
}

@media (max-width: 1023px) {
  .crf-pagination li.is-next::before {
    width: 6px;
    height: 6px;
  }
}


/*/ページネーション*/


/*news一覧のボタン*/

.crf--news_btn {
  margin-top: 48px;
}

@media (max-width: 1023px) {
  .crf--news_btn {
    margin-top: 20px;
  }
}

.crf--news_btn ul {
  display: flex;
}

.crf--news_btn ul li {
  position: relative;
}

.crf--news_btn ul li:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto auto;
  left: 0;
  width: 1px;
  height: 12px;
  background-color: #E6E6E6;
  display: block;
}

.crf--news_btn ul li:last-child:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto auto;
  left: auto;
  right: 0;
  width: 1px;
  height: 12px;
  background-color: #E6E6E6;
}

.crf--news_btn ul li.is-active a, .crf--news_btn ul li:hover a {
  color: #05055A;
}

.crf--news_btn ul li.is-active a::after, .crf--news_btn ul li:hover a::after {
  content: "";
  position: absolute;
  top: auto;
  bottom: -3px;
  left: 0;
  right: 0;
  top: auto;
  bottom: 0;
  margin: auto auto;
  width: 100%;
  height: 2px;
  display: block;
  background-color: #05055A;
}

@media (max-width: 1023px) {
  .crf--news_btn ul li.is-active a::after, .crf--news_btn ul li:hover a::after {
    bottom: -8px;
  }
}

.crf--news_btn ul a {
  display: block;
  padding: 8px 24px;
  position: relative;
  transition: all 0.3s;
  position: relative;
  color: #B2B2B2;
  letter-spacing: 0.06em;
}

@media (max-width: 1023px) {
  .crf--news_btn ul a {
    font-size: 12px;
    padding: 8px 20px;
  }
}


/* /news一覧のボタン */


/* 写真 */

.crf-cover-image {
  max-width: 1180px;
  margin: auto;
  margin-top: 40px;
}

@media (max-width: 1023px) {
  .crf-cover-image {
    margin-top: 20px;
  }
}

.crf-cover-image .img {
  width: 100%;
}

.crf-cover-image .img__wrap {
  position: relative;
  overflow: hidden;
  padding-top: 33%;
  /* 比率 */
}

.crf-cover-image img {
  object-fit: cover;
}

.crf-cover-image img, .crf-cover-image iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  clip-path: polygon(100% 0, 100% 78%, 92% 100%, 0 100%, 0 0);
}


/* /写真 */


/* タイトル付きリスト（2列・枠無し） */

.crf-borderless-2col-titled_items {
  background-color: #F6F6F6;
  padding: 40px 0 64px 0;
  position: relative;
  overflow: hidden;
  margin-top: 64px;
}

@media (max-width: 1023px) {
  .crf-borderless-2col-titled_items {
    padding: 20px 0 40px 0;
    margin-top: 32px;
  }
}

.crf-borderless-2col-titled_items::before {
  opacity: 0.15;
  content: "";
  position: absolute;
  transform: rotate(135deg);
  bottom: 0px;
  right: -464px;
  display: block;
  width: 902px;
  height: 345px;
  background: -webkit-linear-gradient(-90deg, #757575 0px, #757575 115px, #AFAFAF 115px, #AFAFAF 230px, #D1D1D1 230px, #D1D1D1 345px);
}

@media (max-width: 1023px) {
  .crf-borderless-2col-titled_items::before {
    width: 278px;
    height: 147px;
    background: -webkit-linear-gradient(-90deg, #757575 0px, #757575 49px, #AFAFAF 49px, #AFAFAF 98px, #D1D1D1 98px, #D1D1D1 147px);
    bottom: -35px;
    right: -105px;
  }
}

.crf-borderless-2col-titled_items .list {
  margin-top: 24px;
  padding: 0 20px;
}

@media (max-width: 1023px) {
  .crf-borderless-2col-titled_items .list {
    padding: 0;
    margin-top: 15px;
  }
}

.crf-borderless-2col-titled_items .ttl {
  font-size: 22px;
  font-weight: bold;
  padding-left: 20px;
  position: relative;
}

.crf-borderless-2col-titled_items .ttl::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  background-color: #05055A;
  top: 10px;
  right: auto;
  left: 0;
  margin: auto auto;
}

.crf-borderless-2col-titled_items dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (max-width: 1023px) {
  .crf-borderless-2col-titled_items dl {
    display: block;
  }
}

.crf-borderless-2col-titled_items div:not(.c-inner) {
  width: calc(50% - 25px);
}

@media (max-width: 1023px) {
  .crf-borderless-2col-titled_items div:not(.c-inner) {
    width: 100%;
  }
}

.crf-borderless-2col-titled_items div:not(.c-inner):nth-child(n+3) {
  margin-top: 26px;
}

@media (max-width: 1023px) {
  .crf-borderless-2col-titled_items div:not(.c-inner):nth-child(n+2) {
    margin-top: 15px;
  }
}

.crf-borderless-2col-titled_items .ttl {
  font-size: 22px;
  font-weight: bold;
  text-align: justify;
  text-align-last: left;
}

@media (max-width: 1023px) {
  .crf-borderless-2col-titled_items .ttl {
    font-size: 16px;
  }
}

.crf-borderless-2col-titled_items .sub_ttl {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.06em;
  text-align: justify;
  text-align-last: left;
}

.crf-borderless-2col-titled_items .txt {
  margin-top: 10px;
  padding-top: 10px;
  padding-left: 16px;
  padding: 10px 0 10px 16px;
  font-size: 14px;
  color: #7D7D7D;
  position: relative;
  line-height: 1.7;
  border-left: 2px solid #E6E6E6;
  letter-spacing: 0.06em;
  text-align: justify;
  text-align-last: left;
}

@media (max-width: 1023px) {
  .crf-borderless-2col-titled_items .txt {
    margin-top: 5px;
    padding-top: 5px;
    font-size: 10px;
    line-height: 1.8;
    padding: 5px 0 5px 10px;
  }
}


/* /タイトル付きリスト（2列・枠無し） */


/* シンプルギャラリー */

.crf-gallery-simple_nav {
  margin-top: 64px;
}

@media (max-width: 1023px) {
  .crf-gallery-simple_nav {
    margin-top: 30px;
  }
}

.crf-gallery-simple_nav .c-inner {
  background-color: #F2F9FF;
  position: relative;
  overflow: hidden;
  padding: 40px 15px;
}

@media (max-width: 1023px) {
  .crf-gallery-simple_nav .c-inner {
    padding: 20px 30px;
  }
}

.crf-gallery-simple_nav .c-inner::before {
  opacity: 0.15;
  content: "";
  position: absolute;
  transform: rotate(-45deg);
  top: -12px;
  left: -200px;
  display: block;
  width: 528px;
  height: 231px;
  z-index: 1;
  background: -webkit-linear-gradient(-90deg, #1D6398 0px, #1D6398 77px, #71ACD4 77px, #71ACD4 154px, #A2D1E8 154px, #A2D1E8 231px);
}

@media (max-width: 1023px) {
  .crf-gallery-simple_nav .c-inner::before {
    width: 206px;
    height: 93px;
    left: -70px;
    top: -12px;
    background: -webkit-linear-gradient(-90deg, #1D6398 0px, #1D6398 31px, #71ACD4 31px, #71ACD4 62px, #A2D1E8 62px, #A2D1E8 93px);
  }
}

.crf-gallery-simple_nav .c-inner a {
  display: block;
  transition: all 0.3s;
  max-width: 800px;
  width: 100%;
  margin: auto;
  position: relative;
  z-index: 2;
}

.crf-gallery-simple_nav .c-inner a:hover {
  opacity: 0.7;
}

.crf-gallery-simple_nav .img__wrap {
  position: relative;
  overflow: hidden;
  padding-top: 56%;
  /* 比率 */
}

.crf-gallery-simple_nav img {
  object-fit: cover;
}

.crf-gallery-simple_nav img, .crf-gallery-simple_nav iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}


/* /シンプルギャラリー */


/* 枠無しカード型リスト２ */

.crf-boderless_cards-with_description {
  margin-top: 80px;
}

@media (max-width: 1023px) {
  .crf-boderless_cards-with_description {
    margin-top: 32px;
  }
}

.crf-boderless_cards-with_description .list {
  margin-top: 40px;
}

@media (max-width: 1023px) {
  .crf-boderless_cards-with_description .list {
    margin-top: 15px;
  }
}

.crf-boderless_cards-with_description .list_item, .crf-boderless_cards-with_description .list_link {
  display: flex;
}

@media (max-width: 1023px) {
  .crf-boderless_cards-with_description .list_item, .crf-boderless_cards-with_description .list_link {
    display: block;
    max-width: 600px;
    margin: auto;
  }
}

.crf-boderless_cards-with_description .list_item:nth-child(n+2), .crf-boderless_cards-with_description .list_link:nth-child(n+2) {
  padding-top: 32px;
  margin-top: 36px;
  position: relative;
}

@media (max-width: 1023px) {
  .crf-boderless_cards-with_description .list_item:nth-child(n+2), .crf-boderless_cards-with_description .list_link:nth-child(n+2) {
    padding-top: 20px;
    margin-top: 30px;
  }
}

.crf-boderless_cards-with_description .list_item:nth-child(n+2)::before, .crf-boderless_cards-with_description .list_link:nth-child(n+2)::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 2px;
  background-color: #E6E6E6;
  display: block;
  top: 0;
  left: 0;
}

@media (max-width: 1023px) {
  .crf-boderless_cards-with_description .list_item:nth-child(n+2)::before, .crf-boderless_cards-with_description .list_link:nth-child(n+2)::before {
    width: 58%;
    right: 0;
    margin: auto auto;
  }
}

.crf-boderless_cards-with_description .ttl {
  padding-left: 20px;
  position: relative;
}

@media (max-width: 1023px) {
  .crf-boderless_cards-with_description .ttl {
    padding-left: 14px;
  }
}

.crf-boderless_cards-with_description .ttl::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  margin: auto auto;
  width: 10px;
  height: 2px;
  display: block;
  background-color: #05055A;
}

@media (max-width: 1023px) {
  .crf-boderless_cards-with_description .ttl::before {
    top: 9px;
  }
}

.crf-boderless_cards-with_description .img {
  width: 400px;
}

@media (max-width: 1023px) {
  .crf-boderless_cards-with_description .img {
    width: calc(100% - 48px);
    display: block;
    margin: auto;
  }
}

.crf-boderless_cards-with_description .txt__wrap {
  width: calc(100% - 440px);
  margin-left: 40px;
}

@media (max-width: 1023px) {
  .crf-boderless_cards-with_description .txt__wrap {
    width: 100%;
    margin-left: 0;
    margin-top: 6px;
  }
}

.crf-boderless_cards-with_description .sub__ttl {
  position: relative;
  border-bottom: solid 2px #E6E6E6;
  font-size: 20px;
  padding: 12px 0;
  letter-spacing: 0.06em;
  text-align: justify;
  text-align-last: left;
}

@media (max-width: 1023px) {
  .crf-boderless_cards-with_description .sub__ttl {
    padding: 12px 0 8px 0;
    margin: 0 18px;
    font-size: 16px;
  }
}

.crf-boderless_cards-with_description .sub__ttl::before {
  content: "";
  position: absolute;
  background-color: #05055A;
  width: 20px;
  height: 2px;
  top: 0;
}

.crf-boderless_cards-with_description .ttl {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.06em;
  text-align: justify;
  text-align-last: left;
}

@media (max-width: 1023px) {
  .crf-boderless_cards-with_description .ttl {
    font-size: 16px;
  }
}

.crf-boderless_cards-with_description .txt {
  font-size: 16px;
  line-height: 1.5;
  color: #7D7D7D;
  margin-top: 16px;
  text-align: justify;
  text-align-last: left;
}

@media (max-width: 1023px) {
  .crf-boderless_cards-with_description .txt {
    width: calc(100% - 32px);
    margin: 0 auto;
    margin-top: 6px;
    font-size: 14px;
  }
}

.crf-boderless_cards-with_description .img__wrap {
  position: relative;
  overflow: hidden;
  padding-top: 67.5%;
  /* 比率 */
}

.crf-boderless_cards-with_description img {
  object-fit: cover;
}

.crf-boderless_cards-with_description img, .crf-boderless_cards-with_description iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}


/* /枠無しカード型リスト２ */


/* 写真リスト */

.crf-images-overlay_date_title {
  margin-top: 80px;
}

@media (max-width: 1023px) {
  .crf-images-overlay_date_title {
    margin-top: 40px;
  }
}

.crf-images-overlay_date_title ul {
  display: flex;
  flex-wrap: wrap;
}

.crf-images-overlay_date_title ul li {
  width: calc((100% / 3) - 40px);
  margin-left: 60px;
}

@media (max-width: 1023px) {
  .crf-images-overlay_date_title ul li {
    width: calc(50% - 7.5px);
    margin-left: 0;
  }
}

.crf-images-overlay_date_title ul li:nth-child(n+4) {
  margin-top: 60px;
}

@media (max-width: 1023px) {
  .crf-images-overlay_date_title ul li:nth-child(n+4) {
    margin-top: 20px;
  }
}

.crf-images-overlay_date_title ul li:nth-child(3n+1) {
  margin-left: 0;
}

@media (max-width: 1023px) {
  .crf-images-overlay_date_title ul li:nth-child(3n+1) {
    margin-left: 0;
  }
}

@media (max-width: 1023px) {
  .crf-images-overlay_date_title ul li:nth-child(n+3) {
    margin-top: 20px;
  }
}

@media (max-width: 1023px) {
  .crf-images-overlay_date_title ul li:nth-child(even) {
    margin-left: 15px;
  }
}

.crf-images-overlay_date_title ul a {
  display: block;
  transition: all 0.3s;
}

.crf-images-overlay_date_title ul a:hover {
  opacity: 0.7;
}

.crf-images-overlay_date_title .ttl {
  margin-top: 30px;
  position: relative;
  font-size: 20px;
  color: #7D7D7D;
  padding-left: 5px;
  text-align: justify;
  text-align-last: left;
}

@media (max-width: 1023px) {
  .crf-images-overlay_date_title .ttl {
    font-size: 14px;
    margin-top: 7px;
    padding-top: 10px;
  }
}

.crf-images-overlay_date_title .ttl::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  display: block;
  background-color: #05055A;
  top: -10px;
}

@media (max-width: 1023px) {
  .crf-images-overlay_date_title .ttl::before {
    top: 0;
    width: 16px;
  }
}

.crf-images-overlay_date_title .img__wrap {
  position: relative;
  overflow: hidden;
  padding-top: 67%;
  /* 比率 */
  border: solid 1px #707070;
}

.crf-images-overlay_date_title img {
  object-fit: cover;
}

.crf-images-overlay_date_title img, .crf-images-overlay_date_title iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}


/* /写真リスト */


/* ランキング */

.cards-ranking {
  margin-top: 48px;
}

@media (max-width: 1023px) {
  .cards-ranking {
    margin-top: 16px;
  }
}

.cards-ranking .series {
  width: 300px;
}

@media (max-width: 1023px) {
  .cards-ranking .series {
    font-size: 12px;
    width: 18%;
  }
}

.cards-ranking table {
  width: 100%;
}

.cards-ranking .language {
  width: 250px;
  color: #3A3A3A;
}

@media (max-width: 1023px) {
  .cards-ranking .language {
    font-size: 12px;
    width: 23%;
  }
}

.cards-ranking .catalogue {
  width: 540px;
}

@media (max-width: 1023px) {
  .cards-ranking .catalogue {
    font-size: 12px;
    width: 59%;
  }
}

.cards-ranking tr:nth-child(odd) {
  background-color: #F2F9FF;
}

.cards-ranking tr:first-child {
  background-color: #fff;
  border-bottom: 3px solid #05055A;
}

@media (max-width: 1023px) {
  .cards-ranking tr:first-child {
    border-bottom: 2px solid #05055A;
  }
}

.cards-ranking th {
  padding-bottom: 10px;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: #3A3A3A;
}

@media (max-width: 1023px) {
  .cards-ranking th {
    padding-bottom: 8px;
  }
}

.cards-ranking th.series {
  padding-left: 16px;
}

@media (max-width: 1023px) {
  .cards-ranking th.series {
    padding-left: 0;
  }
}

.cards-ranking td {
  padding: 8px 0;
  vertical-align: middle;
  font-size: 14px;
}

.cards-ranking td.series {
  padding-left: 16px;
  color: #7D7D7D;
}

@media (max-width: 1023px) {
  .cards-ranking td.series {
    padding-left: 0;
    font-size: 10px;
  }
}

.cards-ranking td.catalogue a {
  font-size: 14px;
  color: #05055A;
  border-bottom: 1px solid #05055A;
  line-height: 1.6;
}

@media (max-width: 1023px) {
  .cards-ranking td.catalogue a {
    font-size: 10px;
    line-height: 1.4;
  }
}

@media (max-width: 1023px) {
  .cards-ranking td.language {
    font-size: 10px;
  }
}


/* /ランキング */


/* 情報欄C */

.crf-info-box-c {
  margin-top: 64px;
}

@media (max-width: 1023px) {
  .crf-info-box-c {
    margin-top: 20px;
  }
}

.crf-info-box-c .crf-info-box-c__inner {
  display: flex;
  padding: 24px 34px;
  border: solid 1px #E6E6E6;
}

@media (max-width: 1023px) {
  .crf-info-box-c .crf-info-box-c__inner {
    display: block;
    padding: 12px 16px;
  }
}

.crf-info-box-c .crf-info-box-c__inner+.crf-info-box-c__inner {
  border-top: none;
}

.crf-info-box-c .ttl {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.06em;
  padding-left: 20px;
  position: relative;
}

.crf-info-box-c .ttl::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto auto;
  width: 10px;
  height: 2px;
  display: block;
  background-color: #05055A;
}

@media (max-width: 1023px) {
  .crf-info-box-c .ttl {
    font-size: 16px;
  }
}

.crf-info-box-c .ttl+dl {
  margin-top: 16px;
}

@media (max-width: 1023px) {
  .crf-info-box-c .ttl+dl {
    margin-top: 8px;
  }
}

.crf-info-box-c dt {
  width: 190px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.06em;
}

@media (max-width: 1023px) {
  .crf-info-box-c dt {
    width: 100%;
    font-size: 14px;
  }
}

.crf-info-box-c dd {
  width: calc(100% - 190px);
  font-size: 14px;
  color: #7D7D7D;
  padding-left: 28px;
  margin-left: 24px;
  border-left: solid 1px #E6E6E6;
  line-height: 1.7;
}

@media (max-width: 1023px) {
  .crf-info-box-c dd {
    width: 100%;
    padding-left: 0;
    border-left: none;
    border-top: solid 1px #E6E6E6;
    padding-top: 5px;
    margin-top: 5px;
    font-size: 12px;
    margin-left: 0;
  }
}


/* /情報欄C */


/* 情報欄D */

.crf-info-box-d .c-inner {
  display: flex;
  padding: 24px 34px 0 34px;
}

@media (max-width: 1023px) {
  .crf-info-box-d .c-inner {
    display: block;
    padding: 12px 16px;
  }
}

.crf-info-box-d dt {
  width: 190px;
  font-size: 16px;
  font-weight: bold;
}

@media (max-width: 1023px) {
  .crf-info-box-d dt {
    width: 100%;
    font-size: 14px;
  }
}

.crf-info-box-d dd {
  width: calc(100% - 190px);
  font-size: 14px;
  color: #7D7D7D;
  padding-left: 40px;
  border-left: solid 1px #E6E6E6;
}

@media (max-width: 1023px) {
  .crf-info-box-d dd {
    width: 100%;
    padding-left: 0;
    border-left: none;
    border-top: solid 1px #E6E6E6;
    padding-top: 5px;
    margin-top: 5px;
    font-size: 12px;
  }
}

.crf-info-box-d .img {
  width: 360px;
}

@media (max-width: 1023px) {
  .crf-info-box-d .img {
    width: calc(100% - 180px);
    max-width: 360px;
    display: block;
    margin: auto;
  }
}

.crf-info-box-d .txt__wrap {
  width: calc(100% - 400px);
  margin-left: 40px;
  margin-top: 24px;
}

@media (max-width: 1023px) {
  .crf-info-box-d .txt__wrap {
    width: 100%;
    margin-left: 0;
    padding: 0 10px;
    margin-top: 20px;
  }
}

.crf-info-box-d .ttl {
  font-size: 22px;
  font-weight: bold;
  padding-top: 10px;
  position: relative;
  text-align: justify;
  text-align-last: left;
}

@media (max-width: 1023px) {
  .crf-info-box-d .ttl {
    font-size: 16px;
    padding-top: 8px;
    margin-top: 5px;
  }
}

.crf-info-box-d .ttl::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #05055A;
  display: block;
  top: 0;
}

@media (max-width: 1023px) {
  .crf-info-box-d .ttl::before {
    width: 24px;
  }
}

.crf-info-box-d .txt {
  margin-top: 34px;
  font-size: 16px;
  line-height: 1.625;
  text-align: justify;
  text-align-last: left;
}

@media (max-width: 1023px) {
  .crf-info-box-d .txt {
    margin-top: 15px;
    line-height: 1.428;
  }
}

.crf-info-box-d .img__wrap {
  position: relative;
  overflow: hidden;
  padding-top: 116%;
  /* 比率 */
}

.crf-info-box-d img {
  object-fit: cover;
}

.crf-info-box-d img, .crf-info-box-d iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}


/* /情報欄D */


/* テキストリンクリスト */

.crf-links-text {
  margin-top: 80px;
}

@media (max-width: 1023px) {
  .crf-links-text {
    margin-top: 40px;
  }
}

.crf-links-text .ttl {
  font-size: 22px;
  font-weight: bold;
  padding-left: 20px;
  position: relative;
}

@media (max-width: 1023px) {
  .crf-links-text .ttl {
    font-size: 16px;
    padding-left: 14px;
  }
}

.crf-links-text .ttl::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto auto;
  width: 10px;
  height: 2px;
  display: block;
  background-color: #05055A;
}

.crf-links-text ul {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}

.crf-links-text ul li {
  width: calc(25% - 18px);
}

.crf-links-text ul li:nth-child(n+2) {
  margin-left: 24px;
}

@media (max-width: 1023px) {
  .crf-links-text ul li:nth-child(n+2) {
    margin-left: 0;
  }
}

@media (max-width: 1023px) {
  .crf-links-text ul li:nth-child(even) {
    margin-left: 5px;
  }
}

@media (max-width: 1023px) {
  .crf-links-text ul li {
    width: calc(50% - 2.5px);
  }
}

.crf-links-text ul a {
  padding: 10px 20px 20px 20px;
  border-bottom: 3px solid #05055A;
  display: block;
  position: relative;
  font-weight: 600;
  letter-spacing: 0.06em;
}

@media (max-width: 1023px) {
  .crf-links-text ul a {
    font-size: 12px;
    padding: 10px;
    border-bottom: 2px solid #05055A;
  }
}

.crf-links-text ul a::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  display: block;
  border-right: #05055A 2px solid;
  border-bottom: #05055A 2px solid;
  bottom: 5px;
  right: 5px;
}

@media (max-width: 1023px) {
  .crf-links-text ul a::after {
    width: 8px;
    height: 8px;
  }
}

.crf-links-text .ttl+ul {
  margin-top: 24px;
}

@media (max-width: 1023px) {
  .crf-links-text .ttl+ul {
    margin-top: 8px;
  }
}


/* テキストリンクリスト */


/* タイトル付きリスト（1列・枠有り） */

.crf-bordered-1col-titled_items {
  margin-top: 24px;
}

@media (max-width: 1023px) {
  .crf-bordered-1col-titled_items {
    margin-top: 10px;
  }
}

.crf-bordered-1col-titled_items .crf-bordered-1col-titled_items__inner {
  border: solid 1px #B2B2B2;
  padding: 26px 34px;
}

@media (max-width: 1023px) {
  .crf-bordered-1col-titled_items .crf-bordered-1col-titled_items__inner {
    padding: 10px 12px;
  }
}

.crf-bordered-1col-titled_items .ttl {
  font-size: 16px;
  font-weight: bold;
  padding-bottom: 16px;
  border-bottom: 1px solid #B2B2B2;
}

@media (max-width: 1023px) {
  .crf-bordered-1col-titled_items .ttl {
    font-size: 14px;
    font-weight: bold;
    padding-bottom: 8px;
  }
}

.crf-bordered-1col-titled_items .list {
  margin-top: 10px;
  padding-top: 4px;
  padding-left: 10px;
}

@media (max-width: 1023px) {
  .crf-bordered-1col-titled_items .list {
    margin-top: 0;
    padding-left: 0;
  }
}

.crf-bordered-1col-titled_items .list_item {
  font-size: 14px;
  color: #7D7D7D;
  padding-left: 1.2em;
  position: relative;
  margin-top: 8px;
}

@media (max-width: 1023px) {
  .crf-bordered-1col-titled_items .list_item {
    font-size: 12px;
    margin-top: 4px;
  }
}

.crf-bordered-1col-titled_items .list_item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: auto;
  left: 0;
  margin: auto auto;
  font-weight: bold;
}

.crf-bordered-1col-titled_items .crf-bordered-1col-titled_items_cont.bullet .list_item:before {
  content: "・";
}

.crf-bordered-1col-titled_items .crf-bordered-1col-titled_items_cont.num {
  counter-reset: list_num;
}

.crf-bordered-1col-titled_items .crf-bordered-1col-titled_items_cont.num .list_item {
  counter-increment: list_num;
}

.crf-bordered-1col-titled_items .crf-bordered-1col-titled_items_cont.num .list_item:before {
  content: counter(list_num) "．";
}

.crf-bordered-1col-titled_items .crf-bordered-1col-titled_items_cont.alpha .list_item {
  list-style-type: lower-latin;
  padding-left: 0;
  margin-left: 1em;
}

.crf-bordered-1col-titled_items .crf-bordered-1col-titled_items_cont.check .list_item:before {
  content: "";
  position: absolute;
  width: 5px;
  height: 8px;
  border-bottom: 2px solid #7D7D7D;
  border-right: 2px solid #7D7D7D;
  transform: rotate(45deg);
}


/* /タイトル付きリスト（1列・枠有り） */


/* 写真＋テキスト（左） */

.wraparound-image-l {
  margin-top: 80px;
}

@media (max-width: 1023px) {
  .wraparound-image-l {
    margin-top: 32px;
  }
}

.wraparound-image-l .list {
  margin-top: 40px;
}

@media (max-width: 1023px) {
  .wraparound-image-l .list {
    margin-top: 15px;
  }
}

.wraparound-image-l .list_item, .wraparound-image-l .list_link {
  display: flex;
}

.wraparound-image-l .list_item:nth-child(n+2), .wraparound-image-l .list_link:nth-child(n+2) {
  margin-top: 16px;
}

@media (max-width: 1023px) {
  .wraparound-image-l .list_item, .wraparound-image-l .list_link {
    display: block;
    max-width: 600px;
    margin: auto;
  }
}

.wraparound-image-l .txt__wrap {
  width: calc(100% - 440px);
  margin-left: 40px;
}

@media (max-width: 1023px) {
  .wraparound-image-l .txt__wrap {
    width: 100%;
    margin-left: 0;
    margin-top: 6px;
  }
}

.wraparound-image-l .sub__ttl {
  position: relative;
  border-bottom: solid 2px #E6E6E6;
  font-size: 20px;
  padding: 12px 0;
  letter-spacing: 0.06em;
}

@media (max-width: 1023px) {
  .wraparound-image-l .sub__ttl {
    padding: 12px 0 8px 0;
    margin: 0 18px;
    font-size: 16px;
  }
}

.wraparound-image-l .sub__ttl::before {
  content: "";
  position: absolute;
  background-color: #05055A;
  width: 20px;
  height: 2px;
  top: 0;
}

.wraparound-image-l .ttl {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.06em;
}

@media (max-width: 1023px) {
  .wraparound-image-l .ttl {
    font-size: 16px;
  }
}

.wraparound-image-l .txt {
  font-size: 16px;
  line-height: 1.5;
  color: #7D7D7D;
}

@media (max-width: 1023px) {
  .wraparound-image-l .txt {
    width: calc(100% - 32px);
    margin: 0 auto;
    margin-top: 6px;
    font-size: 14px;
  }
}

.wraparound-image-l .img {
  width: 400px;
}

@media (max-width: 1023px) {
  .wraparound-image-l .img {
    width: calc(100% - 48px);
    display: block;
    margin: auto;
  }
}

.wraparound-image-l .img__wrap {
  position: relative;
  overflow: hidden;
  padding-top: 67.5%;
  /* 比率 */
}

.wraparound-image-l img {
  object-fit: cover;
}

.wraparound-image-l img, .wraparound-image-l iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

@media (max-width: 1023px) {
  .wraparound-image-l img, .wraparound-image-l iframe {
    width: calc(100% - 48px);
    display: block;
    margin: auto;
  }
}


/* /写真＋テキスト（左） */


/* 写真＋テキスト（右） */

.wraparound-image-r {
  margin-top: 80px;
}

@media (max-width: 1023px) {
  .wraparound-image-r {
    margin-top: 32px;
  }
}

.wraparound-image-r .list {
  margin-top: 40px;
}

@media (max-width: 1023px) {
  .wraparound-image-r .list {
    margin-top: 15px;
  }
}

.wraparound-image-r .list_item, .wraparound-image-r .list_link {
  display: flex;
  flex-direction: row-reverse;
}

.wraparound-image-r .list_item:nth-child(n+2), .wraparound-image-r .list_link:nth-child(n+2) {
  margin-top: 16px;
}

@media (max-width: 1023px) {
  .wraparound-image-r .list_item, .wraparound-image-r .list_link {
    display: block;
    max-width: 600px;
    margin: auto;
  }
}

.wraparound-image-r .txt__wrap {
  width: calc(100% - 440px);
}

@media (max-width: 1023px) {
  .wraparound-image-r .txt__wrap {
    width: 100%;
    margin-left: 0;
    margin-top: 6px;
  }
}

.wraparound-image-r .sub__ttl {
  position: relative;
  border-bottom: solid 2px #E6E6E6;
  font-size: 20px;
  padding: 12px 0;
  letter-spacing: 0.06em;
}

@media (max-width: 1023px) {
  .wraparound-image-r .sub__ttl {
    padding: 12px 0 8px 0;
    margin: 0 18px;
    font-size: 16px;
  }
}

.wraparound-image-r .sub__ttl::before {
  content: "";
  position: absolute;
  background-color: #05055A;
  width: 20px;
  height: 2px;
  top: 0;
}

.wraparound-image-r .ttl {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.06em;
}

@media (max-width: 1023px) {
  .wraparound-image-r .ttl {
    font-size: 16px;
  }
}

.wraparound-image-r .txt {
  font-size: 16px;
  line-height: 1.5;
  color: #7D7D7D;
}

@media (max-width: 1023px) {
  .wraparound-image-r .txt {
    width: calc(100% - 32px);
    margin: 0 auto;
    margin-top: 6px;
    font-size: 14px;
  }
}

.wraparound-image-r .img {
  width: 400px;
}

@media (max-width: 1023px) {
  .wraparound-image-r .img {
    width: calc(100% - 48px);
    display: block;
    margin: auto;
  }
}

.wraparound-image-r .img__wrap {
  position: relative;
  overflow: hidden;
  padding-top: 67.5%;
  /* 比率 */
}

.wraparound-image-r img {
  object-fit: cover;
}

.wraparound-image-r img, .wraparound-image-r iframe {
  width: 400px;
  margin-left: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}


/* /写真＋テキスト（右） */


/* 見出し有りテーブル */

.crf-table-key_value {
  margin-top: 40px;
}

@media (max-width: 1023px) {
  .crf-table-key_value {
    margin-top: 20px;
  }
}

.crf-table-key_value .list__item {
  display: table;
  width: 100%;
}

.crf-table-key_value .list__item:nth-child(n+2) {
  margin-top: 10px;
}

@media (max-width: 1023px) {
  .crf-table-key_value .list__item:nth-child(n+2) {
    margin-top: 12px;
  }
}

@media (max-width: 1023px) {
  .crf-table-key_value .list__item {
    display: block;
  }
}

.crf-table-key_value .ttl {
  background-color: #F6F6F6;
  padding: 16px 0;
  width: 260px;
  text-align: center;
  border-top: 2px solid #F6F6F6;
  display: table-cell;
  position: relative;
  letter-spacing: 0.06em;
}

.crf-table-key_value .ttl::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 15px 15px;
  border-color: transparent transparent #fff transparent;
}

@media (max-width: 1023px) {
  .crf-table-key_value .ttl {
    width: 100%;
    font-size: 14px;
    padding: 10px 0 10px 10px;
    display: block;
    font-size: 14px;
    font-weight: bold;
    text-align: left;
  }
}

.crf-table-key_value .txt {
  width: calc(100% - 260px);
  padding: 16px 40px 0 40px;
  border-top: 2px solid #F6F6F6;
  display: table-cell;
  letter-spacing: 0.06em;
  line-height: 1.625;
  text-align: justify;
  text-align-last: left;
}

@media (max-width: 1023px) {
  .crf-table-key_value .txt {
    width: 100%;
    display: block;
    border-top: none;
    font-size: 12px;
    padding: 6px 10px 0 10px;
  }
}

.crf-table-key_value iframe {
  margin-top: 16px;
}

@media (max-width: 1023px) {
  .crf-table-key_value iframe {
    margin-top: 8px;
  }
}


/* /見出し有りテーブル */


/* 繰り返しテーブル */

.crf-table-repeat {
  margin-top: 40px;
}

@media (max-width: 1023px) {
  .crf-table-repeat {
    margin-top: 30px;
  }
}

.crf-table-repeat .list__item {
  display: flex;
  border-top: 1px solid #F6F6F6;
  padding: 18px 0;
  align-items: flex-start;
}

@media (max-width: 1023px) {
  .crf-table-repeat .list__item {
    padding: 8px 0;
  }
}

.crf-table-repeat .list__item:last-child {
  border-bottom: 1px solid #F6F6F6;
}

.crf-table-repeat .ttl {
  color: #05055A;
  font-weight: bold;
  padding-left: 40px;
  width: 100px;
  letter-spacing: 0.06em;
}

@media (max-width: 1023px) {
  .crf-table-repeat .ttl {
    padding-left: 10px;
    font-size: 12px;
    width: 45px;
  }
}

.crf-table-repeat .txt {
  padding-left: 24px;
  position: relative;
  width: calc(100% - 140px);
  letter-spacing: 0.06em;
}

@media (max-width: 1023px) {
  .crf-table-repeat .txt {
    padding-left: 15px;
    width: calc(100% - 60px);
    font-size: 12px;
  }
}

.crf-table-repeat .txt::before {
  content: "";
  width: 8px;
  height: 1px;
  display: block;
  background-color: #B2B2B2;
  position: absolute;
  top: 8px;
  right: auto;
  left: 0;
  margin: auto auto;
}

@media (max-width: 1023px) {
  .crf-table-repeat .txt::before {
    top: 6px;
  }
}


/* /繰り返しテーブル */


/* 投稿ヘッダー */

.crf--post-header {
  margin-top: 44px;
}

@media (max-width: 1023px) {
  .crf--post-header {
    margin-top: 20px;
  }
}

.crf--post-header .ttl {
  text-align: center;
  font-weight: bold;
  font-size: 30px;
}

@media (max-width: 1023px) {
  .crf--post-header .ttl {
    font-size: 20px;
  }
}

.crf--post-header .txt__wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 40px;
  margin-right: 40px;
}

@media (max-width: 1023px) {
  .crf--post-header .txt__wrap {
    margin-top: 20px;
    margin-right: 0;
  }
}

.crf--post-header .date {
  font-size: 12px;
  color: #B2B2B2;
}

@media (max-width: 1023px) {
  .crf--post-header .date {
    font-size: 10px;
  }
}

.crf--post-header .category {
  color: #fff;
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 4px;
  margin-left: 4px;
  min-width: 80px;
  text-align: center;
}

@media (max-width: 1023px) {
  .crf--post-header .category {
    padding: 2px;
    min-width: 56px;
  }
}

.crf--post-header .category.is-red {
  background-color: #F15151;
}

.crf--post-header .category.is-green {
  background-color: #4CB283;
}

.crf--post-header .category.is-blue {
  background-color: #5473D6;
}

.crf--post-header .category.is-yellow {
  background-color: #F59246;
}

.crf--post-header .category.is-gray {
  background-color: #989898;
}

.crf--post-header .category.is-lightblue {
  background-color: #58CCD9;
}

.crf--post-header .content {
  line-height: 1.6;
}

@media (max-width: 1023px) {
  .crf--post-header .content {
    line-height: 1.4;
  }
}


/* /投稿ヘッダー */


/* form */

.crf-form {
  background-color: #F6F6F6;
  position: relative;
  padding: 64px 0 120px 0;
  overflow: hidden;
  margin-top: 52px;
}

@media (max-width: 1023px) {
  .crf-form {
    margin-top: 36px;
    padding: 20px 0px 40px 0px;
  }
}

.crf-form::before {
  opacity: 0.15;
  content: "";
  position: absolute;
  transform: rotate(135deg);
  bottom: 0px;
  right: -464px;
  display: block;
  width: 902px;
  height: 345px;
  background: -webkit-linear-gradient(-90deg, #757575 0px, #757575 115px, #AFAFAF 115px, #AFAFAF 230px, #D1D1D1 230px, #D1D1D1 345px);
}

@media (max-width: 1023px) {
  .crf-form::before {
    width: 278px;
    height: 147px;
    background: -webkit-linear-gradient(-90deg, #757575 0px, #757575 49px, #AFAFAF 49px, #AFAFAF 98px, #D1D1D1 98px, #D1D1D1 147px);
    bottom: -35px;
    right: -105px;
  }
}

.crf-form .c-inner {
  max-width: 930px;
  margin: auto;
}

.crf-form form {
  margin-top: 14px;
  position: relative;
}

.crf-form .form__inner {
  background-color: #fff;
}

@media (max-width: 1023px) {
  .crf-form form {
    padding: 0;
  }
}

.crf-form .caution {
  font-size: 14px;
  color: #7D7D7D;
}

@media (max-width: 1023px) {
  .crf-form .caution {
    font-size: 12px;
  }
}

.crf-form .form__item {
  display: flex;
  min-height: 83px;
  padding: 16px 40px;
  border-top: 1px solid #E6E6E6;
  align-items: center;
}

@media (max-width: 1023px) {
  .crf-form .form__item {
    display: block;
    min-height: auto;
    padding: 8px 14px 12px 14px;
  }
}

.crf-form .form__item:first-child {
  border-top: none;
}

.crf-form .form__item.is-error input, .crf-form .form__item.is-error select {
  background-color: #FFF9F9;
  border: #DE1818 solid 1px;
}

.crf-form .form__item.is-error.radio label::before {
  background-color: #FFF9F9;
  border-color: #DE1818;
}

.crf-form .form__item.is-error.radio input {
  border: none;
}

@media (max-width: 1023px) {
  .crf-form .form__item.is-error.radio span {
    font-size: 14px;
  }
}

.crf-form .form__item.is-error.textarea textarea {
  background-color: #FFF9F9;
  border-color: #DE1818;
}

.crf-form .form__item.textarea textarea {
  min-height: 168px;
  display: block;
  width: 100%;
  background-color: #F2F9FF;
  display: block;
  width: 100%;
  font-size: 16px;
  border-radius: 4px;
  border: solid 1px #E6E6E6;
  padding-left: 16px;
  padding: 10px;
}

@media (max-width: 1023px) {
  .crf-form .form__item.textarea textarea {
    min-height: 90px;
  }
}

.crf-form .form__errorWrap {
  margin-top: 8px;
}

.crf-form .form__errorWrap .is-error__required {
  display: none;
}

.crf-form .form__errorWrap .is-error__required.is-error {
  display: block;
  font-size: 10px;
  top: auto;
  bottom: -15px;
  left: 0;
  color: #DE1818;
  font-size: 10px;
}

.crf-form .form__errorWrap .is-error__inaccurate {
  display: none;
}

.crf-form .form__errorWrap .is-error__inaccurate.is-error {
  display: block;
  font-size: 10px;
  top: auto;
  bottom: -15px;
  left: 0;
  color: #DE1818;
  font-size: 10px;
}

.crf-form .form__errorWrap .is-error__mismatch {
  display: none;
}

.crf-form .form__errorWrap .is-error__mismatch.is-error {
  display: block;
  font-size: 10px;
  top: auto;
  bottom: -15px;
  left: 0;
  color: #DE1818;
  font-size: 10px;
}

.crf-form .radio__item {
  display: inline-block;
}

.crf-form .radio__item input {
  width: 0;
}

.crf-form dt {
  width: 254px;
}

@media (max-width: 1023px) {
  .crf-form dt {
    width: 100%;
  }
}

.crf-form dt span {
  position: relative;
}

@media (max-width: 1023px) {
  .crf-form dt span {
    font-size: 14px;
  }
}

.crf-form dt span.is-mandatory:after {
  content: "*";
  top: 0;
  right: -10px;
  position: absolute;
  color: #DE1818;
}

.crf-form dd {
  width: calc(100% - 254px);
}

@media (max-width: 1023px) {
  .crf-form dd {
    width: 100%;
    margin-top: 10px;
  }
}

.crf-form dd.radio label {
  padding-left: 28px;
  position: relative;
  cursor: pointer;
}

@media (max-width: 1023px) {
  .crf-form dd.radio label {
    padding-left: 22px;
    display: block;
  }
}

.crf-form dd.radio label::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto auto;
  border: solid 1px #E6E6E6;
  border-radius: 100%;
}

@media (max-width: 1023px) {
  .crf-form dd.radio label::before {
    width: 18px;
    height: 18px;
  }
}

.crf-form dd.radio label.is-active::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  top: 2.5px;
  left: 4px;
  bottom: 0;
  right: auto;
  background-color: #05055A;
  border-radius: 100%;
}

@media (max-width: 1023px) {
  .crf-form dd.radio label.is-active::after {
    top: 3.5px;
    left: 3px;
  }
}

.crf-form dd.radio label+label {
  margin-left: 48px;
}

@media (max-width: 1023px) {
  .crf-form dd.radio label+label {
    margin-left: 0px;
    margin-top: 8px;
  }
}

.crf-form dd.radio span {
  font-size: 14px;
}

.crf-form dd.input input {
  background-color: #F2F9FF;
  display: block;
  width: 100%;
  font-size: 16px;
  height: 50px;
  border-radius: 4px;
  border: solid 1px #E6E6E6;
  padding-left: 16px;
}

.crf-form dd.input input::placeholder {
  color: #B2B2B2;
}

@media (max-width: 1023px) {
  .crf-form dd.input input {
    height: 38px;
    font-size: 16px;
  }
}

.crf-form dd .select__wrap {
  position: relative;
  display: block;
}

.crf-form dd .select__wrap:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-right: #B2B2B2 3px solid;
  border-bottom: #B2B2B2 3px solid;
  transform: rotate(45deg);
  top: 0;
  bottom: 6px;
  right: 20px;
  margin: auto auto;
  display: block;
  left: auto;
}

.crf-form dd .select__wrap:before::placeholder::placeholder {
  color: "#a3a3a3";
  font-size: "12px";
}

.crf-form dd .select__wrap:before::placeholder:-ms-input-placeholder {
  color: "#a3a3a3";
  font-size: "12px";
}

.crf-form dd .select__wrap:before::placeholder::-ms-input-placeholder {
  color: "#a3a3a3";
  font-size: "12px";
}

.crf-form dd .select__wrap.is-select:before {
  transform: rotate(-135deg);
  bottom: 2px;
}

.crf-form dd select {
  height: 50px;
  display: block;
  width: 100%;
  font-size: 16px;
  border-radius: 4px;
  border: solid 1px #E6E6E6;
  background-color: #F2F9FF;
  padding-left: 16px;
  cursor: pointer;
  color: #a3a3a3;
  padding-right: 33px;
}

@media (max-width: 1023px) {
  .crf-form dd select {
    height: 38px;
  }
}

.crf-form dd select.is-select {
  color: #3A3A3A;
}

.crf-form dd option {
  color: #3A3A3A;
  cursor: pointer;
}

.crf-form dd option:first-child {
  display: none;
}

.crf-form .form__btn {
  width: 280px;
  margin: auto;
  color: #05055A;
  border: 1px solid #05055A;
  margin: auto;
  border-radius: 60px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  padding: 20px 0;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 40px;
  background-color: #fff;
  position: relative;
}

@media (max-width: 1023px) {
  .crf-form .form__btn {
    margin-top: 20px;
    width: 220px;
  }
}

.crf-form .form__btn:hover {
  background-color: #05055A;
  color: #fff;
}

.crf-form .recaptcha .g-recaptcha {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
}

/* form */


/* モーダル */

.view_modal {
  display: none;
}

#modal__inner {
  margin-top: 16px;
  height: 65%;
  overflow-y: auto;
}

@media (max-width: 1023px) {
  #modal__inner .view_modal {
    display: block;
  }
}

.crf-modal {
  background-color: rgba(0, 0, 0, 0.3);
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 5;
  display: none;
}

.crf-modal.is-active {
  display: block;
}

.crf-modal .btn_close {
  width: 12px;
  height: 12px;
  display: block;
  position: absolute;
  margin-top: 0;
  background-color: transparent;
  margin-right: 10px;
  right: 10px;
  top: 5px;
}

@media (max-width: 1023px) {
  .crf-modal .btn_close {
    right: -3px;
    top: -2px;
  }
}

.crf-modal .btn_close::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto auto;
  width: 16px;
  height: 2px;
  background-color: #B2B2B2;
  display: block;
  transform: rotate(45deg);
}

@media (max-width: 1023px) {
  .crf-modal .btn_close::before {
    width: 12px;
  }
}

.crf-modal .btn_close::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto auto;
  width: 16px;
  height: 2px;
  background-color: #B2B2B2;
  display: block;
  transform: rotate(-45deg);
}

@media (max-width: 1023px) {
  .crf-modal .btn_close::after {
    width: 12px;
  }
}

.crf-modal .read {
  text-align: center;
  font-size: 14px;
  color: #7D7D7D;
}

@media (max-width: 1023px) {
  .crf-modal .read {
    padding: 0 20px;
    font-size: 12px;
  }
}

.crf-modal .c-inner {
  position: absolute;
  top: 0px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto auto;
  background-color: #fff;
  width: 800px;
  display: block;
  padding: 50px 40px 32px 40px;
  height: 600px;
  overflow-y: scroll;
  max-height: 80%;
}

@media (max-width: 1023px) {
  .crf-modal .c-inner {
    width: calc(100% - 40px);
    padding: 30px 15px;
  }
}

.crf-modal textarea {
  resize: none;
}

.crf-modal form {
  margin-top: 18px;
}

.crf-modal .form__item__modal {
  display: flex;
  padding: 10px 0;
  border-top: 1px solid #F6F6F6;
}

.crf-modal .form__item__modal:last-child {
  border-bottom: 1px solid #F6F6F6;
}

.crf-modal .form__item__modal dt {
  font-size: 12px;
  font-weight: bold;
  width: 190px;
  margin-left: 40px;
}

@media (max-width: 1023px) {
  .crf-modal .form__item__modal dt {
    width: 80px;
    margin-left: 0;
    font-size: 10px;
  }
}

.crf-modal .form__item__modal dd {
  font-size: 12px;
  width: calc(100% - 74px);
  margin-left: 34px;
}

.crf-modal button {
  width: 356px;
  margin: auto;
  background-color: #05055A;
  color: #fff;
  border-radius: 60px;
  display: block;
  padding: 20px 0;
  margin-top: 80px;
  text-align: center;
}

@media (max-width: 1023px) {
  .crf-modal button {
    width: 100%;
    margin-top: 40px;
    max-width: 240px;
  }
}

.crf-modal button:hover {
  opacity: 0.7;
}


/* /モーダル */


/* html編集 */

.crf-html__heading {
  margin-top: 64px;
}

@media (max-width: 1023px) {
  .crf-html__heading {
    margin-top: 30px;
  }
}

.crf-html__heading .ttl {
  font-size: 22px;
  font-weight: bold;
  padding-left: 20px;
  position: relative;
  letter-spacing: 0.06em;
}

@media (max-width: 1023px) {
  .crf-html__heading .ttl {
    font-size: 16px;
    padding-left: 14px;
  }
}

.crf-html__heading .ttl::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  display: block;
  background-color: #05055A;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto auto;
}

.crf-html__right {
  text-align: right;
}

.crf-html__right .c-inner {
  padding: 0;
  padding: 0 30px;
}

.crf-html__right .crf-html__rightContent {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media (max-width: 1023px) {
  .crf-html__right .crf-html__rightContent {
    flex-wrap: wrap;
  }
}

.crf-html__right .crf-html__rightImg {
  width: 360px;
  display: flex;
}

@media (max-width: 1023px) {
  .crf-html__right .crf-html__rightImg {
    height: auto;
    max-width: 300px;
  }
}

.crf-html__right .crf-html__rightTxt {
  margin-left: 10px;
}

@media (max-width: 1023px) {
  .crf-html__right .crf-html__rightTxt {
    width: 100%;
  }
}

.crf-html__right p {
  line-height: 1.625;
}

@media (max-width: 1023px) {
  .crf-html__right {
    font-size: 12px;
  }
}


/* /html編集 */


/* html編集・contact */

.l-contact {
  padding: 64px 0 74px 0;
  background-image: url("../img/l-contact__pc.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 80px;
}

@media (max-width: 1023px) {
  .l-contact {
    background-image: url("../img/l-contact__sp.jpg");
    padding: 28px;
    margin-top: 40px;
  }
}

.l-contact .l-contact__logo {
  width: 80px;
  margin: auto;
}

@media (max-width: 1023px) {
  .l-contact .l-contact__logo {
    width: 60px;
  }
}

.l-contact .l-contact__tel {
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
}

@media (max-width: 1023px) {
  .l-contact .l-contact__tel {
    margin-top: 4px;
  }
}

.l-contact .l-contact__tel a {
  cursor: pointer;
  letter-spacing: 0.06em;
}

@media (max-width: 1023px) {
  .l-contact .l-contact__tel a {
    font-size: 20px;
  }
}

.l-contact .l-contact__date {
  color: #fff;
  text-align: center;
  font-size: 16px;
  margin-top: 14px;
  letter-spacing: 0.06em;
}

@media (max-width: 1023px) {
  .l-contact .l-contact__date {
    font-size: 12px;
    margin-top: 10px;
  }
}

.l-contact .l-contact__btn {
  width: 360px;
  display: block;
  font-size: 18px;
  color: #fff;
  padding: 23px 0;
  text-align: center;
  margin: auto;
  margin-top: 38px;
  transition: all 0.3s;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, #FF7C0A 0%, #FFB50A 100%);
}

.l-contact .l-contact__btn:hover {
  opacity: 0.7;
}

@media (max-width: 1023px) {
  .l-contact .l-contact__btn {
    width: 100%;
    font-size: 16px;
    padding: 20px 0;
    max-width: 360px;
    margin-top: 20px;
  }
}


/* /html編集・contact */


/*
疑似要素のバックグラウンド
*/


/*--------------------
/Project
--------------------*/


/*--------------------
Utility
--------------------*/

@media (max-width: 1023px) {
  .l-html .l-body .u-pad-left--sp {
    margin-left: 0.5em;
  }
}

.l-html .l-body .crf-custom-u-mt0 {
  margin-top: 0;
}

.l-html .l-body .crf-custom-u-mt-m {
  margin-top: 32px;
}

.l-html .l-body .u-text-right {
  text-align: right;
}

.l-html .l-body .u-text-center {
  text-align: center;
}

.l-html .l-body .u-text__center {
  display: flex;
  justify-content: center;
}

.l-html .l-body .u-mt-ll {
  margin-top: 80px;
}

@media (max-width: 1023px) {
  .l-html .l-body .u-mt-ll {
    margin-top: 40px;
  }
}

.l-html .l-body .u-mt-l {
  margin-top: 64px;
}

@media (max-width: 1023px) {
  .l-html .l-body .u-mt-l {
    margin-top: 32px;
  }
}

.l-html .l-body .u-mt-lm {
  margin-top: 40px;
}

@media (max-width: 1023px) {
  .l-html .l-body .u-mt-lm {
    margin-top: 24px;
  }
}

.l-html .l-body .u-mt-m, .l-html .l-body .u-mt-mm {
  margin-top: 25px;
}

@media (max-width: 1023px) {
  .l-html .l-body .u-mt-m, .l-html .l-body .u-mt-mm {
    margin-top: 16px;
  }
}

.l-html .l-body .u-mt-sm {
  margin-top: 10px;
}

@media (max-width: 1023px) {
  .l-html .l-body .u-mt-sm {
    margin-top: 10px;
  }
}

.l-html .l-body .u-mt-s {
  margin-top: 16px;
}

@media (max-width: 1023px) {
  .l-html .l-body .u-mt-s {
    margin-top: 6px;
  }
}

.l-html .l-body .u-pb-0 {
  padding-bottom: 0;
}

.l-html .u-first-letter::first-letter {
  padding-left: 1em;
}

.l-html .u-map {
  height: 180px;
}

@media (max-width: 1023px) {
  .l-html .u-map {
    height: 180px;
  }
}

.l-html .u-inner {
  padding: 0 27px;
}

@media (max-width: 1023px) {
  .l-html .u-application {
    padding: 0;
  }
}


/*--------------------
/Utility
--------------------*/