@charset "UTF-8";
/*! normalize.css v3.0.2 | MIT License | git.io/normalize*/
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0; }

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

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

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

[hidden],
template {
  display: none; }

a {
  background-color: transparent; }

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

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

b,
strong {
  font-weight: bold; }

dfn {
  font-style: italic; }

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

small {
  font-size: 80%; }

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

img {
  border: 0; }

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

figure {
  margin: 1em 40px; }

hr {
  height: 0;
  -moz-box-sizing: content-box;
  box-sizing: content-box; }

pre {
  overflow: auto; }

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

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

button {
  overflow: visible; }

button,
select {
  text-transform: none; }

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

button[disabled],
html input[disabled] {
  cursor: default; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0; }

input {
  line-height: normal; }

input[type="checkbox"],
input[type="radio"] {
  padding: 0;
  box-sizing: border-box; }

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

input[type="search"] {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-appearance: textfield; }

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

fieldset {
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
  border: 1px solid #c0c0c0; }

legend {
  padding: 0;
  border: 0; }

textarea {
  overflow: auto; }

optgroup {
  font-weight: bold; }

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

td,
th {
  padding: 0; }

/*------------------------------------------------------------
基本設定
-------------------------------------------------------------*/
html {
  overflow-y: scroll; }

a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  color: #03c; }

address,
caption,
cite,
code,
dfn,
var,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-style: normal;
  font-weight: normal; }

q {
  quotes: none; }

q:before, q:after {
  content: '';
  content: none; }

img {
  vertical-align: bottom;
  -ms-interpolation-mode: bicubic; }

div {
  word-wrap: break-word; }

pre {
  overflow: auto;
  white-space: pre-wrap;
  word-wrap: break-word; }

form {
  margin: 0; }

button,
input,
select,
textarea,
optgroup,
option {
  vertical-align: baseline; }

textarea {
  min-height: 100px;
  vertical-align: top; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  margin: 0; }

table {
  width: 100%;
  word-break: break-all;
  word-wrap: break-word;
  border-spacing: 0; }

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

img {
  max-width: none\9;
  /*IE8�ւ̑Ή�*/ }

p {
  margin: 0 0 1em; }

ul,
ol {
  margin-left: 40px;
  padding-left: 0; }

li {
  margin-bottom: 0; }

/*==================================================
ふわっ
===================================*/
/* その場で */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  opacity: 0; }

@keyframes fadeInAnime {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
/* 下から */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0; }

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
/* 上から */
.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0; }

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
/* 左から */
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0; }

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px); }
  to {
    opacity: 1;
    transform: translateX(0); } }
/* 右から */
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0; }

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px); }
  to {
    opacity: 1;
    transform: translateX(0); } }
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
  opacity: 0; }

/*==================================================
パタッ
===================================*/
/* 下へ */
.flipDown {
  animation-name: flipDownAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0; }

@keyframes flipDownAnime {
  from {
    transform: perspective(2500px) rotateX(100deg);
    opacity: 0; }
  to {
    transform: perspective(2500px) rotateX(0);
    opacity: 1; } }
/* 左へ */
.flipLeft {
  animation-name: flipLeftAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  perspective-origin: left center;
  opacity: 0; }

@keyframes flipLeftAnime {
  from {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
    opacity: 0; }
  to {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1; } }
/* 左上へ */
.flipLeftTop {
  animation-name: flipLeftTopAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0; }

@keyframes flipLeftTopAnime {
  from {
    transform: translate(-20px, 80px) rotate(-15deg);
    opacity: 0; }
  to {
    transform: translate(0, 0) rotate(0deg);
    opacity: 1; } }
/* 右へ */
.flipRight {
  animation-name: flipRightAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  perspective-origin: right center;
  opacity: 0; }

@keyframes flipRightAnime {
  from {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(-30deg);
    opacity: 0; }
  to {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1; } }
/* 右上へ */
.flipRightTop {
  animation-name: flipRightTopAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0; }

@keyframes flipRightTopAnime {
  from {
    transform: translate(-20px, 80px) rotate(25deg);
    opacity: 0; }
  to {
    transform: translate(0, 1) rotate(0deg);
    opacity: 1; } }
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.flipDownTrigger,
.flipLeftTrigger,
.flipLeftTopTrigger,
.flipRightTrigger,
.flipRightTopTrigger {
  opacity: 0; }

/*==================================================
くるっ
===================================*/
/* X 軸（縦へ） */
.rotateX {
  animation-name: rotateXAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards; }

@keyframes rotateXAnime {
  from {
    transform: rotateX(0);
    opacity: 0; }
  to {
    transform: rotateX(-360deg);
    opacity: 1; } }
/*　Y軸（横へ） */
.rotateY {
  animation-name: rotateYAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards; }

@keyframes rotateYAnime {
  from {
    transform: rotateY(0);
    opacity: 0; }
  to {
    transform: rotateY(-360deg);
    opacity: 1; } }
/* Z 軸（左へ） */
.rotateLeftZ {
  animation-name: rotateLeftZAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards; }

@keyframes rotateLeftZAnime {
  from {
    transform: rotateZ(0);
    opacity: 0; }
  to {
    transform: rotateZ(-360deg);
    opacity: 1; } }
/*　Z 軸（右へ） */
.rotateRightZ {
  animation-name: rotateRightZAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards; }

@keyframes rotateRightZAnime {
  from {
    transform: rotateZ(0);
    opacity: 0; }
  to {
    transform: rotateZ(360deg);
    opacity: 1; } }
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.rotateXTrigger,
.rotateYTrigger,
.rotateLeftZTrigger,
.rotateRightZTrigger {
  opacity: 0; }

/*==================================================
ボンッ、ヒュッ
===================================*/
/* 拡大 */
.zoomIn {
  animation-name: zoomInAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards; }

@keyframes zoomInAnime {
  from {
    transform: scale(0.6);
    opacity: 0; }
  to {
    transform: scale(1);
    opacity: 1; } }
/* 縮小 */
.zoomOut {
  animation-name: zoomOutAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards; }

@keyframes zoomOutAnime {
  from {
    transform: scale(1.2);
    opacity: 0; }
  to {
    transform: scale(1);
    opacity: 1; } }
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.zoomInTrigger,
.zoomOutTrigger {
  opacity: 0; }

/*==================================================
じわっ
===================================*/
/* ぼかしから出現 */
.blur {
  animation-name: blurAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards; }

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0; }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1; } }
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.blurTrigger {
  opacity: 0; }

/*==================================================
にゅーん
===================================*/
/* 滑らかに変形して出現 */
.smooth {
  animation-name: smoothAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  　transform-origin: left;
  opacity: 0; }

@keyframes smoothAnime {
  from {
    transform: translate3d(0, 100%, 0) skewY(12deg);
    opacity: 0; }
  to {
    transform: translate3d(0, 0, 0) skewY(0);
    opacity: 1; } }
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.smoothTrigger {
  opacity: 0; }

/*==================================================
スーッ（枠線が伸びて出現）
===================================*/
/*枠線が伸びて出現*/
.lineTrigger {
  position: relative;
  /* 枠線が書かれる基点*/
  opacity: 0; }

.lineTrigger.lineanime {
  animation-name: lineAnimeBase;
  animation-duration: 1s;
  animation-fill-mode: forwards; }

@keyframes lineAnimeBase {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
/*上下線*/
.lineTrigger::before,
.lineTrigger::after {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  background: #333;
  /* 枠線の色*/ }

/*左右線*/
.line2::before,
.line2::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 0;
  background: #333;
  /* 枠線の色*/ }

/*上線*/
.lineTrigger::before {
  top: 0;
  left: 0; }

.lineTrigger.lineanime::before {
  animation: lineAnime .5s linear 0s forwards;
  /*表示されて0秒後に上線が0.5秒かけて表示*/ }

/*右線*/
.line2::before {
  top: 0;
  right: 0; }

.lineTrigger.lineanime .line2::before {
  animation: lineAnime2 .5s linear .5s forwards;
  /*表示されて0.5秒後に右線が0.5秒かけて表示*/ }

/*下線*/
.lineTrigger::after {
  bottom: 0;
  right: 0; }

.lineTrigger.lineanime::after {
  animation: lineAnime .5s linear 1s forwards;
  /*表示されて1秒後に下線が0.5秒かけて表示*/ }

/*左線*/
.line2::after {
  bottom: 0;
  left: 0; }

.lineTrigger.lineanime .line2::after {
  animation: lineAnime2 .5s linear 1.5s forwards;
  /*表示されて1.5秒後に左線が0.5秒かけて表示*/ }

@keyframes lineAnime {
  0% {
    width: 0%; }
  100% {
    width: 100%; } }
@keyframes lineAnime2 {
  0% {
    height: 0%; }
  100% {
    height: 100%; } }
/*枠線内側の要素*/
.lineTrigger.lineanime .lineinappear {
  animation: lineInnerAnime .5s linear 1.5s forwards;
  /*1.5秒後に中央のエリアが0.5秒かけて表示*/
  opacity: 0;
  /*初期値を透過0にする*/ }

@keyframes lineInnerAnime {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
/*==================================================
シャッ（背景色が伸びて出現）
===================================*/
/*背景色が伸びて出現（共通）*/
.bgextend {
  animation-name: bgextendAnimeBase;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden;
  /*　はみ出た色要素を隠す　*/
  opacity: 0; }

@keyframes bgextendAnimeBase {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
/*中の要素*/
.bgappear {
  animation-name: bgextendAnimeSecond;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0; }

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
/*左から*/
.bgLRextend::before {
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #666;
  /*伸びる背景色の設定*/ }

@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0); }
  50% {
    transform-origin: left;
    transform: scaleX(1); }
  50.001% {
    transform-origin: right; }
  100% {
    transform-origin: right;
    transform: scaleX(0); } }
/*右から*/
.bgRLextend::before {
  animation-name: bgRLextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #666;
  /*伸びる背景色の設定*/ }

@keyframes bgRLextendAnime {
  0% {
    transform-origin: right;
    transform: scaleX(0); }
  50% {
    transform-origin: right;
    transform: scaleX(1); }
  50.001% {
    transform-origin: left; }
  100% {
    transform-origin: left;
    transform: scaleX(0); } }
/*下から*/
.bgDUextend::before {
  animation-name: bgDUextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #666;
  /*伸びる背景色の設定*/ }

@keyframes bgDUextendAnime {
  0% {
    transform-origin: bottom;
    transform: scaleY(0); }
  50% {
    transform-origin: bottom;
    transform: scaleY(1); }
  50.001% {
    transform-origin: top; }
  100% {
    transform-origin: top;
    transform: scaleY(0); } }
/*上から*/
.bgUDextend::before {
  animation-name: bgUDextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #666;
  /*伸びる背景色の設定*/ }

@keyframes bgUDextendAnime {
  0% {
    transform-origin: top;
    transform: scaleY(0); }
  50% {
    transform-origin: top;
    transform: scaleY(1); }
  50.001% {
    transform-origin: bottom; }
  100% {
    transform-origin: bottom;
    transform: scaleY(0); } }
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgUDextendTrigger,
.bgDUextendTrigger,
.bgRLextendTrigger,
.bgLRextendTrigger {
  opacity: 0; }

/*==================================================
アニメーション設定
===================================*/
/* アニメーションの回数を決めるCSS*/
.count2 {
  animation-iteration-count: 2;
  /*この数字を必要回数分に変更*/ }

.countinfinite {
  animation-iteration-count: infinite;
  /*無限ループ*/ }

/* アニメーションスタートの遅延時間を決めるCSS*/
.delay-time05 {
  animation-delay: 0.5s; }

.delay-time1 {
  animation-delay: 1s; }

.delay-time15 {
  animation-delay: 1.5s; }

.delay-time2 {
  animation-delay: 2s; }

.delay-time25 {
  animation-delay: 2.5s; }

/* アニメーション自体が変化する時間を決めるCSS*/
.change-time05 {
  animation-duration: 0.5s; }

.change-time1 {
  animation-duration: 1s; }

.change-time15 {
  animation-duration: 1.5s; }

.change-time2 {
  animation-duration: 2s; }

.change-time25 {
  animation-duration: 2.5s; }

@media only screen and (max-width: 800px) {
  body {
    padding-top: 60px; } }
html {
  /* ページ内リンクのスクロールを滑らかに */
  scroll-behavior: smooth; }

/*基本レイアウト*/
.sec_in {
  margin: auto; }

.w01_in {
  width: 1168px; }

.w02_in {
  width: 900px; }

.w03_in {
  width: 1224px; }

.w04_in {
  width: 1140px; }

.w05_in {
  width: 1040px; }

.w06_in {
  width: 1060px; }

@media only screen and (max-width: 1224px) {
  .w01_in {
    width: 90%; }

  .w02_in {
    width: 90%; }

  .w03_in {
    width: 90%; }

  .w04_in {
    width: 90%; }

  .w05_in {
    width: 90%; } }
@media only screen and (max-width: 1000px) {
  .w01_in {
    width: 90%; }

  .w06_in {
    width: 90%; } }
/*--------------------------------------------------------
背景色・文字色の設定
--------------------------------------------------------*/
body {
  font-size: 100%;
  line-height: 1.8;
  font-family: "Noto Sans JP", sans-serif;
  color: #231815;
  font-size: 15px; }

.font_b {
  font-family: "Noto Serif JP", serif; }

.green01 {
  color: #00aa9d; }

/*全体の追加設定*/
a {
  text-decoration: none;
  color: #231815; }

a:hover {
  color: #F00; }

.dis-mb {
  display: none; }

@media only screen and (max-width: 750px) {
  .dis-pc {
    display: none; }

  .dis-mb {
    display: block; } }
/*--------------------------------------------------------
decoracion
--------------------------------------------------------*/
.fadeUp_a {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0; }

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
/*--------------------------------------------------------
 header
--------------------------------------------------------*/
.header_sec {
  position: fixed;
  /* ビューポートに対して固定 */
  top: 0;
  /* 上端に配置 */
  left: 0;
  /* 左端に配置 */
  width: 100%;
  /* 横幅を画面幅いっぱいに */
  z-index: 19; }

.header_sec .sec_in {
  width: 90%;
  margin: auto;
  padding: 0 0 10px 0; }

.header_flBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }

.header_sec .header_l {
  width: 480px;
  padding-top: 8px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end; }

.header_sec .header_l a {
  display: block;
  width: 256px; }

.header_sec .header_l .licence {
  display: inline-block;
  font-size: 12px;
  padding: 5px 5px 5px 5px;
  border: 1px solid #808080;
  border-radius: 5px;
  color: #000;
  background: #fff;
  color: #808080;
  line-height: 1;
  margin-bottom: 5px; }

.header_sec .header_r {
  width: 600px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 5px; }

.header_sec .header_r a {
  display: block; }

.header_sec .header_r .header_tel {
  width: 210px;
  height: 60px; }

.header_sec .header_r .header_mail {
  width: 184px;
  height: 60px; }

.header_sec .header_r .header_line {
  width: 184px;
  height: 60px; }

.header_sec .header_nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 600px;
  padding-top: 10px; }

.header_sec .header_nav a {
  color: #00aa9d;
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  position: relative; }

.header_sec .header_nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 2px;
  background: #00aa9d;
  transition: all .3s;
  transform: scale(0, 1);
  transform-origin: center top; }

/*— 現在地 or hover はトップレベルのリンクだけに —*/
.header_sec .header_nav > .nav-item.current > a::after,
.header_sec .header_nav > .nav-item > a:hover::after {
  transform: scale(1, 1); }

.header_sec.shadow {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
  background: #fff; }

@media only screen and (max-width: 1200px) {
  .header_sec {
    position: fixed;
    /* ビューポートに対して固定 */
    top: 0;
    /* 上端に配置 */
    left: 0;
    /* 左端に配置 */
    width: 100%;
    /* 横幅を画面幅いっぱいに */
    z-index: 19; }

  .header_sec .sec_in {
    width: 95%;
    margin: auto;
    padding: 0 0 10px 0; }

  .header_flBox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }

  .header_sec .header_l {
    width: 250px;
    padding-top: 8px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    ta: c; }

  .header_sec .header_l a {
    display: block;
    width: 256px; }

  .header_sec .header_l .licence {
    display: inline-block;
    font-size: 10px;
    padding: 2px 2px 5px 5px;
    border: 1px solid #808080;
    border-radius: 5px;
    color: #000;
    background: #fff;
    color: #808080;
    line-height: 1;
    margin-bottom: 5px; }

  .header_sec .header_r {
    width: 470px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 5px; }

  .header_sec .header_r a {
    display: block; }

  .header_sec .header_r .header_tel {
    width: calc(210px*0.75);
    height: 40px; }

  .header_sec .header_r .header_mail {
    width: calc(184px*0.75);
    height: 40px; }

  .header_sec .header_r .header_line {
    width: calc(184px*0.75);
    height: 40px; }

  .header_sec .header_nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 600px;
    padding-top: 10px; }

  .header_sec .header_nav a {
    color: #00aa9d;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    position: relative; }

  .header_sec .header_nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 2px;
    background: #00aa9d;
    transition: all .3s;
    transform: scale(0, 1);
    transform-origin: center top; }

  /*— 現在地 or hover はトップレベルのリンクだけに —*/
  .header_sec .header_nav > .nav-item.current > a::after,
  .header_sec .header_nav > .nav-item > a:hover::after {
    transform: scale(1, 1); }

  .header_sec.shadow {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s;
    background: #fff; } }
@media only screen and (max-width: 800px) {
  .header_sec {
    position: fixed;
    /* ビューポートに対して固定 */
    top: 0;
    /* 上端に配置 */
    left: 0;
    /* 左端に配置 */
    width: 100%;
    /* 横幅を画面幅いっぱいに */
    z-index: 9; }

  .header_sec .sec_in {
    width: 90%;
    margin: auto;
    padding: 0 0 10px 0; }

  .header_flBox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }

  .header_sec .header_l {
    width: 100%;
    padding-top: 15px;
    display: block;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end; }

  .header_sec .header_l a {
    display: block;
    width: 170px; }

  .header_sec .header_l .licence {
    display: none; }

  .header_sec .header_r {
    display: none; }

  .header_sec .header_nav {
    display: none; } }
/*--------------------------------------------------------
breadcrumbs
--------------------------------------------------------*/
#breadcrumbs {
  font-size: 13px;
  color: #999; }

#breadcrumbs a {
  font-size: 13px;
  color: #999; }

/*------------------------------------------------------------
アーカイブ
-------------------------------------------------------------*/
.archive_sec {
  padding: 30px 0 90px 0; }
  .archive_sec .subhead {
    text-align: center;
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 30px; }

.archive_flBox {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; }

.blog_card {
  flex: 1 1 calc(25% - 20px);
  max-width: calc(25% - 20px);
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  background: #fff; }

@media screen and (max-width: 1024px) {
  .blog_card {
    flex: 1 1 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px); } }
.blog_card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  opacity: 0.8; }

.blog_card .eyecatch {
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  overflow: hidden; }

.blog_card .eyecatch img {
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease-in-out; }

.day {
  margin-bottom: 0;
  padding: 0 5px;
  color: #999; }

.title {
  font-size: 16px;
  font-weight: bold;
  display: block;
  width: 90%;
  padding: 0 3px;
  line-height: 1.5; }

.cat a {
  font-size: 12px;
  display: inline-block;
  margin-right: 5px;
  color: #666; }

.cat a:hover {
  color: #F00; }

.text {
  padding-bottom: 10px; }

.textArea {
  width: 97%;
  margin: 0 auto;
  padding: 0 0 10px 0; }

/*-----------------------*/
.tag_flBox {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin: 20px 0;
  padding: 16px 0;
  background: #f9f9f9;
  border-radius: 30px;
  padding: 30px; }

.tag_flBox .col_l {
  flex: 0 0 120px;
  font-weight: 700;
  color: #333;
  line-height: 1.6; }

.tag_flBox .col_r {
  flex: 1;
  min-width: 0; }

.tag_flBox .col_r_in {
  --tag-bg:#f5f7fb;
  --tag-bd:#dfe7f5;
  --tag-tx:#2b3a55;
  --tag-oya-bg:#e9f3ff;
  --tag-oya-bd:#a7cbff;
  --tag-oya-tx:#1357b3; }

.tag_flBox .col_r_in ul {
  list-style: none;
  margin: 0;
  padding: 0; }

/* デフォルト：親なし（クラウド）を想定して横並び折返し */
.tag_flBox .col_r_in > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px; }

/* 親があるときだけ、親ごとに縦積みの行に切り替え */
.tag_flBox .col_r_in > ul:has(> li > .oya) {
  flex-direction: column;
  gap: 12px; }

/* 親ありの1行：左=親、右=子（折返し） */
.tag_flBox .col_r_in > ul:has(> li > .oya) > li {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 10px; }

.tag_flBox .col_r_in > ul:has(> li > .oya) > li > .oya {
  flex: 0 0 auto;
  order: 0; }

.tag_flBox .col_r_in > ul:has(> li > .oya) > li > ul.child {
  flex: 1 1 auto;
  order: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin: 0;
  padding: 0; }

/* タグ共通の見た目 */
.tag_flBox .col_r_in a {
  display: inline-block;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  border: 1px solid var(--tag-bd);
  background: var(--tag-bg);
  color: var(--tag-tx);
  padding: 8px 12px;
  border-radius: 9999px;
  font-size: 12px;
  transition: transform .02s ease,box-shadow .2s ease,background .2s ease; }

.tag_flBox .col_r_in a:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px); }

/* 親の見た目 */
.tag_flBox .col_r_in a.oya {
  border-color: var(--tag-oya-bd);
  background: var(--tag-oya-bg);
  color: var(--tag-oya-tx);
  font-weight: 700;
  padding: 9px 14px; }

/* 子の見た目（親ありの .child 内） */
.tag_flBox .col_r_in ul.child li {
  margin: 0;
  padding: 0; }

.tag_flBox .col_r_in ul.child a {
  font-size: 12px;
  padding: 7px 10px;
  opacity: .95; }

.tag_flBox .col_r_in ul.child a::before {
  content: "#";
  margin-right: 2px;
  opacity: .7; }

/* 子だけ（親なしクラウド）の見た目を .child と同等に */
.tag_flBox .col_r_in > ul:not(:has(> li > .oya)) > li > a {
  font-size: 13px;
  padding: 7px 10px;
  opacity: .95; }

/* 親なしクラウド時に自動で # を付けたいなら以下をON（HTML側で # を出さない想定） */
/* .tag_flBox .col_r_in > ul:not(:has(> li > .oya)) > li > a::before{content:"#";margin-right:2px;opacity:.7;} */
@media (max-width: 768px) {
  .tag_flBox {
    flex-direction: column;
    gap: 10px;
    padding: 12px 0; }

  .tag_flBox .col_l {
    flex: 0 0 auto;
    font-size: 14px; }

  .tag_flBox .col_r_in > ul {
    gap: 10px; }

  /* 親あり行はSPで縦積みに */
  .tag_flBox .col_r_in > ul:has(> li > .oya) > li {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px; }

  .tag_flBox .col_r_in > ul:has(> li > .oya) > li > .oya {
    margin-bottom: 4px; }

  .tag_flBox .col_r_in a {
    font-size: 13px;
    padding: 7px 10px; }

  .tag_flBox .col_r_in a.oya {
    font-size: 14px;
    padding: 8px 12px; } }
/* 800px以下の調整：2列に変更 */
@media only screen and (max-width: 800px) {
  .archive_flBox {
    justify-content: space-between; }

  .blog_card {
    flex: 1 1 calc(50% - 10px);
    max-width: calc(50% - 10px); }

  .blog_card .eyecatch {
    height: 120px; }

  .title {
    font-size: 13px;
    margin-bottom: 10px; }

  .cat a {
    font-size: 10px; }

  .text {
    font-size: 12px;
    line-height: 1.3; } }
/*--------------------------------------------------------
news_line
--------------------------------------------------------*/
.news_flLine {
  border-bottom: 1px solid #ccc;
  padding: 10px 0 10px 0;
  display: block; }

.news_flLine .news_day {
  font-weight: bold;
  margin-right: 30px;
  color: #666; }

.news_flLine .news_title {
  font-weight: bold;
  font-size: 16px; }

/*--------------------------------------------------------
フッター
--------------------------------------------------------*/
.cta_add {
  display: block;
  width: 744px;
  margin: auto; }

.cta_sec {
  background: #00aa9d;
  padding: 60px 0 60px 0; }
  .cta_sec .cta_textflBox {
    width: 800px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px; }
  .cta_sec .cta_textflBox .col_l {
    width: 184px; }
  .cta_sec .cta_textflBox .col_r {
    flex: 1;
    color: #fff; }
  .cta_sec .cta_textflBox .line01 {
    font-size: 34px;
    line-height: 1.5;
    font-weight: 900; }
  .cta_sec .cta_textflBox .line02 {
    font-size: 20px; }
  .cta_sec .cta_flBox {
    width: 992px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
  .cta_sec .cta_btn {
    display: block;
    width: 318px;
    height: 78px;
    border-radius: 39px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center; }

@media only screen and (max-width: 800px) {
  .cta_add {
    display: block;
    width: 80%;
    margin: auto; }

  .cta_sec {
    background: #00aa9d;
    padding: 60px 0 60px 0; }
    .cta_sec .cta_textflBox {
      width: 100%;
      margin: auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      margin-bottom: 30px; }
    .cta_sec .cta_textflBox .col_l {
      width: 20%; }
    .cta_sec .cta_textflBox .col_r {
      flex: 1;
      color: #fff;
      padding-left: 5px; }
    .cta_sec .cta_textflBox .line01 {
      font-size: 18px;
      line-height: 1.5;
      font-weight: 900; }
    .cta_sec .cta_textflBox .line02 {
      font-size: 14px; }
    .cta_sec .cta_flBox {
      width: 90%;
      margin: auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between; }
    .cta_sec .cta_btn {
      display: block;
      width: 318px;
      height: 78px;
      border-radius: 39px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      margin-bottom: 20px; } }
/*--------------------------------------------------------
フッター
--------------------------------------------------------*/
footer {
  background: #edf7f6; }
  footer .sec_in {
    padding: 60px 0 30px 0; }
  footer .footer_flBox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
  footer .footer_flBox .col_l {
    width: 330px; }
  footer .footer_flBox .col_r {
    width: 700px; }
  footer a {
    display: block;
    font-size: 15px;
    position: relative;
    padding-left: 18px;
    display: inline-block;
    width: 150px;
    margin-bottom: 20px;
    font-weight: bold; }
  footer a:before {
    width: 12px;
    content: "";
    border-bottom: 3px solid #00aa9d;
    position: absolute;
    left: 0;
    top: 12px; }

@media only screen and (max-width: 800px) {
  footer {
    background: #edf7f6; }
    footer .sec_in {
      padding: 60px 0 30px 0; }
    footer .footer_flBox {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between; }
    footer .footer_flBox .col_l {
      width: 80%;
      margin: 0 auto 20px auto;
      order: 2;
      text-align: center;
      padding-top: 50px; }
    footer .footer_flBox .col_r {
      width: 90%;
      order: 1;
      margin: 0 auto 20px auto; }
    footer a {
      display: block;
      font-size: 15px;
      position: relative;
      padding-left: 18px;
      display: inline-block;
      width: 42%;
      margin-bottom: 10px;
      font-weight: bold; }
    footer a:before {
      width: 12px;
      content: "";
      border-bottom: 3px solid #00aa9d;
      position: absolute;
      left: 0;
      top: 12px; } }
#copyright {
  text-align: center;
  padding: 30px 0 30px 0;
  font-size: 12px;
  font-weight: bold;
  text-align: center; }

@media only screen and (max-width: 750px) {
  #copyright {
    text-align: center;
    margin: 0 0 0 0;
    padding: 0 0 60px 0; } }
.footer_fix_cta {
  display: none; }

@media only screen and (max-width: 800px) {
  .footer_fix_cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: fixed;
    bottom: 0;
    width: 100%; }

  .footer_fix_cta a {
    width: calc(100%/3);
    display: block;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    line-height: 1;
    height: 50px;
    font-weight: bold;
    font-size: 14px;
    position: relative; }

  .footer_fix_cta .word {
    padding-left: 5px;
    display: inline-block; }

  .footer_fix_cta img {
    width: 18px; }

  .footer_fix_cta .footer_fix_tel {
    background: #f5f5f5;
    color: #00aa9d;
    border: solid 1px #00aa9d;
    box-sizing: border-box; }

  .footer_fix_cta .footer_fix_line {
    background: #06C755;
    color: #fff; }

  .footer_fix_cta .footer_fix_mail {
    background: #00aa9d;
    color: #fff; } }
/*== ボタン共通設定 */
.btn_main {
  /* グラデーションの指定 */
  /* ベースのグラデーション（暗めのグレー→黒→暗めのグレー） */
  background: #000;
  /* 立体感のある内側の光（インセットシャドウ）と外側の影 */
  /* 光沢をプラスする擬似要素 */
  position: relative;
  overflow: hidden;
  color: #fff;
  width: 300px;
  margin: auto;
  height: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 1px;
  border-radius: 3px;
  position: relative;
  /* アニメーションの起点 */
  overflow: hidden;
  text-decoration: none;
  text-align: center;
  outline: none;
  transition: ease .2s; }

/*ボタン内spanの形状*/
.btn_main span {
  position: relative;
  z-index: 3;
  /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #fff; }

/*== 背景が流れる（中央から横全体） */
.bgcenterx:before {
  content: '';
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #666;
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: top; }

/*hoverした際の形状*/
.bgcenterx:hover:before {
  transform: scale(1, 1); }

@media only screen and (max-width: 800px) {
  .btn_main {
    /* グラデーションの指定 */
    /* ベースのグラデーション（暗めのグレー→黒→暗めのグレー） */
    background: #000;
    /* 立体感のある内側の光（インセットシャドウ）と外側の影 */
    /* 光沢をプラスする擬似要素 */
    position: relative;
    overflow: hidden;
    color: #fff;
    width: 80%;
    margin: auto;
    height: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px; } }
/*--------------------------------------------------------
form
--------------------------------------------------------*/
/* セレクトボックス（ドロップダウン）のスタイル */
.wpcf7 select {
  width: 100%;
  padding: 0.75em 1em;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  background-color: #fff;
  transition: border-color .3s,box-shadow .3s;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg width='14' height='10' viewBox='0 0 14 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23333' d='M1 1l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1em center;
  background-size: 1em; }

.wpcf7 select:focus {
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
  outline: none; }

/* フォーム全体のラップ */
.wpcf7 {
  max-width: 1400px;
  margin: 2em auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  padding: 2em;
  font-family: "Noto Sans JP",sans-serif; }

/* テーブルの余白調整 */
.wpcf7 table {
  width: 90%;
  border-collapse: separate;
  border-spacing: 0 1.2em; }

/* th と td のレイアウト */
.wpcf7 th, .wpcf7 td {
  vertical-align: top;
  padding: 0;
  border: none; }

.wpcf7 th {
  width: 30%; }

.wpcf7 .line1 {
  text-align: left;
  display: block; }

/* th 内のラベル配置 */
.wpcf7 .th-in {
  display: flex;
  align-items: center; }

.wpcf7 .col-l {
  flex: 0 0 4em;
  text-align: right; }

.wpcf7 .col-r {
  flex: 1;
  font-weight: 700;
  font-size: 1rem;
  color: #333; }

/* 必須／任意マーク */
.wpcf7 .must, .wpcf7 .nin {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2em 0.5em;
  border-radius: 4px;
  margin-right: 0.5em;
  color: #fff; }

.wpcf7 .must {
  background: #e74c3c; }

/* 赤：必須 */
.wpcf7 .nin {
  background: #95a5a6; }

/* グレー：任意 */
/* 入力フィールド */
.wpcf7 input[type="text"], .wpcf7 input[type="email"], .wpcf7 textarea {
  width: 100%;
  padding: 0.75em 1em;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color .3s,box-shadow .3s;
  background: #f9f9f9; }

.wpcf7 input:focus, .wpcf7 textarea:focus {
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
  outline: none; }

/* 入力後（値がある状態） */
.wpcf7 input[type="text"]:not(:placeholder-shown), .wpcf7 input[type="email"]:not(:placeholder-shown), .wpcf7 textarea:not(:placeholder-shown) {
  background: #edf7f6;
  /* 入力済み → 薄いグリーン */
  border-color: #00aa9d;
  /* 入力済み → グリーン枠 */ }

/* ラジオボタンカスタム */
.wpcf7 .wpcf7-radio label {
  position: relative;
  padding-left: 2em;
  cursor: pointer;
  display: inline-block;
  margin-right: 1.5em;
  font-size: 0.95rem;
  color: #333; }

.wpcf7 .wpcf7-radio label input {
  position: absolute;
  opacity: 0;
  cursor: pointer; }

.wpcf7 .wpcf7-radio label::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 2px;
  width: 1em;
  height: 1em;
  border: 2px solid #bbb;
  border-radius: 50%;
  background: #fff;
  transition: border-color .3s,background .3s; }

.wpcf7 .wpcf7-radio label input:checked + .wpcf7-list-item-label + *, .wpcf7 .wpcf7-radio label input:checked + span {
  /* second span is label text fallback */ }

.wpcf7 .wpcf7-radio label input:checked ~ span::before, .wpcf7 .wpcf7-radio label input:checked + .wpcf7-list-item-label::before {
  /* not used */ }

.wpcf7 .wpcf7-radio label input:checked + span::after, .wpcf7 .wpcf7-radio label input:checked ~ span::after {
  content: "";
  position: absolute;
  left: 0.28em;
  top: 0.53em;
  width: 0.4em;
  height: 0.4em;
  background: #3498db;
  border-radius: 50%; }

/* テキストエリア上の説明文 */
.wpcf7 .td-qestion .line {
  display: block;
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 0.4em; }

/* 送信ボタン */
.wpcf7 .wpcf7-submit {
  width: 400px;
  margin: auto;
  display: block;
  background: linear-gradient(135deg, #00aa9d, #00897b);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.8em 2em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform .2s,box-shadow .2s,background .3s;
  margin-top: 1.5em; }

.wpcf7 .wpcf7-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 170, 157, 0.5);
  background: linear-gradient(135deg, #00cbbf, #009688);
  color: #fff; }

.wpcf7 .wpcf7-submit:active {
  transform: translateY(0);
  box-shadow: 0 4px 8px rgba(0, 170, 157, 0.5);
  background: #009688;
  color: #fff; }

/* 郵便番号フィールドの幅調整 */
.wpcf7 .td-zip input[type="text"] {
  width: 200px;
  /* 好きな幅に調整 */
  max-width: 100%;
  display: inline-block; }

@media (max-width: 800px) {
  /* フォーム全体の余白調整 */
  .wpcf7 {
    padding: 1.5em; }

  /* テーブルを縦型に */
  .wpcf7 table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 1em; }

  .wpcf7 th, .wpcf7 td {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    text-align: left; }

  /* ラベル部分をブロック化 */
  .wpcf7 .th-in {
    display: block;
    text-align: left;
    margin-bottom: 0.3em; }

  .wpcf7 .col-l {
    display: inline-block;
    margin-right: 0.5em;
    text-align: left; }

  .wpcf7 .col-r {
    display: inline-block;
    font-weight: 700;
    font-size: 1rem;
    color: #333; }

  /* 入力フィールドの調整 */
  .wpcf7 input[type="text"],
  .wpcf7 input[type="email"],
  .wpcf7 textarea,
  .wpcf7 select {
    width: 90%;
    font-size: 1rem;
    padding: 0.7em 1em; }

  /* 郵便番号欄はスマホでは幅100%に */
  .wpcf7 .td-zip input[type="text"] {
    width: 90%; }

  /* 送信ボタンを広げる */
  .wpcf7 .wpcf7-submit {
    width: 100%;
    max-width: 100%;
    font-size: 1rem;
    padding: 1em;
    border-radius: 6px; } }
html, body {
  overflow-x: hidden; }

h2 {
  font-weight: 900;
  font-size: 40px;
  letter-spacing: 3px;
  text-align: center; }

@media only screen and (max-width: 800px) {
  h2 {
    font-weight: 900;
    font-size: 24px;
    letter-spacing: 3px;
    text-align: left !important;
    line-height: 1.3; } }
/*---------------------------------------
fv
-------------------------------------------*/
.sec_fv {
  background: url(../images/page/top/fv_bg.png);
  background-size: 1920px;
  background-position: top center;
  background-repeat: no-repeat;
  height: 750px;
  padding-top: 90px; }
  .sec_fv .sec_in {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 50px 0 0 0; }
  .sec_fv .sec_in .col_l {
    width: 570px; }
  .sec_fv .sec_in .col_l .fv_area {
    font-weight: bold;
    position: relative;
    line-height: 1; }
  .sec_fv .sec_in .col_l .fv_area:before {
    content: "";
    display: block;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    position: absolute;
    left: -13px;
    top: -10px;
    background: #fff6cc;
    z-index: -1; }
  .sec_fv .sec_in .col_l .fv_area .word01 {
    font-size: 26px; }
  .sec_fv .sec_in .col_l .fv_area .word02 {
    font-size: 20px; }
  .sec_fv .sec_in .col_l h1 {
    font-weight: 900;
    font-size: 70px;
    line-height: 1.25;
    margin: 0 0 15px 0; }
  .sec_fv .sec_in .col_l .line01 {
    font-weight: 900;
    font-size: 28px; }
  .sec_fv .sec_in .col_l .line02 {
    font-weight: 900;
    font-size: 20px;
    margin-bottom: 20px; }
  .sec_fv .sec_in .col_r {
    width: 48%;
    position: relative;
    height: 620px; }
  .sec_fv .sec_in .col_r .box {
    height: 100%;
    display: block;
    height: 620px; }
  .sec_fv .sec_in .col_r .box img {
    display: block;
    height: 620px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px; }
  .sec_fv .sec_in .col_r .add01 {
    width: 189px;
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 2;
    pointer-events: none; }
  .sec_fv .sec_in .col_r .add02 {
    width: 358px;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    z-index: 2;
    pointer-events: none; }

@media only screen and (max-width: 800px) {
  .sec_fv {
    background: url(../images/page/top/fv_bg.png);
    background-size: 100%;
    background-position: top center;
    background-repeat: no-repeat;
    height: auto;
    padding-top: 10px; }
    .sec_fv .sec_in {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      padding: 20px 0 0 0; }
    .sec_fv .sec_in .col_l {
      width: 100%; }
    .sec_fv .sec_in .col_l .fv_area {
      font-weight: bold;
      position: relative;
      margin-bottom: 20px; }
    .sec_fv .sec_in .col_l .fv_area:before {
      content: "";
      display: block;
      height: 40px;
      width: 40px;
      border-radius: 50%;
      position: absolute;
      left: -13px;
      top: -5px;
      background: #fff6cc;
      z-index: -1; }
    .sec_fv .sec_in .col_l .fv_area .word01 {
      font-size: 20px; }
    .sec_fv .sec_in .col_l .fv_area .word02 {
      font-size: 16px; }
    .sec_fv .sec_in .col_l h1 {
      font-weight: 900;
      font-size: 42px;
      line-height: 1.25;
      margin: 0 0 15px 0; }
    .sec_fv .sec_in .col_l .line01 {
      font-weight: 900;
      font-size: 28px; }
    .sec_fv .sec_in .col_l .line02 {
      font-weight: 900;
      font-size: 16px;
      margin-bottom: 30px; }
    .sec_fv .sec_in .col_r {
      width: 100%;
      position: relative;
      height: auto; }
    .sec_fv .sec_in .col_r .box {
      width: 100%;
      display: block;
      height: auto;
      margin-bottom: 30px; }
    .sec_fv .sec_in .col_r .box img {
      display: block;
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-radius: 10px; }
    .sec_fv .sec_in .col_r .add01 {
      width: 100px;
      position: absolute;
      top: 10px;
      right: 10px;
      z-index: 2; }
    .sec_fv .sec_in .col_r .add02 {
      width: 60%;
      position: absolute;
      bottom: 0;
      right: 0;
      left: 0;
      margin: auto;
      z-index: 2; } }
/*-----------矢印表示----------*/
.slider .slick-next {
  right: -34px !important; }

.slider .slick-prev {
  left: 0px !important; }

.slider .slick-next:before {
  background: url(../images/common/slick_arrow_l.png) !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  pointer-events: none; }

.slider .slick-prev:before {
  background: url(../images/common/slick_arrow_r.png) !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  pointer-events: none; }

.slider .slick-arrow {
  z-index: 2000 !important;
  width: 60px !important;
  height: 60px !important; }

.slider .slick-arrow:before {
  content: "" !important;
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1 !important;
  z-index: 2000 !important; }

/*---------------------------------------
fv
-------------------------------------------*/
.acount_box {
  border-radius: 10px;
  border: solid 2px #00aa9d;
  font-weight: bold; }
  .acount_box .acount_headline {
    background: #00aa9d;
    color: #fff;
    text-align: center;
    font-size: 24px;
    font-weight: bold; }
  .acount_box .acount_cotion {
    text-align: center;
    font-size: 12px;
    color: #666; }
  .acount_box .acount_flBox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 95%;
    margin: auto;
    padding: 10px 0 10px 0; }
  .acount_box .acount_flBox_l {
    width: 48%; }
  .acount_box .acount_flBox_r {
    width: 48%; }
  .acount_box .input_box {
    margin-bottom: 5px; }
  .acount_box .input_title {
    padding-left: 20px;
    position: relative; }
  .acount_box .input_title:before {
    content: "●";
    color: #00aa9d;
    position: absolute;
    left: 0; }
  .acount_box .result_box {
    background: #edf7f6;
    border-radius: 5px;
    padding: 10px 0 10px 0; }
  .acount_box .result_title {
    text-align: center;
    color: #00aa9d; }
  .acount_box .result_box .subtotal {
    width: 90%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
  .acount_box .result_box .subtotal_l {
    width: 150px; }
  .acount_box .result_box .total {
    background: #fff;
    border-radius: 5px;
    text-align: center;
    width: 90%;
    margin: auto; }
  .acount_box .result_box .total .word02 {
    font-size: 20px; }
  .acount_box input[type="number"] {
    width: 120px;
    padding: 3px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    text-align: right;
    background: #f7f7f7;
    border: solid 1px #ccc;
    margin-left: 20px; }

@media only screen and (max-width: 800px) {
  .acount_box {
    border-radius: 10px;
    border: solid 2px #00aa9d;
    font-weight: bold;
    width: 90%;
    margin: auto; }

  .acount_box .acount_headline {
    background: #00aa9d;
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    padding: 10px; }

  .acount_box .acount_flBox {
    display: block;
    width: 95%;
    margin: auto;
    padding: 10px 0 10px 0; }

  .acount_box .acount_flBox_l {
    width: 100%;
    margin-bottom: 15px; }

  .acount_box .acount_flBox_r {
    width: 100%;
    margin-bottom: 15px; }

  .acount_box .input_box {
    margin-bottom: 10px; }

  .acount_box .input_title {
    padding-left: 15px;
    position: relative;
    font-size: 14px; }

  .acount_box .input_title:before {
    content: "●";
    color: #00aa9d;
    position: absolute;
    left: 0; }

  .acount_box .result_box {
    background: #edf7f6;
    border-radius: 5px;
    padding: 10px; }

  .acount_box .result_title {
    text-align: center;
    color: #00aa9d;
    font-size: 14px; }

  .acount_box .result_box .subtotal {
    width: 90%;
    margin: auto;
    display: block; }

  .acount_box .result_box .subtotal_l {
    width: 90%;
    margin-bottom: 8px; }

  .acount_box .result_box .total {
    background: #fff;
    border-radius: 5px;
    text-align: center;
    width: 100%;
    margin: auto;
    padding: 8px 0; }

  .acount_box .result_box .total .word02 {
    font-size: 18px; }

  .acount_box input[type="number"] {
    width: 60%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    text-align: right;
    background: #f7f7f7;
    margin-left: 0; } }
/*---------------------------------------
.onestop_sec{}
-------------------------------------------*/
.onestop_sec {
  padding: 0 0 150px 0;
  background: url("../images/page/top/onestop_bg.png");
  background-size: 1920px;
  background-position: center bottom;
  background-repeat: no-repeat;
  /* 固定幅は外す */
  /* 固定幅は外す */
  /* 固定幅は外す */
  /* 固定幅は外す */ }
  .onestop_sec .onestop_box {
    background: #edf7f6;
    padding: 30px 0 30px 0;
    border-radius: 10px;
    position: relative; }
  .onestop_sec .onestop_add {
    position: absolute;
    left: 50px;
    top: -225px;
    width: 180px;
    display: block; }
  .onestop_sec .onestop_box_in {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(196px, 1fr));
    gap: 10px; }
  .onestop_sec .onestop_box_in .card {
    width: auto; }
  .onestop_sec .onestop_box_in .text {
    position: relative;
    position: relative;
    padding-left: 20px;
    font-weight: bold; }
  .onestop_sec .onestop_box_in .text:before {
    content: "●";
    color: #fff;
    position: absolute;
    left: 0; }
  .onestop_sec .onestop_box_in .small {
    font-size: 10px; }

@media only screen and (max-width: 800px) {
  .onestop_sec {
    padding: 40px 0 80px 0;
    background: url("../images/page/top/onestop_bg.png");
    background-size: 1200px;
    background-position: center bottom;
    background-repeat: no-repeat; }

  .onestop_sec .onestop_box {
    background: #edf7f6;
    padding: 20px 0 20px 0;
    border-radius: 10px;
    position: relative; }

  .onestop_sec .onestop_add {
    position: absolute;
    left: auto;
    right: 10px;
    top: -120px;
    width: 110px;
    display: block; }

  .onestop_sec .onestop_box_in {
    width: 92%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px; }

  .onestop_sec .onestop_box_in .card {
    width: auto; }

  .onestop_sec .onestop_box_in .text {
    position: relative;
    padding-left: 16px;
    font-weight: bold; }

  .onestop_sec .onestop_box_in .text:before {
    content: "●";
    color: #fff;
    position: absolute;
    left: 0; }

  .onestop_sec .onestop_box_in .small {
    font-size: 12px; } }
/*---------------------------------------
.reason_sec{}
-------------------------------------------*/
.reason_sec {
  background: #edf7f6;
  padding: 90px 0 90px 0; }
  .reason_sec .reason_add {
    position: absolute;
    right: 50px;
    top: -225px;
    width: 180px;
    display: block; }
  .reason_sec .reason_flBox {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative; }
  .reason_sec .reason_flBox_in {
    width: 90%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 50px 0 50px 0; }
  .reason_sec .reason_flBox .col_l {
    width: 480px; }
  .reason_sec .reason_flBox .col_r {
    width: 540px;
    font-size: 16px; }
  .reason_sec .reason_flBox .title {
    font-size: 32px;
    text-align: left;
    margin-bottom: 30px;
    font-weight: 900; }

@media only screen and (max-width: 800px) {
  .reason_sec {
    background: #edf7f6;
    padding: 30px 0 90px 0; }
    .reason_sec .reason_add {
      position: absolute;
      right: 0px;
      top: -150px;
      width: 120px;
      display: block; }
    .reason_sec .reason_flBox {
      background: #fff;
      border-radius: 10px;
      margin-bottom: 30px;
      position: relative; }
    .reason_sec .reason_flBox_in {
      width: 90%;
      margin: auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      padding: 50px 0 0 0; }
    .reason_sec .reason_flBox .col_l {
      width: 100%;
      margin-bottom: 20px; }
    .reason_sec .reason_flBox .col_r {
      width: 100%; }
    .reason_sec .reason_flBox .title {
      font-size: 20px;
      text-align: left;
      margin-bottom: 10px; }
    .reason_sec .reason_flBox .text {
      font-size: 15px;
      text-align: left;
      margin-bottom: 30px;
      line-height: 1.8; } }
/*---------------------------------------
area_sec{}
-------------------------------------------*/
.area_sec {
  padding: 120px 0 250px 0;
  background: url(../images/page/top/area_bg.png);
  background-size: 1920px;
  background-position: center bottom;
  background-repeat: no-repeat; }
  .area_sec h2 {
    margin-bottom: 90px; }
  .area_sec .area_add {
    position: absolute;
    left: 50px;
    top: -225px;
    width: 304px;
    display: block; }
  .area_sec .area_flBox {
    background: #edf7f6;
    border-radius: 10px;
    padding: 30px 0 30px 0;
    position: relative; }
  .area_sec .area_flBox_in {
    width: 90%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #edf7f6; }
  .area_sec .area_flBox_in .col_l {
    width: 401px; }
  .area_sec .area_flBox_in .col_r {
    width: 600px;
    padding-top: 30px; }
  .area_sec .area_flBox_in .col_r .ken {
    width: 173px;
    display: block;
    height: 42px;
    border-radius: 21px;
    background: #00aa9d;
    color: #fff;
    line-height: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px; }
  .area_sec .area_flBox_in .col_r p {
    margin-bottom: 30px; }
  .area_sec .area_ken_flBox {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start; }
  .area_sec .area_ken_flBox .col {
    width: 280px; }
  .area_sec .area_other {
    height: 42px;
    border-radius: 21px;
    background: #fff;
    line-height: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 18px;
    color: #00aa9d; }

@media only screen and (max-width: 800px) {
  .area_sec {
    padding: 60px 0 120px 0;
    background: url(../images/page/top/area_bg.png);
    background-size: 1200px;
    background-position: center bottom;
    background-repeat: no-repeat; }

  .area_sec h2 {
    margin-bottom: 40px;
    font-size: 20px;
    text-align: center; }

  .area_sec .area_add {
    position: absolute;
    left: auto;
    right: 0;
    top: -120px;
    width: 160px;
    display: block; }

  .area_sec .area_flBox {
    background: #edf7f6;
    border-radius: 10px;
    padding: 20px 0;
    position: relative; }

  .area_sec .area_flBox_in {
    width: 92%;
    margin: auto;
    display: block;
    background: #edf7f6; }

  .area_sec .area_flBox_in .col_l {
    width: 100%;
    margin-bottom: 20px; }

  .area_sec .area_flBox_in .col_r {
    width: 100%;
    padding-top: 0; }

  .area_sec .area_flBox_in .col_r .ken {
    width: 100%;
    height: 40px;
    border-radius: 20px;
    background: #00aa9d;
    color: #fff;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 8px; }

  .area_sec .area_flBox_in .col_r p {
    margin-bottom: 20px;
    font-size: 14px; }

  .area_sec .area_ken_flBox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px; }

  .area_sec .area_ken_flBox .col {
    width: 100%; }

  .area_sec .area_other {
    height: 40px;
    border-radius: 20px;
    background: #fff;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 16px;
    color: #00aa9d; } }
/*---------------------------------------
flow_sec{}
-------------------------------------------*/
.flow_sec {
  background: #edf7f6;
  padding: 60px 0 90px 0; }
  .flow_sec .flow_add {
    position: absolute;
    right: 50px;
    top: -190px;
    width: 150px;
    display: block; }
  .flow_sec .first-child {
    border-top: 4px solid #fff;
    position: relative; }
  .flow_sec .flow_flBox {
    border-bottom: 4px solid #fff;
    padding: 30px 0 30px 0; }
  .flow_sec .flow_flBox_in {
    width: 800px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: auto; }
  .flow_sec .flow_flBox .col_l {
    width: 25%;
    font-size: 58px;
    font-weight: 900; }
  .flow_sec .flow_flBox .col_r {
    width: 75%;
    font-size: 16px; }
  .flow_sec .flow_flBox .col_r .title {
    font-weight: 900;
    font-size: 30px;
    color: #00aa9d;
    margin-bottom: 20px; }

@media only screen and (max-width: 800px) {
  .flow_sec {
    background: #edf7f6;
    padding: 60px 0 90px 0; }
    .flow_sec .flow_add {
      position: absolute;
      right: 0;
      top: -150px;
      width: 120px;
      display: block; }
    .flow_sec .first-child {
      border-top: 4px solid #fff;
      position: relative; }
    .flow_sec .flow_flBox {
      border-bottom: 4px solid #fff;
      padding: 30px 0 30px 0; }
    .flow_sec .flow_flBox_in {
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      margin: auto; }
    .flow_sec .flow_flBox .col_l {
      width: 20%;
      font-size: 40px;
      font-weight: 900;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      color: #999; }
    .flow_sec .flow_flBox .col_r {
      width: 75%; }
    .flow_sec .flow_flBox .col_r .title {
      font-weight: bold;
      font-size: 16px;
      color: #00aa9d;
      margin-bottom: 10px; } }
/*---------------------------------------
works_sec{}
-------------------------------------------*/
.works_sec {
  padding: 90px 0 90px 0; }

.works_sec .works_btn {
  width: 250px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: #00aa9d;
  color: #fff;
  font-weight: bold;
  height: 60px;
  border-radius: 30px; }

/*---------------------------------------
archive_sec
-------------------------------------------*/
.archive_sec {
  padding: 90px 0 90px 0;
  background: #edf7f6; }
  .archive_sec .column_h2 {
    text-align: center;
    font-weight: 900;
    margin-bottom: 60px; }
  .archive_sec .column_h2 .line01 {
    font-size: 50px; }
  .archive_sec .column_h2 .line02 {
    font-size: 20px;
    color: #00aa9d; }

/*---------------------------------------
news_sec{}
-------------------------------------------*/
.news_sec {
  padding: 60px 0 60px 0; }
  .news_sec .news_btn {
    width: 250px;
    line-height: 1;
    height: 50px;
    background: #00aa9d;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    margin: auto; }
  .news_sec .en {
    font-weight: 900;
    font-size: 50px;
    color: #333;
    line-height: 1; }
  .news_sec .headline {
    font-weight: 900;
    font-size: 20px;
    color: #00aa9d;
    margin-bottom: 40px; }
  .news_sec .news_flBox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
  .news_sec .news_flBox .col_l {
    width: 30%;
    text-align: center; }
  .news_sec .news_flBox .col_r {
    width: 65%; }

@media only screen and (max-width: 800px) {
  .news_sec {
    padding: 60px 0 60px 0;
    border: solid 1px #ccc; }
    .news_sec .news_btn {
      width: 250px;
      line-height: 1;
      height: 50px;
      background: #00aa9d;
      color: #fff;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      border-radius: 25px;
      margin: auto;
      margin-top: 50px; }
    .news_sec .en {
      font-weight: 900;
      font-size: 50px;
      color: #333;
      line-height: 1; }
    .news_sec .headline {
      font-weight: 900;
      font-size: 20px;
      color: #00aa9d;
      margin-bottom: 40px; }
    .news_sec .news_flBox {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between; }
    .news_sec .news_flBox .col_l {
      width: 100%;
      text-align: center; }
    .news_sec .news_flBox .col_r {
      width: 100%; } }
.grecaptcha-badge {
  visibility: hidden; }
