@charset "UTF-8";

/*------------------------------------------------------------
共通
------------------------------------------------------------*/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
object,
iframe,
pre,
code,
p,
blockquote,
form,
fieldset,
legend,
table,
th,
td,
caption,
tbody,
tfoot,
thead,
article,
aside,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
audio,
video,
canvas,
main {
  margin: 0;
  padding: 0;
}

article,
aside,
figure,
figcaption,
footer,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

html {
  font-size: 10px;
  overflow-y: scroll;
  * overflow-x: hidden;
  _overflow: auto;
  width: 100%;
  min-height: 100%;
}

body {
  width: 100%;
  min-height: 100%;
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", 游明朝, YuMincho, "Sawarabi Mincho", メイリオ, Meiryo, sans-serif;
  font-size: 1.6rem;
  line-height: 1.4;
  color: #555;
  font-weight: 400;
  letter-spacing: 0.2em;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

dt,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: 400;
}

ol,
ul,
li {
  list-style: none;
  zoom: 1;
  overflow: hidden;
}

table {
  font-size: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  text-align: left;
  vertical-align: top;
  font-weight: 400;
}

dl,
dt,
dd {
  zoom: 1;
  overflow: hidden;
}

fieldset {
  border: none;
}

input,
textarea,
select,
label {
  font-size: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  vertical-align: middle;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}

input {
  cursor: pointer;
}

button {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", 游明朝, YuMincho, "Sawarabi Mincho", メイリオ, Meiryo, sans-serif;
  cursor: pointer;
}

label {
  cursor: pointer;
}

textarea {
  overflow: auto;
}

legend {
  display: none;
}

img {
  max-width: 100%;
  border: none;
  vertical-align: middle;
}

object {
  vertical-align: middle;
  outline: none;
}

p {
  line-height: 1.8;
}

em {
  font-style: normal;
}

b,
strong {
  font-weight: 400;
}

small {
  font-size: 100%;
}

i {
  font-style: normal;
}

u {
  text-decoration: none;
}

abbr,
acronym {
  border: none;
  font-variant: normal;
}

address,
caption,
cite,
code,
dfn,
var {
  font-weight: normal;
  font-style: normal;
}

sup {
  font-size: 1em;
  vertical-align: text-top;
}

sub {
  font-size: 1em;
  vertical-align: text-bottom;
}

hr {
  display: none;
}

div:focus,
img:focus,
textarea:focus,
a:focus,
button:focus,
input:focus {
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

/*------------------------------------------------------------
フェードイン
------------------------------------------------------------*/
/* 上からフェードイン */
.slide-top {
  opacity: 0;
  -webkit-transform: translate(0, -20px);
  -moz-transform: translate(0, -20px);
  -ms-transform: translate(0, -20px);
  -o-transform: translate(0, -20px);
  transform: translate(0, -20px);
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

/* 下からフェードイン */
.slide-bottom {
  opacity: 0;
  -webkit-transform: translate(0, 80px);
  -moz-transform: translate(0, 80px);
  -ms-transform: translate(0, 80px);
  -o-transform: translate(0, 80px);
  transform: translate(0, 80px);
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

/* 左からフェードイン */
.slide-left {
  opacity: 0;
  -webkit-transform: translate(-20px, 0);
  -moz-transform: translate(-20px, 0);
  -ms-transform: translate(-20px, 0);
  -o-transform: translate(-20px, 0);
  transform: translate(-20px, 0);
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

/* 右からフェードイン */
.slide-right {
  opacity: 0;
  -webkit-transform: translate(20px, 0);
  -moz-transform: translate(20px, 0);
  -ms-transform: translate(20px, 0);
  -o-transform: translate(20px, 0);
  transform: translate(20px, 0);
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

#wrapper {
  width: 100%;
}

/*------------------------------------------------------------
header
------------------------------------------------------------*/
header {
  position: relative;
  zoom: 1;
  overflow: initial;
  z-index: 100;
}

header h1 {
  float: left;
  padding: 10px 0 10px 30px;
}

header p {
  display: none;
}

header ul {
  height: 90px;
  float: right;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: initial;
  z-index: 100;
}


header ul li {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", 游明朝, YuMincho, "Sawarabi Mincho", メイリオ, Meiryo, sans-serif;
  font-size: 1.4rem;
  text-align: center;
}

header ul li span {
  font-size: 1rem;
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", 游明朝, YuMincho, "Sawarabi Mincho", メイリオ, Meiryo, sans-serif;
  height: 0;
  display: block;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

header ul a {
  display: block;
  padding: 0 25px;
}


header ul a:hover span {
  height: auto;
  opacity: 1;
}

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

  header h1 {
    padding: 10px 20px;
    min-height: 60px;
  }

  header h1 img {
    height: 40px;
    width: auto;
  }

  header p {
    position: fixed;
    right: 0px;
    top: 0;
    z-index: 10;
    /* background: #fff; */
    padding: 20px 15px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    z-index: 101;
    display: block;
  }

  header p span {
    text-align: center;
    width: 30px;
    height: 2px;
    display: block;
    background: #555;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }


  header p span:nth-of-type(2) {
    margin: 5px 0;
  }


  header p.on span {
    background: #000;
  }

  header p.on span:nth-of-type(1) {
    -webkit-transform: translate(30px, 5px) rotate(45deg);
    -moz-transform: translate(30px, 5px) rotate(45deg);
    -ms-transform: translate(30px, 5px) rotate(45deg);
    -o-transform: translate(30px, 5px) rotate(45deg);
    transform: translate(30px, 5px) rotate(45deg);
  }

  header p.on span:nth-of-type(2) {
    display: none;
  }

  header p.on span:nth-of-type(3) {
    -webkit-transform: translate(0px, 5px) rotate(135deg);
    -moz-transform: translate(0px, 5px) rotate(135deg);
    -ms-transform: translate(0px, 5px) rotate(135deg);
    -o-transform: translate(0px, 5px) rotate(135deg);
    transform: translate(0px, 5px) rotate(135deg);
  }

  header ul {
    width: 100vw;
    min-height: 100vh;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10vw;
    text-align: center;
    position: fixed;
    top: 0;
    right: -100%;
    background: #fff;
    opacity: 0;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    z-index: 100;
    float: none;
    display: block;
  }

  header ul a {
    padding: 5vh 0;
  }
}

header.on ul {
  right: 0%;
  opacity: 1;
}

header.on p span {
  position: relative;
}

header.on p span:nth-of-type(2) {
  display: none;
}

header.on p span:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}

header.on p span:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  bottom: -5px;
}


.header_li {
  position: relative;
  overflow: initial;
}

.header_child {
  display: block;
  position: absolute;
  opacity: 0;
  -webkit-transition: all .2s ease-in .05s;
  -moz-transition: all .2s ease-in .05s;
  -o-transition: all .2s ease-in .05s;
  transition: all .2s ease-in .05s;
  max-height: 0;
  overflow: hidden;
  z-index: -1;
  width: 120%;
  height: auto;
  background-color: #000;
}

.header_child ul {
  float: inherit;
  display: block;
  height: auto;
  overflow: initial;
  padding-top: 20px;
}

.header_child ul li {
  margin-bottom: 6px;
  text-align: left;
  font-size: 14px;
}

.header_li:hover .header_child {
  opacity: 1;
  z-index: 10;
  height: auto;
  overflow: inherit;
  -webkit-transition: all .2s ease-in .05s;
  -moz-transition: all .2s ease-in .05s;
  -o-transition: all .2s ease-in .05s;
  transition: all .2s ease-in .05s;
}

.header_li-sp {
  margin-bottom: 6px !important;
}

.header-sp {
  display: none !important;
}

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

/*------------------------------------------------------------
footer
------------------------------------------------------------*/
footer {
  margin-top: 100px;
  padding-top: 45px;
  padding-bottom: 55px;
  border-top: 1px solid #e8e3db;
  position: relative;
}

@media only screen and (max-width: 767px) {
  footer {
    margin-top: 50px;
  }
}

footer div {
  margin: 0 20px;
  position: relative;
  zoom: 1;
}

footer div>p {
  font-size: 1rem;
  -webkit-transform: rotate(90deg) translate(100%, 0);
  -moz-transform: rotate(90deg) translate(100%, 0);
  -ms-transform: rotate(90deg) translate(100%, 0);
  -o-transform: rotate(90deg) translate(100%, 0);
  transform: rotate(90deg) translate(100%, 0);
  -webkit-transform-origin: 100% 100%;
  -moz-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  -o-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
  position: absolute;
  right: 1.5%;
  top: 20px;
  letter-spacing: normal;
}

footer h1 {
  /* margin: 0 auto 20px; */
  padding: 10px 0 10px 30px;
  /* text-align: center; */
  /* width: 25%; */
  float: left;
  position: absolute;
}

@media only screen and (max-width: 767px) {
  footer h1 {
    margin: 0 auto;
    position: relative;
    float: inherit;
  }
}

.footer-flex {
  /* display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex; */
  /* -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; */
}

.footer-flex-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  /* margin-left: 75px; */
  width: 1100px !important;
  margin: 0 auto;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.footer-list-fst {}

.footer-list-fst-nav {
  font-size: 1.4rem;
}

.footer-list-fst li p {
  font-size: 1.3rem;
}

.footer_li {
  font-size: 1.2rem;
  display: block;
}

.footer_nav {
  display: block;
  margin-bottom: 6px;
}

.footer-list-aft {
  margin-left: 35px;
  font-size: 1.4rem;

}

.footer-list-aft li {
  margin-bottom: 6px;
}

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

  footer h1 {
    padding-left: 0;
    text-align: center;
    margin-bottom: 25px;
  }

  .footer-list-aft {
    margin-left: 8px;
  }

  footer div {
    margin-left: 2.5%;
    margin-right: 2.5%;
  }

  .footer-flex-list {
    width: 95% !important;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

/*------------------------------------------------------------

ttl

------------------------------------------------------------*/
.ttl {
  position: relative;
  margin-bottom: 150px;
  height: 550px;
  top: 90px;
}

.ttl_read {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  top: 0;
  left: 50%;
  margin-left: -170px;
  width: 340px;
  height: 550px;
  text-align: center;
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", 游明朝, YuMincho, "Sawarabi Mincho", メイリオ, Meiryo, sans-serif;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background-color: rgba(255, 255, 255, 0.6);
}

.ttl_read article {
  width: 100%;
  position: relative;
}

.ttl_read span {
  font-size: 1rem;
}

.ttl_read h2 {
  color: #60958f;
  margin-bottom: 35px;
  font-size: 2.4rem;
  /* font-size: 3.2rem; */
}

.ttl_read h2 span {
  display: block;
  font-size: 1.4rem;
}

.ttl_read p {
  margin-bottom: 10px;
  font-size: 1.4rem;
  /* font-size: 1.7rem; */
}


/*------------------------------------------------------------

common

------------------------------------------------------------*/
.mt210 {
  margin-top: 210px !important;
}

.mt120 {
  margin-bottom: 120px !important;
}

@media only screen and (max-width: 767px) {
  .mt210 {
    margin-top: 150px !important;
  }

  .mt120 {
    margin-bottom: 90px !important;
  }
}

.fw-bold {
  display: inline-block !important;
  margin-top: 0 !important;
  font-weight: bold !important;
  font-size: inherit !important;
}

.common_ttl {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: bold;
  color: #60958f;
}

.common_ttl span {
  display: inline-block;
}

.common_wrap {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.text-small{
  font-size: 10px;
}

.text-medium{
  font-size: 12px;
}

.text-uline{
  text-decoration-line: underline;
  color: #60958f;
}

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

@media only screen and (max-width: 767px) {
  .common_wrap {
    max-width: 95%;
  }

  .ttl {
    top: 60px;
  }
}

@media screen and (max-width: 767px) {
  header ul a {
    padding: 0;
  }

  header #mb-menu.open {
    display: block !important;
    right: 0 !important;
    opacity: 1 !important;
  }

  header #mb-menu {
    padding-top: 105px;
  }

  header #mb-menu li {
    margin-bottom: 20px;
    text-align: left;
  }

  header #mb-menu li a span {
    opacity: 1;
    display: none;
  }

  .header_child {
    display: none;
  }
}

/*------------------------------------------------------------

profile

------------------------------------------------------------*/
.profile {
  display: inline-block;
  margin: 100px auto;
  border: 1px solid #e8e3db;
  padding: 30px;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 900px
}

@media only screen and (max-width: 767px) {
  .profile {
    display: block;
    width: -webkit-calc(100% - 40px);
    width: -moz-calc(100% - 40px);
    width: calc(100% - 40px);
    left: auto;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    margin: 50px auto;
  }
}

.profile h4 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.profile article {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.2rem;
}

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

.profile figure {
  width: 180px;
  padding-left: 30px;
}

@media only screen and (max-width: 767px) {
  .profile figure {
    padding: 0;
    margin: 30px auto 0;
    width: 100px;
  }
}

.profile figure img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.profile figcaption {
  text-align: center;
  font-size: 1rem;
}


