@charset "UTF-8";
/*--------------------------------------------------------------
	reset
---------------------------------------------------------------*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video,
input,
button {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

sup {
  vertical-align: super;
}

sub {
  vertical-align: sub;
}

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

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  color: inherit;
  text-decoration: none;
  display: block;
  box-sizing: border-box;
  transition: 0.2s;
  cursor: pointer;
}

img {
  vertical-align: bottom;
  border: none;
  width: 100%;
  height: auto;
}

del {
  text-decoration: line-through;
}

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

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

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

input,
select {
  vertical-align: middle;
  font-size: 14px;
}

/*--------------------------------------------------------------
	html/body
---------------------------------------------------------------*/
* {
  box-sizing: border-box;
}

html {
  font-size: 0.9090909091vw;
  overflow-y: scroll;
}
@media only screen and (min-width: 1100px) {
  html {
    font-size: 62.5%;
  }
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 1.3333333333vw;
  }
}

body {
  color: #222;
  line-height: 1.8;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", sans-serif;
  word-break: break-word;
  width: 100%;
  font-weight: 400;
  font-size: 1.6rem;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 2.6rem;
  }
}

.container {
  overflow: hidden;
}

/*--------------------------------------------------------------
	レスポンシブスイッチ
----------------------------------------------------------------*/
.pc {
  display: block;
}
@media only screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

/*------------------------------------------------------
	タイトル / テキスト
--------------------------------------------------------*/
.heading-xl {
  font-size: 54px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .heading-xl {
    font-size: 32px;
    font-size: 8.5333333333vw;
  }
}

.heading-l {
  font-size: 36px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .heading-l {
    font-size: 26px;
    font-size: 6.9333333333vw;
  }
}

.heading-m {
  font-size: 28px;
  margin-bottom: 20px;
  line-height: 1.5em;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .heading-m {
    margin-bottom: 10px;
    font-size: 22px;
    font-size: 5.8666666667vw;
  }
}

.heading-s {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .heading-s {
    margin-bottom: 10px;
    font-size: 18px;
    font-size: 4.8vw;
  }
}

.heading-xs {
  font-size: 20px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .heading-xs {
    margin-bottom: 10px;
    font-size: 16px;
    font-size: 4.2666666667vw;
  }
}

/*------------------------------------------------------
	カラー
--------------------------------------------------------*/
.wh-txt {
  color: #fff !important;
}

/*------------------------------------------------------
	ボタン
--------------------------------------------------------*/
.btn,
.btn-reverse {
  display: block;
  width: 300px;
  height: 65px;
  line-height: 65px;
  text-align: center;
  text-decoration: none;
  outline: none;
  transition: all 0.3s;
  background-color: #1881ff;
  border: 2px solid #1881ff;
  border-radius: 10px;
  color: #fff;
  position: relative;
  font-weight: 600;
  margin-top: 40px;
  cursor: pointer;
  margin: 60px auto 0;
}
.btn input,
.btn-reverse input {
  margin-top: 0;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.btn input:hover,
.btn-reverse input:hover {
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .btn,
  .btn-reverse {
    width: 100%;
  }
}
.btn::after,
.btn-reverse::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  transition: 0.3s;
}
.btn:hover,
.btn-reverse:hover {
  background-color: #6cf;
  border-color: #6cf;
  color: #fff;
}

.btn::after {
  transform: rotate(45deg);
  right: 30px;
  top: calc(50% - 3px);
}
.btn:hover:after {
  right: 25px;
}
.btn-reverse::after {
  transform: rotate(-135deg);
  left: 30px;
  top: calc(50% - 3px);
}
.btn-reverse:hover:after {
  left: 25px;
}

/*------------------------------------------------------
	ホバーアクション
--------------------------------------------------------*/
a img {
  transition: 0.2s;
}

a img:hover {
  opacity: 0.7;
}

/*------------------------------------------------------
	幅
--------------------------------------------------------*/
.sec-in {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto 9.0909090909vw;
}
@media only screen and (min-width: 1100px) {
  .sec-in {
    margin: 0 auto 100px;
  }
}
@media only screen and (max-width: 767px) {
  .sec-in {
    width: 100%;
    margin: 0 auto 13.3333333333vw;
    padding: 0 5.3333333333vw;
  }
}
.sec-in.sec-in-bg {
  padding: 9.0909090909vw 0;
  margin: 0 auto;
}
@media only screen and (min-width: 1100px) {
  .sec-in.sec-in-bg {
    padding: 100px 0;
  }
}
@media only screen and (max-width: 767px) {
  .sec-in.sec-in-bg {
    padding: 13.3333333333vw 5.3333333333vw;
  }
}

.under_page section:not(:last-of-type) {
  margin-bottom: 120px;
}

/*------------------------------------------------------
	flex レイアウト
--------------------------------------------------------*/
.flex {
  display: flex;
}

.f-sb {
  justify-content: space-between;
}

.f-ed {
  justify-content: flex-end;
}

.f-ct {
  justify-content: center;
}

.f-wp {
  flex-wrap: wrap;
}

.f-ic {
  align-items: center;
}

/* ---------------------------------------------
パンくず
------------------------------------------------*/
.topic-path {
  display: flex;
  max-width: 1100px;
  width: 90%;
  margin: 10px auto 9.0909090909vw;
}
@media only screen and (min-width: 1100px) {
  .topic-path {
    margin-bottom: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .topic-path {
    margin-bottom: 13.3333333333vw;
    font-size: 1rem;
  }
}
.topic-path li {
  margin-right: 10px;
  font-size: 1.2rem;
  padding-left: 15px;
  box-sizing: border-box;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .topic-path li {
    font-size: 2.4rem;
  }
}
.topic-path li:before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 5px);
  left: 0;
}
.topic-path li:first-child {
  padding-left: 0;
}
.topic-path li:first-child:before {
  display: none;
}
.topic-path li a {
  display: block;
  opacity: 0.5;
}
.topic-path li a:hover {
  text-decoration: underline;
}

/*--------------------------------------------------------------
	リスト
----------------------------------------------------------------*/
.disc,
.decimal {
  margin-left: 1.2em;
}
.disc li,
.decimal li {
  list-style-type: disc;
  text-align: left;
  margin-bottom: 10px;
}
.disc li > .disc, .disc li > .decimal,
.decimal li > .disc,
.decimal li > .decimal {
  margin: 15px 0 15px 1.2em;
}

.decimal li {
  list-style-type: decimal;
}

/*--------------------------------------------------------------
	表示位置
----------------------------------------------------------------*/
.taC {
  text-align: center !important;
}

.taL {
  text-align: left !important;
}
@media only screen and (max-width: 767px) {
  .taL {
    text-align: center !important;
  }
}

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

/*--------------------------------------------------------------
	スクロールアニメーション
----------------------------------------------------------------*/
.inview {
  opacity: 0;
  position: relative;
}
.inview.animate {
  animation: inview_slide_up 1.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 0.2s;
}

.inview-group .inview-list,
.inview-group .inview-list2 {
  opacity: 0;
  position: relative;
}

.inview-group .inview-list.animate {
  animation: inview_slide_up 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.2s;
}

.inview-group .inview-list2.animate {
  animation: inview_slide_up 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.6s;
}

@keyframes inview_slide_up {
  0% {
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*--------------------------------------------------------------
	フォーム関連
----------------------------------------------------------------*/
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=submit] {
  -webkit-appearance: none;
}

textarea {
  resize: none;
  width: auto;
  height: auto;
}

/*--------------------------------------------------------------
	汎用CSS
----------------------------------------------------------------*/
.sec-ttl {
  font-size: 5.4rem;
  margin-bottom: 7.2727272727vw;
  color: #1881ff;
  text-align: center;
  font-family: "Roboto", sans-serif;
}
@media only screen and (min-width: 1100px) {
  .sec-ttl {
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .sec-ttl {
    font-size: 7.2rem;
    width: 100%;
    margin-bottom: 10.6666666667vw;
  }
}
.sec-ttl.wh {
  color: #fff;
}
.sec-ttl.wh span {
  color: #fff;
}
.sec-ttl span {
  display: block;
  font-size: 1.8rem;
  margin-top: -15px;
  letter-spacing: 0.1em;
  color: #222;
}
@media only screen and (max-width: 767px) {
  .sec-ttl span {
    margin-top: -2.6666666667vw;
    font-size: 3.2rem;
  }
}

.main-u-v {
  background: #6cf;
  position: relative;
  width: 100%;
  z-index: -1;
  height: 36.3636363636vw;
}
.main-u-v:before {
  content: "";
  background: #6cf;
  position: absolute;
  opacity: 0.7;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media only screen and (min-width: 1100px) {
  .main-u-v {
    height: 400px;
  }
}
@media only screen and (max-width: 767px) {
  .main-u-v {
    height: 53.3333333333vw;
    margin-top: 55px;
  }
}
.main-u-v .main-u-v-in {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  z-index: 2;
  transform: translate(-50%, -20%);
}
@media only screen and (max-width: 767px) {
  .main-u-v .main-u-v-in {
    transform: translate(-50%, -50%);
  }
}
.main-u-v .main-u-v-in h2 {
  font-size: 5.8rem;
  letter-spacing: 0.05em;
  font-family: "Roboto", sans-serif;
  color: #fff;
  position: relative;
}
.main-u-v .main-u-v-in h2 span {
  display: block;
  font-size: 2.2rem;
  margin-top: -15px;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .main-u-v .main-u-v-in h2 span {
    margin-top: -10px;
  }
}

.column-2 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1100px;
  width: 90%;
  margin: 0 auto 100px;
}

.main {
  width: 70%;
}
@media only screen and (max-width: 767px) {
  .main {
    width: 100%;
  }
}

.side {
  width: 24%;
}
@media only screen and (max-width: 767px) {
  .side {
    width: 100%;
    order: 2;
    margin-top: 10.6666666667vw;
  }
}
.side .box h3 {
  font-weight: bold;
  line-height: 1.4;
  padding: 2px 0 0 10px;
  border-left: 8px solid #1881ff;
  font-size: 2.2rem;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .side .box h3 {
    font-size: 3.2rem;
  }
}
.side .box ul {
  border: 1px solid #ddd;
}
.side .box ul li {
  border-bottom: 1px solid #ddd;
}
.side .box ul li:last-child {
  border-bottom: none;
}
.side .box ul li a {
  padding: 14px 0 10px 12px;
}
.side .box ul li a:hover {
  transform: translateX(7px);
  color: #6cf;
}

.pagination ul {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
.pagination ul li a {
  display: inline-block;
  color: #222;
  background-color: #fff;
  text-decoration: none;
  text-align: center;
  line-height: 44px;
  width: 44px;
  height: 44px;
  margin: 0 10px;
  transition: 0.2s ease-in-out;
  white-space: nowrap;
  border: 1px solid #222;
}
.pagination ul li a:hover, .pagination ul li a.current {
  background-color: #222;
  border: 1px solid #222;
  color: #fff;
}

.no-link {
  pointer-events: none;
}

header {
  height: 7.2727272727vw;
  max-width: 1100px;
  top: 0;
  z-index: 1001;
  position: fixed;
  background: #fff;
  margin: 0 auto;
  left: 0;
  right: 0;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 25px 50px -12px;
  border-radius: 10px;
  overflow: hidden;
}
@media only screen and (min-width: 1100px) {
  header {
    height: 80px;
  }
}
@media only screen and (max-width: 767px) {
  header {
    height: 55px;
    width: 100%;
    position: fixed;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 0;
    overflow: initial;
  }
}
header .header-in {
  padding: 0 0 0 30px;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  header .header-in {
    width: 100%;
    padding: 0;
  }
}
header .header-in h1 {
  width: 20.4545454545vw;
  margin-right: 60px;
}
@media only screen and (min-width: 1100px) {
  header .header-in h1 {
    width: 225px;
  }
}
header .header-in h1 img {
  display: block;
  top: 0;
}
@media only screen and (max-width: 767px) {
  header .header-in h1 {
    position: fixed;
    width: 162.5px;
    left: 20px;
    top: 15px;
  }
}
header .header-in .header-nav {
  width: 72.7272727273vw;
}
@media only screen and (min-width: 1100px) {
  header .header-in .header-nav {
    width: 800px;
  }
}
@media only screen and (max-width: 767px) {
  header .header-in .header-nav {
    width: 100%;
    position: absolute;
    top: 55px;
  }
}
@media only screen and (max-width: 767px) {
  header .header-in .header-nav > ul {
    display: none;
    background: rgba(255, 255, 255, 0.9);
    padding: 40px 20px 0;
    height: 100vh;
  }
}
header .header-in .header-nav > ul > li {
  position: relative;
  line-height: 7.2727272727vw;
}
@media only screen and (min-width: 1100px) {
  header .header-in .header-nav > ul > li {
    line-height: 80px;
  }
}
@media only screen and (max-width: 767px) {
  header .header-in .header-nav > ul > li {
    line-height: normal;
    border-bottom: 1px solid #ddd;
  }
}
header .header-in .header-nav > ul > li a {
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: 0.2s;
}
@media only screen and (max-width: 767px) {
  header .header-in .header-nav > ul > li a {
    padding: 18px;
    text-align: center;
    position: relative;
  }
}
header .header-in .header-nav > ul > li a:hover {
  color: #1881ff;
}
header .header-in .header-nav > ul > li.mega-link > a {
  position: relative;
}
header .header-in .header-nav > ul > li.mega-link > a:after {
  content: "";
  display: block;
  display: inline-block;
  position: absolute;
  width: 7px;
  height: 7px;
  top: 62%;
  right: calc(50% - 3.5px);
  border-top: 2px solid #1881ff;
  border-right: 2px solid #1881ff;
  transform: rotate(135deg);
}
@media only screen and (max-width: 767px) {
  header .header-in .header-nav > ul > li.mega-link > a:after {
    width: 100%;
    width: 10px;
    height: 10px;
    top: calc(50% - 7.5px);
    right: 10px;
  }
}
@media only screen and (max-width: 767px) {
  header .header-in .header-nav > ul > li.mega-link.open a:before {
    transform: rotate(180deg);
  }
}
header .header-in .header-nav > ul > li.mega-link .mega-menu {
  position: absolute;
  width: 200px;
  left: calc(50% - 100px);
  display: none;
  background: #fff;
}
@media only screen and (max-width: 767px) {
  header .header-in .header-nav > ul > li.mega-link .mega-menu {
    position: static;
    background: #f2f2f2;
    width: 100%;
    padding: 0;
    height: auto;
  }
}
header .header-in .header-nav > ul > li.mega-link .mega-menu li {
  border-top: 1px solid #ddd;
  height: auto;
  line-height: 1.4em;
}
header .header-in .header-nav > ul > li.mega-link .mega-menu li a {
  padding: 15px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  header .header-in .header-nav > ul > li.mega-link .mega-menu li a {
    padding: 18px;
    border-bottom: none;
    position: relative;
  }
}
header .header-in .header-nav > ul > li.mega-link .mega-menu li a:hover {
  color: #1881ff;
}
header .header-in .contact-btn {
  position: absolute;
  right: -1px;
  top: 0;
}
header .header-in .contact-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 15px;
  background-color: #1881ff;
  height: 7.2727272727vw;
  line-height: 7.2727272727vw;
  color: #fff;
  padding: 0 40px;
  text-align: center;
  letter-spacing: 0.05em;
  transition: 0.2s;
}
@media only screen and (min-width: 768px) {
  header .header-in .contact-btn a {
    height: 80px;
    line-height: 1.5;
  }
}
@media only screen and (max-width: 767px) {
  header .header-in .contact-btn a {
    height: auto;
    line-height: normal;
    margin-top: 30px;
  }
  header .header-in .contact-btn a br {
    display: none;
  }
}
header .header-in .contact-btn a::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../../assets/img/icon-email.svg");
  background-size: 20px 20px;
  vertical-align: middle;
  margin: -3px 0 0;
  transition: 0.2s;
}
header .header-in .contact-btn a:hover {
  background: #71afd1;
  color: #fff !important;
}
header .nav_toggle {
  display: none;
}
@media only screen and (max-width: 767px) {
  header .nav_toggle {
    display: block;
    width: 28px;
    height: 36px;
    position: absolute;
    top: 18px;
    z-index: 100;
    right: 16px;
  }
  header .nav_toggle.open {
    top: 15px;
  }
  header .nav_toggle div {
    position: relative;
  }
  header .nav_toggle span {
    display: block;
    height: 3px;
    background: #222;
    position: absolute;
    width: 100%;
    left: 0;
    transition: 0.3s ease-in-out;
  }
  header .nav_toggle span:nth-child(1) {
    top: 0;
  }
  header .nav_toggle span:nth-child(2) {
    top: 9px;
  }
  header .nav_toggle span:nth-child(3) {
    top: 18px;
  }
  header .nav_toggle.open span:nth-child(1) {
    top: 12px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  header .nav_toggle.open span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  header .nav_toggle.open span:nth-child(3) {
    top: 12px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
}

.footer {
  background: #72b7d9;
  padding: 60px 0;
  position: relative;
  box-sizing: border-box;
  clear: both;
}
@media only screen and (max-width: 767px) {
  .footer {
    height: auto;
    padding: 25px 20px;
  }
}
.footer-in {
  width: 650px;
  margin: 0 auto;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .footer-in {
    width: 100%;
  }
}
.footer-in .footer-nav-1 {
  display: flex;
  justify-content: center;
  column-gap: 20px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .footer-in .footer-nav-1 {
    column-gap: 10px;
    margin-bottom: 20px;
  }
}
.footer-in .footer-nav-1 a {
  width: 70px;
  border-radius: 50%;
}
@media only screen and (max-width: 767px) {
  .footer-in .footer-nav-1 a {
    width: 35px;
  }
}
.footer-in .footer-nav-2 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .footer-in .footer-nav-2 {
    display: none;
  }
}
.footer-in .footer-nav-2 a {
  transition: opacity 0.2s;
}
.footer-in .footer-nav-2 a:hover {
  opacity: 0.4;
}
.footer-in .logo {
  display: block;
  box-sizing: content-box;
  width: 225px;
  margin: 0 auto 40px;
  padding: 5px;
}
@media only screen and (max-width: 767px) {
  .footer-in .logo {
    width: 162.5px;
    margin-bottom: 20px;
  }
}
.footer-in .copy-light {
  font-size: 10px;
  color: #fff;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .footer-in .copy-light {
    margin: 0 auto;
    line-height: 1.4em;
  }
}
.footer_tel {
  text-align: center;
  margin-bottom: 20px;
}
.footer_tel .title {
  font-size: 2rem;
  font-weight: bold;
}
.footer_tel .tel {
  font-size: 3.6rem;
  font-weight: bold;
}

.btn-to-top {
  display: none;
}
.btn-to-top a {
  width: 60px;
  height: 60px;
  background: #333;
  position: fixed;
  right: 0;
  bottom: 0;
}
.btn-to-top a:after {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  transform: rotate(-45deg);
  position: absolute;
  top: 24px;
  left: 19px;
}
.btn-to-top.current {
  position: absolute;
  top: -34px;
  bottom: inherit;
}

#TOP .main-video {
  position: relative;
  width: 100%;
  margin-bottom: 0;
}
#TOP .main-video-item {
  width: 100%;
  height: 100vh;
  height: 100dvh;
}
#TOP .main-video-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#TOP .main-video .main-ttl {
  position: absolute;
  top: 17.7083333333vw;
  left: 10.4166666667vw;
  font-family: "Zen Antique", serif;
  font-size: 2.0833333333vw;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.1em;
  line-height: 2;
  writing-mode: vertical-rl;
}
@media only screen and (max-width: 767px) {
  #TOP .main-video .main-ttl {
    top: 85.3333333333vw;
    left: 5.3333333333vw;
    font-size: 4.8rem;
  }
}
#TOP .main-video .main-ttl span {
  margin: 0 -7px;
}
@media only screen and (max-width: 767px) {
  #TOP .main-video .main-ttl span {
    margin: 0 -5px;
  }
}
#TOP .main-video .scroll {
  display: inline-block;
  position: absolute;
  right: 45px;
  bottom: 0;
  z-index: 2;
  padding: 10px 10px 110px;
  overflow: hidden;
  color: #fff;
  font-size: 14px;
  font-family: "Josefin Sans", sans-serif;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  writing-mode: vertical-lr;
}
@media only screen and (max-width: 767px) {
  #TOP .main-video .scroll {
    font-size: 12px;
    font-size: 3.2vw;
    right: 20px;
  }
}
#TOP .main-video .scroll:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 100px;
  background: #fff;
  animation: sdl 2s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  35% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  35.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  70%, 100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
#TOP .main-video .catch {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  color: #FFF;
  font-size: 4.8rem;
  text-shadow: 0 0 13px #454545;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  #TOP .main-video .catch {
    font-size: 4.4rem;
  }
}
#TOP .sec01 {
  background: linear-gradient(90deg, #fff 42vw, #66CCFF 10%);
}
@media only screen and (max-width: 767px) {
  #TOP .sec01 {
    background: linear-gradient(90deg, #fff 50vw, #66CCFF 10%);
  }
}
#TOP .sec01 .sec-in > div:not(:last-of-type) {
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  #TOP .sec01 .sec-in > div:not(:last-of-type) {
    margin-bottom: 20px;
  }
}
#TOP .sec01 .box {
  background: #fff;
  box-shadow: rgba(149, 157, 165, 0.3) 0px 8px 24px;
  padding: 4.5454545455vw;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  border-radius: 10px;
}
@media only screen and (min-width: 1100px) {
  #TOP .sec01 .box {
    padding: 50px;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .sec01 .box {
    padding: 5.3333333333vw;
  }
}
#TOP .sec01 .box .img-area,
#TOP .sec01 .box .info-area {
  width: 47%;
  text-align: justify;
}
@media only screen and (max-width: 767px) {
  #TOP .sec01 .box .img-area,
  #TOP .sec01 .box .info-area {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .sec01 .box .img-area {
    order: 1;
    margin-bottom: 20px;
  }
  #TOP .sec01 .box .info-area {
    order: 2;
  }
}
#TOP .sec02 {
  background: rgba(48, 126, 183, 0.1);
}
#TOP .sec02 .travel-slider {
  width: calc(100% + 40px);
  height: 100%;
  margin-left: -20px;
}
@media only screen and (max-width: 767px) {
  #TOP .sec02 .travel-slider {
    width: 100%;
    margin-left: 0;
  }
}
#TOP .sec02 .travel-slider-item {
  width: 33.3333333333%;
  padding: 0 20px;
}
@media only screen and (max-width: 767px) {
  #TOP .sec02 .travel-slider-item {
    width: 100%;
    padding: 0;
  }
}
#TOP .sec02 .travel-slider-item a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  background-color: #fff;
  box-shadow: rgba(50, 50, 93, 0.1) 0px 13px 27px -5px, rgba(0, 0, 0, 0.1) 0px 8px 16px -8px;
}
#TOP .sec02 .travel-slider-item figcaption {
  padding: 2.7272727273vw;
  font-size: 2rem;
  font-weight: 700;
}
@media only screen and (min-width: 1100px) {
  #TOP .sec02 .travel-slider-item figcaption {
    padding: 30px;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .sec02 .travel-slider-item figcaption {
    padding: 5.3333333333vw;
    font-size: 3.6rem;
  }
}
#TOP .sec02 .travel-slider-next, #TOP .sec02 .travel-slider-prev {
  position: absolute;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: #1881ff;
  border-radius: 50%;
  opacity: 1;
  transition: opacity 0.3s;
}
@media only screen and (max-width: 767px) {
  #TOP .sec02 .travel-slider-next, #TOP .sec02 .travel-slider-prev {
    width: 36px;
    height: 36px;
  }
}
#TOP .sec02 .travel-slider-next:hover, #TOP .sec02 .travel-slider-next:active, #TOP .sec02 .travel-slider-prev:hover, #TOP .sec02 .travel-slider-prev:active {
  cursor: pointer;
  opacity: 0.7;
}
#TOP .sec02 .travel-slider-next::after, #TOP .sec02 .travel-slider-prev::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  background-size: contain;
  bottom: 15px;
}
@media only screen and (max-width: 767px) {
  #TOP .sec02 .travel-slider-next::after, #TOP .sec02 .travel-slider-prev::after {
    bottom: 12px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    width: 8px;
    height: 8px;
  }
}
#TOP .sec02 .travel-slider-prev {
  left: 0;
}
@media only screen and (max-width: 767px) {
  #TOP .sec02 .travel-slider-prev {
    left: -10px;
  }
}
#TOP .sec02 .travel-slider-prev::after {
  transform: rotate(225deg);
  left: 19px;
}
@media only screen and (max-width: 767px) {
  #TOP .sec02 .travel-slider-prev::after {
    left: 12px;
  }
}
#TOP .sec02 .travel-slider-next {
  right: 0;
}
@media only screen and (max-width: 767px) {
  #TOP .sec02 .travel-slider-next {
    right: -10px;
  }
}
#TOP .sec02 .travel-slider-next::after {
  transform: rotate(45deg);
  right: 19px;
}
@media only screen and (max-width: 767px) {
  #TOP .sec02 .travel-slider-next::after {
    right: 12px;
  }
}
#TOP .sec03 {
  background: linear-gradient(90deg, #6cf 42vw, #fff 10%);
}
@media only screen and (max-width: 767px) {
  #TOP .sec03 {
    background: none;
  }
  #TOP .sec03 .sec-ttl.wh {
    color: #234872;
    text-align: center;
    width: 100%;
  }
  #TOP .sec03 .sec-ttl.wh span {
    color: #222;
  }
}
#TOP .sec03 .box {
  overflow: hidden;
  width: 50%;
}
@media only screen and (max-width: 767px) {
  #TOP .sec03 .box {
    width: 100%;
    margin-bottom: 30px;
  }
}
#TOP .sec03 .box dl {
  display: flex;
  border-bottom: 1px solid #ddd;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
#TOP .sec03 .box dl:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}
#TOP .sec03 .box dl dt {
  width: 20%;
  font-weight: bold;
}
#TOP .sec03 .box dl dd {
  width: 75%;
}
@media only screen and (max-width: 767px) {
  #TOP .sec03 .box dl {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}
#TOP .sec03 iframe {
  width: 100%;
  background: #fff;
  padding: 30px;
  height: 500px;
}
@media only screen and (max-width: 767px) {
  #TOP .sec03 iframe {
    background: none;
    padding: 0;
    height: 300px;
  }
}
#TOP .sec04 {
  background: rgba(48, 126, 183, 0.1);
}
#TOP .sec04 .accordion-type-1 {
  width: 900px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  #TOP .sec04 .accordion-type-1 {
    width: 90%;
  }
}
#TOP .sec04 .accordion-type-1 dl {
  margin-bottom: 2px;
  cursor: pointer;
}
#TOP .sec04 .accordion-type-1 dl dt,
#TOP .sec04 .accordion-type-1 dl dd {
  padding: 20px 20px 20px 30px;
}
#TOP .sec04 .accordion-type-1 dl dt {
  background: #fff;
  position: relative;
}
#TOP .sec04 .accordion-type-1 dl dt:after {
  content: "+";
  display: block;
  position: absolute;
  font-size: 3.2rem;
  font-weight: 100;
  right: 30px;
  color: #66CCFF;
  top: 7px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
#TOP .sec04 .accordion-type-1 dl dt.active:after {
  top: 20px;
  transform: rotate(45deg);
}
#TOP .sec04 .accordion-type-1 dl dd {
  background: #ebf2f8;
  display: none;
}
#TOP .sec05 {
  background-color: rgba(48, 126, 183, 0.1);
}
#TOP .sec05 .news-type {
  max-width: 850px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  #TOP .sec05 .news-type {
    width: 100%;
  }
}
#TOP .sec05 .news-type li {
  background-color: #fff;
}
#TOP .sec05 .news-type li:not(:last-child) {
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  #TOP .sec05 .news-type li:not(:last-child) {
    margin-bottom: 10px;
  }
}
#TOP .sec05 .news-type li a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 30px;
}
#TOP .sec05 .news-type li a .time {
  vertical-align: middle;
  line-height: 1.4;
  color: #888;
}
#TOP .sec05 .news-type li a .cat {
  background: #333;
  display: inline-table;
  font-size: 1.2rem;
  table-layout: initial;
  line-height: 22px;
  height: 22px;
  padding: 0 5px;
  text-align: center;
  color: #fff;
  margin: -3px 10px 0;
}
#TOP .sec05 .news-type li a .txt {
  width: 100%;
  margin-top: 10px;
  vertical-align: middle;
  display: inline-table;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  #TOP .sec05 .news-type li a {
    padding: 20px;
  }
  #TOP .sec05 .news-type li a .time {
    width: auto;
    padding: 0;
    display: inline-block;
  }
  #TOP .sec05 .news-type li a .cat {
    margin: 0 0 0 10px;
    width: 80px;
    padding: 5px 0 1px;
    line-height: 1.2em;
    font-size: 11px;
    font-size: 2.9333333333vw;
  }
  #TOP .sec05 .news-type li a .txt {
    margin-top: 10px;
    width: 100%;
    -webkit-line-clamp: 2;
  }
}
#TOP .sec-sub-ttl {
  font-size: 3rem;
  margin-bottom: 1.8181818182vw;
  line-height: 1.4em;
}
@media only screen and (min-width: 1100px) {
  #TOP .sec-sub-ttl {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .sec-sub-ttl {
    font-size: 4rem;
    line-height: 1.4em;
    margin-bottom: 4vw;
  }
}

#ABOUT .sec01 .box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
#ABOUT .sec01 .box .l-area {
  width: 47%;
}
@media only screen and (max-width: 767px) {
  #ABOUT .sec01 .box .l-area {
    width: 100%;
    order: 2;
  }
}
#ABOUT .sec01 .box .l-area h4 {
  font-size: 2.6rem;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  #ABOUT .sec01 .box .l-area h4 {
    font-size: 4rem;
  }
}
#ABOUT .sec01 .box .r-area {
  width: 48%;
}
@media only screen and (max-width: 767px) {
  #ABOUT .sec01 .box .r-area {
    width: 100%;
    order: 1;
    margin-bottom: 4vw;
  }
}
#ABOUT .sec01 .box .r-area figcaption {
  margin-top: 5px;
  text-align: center;
}
#ABOUT .sec01 p + p {
  text-align: right;
  margin-top: 10px;
}
#ABOUT .sec02, #ABOUT .history-sec {
  background-color: #f6f6f6;
  margin-bottom: 9.0909090909vw;
}
@media only screen and (min-width: 1100px) {
  #ABOUT .sec02, #ABOUT .history-sec {
    margin-bottom: 100px;
  }
}
@media only screen and (max-width: 767px) {
  #ABOUT .sec02, #ABOUT .history-sec {
    margin-bottom: 13.3333333333vw;
  }
}
#ABOUT .sec02 dl, #ABOUT .history-sec dl {
  display: flex;
  border-bottom: 1px solid #ddd;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 28px;
  margin-bottom: 28px;
}
#ABOUT .sec02 dl:last-of-type, #ABOUT .history-sec dl:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}
#ABOUT .sec02 dl dt, #ABOUT .history-sec dl dt {
  width: 20%;
  font-weight: bold;
}
#ABOUT .sec02 dl dt:not(:last-of-type), #ABOUT .history-sec dl dt:not(:last-of-type) {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}
@media only screen and (max-width: 767px) {
  #ABOUT .sec02 dl dt:not(:last-of-type), #ABOUT .history-sec dl dt:not(:last-of-type) {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
}
#ABOUT .sec02 dl dd, #ABOUT .history-sec dl dd {
  width: 80%;
}
#ABOUT .sec02 dl dd:not(:last-of-type), #ABOUT .history-sec dl dd:not(:last-of-type) {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}
@media only screen and (max-width: 767px) {
  #ABOUT .sec02 dl dd:not(:last-of-type), #ABOUT .history-sec dl dd:not(:last-of-type) {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}
#ABOUT .sec02 dl dd table:not(:first-child), #ABOUT .history-sec dl dd table:not(:first-child) {
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  #ABOUT .sec02 dl dd table:not(:first-child), #ABOUT .history-sec dl dd table:not(:first-child) {
    margin-top: 4vw;
  }
}
#ABOUT .sec02 dl dd table th, #ABOUT .history-sec dl dd table th {
  word-break: keep-all;
  text-align: left;
  vertical-align: top;
  padding-right: 1.6rem;
}
@media only screen and (max-width: 767px) {
  #ABOUT .sec02 dl dd table th, #ABOUT .history-sec dl dd table th {
    padding-right: 3.7333333333vw;
  }
}
#ABOUT .sec02 dl dd table td, #ABOUT .history-sec dl dd table td {
  vertical-align: top;
}
#ABOUT .sec02 dl dd table td:nth-of-type(n+2), #ABOUT .history-sec dl dd table td:nth-of-type(n+2) {
  padding-left: 1.6rem;
}
@media only screen and (max-width: 767px) {
  #ABOUT .sec02 dl dd table td:nth-of-type(n+2), #ABOUT .history-sec dl dd table td:nth-of-type(n+2) {
    padding-left: 3.7333333333vw;
  }
}
#ABOUT .sec02 dl dd table td:nth-of-type(2), #ABOUT .history-sec dl dd table td:nth-of-type(2) {
  text-align: right;
}
#ABOUT .sec02 dl dd a, #ABOUT .history-sec dl dd a {
  display: inline;
  text-decoration: underline;
  color: #1881ff;
}
#ABOUT .sec02 dl dd a:hover, #ABOUT .sec02 dl dd a:active, #ABOUT .history-sec dl dd a:hover, #ABOUT .history-sec dl dd a:active {
  text-decoration: none;
}
#ABOUT .sec02 figure iframe, #ABOUT .history-sec figure iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
}
@media only screen and (max-width: 767px) {
  #ABOUT .sec02, #ABOUT .history-sec {
    width: 100%;
  }
  #ABOUT .sec02 dl, #ABOUT .history-sec dl {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  #ABOUT .sec02 dl dt, #ABOUT .history-sec dl dt {
    margin-bottom: 5px;
  }
  #ABOUT .sec02 dl dt,
  #ABOUT .sec02 dl dd, #ABOUT .history-sec dl dt,
  #ABOUT .history-sec dl dd {
    width: 100%;
  }
}
#ABOUT .history-sec {
  background-color: #fff;
}
#ABOUT .sec03 iframe {
  width: 100%;
  height: 36.3636363636vw;
}
@media only screen and (min-width: 1100px) {
  #ABOUT .sec03 iframe {
    height: 400px;
  }
}
@media only screen and (max-width: 767px) {
  #ABOUT .sec03 iframe {
    height: 300px;
  }
}
#ABOUT .sec03 iframe + p {
  text-align: center;
  margin-top: 10px;
}

.recommend-image {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.recommend-image li {
  margin: 0;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .recommend-image {
    gap: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .recommend-image {
    gap: 10px;
  }
}
@media only screen and (min-width: 768px) {
  .recommend-image li {
    width: calc(25% - 15px);
  }
}
@media only screen and (max-width: 767px) {
  .recommend-image li {
    width: calc(50% - 5px);
  }
}
.recommend-image li a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 5px 0;
  width: 100%;
  height: 100%;
}
.recommend-image li a span {
  text-align: center;
}

#MENU .box {
  display: flex;
  /* justify-content: space-between; */
  /* flex-wrap: wrap; */
  max-width: 1100px;
  margin: 0 auto;
  flex-direction: column;
}
#MENU .box .l-area {
  width: 100%;
  margin-bottom: 100px;
}
#MENU .sec-in .img-box{
  width: 100%;
  margin-bottom: 50px;
}

@media only screen and (max-width: 767px) {
  #MENU .box .l-area {
    width: 100%;
    /* order: 2; */
  }
}

#MENU .box .l-area h2 {
  font-size: 4rem;
  margin-bottom: 20px;
  background-color: #6cf;
  padding: 1rem 2rem;
  font-weight: 600;
  color: #fff;
}

#MENU .box .l-area h3 {
  font-size: 2.6rem;
  margin-bottom: 10px;
  padding: 1rem 2rem;
}

#MENU .box .l-area h4 {
  font-size: 2.6rem;
  margin-bottom: 10px;
}

#MENU .box .l-area p{
  padding: 1rem 2rem;
}

@media only screen and (max-width: 767px) {
  #MENU .box .l-area h2 {
    font-size: 6rem;
    text-align: center;
  }
  #MENU .box .l-area h3 {
    font-size: 4rem;
  }
	
  #MENU .box .l-area h4 {
    font-size: 4rem;
  }
}
#MENU .box .r-area {
  width: 48%;
}
@media only screen and (max-width: 767px) {
  #MENU .box .r-area {
    width: 100%;
    order: 1;
    margin-bottom: 4vw;
  }
}
#MENU .box .r-area figcaption {
  margin-top: 5px;
  text-align: center;
}
#MENU .even {
  background-color: #f6f6f6;
}
#MENU .row {
  text-align: center;
  width: 100%;
}
#MENU .row + .row {
  margin-top: 9.0909090909vw;
}
@media only screen and (min-width: 1100px) {
  #MENU .row + .row {
    margin-top: 100px;
  }
}
#MENU .row h4 {
  font-size: 2.6rem;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  #MENU .row h4 {
    font-size: 4rem;
  }
}
#MENU .row h5 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  #MENU .row h5 {
    font-size: 3.6rem;
  }
}
#MENU .row video {
  width: auto;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  #MENU .row video {
    width: 100%;
    height: auto;
  }
}
#MENU .column_wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 30px 2%;
}
@media only screen and (max-width: 767px) {
  #MENU .column_wrap {
    gap: 20px 4%;
  }
}
#MENU .column_wrap .column {
  width: 32%;
}
@media only screen and (max-width: 767px) {
  #MENU .column_wrap .column {
    width: 48%;
  }
}

#PRIVACY .sec02 {
  background-color: #f6f6f6;
}
#PRIVACY .inview ol {
  counter-reset: i;
}
@media only screen and (min-width: 768px) {
  #PRIVACY .inview ol {
    margin: 25px 0;
  }
}
#PRIVACY .inview ol > li {
  display: flex;
  counter-increment: i;
}
@media only screen and (min-width: 768px) {
  #PRIVACY .inview ol > li {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #PRIVACY .inview ol > li {
    margin-bottom: 15px;
  }
}
#PRIVACY .inview ol > li::before {
  content: counter(i) ".";
}
@media only screen and (min-width: 768px) {
  #PRIVACY .inview ol > li::before {
    width: 32px;
  }
}
@media only screen and (max-width: 767px) {
  #PRIVACY .inview ol > li::before {
    width: 20px;
  }
}
@media only screen and (min-width: 768px) {
  #PRIVACY .inview ol dl {
    width: calc(100% - 32px);
  }
}
@media only screen and (max-width: 767px) {
  #PRIVACY .inview ol dl {
    width: calc(100% - 20px);
  }
}
#PRIVACY .inview ol dl dt {
  font-weight: 700;
}
#PRIVACY .inview ol dl ul {
  list-style-type: disc;
}
@media only screen and (min-width: 768px) {
  #PRIVACY .inview ol dl ul {
    margin: 15px 0;
    padding-left: 24px;
  }
}
@media only screen and (max-width: 767px) {
  #PRIVACY .inview ol dl ul {
    margin: 15px 0;
    padding-left: 20px;
  }
}
#PRIVACY .inview ol dl dd a {
  display: inline;
  text-decoration: underline;
  color: #1881ff;
}
#PRIVACY .inview ol dl dd a:hover, #PRIVACY .inview ol dl dd a:active {
  text-decoration: none;
}
@media only screen and (min-width: 768px) {
  #PRIVACY .inview p:not(:last-child) {
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 767px) {
  #PRIVACY .inview p:not(:last-child) {
    margin-bottom: 20px;
  }
}

#PRODUCT .main {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .main {
    width: 100%;
  }
}
#PRODUCT .main .p-list {
  display: flex;
  flex-wrap: wrap;
}
#PRODUCT .main .p-list:after {
  content: "";
  display: block;
  width: 32%;
  height: 0;
}
#PRODUCT .main .p-list li {
  width: 19.8863636364%;
}
@media only screen and (min-width: 768px) {
  #PRODUCT .main .p-list li:not(:nth-of-type(4n+1)) {
    margin-left: 6.8181818182%;
  }
  #PRODUCT .main .p-list li:nth-child(n+5) {
    margin-top: 25px;
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .main .p-list li {
    width: 100%;
  }
  #PRODUCT .main .p-list li:not(:last-child) {
    margin-bottom: 20px;
  }
}
#PRODUCT .main .p-list li .img {
  position: relative;
}
#PRODUCT .main .p-list li .img::before {
  content: "";
  display: block;
  padding-top: 141.3709677419%;
}
#PRODUCT .main .p-list li .img img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
#PRODUCT .main .p-list li a:hover {
  opacity: 0.7;
  transition: 0.2s;
}
#PRODUCT .main .p-list li .info-area {
  text-align: center;
  padding: 1.8181818182vw;
}
@media only screen and (min-width: 1100px) {
  #PRODUCT .main .p-list li .info-area {
    padding: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .main .p-list li .info-area {
    padding: 4vw;
  }
}
#PRODUCT .main .p-list li .info-area h4 {
  font-size: 1.6rem;
  line-height: 1.3;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .main .p-list li .info-area h4 {
    font-size: 3.2rem;
  }
}
#PRODUCT .main .p-list li .info-area h4 + p {
  line-height: 1.7em;
  font-size: 1.4rem;
  text-align: justify;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .main .p-list li .info-area h4 + p {
    font-size: 2.6rem;
  }
}
#PRODUCT .details .p-ttl {
  font-size: 3rem;
  margin-bottom: 1.3636363636vw;
}
@media only screen and (min-width: 1100px) {
  #PRODUCT .details .p-ttl {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .details .p-ttl {
    font-size: 4rem;
    margin-bottom: 2.6666666667vw;
  }
}
#PRODUCT .details .item-image {
  display: flex;
  flex-wrap: wrap;
  margin: 10px 0 40px;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .details .item-image {
    margin-top: 1.3333333333vw;
  }
}
#PRODUCT .details .item-image li {
  width: 19%;
}
#PRODUCT .details .item-image li:not(:last-of-type) {
  margin-right: 1.25%;
}
#PRODUCT .details .item-image li.current {
  opacity: 0.7;
}
#PRODUCT .details dl:not(:last-of-type) {
  margin-bottom: 40px;
}
#PRODUCT .details dl dt {
  font-weight: bold;
  line-height: 1.4;
  padding: 2px 0 0 10px;
  border-left: 8px solid #1881ff;
  font-size: 2.2rem;
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .details dl dt {
    font-size: 3.2rem;
  }
}

#NEWS .main {
  width: 70%;
}
@media only screen and (max-width: 767px) {
  #NEWS .main {
    width: 100%;
  }
}
#NEWS .main .n-list1 {
  margin-bottom: 100px;
}
#NEWS .main .n-list1 li {
  border-bottom: 1px solid #ddd;
}
#NEWS .main .n-list1 li:first-child {
  border-top: 1px solid #ddd;
}
#NEWS .main .n-list1 li a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 25px 0;
}
#NEWS .main .n-list1 li a .time {
  vertical-align: middle;
  line-height: 1.4;
}
#NEWS .main .n-list1 li a .cat {
  background: #333;
  display: inline-table;
  font-size: 1.2rem;
  table-layout: initial;
  padding: 1px 5px 0;
  text-align: center;
  color: #fff;
  margin: -3px 20px 0;
}
#NEWS .main .n-list1 li a .txt {
  width: 100%;
  vertical-align: middle;
  display: inline-table;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  #NEWS .main .n-list1 li a {
    padding: 20px 0;
  }
  #NEWS .main .n-list1 li a .time {
    width: auto;
    padding: 0;
    display: inline-block;
  }
  #NEWS .main .n-list1 li a .cat {
    margin: 0 0 0 10px;
    padding: 3px 5px 1px;
    line-height: 1.4em;
    font-size: 2rem;
  }
  #NEWS .main .n-list1 li a .txt {
    margin-top: 10px;
    width: 100%;
    -webkit-line-clamp: 2;
  }
}
#NEWS .main .n-list2 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#NEWS .main .n-list2:after {
  content: "";
  display: block;
  width: 32%;
  height: 0;
}
#NEWS .main .n-list2 li {
  width: 31.5%;
  background: #fff;
  box-shadow: rgba(50, 50, 93, 0.1) 0px 13px 27px -5px, rgba(0, 0, 0, 0.1) 0px 8px 16px -8px;
}
@media only screen and (max-width: 767px) {
  #NEWS .main .n-list2 li {
    width: 100%;
  }
  #NEWS .main .n-list2 li:not(:last-child) {
    margin-bottom: 20px;
  }
}
#NEWS .main .n-list2 li:nth-child(n+4) {
  margin-top: 25px;
}
@media only screen and (max-width: 767px) {
  #NEWS .main .n-list2 li:nth-child(n+4) {
    margin-top: auto;
  }
}
#NEWS .main .n-list2 li a:hover {
  opacity: 0.7;
  transition: 0.2s;
}
#NEWS .main .n-list2 li .info-area {
  padding: 1.8181818182vw;
}
@media only screen and (min-width: 1100px) {
  #NEWS .main .n-list2 li .info-area {
    padding: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #NEWS .main .n-list2 li .info-area {
    padding: 4vw;
  }
}
#NEWS .main .n-list2 li .info-area h4 {
  font-size: 1.6rem;
  line-height: 1.3;
  margin-bottom: 0.9090909091vw;
}
@media only screen and (min-width: 1100px) {
  #NEWS .main .n-list2 li .info-area h4 {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  #NEWS .main .n-list2 li .info-area h4 {
    font-size: 3.2rem;
    margin-bottom: 1.0666666667vw;
  }
}
#NEWS .main .n-list2 li .info-area .info-head {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  #NEWS .main .n-list2 li .info-area .info-head {
    font-size: 2.4rem;
  }
}
#NEWS .main .n-list2 li .info-area .info-head .time {
  color: #888;
  margin-right: 10px;
}
#NEWS .main .n-list2 li .info-area .info-head .cat {
  background-color: #333;
  color: #fff;
  padding: 4px 6px 2px;
  font-size: 1.2rem;
  line-height: 1;
  display: block;
  margin-top: -2px;
}
@media only screen and (max-width: 767px) {
  #NEWS .main .n-list2 li .info-area .info-head .cat {
    font-size: 2rem;
  }
}
#NEWS.details .info-head {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
#NEWS.details .info-head .time {
  color: #888;
  margin-right: 10px;
}
#NEWS.details .info-head .cat {
  background-color: #333;
  color: #fff;
  padding: 4px 6px 2px;
  font-size: 1.2rem;
  line-height: 1;
  display: block;
  margin-top: -2px;
}
@media only screen and (max-width: 767px) {
  #NEWS.details .info-head .cat {
    font-size: 2rem;
  }
}
#NEWS.details .n-ttl {
  font-size: 3rem;
  margin-bottom: 1.3636363636vw;
}
@media only screen and (min-width: 1100px) {
  #NEWS.details .n-ttl {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 767px) {
  #NEWS.details .n-ttl {
    font-size: 4rem;
    margin-bottom: 2.6666666667vw;
  }
}
#NEWS.details .item-main-img {
  margin-bottom: 40px;
}
#NEWS.details dl:not(:last-of-type) {
  margin-bottom: 40px;
}
#NEWS.details dl dt {
  font-weight: bold;
  line-height: 1.4;
  padding: 2px 0 0 10px;
  border-left: 8px solid #1881ff;
  font-size: 2.2rem;
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  #NEWS.details dl dt {
    font-size: 3.2rem;
  }
}

#RECRUIT .sec01 {
  margin-bottom: 9.0909090909vw;
}
@media only screen and (min-width: 1100px) {
  #RECRUIT .sec01 {
    margin-bottom: 100px;
  }
}
@media only screen and (max-width: 767px) {
  #RECRUIT .sec01 {
    margin-bottom: 13.3333333333vw;
  }
}
#RECRUIT .sec01 .sec-in {
  max-width: 850px;
}
#RECRUIT .sec01 .r-list dl {
  display: flex;
  border-bottom: 1px solid #ddd;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 28px;
  margin-bottom: 28px;
}
#RECRUIT .sec01 .r-list dl:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}
#RECRUIT .sec01 .r-list dl dt {
  width: 15%;
  font-weight: bold;
}
#RECRUIT .sec01 .r-list dl dd {
  width: 80%;
}
@media only screen and (max-width: 767px) {
  #RECRUIT .sec01 .r-list {
    width: 100%;
  }
  #RECRUIT .sec01 .r-list dl {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  #RECRUIT .sec01 .r-list dl dt {
    margin-bottom: 5px;
  }
  #RECRUIT .sec01 .r-list dl dt,
  #RECRUIT .sec01 .r-list dl dd {
    width: 100%;
  }
}
#RECRUIT.interview .sec-in {
  max-width: 1100px;
}
#RECRUIT.interview .box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
#RECRUIT.interview .box .l-area {
  width: 45%;
}
@media only screen and (max-width: 767px) {
  #RECRUIT.interview .box .l-area {
    width: 100%;
    order: 1;
  }
}
#RECRUIT.interview .box .r-area {
  width: 55%;
  padding: 4.5454545455vw;
  background-color: #1881ff;
  color: #fff;
}
@media only screen and (min-width: 1100px) {
  #RECRUIT.interview .box .r-area {
    padding: 50px;
  }
}
@media only screen and (max-width: 767px) {
  #RECRUIT.interview .box .r-area {
    width: 100%;
    order: 2;
  }
}
#RECRUIT.interview .box .r-area h4 {
  font-size: 2.6rem;
  margin: 5px 0;
}
@media only screen and (max-width: 767px) {
  #RECRUIT.interview .box .r-area h4 {
    font-size: 4rem;
  }
}
#RECRUIT.interview .box .r-area h4 .department {
  font-size: 1.8rem;
  display: inline-block;
  margin-left: 15px;
  font-weight: normal;
}
#RECRUIT.interview .box .r-area .joined {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.8181818182vw;
  display: block;
}
@media only screen and (min-width: 1100px) {
  #RECRUIT.interview .box .r-area .joined {
    margin-bottom: 20px;
  }
}
#RECRUIT.interview .box .r-area .joined + p {
  font-size: 1.8rem;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  #RECRUIT.interview .box .r-area .joined + p {
    font-size: 3.2rem;
  }
}
#RECRUIT.interview dl:not(:last-of-type) {
  margin-bottom: 40px;
}
#RECRUIT.interview dl dt {
  font-weight: bold;
  line-height: 1.4;
  padding: 2px 0 0 10px;
  border-left: 8px solid #1881ff;
  font-size: 2.2rem;
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  #RECRUIT.interview dl dt {
    font-size: 3.2rem;
  }
}

#CONTACT .sec-in {
  max-width: 850px;
}
#CONTACT .pageNavi {
  display: flex;
  justify-content: center;
  margin-bottom: 5.4545454545vw;
  padding: 0 9.0909090909vw;
}
@media only screen and (min-width: 1100px) {
  #CONTACT .pageNavi {
    margin-bottom: 60px;
    padding: 0 100px;
  }
}
@media only screen and (max-width: 767px) {
  #CONTACT .pageNavi {
    margin-bottom: 16vw;
    padding: 0 13.3333333333vw;
  }
}
#CONTACT .pageNavi ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
#CONTACT .pageNavi ul > * + * {
  margin-left: 4.6153846154%;
}
#CONTACT .pageNavi ul li {
  width: 47.6923076923%;
}
#CONTACT .pageNavi ul li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #234872;
  font-weight: 700;
  border: 2px solid #234872;
  width: 100%;
  height: 100%;
  padding: 0.9090909091vw 2.7272727273vw;
}
@media only screen and (min-width: 1100px) {
  #CONTACT .pageNavi ul li > a {
    padding: 10px 30px;
  }
}
@media only screen and (max-width: 767px) {
  #CONTACT .pageNavi ul li > a {
    border-width: 0.2666666667vw;
    padding: 1.3333333333vw 4vw;
  }
}
#CONTACT .pageNavi ul li.current > a {
  background-color: #234872;
  color: #fff;
}
#CONTACT p + .input_area,
#CONTACT p + form {
  margin-top: 60px;
}
#CONTACT .input_area dl {
  border-bottom: 1px solid #eee;
  margin-bottom: 30px;
  padding-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#CONTACT .input_area dl dt {
  display: flex;
  align-items: center;
  width: 300px;
  line-height: 1.5;
  font-weight: 500;
}
#CONTACT .input_area dl dt .dt_width {
  width: 16.3636363636vw;
}
@media only screen and (min-width: 1100px) {
  #CONTACT .input_area dl dt .dt_width {
    width: 200px;
  }
}
#CONTACT .input_area dl dt .required {
  color: #fff;
  background-color: #f00000;
  padding: 5px 5px 3px;
  text-align: center;
  font-size: 12px;
}
#CONTACT .input_area dl dd {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1.6rem;
  width: calc(100% - 300px);
}
#CONTACT .input_area dl dd label {
  display: flex;
  align-items: center;
  column-gap: 0.6rem;
}
#CONTACT .input_area .wpcf7-form-control-wrap {
  display: flex;
  width: 100%;
}
#CONTACT .input_area .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1.6rem;
}
#CONTACT .input_area .wpcf7-radio .wpcf7-list-item {
  display: flex;
  column-gap: 0.8rem;
  margin-left: 0;
}
#CONTACT .input_area .wpcf7-list-item-label::before {
  content: "";
}
@media screen and (max-width: 767px) {
  #CONTACT .input_area {
    width: 100%;
  }
  #CONTACT .input_area dl {
    margin-bottom: 20px;
    padding-bottom: 20px;
    flex-wrap: wrap;
  }
  #CONTACT .input_area dl dt {
    width: 100%;
    margin-bottom: 10px;
  }
  #CONTACT .input_area dl dt .dt_width {
    width: auto;
  }
  #CONTACT .input_area dl dt .dt_width br {
    display: none;
  }
  #CONTACT .input_area dl dt .required {
    padding: 3px 4px 2px;
    font-size: 10px;
    font-size: 2.6666666667vw;
    margin-left: 10px;
  }
  #CONTACT .input_area dl dd {
    width: 100%;
  }
  #CONTACT .input_area dl dd .wpcf7-radio {
    column-gap: 3.2rem;
  }
  #CONTACT .input_area dl dd .wpcf7-radio .wpcf7-list-item {
    column-gap: 1.6rem;
  }
  #CONTACT .input_area dl dd .wpcf7-radio .wpcf7-list-item label {
    column-gap: 1.2rem;
  }
}
#CONTACT .input_area input[type=text], #CONTACT .input_area input[type=email], #CONTACT .input_area input[type=tel], #CONTACT .input_area input[type=number], #CONTACT .input_area input[type=date] {
  width: 100%;
  height: 50px;
  line-height: 50px;
  background-color: #f4f4f4;
  border: 0;
  box-sizing: border-box;
  padding: 0 15px;
  outline: none;
  font-size: 1.6rem;
  font-family: inherit;
}
@media only screen and (max-width: 767px) {
  #CONTACT .input_area input[type=text], #CONTACT .input_area input[type=email], #CONTACT .input_area input[type=tel], #CONTACT .input_area input[type=number], #CONTACT .input_area input[type=date] {
    font-size: 14px;
    font-size: 3.7333333333vw;
  }
}
#CONTACT .input_area input::placeholder {
  font-size: 1.6rem;
  color: #bbb;
}
@media only screen and (max-width: 767px) {
  #CONTACT .input_area input::placeholder {
    font-size: 14px;
    font-size: 3.7333333333vw;
  }
}
#CONTACT .input_area select,
#CONTACT .input_area textarea {
  box-sizing: border-box;
  width: 100%;
  border: 0;
  background-color: #f4f4f4;
  font-size: 1.6rem;
  font-family: inherit;
  outline: none;
}
@media only screen and (max-width: 767px) {
  #CONTACT .input_area select,
  #CONTACT .input_area textarea {
    font-size: 14px;
    font-size: 3.7333333333vw;
  }
}
#CONTACT .input_area select {
  height: 50px;
  line-height: 50px;
  padding: 0 15px;
}
#CONTACT .input_area textarea {
  height: 160px;
  min-height: 160px;
  resize: vertical;
  padding: 15px;
}
#CONTACT .input_area .select_box {
  width: auto;
  margin-bottom: 15px;
  background: #f4f4f4;
  overflow: hidden;
  text-align: center;
  position: relative;
}
#CONTACT .input_area .select_box::before {
  position: absolute;
  top: calc(50% - 6px);
  right: 20px;
  content: "";
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid #000;
  pointer-events: none;
}
#CONTACT .input_area .select_box select {
  height: 50px;
  line-height: 54px;
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  padding: 0 38px 0 20px;
  color: #333;
}
#CONTACT .input_area .select_box select::-ms-expand {
  display: none;
}
#CONTACT .input_area .half {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  #CONTACT .input_area .half {
    width: 100%;
  }
}
#CONTACT .wpcf7 ~ p,
#CONTACT form + p {
  height: 100%;
  margin: 40px 0 0;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  #CONTACT .wpcf7 ~ p,
  #CONTACT form + p {
    margin-top: 20px;
    padding: 10px;
    border-radius: 10px;
  }
}
#CONTACT .btn-confirm {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  margin-top: 60px;
}
#CONTACT .btn-confirm > span,
#CONTACT .btn-confirm input {
  margin-top: 0;
}
#CONTACT .btn-confirm span input {
  width: 100%;
  height: 100%;
}
#CONTACT .thanks_sec {
  margin: 0 0 15vh;
}
@media only screen and (max-width: 767px) {
  #CONTACT .thanks_sec {
    margin: 0 0 15vh;
  }
}
#CONTACT .thanks_sec h2 {
  font-size: 30px;
  text-align: center;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  #CONTACT .thanks_sec h2 {
    font-size: 24px;
    font-size: 6.4vw;
    margin-bottom: 20px;
  }
}
#CONTACT .thanks_sec h2 + p {
  text-align: center;
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  #CONTACT .thanks_sec h2 + p {
    font-size: 16px;
    font-size: 4.2666666667vw;
    margin-bottom: 40px;
  }
}
#CONTACT .thanks_sec h2 + p span {
  display: block;
  font-size: 14px;
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  #CONTACT .thanks_sec h2 + p span {
    font-size: 12px;
    font-size: 3.2vw;
  }
}
#CONTACT .btn + .btn {
  margin-top: 15px;
}