@charset "utf-8";


@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');

body {
  font-family: 'Noto Sans JP', sans-serif;
}

.ja {
  font-family: 'Noto Sans JP', sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');
.en{
  font-family: 'Poppins', sans-serif;
}


@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;500;700&display=swap');

.lato {
  font-family: 'Lato', sans-serif;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

.pop {
  font-family: 'Poppins', sans-serif;
}
.common_inner {
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 1250px) {
  .common_inner {
    max-width: 90%;
  }
}
@media screen and (max-width: 498px) {
  .common_inner {
    max-width: 93%;
  }
}
.wide_width {
  width: 1720px;
  margin: 0 auto;
}

@media screen and (max-width: 1800px) {
  .wide_width {
    width: 95%;
  }
}

@media screen and (max-width: 498px) {
  .wide_width {
    width: 90%;
  }
}





p, h1, h2, h3, h4, span {
  color: #000;
}
.c_000 {
  color: #000;
}

.c_fff {
  color: #fff;
}

.c_orange {
  color: #f89265
}

.c_brown {
  color: #845124;
}

.c_gray {
  color: #6E6E6E;
}

.bg_000 {
  background: #000;
}

.bg_gray {
  background: #6E6E6E
}

.bg_green {
  background: #ACB864;
}

.bg_blue {
  background: #64B5B8;
}



a {
  color: #000;
}

a:hover {
  opacity: 0.8;
}

a:valid {
  color: #000
}




.sp {
  display: none !important;
}

.bg_img {
  background-image: url("../../img/");
  background-size: contain;
  background-repeat: no-repeat;


}

/*-------------------common_eara------------------------*/


.border_t {
  border-top: 1px solid;
}

.border_b {
  border-bottom: 1px solid;
}

.btn_radi {
  border-radius: 30px;
  padding: 6px;
  font-size: 1.25em;
  text-align: center;
  border: 1px solid;
  margin-top: 25px;
}


.bg_img {
  background-image: url("../img/bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;


}

.sp_br {
  display: none;
}

  /* トグルボタン */
  #togglenav {
    display: none;
  }


@media (max-width: 768px) {

  /*-------------------sp_humbrger_eara------------------------*/
  /*--
<input type="checkbox" id="togglenav">
    <label for="togglenav" class="togglenav-btn"><span class="top-bar"></span>
  <span class="center-bar"></span>
  <span class="under-bar"></span> </label>
    <label for="togglenav" class="togglenav-bg"></label>
    <nav class="drawer">
      <ul class="drawer-menu">
        <li class="drawer-menu-item">
          <a href="#article1">content1</a>
        </li>
        <li class="drawer-menu-item">
          <a href="#article2">content2</a>
        </li>
        <li class="drawer-menu-item">
          <a href="#article3">content3</a>
        </li>
        <li class="drawer-menu-item">
          <a href="#article4">content4</a>
        </li>
        <li class="drawer-menu-item">
          <a href="#article5">content5</a>
        </li>
      </ul>
    </nav>
-----*/


  #togglenav:checked+.togglenav-btn {
    background-color: ;
  }



  #togglenav:checked~.togglenav-bg {
    pointer-events: auto;
    background-color: rgba(0, 0, 0, 0.3);
  }

  .togglenav-btn {
    cursor: pointer;
    position: fixed;
    top: 10px;
    right: 0px;
    z-index: 2;
    width: 50px;
    height: 50px;
    color: #fff;

    line-height: 50px;
    text-align: center;
    -webkit-transition: background-color .6s, -webkit-transform .6s;
    transition: background-color .6s, transform .6s;
  }



  /* トグルを押した際の背景 */
  .togglenav-bg {
    cursor: pointer;
    position: fixed;
    top: 0px;
    right: 0px;
    pointer-events: none;
    z-index: 1;
    width: 100%;
    height: 100%;
    transition: background-color .6s;
  }

  /* ドロワーメニュー */
  .drawer {
    z-index: 1;
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    background-color: white;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: -webkit-transform .4s;
    transition: transform .4s;
  }

  .drawer .drawer-menu {
    padding: 0;
    list-style-type: none;
  }

  .drawer .drawer-menu .drawer-menu-item {
    font-size: 14px;
  }

  .drawer .drawer-menu .drawer-menu-item a {
    display: block;
    padding: 1em 2em;
    text-decoration: none;
    transition: background-color 0.4s;
    cursor: pointer;
  }

  .drawer .drawer-menu .drawer-menu-item a:hover {
    background-color: #eee;
    color: #666;
  }

  .drawer .drawer-menu .drawer-menu-item a:before {
    font-weight: 900;
    font-size: 1em;
    margin: 0 0.5em 0 0;
  }

  #togglenav:checked~.drawer {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }



  /*** ハンバーガー　メニューボタンの三本線（共通） ***/
  .menu-btn span {
    position: absolute;
    width: 40%;
    /*線の長さ*/
    height: 2px;
    /*線の太さ*/
    left: calc(50% - 40% / 2);
    background: #1F4095;
    transition: .4s;
  }

  /* 順に上・中・下の線 */
  .top-bar {
    top: calc(35% - 2px / 2);
    /*上から35%の位置*/
  }

  .center-bar {
    top: calc(50% - 2px / 2);
    /*上から50%の位置*/
  }

  .under-bar {
    top: calc(65% - 2px / 2);
    /*上から65%の位置*/
  }

  /** クリック後(✔が入った後)の線 **/
  /*上の線*/
  #togglenav:checked~.menu-btn>.top-bar {
    top: calc(50% - 2px / 2);
    /*中央*/
    transform: rotate(45deg);
    /*45度回転*/
  }

  /*中の線*/
  #togglenav:checked~.menu-btn>.center-bar {
    opacity: 0;
    /*真ん中の線は透過*/
  }

  /*下の線*/
  #togglenav:checked~.menu-btn>.under-bar {
    top: calc(50% - 2px / 2);
    /*中央*/
    transform: rotate(-45deg);
    /*-45度回転*/
  }

  /*** チェックボックスは非表示に ***/
  #togglenav {
    display: none;
  }


  /*-------------------sp_humbrger_eara------------------------*/


  .sp_br {
    display: block;
  }

  .sp {
    display: block !important;
  }

  .pc {
    display: none !important;
  }

  .sp_br {
    display: block;
  }

  .pc_br {
    display: none;
  }

  img {
    width: 100%;
  }



}



/*! destyle.css v2.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */

/* Reset box-model and set borders */
/* ============================================ */

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}


*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */

html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-tap-highlight-color: transparent;
  /* 3*/
}

/* Sections */
/* ============================================ */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */

dt {
  float: left;
  clear: left;
  margin-right: 0.5em;
  font-weight: 100;
}

dd {
  float: left;
  margin-left: 1em;
}

/* Grouping content */
/* ============================================ */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */

/**
 * Remove the gray background on active links in IE 10.
 */

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

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content */
/* ============================================ */

/**
 * Prevent vertical alignment issues.
 */

img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */

/**
 * Reset form fields to make them styleable
 */

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */

[type="checkbox"] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type="radio"] {
  -webkit-appearance: radio;
  appearance: radio;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

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

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

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

button[disabled],
[type="button"][disabled],
[type="reset"][disabled],
[type="submit"][disabled] {
  cursor: default;
}

/**
 * Remove the inner border and padding in Firefox.
 */

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

/**
 * Restore the focus styles unset by the previous rule.
 */

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

/**
 * Remove arrow in IE10 & IE11
 */

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

/**
 * Remove padding
 */

option {
  padding: 0;
}

/**
 * Reset to invisible
 */

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

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

/**
 * 1. Correct the outline style in Safari.
 */

[type="search"] {
  outline-offset: -2px;
  /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Clickable labels
 */

label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */

[contenteditable] {
  outline: none;
}

/* Table */
/* ============================================ */

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

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* Misc */
/* ============================================ */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/

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

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

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

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

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

input, select {
  vertical-align: middle;
}

@media all and (-ms-high-contrast: none) {
  section h1 {
    line-height: 2em;
  }
}