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

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

html {
  font-size: 62.5%;
}

body {
  -webkit-text-size-adjust: 100%;
}

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

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

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

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

img {
  vertical-align: top;
}

a,
a img {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

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

a:hover,
a:hover img {
  opacity: 0.80;
  filter: alpha(opacity=80);
  -ms-filter: "alpha(opacity=80)";
}

img {
  max-width: 100%;
}

.sp-only {
  display: none;
}

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

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Layout .l-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
/* Header
------------------------------------------------------------*/
.c-header {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  padding: 20px;
  position: absolute;
  z-index: 1000;
  width: 100%;
  top: 0;
}

/*.c-header__logo img {
  width: 312px;
  height: 60px;
}*/

/* Main menu
------------------------------------------------------------*/
.c-gnav li {
  display: inline-block;
}

.c-gnav li + li {
  margin-left: 20px;
}

.c-gnav a {
  font-size: 1.6rem;
  text-transform: capitalize;
}

.c-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background-color: #c1272d;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  z-index: 1000;
  cursor: pointer;
}

@media only screen and (max-width: 767px) {
  .c-menu {
    position: fixed;
  }
}

.c-menu__icon {
  width: 35px;
  height: 4px;
  background-color: #ffffff;
  position: absolute;
  transition: background-color .5s ease, -webkit-transform .2s ease;
  -webkit-transition: background-color .5s ease, -webkit-transform .2s ease;
  transition: transform .2s ease, background-color .5s ease;
  transition: transform .2s ease, background-color .5s ease, -webkit-transform .2s ease;
}

.c-menu__icon:nth-child(1) {
  top: 16px;
}

.c-menu__icon:nth-child(2) {
  top: 27px;
}

.c-menu__icon:nth-child(3) {
  top: 38px;
}

body.menu-open .c-menu__icon {
  top: 28px;
}

body.menu-open .c-menu__icon:nth-child(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

body.menu-open .c-menu__icon:nth-child(2) {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

body.menu-open .c-menu__icon:nth-child(3) {
  display: none;
}

body.menu-open .c-headersp {
  right: 0;
}

/*------------------------------------------------------------
footer
------------------------------------------------------------*/
.c-footer {
  padding: 25px 0px;
  background: #F4F4C2;
  color: #333333;
}

.c-footer1__inner {
  width: 1366px;
  margin: 0 auto;
  padding: 0 30px;
}

@media only screen and (max-width: 1365px) {
  .c-footer1__inner {
    width: 100%;
  }
}

.c-footer1__text{
  padding-top: 20px;
}

.c-footer1__text h4{
  font-size: 1.8rem;
  line-height: 1.2;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: bold;
  color: #333333;
  padding-bottom: 5px;
}

.c-footer1__text p{
  font-size: 1.6rem;
  line-height: 1.625;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: normal;
  color: #333333;
}

@media only screen and (max-width: 767px) {
  .c-footer1__text p{
    font-size: 1.4rem;
  } 
}

@media only screen and (max-width: 767px) {
  .c-footer1__logo{
    text-align: center;
  }
}

/*------------------------------------------------------------
sidebar
------------------------------------------------------------*/
/* Breadcrumb
------------------------------------------------------------*/
/* layout
------------------------------------------------------------*/
body {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}

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

.l-container {
  width: 1000px;
  margin: 0 auto;
}

@media only screen and (max-width: 1024px) {
  .l-container {
    width: 100%;
  }
}

.c-mainvisual {
  padding-top: 56.25%;
  color: #fff;
  position: relative;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .c-mainvisual {
    padding-top: 0;
  }
}

@media only screen and (max-width: 767px) {
  .c-mainvisual {
    height: 100%;
  }
}

.c-mainvisual__inner {
  position: absolute;
  top: 0;
  left: 0;
}

@media only screen and (max-width: 767px) {
  .c-mainvisual__inner {
    position: relative;
    width: 100%;
    height: 100%;
  }
}

.c-mainvisual video {
  width: 100%;
  height: 100%;
}

.c-mainvisual img {
  display: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media only screen and (max-width: 767px) {
  .c-mainvisual img {
    display: block;
  }
}

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Component .c-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
/*------------------------------------------------------------
btn
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.c-btn1 {
  width: 500px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F28E1E;
  font-family: 'Mochiy Pop One', sans-serif;
  font-size: 2rem;
  line-height: 1.3;
  color: #ffffff;
  border-radius: 10px;
  border: 1px solid #ffffff;
  box-sizing: border-box;
  text-shadow: 3px 3px 3px #333333;
  cursor: pointer;
}

@media only screen and (max-width: 767px) {
  .c-btn1 {
    width: 100%;
    font-size: 1.8rem;
  }
}

.c-btn2{
  width: 100%;
  height: 80px;
  background-color: #39B04A;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-size: 2.4rem;
  line-height: 1.08333333333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Mochiy Pop One', sans-serif;
  border-radius: 5px;
  text-shadow: 3px 3px 3px #333333;
  margin-bottom: 25px;
  cursor: pointer;
}

@media only screen and (max-width: 767px) {
  .c-btn2{
    font-size: 1.8rem;
  }
}

.c-btn__top{
  position: fixed;
  z-index: 1000;
  bottom: 30px;
  right: 20px;
  opacity: 0;
  display: block;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition: all 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}

.c-btn__top--none{
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

/*------------------------------------------------------------
title
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.c-title1{
  width: 100%;
  text-align: center;
  padding-bottom: 20px;
}

.c-title2{
  font-family: 'Noto Serif JP',serif;
  font-size: 3rem;
  line-height: 1.75;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

@media only screen and (max-width: 1365px) {
  .c-title2{
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .c-title2{
    font-size: 2rem;
  }
}

.c-title2--diff{
  width: 1316px;
  margin: 0 auto;
}
@media only screen and (max-width: 1365px) {
  .c-title2--diff{
    width: calc(100% - 40px);
  }
}

.c-title2:before{
  content: "";
  position: absolute;
  top: 53%;
  left: 0;
  transform: translateY(-50%);
  height: 10px;
  background-color: #F7E921;
  width: 100%;
  z-index: -1;
}

@media only screen and (max-width: 767px) {
  .c-title2:before{
    height: 5px;
  }
}

.c-title2--diff1:before{
  z-index: 0;
}
.c-title2--diff2:before{
  top: 32%;
}
.c-title2 h3{
  display: inline-block;
  max-width: 320px;
  width: 100%;
  background: #ffffff;
}

@media only screen and (max-width: 767px) {
  .c-title2 h3{
    max-width: 220px;
  }
}

.c-title2--diff1 h3{
  background: #F4F4C2;
  position: relative;
}

.c-title2--diff2 h3{
  max-width: 340px;
}

.c-title2--diff3 h3{
  max-width: 420px;
}

@media only screen and (max-width: 767px) {
  .c-title2--diff3 h3{
    max-width: 285px;
  }
}

.c-title2 h3 span{
  display: block;
}

.c-title2 h3 span:nth-child(2){
  font-size: 2.4rem;
  line-height: 1.75;
}

.c-title3 {
  font-family: rocknroll-one, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 4rem;
  line-height: 0.65;
  color: #333333;
  position: relative;
}

@media only screen and (max-width: 1399px) {
  .c-title3 {
    font-size: 3rem;
    line-height: 1.5;
  }
}

.c-title3:before {
  content: "";
  background: url("../img/top2_line1.png") no-repeat;
  width: 366px;
  height: 12px;
  left: 0;
  bottom: -35px;
  position: absolute; 
}

@media only screen and (max-width: 767px) {
  .c-title3:before {
    max-width: 100%;
    background-size: contain;
    bottom: -20px;
  }
}

.c-title3--diff{
  font-size: 3.8rem;
}
/*------------------------------------------------------------
icon
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
form
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
text
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
navi
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
img
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
list
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
table
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
line
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
video
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
video
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
post
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.c-post1 {
  width: 32%;
  margin-bottom: 30px;
}

@media only screen and (max-width: 1024px) {
  .c-post1 {
    width: 49%;
  }
}

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

.c-post1 iframe {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.c-post1:nth-child(3n+2) {
  margin: 0 2%;
}

@media only screen and (max-width: 1024px) {
  .c-post1:nth-child(3n+2) {
    margin: 0 0 30px;
  }
}

@media only screen and (max-width: 1024px) {
  .c-post1:nth-child(2n) {
    margin-left: 2%;
  }
}

@media only screen and (max-width: 1024px) and (max-width: 767px) {
  .c-post1:nth-child(2n) {
    margin-left: 0%;
    margin-bottom: 30px;
  }
}

.c-post1__video {
  padding-top: 56.25%;
  position: relative;
  transition: transform 0.5s, -webkit-transform 0.5s;
  display: block;
}

.c-post1__video:hover {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  z-index: 2;
  opacity: 1;
}

.c-post1__title {
  font-size: 2.1rem;
  line-height: 1.2;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 600;
  font-style: normal;
  padding: 15px 0px;
}

@media only screen and (max-width: 767px) {
  .c-post1__title {
    font-size: 1.9rem;
  }
}

.c-post1__text {
  font-size: 1.5rem;
  line-height: 1.2;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.c-post2 {
  margin-bottom: 70px;
  width: 32.5%;
}

.c-post2 a {
  opacity: 1;
}

.c-post2 a:hover img {
  opacity: 1;
}

.c-post2 iframe {
  display: none;
}

.c-post2:nth-child(3n+2) {
  margin: 0 1.25% 50px;
}

@media screen and (max-width: 1365px) {
  .c-post2:nth-child(3n+2) {
    margin: 0 0px 50px;
  }
}

@media screen and (max-width: 1365px) {
  .c-post2 {
    width: 49%;
  }
  .c-post2:nth-child(2n+1) {
    margin-right: 2%;
  }
}

@media screen and (max-width: 1365px) and (max-width: 959px) and (orientation: landscape) {
  .c-post2:nth-child(2n+1) {
    margin-right: 0;
  }
}

@media screen and (max-width: 959px) and (orientation: portrait) {
  .c-post2 {
    position: relative;
    width: 100%;
    margin-bottom: 12vw;
  }
  .c-post2:nth-child(2n+1) {
    margin-right: 0;
  }
}

@media screen and (max-width: 959px) and (orientation: portrait) {
  .c-post2--diff {
    position: relative;
    width: 49%;
    margin-bottom: 2%;
  }
  .c-post2--diff:nth-child(2n+1) {
    margin-right: 2%;
  }
}

@media screen and (max-width: 959px) and (orientation: landscape) {
  .c-post2 {
    position: relative;
    width: 100%;
    margin-bottom: 8vw;
  }
}

@media screen and (max-width: 812px) and (orientation: landscape) {
  .c-post2 {
    margin-bottom: 8vw;
  }
}

@media screen and (max-width: 767px) {
  .c-post2--diff:nth-child(3n+2){
    margin-bottom: 2%;
  }
}

@media screen and (max-width: 767px) {
  .c-post2--diff:last-child{
    margin-bottom: 50px;
  }
}

.c-post2__link:hover {
  opacity: 1;
}

.c-post2__link:hover img {
  opacity: 0;
}

.c-post2__link:hover .c-post2__video {
  opacity: 1;
}

@media screen and (max-width: 959px) and (orientation: portrait) {
  .c-post2__link {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
  }
}

@media screen and (max-width: 959px) and (orientation: landscape) {
  .c-post2__link {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
  }
}

.c-post2__image {
  transition: transform 0.5s, -webkit-transform 0.5s;
  opacity: 1;
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
}

.c-post2__image:hover {
  z-index: 2;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

@media screen and (max-width: 959px) and (orientation: portrait) {
  .c-post2__image {
    width: 35vw;
    padding-top: 20%;
  }
}


@media screen and (max-width: 959px) and (orientation: portrait) {
  .c-post2--diff .c-post2__image {
    width: 100%;
    padding-top: 56.25%;
  }
}

@media screen and (max-width: 959px) and (orientation: landscape) {
  .c-post2__image {
    width: 35vw;
    padding-top: 20%;
  }
}

@media screen and (max-width: 959px) and (orientation: landscape) {
  .c-post2--diff .c-post2__image {
    width: 100%;
    padding-top: 56.25%;
  }
}

.c-post2__image img {
  position: absolute;
  width: 100%;
  top: 0;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}

@media screen and (max-width: 959px) and (orientation: portrait) {
  .c-post2__cnt{
    width: calc(100% - 35vw);
  }
}

@media screen and (max-width: 959px) and (orientation: landscape) {
  .c-post2__cnt{
    width: calc(100% - 35vw);
  }
}

@media screen and (max-width: 959px) and (orientation: portrait) {
  .c-post2--diff1 .c-post2__cnt{
    width: 100%;
  }
}

@media screen and (max-width: 959px) and (orientation: landscape) {
  .c-post2--diff1 .c-post2__cnt{
    width: 100%;
  }
}

.c-post2__title {
  font-size: 2.1rem;
  line-height: 1.2;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 600;
  font-style: normal;
  padding: 15px 0px;
}

@media screen and (max-width: 959px) and (orientation: portrait) {
  .c-post2__title {
    box-sizing: border-box;
    width: 59vw;
    padding-top: 0;
    font-weight: 400;
    font-size: 20px;
    padding-left: 6vw;
  }
}

@media screen and (max-width: 959px) and (orientation: landscape) {
  .c-post2__title {
    box-sizing: border-box;
    width: 59vw;
    padding-top: 0;
    font-weight: 400;
    font-size: 20px;
    padding-left: 6vw;
  }
}

@media screen and (max-width: 812px) and (orientation: landscape) {
  .c-post2__title {
    width: 51vw;
    font-size: 3vw;
    padding-left: 3vw;
  }
}

@media screen and (max-width: 959px) and (orientation: portrait) {
  .c-post2--diff1 .c-post2__title {
    padding-left: 0;
    padding-top: 20px;
  }
}

@media screen and (max-width: 959px) and (orientation: landscape) {
  .c-post2--diff1 .c-post2__title {
    padding-left: 0;
    padding-top: 20px;
  }
}

@media screen and (max-width: 812px) and (orientation: landscape) {
  .c-post2--diff1 .c-post2__title {
    padding-left: 0;
    padding-top: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .c-post2__title {
    font-size: 1.8rem;
    width: 100%;
    line-height: 1.5;
  }
}

.c-post2__title span:nth-child(1) {
  font-size: 1.5rem;
  line-height: 1.2;
  color: #333333;
  font-weight: 500;
  font-family: "Meiryo";
  border-bottom: 1px solid #c1272d;
  padding-bottom: 5px;
}

.c-post2__title span:nth-child(2) {
  font-size: 1.2rem;
  line-height: 1.2;
  padding-top: 7px;
  font-weight: 500;
  font-family: "Meiryo";
}

.c-post2__text {
  font-size: 1.5rem;
  line-height: 1.73333333333;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  font-style: normal;
}

@media screen and (max-width: 959px) and (orientation: portrait) {
  .c-post2__text {
    padding-left: 6vw;
  }
}

@media screen and (max-width: 959px) and (orientation: landscape) {
  .c-post2__text {
    padding-left: 6vw;
  }
}

@media screen and (max-width: 812px) and (orientation: landscape) {
  .c-post2__text {
    width: 51vw;
    padding-left: 3vw;
  }
}

@media screen and (max-width: 959px) and (orientation: portrait) {
  .c-post2--diff1 .c-post2__text {
    padding-left: 0;
  }
}

@media screen and (max-width: 959px) and (orientation: landscape) {
  .c-post2--diff1 .c-post2__text {
    padding-left: 0;
  }
}

@media screen and (max-width: 812px) and (orientation: landscape) {
  .c-post2--diff1 .c-post2__text {
    padding-left: 0;
  }
}

@media only screen and (max-width: 767px) {
  .c-post2__text {
    font-size: 1.4rem;
  }
}

.c-post2__video {
  z-index: 2;
  opacity: 0;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.c-post3{
  width: 430px;
  border: 1px solid #AEAEAE;
  border-radius: 10px;
  background-color: #EEEEEE;
  padding: 15px;
  margin-bottom: 30px;
}

.c-post3--diff{
  width: 455px;
}

.c-post3--diff1{
  margin-bottom: 0;
}

@media screen and (max-width: 1365px) {
  .c-post3 {
    width: 49%;
  }
  .c-post3:nth-child(2n+1) {
    margin-right: 2%;
  }
  .c-post3--diff1{
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .c-post3 {
    width: 100%;
  }
  .c-post3:nth-child(2n+1) {
    margin-right: 0;
  }
}

.c-post3 + .c-post3{
  margin-left: 15px;
}

@media screen and (max-width: 1365px) {
  .c-post3 + .c-post3{
    margin-left: 0px;
  }
}

.c-post3:nth-child(4n){
  margin-left: 0px;
}

.c-post3__title{
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  border-bottom: 1px solid #F28E1E;
  padding-bottom: 12px;
  color: #333333;
}

.c-post3__text{
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  padding-top: 10px;
  padding-bottom: 35px;
  color: #000000;
}

.c-post3--diff .c-post3__text{
  font-size: 1.4rem;
  line-height: 1.57142857143;
  padding-bottom: 25px;
  overflow: hidden;
  -webkit-line-clamp: 6;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  word-break: break-all;
  height: 167px;
}

@media only screen and (max-width: 767px) {
  .c-post3--diff .c-post3__text{
    height: auto;
    -webkit-line-clamp: inherit;
    overflow: inherit;
  }
}

.c-post3--diff1 .c-post3__text{
  font-size: 1.4rem;
  padding-top: 15px;
  padding-bottom: 25px;
  line-height: 1.57142857143;
}

.c-post3__audio{
  position: relative;
}

.c-post4{
  background-color: #ffffff;
  padding: 38px;
  margin-bottom: 20px;
  border-radius: 10px;
  -webkit-box-shadow: 2px 2px 5px 0px rgba(51,51,51,0.4);
  -moz-box-shadow: 2px 2px 5px 0px rgba(51,51,51,0.4);
  box-shadow: 2px 2px 5px 0px rgba(51,51,51,0.4);
}

.c-post4__question{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
}

.c-post4__question__left{
  margin-right: 15px;
}

@media screen and (max-width: 1024px) {
  .c-post4__question__left{
    width: 38px;
  }
}

.c-post4__question__right{
  font-family: noto-sans-cjk-jp, sans-serif;
  font-size: 1.5rem;
  line-height: 1.2;
  color: #0071B7;
}

@media screen and (max-width: 1024px) {
  .c-post4__question__right{
    width: calc(100% - 53px);
  }
}

.c-post4__answer{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.c-post4__answer__left{
  margin-right: 15px;
}

@media screen and (max-width: 1024px) {
  .c-post4__answer__left{
    width: 38px;
  }
}

.c-post4__answer__right{
  font-family: noto-sans-cjk-jp, sans-serif;
  font-size: 1.5rem;
  line-height: 1.2;
  color: #333333;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  .c-post4__answer__right{
    width: calc(100% - 53px);
  }
}

.c-post5{
  padding-right: 20px;
}

@media screen and (max-width: 480px) {
  .c-post5{
    padding-right: 0px;
  }
}

.c-post5__top{
  margin-bottom: 20px;
}

.c-post6 {
  width: 100%;
}

.c-post6 a {
  opacity: 1;
}

.c-post6 a:hover img {
  opacity: 1;
}

.c-post6 iframe {
  display: none;
}

.c-post6__link:hover {
  opacity: 1;
}

.c-post6__link:hover img {
  opacity: 0;
}

.c-post6__link:hover .c-post6__video {
  opacity: 1;
}

@media screen and (max-width: 959px) and (orientation: portrait) {
  .c-post6__link {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
  }
}

@media screen and (max-width: 959px) and (orientation: landscape) {
  .c-post6__link {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
  }
}

.c-post6__image {
  transition: transform 0.5s, -webkit-transform 0.5s;
  opacity: 1;
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
}

.c-post6__image:hover {
  z-index: 2;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.c-post6__image img {
  position: absolute;
  width: 100%;
  top: 0;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}

.c-post6__video {
  z-index: 2;
  opacity: 0;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/*------------------------------------------------------------
other
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.c-slideAll--top video {
  width: 100%;
  height: 100%;
}

.c-slide {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  width: 100%;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  display: none;
  background-color: #000;
}

.c-slide__close {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 1002;
}

.c-slide__close span {
  position: absolute;
  display: block;
}

.c-slide__close span:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-color: #fff;
}

.c-slide__close span:nth-child(1) {
  width: 100%;
  height: 3px;
  top: 13px;
  left: 0;
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transform: translateY(0.5px) scaleX(1);
  transform: translateY(0.5px) scaleX(1);
}

.c-slide__close span:nth-child(2) {
  width: 3px;
  height: 100%;
  top: 0;
  left: 13px;
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transform: translateX(0.5px) scaleY(1);
  transform: translateX(0.5px) scaleY(1);
}

.c-slide.isOn {
  display: -webkit-box;
  display: flex;
}

.c-slide iframe {
  height: calc(100% - 100px);
}

.drawer-nav {
  position: fixed;
  z-index: 110;
  top: 0;
  overflow: hidden;
  width: 450px;
  height: 100%;
  color: #ffffff;
  background-color: #060606;
  padding: 30px;
}

@media screen and (max-width: 1024px) {
  .drawer-nav {
    width: 60%;
  } 
}

.drawer--right .drawer-nav {
  right: -450px;
  -webkit-transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

@media screen and (max-width: 1024px) {
  .drawer--right .drawer-nav {
    right: -60%;
  }
}

.drawer--right.menu-open .drawer-nav {
  right: 0;
}

.drawer-nav h2 {
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 400;
  letter-spacing: 4px;
  font-family: garamond-premier-pro, serif;
  font-weight: 500;
  font-style: normal;
}

.drawer-menu {
  padding-top: 30px;
}

.drawer-menu li {
  padding-bottom: 15px;
}

.drawer-menu li a {
  font-size: 1.6rem;
  font-family: "Times New Roman", Times, serif;
  position: relative;
  padding-left: 15px;
}

.drawer-menu li a:before {
  content: "-";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.drawer-overlay {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.menu-open .drawer-overlay {
  display: block;
}

.inv {
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  opacity: 0;
}

.inv.active {
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  -webkit-transition: opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s, visibility 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s, -webkit-transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s;
  transition: opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s, visibility 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s, -webkit-transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s;
  transition: opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s, visibility 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s, transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s;
  transition: opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s, visibility 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s, transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s, -webkit-transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s;
}

.c-box{
  display: flex;
  flex-wrap: wrap;
}

.c-box--diff{
  padding-top: 30px;
}

.c-box__left{
  width: 140px;
  margin-right: 20px;
  border: 1px solid #ffffff;
  font-family: noto-sans-cjk-jp, sans-serif;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: 5px;
  height: 80px;
  color: #333333;
}

.c-box--diff .c-box__left{
  border: 1px solid #F6AB3B;
  width: 125px;
}

.c-box--diff1 .c-box__left{
  border: 1px solid #C7C7C7;
  background-color: #FBE9CE;
}

.c-box__right{
  width: calc(100% - 160px);
  display: flex;
  justify-content: center;
  flex-direction: column;
  color: #333333;
}

.c-box--diff .c-box__right{
  width: calc(100% - 145px);
}

.c-box__right p{
  font-family: noto-sans-cjk-jp, sans-serif;
  line-height: 1.42857142857;
  font-weight: 400;
  font-size: 1.4rem;
}

.c-box--diff .c-box__right p{
  font-size: 1.3rem;
}

.c-box__right p:first-child{
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1.2;
  padding-bottom: 5px;
}

/* Audio */
.pcast-player {
  width: 100%;
}

.pcast-player.pcast-player__hidden {
    position: unset;
}

p.pcast-player-sp {
    display: none;
}

.pcast-player__controls {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  height: 40px;
  margin: 0 auto;
  padding: 20px;
  /* overflow: hidden; */
  background: #000;
  color: #fff;
  font-size: 14px;
  position: relative;
}

.pcast-player__controls button span {
    display: none;
}

.pcast-player button {
    min-width: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pcast-play svg{
    height: 10px;
    margin-left: 5px;
}
.pcast-pause{
    display: none;
}
.pcast-pause svg{
    width: 10px;
    margin-left: 5px;
}

.pcast-mute svg{
    width: 15px;
    margin-right: 5px;
}
.pcast-mute .off{
    width: 8px;
    display: none;
}
.pcast-play {
    -webkit-appreance: none;
    display: inline-block;
    padding: 0;
    border: 0;
    border-radius: 2px;
    background: transparent;
    color: #fff;
    line-height: 22px;
}

.pcast-pause {
    display: none;
    padding: 0;
    border: 0;
    border-radius: 2px;
    background: transparent;
    color: #fff;
    line-height: 22px;
}

.pcast-progress {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    min-width: 50px;
    height: 13px;
}

.pcast-mute {
    padding: 0;
    border: 0;
    border-radius: 2px;
    background: transparent;
    color: #fff;
    line-height: 22px;
}

.pcast-currenttime {
    padding: 0 15px 0 6px;
}

.pcast-duration {
    padding: 0 12px 0 15px;
}

progress {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    appearance: none;
    appearance: none;
    width: calc(100% - 281px);
    height: 13px;
}

progress[value]::-webkit-progress-bar {
    border-radius: 0;
    background-color: #555;
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25) inset;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25) inset;
}

progress[value]::-webkit-progress-value {
    background: #fff;
}

/* pcast-volume */

.pcast-player button {
    height: 40px;
}
.pcast-box-volume {
    height: 120px;
    display: none;
    padding: 10px;
    background: rgba(0,0,0,0.8);
    position: absolute;
    top: -120px;
    right: 20px;
    z-index: 10;
}
@supports not (-webkit-touch-callout: none) {
    .pcast-box-volume:hover,
    .pcast-mute:hover + .pcast-box-volume {
        display: block;
    }
 }
.pcast-volume {
    writing-mode: bt-lr;
    -webkit-appearance: none;
    -webkit-appearance: slider-vertical;
    width: 10px;
    height: 100%;
    border-radius: 5px;
    background: #ffffff;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}
/* Firefox Overrides */
::-moz-range-track {
    background: #ffffff;
    border: 0;
}
input::-moz-focus-inner { 
  border: 0; 
}
.pcast-volume::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #00a99d;
    cursor: pointer;
}
.pcast-volume::-moz-range-thumb {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #00a99d;
    cursor: pointer;
}
.pcast-box-volume:hover .pcast-volume,
.pcast-mute:hover + .pcast-box-volume .pcast-volume,
.pcast-volume:hover {
    opacity: 1;
}
@media screen and (max-width: 1200px) {
    .pcast-box-volume {
        right: 0;
    }
}

.c-copyright{
  width: 1366px;
  margin: 0 auto;
  padding: 10px 30px 0px;
  font-size: 1.8rem;
  color: #333333;
  text-align: right;
  line-height: 1.44444444444;
  font-family: noto-sans-cjk-jp, sans-serif;
}

@media only screen and (max-width: 1365px) {
  .c-copyright{
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .c-copyright{
    padding: 20px 20px 0px;
    text-align: left;
    font-size: 1.4rem;
  }
}


/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Project .p-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
/*------------------------------------------------------------
Css of home page
------------------------------------------------------------*/
.p-top1{
  padding-bottom: 60px;
}

.p-top1__inner {
  width: 1366px;
  margin: 0 auto;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  padding: 40px 25px 0px;
}

@media only screen and (max-width: 1365px) {
  .p-top1__inner {
    width: calc(100% - 40px);
    padding: 30px 0px 0px;
  }
}

@media screen and (max-width: 959px) and (orientation: portrait) {
  .p-top1__inner {
    margin: 50px 0 0 0;
    box-sizing: border-box;
    width: 100%;
    padding: 0 20px;
  }
}

@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-top1__inner {
    margin-top: 50px;
    padding: 0px 20px 0px 20px;
    width: 100%;
  }
}

@media screen and (max-width: 959px) and (orientation: landscape) {
  .p-top1__inner {
    margin-top: 50px;
    box-sizing: border-box;
    width: 100%;
    padding: 0px 20px 0px 20px;
  }
}

@media screen and (max-width: 812px) and (orientation: landscape) {
  .p-top1__inner {
    margin-top: 10vw;
    padding-left: 10vw;
    padding-right: 10vw;
  }
}

.p-top1__wrapper {
  width: 100%;
  height: 100%;
  margin-top: 28px;
  position: relative;
}

@media only screen and (max-width: 1024px) {
  .p-top1__wrapper {
    padding: 30px 20px 0px;
  }
}

.p-top1__wrapper:before{
  content: "";
  position: absolute;
  height: calc(100% - 50px);
  width: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #F4F4C2;
  z-index: -1;
}

@media only screen and (max-width: 1024px) {
  .p-top1__wrapper:before{
    height: 100%;
  }
}

.p-top1__cnt{
  width: 100%;
}

.p-top1__list {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-top: 28px;
}

.p-top1__list--diff {
  padding-top: 0;
}

.p-top1__title{
  padding-top: 30px;
  padding-bottom: 20px;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: bold;
  text-align: center;
}

.p-top1__text{
  max-width: 975px;
  width: 100%;
  margin: 0 auto;
  font-size: 1.6rem;
  line-height: 1.75;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  padding-top: 5px;
  padding-bottom: 25px;
}

@media only screen and (max-width: 1100px) {
  .p-top1__text{
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .p-top1__text{
    font-size: 1.4rem;
  }
}

.p-top1__text--diff{
  width: 800px;
}

@media only screen and (max-width: 1100px) {
  .p-top1__text--diff{
    width: 100%;
  }
}

.p-top1__text--diff1{
  max-width: 1150px;
}

.p-top1__text a{
  color: #0000ff;
  font-weight: bold;
}

.p-top1__box{
  display: flex;
  flex-wrap: wrap;
  width: 860px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 1024px) {
  .p-top1__box{
    width: 100%;
  }
}

.p-top1__left{
  width: 500px;
  margin-right: 60px;
}

@media only screen and (max-width: 1024px) {
  .p-top1__left{
    width: 100%;
    margin-right: 0px;
  }
}

.p-top1__left h4{
  font-size: 2.1rem;
  line-height: 1.2;
  font-family: noto-sans-cjk-jp, sans-serif;
  color: #333333;
  font-weight: 600;
  padding-bottom: 25px;
  border-bottom: 2px solid #F29700;
}

@media only screen and (max-width: 767px) {
  .p-top1__left h4{
    font-size: 1.8rem;
  }
}

.p-top1__left__text{
  font-size: 1.6rem;
  line-height: 1.625;
  color: #333333;
  font-family: noto-sans-cjk-jp, sans-serif;
  padding-top: 40px;
  margin-bottom: 50px;
}

@media only screen and (max-width: 767px) {
  .p-top1__left__text{
    font-size: 1.4rem;
  }
}

.p-top1__right{
  width: 300px;
}

@media only screen and (max-width: 1024px) {
  .p-top1__right{
    padding: 30px 0px;
  }
}

.p-top1__link{
  opacity: 1;
}

.p-top1__link:hover{
  opacity: 1;
}

.p-top1__link:hover img{
  opacity: 1;
}

.p-top1__link:hover .p-top1__video{
  opacity: 1;
}

.p-top1__image{
  padding-top: 178.333333333%;
  position: relative;
  overflow: hidden;
  opacity: 1;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.p-top1__image img{
  position: absolute;
  width: 100%;
  top: 0;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}

.p-top1__video{
  z-index: 2;
  opacity: 0;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.p-top2__inner {
  position: relative;
}

.p-top2__cnt {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}

@media only screen and (max-width: 1100px) {
  .p-top2__cnt {
    width: 100%;
  }
}

.p-top2__left {
  width: 42.093704246%;
  position: relative;
  margin-bottom: 45px;
}

@media only screen and (max-width: 1100px) {
  .p-top2__left {
    width: 100%;
  }
}

.p-top2__left:before {
  content: "";
  position: absolute;
  background: url(../img/top2_image1.png) no-repeat right;
  background-size: cover;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: calc(100% + 225px);
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -2;
}

@media only screen and (max-width: 1100px) {
  .p-top2__left:before {
    display: none;
  }
}

.p-top2__left img {
  display: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media only screen and (max-width: 1100px) {
  .p-top2__left img {
    display: block;
  }
}

.p-top2__right {
  width: calc(100% - 42.093704246%);
  height: 750px;
  position: relative;
}

@media only screen and (max-width: 1100px) {
  .p-top2__right {
    width: 100%;
    height: auto;
    padding-top: 154px;
  }
}

.p-top2__image {
  position: absolute;
  top: 10px;
  z-index: 1;
  left: 300px;
}

@media only screen and (max-width: 1100px) {
  .p-top2__image {
    top: 45px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@media only screen and (max-width: 1100px) {
  .p-top2__image img {
    width: 187px;
  }
}

.p-top2__bottom {
  height: calc(100% - 155px);
  background-color: #f4f4c2;
  padding: 20px;
  position: absolute;
  bottom: 0;
}

@media only screen and (max-width: 1100px) {
  .p-top2__bottom {
    position: relative;
    height: 100%;
  }
}

.p-top2__box {
  border: 1px solid #aeaeae;
  height: 100%;
  padding: 50px;
  position: relative;
}

@media only screen and (max-width: 1365px) {
  .p-top2__box {
    padding: 25px;
  }
}

.p-top2__box:before {
  content: "";
  position: absolute;
  background: url("../img/top2_image3.png") no-repeat;
  background-size: cover;
  width: 110px;
  height: 182px;
  bottom: 13px;
  right: 13px;
}

@media only screen and (max-width: 1399px) {
  .p-top2__box:before {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    bottom: 0px;
    right: 0px;
  }
}

@media only screen and (max-width: 767px) {
  .p-top2__box:before {
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 13px;
  }
}

.p-top2__text {
  font-size: 1.7rem;
  font-family: m-plus-rounded-1c, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #333333;
  padding-top: 70px;
  padding-right: 135px;
  line-height: 1.58823529412;
}

@media only screen and (max-width: 1399px) {
  .p-top2__text {
    padding-right: 100px;
    padding-top: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .p-top2__text {
    padding-right: 0px;
  }
}

.p-top2__text + .p-top2__text {
  padding-top: 30px;
}

@media only screen and (max-width: 767px) {
  .p-top2__text + .p-top2__text {
    padding-bottom: 185px;
  }
}

.p-top2__btn {
  background-color: #f6ab3b;
  padding-bottom: 37px;
}

@media only screen and (max-width: 767px) {
  .p-top2__btn {
    padding: 0 20px 37px;
  }
}

.p-top2__btn p {
  font-size: 1.7rem;
  line-height: 1.52941176471;
  font-family: m-plus-rounded-1c, sans-serif;
  text-align: center;
  color: #333333;
  padding-top: 30px;
  padding-bottom: 25px;
}

.p-top3 {
  background: url("../img/top3_image4.png") no-repeat;
  background-size: cover;
  padding: 55px 0px 55px;
}

@media only screen and (max-width: 1024px) {
  .p-top3 {
    padding: 55px 20px 55px;
  }
}

.p-top3__title {
  width: 460px;
  margin: 0 auto;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .p-top3__title {
    width: 280px;
  }
}

.p-top3__title__top > img {
  position: absolute;
  z-index: 0;
  width: 100%;
}

.p-top3__title__top ul {
  display: -webkit-box;
  display: flex;
  position: relative;
  overflow: hidden;
}

.p-top3__title__top ul li {
  height: 90px;
  width: 60px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  letter-spacing: 3px;
  font-weight: 300;
  text-transform: uppercase;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  -webkit-transform: translate3d(-20%, -100%, 0);
  transform: translate3d(-20%, -100%, 0);
}

@media only screen and (max-width: 767px) {
  .p-top3__title__top ul li {
    height: 55px;
    width: 35px;
  }
}

@media only screen and (max-width: 767px) {
  .p-top3__title__top ul li img {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
}

@media only screen and (max-width: 767px) {
  .p-top3__title__top ul li:nth-child(2) img {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  .p-top3__title__top ul li:nth-child(3) img {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  .p-top3__title__top ul li:nth-child(4) img {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  .p-top3__title__top ul li:nth-child(5) img {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
  }
  .p-top3__title__top ul li:nth-child(6) img {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
  }
  .p-top3__title__top ul li:nth-child(7) img {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  .p-top3__title__top ul li:nth-child(8) img {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
}

.p-top3__title__top.active ul li:nth-child(1) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
  -webkit-animation-name: rampUp;
  animation-name: rampUp;
}

.p-top3__title__top.active ul li:nth-child(2) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-name: rampUp;
  animation-name: rampUp;
}

.p-top3__title__top.active ul li:nth-child(3) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  -webkit-animation-name: rampUp;
  animation-name: rampUp;
}

.p-top3__title__top.active ul li:nth-child(4) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-name: rampUp;
  animation-name: rampUp;
}

.p-top3__title__top.active ul li:nth-child(5) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  -webkit-animation-name: rampUp;
  animation-name: rampUp;
}

.p-top3__title__top.active ul li:nth-child(6) {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
  -webkit-animation-name: rampUp;
  animation-name: rampUp;
}

.p-top3__title__top.active ul li:nth-child(7) {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  -webkit-animation-name: rampUp;
  animation-name: rampUp;
}

.p-top3__title__top.active ul li:nth-child(8) {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  -webkit-animation-name: rampUp;
  animation-name: rampUp;
}

.p-top3__title__bottom {
  padding-top: 20px;
}

.p-top3__text {
  width: 800px;
  margin: 20px auto 0px;
  padding: 30px 48px;
  background-color: #ffffff;
  font-family: m-plus-rounded-1c, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.7rem;
  line-height: 1.52941176471;
  color: #333333;
  border: 2px solid #736357;
  box-sizing: border-box;
  border-radius: 10px;
  position: relative;
}

@media only screen and (max-width: 1024px) {
  .p-top3__text {
    width: 100%;
    padding: 30px 20px;
  }
}

.p-top3__text img {
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.p-top4 {
  padding: 75px 0px 36px;
}

@media only screen and (max-width: 1024px) {
  .p-top4 {
    padding: 30px 20px 50px;
  }
}

.p-top4__text{
  width: 800px;
  border: 1px solid #C7C7C7;
  padding: 25px 0px 30px;
  margin: 20px auto 30px;
  border-radius: 10px;
}

@media only screen and (max-width: 1024px) {
  .p-top4__text{
    width: 100%;
  }
}

.p-top4__text > p{
  font-family: m-plus-rounded-1c, sans-serif;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.52941176471;
  padding-bottom: 25px;
  color: #333333;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .p-top4__text > p{
    padding: 0 20px 25px;
  }
}

.p-top4__text .c-box{
  padding: 0px 128px;
}

@media only screen and (max-width: 767px) {
  .p-top4__text .c-box{
    padding: 0px 20px;
  }
}

.p-top4__cnt {
  position: relative;
  width: 700px;
  margin: 0 auto;
  padding-top: 1280px;
}

@media only screen and (max-width: 1024px) {
  .p-top4__cnt {
    width: 100%;
  }
}

@media only screen and (max-width: 699px) {
  .p-top4__cnt {
    padding-top: calc(1280px + 10vw);
  }
}

@media only screen and (max-width: 520px) {
  .p-top4__cnt {
    padding-top: calc(1280px + 20vw);
  }
}

@media only screen and (max-width: 460px) {
  .p-top4__cnt {
    padding-top: calc(1280px + 40vw);
  }
}

@media only screen and (max-width: 410px) {
  .p-top4__cnt {
    padding-top: calc(1280px + 70vw);
  }
}

@media only screen and (max-width: 365px) {
  .p-top4__cnt {
    padding-top: calc(1280px + 100vw);
  }
}

.p-top4__cnt iframe{
  position: absolute;
  top: 0;
}

.p-top4__bottom{
  width: 800px;
  margin: 40px auto 0px;
  padding: 23px 50px;
  border: 1px solid #bc272d;
  font-size: 1.6rem;
  line-height: 1.625;
  color: #333333;
  font-family: noto-sans-cjk-jp, sans-serif;
}

@media only screen and (max-width: 1024px) {
  .p-top4__bottom{
    width: 100%;
    padding: 20px;
  }
}

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

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

.p-top5{
  background-color: #F6AB3B;
  padding: 30px 0px;
}

.p-top5__inner{
  width: 545px;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .p-top5__inner{
    width: 100%;
    padding: 0 20px;
  }
}

.p-top5__inner > p{
  font-family: m-plus-rounded-1c, sans-serif;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.52941176471;
  padding-bottom: 25px;
  color: #333333;
}

.p-top6__wrapper {
  width: 100%;
  height: 100%;
  margin-top: 70px;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .p-top6__wrapper{
    padding: 70px 20px 0px;
    margin-top: 0px;
  }
}

@media screen and (max-width: 767px) {
  .p-top6__wrapper{
    padding: 35px 20px 0px;
    margin-top: 0px;
  }
}

.p-top6__wrapper:before{
  content: "";
  position: absolute;
  height: calc(100% - 50px);
  width: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #F4F4C2;
  z-index: -1;
}

@media screen and (max-width: 1024px) {
  .p-top6__wrapper:before{
    height: 100%;
  }
}

.p-top6__box{
  display: flex;
  flex-wrap: wrap;
  width: 860px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 1024px) {
  .p-top6__box{
    width: 100%;
  }
}

.p-top6__left{
  width: 500px;
  margin-right: 60px;
}

@media screen and (max-width: 1024px) {
  .p-top6__left{
    width: 100%;
    margin-right: 0px;
  }
}

.p-top6__left h4{
  font-size: 2.1rem;
  line-height: 1.2;
  font-family: noto-sans-cjk-jp, sans-serif;
  color: #333333;
  font-weight: 600;
  padding-bottom: 25px;
  border-bottom: 2px solid #F29700;
}

.p-top6__left__text{
  font-size: 1.6rem;
  line-height: 1.625;
  color: #333333;
  font-family: noto-sans-cjk-jp, sans-serif;
  padding-top: 80px;
  margin-bottom: 50px;
}

.p-top6__right{
  width: 300px;
}

@media screen and (max-width: 1024px) {
  .p-top6__right{
    padding: 30px 0px;
  }
}

.p-top6__link{
  opacity: 1;
}

.p-top6__link:hover{
  opacity: 1;
}

.p-top6__link:hover img{
  opacity: 1;
}

.p-top6__link:hover .p-top6__video{
  opacity: 1;
}

.p-top6__image{
  padding-top: 178.333333333%;
  position: relative;
  overflow: hidden;
  opacity: 1;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.p-top6__image img{
  position: absolute;
  width: 100%;
  top: 0;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}

.p-top6__video{
  z-index: 2;
  opacity: 0;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.p-top7__inner{
  width: 1366px;
  margin: 0 auto;
  padding: 40px 23px 0px;
}

@media screen and (max-width: 1365px) {
  .p-top7__inner{
    width: 100%;
  }
}

.p-top7__cnt{
  padding-top: 50px;
  padding-bottom: 20px;
}

.p-top7__list{
  display: flex;
  flex-wrap: wrap;
}

.p-top8{
  background-color: #F4F4C2;
  padding: 40px 0px 0px;
}

@media screen and (max-width: 1024px) {
  .p-top8{
    padding: 40px 20px 0px;
  }
}

.p-top8__inner{
  width: 925px;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .p-top8__inner{
    width: 100%;
  }
}

.p-top8__cnt{
  padding-top: 37px;
  padding-bottom: 20px;
}

.p-top8__list{
  display: flex;
  flex-wrap: wrap;
}

.p-top8__text{
  width: 510px;
  margin: 0 auto;
  font-size: 1.6rem;
  line-height: 1.75;
  font-family: noto-sans-cjk-jp, sans-serif;
  color: #000000;
  padding-top: 25px;
}

@media screen and (max-width: 767px) {
  .p-top8__text{
    width: 100%;
  }
}

.p-top9{
  padding: 70px 0px 98px;
  position: relative;
}

@media screen and (max-width: 1365px) {
  .p-top9{
    padding: 70px 20px 98px;
  }
}

@media screen and (max-width: 767px) {
  .p-top9{
    padding: 35px 20px 50px;
  }
}

.p-top9:before{
  content: "";
  position: absolute;
  height: 400px;
  width: 100%;
  bottom: 0;
  left: 0;
  background-color: #F4F4C2;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .p-top9:before{
    display: none;
  }
}

.p-top9__text{
  width: 710px;
  margin: 0 auto;
  font-size: 1.6rem;
  line-height: 1.75;
  font-family: noto-sans-cjk-jp, sans-serif;
  color: #000000;
  padding-top: 25px;
  padding-bottom: 15px;
}

@media screen and (max-width: 1024px) {
  .p-top9__text{
    width: 100%;
    font-size: 1.4rem;
  }
}

.p-top9__inner{
  width: 1080px;
  margin: 0 auto;
  padding-top: 25px;
}

@media screen and (max-width: 1150px) {
  .p-top9__inner{
    width: 100%;
  }
}

.p-top9__cnt{
  padding-top: 37px;
  padding-bottom: 20px;
}

.p-top9__video{
  padding-top: 50.925925925%;
  position: relative;
}

.p-top9__video iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-top10{
  padding: 75px 0px 60px;
  background-color: #F4F4C2;
}

@media screen and (max-width: 1024px) {
  .p-top10{
    padding: 75px 20px 60px;
  }
}

.p-top10__cnt{
  width: 900px;
  margin: 0 auto;
  padding-top: 17px;
}

@media screen and (max-width: 1024px) {
  .p-top10__cnt{
    width: 100%;
  }
}

.p-top11{
  padding: 40px 0px 0px;
  background: #f4f4c2;
}

@media screen and (max-width: 1024px) {
  .p-top11{
    padding: 40px 20px 0px;
  }
}

.p-top11__text{
  width: 655px;
  margin: 0 auto;
  font-size: 1.6rem;
  line-height: 1.75;
  font-family: noto-sans-cjk-jp, sans-serif;
  color: #000000;
  padding-top: 0px;
  padding-bottom: 35px;
}

@media screen and (max-width: 767px) {
  .p-top11__text{
    width: 100%;
  }
}

.p-top11__cnt{
  /*width: 1366px;*/
  width: 100%;
  margin: 0 auto;
  padding: 0 0px 25px 20px;
  position: relative;
}

@media screen and (max-width: 1329px) {
  .p-top11__cnt{
    width: 100%;
  }
}

@media screen and (max-width: 1024px) {
  .p-top11__cnt{
    padding: 0 0px 25px 0px;
  }
}

.p-top11__cnt:before{
  content: "";
  position: absolute;
  height: 1px;
  background-color: #aeaeae;
  width: calc(100% - 40px);
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}

.p-top12{
  padding-bottom: 60px;
}

.p-top12__inner {
  width: 1366px;
  margin: 0 auto;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  padding: 55px 25px 0px;
}

@media only screen and (max-width: 1365px) {
  .p-top12__inner {
    width: calc(100% - 40px);
    padding: 30px 0px 0px;
  }
}

@media screen and (max-width: 959px) and (orientation: portrait) {
  .p-top12__inner {
    margin: 50px 0 0 0;
    box-sizing: border-box;
    width: 100%;
    padding: 0 20px;
  }
}

@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-top12__inner {
    margin-top: 50px;
    padding: 0px 20px 0px 20px;
    width: 100%;
  }
}

@media screen and (max-width: 959px) and (orientation: landscape) {
  .p-top12__inner {
    margin-top: 50px;
    box-sizing: border-box;
    width: 100%;
    padding: 0px 20px 0px 20px;
  }
}

@media screen and (max-width: 812px) and (orientation: landscape) {
  .p-top12__inner {
    margin-top: 10vw;
    padding-left: 10vw;
    padding-right: 10vw;
  }
}

.p-top12__cnt{
  width: 100%;
}

.p-top12__text{
  width: 840px;
  margin: 0 auto;
  font-size: 1.6rem;
  line-height: 1.75;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  padding-top: 5px;
  padding-bottom: 25px;
}

@media only screen and (max-width: 1100px) {
  .p-top12__text{
    width: 100%;
  }
}

.p-top12__box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 45px;
  align-items: center;
}

@media only screen and (max-width: 1024px) {
  .p-top12__box{
    padding: 0;
  }
}

.p-top12__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-top12__left{
  width: 500px;
}

@media only screen and (max-width: 1326px) {
  .p-top12__left{
    width: 40%;
  }
}

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

@media only screen and (max-width: 1326px) {
  .p-top12__arrow{
    width: 20%;
    padding: 0 20px;
  }
}

@media only screen and (max-width: 767px) {
  .p-top12__arrow{
    width: 100%;
    padding: 20px 0px;
    display: flex;
    justify-content: center;
  }
}

.p-top12__right{
  width: 500px;
}

@media only screen and (max-width: 1326px) {
  .p-top12__right{
    width: 40%;
  }
}

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

/* Top 13 */
.p-top13__inner {
  position: relative;
  max-width: 1366px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 25px 0px;
}

@media only screen and (max-width: 1365px) {
  .p-top13__inner {
    width: calc(100% - 40px);
    padding: 0;
  }
}

.p-top13__cnt{
  position: relative;
  padding: 35px 0px 35px;
  margin: 25px 0px;
}

@media only screen and (max-width: 1100px) {
  .p-top13__cnt {
    width: 100%;
    padding: 0;
  }
}

.p-top13__cnt:before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #f4f4c2;
  top: 0;
  left: 0;
}

.p-top13__cnt__box {
  position: relative;
  max-width: 1366px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.p-top13__left {
  position: relative;
  display: flex;
  align-items: center;
  padding: 25px 23px;
  width: 586px;
  box-sizing: border-box;
}

@media only screen and (max-width: 1365px) {
  .p-top13__left {
    width: 40%;
  }
}

@media only screen and (max-width: 1100px) {
  .p-top13__left {
    width: 100%;
    display: block;
    padding: 20px 20px 0px;
  }
}

.p-top13__left span{
  font-size: 1.5rem;
  line-height: 1.8;
  position: absolute;
  width: 100%;
  bottom: -10px;
  color: #000000;
  text-align: center;
  font-family: m-plus-rounded-1c, sans-serif;
  font-weight: bold;
  left: 0;
}

@media only screen and (max-width: 1100px) {
  .p-top13__left span{
    position: relative;
    bottom: auto;
    padding-left: 0;
    font-size: 1.6rem;
    display: block;
    width: 100%;
    padding-top: 10px;
  }
}

.p-top13__left:hover{
  opacity: 1;
}

@media only screen and (max-width: 1100px) {
  .p-top13__left:before {
    display: none;
  }
}

.p-top13__left img {
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 1100px) {
  .p-top13__left img {
    display: block;
  }
}

.p-top13__right {
  position: relative;
  width: calc(100% - 586px);
}

@media only screen and (max-width: 1365px) {
  .p-top13__right {
    width: 60%;
  }
}

@media only screen and (max-width: 1100px) {
  .p-top13__right {
    width: 100%;
    height: auto;
    padding-top: 10px;
  }
}

.p-top13__image {
  position: absolute;
  top: 10px;
  z-index: 1;
  left: 300px;
}

@media only screen and (max-width: 1100px) {
  .p-top13__image {
    top: 45px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@media only screen and (max-width: 1100px) {
  .p-top13__image img {
    width: 187px;
  }
}

.p-top13__bottom {
  height: 100%;
  padding: 0px 43px 0px 0px;
}

@media only screen and (max-width: 1100px) {
  .p-top13__bottom {
    position: relative;
    height: 100%;
    padding: 20px;
  }
}

.p-top13__box {
  border: 1px solid #aeaeae;
  height: 100%;
  padding: 50px 45px;
  position: relative;
}

@media only screen and (max-width: 1365px) {
  .p-top13__box {
    padding: 25px;
  }
}

.p-top13__box:before {
  content: "";
  position: absolute;
  background: url("../img/top2_image3.png") no-repeat;
  background-size: cover;
  width: 110px;
  height: 182px;
  bottom: 13px;
  right: 13px;
}

@media only screen and (max-width: 1399px) {
  .p-top13__box:before {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    bottom: 0px;
    right: 0px;
  }
}

@media only screen and (max-width: 767px) {
  .p-top13__box:before {
    display: none;
  }
}

.p-top13__text {
  font-size: 1.7rem;
  font-family: m-plus-rounded-1c, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #333333;
  padding-top: 70px;
  padding-right: 135px;
  line-height: 1.58823529412;
}

@media only screen and (max-width: 1399px) {
  .p-top13__text {
    padding-right: 100px;
    padding-top: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .p-top13__text {
    padding-right: 0px;
  }
}

.p-top13__text + .p-top13__text {
  padding-top: 30px;
}

@media only screen and (max-width: 767px) {
  .p-top13__text + .p-top13__text {
    padding-bottom: 185px;
  }
}

.p-top13__btn {
  background-color: #f6ab3b;
  padding-bottom: 37px;
}

@media only screen and (max-width: 767px) {
  .p-top13__btn {
    padding: 0 20px 37px;
  }
}

.p-top13__btn p {
  font-size: 1.7rem;
  line-height: 1.52941176471;
  font-family: m-plus-rounded-1c, sans-serif;
  text-align: center;
  color: #333333;
  padding-top: 30px;
  padding-bottom: 25px;
}

.p-top13__br{
  display: block;
}

@media only screen and (max-width: 1269px) {
  .p-top13__br{
    display: none;
  }
}

/*------------------------------------------------------------
Css of home page
------------------------------------------------------------*/
.p-about {
  line-height: 2;
}

/*------------------------------------------------------------
Css of work page
------------------------------------------------------------*/
.p-work1__inner {
  position: relative;
  margin-top: 120px;
  margin-left: auto;
  margin-right: auto;
  width: 1095px;
}

.p-work1__list {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 1329px) {
  .p-about1__inner {
    width: 750px;
  }
}

@media screen and (max-width: 959px) and (orientation: portrait) {
  .p-work1__inner {
    margin: 150px 0 0 0;
    box-sizing: border-box;
    width: 100%;
    padding-left: 100px;
    padding-right: 100px;
  }
}

@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-work1__inner {
    margin-top: 50vw;
    padding-left: 7vw;
    padding-right: 7vw;
    width: 100%;
  }
}

@media screen and (max-width: 959px) and (orientation: landscape) {
  .p-work1__inner {
    margin-top: 180px;
    box-sizing: border-box;
    width: 100%;
    padding-left: 100px;
    padding-right: 100px;
  }
}

@media screen and (max-width: 812px) and (orientation: landscape) {
  .p-work1__inner {
    margin-top: 30vw;
    padding-left: 10vw;
    padding-right: 10vw;
  }
}

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Utility .u-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/

/*# sourceMappingURL=style.css.map */
