@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,
dialog,
figure,
footer,
header,
nav,
section,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

html {
  font-size: 62.5%;
}

body {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

table,
input,
textarea,
select,
option,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}

table,
input,
textarea,
select,
option {
  line-height: 1.1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

img {
  vertical-align: top;
}

.grayout {
  pointer-events: none;
}

@media screen and (min-width: 1024.98px) {
  a {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  a img {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
}

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

@media screen and (min-width: 1024.98px) {
  a:hover {
    opacity: 0.8;
    filter: alpha(opacity=80);
    -ms-filter: "alpha(opacity=80)";
  }
  a:hover img {
    opacity: 0.8;
    filter: alpha(opacity=80);
    -ms-filter: "alpha(opacity=80)";
  }
}

img {
  width: 100%;
}

input,
textarea,
button,
select,
a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

:root {
  --primary-font: "游ゴシック体", YuGothic, 游ゴシック Medium, Yu Gothic Medium, 游ゴシック, Yu Gothic, Meiryo,
    sans-serif;
  --cormorant-infant-font: "Cormorant Infant", serif;
  --yu-mincho-font: "游明朝体", "游明朝", YuMincho, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝",
    "MS PMincho", serif;
  --primary: #333333;
  --primary-light: #bbbbbb;
  --primary-dark: #1e0405;
  --secondary: #999;
  --secondary-dark: #605858;
  --primary-background-color: #231815;
  --accent-color: #8b7246;
  --border-primary: #dddddd;
  --border-primary-light: #e5e5e5;
  --border-second: #cccccc;
  --white: #ffffff;
  --black: #000;
  --hover-button-light: #f5f5f5;
  --background-red: rgba(218, 49, 12, 0.05);
  --red: #da310c;
  --blue: #0070bf;
  --green: #6fba2c;
  --orange: #ed6104;
}

/*------------------------------------------------------------
	Layout
------------------------------------------------------------*/
html {
  background-color: #fff;
}

body {
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-wrap: break-word;
  color: #231815;
}

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

@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}

/*IE*/
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  body {
    font-family: "Noto Sans JP", sans-serif;
  }
}

@media screen and (max-width: 768px) {
  body {
    min-width: 320px;
  }
}

@media screen and (min-width: 769px) {
  body {
    min-width: 1200px;
    overflow: hidden;
  }
}

.l-container {
  width: 100%;
  height: auto;
  background: #f8f7f5;
  max-width: 1600px;
  margin: 0 auto;
}

.l-inner {
  position: relative;
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .l-inner {
    width: 90vw;
    margin: 0 auto 0;
  }
}

.l-inner2 {
  position: relative;
  width: 968px;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
}

/*------------------------------------------------------------
    Sidebar
------------------------------------------------------------*/
/*------------------------------------------------------------
    Header
------------------------------------------------------------*/
.c-header {
  width: 100%;
  height: 80px;
  min-width: 1200px;
  margin: 0 auto;
  position: fixed;
  z-index: 999999999;
  top: 0px;
  left: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.c-header.is-bg {
  background-color: #ffffff;
  cursor: pointer;
  -webkit-transition: background-color 0.5s ease-in-out;
  transition: background-color 0.5s ease-in-out;
}

@media screen and (max-width: 768px) {
  .c-header.is-bg {
    background: none;
  }
}

@media screen and (max-width: 768px) {
  .c-header {
    min-width: 300px;
    height: 55px;
  }
}

.h-logo {
  position: absolute;
  top: 33px;
  left: 14px;
}
.h-logo a,
.h-logo a:hover,
.h-logo a:visited {
  display: block;
  color: #000;
}
.h-logo p {
  font-size: 12px;
  margin-bottom: 4px;
}
.h-logo img {
  width: 230px;
}

@media screen and (max-width: 1230px) {
  .h-logo {
    width: 230px;
  }
}

@media screen and (max-width: 768px) {
  .h-logo {
    display: none;
  }
}

.c-header--wrap {
  width: auto;
  max-width: 1200px;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-header__btn {
  width: auto;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-header__btn a {
  width: 200px;
  height: 80px;
  line-height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #ffffff;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  background: #669BBE;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
}
.c-header__btn a:hover {
  color: #ffffff;
  text-decoration: none;
}
.c-header__btn a.btn1 {
  background: #C4DDED;
  color: #669BBE;
}
.txt-small {
  display: block;
  font-size: 0.8em;
  padding-top: 2px;
}

.nav {
  width: 100%;
  max-width: 100%;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  overflow: hidden;
}

.nav .nav--menu {
  width: auto;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.nav .nav--menu li {
  width: auto;
  display: inline-block;
  height: 24px;
  text-align: center;
  position: relative;
}

.nav .nav--menu li a {
  color: #333;
  height: 24px;
  min-width: 24px;
  padding: 0px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-right: 40px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.nav .nav--menu li a:hover {
  opacity: 0.6;
}

.nav .nav--menu li a .iconify {
  color: #04588c;
  margin-right: 5px;
  font-size: 22px;
}

.nav .nav--menu li a .iconify.s2 {
  color: #0a0908;
  margin-right: 0px;
  width: 20px;
  height: 20px;
}

.nav .nav--menu li.btn a {
  background: #f25f5c;
  color: #ffffff;
  font-size: 16px;
  padding: 0px 20px;
  border-radius: 5px;
  margin-left: 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 2px solid #f25f5c;
  font-family: "Noto Sans JP", sans-serif;
}

.nav .nav--menu li.btn a .iconify {
  color: #ffffff;
  margin-right: 0px;
  font-size: 22px;
}

.nav .nav--menu li.btn a:hover {
  color: #f25f5c;
  background: #ffffff;
  opacity: 1;
}

.nav .nav--menu li.btn a:hover .iconify {
  color: #f25f5c;
}

.nav .nav--menu li.line3 a {
  margin-left: 20px;
}

.nav .nav--menu li.line4 a {
  margin-left: 10px;
}

@media screen and (max-width: 768px) {
  .nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 200;
    background: #b9bab9;
    visibility: hidden;
  }
}

@media screen and (min-width: 769px) {
  .nav .nav--menu {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    opacity: 1 !important;
  }
}
@media screen and (max-width: 768px) {
  .nav .nav--menu {
    width: 100%;
    height: 100%;
    text-align: left;
    display: block;
    padding: 10px;
    position: relative;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    background: #aaaaaa;
  }
  .nav .nav--menu ul {
    position: relative;
    top: 50%;
    display: inline-block;
    width: 100%;
    height: auto;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

@media screen and (max-width: 768px) {
  .nav .nav--menu li {
    width: 100%;
    height: auto;
    float: left;
    /*margin-bottom: 35px;*/
    margin-bottom: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 0;
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    -webkit-transition: opacity 0.8s;
    transition: opacity 0.8s;
    -webkit-transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
}

@media screen and (max-width: 768px) {
  .nav .nav--menu li a {
    letter-spacing: 0.05em;
    color: #ffffff;
    width: 100%;
    margin-right: 0px;
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .nav .nav--menu li a .iconify {
    color: #f25f5c;
    width: 15px;
    height: 15px;
  }
}

@media screen and (max-width: 768px) {
  .nav .nav--menu li a .iconify.s2 {
    width: 30px;
    height: 30px;
    color: #ffffff;
  }
}

@media screen and (max-width: 768px) {
  .nav .nav--menu li.btn a {
    width: auto;
    height: auto;
    margin-left: 0px;
    margin: 0 auto;
    max-width: 350px;
    padding: 5px 10px;
    line-height: 1.4;
  }
}

@media screen and (max-width: 768px) {
  .nav .nav--menu li.title {
    width: 100%;
    height: auto;
    margin-top: 25px;
  }
  .nav .nav--menu li.title img {
    width: calc(950px / 3);
    height: auto;
    max-width: 100%;
  }
  .nav .nav--menu li.c-btn01 {
    width: 100%;
    height: auto;
    margin-top: 10px;
  }
  .nav .nav--menu li.c-btn01 a {
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: normal;
    width: 100%;
    max-width: 360px;
    height: auto;
    line-height: 1.4;
    min-height: 60px;
    padding: 7px 0px;
    font-size: 15px;
    font-weight: 500;
    margin: 0 auto;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    overflow: visible;
  }
  .nav .nav--menu li.c-btn01 a .iconify {
    width: 22px;
    height: 22px;
  }
  .nav .nav--menu li.line {
    border-right: 1px solid #fff;
    text-align: right;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .nav .nav--menu li.line a {
    width: auto;
    height: 40px;
    margin-right: 34px;
  }
  .nav .nav--menu li.line3 {
    text-align: right;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .nav .nav--menu li.line3 a {
    width: auto;
    height: 40px;
    margin-right: 10px;
    margin-left: 0px;
  }
  .nav .nav--menu li.line2 {
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .nav .nav--menu li.line2 a {
    width: auto;
    height: 40px;
    margin-left: 26px;
  }
  .nav .nav--menu li.line4 {
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .nav .nav--menu li.line4 a {
    width: auto;
    height: 40px;
    margin-left: 10px;
  }
}
@media screen and (max-width: 1420px) {
  .nav .nav--menu li a {
    font-size: 14px;
    margin-right: 25px;
  }
  .c-header__btn a {
    width: 160px;
  }
}
@media screen and (max-width: 768px) {
  .c-header__btn {
    position: fixed;
    width: 100%;
    height: 64px;
    left: 0;
    bottom: 0px;
  }
  .c-header__btn a {
    width: 100%;
    line-height: 64px;
  }
  .nav .nav--menu li a {
    margin-right: 0;
  }
}
.nav--btn {
  width: 0;
  cursor: pointer;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  height: 55px;
  background: #a9a9a9;
}

.nav--btn span {
  width: 25px;
  height: 2px;
  background-color: #707070;
  border-radius: 1.5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: block;
  margin-left: auto;
  margin-right: 15px;
}

.nav--btn span:nth-child(1) {
  margin-top: 18px;
}

.nav--btn span:nth-child(2), .nav--btn span:nth-child(3) {
  margin-top: 6px;
}

@media screen and (max-width: 768px) {
  .nav--btn {
    border-radius: 2px;
    width: 55px;
    height: 55px;
    position: absolute;
    z-index: 99999999999999999999;
    right: 0px;
    top: 0px;
  }
}

/* menu-btn
----------------------------------------*/
.menu-btn {
  position: fixed;
  right: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 116px;
  height: 104px;
  cursor: pointer;
  z-index: 300;
}

.menu-btn:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(170, 170, 170, 0.9);
  opacity: 0;
  -webkit-transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.c-header.is-bg .menu-btn:before {
  opacity: 1;
}

@media screen and (min-width: 751px) {
  .menu-btn {
    -webkit-transition: opacity 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: opacity 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  .menu-btn:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 750px) {
  .menu-btn {
    width: 15.625vw;
    height: 15.625vw;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-touch-callout: none;
  }
}

.menu-btn span {
  position: relative;
  width: 36px;
  height: 4px;
  background-color: #221816;
}

.menu-btn span:before, .menu-btn span:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #221816;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.menu-btn span:before {
  top: -10px;
}

.menu-btn span:after {
  bottom: -10px;
}

@media screen and (max-width: 750px) {
  .menu-btn span {
    width: 6.51042vw;
    height: 0.52083vw;
  }
}

@media screen and (max-width: 750px) {
  .menu-btn span:before {
    top: -1.82292vw;
  }
}

@media screen and (max-width: 750px) {
  .menu-btn span:after {
    bottom: -1.82292vw;
  }
}

header.is-open .menu-btn:before {
  display: none;
}

header.is-open .menu-btn span {
  background-color: transparent;
}

header.is-open .menu-btn span:before {
  -webkit-transform: translateY(10px) rotate(-135deg);
  transform: translateY(10px) rotate(-135deg);
}

header.is-open .menu-btn span:after {
  -webkit-transform: translateY(-10px) rotate(135deg);
  transform: translateY(-10px) rotate(135deg);
}

@media screen and (max-width: 750px) {
  header.is-open .menu-btn span:before {
    -webkit-transform: translateY(1.82292vw) rotate(-135deg);
    transform: translateY(1.82292vw) rotate(-135deg);
  }
}

@media screen and (max-width: 750px) {
  header.is-open .menu-btn span:after {
    -webkit-transform: translateY(-1.82292vw) rotate(135deg);
    transform: translateY(-1.82292vw) rotate(135deg);
  }
}

@media screen and (max-width: 768px) {
  .c-header.is-close .nav {
    -webkit-animation: 0.5s header_menu_out forwards;
    animation: 0.5s header_menu_out forwards;
  }
  .c-header.is-close .nav .nav--menu {
    -webkit-animation: 0.5s menu_main_out forwards;
    animation: 0.5s menu_main_out forwards;
  }
}

.c-header.is-open .nav {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .c-header.is-open .nav {
    -webkit-animation: 0.5s header_menu_in forwards;
    animation: 0.5s header_menu_in forwards;
  }
  .c-header.is-open .nav .nav--menu {
    -webkit-animation: 0.5s menu_main_in 0.3s forwards;
    animation: 0.5s menu_main_in 0.3s forwards;
  }
  .c-header.is-open .nav .nav--menu li:nth-child(1) {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transition-delay: 0.7s;
    transition-delay: 0.7s;
  }
  .c-header.is-open .nav .nav--menu li:nth-child(2) {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transition-delay: 0.8s;
    transition-delay: 0.8s;
  }
  .c-header.is-open .nav .nav--menu li:nth-child(3) {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transition-delay: 0.9s;
    transition-delay: 0.9s;
  }
  .c-header.is-open .nav .nav--menu li:nth-child(4) {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transition-delay: 1s;
    transition-delay: 1s;
  }
  .c-header.is-open .nav .nav--menu li:nth-child(5) {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transition-delay: 1.1s;
    transition-delay: 1.1s;
  }
  .c-header.is-open .nav .nav--menu li:nth-child(6) {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transition-delay: 1.2s;
    transition-delay: 1.2s;
  }
  .c-header.is-open .nav .nav--menu li:nth-child(7) {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transition-delay: 1.3s;
    transition-delay: 1.3s;
  }
  .c-header.is-open .nav .nav--menu li:nth-child(8) {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transition-delay: 1.4s;
    transition-delay: 1.4s;
  }
  .c-header.is-open .nav .nav--menu li:nth-child(9) {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transition-delay: 1.5s;
    transition-delay: 1.5s;
  }
  .c-header.is-open .nav .nav--menu li:nth-child(9) a {
      margin-right: 0;
  }
}



@-webkit-keyframes header_menu_in {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
}

@keyframes header_menu_in {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
}

@-webkit-keyframes header_menu_out {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: hidden;
  }
}

@keyframes header_menu_out {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: hidden;
  }
}

@-webkit-keyframes menu_main_in {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes menu_main_in {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes menu_main_out {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes menu_main_out {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

/*------------------------------------------------------------
    Footer
------------------------------------------------------------*/
.footer {
  position: relative;
  background-color: #aaa;
  padding: 115px 0;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 14.97396vw 0 30vw;
  }
}

.footer-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-sns > li a {
  display: block;
}

.footer-sns > li a img {
  width: 100%;
  height: auto;
}

.footer-sns > li + li {
  margin-left: 35px;
}

@media screen and (max-width: 767px) {
  .footer-sns > li + li {
    margin-left: 4.29688vw;
  }
}

.footer-sns-fb,
.footer-sns-tw {
  width: 31px;
}

@media screen and (max-width: 767px) {
  .footer-sns-fb {
    width: 5.46875vw;
  }
}

@media screen and (max-width: 767px) {
  .footer-sns-tw {
    width: 5.46875vw;
  }
}

.footer-sns-li {
  width: 32px;
}

@media screen and (max-width: 767px) {
  .footer-sns-li {
    width: 5.59896vw;
  }
}

.footer-logo {
  display: block;
  width: 324px;
  margin: auto;
  margin-top: 92px;
  -webkit-transform: translateX(-20px);
  transform: translateX(-20px);
}

.footer-logo img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .footer-logo {
    width: 42.1875vw;
    margin-top: 14.32292vw;
    -webkit-transform: translateX(-2.60417vw);
    transform: translateX(-2.60417vw);
  }
}

.footer-address {
  margin-top: 30px;
  text-align: center;
  line-height: 2;
  font-weight: bold;
}

.footer-address span {
  display: block;
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .footer-address {
    margin-top: 6.51042vw;
    font-size: 24px;
    font-size: 3.125vw;
  }
}

@media screen and (max-width: 767px) {
  .footer-address span {
    font-size: 34px;
    font-size: 4.42708vw;
  }
}

.footer-freedial {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-top: 30px;
}

.footer-freedial a.tel {
  color: #000;
  text-decoration: none;
  font-size: 28px;
}

@media screen and (max-width: 767px) {
  .footer-freedial {
    font-size: 32px;
    font-size: 4.16667vw;
    margin-top: 6.51042vw;
  }
}

body.sp .footer-freedial a.tel {
  pointer-events: all;
}

.footer-freedial .hours {
  font-size: 18px;
  font-weight: bold;
}

.footer-freedial .notice {
  margin-top: 0.5em;
}

.footer-freedial .notice a {
  color: #000;
  font-size: 18px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .footer-freedial .hours {
    font-size: 24px;
    font-size: 3.125vw;
  }
}

@media screen and (max-width: 767px) {
  .footer-freedial .notice a {
    font-size: 24px;
    font-size: 3.125vw;
  }
}

.footer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 45px;
}

.footer-menu li {
  position: relative;
}

.footer-menu li + li::before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1px;
  height: 13px;
  background: #565656;
}

.footer-menu a {
  display: block;
  font-size: 14px;
  font-weight: bold;
  color: currentColor;
  padding: 0 20px;
}

@media screen and (max-width: 767px) {
  .footer-menu {
    display: block;
    margin-top: 10.41667vw;
  }
}

@media screen and (max-width: 767px) {
  .footer-menu li + li {
    margin-top: 3.90625vw;
  }
}

@media screen and (max-width: 767px) {
  .footer-menu li + li::before {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .footer-menu a {
    font-size: 28px;
    font-size: 3.64583vw;
    text-align: center;
    padding: 0;
  }
}

.footer-copyright {
  display: block;
  margin-top: 40px;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 767px) {
  .footer-copyright {
    margin-top: 9.11458vw;
    font-size: 20px;
    font-size: 2.60417vw;
  }
}

.kerning-left {
  margin-left: -0.4em;
}

.kerning-right {
  margin-right: -0.4em;
}

.kerning-center {
  margin-left: -0.2em;
  margin-right: -0.2em;
}

/*------------------------------------------------------------
    btn
------------------------------------------------------------*/
.c-btn01 {
  width: 240px;
  height: 50px;
  border: 2px solid #669BBE;
  background: #fff;
  font-size: 18px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #669BBE;
  margin: 0 auto;
}

@media screen and (min-width: 1024.98px) {
  .c-btn01:hover {
    color: #669BBE;
    opacity: 0.6;
    text-decoration: none;
  }
}

.c-btn02 {
  width: 100%;
  text-align: left;
  display: block;
  color: #669BBE;
  font-size: 14px;
  font-weight: bold;
  padding: 10px 20px 10px 0px;
  position: relative;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 1px;
  background: -webkit-gradient(linear, left top, left bottom, from(#669BBE), to(#669BBE)) left bottom/100% 2px no-repeat;
  background: linear-gradient(#669BBE, #669BBE) left bottom/100% 2px no-repeat;
  -webkit-transition: background-size 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: background-size 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.c-btn02 .arrows {
  border: solid #669BBE;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 5px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 10px;
  position: absolute;
  right: 0px;
  top: 15px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.c-btn02:hover {
  text-decoration: none;
  background-position: right bottom;
  background-size: 0 2px;
}

.c-btn02:hover .arrows {
  right: 10px;
}

.c-btn02.v2 {
  width: auto;
  display: inline-block;
  font-size: 24px;
  padding: 10px 20px 10px 0px;
  min-width: 320px;
  font-weight: bold;
  letter-spacing: 2px;
  padding-right: 20px;
  color: #231815;
  line-height: 1;
  background: -webkit-gradient(linear, left top, left bottom, from(#231815), to(#231815)) left bottom/100% 2px no-repeat;
  background: linear-gradient(#231815, #231815) left bottom/100% 2px no-repeat;
}

.c-btn02.v2 .arrows {
  border: solid #231815;
  border-width: 0 2.5px 2.5px 0;
  display: inline-block;
  padding: 7px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 10px;
  position: absolute;
  right: 5px;
  top: 13px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.c-btn02.v2:hover {
  text-decoration: none;
  background-position: right bottom;
  background-size: 0 2px;
}

.c-btn02.v2:hover .arrows {
  right: 15px;
}

@media screen and (max-width: 768px) {
  .c-btn02 {
    padding: 10px 5px 10px 0px;
  }
}

@media screen and (max-width: 768px) {
  .c-btn02.v2 {
    font-size: 14px;
    width: 280px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-right: 0px;
  }
}

@media screen and (max-width: 768px) {
  .c-btn02.v2 .arrows {
    padding: 5px;
    top: 11px;
  }
}

/*------------------------------------------------------------
title
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.c-title01 {
  color: #669BBE;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 3px;
}

.c-title01 ruby {
  letter-spacing: 3px;
}

.c-title01 ruby rt {
  letter-spacing: normal;
  font-size: 11px;
  padding-right: 3px;
}

@media screen and (max-width: 768px) {
  .c-title01 {
    font-size: 24px;
  }
  .c-title01 ruby {
    letter-spacing: 3px;
  }
  .c-title01 ruby rt {
    font-size: 10px;
    padding-right: 3px;
  }
}

.c-title02 {
  color: #669BBE;
  font-size: 24px;
  font-weight: 500;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .c-title02 {
    font-size: 18px;
    text-align: left;
  }
}

.c-text01 {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.75;
}

@media screen and (max-width: 768px) {
  .c-text01 {
    font-size: 14px;
  }
}

/*------------------------------------------------------------
   Table
------------------------------------------------------------*/
/*------------------------------------------------------------
   Select, input,...
------------------------------------------------------------*/
/*------------------------------------------------------------
   Breadcrumb
------------------------------------------------------------*/
/*------------------------------------------------------------
  List
------------------------------------------------------------*/
/*------------------------------------------------------------
  Nav
------------------------------------------------------------*/
/*------------------------------------------------------------
  paginate
------------------------------------------------------------*/
/*------------------------------------------------------------
   Others
------------------------------------------------------------*/
@-webkit-keyframes scale-in {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes scale-in {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

html {
  overflow-y: scroll;
}

input,
textarea {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS P Gothic", Verdana, Arial, Helvetica, sans-serif;
}

strong {
  font-weight: bold;
}

a {
  color: #09f;
  text-decoration: none;
}
a.txt_link {
  color: #231815;
  text-decoration: underline;
}
a:focus {
  outline: none;
}

@media screen and (min-width: 769px) {
  .only-sp {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .only-pc {
    display: none !important;
  }
}

img.box-fit {
  width: 100%;
  height: auto;
  vertical-align: top;
}

/* inner wrap
----------------------------------------*/
.tpl-inner-wrap {
  position: relative;
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .tpl-inner-wrap {
    width: 89.84375vw;
  }
}

/* page title
----------------------------------------*/
.tpl-sec-page-title {
  padding: 140px 0 100px;
}

.tpl-sec-page-title .tpl-page-title {
  text-align: center;
  color: #669BBE;
}

.tpl-sec-page-title .tpl-page-title span {
  display: block;
}

.tpl-sec-page-title .tpl-page-title span.title-en {
  margin: 0 auto 35px;
}

.tpl-sec-page-title .tpl-page-title span.title-jp {
  font-size: 23px;
  font-weight: bold;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .tpl-sec-page-title {
    padding: 14vw 0 0;
  }
}

@media screen and (max-width: 768px) {
  .tpl-sec-page-title .tpl-page-title span.title-en {
    margin: 0 auto 5.20833vw;
  }
  .tpl-sec-page-title .tpl-page-title span.title-en img {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .tpl-sec-page-title .tpl-page-title span.title-jp {
    font-size: 28px;
    font-size: 3.64583vw;
  }
}

/* ARROW BUTTON
----------------------------------------*/
.tpl-arrow-btn {
  position: relative;
  display: block;
  text-align: center;
  cursor: pointer;
  text-decoration: none !important;
}

.tpl-arrow-btn > span {
  position: relative;
  display: block;
}

.tpl-arrow-btn > span.jp {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  line-height: 1em;
  margin-bottom: 19px;
}

.tpl-arrow-btn > span.en {
  font-size: 0;
}

.tpl-arrow-btn > span.en .en-img {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 auto 0;
  padding-bottom: 23px;
}

.tpl-arrow-btn > span.en .en-img img {
  vertical-align: top;
}

.tpl-arrow-btn > span.en .en-img .btn-line {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
}

.tpl-arrow-btn > span.en .en-img .btn-line:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.tpl-arrow-btn > span.en .arrows {
  position: absolute;
  right: -26px;
  top: -5px;
  pointer-events: none;
}

.tpl-arrow-btn > span.en .arrows:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  height: 34px;
  background-image: url("../common/img/btn-arrow.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  -webkit-transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.tpl-arrow-btn > span.en .arrows:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  height: 34px;
  background-image: url("../common/img/btn-arrow.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  -webkit-transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  margin-left: -27px;
  opacity: 0;
}

.tpl-arrow-btn:hover span.en .arrows:before {
  -webkit-transform: translateX(27px);
  transform: translateX(27px);
  opacity: 1;
}

.tpl-arrow-btn:hover span.en .arrows:after {
  -webkit-transform: translateX(27px);
  transform: translateX(27px);
  opacity: 0;
}

.tpl-arrow-btn:hover span.en .en-img .btn-line:after {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}

.tpl-arrow-btn.detail-btn {
  width: 104px;
}

@media screen and (max-width: 768px) {
  .tpl-arrow-btn > span.jp {
    font-size: 18px;
    font-size: 2.34375vw;
    margin-bottom: 2.60417vw;
  }
}

@media screen and (max-width: 768px) {
  .tpl-arrow-btn > span.en .en-img {
    padding-bottom: 3.77604vw;
  }
}

@media screen and (max-width: 768px) {
  .tpl-arrow-btn > span.en .en-img .btn-line {
    height: 0.52083vw;
  }
}

@media screen and (max-width: 768px) {
  .tpl-arrow-btn > span.en .arrows {
    right: -3.38542vw;
    top: -0.65104vw;
  }
}

@media screen and (max-width: 768px) {
  .tpl-arrow-btn > span.en .arrows:after, .tpl-arrow-btn > span.en .arrows:before {
    width: 2.21354vw;
    height: 4.29688vw;
  }
}

@media screen and (max-width: 768px) {
  .tpl-arrow-btn > span.en .arrows:before {
    margin-left: -3.51563vw;
  }
}

@media screen and (max-width: 768px) {
  .tpl-arrow-btn:hover span.en .arrows:before {
    -webkit-transform: translateX(3.51563vw);
    transform: translateX(3.51563vw);
  }
}

@media screen and (max-width: 768px) {
  .tpl-arrow-btn:hover span.en .arrows:after {
    -webkit-transform: translateX(3.51563vw);
    transform: translateX(3.51563vw);
  }
}

@media screen and (max-width: 768px) {
  .tpl-arrow-btn.detail-btn {
    width: 16.79688vw;
  }
}

.tpl-arrow-txt-link {
  position: relative;
  display: block;
  text-align: center;
  cursor: pointer;
  line-height: 1em;
}

.tpl-arrow-txt-link span {
  position: relative;
  display: inline-block;
}

.tpl-arrow-txt-link span.arrows {
  position: relative;
  margin-left: 0.5em;
}

.tpl-arrow-txt-link span.arrows:after {
  content: ">";
  display: inline-block;
  vertical-align: top;
  -webkit-transform: scale(0.8, 1);
  transform: scale(0.8, 1);
  -webkit-transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.tpl-arrow-txt-link span.arrows:before {
  content: ">";
  display: inline-block;
  vertical-align: top;
  -webkit-transform: scale(0.8, 1);
  transform: scale(0.8, 1);
  -webkit-transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  margin-left: -1em;
  opacity: 0;
}

.tpl-arrow-txt-link:hover .arrows:before {
  -webkit-transform: scale(0.8, 1) translateX(1em);
  transform: scale(0.8, 1) translateX(1em);
  opacity: 1;
}

.tpl-arrow-txt-link:hover .arrows:after {
  -webkit-transform: scale(0.8, 1) translateX(1em);
  transform: scale(0.8, 1) translateX(1em);
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .tpl-arrow-txt-link span.arrows {
    margin-left: 1em;
  }
}

/* ARROW LINK
----------------------------------------*/
.tpl-arrow-link {
  position: relative;
  display: block;
  cursor: pointer;
  text-decoration: none !important;
  font-size: 20px;
  font-weight: bold;
  line-height: 1em;
  color: #fff !important;
}

.tpl-arrow-link > span {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.tpl-arrow-link > span.txt {
  margin-right: 5px;
}

.tpl-arrow-link > span.arrows {
  width: 24px;
  height: 23px;
}

.tpl-arrow-link > span.arrows:after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 23px;
  background-image: url("../common/img/btn-arrow.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  -webkit-transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.tpl-arrow-link > span.arrows:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 23px;
  background-image: url("../common/img/btn-arrow.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  -webkit-transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  margin-left: -12px;
  opacity: 0;
}

.tpl-arrow-link.link-underline .txt {
  position: relative;
}

.tpl-arrow-link.link-underline .txt .btn-line {
  position: absolute;
  left: 0;
  bottom: -16px;
  width: 100%;
  height: 4px;
}

.tpl-arrow-link.link-underline .txt .btn-line:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.tpl-arrow-link:hover .arrows:before {
  -webkit-transform: translateX(12px);
  transform: translateX(12px);
  opacity: 1;
}

.tpl-arrow-link:hover .arrows:after {
  -webkit-transform: translateX(12px);
  transform: translateX(12px);
  opacity: 0;
}

.tpl-arrow-link:hover.link-underline .txt .btn-line:after {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}

@media screen and (max-width: 768px) {
  .tpl-arrow-link {
    font-size: 30px;
    font-size: 3.90625vw;
  }
}

@media screen and (max-width: 768px) {
  .tpl-arrow-link > span.txt {
    margin-right: 0.65104vw;
  }
}

@media screen and (max-width: 768px) {
  .tpl-arrow-link > span.arrows {
    width: 2.34375vw;
    height: 4.42708vw;
  }
}

@media screen and (max-width: 768px) {
  .tpl-arrow-link > span.arrows:after, .tpl-arrow-link > span.arrows:before {
    width: 2.34375vw;
    height: 4.42708vw;
  }
}

@media screen and (max-width: 768px) {
  .tpl-arrow-link > span.arrows:before {
    margin-left: -2.34375vw;
  }
}

@media screen and (max-width: 768px) {
  .tpl-arrow-link.link-underline .txt .btn-line {
    bottom: -2.08333vw;
    height: 0.52083vw;
  }
}

@media screen and (max-width: 768px) {
  .tpl-arrow-link:hover .arrows:before {
    -webkit-transform: translateX(2.34375vw);
    transform: translateX(2.34375vw);
  }
}

@media screen and (max-width: 768px) {
  .tpl-arrow-link:hover .arrows:after {
    -webkit-transform: translateX(2.34375vw);
    transform: translateX(2.34375vw);
  }
}

/* SCROLL SIGN
----------------------------------------*/
.scroll-sign {
  position: absolute;
  right: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #fff;
  width: 2px;
  height: 80px;
  overflow: hidden;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .scroll-sign {
    display: none;
  }
}

.scroll-sign-inner {
  position: absolute;
  background-color: #b6b6b6;
  width: 2px;
  height: 5px;
  left: 0;
  top: 0;
  -webkit-animation: indicator 2s cubic-bezier(0.39, 0.575, 0.565, 1) infinite;
  animation: indicator 2s cubic-bezier(0.39, 0.575, 0.565, 1) infinite;
}

@-webkit-keyframes indicator {
  0% {
    top: 0;
    height: 10px;
  }
  50% {
    height: 20px;
  }
  to {
    top: 100%;
    height: 10px;
  }
}

@keyframes indicator {
  0% {
    top: 0;
    height: 10px;
  }
  50% {
    height: 20px;
  }
  to {
    top: 100%;
    height: 10px;
  }
}

/* icon
----------------------------------------*/
a.icon-blank.icon-blue:after {
  background-image: url("../common/img/icon-blank-blue.svg");
}

a.icon-blank.icon-gray:after {
  background-image: url("../common/img/icon-blank-gray.svg");
}

a.icon-blank:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 13px;
  height: 13px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-left: 8px;
}

@media screen and (max-width: 768px) {
  a.icon-blank:after {
    width: 2.86458vw;
    height: 2.86458vw;
    padding-left: 0.52083vw;
  }
}

/* magnific-popup
----------------------------------------*/
@media screen and (min-width: 769px) {
  .mfp-wrap .mfp-iframe-holder .mfp-content {
    max-width: 1080px;
  }
}

/**
 * Simple fade transition,
 */
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.mfp-container {
  padding: 0;
}

.mfp-container .mfp-content .mfp-iframe-holder .mfp-close,
.mfp-container .mfp-content .mfp-close {
  opacity: 1;
  font-size: 0;
  width: 44px;
  height: 44px;
  top: -64px;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
  cursor: pointer;
  pointer-events: all;
}

.mfp-container .mfp-content .mfp-iframe-holder .mfp-close:before, .mfp-container .mfp-content .mfp-iframe-holder .mfp-close:after {
  content: "";
  position: absolute;
  left: -21%;
  top: 50%;
  width: 63px;
  height: 2px;
  background-color: #fff;
}

.mfp-container .mfp-content .mfp-close:before, .mfp-container .mfp-content .mfp-close:after {
  content: "";
  position: absolute;
  left: -21%;
  top: 50%;
  width: 63px;
  height: 2px;
  background-color: #fff;
}

.mfp-container .mfp-content .mfp-iframe-holder .mfp-close:before,
.mfp-container .mfp-content .mfp-close:before {
  -webkit-transform: rotateZ(-45deg);
  transform: rotateZ(-45deg);
}

.mfp-container .mfp-content .mfp-iframe-holder .mfp-close:after,
.mfp-container .mfp-content .mfp-close:after {
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

.mfp-container .mfp-content .mfp-iframe-holder .mfp-close:hover,
.mfp-container .mfp-content .mfp-close:hover {
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  .mfp-container .mfp-content {
    width: 89.84375vw;
  }
}

@media screen and (max-width: 768px) {
  .mfp-container .mfp-content .mfp-iframe-holder .mfp-close,
  .mfp-container .mfp-content .mfp-close {
    width: 7.8125vw;
    height: 7.8125vw;
    top: -11.71875vw;
    right: 0;
  }
  .mfp-container .mfp-content .mfp-iframe-holder .mfp-close:before, .mfp-container .mfp-content .mfp-iframe-holder .mfp-close:after {
    content: "";
    position: absolute;
    left: -21%;
    top: 50%;
    width: 12vw;
    height: 2px;
    background-color: #fff;
  }
  .mfp-container .mfp-content .mfp-close:before, .mfp-container .mfp-content .mfp-close:after {
    content: "";
    position: absolute;
    left: -21%;
    top: 50%;
    width: 12vw;
    height: 2px;
    background-color: #fff;
  }
  .mfp-container .mfp-content .mfp-iframe-holder .mfp-close:before,
  .mfp-container .mfp-content .mfp-close:before {
    -webkit-transform: rotateZ(-45deg);
    transform: rotateZ(-45deg);
  }
  .mfp-container .mfp-content .mfp-iframe-holder .mfp-close:after,
  .mfp-container .mfp-content .mfp-close:after {
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
  }
}

.mfp-iframe-holder .mfp-close,
.mfp-image-holder .mfp-close {
  right: 0;
}

.content {
  width: 100%;
  overflow-x: hidden;
}

.section {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  padding-left: 50px;
  padding-right: 50px;
}

.section .section-inner {
  position: relative;
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
}

.section .section-head {
  position: relative;
  padding-top: 100px;
  margin: 0 auto 0;
  z-index: 1;
}

.section .section-head.v2 {
  padding-top: 0px;
  margin: 0px;
  text-align: left;
  letter-spacing: 4px;
}

.section .section-head.v2 span.head-en {
  margin-bottom: 20px;
}

.section .section-head.v2 span.head-jp {
  color: #669BBE;
  text-align: left;
  font-weight: 500;
}

.section .supportstart .section-head.v2 span.head-jp {
  text-align: left;
}

@media screen and (max-width: 768px) {
  .section .supportstart .section-head.v2 span.head-jp {
    text-align: left;
    margin-top: 0px;
  }
}

.section .section-head.v2.right span.head-en, .section .section-head.v2.right span.head-jp {
  text-align: right;
}

.section .section-head span {
  display: block;
}

.section .section-head span.head-en {
  font-size: 0;
  margin: 0 auto 20px;
}

.section .section-head span.head-jp {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  line-height: 1em;
  text-align: center;
}

.section .side-text-block {
  position: relative;
  color: #034587;
  font-size: 20px;
  font-weight: bold;
  margin-top: 110px;
}

.section .side-text-block.right {
  margin-left: 775px;
}

.section .side-text-block p.side-text-head {
  margin-bottom: 1em;
}

.section .side-text-block p.side-text {
  line-height: 2em;
  margin-bottom: 46px;
}

.section .side-text-block .line {
  width: 413px;
  height: 2px;
  background-color: #034587;
  margin-bottom: 42px;
}

@media screen and (max-width: 768px) {
  .section .section-head.v2 span.head-en {
    margin-bottom: 15px;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .section .section-head.v2.right span.head-en {
    text-align: left;
  }
}

@media screen and (max-width: 768px) {
  .section .section-head.v2.right span.head-jp {
    text-align: left;
  }
}

@media screen and (max-width: 768px) {
  .section {
    padding-bottom: 19.53125vw;
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (max-width: 768px) {
  .section .section-inner {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .section .section-head {
    padding-top: 9.63542vw;
    margin-bottom: 6.11979vw;
  }
}

@media screen and (max-width: 768px) {
  .section .section-head span.head-en {
    margin-bottom: 2.86458vw;
  }
}

@media screen and (max-width: 768px) {
  .section .section-head span.head-jp {
    font-size: 28px;
    font-size: 3.64583vw;
  }
}

@media screen and (max-width: 768px) {
  .section .side-text-block {
    font-size: 26px;
    font-size: 3.38542vw;
    margin-left: 5vw;
    margin-top: 0;
  }
}

@media screen and (max-width: 768px) {
  .section .side-text-block.right {
    margin-left: 9.375vw;
  }
}

@media screen and (max-width: 768px) {
  .section .side-text-block p.side-text {
    margin-bottom: 2.98958vw;
  }
}

@media screen and (max-width: 768px) {
  .section .side-text-block .line {
    height: 1px;
    margin-bottom: 2.46875vw;
    width: 84.63542vw;
  }
}

.preload-image {
  display: none;
}

.scroll-in,
.animation {
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.scroll-in.appeared {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.scroll-in .text-wrapper {
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.scroll-in.appeared .text-wrapper {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.scroll-in.appeared .animation {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.scroll-in.appeared .animation.ld7 {
  -webkit-transition-delay: 0.9s;
  transition-delay: 0.9s;
}

.scroll-in.appeared .animation.ld8 {
  -webkit-transition-delay: 1.1s;
  transition-delay: 1.1s;
}

/*------------------------------------------------------------
=> Mainvisual
--------------------------------------------------------------*/
.c-mainvisual {
  width: 100%;
  height: auto;
  position: relative;
  background: #ecf3f9;
}
.c-mainvisual .l-inner {
  width: 100%;
  margin: 0 auto;
  background: url(../img/kv_bg_pc.jpg) no-repeat top right;
  background-size: cover;
  box-sizing: border-box;
}
.mv_itemimg {
  width: 52%;
}
.mv_itemimg img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .c-mainvisual {
    min-height: auto;
    height: auto;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background: #eef5fa;
  }
  .mv_itemimg {
    width: 75%;
  }
}

@media screen and (max-width: 768px) {
  .c-mainvisual .l-inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 768px) {
  .c-mainvisual::after {
    bottom: -144px;
    border-bottom: 200px solid #f8f7f5;
    -webkit-transform: skewY(-8deg);
    transform: skewY(-8deg);
  }
}

@media screen and (max-width: 768px) and (max-width: 700px) {
  .c-mainvisual::after {
    bottom: -160px;
  }
}

@media screen and (max-width: 768px) {
  .c-mainvisual .bg {
    width: 100%;
    height: auto;
    margin-top: -20px;
  }
}

.c-mainvisual__content {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    column-gap: 6%;
}

.c-mainvisual__content .c-title01 {
  padding-left: 15px;
  margin-bottom: 20px;
  white-space: nowrap;
  position: relative;
}

.c-mainvisual__content .c-btn01 {
  margin-top: 10px;
}

.c-mainvisual__content .logo {
  width: 42%;
  max-width: 370px;
  margin-top: -7%;
  text-align: center;
}

.c-mainvisual__content .logo span {
  display: block;
  margin-bottom: 1em;
  letter-spacing: 2px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .c-mainvisual__content {
    width: 100%;
    margin-left: 0%;
    flex-direction: column;
    padding-top: 30px;
    padding-bottom: 0;
    /*left: 0;
    top: 40px;*/
  }
}
@media screen and (max-width: 480px) {
  .c-mainvisual__content .logo span {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .c-mainvisual__content .c-title01 {
    font-size: 14px;
    letter-spacing: 2px;
  }
}

@media screen and (max-width: 768px) {
  .c-mainvisual__content .logo {
    margin-top: 0px;
    margin-bottom: 20px;
    width: 100%;
  }
  .c-mainvisual__content .logo img {
    width: 40%;
    height: auto;
    margin: 0 auto;
    display: block;
  }
}

.c-mainvisual__bgimage {
  width: 220px;
  height: auto;
  position: absolute;
  top: 200px;
  left: 40px;
  opacity: 0.3;
}

.c-mainvisual .txt-pc {
  width: auto;
  height: auto;
  text-align: left;
  font-size: 18px;
  line-height: 1.7;
  position: relative;
  margin: 28px auto 0;
  left: 0;
  font-weight: 600;
}

.c-mainvisual .txt-sp {
  display: none;
}
.c-mainvisual-br {
  display: none;
}

.price-sp {
  display: none;
}
.price-pc {
  font-size: 28px;
  text-align: left;
  font-weight: bold;
  line-height: 1.4;
}
.tax {
  font-size: 0.7em;
}

@media screen and (max-width: 1280px) {
  .c-mainvisual-br {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .c-mainvisual__bgimage {
    display: none;
  }
  .c-mainvisual .txt-pc,
  .price-pc {
    display: none;
  }
  .price-sp {
    display: block;
    font-size: 24px;
    text-align: left;
    font-weight: bold;
    line-height: 1.3;
    bottom: 30px;
    text-align: left;
    left: 20px;
    position: absolute;
    border: 20px;
  }
  .c-mainvisual .txt-sp {
    display: block;
    font-size: 14px;
    text-align: left;
    font-weight: bold;
    line-height: 1.4;
    position: absolute;
    bottom: 96px;
    text-align: left;
    left: 20px;
  }
}

.cumulative-total {
  position: absolute;
  left: calc(36%);
  bottom: 26px;
  width: 220px;
}
.cumulative-total img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .cumulative-total {
    left: 20px;
    bottom: 140px;
    width: 190px;
  }
}

/*------------------------------------------------------------
=> sec-products
--------------------------------------------------------------*/
.sec-product {
  padding-bottom: 0px;
}
.sec-product .section-head.v2 {
  padding-top: 100px;
}
.head-en img {
  width: auto;
  height: 50px;
}
@media screen and (max-width: 768px) {
  .head-en img {
    width: 100%;
    height: auto;
  }
}

.sec-product .product {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 40px;
  align-items: flex-end;
}

.sec-product .product__img {
  margin-top: -130px;
  width: 360px;
}

.sec-product .product__content .c-text01 {
  margin-top: 10px;
  line-height: 3;
}

.sec-product .product__video {
  margin-top: 100px;
  width: 100%;
  text-align: center;
}

.sec-product .product__video iframe {
  width: 100%;
  max-width: 600px;
  height: 400px;
}

@media screen and (max-width: 768px) {
  .sec-product .section-head.v2 {
    padding-top: 45px;
  }
}

@media screen and (max-width: 768px) {
  .sec-product .product {
    margin-top: 40px;
  }
}

@media screen and (max-width: 768px) {
  .sec-product .product__img {
    margin-top: 0px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media screen and (max-width: 768px) {
  .sec-product .product__img {
    width: 100%;
    height: auto;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .sec-product .product__content {
    margin-top: 50px;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

@media screen and (max-width: 768px) {
  .sec-product .product__content .c-text01 {
    line-height: 2;
  }
}

@media screen and (max-width: 768px) and (max-width: 375px) {
  .sec-product .product__content .c-text01 {
    letter-spacing: -0.5px;
    font-size: 13px;
  }
}

@media screen and (max-width: 768px) and (max-width: 375px) and (max-width: 320px) {
  .sec-product .product__content .c-text01 {
    font-size: 11px;
    letter-spacing: -0.4px;
  }
}

@media screen and (max-width: 768px) {
  .sec-product .product__video {
    margin-top: 45px;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
}

@media screen and (max-width: 767px) {
  .sec-product .product__video iframe {
    height: 250px;
  }
}

@media screen and (max-width: 768px) {
  .sec-product .product .link {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
    height: auto;
    margin: 0 auto;
    margin-top: 20px;
  }
}

/*------------------------------------------------------------
=> sec-products
--------------------------------------------------------------*/
.sec-scene {
  padding-bottom: 100px;
  padding-top: 150px;
}

/*.sec-scene .section-head.v2 .head-en img {
  width: auto;
}*/

.sec-scene .c-title02 {
  width: 100%;
  height: auto;
  text-align: center;
  margin-top: 10px;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 2px;
}

.sec-scene .scene {
  width: 84%;
  margin: 0 auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
}

.sec-scene .scene .c-item {
  width: auto;
  height: auto;
/*  margin: 0px 30px;*/
  margin: 0px;
  margin-top: 50px;
  text-align: center;
}

.sec-scene .scene .c-item__img img {
  width: auto;
  max-height: 160px;
  height: auto;
  border-radius: 10px;
}

.sec-scene .scene .c-item__text {
  width: auto;
  display: inline-block;
  text-align: center;
  font-size: 17px;
  color: #669BBE;
  margin-top: 10px;
}

.sec-scene .scene .link {
  width: 100%;
  height: auto;
  padding: 0px 80px;
  margin-top: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.sec-scene .scene .link li {
  width: 100%;
  max-width: 190px;
}
.sec-scene .scene .link li .release-date {
    color: #669BBE;
    font-size: 13px;
    margin-top: 7px;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
  .sec-scene {
    padding-top: 45px;
  }
}

@media screen and (max-width: 768px) {
  .sec-scene .c-title02 {
    text-align: left;
    margin-top: 30px;
    font-size: 24px;
    letter-spacing: 3px;
  }
}

@media screen and (max-width: 768px) {
  .sec-scene .scene {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
    width: 100%;
    max-width: 450px;
    margin: 0px auto;
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .sec-scene .scene .c-item {
    max-width: 450px;
    margin: 0px;
    display: block;
    margin: 40px auto;
  }
}

@media screen and (max-width: 768px) {
  .sec-scene .scene .c-item__text {
    font-size: 12px;
  }
}

@media screen and (max-width: 768px) {
  .sec-scene .scene .link {
    padding: 0px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

@media screen and (max-width: 768px) {
  .sec-scene .scene .link li {
    max-width: 135px;
    margin: 0 auto;
    margin-top: 10px;
  }
}

/*------------------------------------------------------------
=> sec-feature
--------------------------------------------------------------*/
.sec-feature {
  padding-bottom: 100px;
  padding-top: 100px;
  background: url(../img/feature-bg.webp) no-repeat top right;
  background-size: cover;
}

.sec-feature .section-head.v2 {
  padding-top: 0px;
  padding-right: 90px;
}

/*.sec-feature .section-head.v2 .head-en img {
  width: auto;
}
*/
.sec-feature .feature {
  width: 100%;
  /*max-width: 800px;*/
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 30px;
}

.sec-feature .feature .c-item {
  /*width: 100%;*/
  width: 50%;
  margin-top: 40px;
  height: auto;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  align-items: center;
}

.sec-feature .feature .c-item__img {
  margin-right: 15px;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .sec-feature .feature .c-item__img {
    width: 100%;
    max-width: 230px;
    text-align: center;
  }
}

.sec-feature .feature .c-item__title {
  color: #669BBE;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 4px;
}

.sec-feature .feature .c-item__title span {
  font-size: 12px;
}


.sec-feature .feature .c-item__txt {
  font-size: 16px;
  color: #231815;
  margin-top: 1em;
}

@media screen and (max-width: 768px) {
  .sec-feature {
    padding-top: 45px;
    background: #eff4fa;
  }
  .sec-feature .feature {
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .sec-feature .feature .c-item {
    width: 100%;
    margin: 0px auto;
    margin-top: 45px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .sec-feature .feature .c-item__img {
    width: 100%;
    height: auto;
    margin-right: 0px;
    max-width: 280px;
    margin-bottom: 14px;
  }
}

@media screen and (max-width: 768px) {
  .sec-feature .feature .c-item__content {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .sec-feature .feature .c-item__title {
    font-size: 24px;
  }
}

@media screen and (max-width: 768px) {
  .sec-feature .feature .c-item__txt {
    font-size: 14px;
  }
}

.evolution {
  margin-top: 80px;
  width: 100%;
  box-sizing: border-box;
  padding: 80px 110px;
  background-color: #fff;
}
.evolution h3 {
  text-align: center;
  color: #669BBE;
  font-size: 36px;
  border-bottom: 1px solid #669BBE;
  padding-bottom: 20px;
  letter-spacing: 4px;
}
.evolution ul li {
  position: relative;
  margin-top: 60px;
}
.evolution_point {
  position: absolute;
  display: block;
  width: 116px;
  top: -30px;
  left: -50px;
  z-index: 1;
}
.evolution_cts {
  box-sizing: border-box;
  padding: 30px 50px 30px 90px;
  background-color: #F2F2F2;
  display: table;
  width: 100%;
}
.evolution_cts p {
  font-weight: bold;
  letter-spacing: 2px;
  display: table-cell;
  vertical-align: middle;
  font-size: 20px;
  line-height: 1.8;
  width: 100%;
}
.point_img {
  width: 300px;
  height: auto;
  display: table-cell;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .evolution {
    padding: 30px 5%;
  }
  .evolution h3 {
    font-size: 18px;
  }
  .evolution_point {
    width: 80px;
    top: -30px;
    left: -2%;
  }
  .evolution_cts {
    padding: 60px 6% 6%;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .evolution_cts p {
    font-size: 14px;
    margin-bottom: 1em;
  }
  .point_img {
    width: 100%;
    display: block;
  }
}


/*------------------------------------------------------------
=> sec-howtouse
--------------------------------------------------------------*/
.sec-howtouse {
  background: #D4DBE6;
  padding-bottom: 100px;
  padding-top: 100px;
  overflow: hidden;
}

.sec-howtouse::before {
  content: "";
  width: 200%;
  height: auto;
  left: -50%;
  top: -150px;
  display: none;
  border-bottom: 250px solid #f8f7f5;
  position: absolute;
  z-index: 1;
  -webkit-transform: skewY(6deg);
  transform: skewY(6deg);
}

.sec-howtouse .section-head.v2 {
  padding-top: 0px;
}

/*.sec-howtouse .section-head.v2 .head-en img {
  width: auto;
}*/

.sec-howtouse .howtouse {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 70px;
  position: relative;
}

.sec-howtouse .howtouse .c-item {
  width: 49%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.sec-howtouse .howtouse .c-item:nth-of-type(odd) {
  margin-right: 2%;
}
.sec-howtouse .howtouse .c-item__img {
  width: 362px;
}
.sec-howtouse .howtouse .c-item__content {
  width: calc(100% - 362px);
  height: auto;
  padding-left: 30px;
}

.sec-howtouse .howtouse .c-item__title > span {
  line-height: 1;
  font-size: 20px;
  padding-bottom: 5px;
  color: #669BBE;
  border-bottom: 1px solid #231815;
  border-right: 1px solid #231815;
  display: inline-block;
  letter-spacing: 4px;
}

.sec-howtouse .howtouse .c-item__title > span .number {
  line-height: 1;
  font-size: 52px;
  padding: 0px 5px;
}

.sec-howtouse .howtouse .c-item__txt {
  font-size: 16px;
  color: #231815;
  margin-top: 15px;
  line-height: 1.5;
  letter-spacing: 2px;
}

.sec-howtouse .supportstart {
    width: 100%;
    max-width: 970px;
    margin: 0 auto;
    height: auto;
    display: block;
    margin-top: -80px;
    padding-top: 130px;
}

.sec-howtouse .supportstart .section-head {
  width: 100%;
  padding-top: 0px;
  text-align: left;
  margin-bottom: 20px;
}

.sec-howtouse .supportstart .section-head span {
  text-align: left;
  width: auto;
}

.sec-howtouse .supportstart .btn {
  width: 100%;
  height: auto;
  text-align: right;
  margin-bottom: 20px;
}

.sec-howtouse .supportstart .table {
  margin: 90px 0px;
  opacity: 1;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  border-collapse: separate;
  border-spacing: 0;
  border-bottom: 0;
  border-top: 0;
}

.sec-howtouse .supportstart .table .wrap {
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.sec-howtouse .supportstart .table.scroll-in.appeared .wrap {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.sec-howtouse .supportstart .table td {
  border-collapse: collapse;
  border-top: 2px solid #669BBE;
  height: auto;
  min-height: 45px;
  color: #231815;
  font-size: 20px;
  line-height: 1.2;
  padding: 10px 0px;
  padding-left: 20px;
}

.sec-howtouse .supportstart .table td span {
  width: 100%;
  display: block;
  font-size: 12px;
  line-height: 1.2;
}

.sec-howtouse .supportstart .table td .u-span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.sec-howtouse .supportstart .table td .u-span span {
  width: 50%;
  height: auto;
  display: block;
}

.sec-howtouse .supportstart .table td:first-child {
  padding-left: 40px;
  border-right: 2px solid #669BBE;
}

.sec-howtouse .supportstart .table td:first-child .wrap {
  width: 255px;
}

.sec-howtouse .supportstart .table tr {
  display: table-row;
}

.sec-howtouse .supportstart .table tr:last-child td {
  border-bottom: 2px solid #669BBE;
}

@media screen and (max-width: 768px) {
  .sec-howtouse {
    padding-bottom: 90px;
    padding-top: 45px;
  }
}

@media screen and (max-width: 768px) {
  .sec-howtouse::before {
    top: -130px;
    border-bottom: 200px solid #f8f7f5;
    -webkit-transform: skewY(8deg);
    transform: skewY(8deg);
  }
}

@media screen and (max-width: 768px) {
  .sec-howtouse .howtouse {
    margin-top: 0px;
  }
}

@media screen and (max-width: 768px) {
  .sec-howtouse .howtouse .inner-left {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .sec-howtouse .howtouse .inner-right {
    width: 100%;
    padding-left: 0px;
  }
}

@media screen and (max-width: 768px) {
  .sec-howtouse .howtouse .c-item {
    max-width: 362px;
    margin: 0 auto;
    margin-top: 45px;
    margin-bottom: 0px;
    width: 100%;
  }
  .sec-howtouse .howtouse .c-item:nth-of-type(odd) {
    margin-right: auto;
  }
}

@media screen and (max-width: 768px) {
  .sec-howtouse .howtouse .c-item__content {
    width: 100%;
    height: auto;
    padding-left: 0px;
    margin-top: 15px;
  }
}

@media screen and (max-width: 768px) {
  .sec-howtouse .howtouse .c-item__txt {
    font-size: 18px;
    letter-spacing: 1px;
  }
}

@media screen and (max-width: 768px) {
  .sec-howtouse .supportstart {
    margin-top: 30px;
    padding-top: 30px;
  }
}

@media screen and (max-width: 768px) {
  .sec-howtouse .supportstart .section-head {
    margin-bottom: 35px;
  }
}

@media screen and (max-width: 768px) {
  .sec-howtouse .supportstart .section-head span {
    text-align: left;
  }
}

@media screen and (max-width: 768px) {
  .sec-howtouse .supportstart .btn {
    text-align: center;
    margin-bottom: 20px;
  }
  .sec-howtouse .supportstart .btn .c-btn02.v2 {
    width: 220px;
    min-width: 220px;
  }
}

@media screen and (max-width: 768px) {
  .sec-howtouse .supportstart .c-table-scroll {
    margin-bottom: 45px;
  }
}

@media screen and (max-width: 768px) {
  .sec-howtouse .supportstart .table {
    height: auto;
    width: 100%;
    margin-top: 45px;
    margin-bottom: 7px;
  }
}

@media screen and (max-width: 768px) {
  .sec-howtouse .supportstart .table td {
    border-top: 1px solid #669BBE;
    font-size: 14px;
    padding: 13px 0px;
    padding-left: 25px;
  }
}

@media screen and (max-width: 768px) {
  .sec-howtouse .supportstart .table td:first-child {
    padding-left: 15px;
    border-right: 1px solid #669BBE;
    font-size: 14px;
    line-height: 1.7;
    position: -webkit-sticky;
    position: sticky;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 1;
    left: 0;
    width: auto;
  }
  .sec-howtouse .supportstart .table td:first-child .wrap {
    width: 105px;
  }
}

@media screen and (max-width: 768px) {
  .sec-howtouse .supportstart .table tr:last-child td {
    border-bottom: 1px solid #669BBE;
  }
}

@media screen and (max-width: 768px) {
  .sec-howtouse .attention {
    margin-top: 40px;
    /*text-align: center;*/
  }
}


/*------------------------------------------------------------
=> sec-support
--------------------------------------------------------------*/
.sec-support {
  background-color: #f8f7f5;
}

.sec-support .section-head.v2 {
  padding-top: 100px;
}

.sec-support .section-head.v2 .head-en img {
  width: auto;
}

.sec-support .section-head.v2 span.head-jp {
  color: #ffffff;
}

.sec-support .section-visual {
  position: absolute;
  right: 0;
  top: -260px;
  width: 500px;
  height: 100%;
  overflow: hidden;
}

.sec-support .section-visual .section-visual-inner {
  position: absolute;
  top: 0;
  width: 100%;
  height: 680px;
  background-image: url("../img/support-visual.webp");
  background-size: auto 100%;
  background-repeat: no-repeat;
}

.sec-support .l-inner {
  width: 970px;
}

.sec-support .side-text-block {
  margin-top: 80px;
}

.sec-support .side-text-block .line {
  width: 444px;
}

.sec-support .link-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sec-support .link-list a + a {
  margin-left: 10px;
}

.sec-support .section-visual.scroll-in {
  opacity: 0;
  -webkit-transition: opacity 0.8s ease-out;
  transition: opacity 0.8s ease-out;
}

.sec-support .section-visual.scroll-in.appeared {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  opacity: 1;
}

.sec-support .side-text-block.scroll-in p {
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.sec-support .side-text-block.scroll-in .line {
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: 0.8s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: 0.8s cubic-bezier(0.39, 0.575, 0.565, 1);
  opacity: 1;
}

.sec-support .side-text-block.scroll-in .link-list a {
  opacity: 0;
  -webkit-transform: translateX(-50px);
  transform: translateX(-50px);
  -webkit-transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.sec-support .side-text-block.scroll-in.appeared p {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.sec-support .side-text-block.scroll-in.appeared .line {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
  opacity: 1;
}

.sec-support .side-text-block.scroll-in.appeared .link-list a:nth-child(1) {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.sec-support .side-text-block.scroll-in.appeared .link-list a:nth-child(2) {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.sec-support .side-text-block.scroll-in.appeared .link-list a:nth-child(3) {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}

@media screen and (max-width: 768px) {
  .sec-support .section-head.v2 {
    margin-left: 5vw;
  }
  .sec-support .section-head.v2 img {
    height: 35px;
  }
}

@media screen and (max-width: 768px) {
  .sec-support .l-inner {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .sec-support .link-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .sec-support {
    height: auto;
    background-image: none;
  }
}

@media screen and (max-width: 768px) {
  .sec-support .section-head .head-en {
    width: 33.20313vw;
  }
}

@media screen and (max-width: 768px) {
  .sec-support .section-visual {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    height: 300px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 768px) {
  .sec-support .section-visual .section-visual-inner {
    height: 300px;
    background: url("../img/support-visual-sp.webp") no-repeat center;
    background-size: auto 100%;
  }
}

@media screen and (max-width: 768px) {
  .sec-support .side-text-block {
    margin-top: 0;
  }
}

@media screen and (max-width: 768px) {
  .sec-support .side-text-block .line {
    width: 84.63542vw;
  }
}

@media screen and (max-width: 768px) {
  .sec-support .link-list a + a {
    margin-left: 2.60417vw;
    margin-left: 0px;
    letter-spacing: 1px;
    margin-top: 10px;
  }
}

@media screen and (max-width: 768px) {
  .sec-support .link-list a.tpl-arrow-link {
    font-size: 26px;
    font-size: 3.38542vw;
    padding: 5px;
  }
}

.contact-freedial,
.contact-form {
  position: relative;
  text-align: center;
  margin-top: 90px;
  padding-left: 30px;
}
.contact-freedial h3,
.contact-form h3 {
  font-size: 28px;
}
.contact-freedial p,
.contact-form p {
  font-size: 24px;
  margin-top: 10px;
}
.contact-freedial a,
.contact-freedial a:hover,
.contact-freedial a:visited {
  position: relative;
  color: #231815;
  font-size: 64px;
  font-weight: 800;
  line-height: 1.2;
}
.contact-freedial a:before {
    position: absolute;
    content: "";
    display: block;
    width: 53.17px;
    height: 58px;
    background: url(../img/icon_dial.png) no-repeat;
    background-size: contain;
    top: 23px;
    left: -80px;
}
.contact-form h3 {
    display: inline;
    position: relative;
}
.contact-form h3:before {
    position: absolute;
    content: "";
    display: block;
    width: 59px;
    height: 39.33px;
    background: url(../img/icon_form.png) no-repeat;
    background-size: contain;
    top: 23px;
    left: -132px;
}
.sec-support .wrap {
    width: 1200px;
    margin: 70px auto 0;
}
.sec-support .wrap iframe {
    height: 1640px;
}

@media screen and (max-width: 768px) {
  .sec-support .wrap {
    width: 100%;
    padding: 0 2.60417vw;
  }
  .contact-freedial, .contact-form {
    padding-left: 0px;
  }
  .contact-freedial h3,
  .contact-form h3 {
    font-size: 22px;
    margin-left: 0px;
  }
  .contact-freedial a,
  .contact-freedial a:hover,
  .contact-freedial a:visited {
    font-size: 42px;
  }
  .contact-freedial p,
  .contact-form p {
    font-size: 17px;
    margin-top: 4px;
  }
  .contact-freedial a:before {
    width: 30px;
    height: 34px;
    top: -71px;
    left: calc(50% - 15px);
  }
  .contact-form h3:before {
    width: 32px;
    height: 23px;
    top: -32px;
    left: calc(50% - 16px);
  }
  .sec-support .wrap iframe {
    height: 1766px;
  }
}

@keyframes scale-in {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.dl1.scroll-in.appeared {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.dl2.scroll-in.appeared {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.dl3.scroll-in.appeared {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}


.p-index__choose_intro {
  margin-top: 9.6vw;
  padding: 0 6.6666666667vw;
  overflow: hidden;
}
@media (min-width: 769px) {
  .p-index__choose_intro {
    margin-top: 1.7152658662vw;
    padding: 0;
  }
}
@media (min-width: 1167px) {
  .p-index__choose_intro {
    margin-top: 20px;
  }
}
.p-index__choose_intro p.is-mt {
  margin-top: 4.8vw;
}
@media (min-width: 769px) {
  .p-index__choose_intro p.is-mt {
    margin-top: 2.5728987993vw;
  }
}
@media (min-width: 1167px) {
  .p-index__choose_intro p.is-mt {
    margin-top: 30px;
  }
}
.p-index__choose_column {
  margin-top: 8vw;
  overflow: hidden;
}
@media (min-width: 769px) {
  .p-index__choose_column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 2.5728987993vw;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 1167px) {
  .p-index__choose_column {
    margin-top: 30px;
  }
}
.p-index__navel_position {
  width: 85.0666666667vw;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .p-index__navel_position {
    position: relative;
    left: -2.5728987993vw;
    width: 27.358490566vw;
    margin: 0;
  }
}
@media (min-width: 1167px) {
  .p-index__navel_position {
    left: -30px;
    width: 319px;
  }
}
.p-index__choose_table {
  padding: 0 6.6666666667vw;
}
@media (min-width: 769px) {
  .p-index__choose_table {
    width: 56.2607204117vw;
    padding: 0.6861063465vw 0 0;
  }
}
@media (min-width: 1167px) {
  .p-index__choose_table {
    width: 656px;
    padding: 8px 0 0;
  }
}
.p-index__choose_table table {
  width: 100%;
  border-collapse: collapse;
}
.p-index__choose_table table thead tr {
  background-color: #669BBE;
}
.p-index__choose_table table thead tr th {
  width: 23%;
  height: 10.6666666667vw;
  border-top: 1px solid #669BBE;
  border-left: 1px solid #669BBE;
  border-right: 1px solid #fff;
  color: #fff;
  letter-spacing: -1px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}
@media (min-width: 769px) {
  .p-index__choose_table table thead tr th {
    height: 3.4305317324vw;
  }
}
@media (min-width: 1167px) {
  .p-index__choose_table table thead tr th {
    height: 40px;
  }
}
.p-index__choose_table table thead tr th:nth-child(2) {
  width: 13%;
}
@media (min-width: 769px) {
  .p-index__choose_table table thead tr th:nth-child(2) {
    width: 23%;
  }
}
.p-index__choose_table table thead tr th:nth-child(3) {
  width: 64%;
}
@media (min-width: 769px) {
  .p-index__choose_table table thead tr th:nth-child(3) {
    width: 54%;
  }
}
.p-index__choose_table table tbody {
  border-bottom: 1px solid #669BBE;
}
.p-index__choose_table table tbody tr td {
  height: 10.6666666667vw;
  border-top: 1px solid #669BBE;
  border-left: 1px solid #669BBE;
  letter-spacing: -1px;
  text-align: center;
  vertical-align: middle;
}
@media (min-width: 769px) {
  .p-index__choose_table table tbody tr td {
    height: 3.4305317324vw;
    font-size: 1.5437392796vw;
  }
}
@media (min-width: 1167px) {
  .p-index__choose_table table tbody tr td {
    height: 40px;
    font-size: 18px;
  }
}
.p-index__choose_table table tbody tr td:nth-last-child(1) {
  border-right: 1px solid #669BBE;
}
.p-index__sec_faq {
  padding-bottom: 13.3333333333vw;
  background-color: #E0EBF6;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (min-width: 769px) {
  .p-index__sec_faq {
    padding-bottom: 10.2915951973vw;
  }
}
@media (min-width: 1167px) {
  .p-index__sec_faq {
    padding-bottom: 120px;
  }
}
.p-index__faq_list {
  overflow: hidden;
  margin: 40px auto;
}
@media (min-width: 769px) {
  .p-index__faq_list {
    max-width: 91.423670669vw;
    margin: 70px auto 40px;
  }
}
@media (min-width: 1167px) {
  .p-index__faq_list {
    max-width: 1066px;
  }
}
.p-index__faq_list > li > dl > dt {
  position: relative;
  cursor: pointer;
}
@media (min-width: 769px) {
  .p-index__faq_list > li > dl > dt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.p-index__faq_list > li > dl > dt span {
  -webkit-box-align: center;
      -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
          align-items: center;
}
.p-index__faq_list > li > dl > dt span.is-num {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 13.0666666667vw;
  padding-bottom: 0.1em;
  background-color: #669BBE;
  color: #fff;
  font-weight: 600;
  font-size: 8vw;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media (min-width: 769px) {
  .p-index__faq_list > li > dl > dt span.is-num {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 9.4339622642vw;
            flex: 0 0 9.4339622642vw;
    width: 9.4339622642vw;
    height: auto;
    min-height: 9.4339622642vw;
    border-radius: 0.8576329331vw 0 0 0.8576329331vw;
    font-size: 3.0017152659vw;
  }
}
@media (min-width: 1167px) {
  .p-index__faq_list > li > dl > dt span.is-num {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 110px;
            flex: 0 0 110px;
    width: 110px;
    min-height: 110px;
    border-radius: 10px 0 0 10px;
    font-size: 35px;
  }
}
.p-index__faq_list > li > dl > dt span.is-txt {
  padding: 3.2vw 6.6666666667vw;
  background-color: #F4F4F4;
  color: #669BBE;
  font-weight: 600;
  font-size: 5.3333333333vw;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media (min-width: 769px) {
  .p-index__faq_list > li > dl > dt span.is-txt {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 81.9897084048vw;
            flex: 0 0 81.9897084048vw;
    padding: 1em 6.1749571184vw 1em 4.2666666667vw;
    border-radius: 0 0.8576329331vw 0.8576329331vw 0;
    background-color: rgba(244, 244, 244, 0.6);
    font-size: 2.9333333333vw;
    line-height: 2.2727272727;
  }
}
@media (min-width: 1167px) {
  .p-index__faq_list > li > dl > dt span.is-txt {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 956px;
            flex: 0 0 956px;
    padding: 1em 72px 1em 32px;
    border-radius: 0 10px 10px 0;
    font-size: 22px;
  }
}
.p-index__faq_list > li > dl > dt::before, .p-index__faq_list > li > dl > dt::after {
  -webkit-transition: -webkit-transform 0.4s;
  display: block;
  position: absolute;
  top: 6.4vw;
  right: 7.2vw;
  width: 6.1333333333vw;
  height: 0.5333333333vw;
  background-color: #fff;
  content: "";
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
@media (min-width: 769px) {
  .p-index__faq_list > li > dl > dt::before, .p-index__faq_list > li > dl > dt::after {
    -webkit-transform: translateY(-50%);
    top: 50%;
    right: 1.8867924528vw;
    width: 2.6586620926vw;
    height: 2px;
            transform: translateY(-50%);
    background-color: #669BBE;
  }
}
@media (min-width: 1167px) {
  .p-index__faq_list > li > dl > dt::before, .p-index__faq_list > li > dl > dt::after {
    width: 31px;
  }
}
.p-index__faq_list > li > dl > dt::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media (min-width: 769px) {
  .p-index__faq_list > li > dl > dt::after {
    -webkit-transform: translateY(-50%) rotate(90deg);
            transform: translateY(-50%) rotate(90deg);
  }
}
.p-index__faq_list > li > dl > dt.is-open::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.p-index__faq_list > li > dl > dd {
  display: none;
  padding: 4.2666666667vw 6.6666666667vw 12.8vw;
  font-size: 4.8vw;
  line-height: 1.6666666667;
}
@media (min-width: 769px) {
  .p-index__faq_list > li > dl > dd {
    padding: 1.372212693vw 4.2881646655vw 3.4305317324vw 12.1783876501vw;
    font-size: 1.5437392796vw;
  }
}
@media (min-width: 1167px) {
  .p-index__faq_list > li > dl > dd {
    padding: 16px 50px 40px 142px;
    font-size: 18px;
  }
}
.p-index__faq_list > li + li {
  margin-top: 3.2vw;
}
@media (min-width: 769px) {
  .p-index__faq_list > li + li {
    margin-top: 0.8576329331vw;
  }
}
@media (min-width: 1167px) {
  .p-index__faq_list > li + li {
    margin-top: 10px;
  }
}
.sec-howtochoose {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #fff;
}
.p-index__choose_intro p {
  margin-top: 30px;
}
span.accent {
  color: #669BBE;
}

.o-btn__square {
  -webkit-box-align: center;
      -ms-flex-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
          align-items: center;
          justify-content: center;
  width: 86.6666666667vw;
  min-height: 16.2666666667vw;
  margin: 9.6vw auto 0;
  border: 0.8vw solid #669BBE;
  background-color: #fff;
  color: #669BBE;
  font-weight: 600;
  font-size: 4.8vw;
  line-height: 1;
  letter-spacing: 0.02em;
  text-align: center;
}
@media (min-width: 769px) {
  .o-btn__square {
    -webkit-transition: all 0.4s;
    width: 30.0171526587vw;
    min-height: 5.5746140652vw;
    margin-top: 2.4013722127vw;
    border: 3px solid #669BBE;
    font-size: 1.8867924528vw;
    transition: all 0.4s;
  }
}
@media (min-width: 1167px) {
  .o-btn__square {
    width: 350px;
    min-height: 65px;
    margin-top: 28px;
    font-size: 22px;
  }
}
@media (min-width: 769px) {
  .o-btn__square:hover {
    background-color: #669BBE;
    color: #fff;
    opacity: 1;
  }
}

/*# buybtn */
.buybtn{
  width: 50%;
  margin: 20px auto 80px;
}
.buybtn a{
  background: #ffffff;
  color: #669BBE;
  border: 2px solid #669BBE;
  padding: 25px;
  display: block;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
@media (min-width: 769px) {
  .buybtn a {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .buybtn a:hover {
    background-color: #669BBE;
    color: #fff;
    opacity: 1;
  }
}
.product__video {
    margin: 100px auto 0;
    width: 100%;
    max-width: 600px;
    text-align: center;
}
@media screen and (max-width: 768px) {
  .buybtn{
    width: 90%;
    margin: 20px auto 80px;
  }
  .buybtn a{
    padding: 10px;
  }
  .product__video {
    margin: 45px auto 0;
  }
  .product__video iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
  }
}

/*言語選択*/
.c-header__language {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-header__language {
    display: block;
    position: absolute;
    top: 88px;
    right: 10px;
    font-size: 13px;
  }
  .c-header__language a {
    padding: 0 6px;
    color: #333;
    font-weight: 500;
    font-size: 13px;
  }
  .c-header__language a:hover {
    text-decoration: underline;
  }
}


